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);
addParameters({
options: {
hierarchySeparator: /\/|\./,
hierarchyRootSeparator: /\|/,
showRoots: true,
},
});

View File

@ -6,7 +6,7 @@ import { action, actions } from '@storybook/addon-actions';
import Button from '../Button';
export default {
title: 'Addons|Actions',
title: 'Addons/Actions',
};
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';
export default {
title: 'Addons|Backgrounds',
title: 'Addons/Backgrounds',
parameters: {
backgrounds: [

View File

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

View File

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

View File

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

View File

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

View File

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