eb-player 2.0.18 → 2.0.20

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.
Files changed (37) hide show
  1. package/dist/build/eb-player.css +9 -0
  2. package/dist/build/ebplayer.bundle.js +461 -42
  3. package/dist/build/ebplayer.bundle.js.map +1 -1
  4. package/dist/build/types/core/event-bus.d.ts +2 -0
  5. package/dist/build/types/core/event-bus.d.ts.map +1 -1
  6. package/dist/build/types/core/i18n.d.ts.map +1 -1
  7. package/dist/build/types/core/lifecycle.d.ts.map +1 -1
  8. package/dist/build/types/core/player-state.d.ts.map +1 -1
  9. package/dist/build/types/core/types.d.ts +1 -0
  10. package/dist/build/types/core/types.d.ts.map +1 -1
  11. package/dist/build/types/eb-player.d.ts.map +1 -1
  12. package/dist/build/types/engines/base-engine.d.ts +16 -0
  13. package/dist/build/types/engines/base-engine.d.ts.map +1 -1
  14. package/dist/build/types/engines/dash.d.ts.map +1 -1
  15. package/dist/build/types/engines/hls.d.ts.map +1 -1
  16. package/dist/build/types/engines/retry/hls.d.ts +13 -1
  17. package/dist/build/types/engines/retry/hls.d.ts.map +1 -1
  18. package/dist/build/types/integrations/ads-manager.d.ts +6 -1
  19. package/dist/build/types/integrations/ads-manager.d.ts.map +1 -1
  20. package/dist/build/types/integrations/index.d.ts +1 -0
  21. package/dist/build/types/integrations/index.d.ts.map +1 -1
  22. package/dist/build/types/integrations/intro-stream-manager.d.ts +33 -0
  23. package/dist/build/types/integrations/intro-stream-manager.d.ts.map +1 -0
  24. package/dist/build/types/skin/controllers/auto-hide.d.ts +2 -2
  25. package/dist/build/types/skin/controllers/auto-hide.d.ts.map +1 -1
  26. package/dist/build/types/skin/controllers/keyboard.d.ts +1 -1
  27. package/dist/build/types/skin/controls/forward-button.d.ts +1 -1
  28. package/dist/build/types/skin/controls/forward-button.d.ts.map +1 -1
  29. package/dist/build/types/skin/controls/rewind-button.d.ts +1 -1
  30. package/dist/build/types/skin/controls/rewind-button.d.ts.map +1 -1
  31. package/dist/build/types/skin/controls/seekbar.d.ts.map +1 -1
  32. package/dist/build/types/skin/overlays/preroll-overlay.d.ts +39 -0
  33. package/dist/build/types/skin/overlays/preroll-overlay.d.ts.map +1 -0
  34. package/dist/build/types/skin/skin-root.d.ts +8 -0
  35. package/dist/build/types/skin/skin-root.d.ts.map +1 -1
  36. package/dist/eb-player.css +9 -0
  37. package/package.json +19 -20
@@ -2539,6 +2539,15 @@
2539
2539
  pointer-events: none;
2540
2540
  }
2541
2541
 
2542
+ /* While an ad plays, raise the ads container above the player chrome (bars are
2543
+ z-index 30) and enable pointer-events so IMA's own ad UI — Skip button,
2544
+ click-through — receives clicks. At rest the container stays pointer-events:none
2545
+ so it never blocks clicks on the content video. */
2546
+ .eb-ad-playing .eb-ads-container {
2547
+ z-index: 40;
2548
+ pointer-events: auto;
2549
+ }
2550
+
2542
2551
  /* ============================================================
2543
2552
  Top bar
2544
2553
  ============================================================ */