@wistia/vhs 2.66.1 → 2.66.2
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/README.md +2 -4
- package/dist/hooks/useThemeColor/UseThemeColorExample.d.ts.map +1 -1
- package/dist/hooks/useThemeColor/useThemeColor.d.ts +7 -25
- package/dist/hooks/useThemeColor/useThemeColor.d.ts.map +1 -1
- package/dist/index.cjs +314 -314
- package/dist/index.cjs.map +4 -4
- package/dist/index.mjs +320 -320
- package/dist/index.mjs.map +4 -4
- package/package.json +12 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wistia/vhs",
|
|
3
|
-
"version": "2.66.
|
|
3
|
+
"version": "2.66.2",
|
|
4
4
|
"description": "Visual Hype System - Wistia's opinionated component library for building React UIs",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"browsers": "node ./scripts/browserSupport.mjs",
|
|
31
|
-
"build": "yarn build:src && node ./scripts/
|
|
31
|
+
"build": "yarn build:src && node ./scripts/buildTypes.mjs",
|
|
32
32
|
"build:analyze": "yarn build:src --metafile && esbuild-visualizer --metadata ./stats/esbuild-stats.json --filename ./stats/esbuild-stats.html",
|
|
33
33
|
"build:src": "cross-env NODE_ENV=production ./esbuild.config.mjs",
|
|
34
34
|
"build:types": "tsc --project tsconfig.build.json",
|
|
35
35
|
"build:types:debug": "tsc --project tsconfig.build.json --showConfig",
|
|
36
|
-
"build:watch": "
|
|
36
|
+
"build:watch": "cross-env NODE_ENV=development ./esbuild.config.mjs --watch",
|
|
37
|
+
"build:watch_": "concurrently \"yarn build:watch:src\" \"yarn build:watch:types\"",
|
|
37
38
|
"build:watch:src": "cross-env NODE_ENV=development ./esbuild.config.mjs --watch",
|
|
38
39
|
"build:watch:types": "tsc --watch --project tsconfig.build.json",
|
|
39
|
-
"bundlewatch": "yarn build:src && bundlewatch --config .bundlewatch.json",
|
|
40
40
|
"clean": "shx rm -rf ./dist && echo 'dist directory has been removed'",
|
|
41
41
|
"depcheck": "depcheck",
|
|
42
42
|
"generate": "node ./scripts/generators/generateComponent.mjs",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
"prepack": "yarn run build",
|
|
46
46
|
"publint_": "publint-check",
|
|
47
47
|
"test": "cross-env NODE_ENV=test vitest run",
|
|
48
|
-
"test:ci": "yarn run test",
|
|
49
48
|
"test:coverage": "yarn run test --coverage=true && open ./coverage/index.html",
|
|
50
49
|
"test:debug": "echo 'open chrome://inspect/#devices' && cross-env NODE_ENV=test vitest --inspect-brk --no-file-parallelism",
|
|
51
50
|
"ts:generate": "tsx ./scripts/generateTypes.ts",
|
|
@@ -65,7 +64,7 @@
|
|
|
65
64
|
"@wistia/vhs-design-tokens": "2.1.3",
|
|
66
65
|
"date-fns": "^3.6.0",
|
|
67
66
|
"formik": "^2.4.6",
|
|
68
|
-
"framer-motion": "^11.3.
|
|
67
|
+
"framer-motion": "^11.3.30",
|
|
69
68
|
"is-hotkey": "^0.2.0",
|
|
70
69
|
"polished": "^4.3.1",
|
|
71
70
|
"react-aria-live": "^2.0.5",
|
|
@@ -77,19 +76,19 @@
|
|
|
77
76
|
"slate-hyperscript": "^0.100.0",
|
|
78
77
|
"slate-react": "0.99.0",
|
|
79
78
|
"throttle-debounce": "^5.0.2",
|
|
80
|
-
"type-fest": "^4.
|
|
79
|
+
"type-fest": "^4.25.0",
|
|
81
80
|
"uuid": "^10.0.0"
|
|
82
81
|
},
|
|
83
82
|
"devDependencies": {
|
|
84
83
|
"@repo/config": "workspace:*",
|
|
85
84
|
"@storybook/react": "^8.2.9",
|
|
86
85
|
"@testing-library/dom": "^10.4.0",
|
|
87
|
-
"@testing-library/jest-dom": "^6.
|
|
86
|
+
"@testing-library/jest-dom": "^6.5.0",
|
|
88
87
|
"@testing-library/react": "^16.0.0",
|
|
89
88
|
"@testing-library/user-event": "^14.5.2",
|
|
90
89
|
"@types/is-hotkey": "^0.1.10",
|
|
91
|
-
"@types/node": "^20.
|
|
92
|
-
"@types/react": "^18.3.
|
|
90
|
+
"@types/node": "^20.16.1",
|
|
91
|
+
"@types/react": "^18.3.4",
|
|
93
92
|
"@types/react-aria-live": "^2.0.6",
|
|
94
93
|
"@types/react-dom": "^18.3.0",
|
|
95
94
|
"@types/react-slider": "^1.3.6",
|
|
@@ -97,16 +96,15 @@
|
|
|
97
96
|
"@types/throttle-debounce": "^5.0.2",
|
|
98
97
|
"@types/uuid": "^10.0.0",
|
|
99
98
|
"browserslist": "^4.23.3",
|
|
100
|
-
"bundlewatch": "^0.4.0",
|
|
101
99
|
"concurrently": "^8.2.2",
|
|
102
100
|
"cross-env": "^7.0.3",
|
|
103
101
|
"depcheck": "^1.4.7",
|
|
104
|
-
"esbuild": "^0.23.
|
|
102
|
+
"esbuild": "^0.23.1",
|
|
105
103
|
"esbuild-plugin-browserslist": "^0.14.0",
|
|
106
104
|
"esbuild-visualizer": "^0.6.0",
|
|
107
105
|
"globby": "^14.0.2",
|
|
108
106
|
"jsdoc-to-markdown": "^8.0.3",
|
|
109
|
-
"jsdom": "^24.1.
|
|
107
|
+
"jsdom": "^24.1.3",
|
|
110
108
|
"minimist": "^1.2.8",
|
|
111
109
|
"pascalcase": "^2.0.0",
|
|
112
110
|
"prettier": "^3.3.3",
|
|
@@ -115,7 +113,7 @@
|
|
|
115
113
|
"shx": "^0.3.4",
|
|
116
114
|
"signale": "^1.4.0",
|
|
117
115
|
"styled-components": "^5.3.11",
|
|
118
|
-
"tsx": "^4.
|
|
116
|
+
"tsx": "^4.18.0",
|
|
119
117
|
"typescript": "^5.5.4",
|
|
120
118
|
"vitest": "^2.0.5",
|
|
121
119
|
"vitest-axe": "^1.0.0-pre.3",
|