@wistia/vhs 2.48.1-beta.fcf54342.a53f07f → 2.48.1
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/dist/index.cjs +526 -517
- package/dist/index.cjs.map +4 -4
- package/dist/index.mjs +526 -517
- package/dist/index.mjs.map +4 -4
- package/package.json +7 -18
- package/dist/src/private/helpers/escapeHtml.d.ts +0 -8
- package/dist/src/private/helpers/escapeHtml.d.ts.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wistia/vhs",
|
|
3
|
-
"version": "2.48.1
|
|
3
|
+
"version": "2.48.1",
|
|
4
4
|
"packageManager": "yarn@4.1.1",
|
|
5
5
|
"description": "Visual Hype System",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -8,19 +8,6 @@
|
|
|
8
8
|
"module": "dist/index.mjs",
|
|
9
9
|
"types": "dist/src/index.d.ts",
|
|
10
10
|
"sideEffects": false,
|
|
11
|
-
"exports": {
|
|
12
|
-
"./package.json": "./package.json",
|
|
13
|
-
".": {
|
|
14
|
-
"require": {
|
|
15
|
-
"types": "./dist/src/index.d.ts",
|
|
16
|
-
"default": "./dist/index.cjs"
|
|
17
|
-
},
|
|
18
|
-
"import": {
|
|
19
|
-
"types": "./dist/src/index.d.ts",
|
|
20
|
-
"default": "./dist/index.mjs"
|
|
21
|
-
}
|
|
22
|
-
}
|
|
23
|
-
},
|
|
24
11
|
"files": [
|
|
25
12
|
"dist"
|
|
26
13
|
],
|
|
@@ -49,7 +36,6 @@
|
|
|
49
36
|
"lint:style": "stylelint --cache --cache-location .stylelintcache --report-needless-disables \"**/*.tsx\"",
|
|
50
37
|
"outdated": "yarn upgrade-interactive",
|
|
51
38
|
"prepublishOnly": "yarn run build",
|
|
52
|
-
"publint": "publint",
|
|
53
39
|
"storybook": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook dev --host localhost --port 6006",
|
|
54
40
|
"storybook:build": "cross-env NODE_OPTIONS=--openssl-legacy-provider storybook build --quiet",
|
|
55
41
|
"test": "cross-env NODE_ENV=test vitest run",
|
|
@@ -74,11 +60,12 @@
|
|
|
74
60
|
"@wistia/type-guards": "^0.0.8",
|
|
75
61
|
"@wistia/vhs-design-tokens": "^2.1.0",
|
|
76
62
|
"date-fns": "^3.6.0",
|
|
63
|
+
"escape-html": "^1.0.3",
|
|
77
64
|
"formik": "^2.4.5",
|
|
78
65
|
"is-hotkey": "^0.2.0",
|
|
66
|
+
"lodash.isequal": "^4.5.0",
|
|
79
67
|
"polished": "^4.3.1",
|
|
80
68
|
"react-aria-live": "^2.0.5",
|
|
81
|
-
"react-fast-compare": "^3.2.2",
|
|
82
69
|
"react-is": "^18.2.0",
|
|
83
70
|
"react-slider": "^2.0.6",
|
|
84
71
|
"react-transition-group": "^4.4.5",
|
|
@@ -105,6 +92,8 @@
|
|
|
105
92
|
"@testing-library/jest-dom": "^6.4.2",
|
|
106
93
|
"@testing-library/react": "^15.0.1",
|
|
107
94
|
"@testing-library/user-event": "^14.5.2",
|
|
95
|
+
"@types/escape-html": "^1.0.4",
|
|
96
|
+
"@types/lodash.template": "^4.5.3",
|
|
108
97
|
"@types/node": "^20.12.7",
|
|
109
98
|
"@types/react": "18.2.21",
|
|
110
99
|
"@types/react-dom": "^18.2.24",
|
|
@@ -127,9 +116,9 @@
|
|
|
127
116
|
"globby": "^14.0.1",
|
|
128
117
|
"jsdoc-to-markdown": "^8.0.1",
|
|
129
118
|
"jsdom": "^24.0.0",
|
|
119
|
+
"lodash.camelcase": "^4.3.0",
|
|
120
|
+
"lodash.template": "^4.5.0",
|
|
130
121
|
"minimist": "^1.2.8",
|
|
131
|
-
"pascalcase": "^2.0.0",
|
|
132
|
-
"publint": "^0.2.7",
|
|
133
122
|
"react": "^18.2.0",
|
|
134
123
|
"react-dom": "^18.2.0",
|
|
135
124
|
"shx": "^0.3.4",
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Handle special characters by escaping in the provided text string.
|
|
3
|
-
*
|
|
4
|
-
* @param {string} stringToEscape - the string to escape
|
|
5
|
-
* @return {string} - the escaped string
|
|
6
|
-
*/
|
|
7
|
-
export declare const escapeHtml: (stringToEscape: number | string | null | undefined) => string;
|
|
8
|
-
//# sourceMappingURL=escapeHtml.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"escapeHtml.d.ts","sourceRoot":"","sources":["../../../../src/private/helpers/escapeHtml.ts"],"names":[],"mappings":"AASA;;;;;GAKG;AACH,eAAO,MAAM,UAAU,mBAAoB,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,KAAG,MAwC/E,CAAC"}
|