@storybook/vue3 7.0.0-beta.27 → 7.0.0-beta.28
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-beta.
|
3
|
+
"version": "7.0.0-beta.28",
|
4
4
|
"description": "Storybook Vue 3 renderer",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -48,11 +48,11 @@
|
|
48
48
|
"prep": "../../../scripts/prepare/bundle.ts"
|
49
49
|
},
|
50
50
|
"dependencies": {
|
51
|
-
"@storybook/core-client": "7.0.0-beta.
|
52
|
-
"@storybook/docs-tools": "7.0.0-beta.
|
51
|
+
"@storybook/core-client": "7.0.0-beta.28",
|
52
|
+
"@storybook/docs-tools": "7.0.0-beta.28",
|
53
53
|
"@storybook/global": "^5.0.0",
|
54
|
-
"@storybook/preview-api": "7.0.0-beta.
|
55
|
-
"@storybook/types": "7.0.0-beta.
|
54
|
+
"@storybook/preview-api": "7.0.0-beta.28",
|
55
|
+
"@storybook/types": "7.0.0-beta.28",
|
56
56
|
"ts-dedent": "^2.0.0",
|
57
57
|
"type-fest": "2.19.0"
|
58
58
|
},
|
@@ -79,5 +79,5 @@
|
|
79
79
|
],
|
80
80
|
"platform": "browser"
|
81
81
|
},
|
82
|
-
"gitHead": "
|
82
|
+
"gitHead": "05179df2dcf366ea1e61b0809e7778afbec094de"
|
83
83
|
}
|
@@ -20,13 +20,12 @@ export default {
|
|
20
20
|
type: 'select',
|
21
21
|
options: Object.keys(icons),
|
22
22
|
},
|
23
|
-
defaultValue: 'Primary',
|
24
23
|
},
|
25
24
|
},
|
26
25
|
render: (args) => {
|
27
26
|
// Individual properties can be overridden by spreading the args
|
28
27
|
// and the replacing the key-values that need to be updated
|
29
|
-
args = { ...args, icon: icons[args.icon] }; // eslint-disable-line no-param-reassign
|
28
|
+
args = { ...args, icon: icons[args.icon || 'Primary'] }; // eslint-disable-line no-param-reassign
|
30
29
|
return {
|
31
30
|
// Components used in your story `template` are defined in the `components` object
|
32
31
|
components: { OverrideArgs },
|