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.cjs
CHANGED
@@ -12233,16 +12233,16 @@ const VideoWidget = ({ rec, index, height, data, muted, activeIndex, videoPostCo
|
|
12233
12233
|
React.createElement("div", { style: {
|
12234
12234
|
position: 'absolute',
|
12235
12235
|
width: '100%',
|
12236
|
-
height: '
|
12236
|
+
height: '100%',
|
12237
12237
|
top: '50%',
|
12238
12238
|
transform: translateY,
|
12239
12239
|
left: 0,
|
12240
12240
|
right: 0
|
12241
12241
|
} },
|
12242
|
-
React.createElement("div", { style: { position: 'relative' } },
|
12242
|
+
React.createElement("div", { style: { position: 'relative', width: '100%', height: '100%' } },
|
12243
12243
|
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: {
|
12244
12244
|
width: '100%',
|
12245
|
-
height: '
|
12245
|
+
height: '100%',
|
12246
12246
|
objectFit: 'contain'
|
12247
12247
|
} }),
|
12248
12248
|
React.createElement("img", { hidden: !isPauseVideo, className: 'clc-pb-video-pause', src: PAUSE_ICON }))),
|