mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +08:00
25 lines
645 B
TypeScript
25 lines
645 B
TypeScript
import { addParameters, addDecorator } from '@storybook/angular';
|
|
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();
|
|
|
|
addParameters({
|
|
docs: {
|
|
// inlineStories: true,
|
|
iframeHeight: '60px',
|
|
},
|
|
});
|