mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:01:05 +08:00
re-generate test snapshots
This commit is contained in:
parent
a38d2a48f6
commit
a810ff4b8b
@ -15,15 +15,15 @@ export const text = () => (
|
|||||||
<Button onClick={action(\\"clicked\\")}>Hello Button</Button>
|
<Button onClick={action(\\"clicked\\")}>Hello Button</Button>
|
||||||
);
|
);
|
||||||
|
|
||||||
export const emoji = addSourceDecorator(() => (
|
export const emoji = () => (
|
||||||
<Button onClick={action(\\"clicked\\")}>
|
<Button onClick={action(\\"clicked\\")}>
|
||||||
<span role=\\"img\\" aria-label=\\"so cool\\">
|
<span role=\\"img\\" aria-label=\\"so cool\\">
|
||||||
😀 😎 👍 💯
|
😀 😎 👍 💯
|
||||||
</span>
|
</span>
|
||||||
</Button>
|
</Button>
|
||||||
), {__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__});;
|
);;
|
||||||
|
|
||||||
export const emojiFn = addSourceDecorator(function emojiFn() {
|
export const emojiFn = function emojiFn() {
|
||||||
return (
|
return (
|
||||||
<Button onClick={action(\\"clicked\\")}>
|
<Button onClick={action(\\"clicked\\")}>
|
||||||
<span role=\\"img\\" aria-label=\\"so cool\\">
|
<span role=\\"img\\" aria-label=\\"so cool\\">
|
||||||
@ -31,6 +31,6 @@ export const emojiFn = addSourceDecorator(function emojiFn() {
|
|||||||
</span>
|
</span>
|
||||||
</Button>
|
</Button>
|
||||||
)
|
)
|
||||||
}, {__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__});
|
};
|
||||||
"
|
"
|
||||||
`;
|
`;
|
||||||
|
@ -283,7 +283,7 @@ import { storiesOf } from '@storybook/angular';
|
|||||||
})
|
})
|
||||||
class WithNgContentComponent {}
|
class WithNgContentComponent {}
|
||||||
|
|
||||||
storiesOf('Custom|ng-content', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add('Default', () => ({
|
storiesOf('Custom|ng-content', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).add('Default', () => ({
|
||||||
template: \`<storybook-with-ng-content><h1>This is rendered in ng-content</h1></storybook-with-ng-content>\`,
|
template: \`<storybook-with-ng-content><h1>This is rendered in ng-content</h1></storybook-with-ng-content>\`,
|
||||||
moduleMetadata: {
|
moduleMetadata: {
|
||||||
declarations: [WithNgContentComponent],
|
declarations: [WithNgContentComponent],
|
||||||
@ -328,7 +328,7 @@ class Table extends React.Component<Props, State> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const stories = storiesOf('Table', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__));
|
const stories = storiesOf('Table', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } });
|
||||||
stories.add('Flow Class', withInfo('Lorum Ipsum Nem')(() => <Table />));
|
stories.add('Flow Class', withInfo('Lorum Ipsum Nem')(() => <Table />));
|
||||||
"
|
"
|
||||||
`;
|
`;
|
||||||
@ -377,7 +377,7 @@ class WithStoreComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
storiesOf('ngrx|Store', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__))
|
storiesOf('ngrx|Store', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } })
|
||||||
.addDecorator(
|
.addDecorator(
|
||||||
moduleMetadata({
|
moduleMetadata({
|
||||||
imports: [StoreModule.forRoot({})],
|
imports: [StoreModule.forRoot({})],
|
||||||
@ -659,7 +659,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|Info.React Docgen', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__))
|
storiesOf('Addons|Info.React Docgen', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } })
|
||||||
.add(
|
.add(
|
||||||
'Comments from PropType declarations',
|
'Comments from PropType declarations',
|
||||||
withInfo(
|
withInfo(
|
||||||
@ -690,12 +690,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|Info.Markdown', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.Markdown', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).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|Info.Options.inline', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.Options.inline', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).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',
|
||||||
@ -703,7 +703,7 @@ storiesOf('Addons|Info.Options.inline', module).addParameters({ storySource: { s
|
|||||||
})(() => <BaseButton label=\\"Button\\" />)
|
})(() => <BaseButton label=\\"Button\\" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Info.Options.header', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.Options.header', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).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',
|
||||||
@ -711,7 +711,7 @@ storiesOf('Addons|Info.Options.header', module).addParameters({ storySource: { s
|
|||||||
})(() => <BaseButton label=\\"Button\\" />)
|
})(() => <BaseButton label=\\"Button\\" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Info.Options.source', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.Options.source', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).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',
|
||||||
@ -719,7 +719,7 @@ storiesOf('Addons|Info.Options.source', module).addParameters({ storySource: { s
|
|||||||
})(() => <BaseButton label=\\"Button\\" />)
|
})(() => <BaseButton label=\\"Button\\" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Info.Options.propTables', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.Options.propTables', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).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',
|
||||||
@ -727,7 +727,7 @@ storiesOf('Addons|Info.Options.propTables', module).addParameters({ storySource:
|
|||||||
})(() => <BaseButton label=\\"Button\\" />)
|
})(() => <BaseButton label=\\"Button\\" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Info.Options.propTablesExclude', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.Options.propTablesExclude', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).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.',
|
||||||
@ -740,7 +740,7 @@ storiesOf('Addons|Info.Options.propTablesExclude', module).addParameters({ story
|
|||||||
))
|
))
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Info.Options.styles', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__))
|
storiesOf('Addons|Info.Options.styles', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } })
|
||||||
.add(
|
.add(
|
||||||
'Extend info styles with an object',
|
'Extend info styles with an object',
|
||||||
withInfo({
|
withInfo({
|
||||||
@ -774,14 +774,14 @@ storiesOf('Addons|Info.Options.styles', module).addParameters({ storySource: { s
|
|||||||
})(() => <BaseButton label=\\"Button\\" />)
|
})(() => <BaseButton label=\\"Button\\" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Info.Options.TableComponent', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.Options.TableComponent', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).add(
|
||||||
'Use a custom component for the table',
|
'Use a custom component for the table',
|
||||||
withInfo({
|
withInfo({
|
||||||
TableComponent,
|
TableComponent,
|
||||||
})(() => <BaseButton label=\\"Button\\" />)
|
})(() => <BaseButton label=\\"Button\\" />)
|
||||||
);
|
);
|
||||||
|
|
||||||
storiesOf('Addons|Info.Decorator', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__))
|
storiesOf('Addons|Info.Decorator', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } })
|
||||||
.addDecorator((story, context) =>
|
.addDecorator((story, context) =>
|
||||||
withInfo('Info could be used as a global or local decorator as well.')(story)(context)
|
withInfo('Info could be used as a global or local decorator as well.')(story)(context)
|
||||||
)
|
)
|
||||||
@ -793,7 +793,7 @@ const Input = hoc(() => <input type=\\"text\\" />);
|
|||||||
|
|
||||||
const TextArea = hoc(({ children }) => <textarea>{children}</textarea>);
|
const TextArea = hoc(({ children }) => <textarea>{children}</textarea>);
|
||||||
|
|
||||||
storiesOf('Addons|Info.GitHub issues', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).addDecorator(withSourceLoader(__STORY__, __ADDS_MAP__,__MAIN_FILE_LOCATION__,__MODULE_DEPENDENCIES__,__LOCAL_DEPENDENCIES__,__SOURCE_PREFIX__,__IDS_TO_FRAMEWORKS__)).add(
|
storiesOf('Addons|Info.GitHub issues', module).addParameters({ storySource: { source: __STORY__, locationsMap: __ADDS_MAP__ } }).add(
|
||||||
'#1814',
|
'#1814',
|
||||||
withInfo('Allow Duplicate DisplayNames for HOC #1814')(() => (
|
withInfo('Allow Duplicate DisplayNames for HOC #1814')(() => (
|
||||||
<div>
|
<div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user