@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.
- package/core/events.d.ts +0 -43
- package/core/events.js +2 -19
- package/core.js +1 -1
- package/default.js +1 -1
- package/embed.js +2 -2
- package/flowplayer.css +1 -1
- package/index.d.ts +0 -68
- package/package.json +1 -1
- package/plugins/ads.d.ts +4 -68
- package/plugins/ads.js +2 -2
- package/plugins/airplay.d.ts +0 -68
- package/plugins/analytics.d.ts +0 -68
- package/plugins/analytics.js +1 -1
- package/plugins/asel.d.ts +0 -68
- package/plugins/audio.d.ts +0 -68
- package/plugins/chapters.d.ts +3 -78
- package/plugins/chromecast.d.ts +0 -68
- package/plugins/comscore.d.ts +0 -68
- package/plugins/consent.d.ts +0 -68
- package/plugins/context-menu.d.ts +0 -68
- package/plugins/cuepoints.d.ts +77 -44
- package/plugins/cuepoints.js +1 -1
- package/plugins/dash.d.ts +0 -68
- package/plugins/drm.d.ts +0 -68
- package/plugins/endscreen.d.ts +0 -68
- package/plugins/fas.d.ts +0 -68
- package/plugins/float-on-scroll.d.ts +0 -68
- package/plugins/ga4.d.ts +0 -68
- package/plugins/gemius.d.ts +0 -68
- package/plugins/google-analytics.d.ts +0 -68
- package/plugins/health.d.ts +0 -68
- package/plugins/health.js +1 -1
- package/plugins/hls.d.ts +0 -68
- package/plugins/id3.d.ts +0 -68
- package/plugins/iframe.d.ts +0 -68
- package/plugins/keyboard.d.ts +0 -68
- package/plugins/media-session.d.ts +0 -68
- package/plugins/message.d.ts +0 -68
- package/plugins/ovp.d.ts +0 -68
- package/plugins/playlist.d.ts +0 -68
- package/plugins/preview.d.ts +0 -68
- package/plugins/qsel.d.ts +0 -68
- package/plugins/qul.d.ts +0 -68
- package/plugins/rts.d.ts +0 -68
- package/plugins/share.d.ts +0 -68
- package/plugins/speed.d.ts +0 -68
- package/plugins/ssai.d.ts +0 -68
- package/plugins/ssai.js +1 -1
- package/plugins/subtitles.d.ts +0 -68
- package/plugins/thumbnails.d.ts +0 -68
- package/plugins/tizen.d.ts +0 -68
- package/plugins/vtsel.d.ts +0 -68
- package/plugins/webos.d.ts +0 -68
- package/util/loader.d.ts +0 -68
package/plugins/webos.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
|
*/
|
|
@@ -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
|
*/
|