@flowplayer/player 3.32.1-rc.1 → 3.32.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.
Files changed (49) 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 +113 -0
  5. package/package.json +1 -1
  6. package/plugins/ads.d.ts +113 -0
  7. package/plugins/ads.js +2 -2
  8. package/plugins/airplay.d.ts +113 -0
  9. package/plugins/analytics.d.ts +113 -0
  10. package/plugins/analytics.js +1 -1
  11. package/plugins/asel.d.ts +113 -0
  12. package/plugins/audio.d.ts +113 -0
  13. package/plugins/chapters.d.ts +113 -0
  14. package/plugins/chromecast.d.ts +113 -0
  15. package/plugins/comscore.d.ts +113 -0
  16. package/plugins/consent.d.ts +113 -0
  17. package/plugins/context-menu.d.ts +113 -0
  18. package/plugins/cuepoints.d.ts +113 -0
  19. package/plugins/dash.d.ts +113 -0
  20. package/plugins/drm.d.ts +113 -0
  21. package/plugins/endscreen.d.ts +113 -0
  22. package/plugins/fas.d.ts +113 -0
  23. package/plugins/float-on-scroll.d.ts +113 -0
  24. package/plugins/ga4.d.ts +113 -0
  25. package/plugins/gemius.d.ts +113 -0
  26. package/plugins/google-analytics.d.ts +113 -0
  27. package/plugins/hls.d.ts +113 -0
  28. package/plugins/id3.d.ts +113 -0
  29. package/plugins/iframe.d.ts +113 -0
  30. package/plugins/keyboard.d.ts +113 -0
  31. package/plugins/media-session.d.ts +113 -0
  32. package/plugins/message.d.ts +113 -0
  33. package/plugins/ovp.d.ts +113 -0
  34. package/plugins/playlist.d.ts +113 -0
  35. package/plugins/preview.d.ts +113 -0
  36. package/plugins/qsel.d.ts +113 -0
  37. package/plugins/qul.d.ts +113 -0
  38. package/plugins/rts.d.ts +113 -0
  39. package/plugins/rts.js +3 -3
  40. package/plugins/share.d.ts +113 -0
  41. package/plugins/speed.d.ts +113 -0
  42. package/plugins/ssai.d.ts +113 -0
  43. package/plugins/ssai.js +1 -1
  44. package/plugins/subtitles.d.ts +113 -0
  45. package/plugins/thumbnails.d.ts +113 -0
  46. package/plugins/tizen.d.ts +113 -0
  47. package/plugins/vtsel.d.ts +113 -0
  48. package/plugins/webos.d.ts +113 -0
  49. package/util/loader.d.ts +113 -0
@@ -767,6 +767,13 @@ declare interface FlowplayerUMDBase {
767
767
  /* Excluded from this release type: support */
768
768
  /* Excluded from this release type: jwt */
769
769
  /* Excluded from this release type: loaders */
770
+ /**
771
+ * @public
772
+ * Translations dictionaries to be used with `@flowplayer/translations` package
773
+ *
774
+ * See [official documentation](https://developer.wowza.com/docs/wowza-flowplayer/player/translations/)
775
+ */
776
+ i18n: typeof I18n;
770
777
  }
771
778
 
772
779
  /**
@@ -844,6 +851,112 @@ declare type HasSrcExtensions<PluginBareConfigs extends unknown[]> = TupleToUnio
844
851
 
845
852
  declare const HOVERED = "is-hovered";
846
853
 
854
+ declare class I18n implements Plugin_2 {
855
+ static pluginName: string;
856
+ static en: {
857
+ ads: {
858
+ ad: string;
859
+ ads: string;
860
+ advertisement: string;
861
+ indicator: string;
862
+ adchoices: string;
863
+ };
864
+ audio: {
865
+ button_txt: string;
866
+ menu_title: string;
867
+ };
868
+ cc: {
869
+ button: string;
870
+ menu_title: string;
871
+ options: string;
872
+ tracks: string;
873
+ reset: string;
874
+ colors: {
875
+ Black: string;
876
+ Blue: string;
877
+ Cyan: string;
878
+ Green: string;
879
+ Magenta: string;
880
+ Red: string;
881
+ White: string;
882
+ Yellow: string;
883
+ };
884
+ edgeStyle: {
885
+ None: string;
886
+ "Drop shadow": string;
887
+ Raised: string;
888
+ Depressed: string;
889
+ Outline: string;
890
+ };
891
+ fontFamily: {
892
+ "Monospaced Serif": string;
893
+ "Proportional Serif": string;
894
+ "Monospaced Sans-Serif": string;
895
+ "Proportional Sans-Serif": string;
896
+ Casual: string;
897
+ Cursive: string;
898
+ };
899
+ properties: {
900
+ fontFamily: string;
901
+ fontSize: string;
902
+ fontColor: string;
903
+ fontOpacity: string;
904
+ backgroundColor: string;
905
+ backgroundOpacity: string;
906
+ characterEdgeStyle: string;
907
+ };
908
+ };
909
+ chromecast: {
910
+ start: string;
911
+ stop: string;
912
+ };
913
+ core: {
914
+ exit_fullscreen: string;
915
+ fullscreen: string;
916
+ mute: string;
917
+ muted: string;
918
+ pause: string;
919
+ play: string;
920
+ seconds: string;
921
+ timeline_aria_label: string;
922
+ unmute: string;
923
+ volume: string;
924
+ close: string;
925
+ "skip-next": string;
926
+ "skip-prev": string;
927
+ };
928
+ ovp: {
929
+ starting_in: string;
930
+ };
931
+ playlist: {
932
+ cancel: string;
933
+ up_next: string;
934
+ autoplay: string;
935
+ now_playing: string;
936
+ turn_off_autoplay: string;
937
+ playlist: string;
938
+ };
939
+ qsel: {
940
+ menu_title: string;
941
+ };
942
+ share: {
943
+ clipboard_failure: string;
944
+ clipboard_success: string;
945
+ embed: string;
946
+ link: string;
947
+ menu_title: string;
948
+ };
949
+ speed: {
950
+ menu_title: string;
951
+ };
952
+ vtsel: {
953
+ button_txt: string;
954
+ menu_title: string;
955
+ };
956
+ };
957
+ init(config: Config, _root: never, video: Player): void;
958
+ }
959
+
847
960
  /**
848
961
  * @public
849
962
  * maybe handles iframe specific stuff if inside an iframe
@@ -767,6 +767,13 @@ declare interface FlowplayerUMDBase {
767
767
  /* Excluded from this release type: support */
768
768
  /* Excluded from this release type: jwt */
769
769
  /* Excluded from this release type: loaders */
770
+ /**
771
+ * @public
772
+ * Translations dictionaries to be used with `@flowplayer/translations` package
773
+ *
774
+ * See [official documentation](https://developer.wowza.com/docs/wowza-flowplayer/player/translations/)
775
+ */
776
+ i18n: typeof I18n;
770
777
  }
771
778
 
772
779
  /**
@@ -844,6 +851,112 @@ declare type HasSrcExtensions<PluginBareConfigs extends unknown[]> = TupleToUnio
844
851
 
845
852
  declare const HOVERED = "is-hovered";
846
853
 
854
+ declare class I18n implements Plugin_2 {
855
+ static pluginName: string;
856
+ static en: {
857
+ ads: {
858
+ ad: string;
859
+ ads: string;
860
+ advertisement: string;
861
+ indicator: string;
862
+ adchoices: string;
863
+ };
864
+ audio: {
865
+ button_txt: string;
866
+ menu_title: string;
867
+ };
868
+ cc: {
869
+ button: string;
870
+ menu_title: string;
871
+ options: string;
872
+ tracks: string;
873
+ reset: string;
874
+ colors: {
875
+ Black: string;
876
+ Blue: string;
877
+ Cyan: string;
878
+ Green: string;
879
+ Magenta: string;
880
+ Red: string;
881
+ White: string;
882
+ Yellow: string;
883
+ };
884
+ edgeStyle: {
885
+ None: string;
886
+ "Drop shadow": string;
887
+ Raised: string;
888
+ Depressed: string;
889
+ Outline: string;
890
+ };
891
+ fontFamily: {
892
+ "Monospaced Serif": string;
893
+ "Proportional Serif": string;
894
+ "Monospaced Sans-Serif": string;
895
+ "Proportional Sans-Serif": string;
896
+ Casual: string;
897
+ Cursive: string;
898
+ };
899
+ properties: {
900
+ fontFamily: string;
901
+ fontSize: string;
902
+ fontColor: string;
903
+ fontOpacity: string;
904
+ backgroundColor: string;
905
+ backgroundOpacity: string;
906
+ characterEdgeStyle: string;
907
+ };
908
+ };
909
+ chromecast: {
910
+ start: string;
911
+ stop: string;
912
+ };
913
+ core: {
914
+ exit_fullscreen: string;
915
+ fullscreen: string;
916
+ mute: string;
917
+ muted: string;
918
+ pause: string;
919
+ play: string;
920
+ seconds: string;
921
+ timeline_aria_label: string;
922
+ unmute: string;
923
+ volume: string;
924
+ close: string;
925
+ "skip-next": string;
926
+ "skip-prev": string;
927
+ };
928
+ ovp: {
929
+ starting_in: string;
930
+ };
931
+ playlist: {
932
+ cancel: string;
933
+ up_next: string;
934
+ autoplay: string;
935
+ now_playing: string;
936
+ turn_off_autoplay: string;
937
+ playlist: string;
938
+ };
939
+ qsel: {
940
+ menu_title: string;
941
+ };
942
+ share: {
943
+ clipboard_failure: string;
944
+ clipboard_success: string;
945
+ embed: string;
946
+ link: string;
947
+ menu_title: string;
948
+ };
949
+ speed: {
950
+ menu_title: string;
951
+ };
952
+ vtsel: {
953
+ button_txt: string;
954
+ menu_title: string;
955
+ };
956
+ };
957
+ init(config: Config, _root: never, video: Player): void;
958
+ }
959
+
847
960
  declare const IN_VIEWPORT = "is-in-viewport";
848
961
 
849
962
  /* Excluded from this release type: INTERSECTIONCHANGE */
@@ -767,6 +767,13 @@ declare interface FlowplayerUMDBase {
767
767
  /* Excluded from this release type: support */
768
768
  /* Excluded from this release type: jwt */
769
769
  /* Excluded from this release type: loaders */
770
+ /**
771
+ * @public
772
+ * Translations dictionaries to be used with `@flowplayer/translations` package
773
+ *
774
+ * See [official documentation](https://developer.wowza.com/docs/wowza-flowplayer/player/translations/)
775
+ */
776
+ i18n: typeof I18n;
770
777
  }
771
778
 
772
779
  /**
@@ -844,6 +851,112 @@ declare type HasSrcExtensions<PluginBareConfigs extends unknown[]> = TupleToUnio
844
851
 
845
852
  declare const HOVERED = "is-hovered";
846
853
 
854
+ declare class I18n implements Plugin_2 {
855
+ static pluginName: string;
856
+ static en: {
857
+ ads: {
858
+ ad: string;
859
+ ads: string;
860
+ advertisement: string;
861
+ indicator: string;
862
+ adchoices: string;
863
+ };
864
+ audio: {
865
+ button_txt: string;
866
+ menu_title: string;
867
+ };
868
+ cc: {
869
+ button: string;
870
+ menu_title: string;
871
+ options: string;
872
+ tracks: string;
873
+ reset: string;
874
+ colors: {
875
+ Black: string;
876
+ Blue: string;
877
+ Cyan: string;
878
+ Green: string;
879
+ Magenta: string;
880
+ Red: string;
881
+ White: string;
882
+ Yellow: string;
883
+ };
884
+ edgeStyle: {
885
+ None: string;
886
+ "Drop shadow": string;
887
+ Raised: string;
888
+ Depressed: string;
889
+ Outline: string;
890
+ };
891
+ fontFamily: {
892
+ "Monospaced Serif": string;
893
+ "Proportional Serif": string;
894
+ "Monospaced Sans-Serif": string;
895
+ "Proportional Sans-Serif": string;
896
+ Casual: string;
897
+ Cursive: string;
898
+ };
899
+ properties: {
900
+ fontFamily: string;
901
+ fontSize: string;
902
+ fontColor: string;
903
+ fontOpacity: string;
904
+ backgroundColor: string;
905
+ backgroundOpacity: string;
906
+ characterEdgeStyle: string;
907
+ };
908
+ };
909
+ chromecast: {
910
+ start: string;
911
+ stop: string;
912
+ };
913
+ core: {
914
+ exit_fullscreen: string;
915
+ fullscreen: string;
916
+ mute: string;
917
+ muted: string;
918
+ pause: string;
919
+ play: string;
920
+ seconds: string;
921
+ timeline_aria_label: string;
922
+ unmute: string;
923
+ volume: string;
924
+ close: string;
925
+ "skip-next": string;
926
+ "skip-prev": string;
927
+ };
928
+ ovp: {
929
+ starting_in: string;
930
+ };
931
+ playlist: {
932
+ cancel: string;
933
+ up_next: string;
934
+ autoplay: string;
935
+ now_playing: string;
936
+ turn_off_autoplay: string;
937
+ playlist: string;
938
+ };
939
+ qsel: {
940
+ menu_title: string;
941
+ };
942
+ share: {
943
+ clipboard_failure: string;
944
+ clipboard_success: string;
945
+ embed: string;
946
+ link: string;
947
+ menu_title: string;
948
+ };
949
+ speed: {
950
+ menu_title: string;
951
+ };
952
+ vtsel: {
953
+ button_txt: string;
954
+ menu_title: string;
955
+ };
956
+ };
957
+ init(config: Config, _root: never, video: Player): void;
958
+ }
959
+
847
960
  declare const IN_VIEWPORT = "is-in-viewport";
848
961
 
849
962
  /* Excluded from this release type: INTERSECTIONCHANGE */
@@ -775,6 +775,13 @@ declare interface FlowplayerUMDBase {
775
775
  /* Excluded from this release type: support */
776
776
  /* Excluded from this release type: jwt */
777
777
  /* Excluded from this release type: loaders */
778
+ /**
779
+ * @public
780
+ * Translations dictionaries to be used with `@flowplayer/translations` package
781
+ *
782
+ * See [official documentation](https://developer.wowza.com/docs/wowza-flowplayer/player/translations/)
783
+ */
784
+ i18n: typeof I18n;
778
785
  }
779
786
 
780
787
  /**
@@ -852,6 +859,112 @@ declare type HasSrcExtensions<PluginBareConfigs extends unknown[]> = TupleToUnio
852
859
 
853
860
  declare const HOVERED = "is-hovered";
854
861
 
862
+ declare class I18n implements Plugin_2 {
863
+ static pluginName: string;
864
+ static en: {
865
+ ads: {
866
+ ad: string;
867
+ ads: string;
868
+ advertisement: string;
869
+ indicator: string;
870
+ adchoices: string;
871
+ };
872
+ audio: {
873
+ button_txt: string;
874
+ menu_title: string;
875
+ };
876
+ cc: {
877
+ button: string;
878
+ menu_title: string;
879
+ options: string;
880
+ tracks: string;
881
+ reset: string;
882
+ colors: {
883
+ Black: string;
884
+ Blue: string;
885
+ Cyan: string;
886
+ Green: string;
887
+ Magenta: string;
888
+ Red: string;
889
+ White: string;
890
+ Yellow: string;
891
+ };
892
+ edgeStyle: {
893
+ None: string;
894
+ "Drop shadow": string;
895
+ Raised: string;
896
+ Depressed: string;
897
+ Outline: string;
898
+ };
899
+ fontFamily: {
900
+ "Monospaced Serif": string;
901
+ "Proportional Serif": string;
902
+ "Monospaced Sans-Serif": string;
903
+ "Proportional Sans-Serif": string;
904
+ Casual: string;
905
+ Cursive: string;
906
+ };
907
+ properties: {
908
+ fontFamily: string;
909
+ fontSize: string;
910
+ fontColor: string;
911
+ fontOpacity: string;
912
+ backgroundColor: string;
913
+ backgroundOpacity: string;
914
+ characterEdgeStyle: string;
915
+ };
916
+ };
917
+ chromecast: {
918
+ start: string;
919
+ stop: string;
920
+ };
921
+ core: {
922
+ exit_fullscreen: string;
923
+ fullscreen: string;
924
+ mute: string;
925
+ muted: string;
926
+ pause: string;
927
+ play: string;
928
+ seconds: string;
929
+ timeline_aria_label: string;
930
+ unmute: string;
931
+ volume: string;
932
+ close: string;
933
+ "skip-next": string;
934
+ "skip-prev": string;
935
+ };
936
+ ovp: {
937
+ starting_in: string;
938
+ };
939
+ playlist: {
940
+ cancel: string;
941
+ up_next: string;
942
+ autoplay: string;
943
+ now_playing: string;
944
+ turn_off_autoplay: string;
945
+ playlist: string;
946
+ };
947
+ qsel: {
948
+ menu_title: string;
949
+ };
950
+ share: {
951
+ clipboard_failure: string;
952
+ clipboard_success: string;
953
+ embed: string;
954
+ link: string;
955
+ menu_title: string;
956
+ };
957
+ speed: {
958
+ menu_title: string;
959
+ };
960
+ vtsel: {
961
+ button_txt: string;
962
+ menu_title: string;
963
+ };
964
+ };
965
+ init(config: Config, _root: never, video: Player): void;
966
+ }
967
+
855
968
  declare const IN_VIEWPORT = "is-in-viewport";
856
969
 
857
970
  /* Excluded from this release type: INTERSECTIONCHANGE */
package/plugins/ovp.d.ts CHANGED
@@ -784,6 +784,13 @@ declare interface FlowplayerUMDBase {
784
784
  /* Excluded from this release type: support */
785
785
  /* Excluded from this release type: jwt */
786
786
  /* Excluded from this release type: loaders */
787
+ /**
788
+ * @public
789
+ * Translations dictionaries to be used with `@flowplayer/translations` package
790
+ *
791
+ * See [official documentation](https://developer.wowza.com/docs/wowza-flowplayer/player/translations/)
792
+ */
793
+ i18n: typeof I18n;
787
794
  }
788
795
 
789
796
  /**
@@ -861,6 +868,112 @@ declare type HasSrcExtensions<PluginBareConfigs extends unknown[]> = TupleToUnio
861
868
 
862
869
  declare const HOVERED = "is-hovered";
863
870
 
871
+ declare class I18n implements Plugin_2 {
872
+ static pluginName: string;
873
+ static en: {
874
+ ads: {
875
+ ad: string;
876
+ ads: string;
877
+ advertisement: string;
878
+ indicator: string;
879
+ adchoices: string;
880
+ };
881
+ audio: {
882
+ button_txt: string;
883
+ menu_title: string;
884
+ };
885
+ cc: {
886
+ button: string;
887
+ menu_title: string;
888
+ options: string;
889
+ tracks: string;
890
+ reset: string;
891
+ colors: {
892
+ Black: string;
893
+ Blue: string;
894
+ Cyan: string;
895
+ Green: string;
896
+ Magenta: string;
897
+ Red: string;
898
+ White: string;
899
+ Yellow: string;
900
+ };
901
+ edgeStyle: {
902
+ None: string;
903
+ "Drop shadow": string;
904
+ Raised: string;
905
+ Depressed: string;
906
+ Outline: string;
907
+ };
908
+ fontFamily: {
909
+ "Monospaced Serif": string;
910
+ "Proportional Serif": string;
911
+ "Monospaced Sans-Serif": string;
912
+ "Proportional Sans-Serif": string;
913
+ Casual: string;
914
+ Cursive: string;
915
+ };
916
+ properties: {
917
+ fontFamily: string;
918
+ fontSize: string;
919
+ fontColor: string;
920
+ fontOpacity: string;
921
+ backgroundColor: string;
922
+ backgroundOpacity: string;
923
+ characterEdgeStyle: string;
924
+ };
925
+ };
926
+ chromecast: {
927
+ start: string;
928
+ stop: string;
929
+ };
930
+ core: {
931
+ exit_fullscreen: string;
932
+ fullscreen: string;
933
+ mute: string;
934
+ muted: string;
935
+ pause: string;
936
+ play: string;
937
+ seconds: string;
938
+ timeline_aria_label: string;
939
+ unmute: string;
940
+ volume: string;
941
+ close: string;
942
+ "skip-next": string;
943
+ "skip-prev": string;
944
+ };
945
+ ovp: {
946
+ starting_in: string;
947
+ };
948
+ playlist: {
949
+ cancel: string;
950
+ up_next: string;
951
+ autoplay: string;
952
+ now_playing: string;
953
+ turn_off_autoplay: string;
954
+ playlist: string;
955
+ };
956
+ qsel: {
957
+ menu_title: string;
958
+ };
959
+ share: {
960
+ clipboard_failure: string;
961
+ clipboard_success: string;
962
+ embed: string;
963
+ link: string;
964
+ menu_title: string;
965
+ };
966
+ speed: {
967
+ menu_title: string;
968
+ };
969
+ vtsel: {
970
+ button_txt: string;
971
+ menu_title: string;
972
+ };
973
+ };
974
+ init(config: Config, _root: never, video: Player): void;
975
+ }
976
+
864
977
  declare const IN_VIEWPORT = "is-in-viewport";
865
978
 
866
979
  /* Excluded from this release type: INTERSECTIONCHANGE */