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.
- package/dist/build/eb-player.css +9 -0
- package/dist/build/ebplayer.bundle.js +461 -42
- package/dist/build/ebplayer.bundle.js.map +1 -1
- package/dist/build/types/core/event-bus.d.ts +2 -0
- package/dist/build/types/core/event-bus.d.ts.map +1 -1
- package/dist/build/types/core/i18n.d.ts.map +1 -1
- package/dist/build/types/core/lifecycle.d.ts.map +1 -1
- package/dist/build/types/core/player-state.d.ts.map +1 -1
- package/dist/build/types/core/types.d.ts +1 -0
- package/dist/build/types/core/types.d.ts.map +1 -1
- package/dist/build/types/eb-player.d.ts.map +1 -1
- package/dist/build/types/engines/base-engine.d.ts +16 -0
- package/dist/build/types/engines/base-engine.d.ts.map +1 -1
- package/dist/build/types/engines/dash.d.ts.map +1 -1
- package/dist/build/types/engines/hls.d.ts.map +1 -1
- package/dist/build/types/engines/retry/hls.d.ts +13 -1
- package/dist/build/types/engines/retry/hls.d.ts.map +1 -1
- package/dist/build/types/integrations/ads-manager.d.ts +6 -1
- package/dist/build/types/integrations/ads-manager.d.ts.map +1 -1
- package/dist/build/types/integrations/index.d.ts +1 -0
- package/dist/build/types/integrations/index.d.ts.map +1 -1
- package/dist/build/types/integrations/intro-stream-manager.d.ts +33 -0
- package/dist/build/types/integrations/intro-stream-manager.d.ts.map +1 -0
- package/dist/build/types/skin/controllers/auto-hide.d.ts +2 -2
- package/dist/build/types/skin/controllers/auto-hide.d.ts.map +1 -1
- package/dist/build/types/skin/controllers/keyboard.d.ts +1 -1
- package/dist/build/types/skin/controls/forward-button.d.ts +1 -1
- package/dist/build/types/skin/controls/forward-button.d.ts.map +1 -1
- package/dist/build/types/skin/controls/rewind-button.d.ts +1 -1
- package/dist/build/types/skin/controls/rewind-button.d.ts.map +1 -1
- package/dist/build/types/skin/controls/seekbar.d.ts.map +1 -1
- package/dist/build/types/skin/overlays/preroll-overlay.d.ts +39 -0
- package/dist/build/types/skin/overlays/preroll-overlay.d.ts.map +1 -0
- package/dist/build/types/skin/skin-root.d.ts +8 -0
- package/dist/build/types/skin/skin-root.d.ts.map +1 -1
- package/dist/eb-player.css +9 -0
- package/package.json +19 -20
package/dist/build/eb-player.css
CHANGED
|
@@ -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
|
============================================================ */
|