Ian VanSchooten 6bdfcfad14 Convert @ts-ignore to @ts-expect-error
And remove unused directives
2022-09-06 22:40:59 -04:00

40 lines
1014 B
TypeScript

import { Parameters, setup } from '@storybook/vue3';
// @ts-expect-error (Converted from ts-ignore)
import Button from '../src/stories/Button.vue';
// TODO: I'd like to be able to export rather than imperatively calling an imported function
// export const setup = (app) => {
// app.component('GlobalButton', Button);
// };
setup((app) => {
// This adds a component that can be used globally in stories
app.component('GlobalButton', Button);
});
export const parameters: Parameters = {
actions: { argTypesRegex: '^on[A-Z].*' },
};
// A toolbar item to set a global theme
export const globalTypes = {
theme: {
name: 'Theme',
description: 'Global theme for components',
defaultValue: 'light-theme',
toolbar: {
icon: 'paintbrush',
items: [
{ value: 'light-theme', title: 'Light theme' },
{ value: 'dark-theme', title: 'Dark theme' },
],
},
},
};
export const decorators = [
() => ({
template: '<div id="test-div"><story /></div>',
}),
];