@volcengine/veplayer 2.9.0-rc.0 → 2.9.0-rc.1
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/esm/veplayer.biz.live.development.js +2 -6
- package/esm/veplayer.biz.live.production.js +1 -1
- package/esm/veplayer.d.ts +168 -5
- package/esm/veplayer.development.js +4 -8
- package/esm/veplayer.live.d.ts +168 -5
- package/esm/veplayer.live.development.js +4 -8
- package/esm/veplayer.live.production.js +3 -3
- package/esm/veplayer.production.js +3 -3
- package/esm/veplayer.vod.development.js +1 -1
- package/esm/veplayer.vod.production.js +1 -1
- package/package.json +1 -1
- package/umd/veplayer.biz.live.development.js +2 -6
- package/umd/veplayer.biz.live.production.js +1 -1
- package/umd/veplayer.d.ts +168 -5
- package/umd/veplayer.development.js +4 -8
- package/umd/veplayer.live.d.ts +168 -5
- package/umd/veplayer.live.development.js +4 -8
- package/umd/veplayer.live.production.js +1 -1
- package/umd/veplayer.production.js +1 -1
- package/umd/veplayer.vod.development.js +1 -1
- package/umd/veplayer.vod.production.js +1 -1
- package/veplayer.d.ts +168 -5
- package/veplayer.live.d.ts +168 -5
|
@@ -26427,12 +26427,8 @@ function getCueClass() {
|
|
|
26427
26427
|
return Number.POSITIVE_INFINITY;
|
|
26428
26428
|
})();
|
|
26429
26429
|
const event = window["VePlayer"].event;
|
|
26430
|
-
const HLS_EVENTS = Object.
|
|
26431
|
-
(
|
|
26432
|
-
pre[`HLS_${eventKey}`] = eventName;
|
|
26433
|
-
return pre;
|
|
26434
|
-
},
|
|
26435
|
-
{}
|
|
26430
|
+
const HLS_EVENTS = Object.fromEntries(
|
|
26431
|
+
Object.entries(Events$1).map(([key, value]) => [`HLS_${key}`, value])
|
|
26436
26432
|
);
|
|
26437
26433
|
const Events = {
|
|
26438
26434
|
...event.Events,
|