mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
omit Addon prefix from addon stories
This commit is contained in:
parent
94e8da1527
commit
748b26e0e9
@ -5,7 +5,7 @@ import { Button } from '@storybook/react/demo';
|
|||||||
|
|
||||||
const pickFirst = decorateAction([args => args.slice(0, 1)]);
|
const pickFirst = decorateAction([args => args.slice(0, 1)]);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Actions', module)
|
storiesOf('Addons|Actions', module)
|
||||||
.add('Hello World', () => <Button onClick={action('hello-world')}>Hello World</Button>)
|
.add('Hello World', () => <Button onClick={action('hello-world')}>Hello World</Button>)
|
||||||
.add('Decorated Action', () => <Button onClick={pickFirst('decorated')}>First Argument</Button>)
|
.add('Decorated Action', () => <Button onClick={pickFirst('decorated')}>First Argument</Button>)
|
||||||
.add('Circular Payload', () => {
|
.add('Circular Payload', () => {
|
||||||
|
@ -6,7 +6,7 @@ import BaseButton from '../components/BaseButton';
|
|||||||
|
|
||||||
const text = 'Testing the a11y addon';
|
const text = 'Testing the a11y addon';
|
||||||
|
|
||||||
storiesOf('Addons|Addon a11y', module)
|
storiesOf('Addons|a11y', module)
|
||||||
.addDecorator(checkA11y)
|
.addDecorator(checkA11y)
|
||||||
.add('Default', () => <BaseButton label="" />)
|
.add('Default', () => <BaseButton label="" />)
|
||||||
.add('Label', () => <BaseButton label={text} />)
|
.add('Label', () => <BaseButton label={text} />)
|
||||||
|
@ -4,7 +4,7 @@ import { storiesOf } from '@storybook/react';
|
|||||||
import backgrounds from '@storybook/addon-backgrounds';
|
import backgrounds from '@storybook/addon-backgrounds';
|
||||||
import BaseButton from '../components/BaseButton';
|
import BaseButton from '../components/BaseButton';
|
||||||
|
|
||||||
storiesOf('Addons|Addon Backgrounds', module)
|
storiesOf('Addons|Backgrounds', module)
|
||||||
.addDecorator(
|
.addDecorator(
|
||||||
backgrounds([
|
backgrounds([
|
||||||
{ name: 'twitter', value: '#00aced' },
|
{ name: 'twitter', value: '#00aced' },
|
||||||
|
@ -8,7 +8,7 @@ import FlowTypeButton from '../components/FlowTypeButton';
|
|||||||
import BaseButton from '../components/BaseButton';
|
import BaseButton from '../components/BaseButton';
|
||||||
import TableComponent from '../components/TableComponent';
|
import TableComponent from '../components/TableComponent';
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.React Docgen', module)
|
storiesOf('Addons|Info.React Docgen', module)
|
||||||
.add(
|
.add(
|
||||||
'Comments from PropType declarations',
|
'Comments from PropType declarations',
|
||||||
withInfo(
|
withInfo(
|
||||||
@ -39,12 +39,12 @@ const Button = () => <button />;
|
|||||||
Maybe include a [link](http://storybook.js.org) to your project as well.
|
Maybe include a [link](http://storybook.js.org) to your project as well.
|
||||||
`;
|
`;
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.Markdown', module).add(
|
storiesOf('Addons|Info.Markdown', module).add(
|
||||||
'Displays Markdown in description',
|
'Displays Markdown in description',
|
||||||
withInfo(markdownDescription)(() => <BaseButton onClick={action('clicked')} label="Button" />)
|
withInfo(markdownDescription)(() => <BaseButton onClick={action('clicked')} label="Button" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.Options.inline', module).add(
|
storiesOf('Addons|Info.Options.inline', module).add(
|
||||||
'Inlines component inside story',
|
'Inlines component inside story',
|
||||||
withInfo({
|
withInfo({
|
||||||
text: 'Component should be inlined between description and PropType table',
|
text: 'Component should be inlined between description and PropType table',
|
||||||
@ -52,7 +52,7 @@ storiesOf('Addons|Addon Info.Options.inline', module).add(
|
|||||||
})(() => <BaseButton label="Button" />)
|
})(() => <BaseButton label="Button" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.Options.header', module).add(
|
storiesOf('Addons|Info.Options.header', module).add(
|
||||||
'Shows or hides Info Addon header',
|
'Shows or hides Info Addon header',
|
||||||
withInfo({
|
withInfo({
|
||||||
text: 'The Info Addon header should be hidden',
|
text: 'The Info Addon header should be hidden',
|
||||||
@ -60,7 +60,7 @@ storiesOf('Addons|Addon Info.Options.header', module).add(
|
|||||||
})(() => <BaseButton label="Button" />)
|
})(() => <BaseButton label="Button" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.Options.source', module).add(
|
storiesOf('Addons|Info.Options.source', module).add(
|
||||||
'Shows or hides Info Addon source',
|
'Shows or hides Info Addon source',
|
||||||
withInfo({
|
withInfo({
|
||||||
text: 'The Info Addon source section should be hidden',
|
text: 'The Info Addon source section should be hidden',
|
||||||
@ -68,7 +68,7 @@ storiesOf('Addons|Addon Info.Options.source', module).add(
|
|||||||
})(() => <BaseButton label="Button" />)
|
})(() => <BaseButton label="Button" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.Options.propTables', module).add(
|
storiesOf('Addons|Info.Options.propTables', module).add(
|
||||||
'Shows additional component prop tables',
|
'Shows additional component prop tables',
|
||||||
withInfo({
|
withInfo({
|
||||||
text: 'There should be a prop table added for a component not included in the story',
|
text: 'There should be a prop table added for a component not included in the story',
|
||||||
@ -76,7 +76,7 @@ storiesOf('Addons|Addon Info.Options.propTables', module).add(
|
|||||||
})(() => <BaseButton label="Button" />)
|
})(() => <BaseButton label="Button" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.Options.propTablesExclude', module).add(
|
storiesOf('Addons|Info.Options.propTablesExclude', module).add(
|
||||||
'Exclude component from prop tables',
|
'Exclude component from prop tables',
|
||||||
withInfo({
|
withInfo({
|
||||||
text: 'This can exclude extraneous components from being displayed in prop tables.',
|
text: 'This can exclude extraneous components from being displayed in prop tables.',
|
||||||
@ -123,7 +123,7 @@ storiesOf('Addons|Info.Options.styles', module)
|
|||||||
})(() => <BaseButton label="Button" />)
|
})(() => <BaseButton label="Button" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.Options.TableComponent', module).add(
|
storiesOf('Addons|Info.Options.TableComponent', module).add(
|
||||||
'Use a custom component for the table',
|
'Use a custom component for the table',
|
||||||
withInfo({
|
withInfo({
|
||||||
TableComponent,
|
TableComponent,
|
||||||
@ -142,7 +142,7 @@ const Input = hoc(() => <input type="text" />);
|
|||||||
|
|
||||||
const TextArea = hoc(({ children }) => <textarea>{children}</textarea>);
|
const TextArea = hoc(({ children }) => <textarea>{children}</textarea>);
|
||||||
|
|
||||||
storiesOf('Addons|Addon Info.GitHub issues', module).add(
|
storiesOf('Addons|Info.GitHub issues', module).add(
|
||||||
'#1814',
|
'#1814',
|
||||||
withInfo('Allow Duplicate DisplayNames for HOC #1814')(() => (
|
withInfo('Allow Duplicate DisplayNames for HOC #1814')(() => (
|
||||||
<div>
|
<div>
|
||||||
|
@ -8,7 +8,7 @@ const withTestsFiles = withTests({
|
|||||||
results,
|
results,
|
||||||
});
|
});
|
||||||
|
|
||||||
storiesOf('Addons|Addon jest', module)
|
storiesOf('Addons|jest', module)
|
||||||
.addDecorator(withTestsFiles('addon-jest'))
|
.addDecorator(withTestsFiles('addon-jest'))
|
||||||
.add('withTests', () => (
|
.add('withTests', () => (
|
||||||
<div>
|
<div>
|
||||||
|
@ -45,7 +45,7 @@ class AsyncItemLoader extends React.Component {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
storiesOf('Addons|Addon Knobs.withKnobs', module)
|
storiesOf('Addons|Knobs.withKnobs', module)
|
||||||
.addDecorator(withKnobs)
|
.addDecorator(withKnobs)
|
||||||
.add('tweaks static values', () => {
|
.add('tweaks static values', () => {
|
||||||
const name = text('Name', 'Storyteller');
|
const name = text('Name', 'Storyteller');
|
||||||
@ -97,7 +97,7 @@ storiesOf('Addons|Addon Knobs.withKnobs', module)
|
|||||||
</div>
|
</div>
|
||||||
));
|
));
|
||||||
|
|
||||||
storiesOf('Addons|Addon Knobs.withKnobsOptions', module)
|
storiesOf('Addons|Knobs.withKnobsOptions', module)
|
||||||
.addDecorator(
|
.addDecorator(
|
||||||
withKnobsOptions({
|
withKnobsOptions({
|
||||||
debounce: { wait: 100, leading: boolean }, // Same as lodash debounce.
|
debounce: { wait: 100, leading: boolean }, // Same as lodash debounce.
|
||||||
|
@ -6,7 +6,7 @@ import { action } from '@storybook/addon-actions';
|
|||||||
import BaseButton from '../components/BaseButton';
|
import BaseButton from '../components/BaseButton';
|
||||||
import markdownNotes from './notes/notes.md';
|
import markdownNotes from './notes/notes.md';
|
||||||
|
|
||||||
storiesOf('Addons|Addon Notes', module)
|
storiesOf('Addons|Notes', module)
|
||||||
.add(
|
.add(
|
||||||
'withNotes',
|
'withNotes',
|
||||||
withNotes(
|
withNotes(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user