diff --git a/examples/html-kitchen-sink/tests/__snapshots__/htmlshots.test.js.snap b/examples/html-kitchen-sink/tests/__snapshots__/htmlshots.test.js.snap index eb7e582bd34..ca0e2dec3aa 100644 --- a/examples/html-kitchen-sink/tests/__snapshots__/htmlshots.test.js.snap +++ b/examples/html-kitchen-sink/tests/__snapshots__/htmlshots.test.js.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Storyshots Addons|Actions Decorated actions + config 1`] = ` +exports[`Storyshots Addons|Actions story1 1`] = ` `; -exports[`Storyshots Addons|Actions Decorated actions 1`] = ` +exports[`Storyshots Addons|Actions story2 1`] = ` `; -exports[`Storyshots Addons|Actions Hello World 1`] = ` +exports[`Storyshots Addons|Actions story3 1`] = ` `; -exports[`Storyshots Addons|Actions Multiple actions + config 1`] = ` +exports[`Storyshots Addons|Actions story4 1`] = ` `; -exports[`Storyshots Addons|Actions Multiple actions 1`] = ` - -`; - -exports[`Storyshots Addons|Actions Multiple actions, object + config 1`] = ` - -`; - -exports[`Storyshots Addons|Actions Multiple actions, object 1`] = ` - -`; - -exports[`Storyshots Addons|Actions Multiple actions, selector 1`] = ` +exports[`Storyshots Addons|Actions story5 1`] = ` `; -exports[`Storyshots Addons|Backgrounds story 1 1`] = ` +exports[`Storyshots Addons|Actions story6 1`] = ` + +`; + +exports[`Storyshots Addons|Actions story7 1`] = ` + +`; + +exports[`Storyshots Addons|Actions story8 1`] = ` + +`; + +exports[`Storyshots Addons|Backgrounds story1 1`] = ` @@ -69,7 +69,7 @@ exports[`Storyshots Addons|Backgrounds story 1 1`] = ` `; -exports[`Storyshots Addons|Backgrounds story 2 1`] = ` +exports[`Storyshots Addons|Backgrounds story2 1`] = ` @@ -77,7 +77,7 @@ exports[`Storyshots Addons|Backgrounds story 2 1`] = ` `; -exports[`Storyshots Addons|Centered button in center 1`] = ` +exports[`Storyshots Addons|Centered story1 1`] = `
+ John Doe +

+`; + +exports[`Storyshots Addons|Knobs Simple 1`] = ` +
+ I am John Doe and I'm 44 years old. +
+`; + +exports[`Storyshots Addons|Knobs story3 1`] = ` +

+ John Doe +

+`; + +exports[`Storyshots Addons|Knobs story4 1`] = `
@@ -147,29 +167,9 @@ exports[`Storyshots Addons|Knobs All knobs 1`] = `
`; -exports[`Storyshots Addons|Knobs CSS transitions 1`] = ` -

- John Doe -

-`; +exports[`Storyshots Addons|Knobs story5 1`] = `<img src=x onerror="alert('XSS Attack')" >`; -exports[`Storyshots Addons|Knobs DOM 1`] = ` -

- John Doe -

-`; - -exports[`Storyshots Addons|Knobs Simple 1`] = ` -
- I am John Doe and I'm 44 years old. -
-`; - -exports[`Storyshots Addons|Knobs XSS safety 1`] = `<img src=x onerror="alert('XSS Attack')" >`; - -exports[`Storyshots Addons|Notes Simple note 1`] = ` +exports[`Storyshots Addons|Notes story1 1`] = `

@@ -185,8 +185,6 @@ exports[`Storyshots Addons|Notes Simple note 1`] = ` exports[`Storyshots Addons|a11y Default 1`] = ` -`; - exports[`Storyshots Addons|a11y Label 1`] = ` `; -exports[`Storyshots Demo Button 1`] = ` +exports[`Storyshots Addons|a11y story4 1`] = ` + +`; + +exports[`Storyshots Addons|a11y story5 1`] = `

`; + +exports[`Storyshots Demo button 1`] = ` `; -exports[`Storyshots Demo Effect 1`] = ` +exports[`Storyshots Demo effect 1`] = ` `; -exports[`Storyshots Demo Heading 1`] = ` +exports[`Storyshots Demo heading 1`] = `

Hello World

`; -exports[`Storyshots Demo Headings 1`] = ` +exports[`Storyshots Demo headings 1`] = `

Hello World diff --git a/examples/official-storybook/config.js b/examples/official-storybook/config.js index 7cabbbb918d..2e61f87c49d 100644 --- a/examples/official-storybook/config.js +++ b/examples/official-storybook/config.js @@ -1,4 +1,5 @@ import React from 'react'; +import startCase from 'lodash/startCase'; import { configure, addDecorator, addParameters } from '@storybook/react'; import { Global, ThemeProvider, themes, createReset, convert } from '@storybook/theming'; import { withCssResources } from '@storybook/addon-cssresources'; @@ -52,6 +53,7 @@ addParameters({ theme: themes.light, // { base: 'dark', brandTitle: 'Storybook!' }, storySort: (a, b) => a[1].kind === b[1].kind ? 0 : a[1].id.localeCompare(b[1].id, { numeric: true }), + displayName: key => startCase(key).toLowerCase(), }, backgrounds: [ { name: 'storybook app', value: themes.light.appBg, default: true }, diff --git a/examples/official-storybook/package.json b/examples/official-storybook/package.json index 14112945214..8e138f93799 100644 --- a/examples/official-storybook/package.json +++ b/examples/official-storybook/package.json @@ -53,6 +53,7 @@ "global": "^4.3.2", "graphql": "^14.1.1", "jest-emotion": "^10.0.11", + "lodash": "^4.17.11", "paths.macro": "^2.0.2", "prop-types": "^15.7.2", "react": "^16.8.3", diff --git a/examples/preact-kitchen-sink/__snapshots__/preactshots.test.js.snap b/examples/preact-kitchen-sink/__snapshots__/preactshots.test.js.snap index b2a8566165f..03e16240ac8 100644 --- a/examples/preact-kitchen-sink/__snapshots__/preactshots.test.js.snap +++ b/examples/preact-kitchen-sink/__snapshots__/preactshots.test.js.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Storyshots Addons|Actions Action and method 1`] = ` +exports[`Storyshots Addons|Actions actionAndMethod 1`] = ` `; -exports[`Storyshots Addons|Backgrounds Example 2 1`] = ` +exports[`Storyshots Addons|Backgrounds example2 1`] = ` `; -exports[`Storyshots Addons|Centered Button 1`] = ` +exports[`Storyshots Addons|Centered button 1`] = `
`; -exports[`Storyshots Addons|Contexts Simple CSS Theming 1`] = ` +exports[`Storyshots Addons|Contexts simpleCssTheming 1`] = `
`; -exports[`Storyshots Addons|Knobs All knobs 1`] = ` +exports[`Storyshots Addons|Knobs Simple 1`] = ` +
+ I am John Doe and I'm 44 years old. +
+`; + +exports[`Storyshots Addons|Knobs allKnobs 1`] = `
@@ -136,13 +142,7 @@ exports[`Storyshots Addons|Knobs All knobs 1`] = `
`; -exports[`Storyshots Addons|Knobs Simple 1`] = ` -
- I am John Doe and I'm 44 years old. -
-`; - -exports[`Storyshots Addons|Links Go to welcome 1`] = ` +exports[`Storyshots Addons|Links goToWelcome 1`] = `

`; -exports[`Storyshots Addon|Actions Action on view method 1`] = ` +exports[`Storyshots Addon|Actions actionOnViewMethod 1`] = `
@@ -61,7 +61,7 @@ exports[`Storyshots Addon|Actions Action on view method 1`] = `
`; -exports[`Storyshots Addon|Backgrounds story 1 1`] = ` +exports[`Storyshots Addon|Backgrounds story1 1`] = `
@@ -103,7 +103,7 @@ exports[`Storyshots Addon|Backgrounds story 1 1`] = `
`; -exports[`Storyshots Addon|Centered Rounded 1`] = ` +exports[`Storyshots Addon|Centered rounded 1`] = `
@@ -122,7 +122,7 @@ exports[`Storyshots Addon|Centered Rounded 1`] = `
`; -exports[`Storyshots Addon|Centered with action 1`] = ` +exports[`Storyshots Addon|Centered withAction 1`] = `
@@ -155,7 +155,7 @@ exports[`Storyshots Addon|Knobs Simple 1`] = `
`; -exports[`Storyshots Addon|Links Go to welcome view 1`] = ` +exports[`Storyshots Addon|Links goToWelcomeView 1`] = `
@@ -183,7 +183,7 @@ exports[`Storyshots Addon|Links Go to welcome view 1`] = `
`; -exports[`Storyshots Addon|Notes Note with HTML 1`] = ` +exports[`Storyshots Addon|Notes noteWithHtml 1`] = `
@@ -225,7 +225,7 @@ exports[`Storyshots Addon|Notes Note with HTML 1`] = `
`; -exports[`Storyshots Addon|Notes Simple note 1`] = ` +exports[`Storyshots Addon|Notes simpleNote 1`] = `
@@ -267,7 +267,7 @@ exports[`Storyshots Addon|Notes Simple note 1`] = `
`; -exports[`Storyshots Button Rounded 1`] = ` +exports[`Storyshots Button rounded 1`] = `
@@ -309,7 +309,7 @@ exports[`Storyshots Button Rounded 1`] = `
`; -exports[`Storyshots Button Square 1`] = ` +exports[`Storyshots Button square 1`] = `
diff --git a/examples/vue-kitchen-sink/__snapshots__/vueshots.test.js.snap b/examples/vue-kitchen-sink/__snapshots__/vueshots.test.js.snap index bc0b461c448..159ad8a0a3f 100644 --- a/examples/vue-kitchen-sink/__snapshots__/vueshots.test.js.snap +++ b/examples/vue-kitchen-sink/__snapshots__/vueshots.test.js.snap @@ -1,6 +1,6 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`Storyshots Addon|Actions Action and method 1`] = ` +exports[`Storyshots Addon|Actions actionAndMethod 1`] = ` `; -exports[`Storyshots Addon|Backgrounds story 2 1`] = ` +exports[`Storyshots Addon|Backgrounds story2 1`] = ` `; -exports[`Storyshots Addon|Centered Rounded 1`] = ` +exports[`Storyshots Addon|Centered rounded 1`] = `
@@ -77,7 +77,7 @@ exports[`Storyshots Addon|Contexts Languages 1`] = `
`; -exports[`Storyshots Addon|Contexts Simple CSS Theming 1`] = ` +exports[`Storyshots Addon|Contexts simpleCssTheming 1`] = `
@@ -87,7 +87,13 @@ exports[`Storyshots Addon|Contexts Simple CSS Theming 1`] = `
`; -exports[`Storyshots Addon|Knobs All knobs 1`] = ` +exports[`Storyshots Addon|Knobs Simple 1`] = ` +
+ I am John Doe and I'm 40 years old. +
+`; + +exports[`Storyshots Addon|Knobs allKnobs 1`] = `
@@ -125,19 +131,13 @@ exports[`Storyshots Addon|Knobs All knobs 1`] = `
`; -exports[`Storyshots Addon|Knobs Simple 1`] = ` -
- I am John Doe and I'm 40 years old. -
-`; - -exports[`Storyshots Addon|Knobs XSS safety 1`] = ` +exports[`Storyshots Addon|Knobs xssSafety 1`] = `
<img src=x onerror="alert('XSS Attack')" >
`; -exports[`Storyshots Addon|Links Go to welcome 1`] = ` +exports[`Storyshots Addon|Links goToWelcome 1`] = ` `; -exports[`Storyshots Custom|Method for rendering Vue Render 1`] = ` -
- renders a div with some text in it.. -
-`; - -exports[`Storyshots Custom|Method for rendering Vue Template 1`] = ` -
-

- A template -

- -

- rendered in vue in storybook -

-
-`; - -exports[`Storyshots Custom|Method for rendering Vue pre-registered component 1`] = ` +exports[`Storyshots Custom|Method for rendering Vue preRegisteredComponent 1`] = `

This component was pre-registered in .storybook/config.js @@ -402,7 +385,13 @@ exports[`Storyshots Custom|Method for rendering Vue pre-registered component 1`]

`; -exports[`Storyshots Custom|Method for rendering Vue render + component 1`] = ` +exports[`Storyshots Custom|Method for rendering Vue render 1`] = ` +
+ renders a div with some text in it.. +
+`; + +exports[`Storyshots Custom|Method for rendering Vue renderComponent 1`] = `