Examples: Upgrade preact-kitchen-sink to simplified hierarchy separator

This commit is contained in:
Michael Shilman 2019-11-13 18:23:15 +08:00
parent f373a1d250
commit e89bae3fc1
8 changed files with 8 additions and 9 deletions

View File

@ -5,8 +5,7 @@ import { withA11y } from '@storybook/addon-a11y';
addDecorator(withA11y); addDecorator(withA11y);
addParameters({ addParameters({
options: { options: {
hierarchySeparator: /\/|\./, showRoots: true,
hierarchyRootSeparator: /\|/,
}, },
}); });

View File

@ -6,7 +6,7 @@ import { action, actions } from '@storybook/addon-actions';
import Button from '../Button'; import Button from '../Button';
export default { export default {
title: 'Addons|Actions', title: 'Addons/Actions',
}; };
export const actionOnly = () => <Button onclick={action('log')}>Click me to log the action</Button>; export const actionOnly = () => <Button onclick={action('log')}>Click me to log the action</Button>;

View File

@ -5,7 +5,7 @@ import { h } from 'preact';
import Button from '../Button'; import Button from '../Button';
export default { export default {
title: 'Addons|Backgrounds', title: 'Addons/Backgrounds',
parameters: { parameters: {
backgrounds: [ backgrounds: [

View File

@ -6,7 +6,7 @@ import Centered from '@storybook/addon-centered/preact';
import Button from '../Button'; import Button from '../Button';
export default { export default {
title: 'Addons|Centered', title: 'Addons/Centered',
component: Button, component: Button,
decorators: [Centered], decorators: [Centered],
}; };

View File

@ -41,7 +41,7 @@ const storyLevelContexts = [
]; ];
export default { export default {
title: 'Addons|Contexts', title: 'Addons/Contexts',
decorators: [withContexts(topLevelContexts)], decorators: [withContexts(topLevelContexts)],
}; };

View File

@ -16,7 +16,7 @@ import {
} from '@storybook/addon-knobs'; } from '@storybook/addon-knobs';
export default { export default {
title: 'Addons|Knobs', title: 'Addons/Knobs',
decorators: [withKnobs], decorators: [withKnobs],
}; };

View File

@ -7,7 +7,7 @@ import { linkTo } from '@storybook/addon-links';
import Button from '../Button'; import Button from '../Button';
export default { export default {
title: 'Addons|Links', title: 'Addons/Links',
}; };
export const goToWelcome = () => ( export const goToWelcome = () => (

View File

@ -5,7 +5,7 @@ import { h } from 'preact';
import { withNotes } from '@storybook/addon-notes'; import { withNotes } from '@storybook/addon-notes';
export default { export default {
title: 'Addons|Notes', title: 'Addons/Notes',
decorators: [withNotes], decorators: [withNotes],
}; };