mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:11:15 +08:00
57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
/* eslint-disable import/extensions, import/no-unresolved */
|
|
import { setCompodocJson } from '@storybook/addon-docs/angular';
|
|
import addCssWarning from '../src/cssWarning';
|
|
|
|
// @ts-ignore
|
|
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' },
|
|
],
|
|
},
|
|
},
|
|
locale: {
|
|
name: 'Locale',
|
|
description: 'Internationalization locale',
|
|
defaultValue: 'en',
|
|
toolbar: {
|
|
icon: 'globe',
|
|
items: [
|
|
{ value: 'en', right: '🇺🇸', title: 'English' },
|
|
{ value: 'es', right: '🇪🇸', title: 'Español' },
|
|
{ value: 'zh', right: '🇨🇳', title: '中文' },
|
|
{ value: 'kr', right: '🇰🇷', title: '한국어' },
|
|
],
|
|
},
|
|
},
|
|
};
|