@storybook/vue3 7.1.0-alpha.36 → 7.1.0-alpha.38

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.1.0-alpha.36",
3
+ "version": "7.1.0-alpha.38",
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.1.0-alpha.36",
52
- "@storybook/docs-tools": "7.1.0-alpha.36",
51
+ "@storybook/core-client": "7.1.0-alpha.38",
52
+ "@storybook/docs-tools": "7.1.0-alpha.38",
53
53
  "@storybook/global": "^5.0.0",
54
- "@storybook/preview-api": "7.1.0-alpha.36",
55
- "@storybook/types": "7.1.0-alpha.36",
54
+ "@storybook/preview-api": "7.1.0-alpha.38",
55
+ "@storybook/types": "7.1.0-alpha.38",
56
56
  "lodash": "^4.17.21",
57
57
  "ts-dedent": "^2.0.0",
58
58
  "type-fest": "^3.11.0",
@@ -84,5 +84,5 @@
84
84
  ],
85
85
  "platform": "browser"
86
86
  },
87
- "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae16"
87
+ "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17"
88
88
  }
@@ -2,7 +2,7 @@
2
2
  <form id="interaction-test-form" @submit.prevent="onSubmit">
3
3
  <label>
4
4
  Enter Value
5
- <input type="text" data-testid="value" :value="value" required @click="setValue" />
5
+ <input type="text" data-testid="value" v-model="value" required />
6
6
  </label>
7
7
  <button type="submit">Submit</button>
8
8
  <p v-if="complete">Completed!!</p>
@@ -27,9 +27,6 @@ export default {
27
27
  },
28
28
 
29
29
  methods: {
30
- setValue(event) {
31
- this.value = event.target.value;
32
- },
33
30
  onSubmit() {
34
31
  this.onSuccess(this.value);
35
32
  setTimeout(() => {