@storybook/preact 7.1.0-alpha.37 → 7.1.0-alpha.39

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/preact",
3
- "version": "7.1.0-alpha.37",
3
+ "version": "7.1.0-alpha.39",
4
4
  "description": "Storybook Preact renderer",
5
5
  "keywords": [
6
6
  "storybook"
@@ -48,10 +48,10 @@
48
48
  "prep": "../../../scripts/prepare/bundle.ts"
49
49
  },
50
50
  "dependencies": {
51
- "@storybook/core-client": "7.1.0-alpha.37",
51
+ "@storybook/core-client": "7.1.0-alpha.39",
52
52
  "@storybook/global": "^5.0.0",
53
- "@storybook/preview-api": "7.1.0-alpha.37",
54
- "@storybook/types": "7.1.0-alpha.37",
53
+ "@storybook/preview-api": "7.1.0-alpha.39",
54
+ "@storybook/types": "7.1.0-alpha.39",
55
55
  "ts-dedent": "^2.0.0"
56
56
  },
57
57
  "devDependencies": {
@@ -24,7 +24,7 @@ export const Form = ({ onSuccess }) => {
24
24
  data-testid="value"
25
25
  value={value}
26
26
  required
27
- onChange={(event) => setValue(event.target.value)}
27
+ onInput={(event) => setValue(event.target.value)}
28
28
  />
29
29
  </label>
30
30
  <button type="submit">Submit</button>