@storybook/vue3 9.0.0-rc.4 → 9.0.0
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": "9.0.0
|
3
|
+
"version": "9.0.0",
|
4
4
|
"description": "Storybook Vue 3 renderer",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -73,7 +73,7 @@
|
|
73
73
|
"vue-tsc": "latest"
|
74
74
|
},
|
75
75
|
"peerDependencies": {
|
76
|
-
"storybook": "^9.0.0
|
76
|
+
"storybook": "^9.0.0",
|
77
77
|
"vue": "^3.0.0"
|
78
78
|
},
|
79
79
|
"engines": {
|
@@ -13,7 +13,7 @@ export default {
|
|
13
13
|
|
14
14
|
export const LoggedOut = {};
|
15
15
|
|
16
|
-
// More on component testing: https://storybook.js.org/docs/writing-tests/
|
16
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/interaction-testing
|
17
17
|
export const LoggedIn = {
|
18
18
|
render: () => ({
|
19
19
|
components: {
|
@@ -22,7 +22,7 @@ const meta = {
|
|
22
22
|
export default meta;
|
23
23
|
type Story = StoryObj<typeof meta>;
|
24
24
|
|
25
|
-
// More on component testing: https://storybook.js.org/docs/writing-tests/
|
25
|
+
// More on component testing: https://storybook.js.org/docs/writing-tests/interaction-testing
|
26
26
|
export const LoggedIn: Story = {
|
27
27
|
play: async ({ canvasElement }: any) => {
|
28
28
|
const canvas = within(canvasElement);
|