@chromatic-com/storybook 0.0.124 → 0.1.0

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": "@chromatic-com/storybook",
3
- "version": "0.0.124",
3
+ "version": "0.1.0",
4
4
  "description": "Visual Testing addon with Chromatic",
5
5
  "engines": {
6
6
  "node": ">=16.0.0",
@@ -15,7 +15,7 @@
15
15
  ],
16
16
  "repository": {
17
17
  "type": "git",
18
- "url": "https://github.com/chromaui/addon-visual-tests"
18
+ "url": "git+https://github.com/chromaui/addon-visual-tests.git"
19
19
  },
20
20
  "license": "MIT",
21
21
  "author": "Chromatic <support@chromatic.com>",
@@ -59,6 +59,8 @@
59
59
  "filesize": "^10.0.12",
60
60
  "jsonfile": "^6.1.0",
61
61
  "pluralize": "^8.0.0",
62
+ "react-confetti": "^6.1.0",
63
+ "react-joyride": "^2.7.2",
62
64
  "ts-dedent": "^2.2.0",
63
65
  "urql": "^4.0.3",
64
66
  "uuid": "^9.0.0",
@@ -85,14 +87,15 @@
85
87
  "@storybook/preview": "7.6.4",
86
88
  "@storybook/react": "7.6.4",
87
89
  "@storybook/react-vite": "7.6.4",
88
- "@storybook/theming": "7.6.4",
89
90
  "@storybook/testing-library": "^0.2.2",
91
+ "@storybook/theming": "7.6.4",
90
92
  "@storybook/types": "7.6.4",
91
93
  "@types/jest": "^29.5.3",
92
94
  "@types/jsonfile": "^6.1.1",
93
95
  "@types/node": "^18.15.0",
94
96
  "@types/pluralize": "^0.0.29",
95
97
  "@types/react": "^16.14.0",
98
+ "@types/react-dom": "^16.9.24",
96
99
  "@typescript-eslint/eslint-plugin": "^5.59.11",
97
100
  "@typescript-eslint/parser": "^5.59.11",
98
101
  "@vitejs/plugin-react": "^3.1.0",
@@ -124,6 +127,18 @@
124
127
  "vite-plugin-turbosnap": "^1.0.3",
125
128
  "zx": "^1.14.1"
126
129
  },
130
+ "peerDependencies": {
131
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
132
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
133
+ },
134
+ "peerDependenciesMeta": {
135
+ "react": {
136
+ "optional": true
137
+ },
138
+ "react-dom": {
139
+ "optional": true
140
+ }
141
+ },
127
142
  "publishConfig": {
128
143
  "access": "public"
129
144
  },
package/types.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ declare module "*.png" {
2
+ const content: any;
3
+ export default content;
4
+ }