@storybook/vue3 9.0.0-alpha.2 → 9.0.0-alpha.3

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-alpha.2",
3
+ "version": "9.0.0-alpha.3",
4
4
  "description": "Storybook Vue 3 renderer",
5
5
  "keywords": [
6
6
  "storybook"
@@ -77,7 +77,7 @@
77
77
  "vue-tsc": "latest"
78
78
  },
79
79
  "peerDependencies": {
80
- "storybook": "^9.0.0-alpha.2",
80
+ "storybook": "^9.0.0-alpha.3",
81
81
  "vue": "^3.0.0"
82
82
  },
83
83
  "engines": {
@@ -1,4 +1,4 @@
1
- import { fn } from '@storybook/test';
1
+ import { fn } from 'storybook/test';
2
2
 
3
3
  import MyButton from './Button.vue';
4
4
 
@@ -1,4 +1,4 @@
1
- import { fn } from '@storybook/test';
1
+ import { fn } from 'storybook/test';
2
2
 
3
3
  import MyHeader from './Header.vue';
4
4
 
@@ -1,4 +1,4 @@
1
- import { expect, userEvent, within } from '@storybook/test';
1
+ import { expect, userEvent, within } from 'storybook/test';
2
2
 
3
3
  import MyPage from './Page.vue';
4
4
 
@@ -1,6 +1,7 @@
1
- import { fn } from '@storybook/test';
2
1
  import type { Meta, StoryObj } from '@storybook/vue3';
3
2
 
3
+ import { fn } from 'storybook/test';
4
+
4
5
  import Button from './Button.vue';
5
6
 
6
7
  // More on how to set up stories at: https://storybook.js.org/docs/writing-stories
@@ -1,6 +1,7 @@
1
- import { fn } from '@storybook/test';
2
1
  import type { Meta, StoryObj } from '@storybook/vue3';
3
2
 
3
+ import { fn } from 'storybook/test';
4
+
4
5
  import MyHeader from './Header.vue';
5
6
 
6
7
  const meta = {
@@ -1,6 +1,7 @@
1
- import { expect, userEvent, within } from '@storybook/test';
2
1
  import type { Meta, StoryObj } from '@storybook/vue3';
3
2
 
3
+ import { expect, userEvent, within } from 'storybook/test';
4
+
4
5
  import MyPage from './Page.vue';
5
6
 
6
7
  const meta = {