import { setCompodocJson } from "@storybook/addon-docs/angular"; import { withThemeByClassName } from "@storybook/addon-themes"; import { componentWrapperDecorator } from "@storybook/angular"; import type { Preview } from "@storybook/angular"; import docJson from "../documentation.json"; setCompodocJson(docJson); const wrapperDecorator = componentWrapperDecorator((story) => { return /*html*/ `
${story}
`; }); const preview: Preview = { decorators: [ withThemeByClassName({ themes: { light: "theme_light", dark: "theme_dark", }, defaultTheme: "light", }), wrapperDecorator, ], parameters: { a11y: { context: "#storybook-root", }, controls: { matchers: { color: /(background|color)$/i, date: /Date$/, }, }, options: { storySort: { method: "alphabetical", order: ["Documentation", ["Introduction", "Colors", "Icons"], "Component Library"], }, }, docs: { source: { type: "dynamic", excludeDecorators: true, }, }, backgrounds: { disabled: true, }, }, tags: ["autodocs"], }; export default preview;