@flowplayer/player 3.14.1 → 3.15.0-rc.10

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 (81) hide show
  1. package/core/events.d.ts +575 -68
  2. package/core/events.js +286 -34
  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 +1480 -91
  8. package/package.json +1 -1
  9. package/plugins/ads.d.ts +3744 -112
  10. package/plugins/ads.js +1 -1
  11. package/plugins/airplay.d.ts +1440 -116
  12. package/plugins/airplay.js +1 -1
  13. package/plugins/analytics.d.ts +1409 -82
  14. package/plugins/analytics.js +1 -1
  15. package/plugins/asel.d.ts +1409 -82
  16. package/plugins/asel.js +1 -1
  17. package/plugins/audio.d.ts +1409 -82
  18. package/plugins/audio.js +1 -1
  19. package/plugins/chapters.d.ts +1409 -82
  20. package/plugins/chapters.js +1 -1
  21. package/plugins/chromecast.d.ts +1464 -80
  22. package/plugins/chromecast.js +1 -1
  23. package/plugins/comscore.d.ts +1409 -82
  24. package/plugins/consent.d.ts +1409 -82
  25. package/plugins/consent.js +1 -1
  26. package/plugins/context-menu.d.ts +1443 -116
  27. package/plugins/cuepoints.d.ts +1443 -116
  28. package/plugins/cuepoints.js +1 -1
  29. package/plugins/dash.d.ts +1445 -115
  30. package/plugins/dash.js +1 -1
  31. package/plugins/drm.d.ts +1409 -82
  32. package/plugins/drm.js +1 -1
  33. package/plugins/endscreen.d.ts +1442 -115
  34. package/plugins/endscreen.js +1 -1
  35. package/plugins/fas.d.ts +1409 -82
  36. package/plugins/float-on-scroll.d.ts +1443 -116
  37. package/plugins/float-on-scroll.js +1 -1
  38. package/plugins/ga4.d.ts +1409 -82
  39. package/plugins/gemius.d.ts +1439 -112
  40. package/plugins/google-analytics.d.ts +1409 -82
  41. package/plugins/health.d.ts +1435 -107
  42. package/plugins/health.js +1 -1
  43. package/plugins/hls.d.ts +1431 -104
  44. package/plugins/hls.js +1 -1
  45. package/plugins/id3.d.ts +1409 -82
  46. package/plugins/id3.js +1 -1
  47. package/plugins/iframe.d.ts +1440 -116
  48. package/plugins/iframe.js +1 -1
  49. package/plugins/keyboard.d.ts +1409 -82
  50. package/plugins/media-session.d.ts +1409 -82
  51. package/plugins/message.d.ts +1409 -82
  52. package/plugins/message.js +1 -1
  53. package/plugins/ovp.d.ts +1435 -110
  54. package/plugins/ovp.js +1 -1
  55. package/plugins/playlist.d.ts +1409 -82
  56. package/plugins/playlist.js +1 -1
  57. package/plugins/preview.d.ts +1409 -82
  58. package/plugins/preview.js +1 -1
  59. package/plugins/qsel.d.ts +1409 -82
  60. package/plugins/qsel.js +1 -1
  61. package/plugins/qul.d.ts +1441 -114
  62. package/plugins/qul.js +1 -1
  63. package/plugins/rts.d.ts +1409 -82
  64. package/plugins/rts.js +1 -1
  65. package/plugins/share.d.ts +1409 -82
  66. package/plugins/share.js +1 -1
  67. package/plugins/speed.d.ts +1434 -107
  68. package/plugins/speed.js +1 -1
  69. package/plugins/ssai.d.ts +1412 -82
  70. package/plugins/ssai.js +1 -1
  71. package/plugins/subtitles.d.ts +1426 -102
  72. package/plugins/thumbnails.d.ts +1434 -107
  73. package/plugins/thumbnails.js +1 -1
  74. package/plugins/tizen.d.ts +1409 -82
  75. package/plugins/tizen.js +1 -1
  76. package/plugins/vtsel.d.ts +1409 -82
  77. package/plugins/vtsel.js +1 -1
  78. package/plugins/webos.d.ts +1409 -82
  79. package/plugins/webos.js +1 -1
  80. package/util/loader.d.ts +1436 -101
  81. package/util/loader.js +13 -2
package/core/events.d.ts CHANGED
@@ -1,157 +1,664 @@
1
- export declare const AUDIO_ONLY_SOURCE = "audioonlysource";
1
+ /* Excluded from this release type: AUDIO_ONLY_SOURCE */
2
2
 
3
- export declare const BEFORE_PAUSE = "beforepause";
3
+ /* Excluded from this release type: BEFORE_PAUSE */
4
4
 
5
- export declare const BEFORE_PLAY = "beforeplay";
5
+ /* Excluded from this release type: BEFORE_PLAY */
6
6
 
7
- export declare const CAN_PLAY = "canplay";
7
+ /**
8
+ * @public
9
+ */
10
+ export declare const /**
11
+ @public
12
+ * when a new player is inserted into the HTML
13
+ */ /**
14
+ * @public
15
+ */
16
+ CAN_PLAY = "canplay";
8
17
 
9
- export declare const CLICK = "click";
18
+ /**
19
+ * @public
20
+ */
21
+ export declare const /**
22
+ @public
23
+ * when a new player is inserted into the HTML
24
+ */ /**
25
+ * @public
26
+ */
27
+ CLICK = "click";
28
+
29
+ /* Excluded from this release type: CONFIG */
10
30
 
11
- export declare const CONFIG = "config";
31
+ /* Excluded from this release type: CONTENT_REAL_LOAD_START */
12
32
 
13
- export declare const CONTEXT_MENU = "contextmenu";
33
+ /**
34
+ * @public
35
+ */
36
+ export declare const /**
37
+ @public
38
+ * when a new player is inserted into the HTML
39
+ */ /**
40
+ * @public
41
+ */
42
+ CONTEXT_MENU = "contextmenu";
14
43
 
15
- export declare const CUEPOINT_END = "cuepointend";
44
+ /**
45
+ * @public
46
+ * when a cuepoint becomes inactive
47
+ */
48
+ export declare const /**
49
+ @public
50
+ * when a new player is inserted into the HTML
51
+ */ /**
52
+ * @public
53
+ * when a cuepoint becomes inactive
54
+ */
55
+ CUEPOINT_END = "cuepointend";
16
56
 
17
- export declare const CUEPOINT_START = "cuepointstart";
57
+ /**
58
+ * @public
59
+ * when a cuepoint is active
60
+ */
61
+ export declare const /**
62
+ @public
63
+ * when a new player is inserted into the HTML
64
+ */ /**
65
+ * @public
66
+ * when a cuepoint is active
67
+ */
68
+ CUEPOINT_START = "cuepointstart";
18
69
 
19
- export declare const CUEPOINTS = "cuepoints";
70
+ /**
71
+ * @public
72
+ * cuepoints parsing is asynchronous
73
+ * you cannot rely on them existing until
74
+ * this event is emitted
75
+ */
76
+ export declare const /**
77
+ @public
78
+ * when a new player is inserted into the HTML
79
+ */ /**
80
+ * @public
81
+ * cuepoints parsing is asynchronous
82
+ * you cannot rely on them existing until
83
+ * this event is emitted
84
+ */
85
+ CUEPOINTS = "cuepoints";
20
86
 
21
- export declare const DATA = "loadeddata";
87
+ /**
88
+ * @public
89
+ */
90
+ export declare const /**
91
+ @public
92
+ * when a new player is inserted into the HTML
93
+ */ /**
94
+ * @public
95
+ */
96
+ DATA = "loadeddata";
22
97
 
23
- export declare const DBL_CLICK = "dblclick";
98
+ /**
99
+ * @public
100
+ */
101
+ export declare const /**
102
+ @public
103
+ * when a new player is inserted into the HTML
104
+ */ /**
105
+ * @public
106
+ */
107
+ DBL_CLICK = "dblclick";
24
108
 
25
- export declare const DURATION_CHANGE = "durationchange";
109
+ /**
110
+ * @public
111
+ */
112
+ export declare const /**
113
+ @public
114
+ * when a new player is inserted into the HTML
115
+ */ /**
116
+ * @public
117
+ */
118
+ DURATION_CHANGE = "durationchange";
26
119
 
27
120
  /**
121
+ * @public
28
122
  * when the player has started playing dvr content
29
123
  */
30
124
  export declare const /**
125
+ @public
126
+ * when a new player is inserted into the HTML
127
+ */ /**
128
+ * @public
31
129
  * when the player has started playing dvr content
32
130
  */
33
131
  DVR = "dvr";
34
132
 
35
- export declare const ENDED = "ended";
133
+ /**
134
+ * @public
135
+ */
136
+ export declare const /**
137
+ @public
138
+ * when a new player is inserted into the HTML
139
+ */ /**
140
+ * @public
141
+ */
142
+ ENDED = "ended";
36
143
 
37
- export declare const ERROR = "error";
144
+ /**
145
+ * @public
146
+ */
147
+ export declare const /**
148
+ @public
149
+ * when a new player is inserted into the HTML
150
+ */ /**
151
+ * @public
152
+ */
153
+ ERROR = "error";
38
154
 
39
- export declare const FULLSCREEN_CHANGE = "fullscreenchange";
155
+ /**
156
+ * @public
157
+ */
158
+ export declare const /**
159
+ @public
160
+ * when a new player is inserted into the HTML
161
+ */ /**
162
+ * @public
163
+ */
164
+ FULLSCREEN_CHANGE = "fullscreenchange";
40
165
 
41
- export declare const FULLSCREEN_ENTER = "fullscreenenter";
166
+ /**
167
+ * @public
168
+ */
169
+ export declare const /**
170
+ @public
171
+ * when a new player is inserted into the HTML
172
+ */ /**
173
+ * @public
174
+ */
175
+ FULLSCREEN_ENTER = "fullscreenenter";
42
176
 
43
- export declare const FULLSCREEN_EXIT = "fullscreenexit";
177
+ /**
178
+ * @public
179
+ */
180
+ export declare const /**
181
+ @public
182
+ * when a new player is inserted into the HTML
183
+ */ /**
184
+ * @public
185
+ */
186
+ FULLSCREEN_EXIT = "fullscreenexit";
44
187
 
45
- export declare const INTERSECTIONCHANGE = "intersectionchange";
188
+ /* Excluded from this release type: INTERSECTIONCHANGE */
46
189
 
47
- export declare const KEYDOWN = "keydown";
190
+ /**
191
+ * @public
192
+ */
193
+ export declare const /**
194
+ @public
195
+ * when a new player is inserted into the HTML
196
+ */ /**
197
+ * @public
198
+ */
199
+ KEYDOWN = "keydown";
48
200
 
49
- export declare const KEYUP = "keyup";
201
+ /**
202
+ * @public
203
+ */
204
+ export declare const /**
205
+ @public
206
+ * when a new player is inserted into the HTML
207
+ */ /**
208
+ * @public
209
+ */
210
+ KEYUP = "keyup";
50
211
 
51
- export declare const LANDSCAPE = "landscape";
212
+ /**
213
+ * @public
214
+ */
215
+ export declare const /**
216
+ @public
217
+ * when a new player is inserted into the HTML
218
+ */ /**
219
+ * @public
220
+ */
221
+ LANDSCAPE = "landscape";
52
222
 
53
223
  /**
224
+ * @public
54
225
  * when src is a livestream
55
226
  */
56
227
  export declare const /**
228
+ @public
229
+ * when a new player is inserted into the HTML
230
+ */ /**
231
+ * @public
57
232
  * when src is a livestream
58
233
  */
59
234
  LIVE = "live";
60
235
 
61
- export declare const LOAD = "load";
236
+ /**
237
+ * @public
238
+ */
239
+ export declare const /**
240
+ @public
241
+ * when a new player is inserted into the HTML
242
+ */ /**
243
+ * @public
244
+ */
245
+ LOAD = "load";
62
246
 
63
- export declare const LOAD_START = "loadstart";
247
+ /**
248
+ * @public
249
+ */
250
+ export declare const /**
251
+ @public
252
+ * when a new player is inserted into the HTML
253
+ */ /**
254
+ * @public
255
+ */
256
+ LOAD_START = "loadstart";
64
257
 
65
- export declare const METADATA = "loadedmetadata";
258
+ /**
259
+ * @public
260
+ * general video events flowplayer uses internally
261
+ * https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Media_events
262
+ */
263
+ export declare const /**
264
+ @public
265
+ * when a new player is inserted into the HTML
266
+ */ /**
267
+ * @public
268
+ * general video events flowplayer uses internally
269
+ * https://developer.mozilla.org/en-US/docs/Web/Guide/Events/Media_events
270
+ */
271
+ METADATA = "loadedmetadata";
66
272
 
67
- export declare const MOUNT = "mount";
273
+ /**
274
+ @public
275
+ * when a new player is inserted into the HTML
276
+ */
277
+ export declare const /**
278
+ @public
279
+ * when a new player is inserted into the HTML
280
+ */ /**
281
+ @public
282
+ * when a new player is inserted into the HTML
283
+ */ MOUNT = "mount";
68
284
 
69
- export declare const MOUSE_DOWN = "mousedown";
285
+ /**
286
+ * @public
287
+ */
288
+ export declare const /**
289
+ @public
290
+ * when a new player is inserted into the HTML
291
+ */ /**
292
+ * @public
293
+ */
294
+ MOUSE_DOWN = "mousedown";
70
295
 
71
- export declare const MOUSE_ENTER = "mouseenter";
296
+ /**
297
+ * @public
298
+ */
299
+ export declare const /**
300
+ @public
301
+ * when a new player is inserted into the HTML
302
+ */ /**
303
+ * @public
304
+ */
305
+ MOUSE_ENTER = "mouseenter";
72
306
 
73
- export declare const MOUSE_LEAVE = "mouseleave";
307
+ /**
308
+ * @public
309
+ */
310
+ export declare const /**
311
+ @public
312
+ * when a new player is inserted into the HTML
313
+ */ /**
314
+ * @public
315
+ */
316
+ MOUSE_LEAVE = "mouseleave";
74
317
 
75
- export declare const MOUSE_MOVE = "mousemove";
318
+ /**
319
+ * @public
320
+ */
321
+ export declare const /**
322
+ @public
323
+ * when a new player is inserted into the HTML
324
+ */ /**
325
+ * @public
326
+ */
327
+ MOUSE_MOVE = "mousemove";
76
328
 
77
- export declare const MOUSE_UP = "mouseup";
329
+ /**
330
+ * @public
331
+ */
332
+ export declare const /**
333
+ @public
334
+ * when a new player is inserted into the HTML
335
+ */ /**
336
+ * @public
337
+ */
338
+ MOUSE_UP = "mouseup";
78
339
 
79
- export declare const NON_RECOVERABLE_ERROR = "error:fatal";
340
+ /* Excluded from this release type: NON_RECOVERABLE_ERROR */
80
341
 
81
- export declare const PAUSE = "pause";
342
+ /**
343
+ * @public
344
+ */
345
+ export declare const /**
346
+ @public
347
+ * when a new player is inserted into the HTML
348
+ */ /**
349
+ * @public
350
+ */
351
+ PAUSE = "pause";
82
352
 
83
- export declare const PLAY = "play";
353
+ /**
354
+ * @public
355
+ */
356
+ export declare const /**
357
+ @public
358
+ * when a new player is inserted into the HTML
359
+ */ /**
360
+ * @public
361
+ */
362
+ PLAY = "play";
84
363
 
85
- export declare const PLAYING = "playing";
364
+ /**
365
+ * @public
366
+ */
367
+ export declare const /**
368
+ @public
369
+ * when a new player is inserted into the HTML
370
+ */ /**
371
+ * @public
372
+ */
373
+ PLAYING = "playing";
86
374
 
87
- export declare const PLUGIN_REGISTERED = "plugin:registered";
375
+ /* Excluded from this release type: PLUGIN_REGISTERED */
88
376
 
89
- export declare const PORTRAIT = "portrait";
377
+ /**
378
+ * @public
379
+ */
380
+ export declare const /**
381
+ @public
382
+ * when a new player is inserted into the HTML
383
+ */ /**
384
+ * @public
385
+ */
386
+ PORTRAIT = "portrait";
90
387
 
91
- export declare const PROGRESS = "progress";
388
+ /**
389
+ * @public
390
+ */
391
+ export declare const /**
392
+ @public
393
+ * when a new player is inserted into the HTML
394
+ */ /**
395
+ * @public
396
+ */
397
+ PROGRESS = "progress";
92
398
 
93
- export declare const QUALITIES = "qualities";
399
+ /**
400
+ * @public
401
+ * emitted whenever a list of qualities has been made available
402
+ * when index 0 is the highest quality and index 0+N is the lowest
403
+ */
404
+ export declare const /**
405
+ @public
406
+ * when a new player is inserted into the HTML
407
+ */ /**
408
+ * @public
409
+ * emitted whenever a list of qualities has been made available
410
+ * when index 0 is the highest quality and index 0+N is the lowest
411
+ */
412
+ QUALITIES = "qualities";
94
413
 
95
- export declare const REAP = "reap";
414
+ /**
415
+ * @public
416
+ * emitted when it is safe to clean up a fp instance
417
+ */
418
+ export declare const /**
419
+ @public
420
+ * when a new player is inserted into the HTML
421
+ */ /**
422
+ * @public
423
+ * emitted when it is safe to clean up a fp instance
424
+ */
425
+ REAP = "reap";
96
426
 
97
427
  /**
98
- * @deprecated please use Endscreen.events.RECOMMENDATIONS_READY / flowplayer.endscreen.events.RECOMMENDATIONS_READY
99
- **/
428
+ * @public
429
+ */
100
430
  export declare const /**
431
+ @public
432
+ * when a new player is inserted into the HTML
433
+ */ /**
101
434
  * @deprecated please use Endscreen.events.RECOMMENDATIONS_READY / flowplayer.endscreen.events.RECOMMENDATIONS_READY
102
435
  **/
436
+ /**
437
+ * @public
438
+ */
103
439
  RECOMMENDATIONS_READY = "recommendationsready";
104
440
 
105
- export declare const RECOVER = "recover";
441
+ /* Excluded from this release type: RECOVER */
106
442
 
107
- export declare const REMOTE_SESSION_ENDED = "remotesession:ended";
443
+ /* Excluded from this release type: REMOTE_SESSION_ENDED */
108
444
 
109
- export declare const REMOTE_SESSION_STARTED = "remotesession:started";
445
+ /* Excluded from this release type: REMOTE_SESSION_STARTED */
110
446
 
111
- export declare const RENDER_PLUGIN = "renderplugin";
447
+ /* Excluded from this release type: RENDER_PLUGIN */
112
448
 
113
- export declare const RESIZE = "resize";
449
+ /**
450
+ * @public
451
+ */
452
+ export declare const /**
453
+ @public
454
+ * when a new player is inserted into the HTML
455
+ */ /**
456
+ * @public
457
+ */
458
+ RESIZE = "resize";
114
459
 
115
- export declare const RETRY = "retry";
460
+ /* Excluded from this release type: RETRY */
116
461
 
117
- export declare const SCROLL = "scroll";
462
+ /**
463
+ * @public
464
+ */
465
+ export declare const /**
466
+ @public
467
+ * when a new player is inserted into the HTML
468
+ */ /**
469
+ * @public
470
+ */
471
+ SCROLL = "scroll";
118
472
 
119
- export declare const SEEK_CANCEL = "seek:cancel";
473
+ /* Excluded from this release type: SEEK_CANCEL */
120
474
 
121
- export declare const SEEK_QUEUED = "seek:queued";
475
+ /* Excluded from this release type: SEEK_QUEUED */
122
476
 
123
- export declare const SEEKED = "seeked";
477
+ /**
478
+ * @public
479
+ */
480
+ export declare const /**
481
+ @public
482
+ * when a new player is inserted into the HTML
483
+ */ /**
484
+ * @public
485
+ */
486
+ SEEKED = "seeked";
124
487
 
125
- export declare const SEEKING = "seeking";
488
+ /**
489
+ * @public
490
+ */
491
+ export declare const /**
492
+ @public
493
+ * when a new player is inserted into the HTML
494
+ */ /**
495
+ * @public
496
+ */
497
+ SEEKING = "seeking";
126
498
 
127
- export declare const SET_QUALITY = "quality:set";
499
+ /**
500
+ * @public
501
+ * allows plugins to listen for forced quality changes
502
+ * it should emit the index of the quality to set
503
+ * -1 is a special idx saying to use ABR if the plugin
504
+ * exposes an ABR implementation
505
+ */
506
+ export declare const /**
507
+ @public
508
+ * when a new player is inserted into the HTML
509
+ */ /**
510
+ * @public
511
+ * allows plugins to listen for forced quality changes
512
+ * it should emit the index of the quality to set
513
+ * -1 is a special idx saying to use ABR if the plugin
514
+ * exposes an ABR implementation
515
+ */
516
+ SET_QUALITY = "quality:set";
128
517
 
129
- export declare const SOURCE = "src";
518
+ /**
519
+ * @public
520
+ * emitted when a valid source is found prior to mounting
521
+ */
522
+ export declare const /**
523
+ @public
524
+ * when a new player is inserted into the HTML
525
+ */ /**
526
+ * @public
527
+ * emitted when a valid source is found prior to mounting
528
+ */
529
+ SOURCE = "src";
130
530
 
131
- export declare const STATE = "state";
531
+ /* Excluded from this release type: STATE */
132
532
 
133
- export declare const TIME_UPDATE = "timeupdate";
533
+ /**
534
+ * @public
535
+ */
536
+ export declare const /**
537
+ @public
538
+ * when a new player is inserted into the HTML
539
+ */ /**
540
+ * @public
541
+ */
542
+ TIME_UPDATE = "timeupdate";
134
543
 
135
- export declare const TOUCH_CANCEL = "touchcancel";
544
+ /**
545
+ * @public
546
+ */
547
+ export declare const /**
548
+ @public
549
+ * when a new player is inserted into the HTML
550
+ */ /**
551
+ * @public
552
+ */
553
+ TOUCH_CANCEL = "touchcancel";
136
554
 
137
- export declare const TOUCH_END = "touchend";
555
+ /**
556
+ * @public
557
+ */
558
+ export declare const /**
559
+ @public
560
+ * when a new player is inserted into the HTML
561
+ */ /**
562
+ * @public
563
+ */
564
+ TOUCH_END = "touchend";
138
565
 
139
- export declare const TOUCH_MOVE = "touchmove";
566
+ /**
567
+ * @public
568
+ */
569
+ export declare const /**
570
+ @public
571
+ * when a new player is inserted into the HTML
572
+ */ /**
573
+ * @public
574
+ */
575
+ TOUCH_MOVE = "touchmove";
140
576
 
141
- export declare const TOUCH_START = "touchstart";
577
+ /**
578
+ * @public
579
+ */
580
+ export declare const /**
581
+ @public
582
+ * when a new player is inserted into the HTML
583
+ */ /**
584
+ * @public
585
+ */
586
+ TOUCH_START = "touchstart";
142
587
 
143
- export declare const VIDEO_TRACK_SELECT = "tracks:video:select";
588
+ /**
589
+ * @public
590
+ * emitted when a video track is selected
591
+ */
592
+ export declare const /**
593
+ @public
594
+ * when a new player is inserted into the HTML
595
+ */ /**
596
+ * @public
597
+ * emitted when a video track is selected
598
+ */
599
+ VIDEO_TRACK_SELECT = "tracks:video:select";
144
600
 
145
- export declare const VIDEO_TRACKS = "videoTracks";
601
+ /**
602
+ * @public
603
+ * emitted whenever multiple video tracks are detected
604
+ */
605
+ export declare const /**
606
+ @public
607
+ * when a new player is inserted into the HTML
608
+ */ /**
609
+ * @public
610
+ * emitted whenever multiple video tracks are detected
611
+ */
612
+ VIDEO_TRACKS = "videoTracks";
146
613
 
147
- export declare const VIEW_ENTER = "viewenter";
614
+ /**
615
+ * @public
616
+ * when a player enters the viewpoint
617
+ */
618
+ export declare const /**
619
+ @public
620
+ * when a new player is inserted into the HTML
621
+ */ /**
622
+ * @public
623
+ * when a player enters the viewpoint
624
+ */
625
+ VIEW_ENTER = "viewenter";
148
626
 
149
- export declare const VIEW_LEAVE = "viewleave";
627
+ /**
628
+ * @public
629
+ * when a player leaves the viewport
630
+ */
631
+ export declare const /**
632
+ @public
633
+ * when a new player is inserted into the HTML
634
+ */ /**
635
+ * @public
636
+ * when a player leaves the viewport
637
+ */
638
+ VIEW_LEAVE = "viewleave";
150
639
 
151
- export declare const VOLUME_CHANGE = "volumechange";
640
+ /**
641
+ * @public
642
+ */
643
+ export declare const /**
644
+ @public
645
+ * when a new player is inserted into the HTML
646
+ */ /**
647
+ * @public
648
+ */
649
+ VOLUME_CHANGE = "volumechange";
152
650
 
153
- export declare const WAITING = "waiting";
651
+ /**
652
+ * @public
653
+ */
654
+ export declare const /**
655
+ @public
656
+ * when a new player is inserted into the HTML
657
+ */ /**
658
+ * @public
659
+ */
660
+ WAITING = "waiting";
154
661
 
155
- export declare const WEBKIT_NEEDKEY = "webkitneedkey";
662
+ /* Excluded from this release type: WEBKIT_NEEDKEY */
156
663
 
157
664
  export { }