mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:01:06 +08:00
43 lines
973 B
TypeScript
43 lines
973 B
TypeScript
import { setCompodocJson } from '@storybook/addon-docs/angular';
|
|
import addCssWarning from '../src/cssWarning';
|
|
|
|
// @ts-ignore
|
|
// eslint-disable-next-line import/extensions, import/no-unresolved
|
|
import docJson from '../documentation.json';
|
|
// remove ButtonComponent to test #12009
|
|
const filtered = !docJson?.components
|
|
? docJson
|
|
: {
|
|
...docJson,
|
|
components: docJson.components.filter((c) => c.name !== 'ButtonComponent'),
|
|
};
|
|
setCompodocJson(filtered);
|
|
|
|
addCssWarning();
|
|
|
|
export const parameters = {
|
|
docs: {
|
|
inlineStories: true,
|
|
},
|
|
options: {
|
|
storySort: {
|
|
order: ['Welcome', 'Core ', 'Addons ', 'Basics '],
|
|
},
|
|
},
|
|
};
|
|
|
|
export const globalTypes = {
|
|
theme: {
|
|
name: 'Theme',
|
|
description: 'Global theme for components',
|
|
defaultValue: 'light',
|
|
toolbar: {
|
|
icon: 'paintbrush',
|
|
items: [
|
|
{ value: 'light', title: 'Light theme' },
|
|
{ value: 'dark', title: 'Dark theme' },
|
|
],
|
|
},
|
|
},
|
|
};
|