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