diff --git a/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot b/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot index 60036a0b5b8..13b8459513f 100644 --- a/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot +++ b/examples/angular-cli/src/stories/__snapshots__/welcome-storybook.stories.storyshot @@ -3,47 +3,47 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = `

Welcome to storybook

This is a UI component dev environment for your app.

We've added some basic stories inside the src/stories directory.
A story is a single state of one or more UI components. You can have as many stories as you want.
(Basically a story is like a visual test case.)

See these sample @@ -51,7 +51,7 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = ` for a component called Button @@ -59,26 +59,26 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = ` .

Just like that, you can add your own components as stories.
You can also edit those components and see changes right away.
(Try editing the Button stories located at src/stories/index.js @@ -86,15 +86,15 @@ exports[`Storyshots Welcome/ To Storybook To Storybook 1`] = ` .)

Usually we create stories with smaller UI components in the app.
Have a look at the

NOTE:
Have a look at the .storybook/webpack.config.js diff --git a/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot b/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot index 145350c9823..ce3a20fae52 100644 --- a/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/actions/__snapshots__/addon-actions.stories.storyshot @@ -1,30 +1,53 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Storyshots Addons/Actions Action and method 1`] = ` +exports[`Storyshots Addons/Actions Component Output with ArgsTypes 1`] = ` `; -exports[`Storyshots Addons/Actions Action only 1`] = ` +exports[`Storyshots Addons/Actions Component Output with EventEmitter 1`] = ` + + +`; + +exports[`Storyshots Addons/Actions Story with template 1`] = ` + + + +`; + +exports[`Storyshots Addons/Actions Use action in method 1`] = ` + + + diff --git a/examples/angular-cli/src/stories/addons/actions/addon-actions.stories.ts b/examples/angular-cli/src/stories/addons/actions/addon-actions.stories.ts index 2e5fe20fbe4..a18426f42ad 100644 --- a/examples/angular-cli/src/stories/addons/actions/addon-actions.stories.ts +++ b/examples/angular-cli/src/stories/addons/actions/addon-actions.stories.ts @@ -1,29 +1,46 @@ import { action } from '@storybook/addon-actions'; +import { Meta, Story } from '@storybook/angular'; import { Button } from '@storybook/angular/demo'; export default { component: Button, title: 'Addons/Actions', -}; +} as Meta; -export const ActionOnly = () => ({ +export const ComponentOutputWithEventEmitter: Story = () => ({ props: { - text: 'Action only', - onClick: action('log 1'), + text: 'Button 🥁', + onClick: action('On click'), }, }); +ComponentOutputWithEventEmitter.storyName = 'Component Output with EventEmitter'; -ActionOnly.storyName = 'Action only'; - -export const ActionAndMethod = () => ({ +export const UseActionInMethod: Story = () => ({ props: { - text: 'Action and Method', + text: 'Button 🥁', onClick: (e) => { console.log(e); e.preventDefault(); - action('log2')(e.target); + action('Action name')(e.target, 'Another arg'); }, }, }); +UseActionInMethod.storyName = 'Use action in method'; -ActionAndMethod.storyName = 'Action and method'; +export const StoryTemplate: Story = () => ({ + template: ``, + props: { + onClick: action('On click'), + onOver: action('On over'), + }, +}); +StoryTemplate.storyName = 'Story with template'; + +export const ComponentOutputWithArgsTypes: Story = (args) => ({ + props: { + text: 'Button 🥁', + ...args, + }, +}); +ComponentOutputWithArgsTypes.storyName = 'Component Output with ArgsTypes'; +ComponentOutputWithArgsTypes.argTypes = { onClick: { action: 'On click' } }; diff --git a/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot b/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot index 960c472a84a..0eb2c97c69e 100644 --- a/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/backgrounds/__snapshots__/addon-background.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons / Backgrounds Overridden 1`] = ` @@ -16,21 +16,6 @@ exports[`Storyshots Addons / Backgrounds Overridden 1`] = ` `; exports[`Storyshots Addons / Backgrounds With Component 1`] = ` - - - - - -`; - -exports[`Storyshots Addons / Backgrounds With Template 1`] = ` `; + +exports[`Storyshots Addons / Backgrounds With Template 1`] = ` + + + + + +`; diff --git a/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot b/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot index ed423cfe192..70939d88e5a 100644 --- a/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/docs/__snapshots__/addon-docs.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Docs with some emoji 1`] = ` @@ -18,11 +18,11 @@ exports[`Storyshots Addons/Docs with some emoji 1`] = ` exports[`Storyshots Addons/Docs with text 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot b/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot index 151d5b1761e..2648e92aa89 100644 --- a/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/docs/__snapshots__/simple.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Docs/SimpleButton with text 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot b/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot index f7aab466694..55864ff9b1a 100644 --- a/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/docs/iframe/__snapshots__/iframe.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Docs/Iframe Basic 1`] = ` diff --git a/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot b/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot index 99045970e0e..29703076aaf 100644 --- a/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot +++ b/examples/angular-cli/src/stories/addons/links/__snapshots__/addon-links.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Addons/Links button with link to another story 1`] = ` diff --git a/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot b/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot index c03f44bc288..69a63403adc 100644 --- a/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot +++ b/examples/angular-cli/src/stories/core/parameters/__snapshots__/all-parameters.stories.storyshot @@ -3,13 +3,13 @@ exports[`Storyshots Core / Parameters / All parameters All parameters passed to story 1`] = ` - - -`; - -exports[`Storyshots Core / Parameters / Layout Default 1`] = ` - - - - - -`; - -exports[`Storyshots Core / Parameters / Layout Fullscreen 1`] = ` - -

- - - -
- -`; - -exports[`Storyshots Core / Parameters / Layout None 1`] = ` - - - - - -`; - -exports[`Storyshots Core / Parameters / Layout Padded 1`] = ` `; + +exports[`Storyshots Core / Parameters / Layout Default 1`] = ` + + + + + +`; + +exports[`Storyshots Core / Parameters / Layout Fullscreen 1`] = ` + +
+ + + +
+
+`; + +exports[`Storyshots Core / Parameters / Layout None 1`] = ` + + + + + +`; + +exports[`Storyshots Core / Parameters / Layout Padded 1`] = ` + + + + + +`; diff --git a/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot b/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot index 9a121899764..a0f9fd28caf 100644 --- a/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot +++ b/examples/angular-cli/src/stories/core/styles/__snapshots__/story-styles.stories.storyshot @@ -3,12 +3,12 @@ exports[`Storyshots Core / Story host styles With Knobs 1`] = ` @@ -19,12 +19,12 @@ exports[`Storyshots Core / Story host styles With Knobs 1`] = ` exports[`Storyshots Core / Story host styles With story template 1`] = ` diff --git a/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot b/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot index 8ad7e4ab935..dc24c553667 100644 --- a/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot +++ b/examples/angular-cli/src/stories/legacy/__snapshots__/component-in-story.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Legacy / Component in Story Basic 1`] = ` diff --git a/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot b/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot index e44f5c97824..25f4de0b77c 100644 --- a/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot +++ b/examples/angular-cli/src/stories/others/issues/__snapshots__/12009-unknown-component.stories.storyshot @@ -3,11 +3,11 @@ exports[`Storyshots Others / Issues / 12009 unknown component Basic 1`] = `