@storybook/vue3 8.5.0 → 8.6.0-alpha.1

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storybook/vue3",
3
- "version": "8.5.0",
3
+ "version": "8.6.0-alpha.1",
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.5.0",
64
+ "@storybook/components": "8.6.0-alpha.1",
65
65
  "@storybook/global": "^5.0.0",
66
- "@storybook/manager-api": "8.5.0",
67
- "@storybook/preview-api": "8.5.0",
68
- "@storybook/theming": "8.5.0",
66
+ "@storybook/manager-api": "8.6.0-alpha.1",
67
+ "@storybook/preview-api": "8.6.0-alpha.1",
68
+ "@storybook/theming": "8.6.0-alpha.1",
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.5.0",
84
+ "storybook": "^8.6.0-alpha.1",
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 interaction testing: https://storybook.js.org/docs/writing-tests/interaction-testing
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 interaction testing: https://storybook.js.org/docs/writing-tests/interaction-testing
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 interaction testing: https://storybook.js.org/docs/writing-tests/interaction-testing
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);