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 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: 'auto',
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: 'auto',
12245
+ height: '100%',
12246
12246
  objectFit: 'contain'
12247
12247
  } }),
12248
12248
  React.createElement("img", { hidden: !isPauseVideo, className: 'clc-pb-video-pause', src: PAUSE_ICON }))),