@storybook/addon-a11y 8.5.0-alpha.8 → 8.5.0-beta.0

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/addon-a11y",
3
- "version": "8.5.0-alpha.8",
3
+ "version": "8.5.0-beta.0",
4
4
  "description": "Test component compliance with web accessibility standards",
5
5
  "keywords": [
6
6
  "a11y",
@@ -38,11 +38,22 @@
38
38
  },
39
39
  "./manager": "./dist/manager.js",
40
40
  "./register": "./dist/manager.js",
41
- "./package.json": "./package.json"
41
+ "./package.json": "./package.json",
42
+ "./postinstall": "./dist/postinstall.js"
42
43
  },
43
44
  "main": "dist/index.js",
44
45
  "module": "dist/index.mjs",
45
46
  "types": "dist/index.d.ts",
47
+ "typesVersions": {
48
+ "*": {
49
+ "*": [
50
+ "dist/index.d.ts"
51
+ ],
52
+ "preview": [
53
+ "dist/preview.d.ts"
54
+ ]
55
+ }
56
+ },
46
57
  "files": [
47
58
  "dist/**/*",
48
59
  "README.md",
@@ -55,13 +66,18 @@
55
66
  "prep": "jiti ../../../scripts/prepare/addon-bundle.ts"
56
67
  },
57
68
  "dependencies": {
58
- "@storybook/addon-highlight": "8.5.0-alpha.8",
59
- "axe-core": "^4.2.0"
69
+ "@storybook/addon-highlight": "8.5.0-beta.0",
70
+ "@storybook/test": "8.5.0-beta.0",
71
+ "axe-core": "^4.2.0",
72
+ "vitest-axe": "^0.1.0"
60
73
  },
61
74
  "devDependencies": {
62
75
  "@storybook/global": "^5.0.0",
63
76
  "@storybook/icons": "^1.2.12",
64
77
  "@testing-library/react": "^14.0.0",
78
+ "execa": "^9.5.2",
79
+ "picocolors": "^1.1.0",
80
+ "pretty-format": "^29.7.0",
65
81
  "react": "^18.2.0",
66
82
  "react-dom": "^18.2.0",
67
83
  "react-resize-detector": "^7.1.2",
@@ -69,7 +85,7 @@
69
85
  "typescript": "^5.3.2"
70
86
  },
71
87
  "peerDependencies": {
72
- "storybook": "^8.5.0-alpha.8"
88
+ "storybook": "^8.5.0-beta.0"
73
89
  },
74
90
  "publishConfig": {
75
91
  "access": "public"
@@ -83,6 +99,9 @@
83
99
  ],
84
100
  "previewEntries": [
85
101
  "./src/preview.tsx"
102
+ ],
103
+ "nodeEntries": [
104
+ "./src/postinstall.ts"
86
105
  ]
87
106
  },
88
107
  "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae16",