mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:31:19 +08:00
64 lines
1.1 KiB
TypeScript
64 lines
1.1 KiB
TypeScript
import globalThis from 'global';
|
|
|
|
export default {
|
|
component: globalThis.Components.Html,
|
|
args: {
|
|
content: '<button>Click Me!</button>',
|
|
},
|
|
parameters: {
|
|
chromatic: { disable: true },
|
|
},
|
|
};
|
|
|
|
export const Options = {
|
|
args: {
|
|
content:
|
|
'<button style="color: rgb(255, 255, 255); background-color: rgb(76, 175, 80);">Click me!</button>',
|
|
},
|
|
parameters: {
|
|
a11y: {
|
|
config: {},
|
|
options: {
|
|
checks: {
|
|
'color-contrast': { enabled: false },
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Config = {
|
|
args: {
|
|
content:
|
|
'<button style="color: rgb(255, 255, 255); background-color: rgb(76, 175, 80);">Click me!</button>',
|
|
},
|
|
parameters: {
|
|
a11y: {
|
|
config: {
|
|
rules: [{ id: 'avoid-inline-spacing', options: {} }],
|
|
disableOtherRules: true,
|
|
},
|
|
options: {},
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Targetted = {
|
|
args: {
|
|
content: '<button class="custom-target">Click Me!</button>',
|
|
},
|
|
parameters: {
|
|
a11y: {
|
|
element: '.custom-target',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Disabled = {
|
|
parameters: {
|
|
a11y: {
|
|
disable: true,
|
|
},
|
|
},
|
|
};
|