pb-sxp-ui 1.0.29 → 1.0.30
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 +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.min.cjs +1 -1
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/pb-ui.js +3 -3
- package/dist/pb-ui.js.map +1 -1
- package/dist/pb-ui.min.js +1 -1
- package/dist/pb-ui.min.js.map +1 -1
- package/es/core/components/SxpPageRender/VideoWidget/index.js +3 -3
- package/lib/core/components/SxpPageRender/VideoWidget/index.js +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -12210,16 +12210,16 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
12210
12210
|
React.createElement("div", { style: {
|
12211
12211
|
position: 'absolute',
|
12212
12212
|
width: '100%',
|
12213
|
-
height: '
|
12213
|
+
height: '100%',
|
12214
12214
|
top: '50%',
|
12215
12215
|
transform: translateY,
|
12216
12216
|
left: 0,
|
12217
12217
|
right: 0
|
12218
12218
|
} },
|
12219
|
-
React.createElement("div", { style: { position: 'relative' } },
|
12219
|
+
React.createElement("div", { style: { position: 'relative', width: '100%', height: '100%' } },
|
12220
12220
|
React.createElement("video", { id: `pb-video-${index}`, className: 'clc-pb-video', ref: videoRef, crossOrigin: 'anonymous', muted: true, controls: false, playsInline: true, preload: 'auto', onPause: onPause, onEnded: handleVideoStart, style: {
|
12221
12221
|
width: '100%',
|
12222
|
-
height: '
|
12222
|
+
height: '100%',
|
12223
12223
|
objectFit: 'contain'
|
12224
12224
|
} }),
|
12225
12225
|
React.createElement("img", { hidden: !isPauseVideo, className: 'clc-pb-video-pause', src: PAUSE_ICON }))),
|