@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.
Files changed (84) hide show
  1. package/core.js +1 -1
  2. package/default.js +1 -1
  3. package/embed.js +2 -2
  4. package/index.d.ts +4 -4
  5. package/package.json +2 -2
  6. package/plugins/ads.d.ts +4 -4
  7. package/plugins/ads.js +2 -2
  8. package/plugins/airplay.d.ts +4 -4
  9. package/plugins/airplay.js +1 -1
  10. package/plugins/analytics.d.ts +4 -4
  11. package/plugins/analytics.js +1 -1
  12. package/plugins/asel.d.ts +4 -4
  13. package/plugins/asel.js +1 -1
  14. package/plugins/audio.d.ts +4 -4
  15. package/plugins/audio.js +1 -1
  16. package/plugins/chapters.d.ts +4 -4
  17. package/plugins/chapters.js +1 -1
  18. package/plugins/chromecast.d.ts +4 -4
  19. package/plugins/chromecast.js +1 -1
  20. package/plugins/comscore.d.ts +4 -4
  21. package/plugins/comscore.js +1 -1
  22. package/plugins/consent.d.ts +4 -4
  23. package/plugins/consent.js +1 -1
  24. package/plugins/context-menu.d.ts +4 -4
  25. package/plugins/context-menu.js +1 -1
  26. package/plugins/cuepoints.d.ts +4 -4
  27. package/plugins/cuepoints.js +1 -1
  28. package/plugins/dash.d.ts +4 -4
  29. package/plugins/dash.js +2 -5
  30. package/plugins/drm.d.ts +4 -4
  31. package/plugins/drm.js +1 -1
  32. package/plugins/endscreen.d.ts +4 -4
  33. package/plugins/endscreen.js +1 -1
  34. package/plugins/fas.d.ts +4 -4
  35. package/plugins/fas.js +1 -1
  36. package/plugins/float-on-scroll.d.ts +4 -4
  37. package/plugins/float-on-scroll.js +1 -1
  38. package/plugins/ga4.d.ts +4 -4
  39. package/plugins/ga4.js +1 -1
  40. package/plugins/gemius.d.ts +4 -4
  41. package/plugins/gemius.js +1 -1
  42. package/plugins/google-analytics.d.ts +4 -4
  43. package/plugins/google-analytics.js +1 -1
  44. package/plugins/hls.d.ts +4 -4
  45. package/plugins/hls.js +1 -1
  46. package/plugins/id3.d.ts +4 -4
  47. package/plugins/id3.js +1 -1
  48. package/plugins/iframe.d.ts +4 -4
  49. package/plugins/iframe.js +1 -1
  50. package/plugins/keyboard.d.ts +4 -4
  51. package/plugins/keyboard.js +1 -1
  52. package/plugins/media-session.d.ts +4 -4
  53. package/plugins/media-session.js +1 -1
  54. package/plugins/message.d.ts +4 -4
  55. package/plugins/message.js +1 -1
  56. package/plugins/ovp.d.ts +10 -4
  57. package/plugins/ovp.js +1 -1
  58. package/plugins/playlist.d.ts +4 -4
  59. package/plugins/playlist.js +1 -1
  60. package/plugins/preview.d.ts +4 -4
  61. package/plugins/preview.js +1 -1
  62. package/plugins/qsel.d.ts +4 -4
  63. package/plugins/qsel.js +1 -1
  64. package/plugins/qul.d.ts +4 -4
  65. package/plugins/qul.js +1 -1
  66. package/plugins/rts.d.ts +4 -4
  67. package/plugins/rts.js +7 -7
  68. package/plugins/share.d.ts +4 -4
  69. package/plugins/share.js +1 -1
  70. package/plugins/speed.d.ts +4 -4
  71. package/plugins/speed.js +1 -1
  72. package/plugins/ssai.d.ts +4 -4
  73. package/plugins/ssai.js +2 -2
  74. package/plugins/subtitles.d.ts +4 -4
  75. package/plugins/subtitles.js +1 -1
  76. package/plugins/thumbnails.d.ts +4 -4
  77. package/plugins/thumbnails.js +1 -1
  78. package/plugins/tizen.d.ts +4 -4
  79. package/plugins/tizen.js +1 -1
  80. package/plugins/vtsel.d.ts +4 -4
  81. package/plugins/vtsel.js +1 -1
  82. package/plugins/webos.d.ts +4 -4
  83. package/plugins/webos.js +1 -1
  84. 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
- }) | BitrateInfo | {
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 | BitrateInfo;
1581
- after?: Level | BitrateInfo;
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.29.0",
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": "3.2.2"
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
- }) | BitrateInfo | {
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 | BitrateInfo;
3775
- after?: Level | BitrateInfo;
3774
+ before?: Level | Representation;
3775
+ after?: Level | Representation;
3776
3776
  plugin: string;
3777
3777
  automatic: boolean;
3778
3778
  /* Excluded from this release type: downscale */