@zenpatient-org/healthspan-marketing-ui 0.2.20 → 0.2.22
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/components/AnchorLinks/anchorLinks.module.css +1 -1
- package/dist/components/AnchorLinks/types.d.ts +1 -1
- package/dist/components/ComplexImageCarousel/useComplexImageCarousel.d.ts +6 -6
- package/dist/components/Icon/Icon.d.ts +1 -1
- package/dist/components/Label/label.module.css +1 -0
- package/dist/components/TypeBadge/TypeBadge.cjs.js +1 -1
- package/dist/components/TypeBadge/TypeBadge.d.ts +1 -1
- package/dist/components/TypeBadge/TypeBadge.es.js +4 -4
- package/dist/components/TypeBadge/typeBadge.module.css +1 -1
- package/dist/components/WistiaEmbed/WistiaEmbed.cjs.js +1 -0
- package/dist/components/WistiaEmbed/WistiaEmbed.d.ts +5 -0
- package/dist/components/WistiaEmbed/WistiaEmbed.es.js +8 -0
- package/dist/components/WistiaEmbed/wistiaEmbed.module.css +6 -0
- package/dist/components/YouTubeEmbed/YouTubeEmbed.cjs.js +1 -0
- package/dist/components/YouTubeEmbed/YouTubeEmbed.d.ts +6 -0
- package/dist/components/YouTubeEmbed/YouTubeEmbed.es.js +16 -0
- package/dist/components/YouTubeEmbed/youtubeEmbed.module.css +15 -0
- package/dist/modules/ContentHighlight/ContentHighlight.cjs.js +1 -1
- package/dist/modules/ContentHighlight/ContentHighlight.d.ts +5 -3
- package/dist/modules/ContentHighlight/ContentHighlight.es.js +39 -33
- package/dist/modules/ContentHighlight/contentHighlight.module.css +15 -2
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/WistiaPlayer.cjs.js +1 -0
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/WistiaPlayer.es.js +30 -0
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/WistiaPlayerWrapper-KYHM7EWK.cjs.js +1 -0
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/WistiaPlayerWrapper-KYHM7EWK.es.js +64 -0
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/chunk-FSLSW5KG.cjs.js +21 -0
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/chunk-FSLSW5KG.es.js +59 -0
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/wistia-player-PKAEVX5L.cjs.js +52 -0
- package/dist/node_modules/@wistia/wistia-player-react/dist/mjs/wistia-player-PKAEVX5L.es.js +10285 -0
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenpatient-org/healthspan-marketing-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.22",
|
|
4
4
|
"description": "Design system",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
},
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"peerDependencies": {
|
|
36
|
+
"@gsap/react": "^2.1.2",
|
|
37
|
+
"gsap": "^3.13.0",
|
|
36
38
|
"react": "^18.3.1",
|
|
37
39
|
"react-dom": "^18.3.1",
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"swiper": "^11.2.8",
|
|
41
|
-
"react-tiny-popover": "^8.1.6"
|
|
40
|
+
"react-tiny-popover": "^8.1.6",
|
|
41
|
+
"swiper": "^11.2.8"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@eslint/js": "^9.28.0",
|
|
@@ -72,6 +72,7 @@
|
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"@types/node": "^22.15.14",
|
|
75
|
+
"@wistia/wistia-player-react": "^0.3.2",
|
|
75
76
|
"react-mailchimp-subscribe": "^2.1.3"
|
|
76
77
|
},
|
|
77
78
|
"exports": {
|