@flowplayer/player 3.16.0 → 3.17.0-rc

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 (54) hide show
  1. package/core/events.d.ts +0 -43
  2. package/core/events.js +2 -19
  3. package/core.js +1 -1
  4. package/default.js +1 -1
  5. package/embed.js +2 -2
  6. package/flowplayer.css +1 -1
  7. package/index.d.ts +0 -68
  8. package/package.json +1 -1
  9. package/plugins/ads.d.ts +4 -68
  10. package/plugins/ads.js +2 -2
  11. package/plugins/airplay.d.ts +0 -68
  12. package/plugins/analytics.d.ts +0 -68
  13. package/plugins/analytics.js +1 -1
  14. package/plugins/asel.d.ts +0 -68
  15. package/plugins/audio.d.ts +0 -68
  16. package/plugins/chapters.d.ts +3 -78
  17. package/plugins/chromecast.d.ts +0 -68
  18. package/plugins/comscore.d.ts +0 -68
  19. package/plugins/consent.d.ts +0 -68
  20. package/plugins/context-menu.d.ts +0 -68
  21. package/plugins/cuepoints.d.ts +77 -44
  22. package/plugins/cuepoints.js +1 -1
  23. package/plugins/dash.d.ts +0 -68
  24. package/plugins/drm.d.ts +0 -68
  25. package/plugins/endscreen.d.ts +0 -68
  26. package/plugins/fas.d.ts +0 -68
  27. package/plugins/float-on-scroll.d.ts +0 -68
  28. package/plugins/ga4.d.ts +0 -68
  29. package/plugins/gemius.d.ts +0 -68
  30. package/plugins/google-analytics.d.ts +0 -68
  31. package/plugins/health.d.ts +0 -68
  32. package/plugins/health.js +1 -1
  33. package/plugins/hls.d.ts +0 -68
  34. package/plugins/id3.d.ts +0 -68
  35. package/plugins/iframe.d.ts +0 -68
  36. package/plugins/keyboard.d.ts +0 -68
  37. package/plugins/media-session.d.ts +0 -68
  38. package/plugins/message.d.ts +0 -68
  39. package/plugins/ovp.d.ts +0 -68
  40. package/plugins/playlist.d.ts +0 -68
  41. package/plugins/preview.d.ts +0 -68
  42. package/plugins/qsel.d.ts +0 -68
  43. package/plugins/qul.d.ts +0 -68
  44. package/plugins/rts.d.ts +0 -68
  45. package/plugins/share.d.ts +0 -68
  46. package/plugins/speed.d.ts +0 -68
  47. package/plugins/ssai.d.ts +0 -68
  48. package/plugins/ssai.js +1 -1
  49. package/plugins/subtitles.d.ts +0 -68
  50. package/plugins/thumbnails.d.ts +0 -68
  51. package/plugins/tizen.d.ts +0 -68
  52. package/plugins/vtsel.d.ts +0 -68
  53. package/plugins/webos.d.ts +0 -68
  54. package/util/loader.d.ts +0 -68
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -381,9 +328,6 @@ declare namespace events {
381
328
  SEEKED,
382
329
  SEEKING_2 as SEEKING,
383
330
  DURATION_CHANGE,
384
- CUEPOINTS,
385
- CUEPOINT_START,
386
- CUEPOINT_END,
387
331
  VIEW_ENTER,
388
332
  VIEW_LEAVE,
389
333
  SOURCE,
@@ -913,8 +857,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
913
857
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
914
858
  [REAP]: ReapEventDetail;
915
859
  [SOURCE]: SourceEventDetail;
916
- [CUEPOINT_START]: CuePointStartEventDetail;
917
- [CUEPOINT_END]: CuePointEndEventDetail;
918
860
  [MOUNT]: MountEventDetail;
919
861
  [LIVE]: LiveEventDetail;
920
862
  [DVR]: DvrEventDetail;
@@ -947,16 +889,6 @@ declare type PlayerCustomEventsOverloads = {
947
889
  /* Excluded from this release type: on */
948
890
  /* Excluded from this release type: on */
949
891
  /* Excluded from this release type: on */
950
- /**
951
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
952
- */
953
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
954
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
955
- /**
956
- * Sent when a configured cuepoint is terminated.
957
- */
958
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
959
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
960
892
  /**
961
893
  * Sent when the player becomes visible for the user.
962
894
  */
package/util/loader.d.ts CHANGED
@@ -157,59 +157,6 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
- /**
161
- * @public
162
- * when a cuepoint becomes inactive
163
- */
164
- declare const /**
165
- @public
166
- * when a new player is inserted into the HTML
167
- */ /**
168
- * @public
169
- * when a cuepoint becomes inactive
170
- */
171
- CUEPOINT_END = "cuepointend";
172
-
173
- /**
174
- * @public
175
- * when a cuepoint is active
176
- */
177
- declare const /**
178
- @public
179
- * when a new player is inserted into the HTML
180
- */ /**
181
- * @public
182
- * when a cuepoint is active
183
- */
184
- CUEPOINT_START = "cuepointstart";
185
-
186
- /**
187
- * @public
188
- */
189
- declare type CuePointEndEventDetail = null;
190
-
191
- /**
192
- * @public
193
- * cuepoints parsing is asynchronous
194
- * you cannot rely on them existing until
195
- * this event is emitted
196
- */
197
- declare const /**
198
- @public
199
- * when a new player is inserted into the HTML
200
- */ /**
201
- * @public
202
- * cuepoints parsing is asynchronous
203
- * you cannot rely on them existing until
204
- * this event is emitted
205
- */
206
- CUEPOINTS = "cuepoints";
207
-
208
- /**
209
- * @public
210
- */
211
- declare type CuePointStartEventDetail = null;
212
-
213
160
  /**
214
161
  * @public
215
162
  */
@@ -389,9 +336,6 @@ declare namespace events {
389
336
  SEEKED,
390
337
  SEEKING_2 as SEEKING,
391
338
  DURATION_CHANGE,
392
- CUEPOINTS,
393
- CUEPOINT_START,
394
- CUEPOINT_END,
395
339
  VIEW_ENTER,
396
340
  VIEW_LEAVE,
397
341
  SOURCE,
@@ -931,8 +875,6 @@ declare type PlayerCustomEventName = keyof PlayerCustomEventsDetailMap;
931
875
  declare type PlayerCustomEventsDetailMap = PlayerEmittableCustomEventsDetailMap & {
932
876
  [REAP]: ReapEventDetail;
933
877
  [SOURCE]: SourceEventDetail;
934
- [CUEPOINT_START]: CuePointStartEventDetail;
935
- [CUEPOINT_END]: CuePointEndEventDetail;
936
878
  [MOUNT]: MountEventDetail;
937
879
  [LIVE]: LiveEventDetail;
938
880
  [DVR]: DvrEventDetail;
@@ -965,16 +907,6 @@ declare type PlayerCustomEventsOverloads = {
965
907
  /* Excluded from this release type: on */
966
908
  /* Excluded from this release type: on */
967
909
  /* Excluded from this release type: on */
968
- /**
969
- * TODO - move to Cuepoints? Sent when a configured cuepoint is entered.
970
- */
971
- on(event: typeof CUEPOINT_START, // TODO: move to Cuepoints
972
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_START]>) => void): Player;
973
- /**
974
- * Sent when a configured cuepoint is terminated.
975
- */
976
- on(event: typeof CUEPOINT_END, // TODO: move to Cuepoints
977
- handler: (e: FPEvent<PlayerCustomEventsDetailMap[typeof CUEPOINT_END]>) => void): Player;
978
910
  /**
979
911
  * Sent when the player becomes visible for the user.
980
912
  */