@storybook/vue3 7.0.0-alpha.47 → 7.0.0-alpha.48

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/vue3",
3
- "version": "7.0.0-alpha.47",
3
+ "version": "7.0.0-alpha.48",
4
4
  "description": "Storybook Vue 3 renderer",
5
5
  "keywords": [
6
6
  "storybook"
@@ -51,11 +51,11 @@
51
51
  "prep": "../../../scripts/prepare/bundle.ts"
52
52
  },
53
53
  "dependencies": {
54
- "@storybook/addons": "7.0.0-alpha.47",
55
- "@storybook/core-client": "7.0.0-alpha.47",
56
- "@storybook/docs-tools": "7.0.0-alpha.47",
57
- "@storybook/store": "7.0.0-alpha.47",
58
- "@storybook/types": "7.0.0-alpha.47",
54
+ "@storybook/addons": "7.0.0-alpha.48",
55
+ "@storybook/core-client": "7.0.0-alpha.48",
56
+ "@storybook/docs-tools": "7.0.0-alpha.48",
57
+ "@storybook/store": "7.0.0-alpha.48",
58
+ "@storybook/types": "7.0.0-alpha.48",
59
59
  "global": "^4.4.0",
60
60
  "react": "16.14.0",
61
61
  "react-dom": "16.14.0",
@@ -91,5 +91,5 @@
91
91
  ],
92
92
  "platform": "browser"
93
93
  },
94
- "gitHead": "1c706a4a778831e012343c905f86225fa71491a7"
94
+ "gitHead": "b58a29b785462f8a8b711b6bb2d7223fd6dc17fd"
95
95
  }
@@ -4,6 +4,8 @@ import MyButton from './Button.vue';
4
4
  export default {
5
5
  title: 'Example/Button',
6
6
  component: MyButton,
7
+ // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/docs-page
8
+ tags: ['docsPage'],
7
9
  // More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args
8
10
  render: (args) => ({
9
11
  // Components used in your story `template` are defined in the `components` object
@@ -3,6 +3,8 @@ import MyHeader from './Header.vue';
3
3
  export default {
4
4
  title: 'Example/Header',
5
5
  component: MyHeader,
6
+ // This component will have an automatically generated docsPage entry: https://storybook.js.org/docs/vue/writing-docs/docs-page
7
+ tags: ['docsPage'],
6
8
  render: (args) => ({
7
9
  // Components used in your story `template` are defined in the `components` object
8
10
  components: {