@flowplayer/player 3.17.0 → 3.17.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 (52) hide show
  1. package/core/events.d.ts +49 -0
  2. package/core/events.js +22 -2
  3. package/core.js +1 -1
  4. package/default.js +1 -1
  5. package/embed.js +2 -2
  6. package/index.d.ts +53 -1
  7. package/package.json +1 -1
  8. package/plugins/ads.d.ts +53 -1
  9. package/plugins/ads.js +1 -1
  10. package/plugins/airplay.d.ts +53 -1
  11. package/plugins/analytics.d.ts +53 -1
  12. package/plugins/analytics.js +1 -1
  13. package/plugins/asel.d.ts +53 -1
  14. package/plugins/audio.d.ts +53 -1
  15. package/plugins/chapters.d.ts +53 -1
  16. package/plugins/chromecast.d.ts +53 -1
  17. package/plugins/comscore.d.ts +53 -1
  18. package/plugins/consent.d.ts +53 -1
  19. package/plugins/context-menu.d.ts +53 -1
  20. package/plugins/cuepoints.d.ts +59 -7
  21. package/plugins/dash.d.ts +53 -1
  22. package/plugins/drm.d.ts +53 -1
  23. package/plugins/endscreen.d.ts +53 -1
  24. package/plugins/fas.d.ts +53 -1
  25. package/plugins/float-on-scroll.d.ts +53 -1
  26. package/plugins/ga4.d.ts +53 -1
  27. package/plugins/gemius.d.ts +53 -1
  28. package/plugins/google-analytics.d.ts +53 -1
  29. package/plugins/health.d.ts +53 -1
  30. package/plugins/health.js +1 -1
  31. package/plugins/hls.d.ts +53 -1
  32. package/plugins/id3.d.ts +53 -1
  33. package/plugins/iframe.d.ts +53 -1
  34. package/plugins/keyboard.d.ts +53 -1
  35. package/plugins/media-session.d.ts +53 -1
  36. package/plugins/message.d.ts +53 -1
  37. package/plugins/ovp.d.ts +53 -1
  38. package/plugins/playlist.d.ts +53 -1
  39. package/plugins/preview.d.ts +53 -1
  40. package/plugins/qsel.d.ts +53 -1
  41. package/plugins/qul.d.ts +53 -1
  42. package/plugins/rts.d.ts +53 -1
  43. package/plugins/share.d.ts +53 -1
  44. package/plugins/speed.d.ts +53 -1
  45. package/plugins/ssai.d.ts +53 -1
  46. package/plugins/ssai.js +1 -1
  47. package/plugins/subtitles.d.ts +53 -1
  48. package/plugins/thumbnails.d.ts +53 -1
  49. package/plugins/tizen.d.ts +53 -1
  50. package/plugins/vtsel.d.ts +53 -1
  51. package/plugins/webos.d.ts +53 -1
  52. package/util/loader.d.ts +53 -1
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
package/plugins/ovp.d.ts CHANGED
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -358,7 +407,10 @@ declare namespace events_2 {
358
407
  PORTRAIT,
359
408
  DVR,
360
409
  LIVE,
361
- RECOVER
410
+ RECOVER,
411
+ CUEPOINTS,
412
+ CUEPOINT_START,
413
+ CUEPOINT_END
362
414
  }
363
415
  }
364
416
 
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
package/plugins/qsel.d.ts CHANGED
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
package/plugins/qul.d.ts CHANGED
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
package/plugins/rts.d.ts CHANGED
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399
 
@@ -157,6 +157,55 @@ CONTEXT_MENU = "contextmenu";
157
157
  */
158
158
  declare type ContextMenuEventDetail = null;
159
159
 
160
+ /**
161
+ * @public
162
+ * @deprecated
163
+ * when a cuepoint becomes inactive
164
+ */
165
+ declare const /**
166
+ @public
167
+ * when a new player is inserted into the HTML
168
+ */ /**
169
+ * @public
170
+ * @deprecated
171
+ * when a cuepoint becomes inactive
172
+ */
173
+ CUEPOINT_END = "cuepointend";
174
+
175
+ /**
176
+ * @public
177
+ * @deprecated
178
+ * when a cuepoint is active
179
+ */
180
+ declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ * @deprecated
186
+ * when a cuepoint is active
187
+ */
188
+ CUEPOINT_START = "cuepointstart";
189
+
190
+ /**
191
+ * @public
192
+ * @deprecated
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
+ * @deprecated
203
+ * cuepoints parsing is asynchronous
204
+ * you cannot rely on them existing until
205
+ * this event is emitted
206
+ */
207
+ CUEPOINTS = "cuepoints";
208
+
160
209
  /**
161
210
  * @public
162
211
  */
@@ -341,7 +390,10 @@ declare namespace events {
341
390
  PORTRAIT,
342
391
  DVR,
343
392
  LIVE,
344
- RECOVER
393
+ RECOVER,
394
+ CUEPOINTS,
395
+ CUEPOINT_START,
396
+ CUEPOINT_END
345
397
  }
346
398
  }
347
399