@storybook/vue3 8.6.0-alpha.0 → 8.6.0-alpha.2
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": "8.6.0-alpha.
|
3
|
+
"version": "8.6.0-alpha.2",
|
4
4
|
"description": "Storybook Vue 3 renderer",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -61,11 +61,11 @@
|
|
61
61
|
"prep": "jiti ../../../scripts/prepare/bundle.ts"
|
62
62
|
},
|
63
63
|
"dependencies": {
|
64
|
-
"@storybook/components": "8.6.0-alpha.
|
64
|
+
"@storybook/components": "8.6.0-alpha.2",
|
65
65
|
"@storybook/global": "^5.0.0",
|
66
|
-
"@storybook/manager-api": "8.6.0-alpha.
|
67
|
-
"@storybook/preview-api": "8.6.0-alpha.
|
68
|
-
"@storybook/theming": "8.6.0-alpha.
|
66
|
+
"@storybook/manager-api": "8.6.0-alpha.2",
|
67
|
+
"@storybook/preview-api": "8.6.0-alpha.2",
|
68
|
+
"@storybook/theming": "8.6.0-alpha.2",
|
69
69
|
"@vue/compiler-core": "^3.0.0",
|
70
70
|
"ts-dedent": "^2.0.0",
|
71
71
|
"type-fest": "~2.19",
|
@@ -81,7 +81,7 @@
|
|
81
81
|
"vue-tsc": "latest"
|
82
82
|
},
|
83
83
|
"peerDependencies": {
|
84
|
-
"storybook": "^8.6.0-alpha.
|
84
|
+
"storybook": "^8.6.0-alpha.2",
|
85
85
|
"vue": "^3.0.0"
|
86
86
|
},
|
87
87
|
"engines": {
|
@@ -13,7 +13,7 @@ export default {
|
|
13
13
|
|
14
14
|
export const LoggedOut = {};
|
15
15
|
|
16
|
-
// More on
|
16
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
|
17
17
|
export const LoggedIn = {
|
18
18
|
render: () => ({
|
19
19
|
components: {
|
@@ -21,7 +21,7 @@ const meta: Meta<typeof MyPage> = {
|
|
21
21
|
export default meta;
|
22
22
|
type Story = StoryObj<typeof MyPage>;
|
23
23
|
|
24
|
-
// More on
|
24
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
|
25
25
|
export const LoggedIn: Story = {
|
26
26
|
play: async ({ canvasElement }: any) => {
|
27
27
|
const canvas = within(canvasElement);
|
@@ -21,7 +21,7 @@ const meta = {
|
|
21
21
|
export default meta;
|
22
22
|
type Story = StoryObj<typeof meta>;
|
23
23
|
|
24
|
-
// More on
|
24
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/component-testing
|
25
25
|
export const LoggedIn: Story = {
|
26
26
|
play: async ({ canvasElement }: any) => {
|
27
27
|
const canvas = within(canvasElement);
|