mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 03:11:06 +08:00
40 lines
790 B
TypeScript
40 lines
790 B
TypeScript
import { global as globalThis } from '@storybook/global';
|
|
import type { PartialStoryFn, StoryContext } from '@storybook/types';
|
|
|
|
export default {
|
|
component: null,
|
|
decorators: [
|
|
(storyFn: PartialStoryFn, context: StoryContext) =>
|
|
storyFn({ component: globalThis.Components.Pre, args: { object: context.args } }),
|
|
],
|
|
};
|
|
|
|
export const CustomMatchers = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
date: /whateverIwant/,
|
|
},
|
|
},
|
|
docs: { source: { state: 'open' } },
|
|
},
|
|
args: {
|
|
whateverIwant: '10/10/2020',
|
|
},
|
|
};
|
|
|
|
export const DisabledMatchers = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
date: null,
|
|
color: null,
|
|
},
|
|
},
|
|
},
|
|
args: {
|
|
purchaseDate: '10/10/2020',
|
|
backgroundColor: '#BADA55',
|
|
},
|
|
};
|