stormcloud-video-player 0.7.31 → 0.7.32

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/lib/index.js CHANGED
@@ -6543,10 +6543,10 @@ function ComingUpNextOverlay(param) {
6543
6543
  var overlay = param.overlay, size = param.size;
6544
6544
  var cfg = parseConfig(overlay.content);
6545
6545
  if (!cfg) return null;
6546
- var f = Math.max(9, Math.min(size.h * 0.19, size.w * 0.075));
6547
- var showSubtitle = size.h >= 68;
6548
- var showThumbnail = !!(cfg.thumbnailUrl && size.h >= 58);
6549
- var thumbW = showThumbnail ? Math.max(40, size.h * 0.7) : 0;
6546
+ var f = Math.max(8, Math.min(size.h * 0.13, size.w * 0.048));
6547
+ var showSubtitle = size.h >= 60;
6548
+ var showThumbnail = false;
6549
+ var thumbW = 0;
6550
6550
  return /* @__PURE__ */ jsxs("div", {
6551
6551
  style: {
6552
6552
  width: "100%",
@@ -6594,9 +6594,9 @@ function ComingUpNextOverlay(param) {
6594
6594
  }),
6595
6595
  /* @__PURE__ */ jsx("div", {
6596
6596
  style: {
6597
- fontSize: "1.35em",
6597
+ fontSize: "1.2em",
6598
6598
  fontWeight: 700,
6599
- lineHeight: 1.15,
6599
+ lineHeight: 1.2,
6600
6600
  overflow: "hidden",
6601
6601
  textOverflow: "ellipsis",
6602
6602
  whiteSpace: "nowrap"