@flowplayer/player 3.29.0 → 3.30.0
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/core.js +1 -1
- package/default.js +1 -1
- package/embed.js +2 -2
- package/index.d.ts +4 -4
- package/package.json +2 -2
- package/plugins/ads.d.ts +4 -4
- package/plugins/ads.js +2 -2
- package/plugins/airplay.d.ts +4 -4
- package/plugins/airplay.js +1 -1
- package/plugins/analytics.d.ts +4 -4
- package/plugins/analytics.js +1 -1
- package/plugins/asel.d.ts +4 -4
- package/plugins/asel.js +1 -1
- package/plugins/audio.d.ts +4 -4
- package/plugins/audio.js +1 -1
- package/plugins/chapters.d.ts +4 -4
- package/plugins/chapters.js +1 -1
- package/plugins/chromecast.d.ts +4 -4
- package/plugins/chromecast.js +1 -1
- package/plugins/comscore.d.ts +4 -4
- package/plugins/comscore.js +1 -1
- package/plugins/consent.d.ts +4 -4
- package/plugins/consent.js +1 -1
- package/plugins/context-menu.d.ts +4 -4
- package/plugins/context-menu.js +1 -1
- package/plugins/cuepoints.d.ts +4 -4
- package/plugins/cuepoints.js +1 -1
- package/plugins/dash.d.ts +4 -4
- package/plugins/dash.js +2 -5
- package/plugins/drm.d.ts +4 -4
- package/plugins/drm.js +1 -1
- package/plugins/endscreen.d.ts +4 -4
- package/plugins/endscreen.js +1 -1
- package/plugins/fas.d.ts +4 -4
- package/plugins/fas.js +1 -1
- package/plugins/float-on-scroll.d.ts +4 -4
- package/plugins/float-on-scroll.js +1 -1
- package/plugins/ga4.d.ts +4 -4
- package/plugins/ga4.js +1 -1
- package/plugins/gemius.d.ts +4 -4
- package/plugins/gemius.js +1 -1
- package/plugins/google-analytics.d.ts +4 -4
- package/plugins/google-analytics.js +1 -1
- package/plugins/hls.d.ts +4 -4
- package/plugins/hls.js +1 -1
- package/plugins/id3.d.ts +4 -4
- package/plugins/id3.js +1 -1
- package/plugins/iframe.d.ts +4 -4
- package/plugins/iframe.js +1 -1
- package/plugins/keyboard.d.ts +4 -4
- package/plugins/keyboard.js +1 -1
- package/plugins/media-session.d.ts +4 -4
- package/plugins/media-session.js +1 -1
- package/plugins/message.d.ts +4 -4
- package/plugins/message.js +1 -1
- package/plugins/ovp.d.ts +10 -4
- package/plugins/ovp.js +1 -1
- package/plugins/playlist.d.ts +4 -4
- package/plugins/playlist.js +1 -1
- package/plugins/preview.d.ts +4 -4
- package/plugins/preview.js +1 -1
- package/plugins/qsel.d.ts +4 -4
- package/plugins/qsel.js +1 -1
- package/plugins/qul.d.ts +4 -4
- package/plugins/qul.js +1 -1
- package/plugins/rts.d.ts +4 -4
- package/plugins/rts.js +7 -7
- package/plugins/share.d.ts +4 -4
- package/plugins/share.js +1 -1
- package/plugins/speed.d.ts +4 -4
- package/plugins/speed.js +1 -1
- package/plugins/ssai.d.ts +4 -4
- package/plugins/ssai.js +2 -2
- package/plugins/subtitles.d.ts +4 -4
- package/plugins/subtitles.js +1 -1
- package/plugins/thumbnails.d.ts +4 -4
- package/plugins/thumbnails.js +1 -1
- package/plugins/tizen.d.ts +4 -4
- package/plugins/tizen.js +1 -1
- package/plugins/vtsel.d.ts +4 -4
- package/plugins/vtsel.js +1 -1
- package/plugins/webos.d.ts +4 -4
- package/plugins/webos.js +1 -1
- package/util/loader.d.ts +4 -4
package/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { BitrateInfo } from 'dashjs';
|
|
2
1
|
import type { Get } from 'type-fest';
|
|
3
2
|
import type { Level } from 'hls.js';
|
|
3
|
+
import type { Representation } from 'dashjs';
|
|
4
4
|
import type { TupleToUnion } from 'type-fest';
|
|
5
5
|
|
|
6
6
|
/* Excluded from this release type: AnyLoader */
|
|
@@ -1529,7 +1529,7 @@ PROGRESS = "progress";
|
|
|
1529
1529
|
*/
|
|
1530
1530
|
declare type QselOption = (Level & {
|
|
1531
1531
|
level: number;
|
|
1532
|
-
}) |
|
|
1532
|
+
}) | Representation | {
|
|
1533
1533
|
name: string | number;
|
|
1534
1534
|
encodingId: string;
|
|
1535
1535
|
spatialLayerId: number;
|
|
@@ -1577,8 +1577,8 @@ QUALITY_CHANGE = "qualitychange";
|
|
|
1577
1577
|
* @public
|
|
1578
1578
|
*/
|
|
1579
1579
|
declare type QualityChangeEventDetail = {
|
|
1580
|
-
before?: Level |
|
|
1581
|
-
after?: Level |
|
|
1580
|
+
before?: Level | Representation;
|
|
1581
|
+
after?: Level | Representation;
|
|
1582
1582
|
plugin: string;
|
|
1583
1583
|
automatic: boolean;
|
|
1584
1584
|
/* Excluded from this release type: downscale */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flowplayer/player",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.30.0",
|
|
4
4
|
"description": "video player for the future",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"flowplayer",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"hls.js": "1.5.8",
|
|
21
21
|
"type-fest": "^4.32.0",
|
|
22
|
-
"dashjs": "
|
|
22
|
+
"dashjs": "5.0.3"
|
|
23
23
|
},
|
|
24
24
|
"exports": {
|
|
25
25
|
".": {
|
package/plugins/ads.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { BitrateInfo } from 'dashjs';
|
|
2
1
|
import type { Get } from 'type-fest';
|
|
3
2
|
import type { Level } from 'hls.js';
|
|
3
|
+
import type { Representation } from 'dashjs';
|
|
4
4
|
import type { TupleToUnion } from 'type-fest';
|
|
5
5
|
|
|
6
6
|
declare const AD_ATTRIBUTION: number;
|
|
@@ -3723,7 +3723,7 @@ PROGRESS = "progress";
|
|
|
3723
3723
|
*/
|
|
3724
3724
|
declare type QselOption = (Level & {
|
|
3725
3725
|
level: number;
|
|
3726
|
-
}) |
|
|
3726
|
+
}) | Representation | {
|
|
3727
3727
|
name: string | number;
|
|
3728
3728
|
encodingId: string;
|
|
3729
3729
|
spatialLayerId: number;
|
|
@@ -3771,8 +3771,8 @@ QUALITY_CHANGE = "qualitychange";
|
|
|
3771
3771
|
* @public
|
|
3772
3772
|
*/
|
|
3773
3773
|
declare type QualityChangeEventDetail = {
|
|
3774
|
-
before?: Level |
|
|
3775
|
-
after?: Level |
|
|
3774
|
+
before?: Level | Representation;
|
|
3775
|
+
after?: Level | Representation;
|
|
3776
3776
|
plugin: string;
|
|
3777
3777
|
automatic: boolean;
|
|
3778
3778
|
/* Excluded from this release type: downscale */
|