@gcorevideo/player 2.19.7 → 2.19.8
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/dist/core.js +1 -1
- package/dist/index.css +474 -474
- package/dist/index.js +85 -39
- package/dist/player.d.ts +109 -55
- package/dist/plugins/index.css +599 -599
- package/dist/plugins/index.js +84 -38
- package/docs/api/player.bigmutebutton.md +0 -14
- package/docs/api/player.levelselector.md +1 -1
- package/docs/api/player.md +24 -9
- package/docs/api/player.mediacontrol._constructor_.md +5 -2
- package/docs/api/player.mediacontrol.attributes.md +3 -0
- package/docs/api/player.mediacontrol.bindcontainerevents.md +3 -0
- package/docs/api/player.mediacontrol.bindevents.md +3 -0
- package/docs/api/player.mediacontrol.container.md +3 -0
- package/docs/api/player.mediacontrol.destroy.md +3 -0
- package/docs/api/player.mediacontrol.disable.md +3 -0
- package/docs/api/player.mediacontrol.disabled.md +3 -0
- package/docs/api/player.mediacontrol.disabledcontrolbutton.md +5 -0
- package/docs/api/player.mediacontrol.enable.md +3 -0
- package/docs/api/player.mediacontrol.enablecontrolbutton.md +5 -0
- package/docs/api/player.mediacontrol.events.md +3 -0
- package/docs/api/player.mediacontrol.getelement.md +11 -2
- package/docs/api/player.mediacontrol.getexternalinterface.md +3 -0
- package/docs/api/player.mediacontrol.md +53 -570
- package/docs/api/player.mediacontrol.muted.md +5 -0
- package/docs/api/player.mediacontrol.name.md +3 -0
- package/docs/api/player.mediacontrol.pause.md +5 -0
- package/docs/api/player.mediacontrol.play.md +5 -0
- package/docs/api/player.mediacontrol.playback.md +3 -0
- package/docs/api/player.mediacontrol.render.md +3 -0
- package/docs/api/player.mediacontrol.setinitialvolume.md +20 -0
- package/docs/api/player.mediacontrol.setmuted.md +3 -0
- package/docs/api/player.mediacontrol.setvolume.md +12 -1
- package/docs/api/player.mediacontrol.stop.md +5 -0
- package/docs/api/player.mediacontrol.supportedversion.md +3 -0
- package/docs/api/player.mediacontrol.volume.md +5 -0
- package/docs/api/{player.bigmutebutton.unbindevents.md → player.mediacontrolelement.md} +4 -7
- package/docs/api/player.subtitles.buttonelement.md +1 -1
- package/docs/api/player.subtitles.levelelement.md +1 -1
- package/docs/api/player.zeptoresult.md +15 -0
- package/lib/index.core.d.ts +1 -0
- package/lib/index.core.d.ts.map +1 -1
- package/lib/index.core.js +1 -0
- package/lib/plugins/big-mute-button/BigMuteButton.d.ts +1 -1
- package/lib/plugins/big-mute-button/BigMuteButton.d.ts.map +1 -1
- package/lib/plugins/clips/Clips.d.ts +3 -0
- package/lib/plugins/clips/Clips.d.ts.map +1 -1
- package/lib/plugins/clips/Clips.js +22 -2
- package/lib/plugins/kibo/index.d.ts +3 -0
- package/lib/plugins/kibo/index.d.ts.map +1 -1
- package/lib/plugins/kibo/index.js +3 -0
- package/lib/plugins/media-control/MediaControl.d.ts +95 -54
- package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
- package/lib/plugins/media-control/MediaControl.js +60 -37
- package/lib/plugins/subtitles/Subtitles.d.ts +1 -1
- package/lib/plugins/subtitles/Subtitles.d.ts.map +1 -1
- package/lib/plugins/vast-ads/roll.d.ts +1 -1
- package/lib/plugins/vast-ads/roll.d.ts.map +1 -1
- package/lib/plugins/vast-ads/rollmanager.d.ts +1 -1
- package/lib/plugins/vast-ads/rollmanager.d.ts.map +1 -1
- package/lib/types.d.ts.map +1 -1
- package/lib/utils/types.d.ts +6 -0
- package/lib/utils/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.core.ts +1 -0
- package/src/plugins/audio-selector/AudioSelector.ts +1 -1
- package/src/plugins/big-mute-button/BigMuteButton.ts +2 -2
- package/src/plugins/clappr-nerd-stats/ClapprNerdStats.ts +1 -1
- package/src/plugins/clappr-nerd-stats/speedtest/Speedtest.ts +1 -1
- package/src/plugins/clappr-stats/ClapprStats.ts +1 -1
- package/src/plugins/clips/Clips.ts +29 -3
- package/src/plugins/error-screen/ErrorScreen.ts +1 -1
- package/src/plugins/favicon/Favicon.ts +1 -1
- package/src/plugins/kibo/index.ts +3 -0
- package/src/plugins/level-selector/LevelSelector.ts +1 -1
- package/src/plugins/level-selector/__tests__/LevelSelector.test.ts +1 -8
- package/src/plugins/level-selector/__tests__/__snapshots__/LevelSelector.test.ts.snap +33 -0
- package/src/plugins/logo/Logo.ts +1 -1
- package/src/plugins/media-control/MediaControl.ts +114 -94
- package/src/plugins/multi-camera/MultiCamera.ts +1 -1
- package/src/plugins/playback-rate/PlaybackRate.ts +1 -1
- package/src/plugins/poster/Poster.ts +1 -1
- package/src/plugins/seek-time/SeekTime.ts +1 -1
- package/src/plugins/spinner-three-bounce/SpinnerThreeBounce.ts +1 -1
- package/src/plugins/subtitles/Subtitles.ts +1 -1
- package/src/plugins/thumbnails/Thumbnails.ts +1 -1
- package/src/plugins/vast-ads/VastAds.ts +1 -1
- package/src/plugins/vast-ads/roll.ts +1 -1
- package/src/plugins/vast-ads/rollmanager.ts +1 -1
- package/src/plugins/volume-fade/VolumeFade.ts +1 -1
- package/src/types.ts +0 -2
- package/src/utils/types.ts +6 -0
- package/temp/player.api.json +587 -2743
- package/tsconfig.tsbuildinfo +1 -1
- package/docs/api/player.kibo._constructor_.md +0 -49
- package/docs/api/player.kibo.delegate.md +0 -79
- package/docs/api/player.kibo.down.md +0 -65
- package/docs/api/player.kibo.lastkey.md +0 -51
- package/docs/api/player.kibo.lastmodifiersandkey.md +0 -15
- package/docs/api/player.kibo.md +0 -137
- package/docs/api/player.kibo.off.md +0 -49
- package/docs/api/player.kibo.up.md +0 -65
- package/docs/api/player.mediacontrol.applybuttonstyle.md +0 -49
- package/docs/api/player.mediacontrol.bigplaybutton.md +0 -11
- package/docs/api/player.mediacontrol.bindkeyandshow.md +0 -63
- package/docs/api/player.mediacontrol.bindkeyevents.md +0 -15
- package/docs/api/player.mediacontrol.configure.md +0 -15
- package/docs/api/player.mediacontrol.createcachedelements.md +0 -15
- package/docs/api/player.mediacontrol.drawdurationandposition.md +0 -15
- package/docs/api/player.mediacontrol.ended.md +0 -15
- package/docs/api/player.mediacontrol.getsettings.md +0 -15
- package/docs/api/player.mediacontrol.getvolumefromuievent.md +0 -49
- package/docs/api/player.mediacontrol.hide.md +0 -51
- package/docs/api/player.mediacontrol.hidecontrollads.md +0 -15
- package/docs/api/player.mediacontrol.hidevolumebar.md +0 -51
- package/docs/api/player.mediacontrol.highdefinitionupdate.md +0 -49
- package/docs/api/player.mediacontrol.initializeicons.md +0 -15
- package/docs/api/player.mediacontrol.isseekenabledforhtml5playback.md +0 -15
- package/docs/api/player.mediacontrol.isvisible.md +0 -15
- package/docs/api/player.mediacontrol.onactivecontainerchanged.md +0 -15
- package/docs/api/player.mediacontrol.onfinishad.md +0 -15
- package/docs/api/player.mediacontrol.onstartad.md +0 -15
- package/docs/api/player.mediacontrol.ontimeupdate.md +0 -49
- package/docs/api/player.mediacontrol.parsecolors.md +0 -15
- package/docs/api/player.mediacontrol.renderseekbar.md +0 -15
- package/docs/api/player.mediacontrol.resetindicators.md +0 -15
- package/docs/api/player.mediacontrol.resetkeepvisible.md +0 -15
- package/docs/api/player.mediacontrol.resetuserkeepvisible.md +0 -15
- package/docs/api/player.mediacontrol.seek.md +0 -49
- package/docs/api/player.mediacontrol.seekrelative.md +0 -49
- package/docs/api/player.mediacontrol.setcliptext.md +0 -49
- package/docs/api/player.mediacontrol.setkeepvisible.md +0 -15
- package/docs/api/player.mediacontrol.setseekpercentage.md +0 -49
- package/docs/api/player.mediacontrol.setsvgmask.md +0 -49
- package/docs/api/player.mediacontrol.setuserkeepvisible.md +0 -15
- package/docs/api/player.mediacontrol.show.md +0 -51
- package/docs/api/player.mediacontrol.showvolumebar.md +0 -15
- package/docs/api/player.mediacontrol.startseekdrag.md +0 -49
- package/docs/api/player.mediacontrol.startvolumedrag.md +0 -49
- package/docs/api/player.mediacontrol.stopdrag.md +0 -11
- package/docs/api/player.mediacontrol.template.md +0 -11
- package/docs/api/player.mediacontrol.togglefullscreen.md +0 -15
- package/docs/api/player.mediacontrol.togglemute.md +0 -15
- package/docs/api/player.mediacontrol.toggleplaypause.md +0 -15
- package/docs/api/player.mediacontrol.toggleplaystop.md +0 -15
- package/docs/api/player.mediacontrol.unbindkeyevents.md +0 -15
- package/docs/api/player.mediacontrol.updatecursorstyle.md +0 -49
- package/docs/api/player.mediacontrol.updatedrag.md +0 -11
- package/docs/api/player.mediacontrol.updateprogressbar.md +0 -49
- package/src/plugins/types.ts +0 -7
package/temp/player.api.json
CHANGED
|
@@ -944,37 +944,6 @@
|
|
|
944
944
|
"isStatic": false,
|
|
945
945
|
"isProtected": false,
|
|
946
946
|
"isAbstract": false
|
|
947
|
-
},
|
|
948
|
-
{
|
|
949
|
-
"kind": "Method",
|
|
950
|
-
"canonicalReference": "@gcorevideo/player!BigMuteButton#unBindEvents:member(1)",
|
|
951
|
-
"docComment": "",
|
|
952
|
-
"excerptTokens": [
|
|
953
|
-
{
|
|
954
|
-
"kind": "Content",
|
|
955
|
-
"text": "unBindEvents(): "
|
|
956
|
-
},
|
|
957
|
-
{
|
|
958
|
-
"kind": "Content",
|
|
959
|
-
"text": "void"
|
|
960
|
-
},
|
|
961
|
-
{
|
|
962
|
-
"kind": "Content",
|
|
963
|
-
"text": ";"
|
|
964
|
-
}
|
|
965
|
-
],
|
|
966
|
-
"isStatic": false,
|
|
967
|
-
"returnTypeTokenRange": {
|
|
968
|
-
"startIndex": 1,
|
|
969
|
-
"endIndex": 2
|
|
970
|
-
},
|
|
971
|
-
"releaseTag": "Beta",
|
|
972
|
-
"isProtected": false,
|
|
973
|
-
"overloadIndex": 1,
|
|
974
|
-
"parameters": [],
|
|
975
|
-
"isOptional": false,
|
|
976
|
-
"isAbstract": false,
|
|
977
|
-
"name": "unBindEvents"
|
|
978
947
|
}
|
|
979
948
|
],
|
|
980
949
|
"extendsTokenRange": {
|
|
@@ -5169,107 +5138,99 @@
|
|
|
5169
5138
|
},
|
|
5170
5139
|
"implementsTokenRanges": []
|
|
5171
5140
|
},
|
|
5141
|
+
{
|
|
5142
|
+
"kind": "TypeAlias",
|
|
5143
|
+
"canonicalReference": "@gcorevideo/player!LangTag:type",
|
|
5144
|
+
"docComment": "/**\n * An ISO 639-1 language code.\n *\n * @example\n *\n * `pt`\n *\n * @beta\n */\n",
|
|
5145
|
+
"excerptTokens": [
|
|
5146
|
+
{
|
|
5147
|
+
"kind": "Content",
|
|
5148
|
+
"text": "export type LangTag = "
|
|
5149
|
+
},
|
|
5150
|
+
{
|
|
5151
|
+
"kind": "Content",
|
|
5152
|
+
"text": "string"
|
|
5153
|
+
},
|
|
5154
|
+
{
|
|
5155
|
+
"kind": "Content",
|
|
5156
|
+
"text": ";"
|
|
5157
|
+
}
|
|
5158
|
+
],
|
|
5159
|
+
"fileUrlPath": "src/types.ts",
|
|
5160
|
+
"releaseTag": "Beta",
|
|
5161
|
+
"name": "LangTag",
|
|
5162
|
+
"typeTokenRange": {
|
|
5163
|
+
"startIndex": 1,
|
|
5164
|
+
"endIndex": 2
|
|
5165
|
+
}
|
|
5166
|
+
},
|
|
5172
5167
|
{
|
|
5173
5168
|
"kind": "Class",
|
|
5174
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5175
|
-
"docComment": "",
|
|
5169
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector:class",
|
|
5170
|
+
"docComment": "/**\n * Allows to control the quality level of the playback.\n *\n * @remarks\n *\n * The plugin is rendered as a button in the gear menu. When clicked, it shows a list of quality levels to choose from.\n *\n * Configuration options:\n *\n * - `labels`: The labels to show in the level selector. [vertical resolution]: string - `restrictResolution`: The maximum resolution to allow in the level selector.\n *\n * @example\n * ```ts\n * {\n * levelSelector: {\n * restrictResolution: 360,\n * labels: { 360: '360p', 720: '720p' },\n * },\n * }\n * ```\n *\n * @beta\n */\n",
|
|
5176
5171
|
"excerptTokens": [
|
|
5177
5172
|
{
|
|
5178
5173
|
"kind": "Content",
|
|
5179
|
-
"text": "export declare class
|
|
5174
|
+
"text": "export declare class LevelSelector extends "
|
|
5175
|
+
},
|
|
5176
|
+
{
|
|
5177
|
+
"kind": "Reference",
|
|
5178
|
+
"text": "UICorePlugin",
|
|
5179
|
+
"canonicalReference": "@gcorevideo/player!~UICorePlugin"
|
|
5180
|
+
},
|
|
5181
|
+
{
|
|
5182
|
+
"kind": "Content",
|
|
5183
|
+
"text": " "
|
|
5180
5184
|
}
|
|
5181
5185
|
],
|
|
5182
|
-
"fileUrlPath": "src/plugins/
|
|
5183
|
-
"releaseTag": "
|
|
5186
|
+
"fileUrlPath": "src/plugins/level-selector/LevelSelector.ts",
|
|
5187
|
+
"releaseTag": "Beta",
|
|
5184
5188
|
"isAbstract": false,
|
|
5185
|
-
"name": "
|
|
5189
|
+
"name": "LevelSelector",
|
|
5186
5190
|
"preserveMemberOrder": false,
|
|
5187
5191
|
"members": [
|
|
5188
5192
|
{
|
|
5189
|
-
"kind": "
|
|
5190
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5191
|
-
"docComment": "
|
|
5193
|
+
"kind": "Property",
|
|
5194
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector#attributes:member",
|
|
5195
|
+
"docComment": "",
|
|
5192
5196
|
"excerptTokens": [
|
|
5193
5197
|
{
|
|
5194
5198
|
"kind": "Content",
|
|
5195
|
-
"text": "
|
|
5196
|
-
},
|
|
5197
|
-
{
|
|
5198
|
-
"kind": "Reference",
|
|
5199
|
-
"text": "Document",
|
|
5200
|
-
"canonicalReference": "!Document:interface"
|
|
5199
|
+
"text": "get attributes(): "
|
|
5201
5200
|
},
|
|
5202
5201
|
{
|
|
5203
5202
|
"kind": "Content",
|
|
5204
|
-
"text": "
|
|
5205
|
-
},
|
|
5206
|
-
{
|
|
5207
|
-
"kind": "Reference",
|
|
5208
|
-
"text": "Element",
|
|
5209
|
-
"canonicalReference": "!Element:interface"
|
|
5203
|
+
"text": "{\n class: string;\n 'data-level-selector': string;\n }"
|
|
5210
5204
|
},
|
|
5211
5205
|
{
|
|
5212
5206
|
"kind": "Content",
|
|
5213
|
-
"text": "
|
|
5207
|
+
"text": ";"
|
|
5214
5208
|
}
|
|
5215
5209
|
],
|
|
5216
|
-
"
|
|
5210
|
+
"isReadonly": true,
|
|
5211
|
+
"isOptional": false,
|
|
5212
|
+
"releaseTag": "Beta",
|
|
5213
|
+
"name": "attributes",
|
|
5214
|
+
"propertyTypeTokenRange": {
|
|
5215
|
+
"startIndex": 1,
|
|
5216
|
+
"endIndex": 2
|
|
5217
|
+
},
|
|
5218
|
+
"isStatic": false,
|
|
5217
5219
|
"isProtected": false,
|
|
5218
|
-
"
|
|
5219
|
-
"parameters": [
|
|
5220
|
-
{
|
|
5221
|
-
"parameterName": "element",
|
|
5222
|
-
"parameterTypeTokenRange": {
|
|
5223
|
-
"startIndex": 1,
|
|
5224
|
-
"endIndex": 4
|
|
5225
|
-
},
|
|
5226
|
-
"isOptional": true
|
|
5227
|
-
}
|
|
5228
|
-
]
|
|
5220
|
+
"isAbstract": false
|
|
5229
5221
|
},
|
|
5230
5222
|
{
|
|
5231
5223
|
"kind": "Method",
|
|
5232
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5224
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector#bindEvents:member(1)",
|
|
5233
5225
|
"docComment": "",
|
|
5234
5226
|
"excerptTokens": [
|
|
5235
5227
|
{
|
|
5236
5228
|
"kind": "Content",
|
|
5237
|
-
"text": "
|
|
5238
|
-
},
|
|
5239
|
-
{
|
|
5240
|
-
"kind": "Reference",
|
|
5241
|
-
"text": "UpDown",
|
|
5242
|
-
"canonicalReference": "@gcorevideo/player!~UpDown:type"
|
|
5243
|
-
},
|
|
5244
|
-
{
|
|
5245
|
-
"kind": "Content",
|
|
5246
|
-
"text": ", keys: "
|
|
5247
|
-
},
|
|
5248
|
-
{
|
|
5249
|
-
"kind": "Content",
|
|
5250
|
-
"text": "string | string[]"
|
|
5251
|
-
},
|
|
5252
|
-
{
|
|
5253
|
-
"kind": "Content",
|
|
5254
|
-
"text": ", func?: "
|
|
5255
|
-
},
|
|
5256
|
-
{
|
|
5257
|
-
"kind": "Reference",
|
|
5258
|
-
"text": "KeyboardEventHandler",
|
|
5259
|
-
"canonicalReference": "@gcorevideo/player!~KeyboardEventHandler:type"
|
|
5260
|
-
},
|
|
5261
|
-
{
|
|
5262
|
-
"kind": "Content",
|
|
5263
|
-
"text": " | null"
|
|
5229
|
+
"text": "bindEvents(): "
|
|
5264
5230
|
},
|
|
5265
5231
|
{
|
|
5266
5232
|
"kind": "Content",
|
|
5267
|
-
"text": "
|
|
5268
|
-
},
|
|
5269
|
-
{
|
|
5270
|
-
"kind": "Reference",
|
|
5271
|
-
"text": "Kibo",
|
|
5272
|
-
"canonicalReference": "@gcorevideo/player!Kibo:class"
|
|
5233
|
+
"text": "void"
|
|
5273
5234
|
},
|
|
5274
5235
|
{
|
|
5275
5236
|
"kind": "Content",
|
|
@@ -5278,76 +5239,89 @@
|
|
|
5278
5239
|
],
|
|
5279
5240
|
"isStatic": false,
|
|
5280
5241
|
"returnTypeTokenRange": {
|
|
5281
|
-
"startIndex":
|
|
5282
|
-
"endIndex":
|
|
5242
|
+
"startIndex": 1,
|
|
5243
|
+
"endIndex": 2
|
|
5283
5244
|
},
|
|
5284
|
-
"releaseTag": "
|
|
5245
|
+
"releaseTag": "Beta",
|
|
5285
5246
|
"isProtected": false,
|
|
5286
5247
|
"overloadIndex": 1,
|
|
5287
|
-
"parameters": [
|
|
5248
|
+
"parameters": [],
|
|
5249
|
+
"isOptional": false,
|
|
5250
|
+
"isAbstract": false,
|
|
5251
|
+
"name": "bindEvents"
|
|
5252
|
+
},
|
|
5253
|
+
{
|
|
5254
|
+
"kind": "Property",
|
|
5255
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector#events:member",
|
|
5256
|
+
"docComment": "",
|
|
5257
|
+
"excerptTokens": [
|
|
5288
5258
|
{
|
|
5289
|
-
"
|
|
5290
|
-
"
|
|
5291
|
-
"startIndex": 1,
|
|
5292
|
-
"endIndex": 2
|
|
5293
|
-
},
|
|
5294
|
-
"isOptional": false
|
|
5259
|
+
"kind": "Content",
|
|
5260
|
+
"text": "get events(): "
|
|
5295
5261
|
},
|
|
5296
5262
|
{
|
|
5297
|
-
"
|
|
5298
|
-
"
|
|
5299
|
-
"startIndex": 3,
|
|
5300
|
-
"endIndex": 4
|
|
5301
|
-
},
|
|
5302
|
-
"isOptional": false
|
|
5263
|
+
"kind": "Content",
|
|
5264
|
+
"text": "{\n 'click .gear-sub-menu_btn': string;\n 'click .gear-option': string;\n 'click .go-back': string;\n }"
|
|
5303
5265
|
},
|
|
5304
5266
|
{
|
|
5305
|
-
"
|
|
5306
|
-
"
|
|
5307
|
-
"startIndex": 5,
|
|
5308
|
-
"endIndex": 7
|
|
5309
|
-
},
|
|
5310
|
-
"isOptional": true
|
|
5267
|
+
"kind": "Content",
|
|
5268
|
+
"text": ";"
|
|
5311
5269
|
}
|
|
5312
5270
|
],
|
|
5271
|
+
"isReadonly": true,
|
|
5313
5272
|
"isOptional": false,
|
|
5314
|
-
"
|
|
5315
|
-
"name": "
|
|
5273
|
+
"releaseTag": "Beta",
|
|
5274
|
+
"name": "events",
|
|
5275
|
+
"propertyTypeTokenRange": {
|
|
5276
|
+
"startIndex": 1,
|
|
5277
|
+
"endIndex": 2
|
|
5278
|
+
},
|
|
5279
|
+
"isStatic": false,
|
|
5280
|
+
"isProtected": false,
|
|
5281
|
+
"isAbstract": false
|
|
5316
5282
|
},
|
|
5317
5283
|
{
|
|
5318
|
-
"kind": "
|
|
5319
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5284
|
+
"kind": "Property",
|
|
5285
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector#name:member",
|
|
5320
5286
|
"docComment": "",
|
|
5321
5287
|
"excerptTokens": [
|
|
5322
5288
|
{
|
|
5323
5289
|
"kind": "Content",
|
|
5324
|
-
"text": "
|
|
5290
|
+
"text": "get name(): "
|
|
5325
5291
|
},
|
|
5326
5292
|
{
|
|
5327
5293
|
"kind": "Content",
|
|
5328
|
-
"text": "string
|
|
5294
|
+
"text": "string"
|
|
5329
5295
|
},
|
|
5330
5296
|
{
|
|
5331
5297
|
"kind": "Content",
|
|
5332
|
-
"text": "
|
|
5333
|
-
}
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
5298
|
+
"text": ";"
|
|
5299
|
+
}
|
|
5300
|
+
],
|
|
5301
|
+
"isReadonly": true,
|
|
5302
|
+
"isOptional": false,
|
|
5303
|
+
"releaseTag": "Beta",
|
|
5304
|
+
"name": "name",
|
|
5305
|
+
"propertyTypeTokenRange": {
|
|
5306
|
+
"startIndex": 1,
|
|
5307
|
+
"endIndex": 2
|
|
5308
|
+
},
|
|
5309
|
+
"isStatic": false,
|
|
5310
|
+
"isProtected": false,
|
|
5311
|
+
"isAbstract": false
|
|
5312
|
+
},
|
|
5313
|
+
{
|
|
5314
|
+
"kind": "Method",
|
|
5315
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector#render:member(1)",
|
|
5316
|
+
"docComment": "",
|
|
5317
|
+
"excerptTokens": [
|
|
5339
5318
|
{
|
|
5340
5319
|
"kind": "Content",
|
|
5341
|
-
"text": "
|
|
5320
|
+
"text": "render(): "
|
|
5342
5321
|
},
|
|
5343
5322
|
{
|
|
5344
5323
|
"kind": "Content",
|
|
5345
|
-
"text": "
|
|
5346
|
-
},
|
|
5347
|
-
{
|
|
5348
|
-
"kind": "Reference",
|
|
5349
|
-
"text": "Kibo",
|
|
5350
|
-
"canonicalReference": "@gcorevideo/player!Kibo:class"
|
|
5324
|
+
"text": "this"
|
|
5351
5325
|
},
|
|
5352
5326
|
{
|
|
5353
5327
|
"kind": "Content",
|
|
@@ -5356,1939 +5330,29 @@
|
|
|
5356
5330
|
],
|
|
5357
5331
|
"isStatic": false,
|
|
5358
5332
|
"returnTypeTokenRange": {
|
|
5359
|
-
"startIndex":
|
|
5360
|
-
"endIndex":
|
|
5333
|
+
"startIndex": 1,
|
|
5334
|
+
"endIndex": 2
|
|
5361
5335
|
},
|
|
5362
|
-
"releaseTag": "
|
|
5336
|
+
"releaseTag": "Beta",
|
|
5363
5337
|
"isProtected": false,
|
|
5364
5338
|
"overloadIndex": 1,
|
|
5365
|
-
"parameters": [
|
|
5366
|
-
{
|
|
5367
|
-
"parameterName": "keys",
|
|
5368
|
-
"parameterTypeTokenRange": {
|
|
5369
|
-
"startIndex": 1,
|
|
5370
|
-
"endIndex": 2
|
|
5371
|
-
},
|
|
5372
|
-
"isOptional": false
|
|
5373
|
-
},
|
|
5374
|
-
{
|
|
5375
|
-
"parameterName": "func",
|
|
5376
|
-
"parameterTypeTokenRange": {
|
|
5377
|
-
"startIndex": 3,
|
|
5378
|
-
"endIndex": 5
|
|
5379
|
-
},
|
|
5380
|
-
"isOptional": true
|
|
5381
|
-
}
|
|
5382
|
-
],
|
|
5339
|
+
"parameters": [],
|
|
5383
5340
|
"isOptional": false,
|
|
5384
5341
|
"isAbstract": false,
|
|
5385
|
-
"name": "
|
|
5342
|
+
"name": "render"
|
|
5386
5343
|
},
|
|
5387
5344
|
{
|
|
5388
|
-
"kind": "
|
|
5389
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5345
|
+
"kind": "Property",
|
|
5346
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector#supportedVersion:member",
|
|
5390
5347
|
"docComment": "",
|
|
5391
5348
|
"excerptTokens": [
|
|
5392
5349
|
{
|
|
5393
5350
|
"kind": "Content",
|
|
5394
|
-
"text": "
|
|
5395
|
-
},
|
|
5396
|
-
{
|
|
5397
|
-
"kind": "Content",
|
|
5398
|
-
"text": "string"
|
|
5399
|
-
},
|
|
5400
|
-
{
|
|
5401
|
-
"kind": "Content",
|
|
5402
|
-
"text": "): "
|
|
5351
|
+
"text": "get supportedVersion(): "
|
|
5403
5352
|
},
|
|
5404
5353
|
{
|
|
5405
5354
|
"kind": "Content",
|
|
5406
|
-
"text": "string
|
|
5407
|
-
},
|
|
5408
|
-
{
|
|
5409
|
-
"kind": "Content",
|
|
5410
|
-
"text": ";"
|
|
5411
|
-
}
|
|
5412
|
-
],
|
|
5413
|
-
"isStatic": false,
|
|
5414
|
-
"returnTypeTokenRange": {
|
|
5415
|
-
"startIndex": 3,
|
|
5416
|
-
"endIndex": 4
|
|
5417
|
-
},
|
|
5418
|
-
"releaseTag": "Public",
|
|
5419
|
-
"isProtected": false,
|
|
5420
|
-
"overloadIndex": 1,
|
|
5421
|
-
"parameters": [
|
|
5422
|
-
{
|
|
5423
|
-
"parameterName": "modifier",
|
|
5424
|
-
"parameterTypeTokenRange": {
|
|
5425
|
-
"startIndex": 1,
|
|
5426
|
-
"endIndex": 2
|
|
5427
|
-
},
|
|
5428
|
-
"isOptional": true
|
|
5429
|
-
}
|
|
5430
|
-
],
|
|
5431
|
-
"isOptional": false,
|
|
5432
|
-
"isAbstract": false,
|
|
5433
|
-
"name": "lastKey"
|
|
5434
|
-
},
|
|
5435
|
-
{
|
|
5436
|
-
"kind": "Method",
|
|
5437
|
-
"canonicalReference": "@gcorevideo/player!Kibo#lastModifiersAndKey:member(1)",
|
|
5438
|
-
"docComment": "",
|
|
5439
|
-
"excerptTokens": [
|
|
5440
|
-
{
|
|
5441
|
-
"kind": "Content",
|
|
5442
|
-
"text": "lastModifiersAndKey(): "
|
|
5443
|
-
},
|
|
5444
|
-
{
|
|
5445
|
-
"kind": "Content",
|
|
5446
|
-
"text": "string"
|
|
5447
|
-
},
|
|
5448
|
-
{
|
|
5449
|
-
"kind": "Content",
|
|
5450
|
-
"text": ";"
|
|
5451
|
-
}
|
|
5452
|
-
],
|
|
5453
|
-
"isStatic": false,
|
|
5454
|
-
"returnTypeTokenRange": {
|
|
5455
|
-
"startIndex": 1,
|
|
5456
|
-
"endIndex": 2
|
|
5457
|
-
},
|
|
5458
|
-
"releaseTag": "Public",
|
|
5459
|
-
"isProtected": false,
|
|
5460
|
-
"overloadIndex": 1,
|
|
5461
|
-
"parameters": [],
|
|
5462
|
-
"isOptional": false,
|
|
5463
|
-
"isAbstract": false,
|
|
5464
|
-
"name": "lastModifiersAndKey"
|
|
5465
|
-
},
|
|
5466
|
-
{
|
|
5467
|
-
"kind": "Method",
|
|
5468
|
-
"canonicalReference": "@gcorevideo/player!Kibo#off:member(1)",
|
|
5469
|
-
"docComment": "",
|
|
5470
|
-
"excerptTokens": [
|
|
5471
|
-
{
|
|
5472
|
-
"kind": "Content",
|
|
5473
|
-
"text": "off(keys: "
|
|
5474
|
-
},
|
|
5475
|
-
{
|
|
5476
|
-
"kind": "Content",
|
|
5477
|
-
"text": "string | string[]"
|
|
5478
|
-
},
|
|
5479
|
-
{
|
|
5480
|
-
"kind": "Content",
|
|
5481
|
-
"text": "): "
|
|
5482
|
-
},
|
|
5483
|
-
{
|
|
5484
|
-
"kind": "Reference",
|
|
5485
|
-
"text": "Kibo",
|
|
5486
|
-
"canonicalReference": "@gcorevideo/player!Kibo:class"
|
|
5487
|
-
},
|
|
5488
|
-
{
|
|
5489
|
-
"kind": "Content",
|
|
5490
|
-
"text": ";"
|
|
5491
|
-
}
|
|
5492
|
-
],
|
|
5493
|
-
"isStatic": false,
|
|
5494
|
-
"returnTypeTokenRange": {
|
|
5495
|
-
"startIndex": 3,
|
|
5496
|
-
"endIndex": 4
|
|
5497
|
-
},
|
|
5498
|
-
"releaseTag": "Public",
|
|
5499
|
-
"isProtected": false,
|
|
5500
|
-
"overloadIndex": 1,
|
|
5501
|
-
"parameters": [
|
|
5502
|
-
{
|
|
5503
|
-
"parameterName": "keys",
|
|
5504
|
-
"parameterTypeTokenRange": {
|
|
5505
|
-
"startIndex": 1,
|
|
5506
|
-
"endIndex": 2
|
|
5507
|
-
},
|
|
5508
|
-
"isOptional": false
|
|
5509
|
-
}
|
|
5510
|
-
],
|
|
5511
|
-
"isOptional": false,
|
|
5512
|
-
"isAbstract": false,
|
|
5513
|
-
"name": "off"
|
|
5514
|
-
},
|
|
5515
|
-
{
|
|
5516
|
-
"kind": "Method",
|
|
5517
|
-
"canonicalReference": "@gcorevideo/player!Kibo#up:member(1)",
|
|
5518
|
-
"docComment": "",
|
|
5519
|
-
"excerptTokens": [
|
|
5520
|
-
{
|
|
5521
|
-
"kind": "Content",
|
|
5522
|
-
"text": "up(keys: "
|
|
5523
|
-
},
|
|
5524
|
-
{
|
|
5525
|
-
"kind": "Content",
|
|
5526
|
-
"text": "string | string[]"
|
|
5527
|
-
},
|
|
5528
|
-
{
|
|
5529
|
-
"kind": "Content",
|
|
5530
|
-
"text": ", func?: "
|
|
5531
|
-
},
|
|
5532
|
-
{
|
|
5533
|
-
"kind": "Reference",
|
|
5534
|
-
"text": "KeyboardEventHandler",
|
|
5535
|
-
"canonicalReference": "@gcorevideo/player!~KeyboardEventHandler:type"
|
|
5536
|
-
},
|
|
5537
|
-
{
|
|
5538
|
-
"kind": "Content",
|
|
5539
|
-
"text": " | null"
|
|
5540
|
-
},
|
|
5541
|
-
{
|
|
5542
|
-
"kind": "Content",
|
|
5543
|
-
"text": "): "
|
|
5544
|
-
},
|
|
5545
|
-
{
|
|
5546
|
-
"kind": "Reference",
|
|
5547
|
-
"text": "Kibo",
|
|
5548
|
-
"canonicalReference": "@gcorevideo/player!Kibo:class"
|
|
5549
|
-
},
|
|
5550
|
-
{
|
|
5551
|
-
"kind": "Content",
|
|
5552
|
-
"text": ";"
|
|
5553
|
-
}
|
|
5554
|
-
],
|
|
5555
|
-
"isStatic": false,
|
|
5556
|
-
"returnTypeTokenRange": {
|
|
5557
|
-
"startIndex": 6,
|
|
5558
|
-
"endIndex": 7
|
|
5559
|
-
},
|
|
5560
|
-
"releaseTag": "Public",
|
|
5561
|
-
"isProtected": false,
|
|
5562
|
-
"overloadIndex": 1,
|
|
5563
|
-
"parameters": [
|
|
5564
|
-
{
|
|
5565
|
-
"parameterName": "keys",
|
|
5566
|
-
"parameterTypeTokenRange": {
|
|
5567
|
-
"startIndex": 1,
|
|
5568
|
-
"endIndex": 2
|
|
5569
|
-
},
|
|
5570
|
-
"isOptional": false
|
|
5571
|
-
},
|
|
5572
|
-
{
|
|
5573
|
-
"parameterName": "func",
|
|
5574
|
-
"parameterTypeTokenRange": {
|
|
5575
|
-
"startIndex": 3,
|
|
5576
|
-
"endIndex": 5
|
|
5577
|
-
},
|
|
5578
|
-
"isOptional": true
|
|
5579
|
-
}
|
|
5580
|
-
],
|
|
5581
|
-
"isOptional": false,
|
|
5582
|
-
"isAbstract": false,
|
|
5583
|
-
"name": "up"
|
|
5584
|
-
}
|
|
5585
|
-
],
|
|
5586
|
-
"implementsTokenRanges": []
|
|
5587
|
-
},
|
|
5588
|
-
{
|
|
5589
|
-
"kind": "TypeAlias",
|
|
5590
|
-
"canonicalReference": "@gcorevideo/player!LangTag:type",
|
|
5591
|
-
"docComment": "/**\n * An ISO 639-1 language code.\n *\n * @example\n *\n * `pt`\n *\n * @beta\n */\n",
|
|
5592
|
-
"excerptTokens": [
|
|
5593
|
-
{
|
|
5594
|
-
"kind": "Content",
|
|
5595
|
-
"text": "export type LangTag = "
|
|
5596
|
-
},
|
|
5597
|
-
{
|
|
5598
|
-
"kind": "Content",
|
|
5599
|
-
"text": "string"
|
|
5600
|
-
},
|
|
5601
|
-
{
|
|
5602
|
-
"kind": "Content",
|
|
5603
|
-
"text": ";"
|
|
5604
|
-
}
|
|
5605
|
-
],
|
|
5606
|
-
"fileUrlPath": "src/types.ts",
|
|
5607
|
-
"releaseTag": "Beta",
|
|
5608
|
-
"name": "LangTag",
|
|
5609
|
-
"typeTokenRange": {
|
|
5610
|
-
"startIndex": 1,
|
|
5611
|
-
"endIndex": 2
|
|
5612
|
-
}
|
|
5613
|
-
},
|
|
5614
|
-
{
|
|
5615
|
-
"kind": "Class",
|
|
5616
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector:class",
|
|
5617
|
-
"docComment": "/**\n * Allows to control the quality level of the playback.\n *\n * @remarks\n *\n * The plugin is rendered as a button in the gear menu. When clicked, it shows a list of quality levels to choose from.\n *\n * Configuration options:\n *\n * - `labels`: The labels to show in the level selector. [vertical resolution]: string - `restrictResolution`: The maximum resolution to allow in the level selector. - `title`: The title to show in the level selector.\n *\n * @example\n * ```ts\n * {\n * levelSelector: {\n * restrictResolution: 360,\n * labels: { 360: '360p', 720: '720p' },\n * },\n * }\n * ```\n *\n * @beta\n */\n",
|
|
5618
|
-
"excerptTokens": [
|
|
5619
|
-
{
|
|
5620
|
-
"kind": "Content",
|
|
5621
|
-
"text": "export declare class LevelSelector extends "
|
|
5622
|
-
},
|
|
5623
|
-
{
|
|
5624
|
-
"kind": "Reference",
|
|
5625
|
-
"text": "UICorePlugin",
|
|
5626
|
-
"canonicalReference": "@gcorevideo/player!~UICorePlugin"
|
|
5627
|
-
},
|
|
5628
|
-
{
|
|
5629
|
-
"kind": "Content",
|
|
5630
|
-
"text": " "
|
|
5631
|
-
}
|
|
5632
|
-
],
|
|
5633
|
-
"fileUrlPath": "src/plugins/level-selector/LevelSelector.ts",
|
|
5634
|
-
"releaseTag": "Beta",
|
|
5635
|
-
"isAbstract": false,
|
|
5636
|
-
"name": "LevelSelector",
|
|
5637
|
-
"preserveMemberOrder": false,
|
|
5638
|
-
"members": [
|
|
5639
|
-
{
|
|
5640
|
-
"kind": "Property",
|
|
5641
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector#attributes:member",
|
|
5642
|
-
"docComment": "",
|
|
5643
|
-
"excerptTokens": [
|
|
5644
|
-
{
|
|
5645
|
-
"kind": "Content",
|
|
5646
|
-
"text": "get attributes(): "
|
|
5647
|
-
},
|
|
5648
|
-
{
|
|
5649
|
-
"kind": "Content",
|
|
5650
|
-
"text": "{\n class: string;\n 'data-level-selector': string;\n }"
|
|
5651
|
-
},
|
|
5652
|
-
{
|
|
5653
|
-
"kind": "Content",
|
|
5654
|
-
"text": ";"
|
|
5655
|
-
}
|
|
5656
|
-
],
|
|
5657
|
-
"isReadonly": true,
|
|
5658
|
-
"isOptional": false,
|
|
5659
|
-
"releaseTag": "Beta",
|
|
5660
|
-
"name": "attributes",
|
|
5661
|
-
"propertyTypeTokenRange": {
|
|
5662
|
-
"startIndex": 1,
|
|
5663
|
-
"endIndex": 2
|
|
5664
|
-
},
|
|
5665
|
-
"isStatic": false,
|
|
5666
|
-
"isProtected": false,
|
|
5667
|
-
"isAbstract": false
|
|
5668
|
-
},
|
|
5669
|
-
{
|
|
5670
|
-
"kind": "Method",
|
|
5671
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector#bindEvents:member(1)",
|
|
5672
|
-
"docComment": "",
|
|
5673
|
-
"excerptTokens": [
|
|
5674
|
-
{
|
|
5675
|
-
"kind": "Content",
|
|
5676
|
-
"text": "bindEvents(): "
|
|
5677
|
-
},
|
|
5678
|
-
{
|
|
5679
|
-
"kind": "Content",
|
|
5680
|
-
"text": "void"
|
|
5681
|
-
},
|
|
5682
|
-
{
|
|
5683
|
-
"kind": "Content",
|
|
5684
|
-
"text": ";"
|
|
5685
|
-
}
|
|
5686
|
-
],
|
|
5687
|
-
"isStatic": false,
|
|
5688
|
-
"returnTypeTokenRange": {
|
|
5689
|
-
"startIndex": 1,
|
|
5690
|
-
"endIndex": 2
|
|
5691
|
-
},
|
|
5692
|
-
"releaseTag": "Beta",
|
|
5693
|
-
"isProtected": false,
|
|
5694
|
-
"overloadIndex": 1,
|
|
5695
|
-
"parameters": [],
|
|
5696
|
-
"isOptional": false,
|
|
5697
|
-
"isAbstract": false,
|
|
5698
|
-
"name": "bindEvents"
|
|
5699
|
-
},
|
|
5700
|
-
{
|
|
5701
|
-
"kind": "Property",
|
|
5702
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector#events:member",
|
|
5703
|
-
"docComment": "",
|
|
5704
|
-
"excerptTokens": [
|
|
5705
|
-
{
|
|
5706
|
-
"kind": "Content",
|
|
5707
|
-
"text": "get events(): "
|
|
5708
|
-
},
|
|
5709
|
-
{
|
|
5710
|
-
"kind": "Content",
|
|
5711
|
-
"text": "{\n 'click .gear-sub-menu_btn': string;\n 'click .gear-option': string;\n 'click .go-back': string;\n }"
|
|
5712
|
-
},
|
|
5713
|
-
{
|
|
5714
|
-
"kind": "Content",
|
|
5715
|
-
"text": ";"
|
|
5716
|
-
}
|
|
5717
|
-
],
|
|
5718
|
-
"isReadonly": true,
|
|
5719
|
-
"isOptional": false,
|
|
5720
|
-
"releaseTag": "Beta",
|
|
5721
|
-
"name": "events",
|
|
5722
|
-
"propertyTypeTokenRange": {
|
|
5723
|
-
"startIndex": 1,
|
|
5724
|
-
"endIndex": 2
|
|
5725
|
-
},
|
|
5726
|
-
"isStatic": false,
|
|
5727
|
-
"isProtected": false,
|
|
5728
|
-
"isAbstract": false
|
|
5729
|
-
},
|
|
5730
|
-
{
|
|
5731
|
-
"kind": "Property",
|
|
5732
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector#name:member",
|
|
5733
|
-
"docComment": "",
|
|
5734
|
-
"excerptTokens": [
|
|
5735
|
-
{
|
|
5736
|
-
"kind": "Content",
|
|
5737
|
-
"text": "get name(): "
|
|
5738
|
-
},
|
|
5739
|
-
{
|
|
5740
|
-
"kind": "Content",
|
|
5741
|
-
"text": "string"
|
|
5742
|
-
},
|
|
5743
|
-
{
|
|
5744
|
-
"kind": "Content",
|
|
5745
|
-
"text": ";"
|
|
5746
|
-
}
|
|
5747
|
-
],
|
|
5748
|
-
"isReadonly": true,
|
|
5749
|
-
"isOptional": false,
|
|
5750
|
-
"releaseTag": "Beta",
|
|
5751
|
-
"name": "name",
|
|
5752
|
-
"propertyTypeTokenRange": {
|
|
5753
|
-
"startIndex": 1,
|
|
5754
|
-
"endIndex": 2
|
|
5755
|
-
},
|
|
5756
|
-
"isStatic": false,
|
|
5757
|
-
"isProtected": false,
|
|
5758
|
-
"isAbstract": false
|
|
5759
|
-
},
|
|
5760
|
-
{
|
|
5761
|
-
"kind": "Method",
|
|
5762
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector#render:member(1)",
|
|
5763
|
-
"docComment": "",
|
|
5764
|
-
"excerptTokens": [
|
|
5765
|
-
{
|
|
5766
|
-
"kind": "Content",
|
|
5767
|
-
"text": "render(): "
|
|
5768
|
-
},
|
|
5769
|
-
{
|
|
5770
|
-
"kind": "Content",
|
|
5771
|
-
"text": "this"
|
|
5772
|
-
},
|
|
5773
|
-
{
|
|
5774
|
-
"kind": "Content",
|
|
5775
|
-
"text": ";"
|
|
5776
|
-
}
|
|
5777
|
-
],
|
|
5778
|
-
"isStatic": false,
|
|
5779
|
-
"returnTypeTokenRange": {
|
|
5780
|
-
"startIndex": 1,
|
|
5781
|
-
"endIndex": 2
|
|
5782
|
-
},
|
|
5783
|
-
"releaseTag": "Beta",
|
|
5784
|
-
"isProtected": false,
|
|
5785
|
-
"overloadIndex": 1,
|
|
5786
|
-
"parameters": [],
|
|
5787
|
-
"isOptional": false,
|
|
5788
|
-
"isAbstract": false,
|
|
5789
|
-
"name": "render"
|
|
5790
|
-
},
|
|
5791
|
-
{
|
|
5792
|
-
"kind": "Property",
|
|
5793
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector#supportedVersion:member",
|
|
5794
|
-
"docComment": "",
|
|
5795
|
-
"excerptTokens": [
|
|
5796
|
-
{
|
|
5797
|
-
"kind": "Content",
|
|
5798
|
-
"text": "get supportedVersion(): "
|
|
5799
|
-
},
|
|
5800
|
-
{
|
|
5801
|
-
"kind": "Content",
|
|
5802
|
-
"text": "{\n min: string;\n }"
|
|
5803
|
-
},
|
|
5804
|
-
{
|
|
5805
|
-
"kind": "Content",
|
|
5806
|
-
"text": ";"
|
|
5807
|
-
}
|
|
5808
|
-
],
|
|
5809
|
-
"isReadonly": true,
|
|
5810
|
-
"isOptional": false,
|
|
5811
|
-
"releaseTag": "Beta",
|
|
5812
|
-
"name": "supportedVersion",
|
|
5813
|
-
"propertyTypeTokenRange": {
|
|
5814
|
-
"startIndex": 1,
|
|
5815
|
-
"endIndex": 2
|
|
5816
|
-
},
|
|
5817
|
-
"isStatic": false,
|
|
5818
|
-
"isProtected": false,
|
|
5819
|
-
"isAbstract": false
|
|
5820
|
-
},
|
|
5821
|
-
{
|
|
5822
|
-
"kind": "Property",
|
|
5823
|
-
"canonicalReference": "@gcorevideo/player!LevelSelector.version:member",
|
|
5824
|
-
"docComment": "",
|
|
5825
|
-
"excerptTokens": [
|
|
5826
|
-
{
|
|
5827
|
-
"kind": "Content",
|
|
5828
|
-
"text": "static get version(): "
|
|
5829
|
-
},
|
|
5830
|
-
{
|
|
5831
|
-
"kind": "Content",
|
|
5832
|
-
"text": "string"
|
|
5833
|
-
},
|
|
5834
|
-
{
|
|
5835
|
-
"kind": "Content",
|
|
5836
|
-
"text": ";"
|
|
5837
|
-
}
|
|
5838
|
-
],
|
|
5839
|
-
"isReadonly": true,
|
|
5840
|
-
"isOptional": false,
|
|
5841
|
-
"releaseTag": "Beta",
|
|
5842
|
-
"name": "version",
|
|
5843
|
-
"propertyTypeTokenRange": {
|
|
5844
|
-
"startIndex": 1,
|
|
5845
|
-
"endIndex": 2
|
|
5846
|
-
},
|
|
5847
|
-
"isStatic": true,
|
|
5848
|
-
"isProtected": false,
|
|
5849
|
-
"isAbstract": false
|
|
5850
|
-
}
|
|
5851
|
-
],
|
|
5852
|
-
"extendsTokenRange": {
|
|
5853
|
-
"startIndex": 1,
|
|
5854
|
-
"endIndex": 2
|
|
5855
|
-
},
|
|
5856
|
-
"implementsTokenRanges": []
|
|
5857
|
-
},
|
|
5858
|
-
{
|
|
5859
|
-
"kind": "Class",
|
|
5860
|
-
"canonicalReference": "@gcorevideo/player!Logo:class",
|
|
5861
|
-
"docComment": "",
|
|
5862
|
-
"excerptTokens": [
|
|
5863
|
-
{
|
|
5864
|
-
"kind": "Content",
|
|
5865
|
-
"text": "export declare class Logo extends "
|
|
5866
|
-
},
|
|
5867
|
-
{
|
|
5868
|
-
"kind": "Reference",
|
|
5869
|
-
"text": "UIContainerPlugin",
|
|
5870
|
-
"canonicalReference": "@gcorevideo/player!~UIContainerPlugin"
|
|
5871
|
-
},
|
|
5872
|
-
{
|
|
5873
|
-
"kind": "Content",
|
|
5874
|
-
"text": " "
|
|
5875
|
-
}
|
|
5876
|
-
],
|
|
5877
|
-
"fileUrlPath": "src/plugins/logo/Logo.ts",
|
|
5878
|
-
"releaseTag": "Public",
|
|
5879
|
-
"isAbstract": false,
|
|
5880
|
-
"name": "Logo",
|
|
5881
|
-
"preserveMemberOrder": false,
|
|
5882
|
-
"members": [
|
|
5883
|
-
{
|
|
5884
|
-
"kind": "Constructor",
|
|
5885
|
-
"canonicalReference": "@gcorevideo/player!Logo:constructor(1)",
|
|
5886
|
-
"docComment": "/**\n * Constructs a new instance of the `Logo` class\n */\n",
|
|
5887
|
-
"excerptTokens": [
|
|
5888
|
-
{
|
|
5889
|
-
"kind": "Content",
|
|
5890
|
-
"text": "constructor(container: "
|
|
5891
|
-
},
|
|
5892
|
-
{
|
|
5893
|
-
"kind": "Reference",
|
|
5894
|
-
"text": "Container",
|
|
5895
|
-
"canonicalReference": "@clappr/core!default:class"
|
|
5896
|
-
},
|
|
5897
|
-
{
|
|
5898
|
-
"kind": "Content",
|
|
5899
|
-
"text": ");"
|
|
5900
|
-
}
|
|
5901
|
-
],
|
|
5902
|
-
"releaseTag": "Public",
|
|
5903
|
-
"isProtected": false,
|
|
5904
|
-
"overloadIndex": 1,
|
|
5905
|
-
"parameters": [
|
|
5906
|
-
{
|
|
5907
|
-
"parameterName": "container",
|
|
5908
|
-
"parameterTypeTokenRange": {
|
|
5909
|
-
"startIndex": 1,
|
|
5910
|
-
"endIndex": 2
|
|
5911
|
-
},
|
|
5912
|
-
"isOptional": false
|
|
5913
|
-
}
|
|
5914
|
-
]
|
|
5915
|
-
},
|
|
5916
|
-
{
|
|
5917
|
-
"kind": "Property",
|
|
5918
|
-
"canonicalReference": "@gcorevideo/player!Logo#attributes:member",
|
|
5919
|
-
"docComment": "",
|
|
5920
|
-
"excerptTokens": [
|
|
5921
|
-
{
|
|
5922
|
-
"kind": "Content",
|
|
5923
|
-
"text": "get attributes(): "
|
|
5924
|
-
},
|
|
5925
|
-
{
|
|
5926
|
-
"kind": "Content",
|
|
5927
|
-
"text": "{\n class: string;\n 'data-logo': string;\n }"
|
|
5928
|
-
},
|
|
5929
|
-
{
|
|
5930
|
-
"kind": "Content",
|
|
5931
|
-
"text": ";"
|
|
5932
|
-
}
|
|
5933
|
-
],
|
|
5934
|
-
"isReadonly": true,
|
|
5935
|
-
"isOptional": false,
|
|
5936
|
-
"releaseTag": "Public",
|
|
5937
|
-
"name": "attributes",
|
|
5938
|
-
"propertyTypeTokenRange": {
|
|
5939
|
-
"startIndex": 1,
|
|
5940
|
-
"endIndex": 2
|
|
5941
|
-
},
|
|
5942
|
-
"isStatic": false,
|
|
5943
|
-
"isProtected": false,
|
|
5944
|
-
"isAbstract": false
|
|
5945
|
-
},
|
|
5946
|
-
{
|
|
5947
|
-
"kind": "Method",
|
|
5948
|
-
"canonicalReference": "@gcorevideo/player!Logo#bindEvents:member(1)",
|
|
5949
|
-
"docComment": "",
|
|
5950
|
-
"excerptTokens": [
|
|
5951
|
-
{
|
|
5952
|
-
"kind": "Content",
|
|
5953
|
-
"text": "bindEvents(): "
|
|
5954
|
-
},
|
|
5955
|
-
{
|
|
5956
|
-
"kind": "Content",
|
|
5957
|
-
"text": "void"
|
|
5958
|
-
},
|
|
5959
|
-
{
|
|
5960
|
-
"kind": "Content",
|
|
5961
|
-
"text": ";"
|
|
5962
|
-
}
|
|
5963
|
-
],
|
|
5964
|
-
"isStatic": false,
|
|
5965
|
-
"returnTypeTokenRange": {
|
|
5966
|
-
"startIndex": 1,
|
|
5967
|
-
"endIndex": 2
|
|
5968
|
-
},
|
|
5969
|
-
"releaseTag": "Public",
|
|
5970
|
-
"isProtected": false,
|
|
5971
|
-
"overloadIndex": 1,
|
|
5972
|
-
"parameters": [],
|
|
5973
|
-
"isOptional": false,
|
|
5974
|
-
"isAbstract": false,
|
|
5975
|
-
"name": "bindEvents"
|
|
5976
|
-
},
|
|
5977
|
-
{
|
|
5978
|
-
"kind": "Property",
|
|
5979
|
-
"canonicalReference": "@gcorevideo/player!Logo#name:member",
|
|
5980
|
-
"docComment": "",
|
|
5981
|
-
"excerptTokens": [
|
|
5982
|
-
{
|
|
5983
|
-
"kind": "Content",
|
|
5984
|
-
"text": "get name(): "
|
|
5985
|
-
},
|
|
5986
|
-
{
|
|
5987
|
-
"kind": "Content",
|
|
5988
|
-
"text": "string"
|
|
5989
|
-
},
|
|
5990
|
-
{
|
|
5991
|
-
"kind": "Content",
|
|
5992
|
-
"text": ";"
|
|
5993
|
-
}
|
|
5994
|
-
],
|
|
5995
|
-
"isReadonly": true,
|
|
5996
|
-
"isOptional": false,
|
|
5997
|
-
"releaseTag": "Public",
|
|
5998
|
-
"name": "name",
|
|
5999
|
-
"propertyTypeTokenRange": {
|
|
6000
|
-
"startIndex": 1,
|
|
6001
|
-
"endIndex": 2
|
|
6002
|
-
},
|
|
6003
|
-
"isStatic": false,
|
|
6004
|
-
"isProtected": false,
|
|
6005
|
-
"isAbstract": false
|
|
6006
|
-
},
|
|
6007
|
-
{
|
|
6008
|
-
"kind": "Method",
|
|
6009
|
-
"canonicalReference": "@gcorevideo/player!Logo#render:member(1)",
|
|
6010
|
-
"docComment": "",
|
|
6011
|
-
"excerptTokens": [
|
|
6012
|
-
{
|
|
6013
|
-
"kind": "Content",
|
|
6014
|
-
"text": "render(): "
|
|
6015
|
-
},
|
|
6016
|
-
{
|
|
6017
|
-
"kind": "Content",
|
|
6018
|
-
"text": "this"
|
|
6019
|
-
},
|
|
6020
|
-
{
|
|
6021
|
-
"kind": "Content",
|
|
6022
|
-
"text": ";"
|
|
6023
|
-
}
|
|
6024
|
-
],
|
|
6025
|
-
"isStatic": false,
|
|
6026
|
-
"returnTypeTokenRange": {
|
|
6027
|
-
"startIndex": 1,
|
|
6028
|
-
"endIndex": 2
|
|
6029
|
-
},
|
|
6030
|
-
"releaseTag": "Public",
|
|
6031
|
-
"isProtected": false,
|
|
6032
|
-
"overloadIndex": 1,
|
|
6033
|
-
"parameters": [],
|
|
6034
|
-
"isOptional": false,
|
|
6035
|
-
"isAbstract": false,
|
|
6036
|
-
"name": "render"
|
|
6037
|
-
},
|
|
6038
|
-
{
|
|
6039
|
-
"kind": "Method",
|
|
6040
|
-
"canonicalReference": "@gcorevideo/player!Logo#stopListening:member(1)",
|
|
6041
|
-
"docComment": "",
|
|
6042
|
-
"excerptTokens": [
|
|
6043
|
-
{
|
|
6044
|
-
"kind": "Content",
|
|
6045
|
-
"text": "stopListening(): "
|
|
6046
|
-
},
|
|
6047
|
-
{
|
|
6048
|
-
"kind": "Content",
|
|
6049
|
-
"text": "this"
|
|
6050
|
-
},
|
|
6051
|
-
{
|
|
6052
|
-
"kind": "Content",
|
|
6053
|
-
"text": ";"
|
|
6054
|
-
}
|
|
6055
|
-
],
|
|
6056
|
-
"isStatic": false,
|
|
6057
|
-
"returnTypeTokenRange": {
|
|
6058
|
-
"startIndex": 1,
|
|
6059
|
-
"endIndex": 2
|
|
6060
|
-
},
|
|
6061
|
-
"releaseTag": "Public",
|
|
6062
|
-
"isProtected": false,
|
|
6063
|
-
"overloadIndex": 1,
|
|
6064
|
-
"parameters": [],
|
|
6065
|
-
"isOptional": false,
|
|
6066
|
-
"isAbstract": false,
|
|
6067
|
-
"name": "stopListening"
|
|
6068
|
-
},
|
|
6069
|
-
{
|
|
6070
|
-
"kind": "Property",
|
|
6071
|
-
"canonicalReference": "@gcorevideo/player!Logo#supportedVersion:member",
|
|
6072
|
-
"docComment": "",
|
|
6073
|
-
"excerptTokens": [
|
|
6074
|
-
{
|
|
6075
|
-
"kind": "Content",
|
|
6076
|
-
"text": "get supportedVersion(): "
|
|
6077
|
-
},
|
|
6078
|
-
{
|
|
6079
|
-
"kind": "Content",
|
|
6080
|
-
"text": "{\n min: string;\n }"
|
|
6081
|
-
},
|
|
6082
|
-
{
|
|
6083
|
-
"kind": "Content",
|
|
6084
|
-
"text": ";"
|
|
6085
|
-
}
|
|
6086
|
-
],
|
|
6087
|
-
"isReadonly": true,
|
|
6088
|
-
"isOptional": false,
|
|
6089
|
-
"releaseTag": "Public",
|
|
6090
|
-
"name": "supportedVersion",
|
|
6091
|
-
"propertyTypeTokenRange": {
|
|
6092
|
-
"startIndex": 1,
|
|
6093
|
-
"endIndex": 2
|
|
6094
|
-
},
|
|
6095
|
-
"isStatic": false,
|
|
6096
|
-
"isProtected": false,
|
|
6097
|
-
"isAbstract": false
|
|
6098
|
-
},
|
|
6099
|
-
{
|
|
6100
|
-
"kind": "Property",
|
|
6101
|
-
"canonicalReference": "@gcorevideo/player!Logo#template:member",
|
|
6102
|
-
"docComment": "",
|
|
6103
|
-
"excerptTokens": [
|
|
6104
|
-
{
|
|
6105
|
-
"kind": "Content",
|
|
6106
|
-
"text": "get template(): "
|
|
6107
|
-
},
|
|
6108
|
-
{
|
|
6109
|
-
"kind": "Content",
|
|
6110
|
-
"text": "any"
|
|
6111
|
-
},
|
|
6112
|
-
{
|
|
6113
|
-
"kind": "Content",
|
|
6114
|
-
"text": ";"
|
|
6115
|
-
}
|
|
6116
|
-
],
|
|
6117
|
-
"isReadonly": true,
|
|
6118
|
-
"isOptional": false,
|
|
6119
|
-
"releaseTag": "Public",
|
|
6120
|
-
"name": "template",
|
|
6121
|
-
"propertyTypeTokenRange": {
|
|
6122
|
-
"startIndex": 1,
|
|
6123
|
-
"endIndex": 2
|
|
6124
|
-
},
|
|
6125
|
-
"isStatic": false,
|
|
6126
|
-
"isProtected": false,
|
|
6127
|
-
"isAbstract": false
|
|
6128
|
-
}
|
|
6129
|
-
],
|
|
6130
|
-
"extendsTokenRange": {
|
|
6131
|
-
"startIndex": 1,
|
|
6132
|
-
"endIndex": 2
|
|
6133
|
-
},
|
|
6134
|
-
"implementsTokenRanges": []
|
|
6135
|
-
},
|
|
6136
|
-
{
|
|
6137
|
-
"kind": "Class",
|
|
6138
|
-
"canonicalReference": "@gcorevideo/player!MediaControl:class",
|
|
6139
|
-
"docComment": "",
|
|
6140
|
-
"excerptTokens": [
|
|
6141
|
-
{
|
|
6142
|
-
"kind": "Content",
|
|
6143
|
-
"text": "export declare class MediaControl extends "
|
|
6144
|
-
},
|
|
6145
|
-
{
|
|
6146
|
-
"kind": "Reference",
|
|
6147
|
-
"text": "UICorePlugin",
|
|
6148
|
-
"canonicalReference": "@gcorevideo/player!~UICorePlugin"
|
|
6149
|
-
},
|
|
6150
|
-
{
|
|
6151
|
-
"kind": "Content",
|
|
6152
|
-
"text": " "
|
|
6153
|
-
}
|
|
6154
|
-
],
|
|
6155
|
-
"fileUrlPath": "src/plugins/media-control/MediaControl.ts",
|
|
6156
|
-
"releaseTag": "Public",
|
|
6157
|
-
"isAbstract": false,
|
|
6158
|
-
"name": "MediaControl",
|
|
6159
|
-
"preserveMemberOrder": false,
|
|
6160
|
-
"members": [
|
|
6161
|
-
{
|
|
6162
|
-
"kind": "Constructor",
|
|
6163
|
-
"canonicalReference": "@gcorevideo/player!MediaControl:constructor(1)",
|
|
6164
|
-
"docComment": "/**\n * Constructs a new instance of the `MediaControl` class\n */\n",
|
|
6165
|
-
"excerptTokens": [
|
|
6166
|
-
{
|
|
6167
|
-
"kind": "Content",
|
|
6168
|
-
"text": "constructor(core: "
|
|
6169
|
-
},
|
|
6170
|
-
{
|
|
6171
|
-
"kind": "Reference",
|
|
6172
|
-
"text": "PlayerClappr",
|
|
6173
|
-
"canonicalReference": "@clappr/core!default:class"
|
|
6174
|
-
},
|
|
6175
|
-
{
|
|
6176
|
-
"kind": "Content",
|
|
6177
|
-
"text": ");"
|
|
6178
|
-
}
|
|
6179
|
-
],
|
|
6180
|
-
"releaseTag": "Public",
|
|
6181
|
-
"isProtected": false,
|
|
6182
|
-
"overloadIndex": 1,
|
|
6183
|
-
"parameters": [
|
|
6184
|
-
{
|
|
6185
|
-
"parameterName": "core",
|
|
6186
|
-
"parameterTypeTokenRange": {
|
|
6187
|
-
"startIndex": 1,
|
|
6188
|
-
"endIndex": 2
|
|
6189
|
-
},
|
|
6190
|
-
"isOptional": false
|
|
6191
|
-
}
|
|
6192
|
-
]
|
|
6193
|
-
},
|
|
6194
|
-
{
|
|
6195
|
-
"kind": "Method",
|
|
6196
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#applyButtonStyle:member(1)",
|
|
6197
|
-
"docComment": "",
|
|
6198
|
-
"excerptTokens": [
|
|
6199
|
-
{
|
|
6200
|
-
"kind": "Content",
|
|
6201
|
-
"text": "applyButtonStyle(element: "
|
|
6202
|
-
},
|
|
6203
|
-
{
|
|
6204
|
-
"kind": "Reference",
|
|
6205
|
-
"text": "ZeptoResult",
|
|
6206
|
-
"canonicalReference": "@gcorevideo/player!~ZeptoResult:type"
|
|
6207
|
-
},
|
|
6208
|
-
{
|
|
6209
|
-
"kind": "Content",
|
|
6210
|
-
"text": " | undefined"
|
|
6211
|
-
},
|
|
6212
|
-
{
|
|
6213
|
-
"kind": "Content",
|
|
6214
|
-
"text": "): "
|
|
6215
|
-
},
|
|
6216
|
-
{
|
|
6217
|
-
"kind": "Content",
|
|
6218
|
-
"text": "void"
|
|
6219
|
-
},
|
|
6220
|
-
{
|
|
6221
|
-
"kind": "Content",
|
|
6222
|
-
"text": ";"
|
|
6223
|
-
}
|
|
6224
|
-
],
|
|
6225
|
-
"isStatic": false,
|
|
6226
|
-
"returnTypeTokenRange": {
|
|
6227
|
-
"startIndex": 4,
|
|
6228
|
-
"endIndex": 5
|
|
6229
|
-
},
|
|
6230
|
-
"releaseTag": "Public",
|
|
6231
|
-
"isProtected": false,
|
|
6232
|
-
"overloadIndex": 1,
|
|
6233
|
-
"parameters": [
|
|
6234
|
-
{
|
|
6235
|
-
"parameterName": "element",
|
|
6236
|
-
"parameterTypeTokenRange": {
|
|
6237
|
-
"startIndex": 1,
|
|
6238
|
-
"endIndex": 3
|
|
6239
|
-
},
|
|
6240
|
-
"isOptional": false
|
|
6241
|
-
}
|
|
6242
|
-
],
|
|
6243
|
-
"isOptional": false,
|
|
6244
|
-
"isAbstract": false,
|
|
6245
|
-
"name": "applyButtonStyle"
|
|
6246
|
-
},
|
|
6247
|
-
{
|
|
6248
|
-
"kind": "Property",
|
|
6249
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#attributes:member",
|
|
6250
|
-
"docComment": "",
|
|
6251
|
-
"excerptTokens": [
|
|
6252
|
-
{
|
|
6253
|
-
"kind": "Content",
|
|
6254
|
-
"text": "get attributes(): "
|
|
6255
|
-
},
|
|
6256
|
-
{
|
|
6257
|
-
"kind": "Content",
|
|
6258
|
-
"text": "{\n class: string;\n 'data-media-control-skin-1': string;\n }"
|
|
6259
|
-
},
|
|
6260
|
-
{
|
|
6261
|
-
"kind": "Content",
|
|
6262
|
-
"text": ";"
|
|
6263
|
-
}
|
|
6264
|
-
],
|
|
6265
|
-
"isReadonly": true,
|
|
6266
|
-
"isOptional": false,
|
|
6267
|
-
"releaseTag": "Public",
|
|
6268
|
-
"name": "attributes",
|
|
6269
|
-
"propertyTypeTokenRange": {
|
|
6270
|
-
"startIndex": 1,
|
|
6271
|
-
"endIndex": 2
|
|
6272
|
-
},
|
|
6273
|
-
"isStatic": false,
|
|
6274
|
-
"isProtected": false,
|
|
6275
|
-
"isAbstract": false
|
|
6276
|
-
},
|
|
6277
|
-
{
|
|
6278
|
-
"kind": "Property",
|
|
6279
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#bigPlayButton:member",
|
|
6280
|
-
"docComment": "",
|
|
6281
|
-
"excerptTokens": [
|
|
6282
|
-
{
|
|
6283
|
-
"kind": "Content",
|
|
6284
|
-
"text": "get bigPlayButton(): "
|
|
6285
|
-
},
|
|
6286
|
-
{
|
|
6287
|
-
"kind": "Content",
|
|
6288
|
-
"text": "any"
|
|
6289
|
-
},
|
|
6290
|
-
{
|
|
6291
|
-
"kind": "Content",
|
|
6292
|
-
"text": ";"
|
|
6293
|
-
}
|
|
6294
|
-
],
|
|
6295
|
-
"isReadonly": true,
|
|
6296
|
-
"isOptional": false,
|
|
6297
|
-
"releaseTag": "Public",
|
|
6298
|
-
"name": "bigPlayButton",
|
|
6299
|
-
"propertyTypeTokenRange": {
|
|
6300
|
-
"startIndex": 1,
|
|
6301
|
-
"endIndex": 2
|
|
6302
|
-
},
|
|
6303
|
-
"isStatic": false,
|
|
6304
|
-
"isProtected": false,
|
|
6305
|
-
"isAbstract": false
|
|
6306
|
-
},
|
|
6307
|
-
{
|
|
6308
|
-
"kind": "Method",
|
|
6309
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#bindContainerEvents:member(1)",
|
|
6310
|
-
"docComment": "",
|
|
6311
|
-
"excerptTokens": [
|
|
6312
|
-
{
|
|
6313
|
-
"kind": "Content",
|
|
6314
|
-
"text": "bindContainerEvents(): "
|
|
6315
|
-
},
|
|
6316
|
-
{
|
|
6317
|
-
"kind": "Content",
|
|
6318
|
-
"text": "void"
|
|
6319
|
-
},
|
|
6320
|
-
{
|
|
6321
|
-
"kind": "Content",
|
|
6322
|
-
"text": ";"
|
|
6323
|
-
}
|
|
6324
|
-
],
|
|
6325
|
-
"isStatic": false,
|
|
6326
|
-
"returnTypeTokenRange": {
|
|
6327
|
-
"startIndex": 1,
|
|
6328
|
-
"endIndex": 2
|
|
6329
|
-
},
|
|
6330
|
-
"releaseTag": "Public",
|
|
6331
|
-
"isProtected": false,
|
|
6332
|
-
"overloadIndex": 1,
|
|
6333
|
-
"parameters": [],
|
|
6334
|
-
"isOptional": false,
|
|
6335
|
-
"isAbstract": false,
|
|
6336
|
-
"name": "bindContainerEvents"
|
|
6337
|
-
},
|
|
6338
|
-
{
|
|
6339
|
-
"kind": "Method",
|
|
6340
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#bindEvents:member(1)",
|
|
6341
|
-
"docComment": "",
|
|
6342
|
-
"excerptTokens": [
|
|
6343
|
-
{
|
|
6344
|
-
"kind": "Content",
|
|
6345
|
-
"text": "bindEvents(): "
|
|
6346
|
-
},
|
|
6347
|
-
{
|
|
6348
|
-
"kind": "Content",
|
|
6349
|
-
"text": "void"
|
|
6350
|
-
},
|
|
6351
|
-
{
|
|
6352
|
-
"kind": "Content",
|
|
6353
|
-
"text": ";"
|
|
6354
|
-
}
|
|
6355
|
-
],
|
|
6356
|
-
"isStatic": false,
|
|
6357
|
-
"returnTypeTokenRange": {
|
|
6358
|
-
"startIndex": 1,
|
|
6359
|
-
"endIndex": 2
|
|
6360
|
-
},
|
|
6361
|
-
"releaseTag": "Public",
|
|
6362
|
-
"isProtected": false,
|
|
6363
|
-
"overloadIndex": 1,
|
|
6364
|
-
"parameters": [],
|
|
6365
|
-
"isOptional": false,
|
|
6366
|
-
"isAbstract": false,
|
|
6367
|
-
"name": "bindEvents"
|
|
6368
|
-
},
|
|
6369
|
-
{
|
|
6370
|
-
"kind": "Method",
|
|
6371
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#bindKeyAndShow:member(1)",
|
|
6372
|
-
"docComment": "",
|
|
6373
|
-
"excerptTokens": [
|
|
6374
|
-
{
|
|
6375
|
-
"kind": "Content",
|
|
6376
|
-
"text": "bindKeyAndShow(key: "
|
|
6377
|
-
},
|
|
6378
|
-
{
|
|
6379
|
-
"kind": "Content",
|
|
6380
|
-
"text": "string"
|
|
6381
|
-
},
|
|
6382
|
-
{
|
|
6383
|
-
"kind": "Content",
|
|
6384
|
-
"text": ", callback: "
|
|
6385
|
-
},
|
|
6386
|
-
{
|
|
6387
|
-
"kind": "Content",
|
|
6388
|
-
"text": "() => boolean | undefined"
|
|
6389
|
-
},
|
|
6390
|
-
{
|
|
6391
|
-
"kind": "Content",
|
|
6392
|
-
"text": "): "
|
|
6393
|
-
},
|
|
6394
|
-
{
|
|
6395
|
-
"kind": "Content",
|
|
6396
|
-
"text": "void"
|
|
6397
|
-
},
|
|
6398
|
-
{
|
|
6399
|
-
"kind": "Content",
|
|
6400
|
-
"text": ";"
|
|
6401
|
-
}
|
|
6402
|
-
],
|
|
6403
|
-
"isStatic": false,
|
|
6404
|
-
"returnTypeTokenRange": {
|
|
6405
|
-
"startIndex": 5,
|
|
6406
|
-
"endIndex": 6
|
|
6407
|
-
},
|
|
6408
|
-
"releaseTag": "Public",
|
|
6409
|
-
"isProtected": false,
|
|
6410
|
-
"overloadIndex": 1,
|
|
6411
|
-
"parameters": [
|
|
6412
|
-
{
|
|
6413
|
-
"parameterName": "key",
|
|
6414
|
-
"parameterTypeTokenRange": {
|
|
6415
|
-
"startIndex": 1,
|
|
6416
|
-
"endIndex": 2
|
|
6417
|
-
},
|
|
6418
|
-
"isOptional": false
|
|
6419
|
-
},
|
|
6420
|
-
{
|
|
6421
|
-
"parameterName": "callback",
|
|
6422
|
-
"parameterTypeTokenRange": {
|
|
6423
|
-
"startIndex": 3,
|
|
6424
|
-
"endIndex": 4
|
|
6425
|
-
},
|
|
6426
|
-
"isOptional": false
|
|
6427
|
-
}
|
|
6428
|
-
],
|
|
6429
|
-
"isOptional": false,
|
|
6430
|
-
"isAbstract": false,
|
|
6431
|
-
"name": "bindKeyAndShow"
|
|
6432
|
-
},
|
|
6433
|
-
{
|
|
6434
|
-
"kind": "Method",
|
|
6435
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#bindKeyEvents:member(1)",
|
|
6436
|
-
"docComment": "",
|
|
6437
|
-
"excerptTokens": [
|
|
6438
|
-
{
|
|
6439
|
-
"kind": "Content",
|
|
6440
|
-
"text": "bindKeyEvents(): "
|
|
6441
|
-
},
|
|
6442
|
-
{
|
|
6443
|
-
"kind": "Content",
|
|
6444
|
-
"text": "void"
|
|
6445
|
-
},
|
|
6446
|
-
{
|
|
6447
|
-
"kind": "Content",
|
|
6448
|
-
"text": ";"
|
|
6449
|
-
}
|
|
6450
|
-
],
|
|
6451
|
-
"isStatic": false,
|
|
6452
|
-
"returnTypeTokenRange": {
|
|
6453
|
-
"startIndex": 1,
|
|
6454
|
-
"endIndex": 2
|
|
6455
|
-
},
|
|
6456
|
-
"releaseTag": "Public",
|
|
6457
|
-
"isProtected": false,
|
|
6458
|
-
"overloadIndex": 1,
|
|
6459
|
-
"parameters": [],
|
|
6460
|
-
"isOptional": false,
|
|
6461
|
-
"isAbstract": false,
|
|
6462
|
-
"name": "bindKeyEvents"
|
|
6463
|
-
},
|
|
6464
|
-
{
|
|
6465
|
-
"kind": "Method",
|
|
6466
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#configure:member(1)",
|
|
6467
|
-
"docComment": "",
|
|
6468
|
-
"excerptTokens": [
|
|
6469
|
-
{
|
|
6470
|
-
"kind": "Content",
|
|
6471
|
-
"text": "configure(): "
|
|
6472
|
-
},
|
|
6473
|
-
{
|
|
6474
|
-
"kind": "Content",
|
|
6475
|
-
"text": "void"
|
|
6476
|
-
},
|
|
6477
|
-
{
|
|
6478
|
-
"kind": "Content",
|
|
6479
|
-
"text": ";"
|
|
6480
|
-
}
|
|
6481
|
-
],
|
|
6482
|
-
"isStatic": false,
|
|
6483
|
-
"returnTypeTokenRange": {
|
|
6484
|
-
"startIndex": 1,
|
|
6485
|
-
"endIndex": 2
|
|
6486
|
-
},
|
|
6487
|
-
"releaseTag": "Public",
|
|
6488
|
-
"isProtected": false,
|
|
6489
|
-
"overloadIndex": 1,
|
|
6490
|
-
"parameters": [],
|
|
6491
|
-
"isOptional": false,
|
|
6492
|
-
"isAbstract": false,
|
|
6493
|
-
"name": "configure"
|
|
6494
|
-
},
|
|
6495
|
-
{
|
|
6496
|
-
"kind": "Property",
|
|
6497
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#container:member",
|
|
6498
|
-
"docComment": "",
|
|
6499
|
-
"excerptTokens": [
|
|
6500
|
-
{
|
|
6501
|
-
"kind": "Content",
|
|
6502
|
-
"text": "get container(): "
|
|
6503
|
-
},
|
|
6504
|
-
{
|
|
6505
|
-
"kind": "Content",
|
|
6506
|
-
"text": "any"
|
|
6507
|
-
},
|
|
6508
|
-
{
|
|
6509
|
-
"kind": "Content",
|
|
6510
|
-
"text": ";"
|
|
6511
|
-
}
|
|
6512
|
-
],
|
|
6513
|
-
"isReadonly": true,
|
|
6514
|
-
"isOptional": false,
|
|
6515
|
-
"releaseTag": "Public",
|
|
6516
|
-
"name": "container",
|
|
6517
|
-
"propertyTypeTokenRange": {
|
|
6518
|
-
"startIndex": 1,
|
|
6519
|
-
"endIndex": 2
|
|
6520
|
-
},
|
|
6521
|
-
"isStatic": false,
|
|
6522
|
-
"isProtected": false,
|
|
6523
|
-
"isAbstract": false
|
|
6524
|
-
},
|
|
6525
|
-
{
|
|
6526
|
-
"kind": "Method",
|
|
6527
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#createCachedElements:member(1)",
|
|
6528
|
-
"docComment": "",
|
|
6529
|
-
"excerptTokens": [
|
|
6530
|
-
{
|
|
6531
|
-
"kind": "Content",
|
|
6532
|
-
"text": "createCachedElements(): "
|
|
6533
|
-
},
|
|
6534
|
-
{
|
|
6535
|
-
"kind": "Content",
|
|
6536
|
-
"text": "void"
|
|
6537
|
-
},
|
|
6538
|
-
{
|
|
6539
|
-
"kind": "Content",
|
|
6540
|
-
"text": ";"
|
|
6541
|
-
}
|
|
6542
|
-
],
|
|
6543
|
-
"isStatic": false,
|
|
6544
|
-
"returnTypeTokenRange": {
|
|
6545
|
-
"startIndex": 1,
|
|
6546
|
-
"endIndex": 2
|
|
6547
|
-
},
|
|
6548
|
-
"releaseTag": "Public",
|
|
6549
|
-
"isProtected": false,
|
|
6550
|
-
"overloadIndex": 1,
|
|
6551
|
-
"parameters": [],
|
|
6552
|
-
"isOptional": false,
|
|
6553
|
-
"isAbstract": false,
|
|
6554
|
-
"name": "createCachedElements"
|
|
6555
|
-
},
|
|
6556
|
-
{
|
|
6557
|
-
"kind": "Method",
|
|
6558
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#destroy:member(1)",
|
|
6559
|
-
"docComment": "",
|
|
6560
|
-
"excerptTokens": [
|
|
6561
|
-
{
|
|
6562
|
-
"kind": "Content",
|
|
6563
|
-
"text": "destroy(): "
|
|
6564
|
-
},
|
|
6565
|
-
{
|
|
6566
|
-
"kind": "Content",
|
|
6567
|
-
"text": "import(\"@clappr/core\")."
|
|
6568
|
-
},
|
|
6569
|
-
{
|
|
6570
|
-
"kind": "Reference",
|
|
6571
|
-
"text": "UIObject",
|
|
6572
|
-
"canonicalReference": "@clappr/core!default:class"
|
|
6573
|
-
},
|
|
6574
|
-
{
|
|
6575
|
-
"kind": "Content",
|
|
6576
|
-
"text": ";"
|
|
6577
|
-
}
|
|
6578
|
-
],
|
|
6579
|
-
"isStatic": false,
|
|
6580
|
-
"returnTypeTokenRange": {
|
|
6581
|
-
"startIndex": 1,
|
|
6582
|
-
"endIndex": 3
|
|
6583
|
-
},
|
|
6584
|
-
"releaseTag": "Public",
|
|
6585
|
-
"isProtected": false,
|
|
6586
|
-
"overloadIndex": 1,
|
|
6587
|
-
"parameters": [],
|
|
6588
|
-
"isOptional": false,
|
|
6589
|
-
"isAbstract": false,
|
|
6590
|
-
"name": "destroy"
|
|
6591
|
-
},
|
|
6592
|
-
{
|
|
6593
|
-
"kind": "Method",
|
|
6594
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#disable:member(1)",
|
|
6595
|
-
"docComment": "",
|
|
6596
|
-
"excerptTokens": [
|
|
6597
|
-
{
|
|
6598
|
-
"kind": "Content",
|
|
6599
|
-
"text": "disable(): "
|
|
6600
|
-
},
|
|
6601
|
-
{
|
|
6602
|
-
"kind": "Content",
|
|
6603
|
-
"text": "void"
|
|
6604
|
-
},
|
|
6605
|
-
{
|
|
6606
|
-
"kind": "Content",
|
|
6607
|
-
"text": ";"
|
|
6608
|
-
}
|
|
6609
|
-
],
|
|
6610
|
-
"isStatic": false,
|
|
6611
|
-
"returnTypeTokenRange": {
|
|
6612
|
-
"startIndex": 1,
|
|
6613
|
-
"endIndex": 2
|
|
6614
|
-
},
|
|
6615
|
-
"releaseTag": "Public",
|
|
6616
|
-
"isProtected": false,
|
|
6617
|
-
"overloadIndex": 1,
|
|
6618
|
-
"parameters": [],
|
|
6619
|
-
"isOptional": false,
|
|
6620
|
-
"isAbstract": false,
|
|
6621
|
-
"name": "disable"
|
|
6622
|
-
},
|
|
6623
|
-
{
|
|
6624
|
-
"kind": "Property",
|
|
6625
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#disabled:member",
|
|
6626
|
-
"docComment": "",
|
|
6627
|
-
"excerptTokens": [
|
|
6628
|
-
{
|
|
6629
|
-
"kind": "Content",
|
|
6630
|
-
"text": "get disabled(): "
|
|
6631
|
-
},
|
|
6632
|
-
{
|
|
6633
|
-
"kind": "Content",
|
|
6634
|
-
"text": "any"
|
|
6635
|
-
},
|
|
6636
|
-
{
|
|
6637
|
-
"kind": "Content",
|
|
6638
|
-
"text": ";"
|
|
6639
|
-
}
|
|
6640
|
-
],
|
|
6641
|
-
"isReadonly": true,
|
|
6642
|
-
"isOptional": false,
|
|
6643
|
-
"releaseTag": "Public",
|
|
6644
|
-
"name": "disabled",
|
|
6645
|
-
"propertyTypeTokenRange": {
|
|
6646
|
-
"startIndex": 1,
|
|
6647
|
-
"endIndex": 2
|
|
6648
|
-
},
|
|
6649
|
-
"isStatic": false,
|
|
6650
|
-
"isProtected": false,
|
|
6651
|
-
"isAbstract": false
|
|
6652
|
-
},
|
|
6653
|
-
{
|
|
6654
|
-
"kind": "Method",
|
|
6655
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#disabledControlButton:member(1)",
|
|
6656
|
-
"docComment": "",
|
|
6657
|
-
"excerptTokens": [
|
|
6658
|
-
{
|
|
6659
|
-
"kind": "Content",
|
|
6660
|
-
"text": "disabledControlButton(): "
|
|
6661
|
-
},
|
|
6662
|
-
{
|
|
6663
|
-
"kind": "Content",
|
|
6664
|
-
"text": "void"
|
|
6665
|
-
},
|
|
6666
|
-
{
|
|
6667
|
-
"kind": "Content",
|
|
6668
|
-
"text": ";"
|
|
6669
|
-
}
|
|
6670
|
-
],
|
|
6671
|
-
"isStatic": false,
|
|
6672
|
-
"returnTypeTokenRange": {
|
|
6673
|
-
"startIndex": 1,
|
|
6674
|
-
"endIndex": 2
|
|
6675
|
-
},
|
|
6676
|
-
"releaseTag": "Public",
|
|
6677
|
-
"isProtected": false,
|
|
6678
|
-
"overloadIndex": 1,
|
|
6679
|
-
"parameters": [],
|
|
6680
|
-
"isOptional": false,
|
|
6681
|
-
"isAbstract": false,
|
|
6682
|
-
"name": "disabledControlButton"
|
|
6683
|
-
},
|
|
6684
|
-
{
|
|
6685
|
-
"kind": "Method",
|
|
6686
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#drawDurationAndPosition:member(1)",
|
|
6687
|
-
"docComment": "",
|
|
6688
|
-
"excerptTokens": [
|
|
6689
|
-
{
|
|
6690
|
-
"kind": "Content",
|
|
6691
|
-
"text": "drawDurationAndPosition(): "
|
|
6692
|
-
},
|
|
6693
|
-
{
|
|
6694
|
-
"kind": "Content",
|
|
6695
|
-
"text": "void"
|
|
6696
|
-
},
|
|
6697
|
-
{
|
|
6698
|
-
"kind": "Content",
|
|
6699
|
-
"text": ";"
|
|
6700
|
-
}
|
|
6701
|
-
],
|
|
6702
|
-
"isStatic": false,
|
|
6703
|
-
"returnTypeTokenRange": {
|
|
6704
|
-
"startIndex": 1,
|
|
6705
|
-
"endIndex": 2
|
|
6706
|
-
},
|
|
6707
|
-
"releaseTag": "Public",
|
|
6708
|
-
"isProtected": false,
|
|
6709
|
-
"overloadIndex": 1,
|
|
6710
|
-
"parameters": [],
|
|
6711
|
-
"isOptional": false,
|
|
6712
|
-
"isAbstract": false,
|
|
6713
|
-
"name": "drawDurationAndPosition"
|
|
6714
|
-
},
|
|
6715
|
-
{
|
|
6716
|
-
"kind": "Method",
|
|
6717
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#enable:member(1)",
|
|
6718
|
-
"docComment": "",
|
|
6719
|
-
"excerptTokens": [
|
|
6720
|
-
{
|
|
6721
|
-
"kind": "Content",
|
|
6722
|
-
"text": "enable(): "
|
|
6723
|
-
},
|
|
6724
|
-
{
|
|
6725
|
-
"kind": "Content",
|
|
6726
|
-
"text": "void"
|
|
6727
|
-
},
|
|
6728
|
-
{
|
|
6729
|
-
"kind": "Content",
|
|
6730
|
-
"text": ";"
|
|
6731
|
-
}
|
|
6732
|
-
],
|
|
6733
|
-
"isStatic": false,
|
|
6734
|
-
"returnTypeTokenRange": {
|
|
6735
|
-
"startIndex": 1,
|
|
6736
|
-
"endIndex": 2
|
|
6737
|
-
},
|
|
6738
|
-
"releaseTag": "Public",
|
|
6739
|
-
"isProtected": false,
|
|
6740
|
-
"overloadIndex": 1,
|
|
6741
|
-
"parameters": [],
|
|
6742
|
-
"isOptional": false,
|
|
6743
|
-
"isAbstract": false,
|
|
6744
|
-
"name": "enable"
|
|
6745
|
-
},
|
|
6746
|
-
{
|
|
6747
|
-
"kind": "Method",
|
|
6748
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#enableControlButton:member(1)",
|
|
6749
|
-
"docComment": "",
|
|
6750
|
-
"excerptTokens": [
|
|
6751
|
-
{
|
|
6752
|
-
"kind": "Content",
|
|
6753
|
-
"text": "enableControlButton(): "
|
|
6754
|
-
},
|
|
6755
|
-
{
|
|
6756
|
-
"kind": "Content",
|
|
6757
|
-
"text": "void"
|
|
6758
|
-
},
|
|
6759
|
-
{
|
|
6760
|
-
"kind": "Content",
|
|
6761
|
-
"text": ";"
|
|
6762
|
-
}
|
|
6763
|
-
],
|
|
6764
|
-
"isStatic": false,
|
|
6765
|
-
"returnTypeTokenRange": {
|
|
6766
|
-
"startIndex": 1,
|
|
6767
|
-
"endIndex": 2
|
|
6768
|
-
},
|
|
6769
|
-
"releaseTag": "Public",
|
|
6770
|
-
"isProtected": false,
|
|
6771
|
-
"overloadIndex": 1,
|
|
6772
|
-
"parameters": [],
|
|
6773
|
-
"isOptional": false,
|
|
6774
|
-
"isAbstract": false,
|
|
6775
|
-
"name": "enableControlButton"
|
|
6776
|
-
},
|
|
6777
|
-
{
|
|
6778
|
-
"kind": "Method",
|
|
6779
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#ended:member(1)",
|
|
6780
|
-
"docComment": "",
|
|
6781
|
-
"excerptTokens": [
|
|
6782
|
-
{
|
|
6783
|
-
"kind": "Content",
|
|
6784
|
-
"text": "ended(): "
|
|
6785
|
-
},
|
|
6786
|
-
{
|
|
6787
|
-
"kind": "Content",
|
|
6788
|
-
"text": "void"
|
|
6789
|
-
},
|
|
6790
|
-
{
|
|
6791
|
-
"kind": "Content",
|
|
6792
|
-
"text": ";"
|
|
6793
|
-
}
|
|
6794
|
-
],
|
|
6795
|
-
"isStatic": false,
|
|
6796
|
-
"returnTypeTokenRange": {
|
|
6797
|
-
"startIndex": 1,
|
|
6798
|
-
"endIndex": 2
|
|
6799
|
-
},
|
|
6800
|
-
"releaseTag": "Public",
|
|
6801
|
-
"isProtected": false,
|
|
6802
|
-
"overloadIndex": 1,
|
|
6803
|
-
"parameters": [],
|
|
6804
|
-
"isOptional": false,
|
|
6805
|
-
"isAbstract": false,
|
|
6806
|
-
"name": "ended"
|
|
6807
|
-
},
|
|
6808
|
-
{
|
|
6809
|
-
"kind": "Property",
|
|
6810
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#events:member",
|
|
6811
|
-
"docComment": "",
|
|
6812
|
-
"excerptTokens": [
|
|
6813
|
-
{
|
|
6814
|
-
"kind": "Content",
|
|
6815
|
-
"text": "get events(): "
|
|
6816
|
-
},
|
|
6817
|
-
{
|
|
6818
|
-
"kind": "Content",
|
|
6819
|
-
"text": "{\n 'click [data-play]': string;\n 'click [data-pause]': string;\n 'click [data-playpause]': string;\n 'click [data-stop]': string;\n 'click [data-playstop]': string;\n 'click [data-fullscreen]': string;\n 'click .bar-container[data-seekbar]': string;\n 'click .bar-container[data-volume]': string;\n 'click .drawer-icon[data-volume]': string;\n 'mouseenter .drawer-container[data-volume]': string;\n 'mouseleave .drawer-container[data-volume]': string;\n 'mousedown .bar-container[data-volume]': string;\n 'touchstart .bar-container[data-volume]': string;\n 'mousemove .bar-container[data-volume]': string;\n 'touchmove .bar-container[data-volume]': string;\n 'mousedown .bar-scrubber[data-seekbar]': string;\n 'mousedown .bar-container[data-seekbar]': string;\n 'touchstart .bar-scrubber[data-seekbar]': string;\n 'touchstart .bar-container[data-seekbar]': string;\n 'mousemove .bar-container[data-seekbar]': string;\n 'touchmove .bar-container[data-seekbar]': string;\n 'mouseleave .bar-container[data-seekbar]': string;\n 'touchend .bar-container[data-seekbar]': string;\n 'mouseenter .media-control-layer[data-controls]': string;\n 'mouseleave .media-control-layer[data-controls]': string;\n }"
|
|
6820
|
-
},
|
|
6821
|
-
{
|
|
6822
|
-
"kind": "Content",
|
|
6823
|
-
"text": ";"
|
|
6824
|
-
}
|
|
6825
|
-
],
|
|
6826
|
-
"isReadonly": true,
|
|
6827
|
-
"isOptional": false,
|
|
6828
|
-
"releaseTag": "Public",
|
|
6829
|
-
"name": "events",
|
|
6830
|
-
"propertyTypeTokenRange": {
|
|
6831
|
-
"startIndex": 1,
|
|
6832
|
-
"endIndex": 2
|
|
6833
|
-
},
|
|
6834
|
-
"isStatic": false,
|
|
6835
|
-
"isProtected": false,
|
|
6836
|
-
"isAbstract": false
|
|
6837
|
-
},
|
|
6838
|
-
{
|
|
6839
|
-
"kind": "Method",
|
|
6840
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#getElement:member(1)",
|
|
6841
|
-
"docComment": "",
|
|
6842
|
-
"excerptTokens": [
|
|
6843
|
-
{
|
|
6844
|
-
"kind": "Content",
|
|
6845
|
-
"text": "getElement(name: "
|
|
6846
|
-
},
|
|
6847
|
-
{
|
|
6848
|
-
"kind": "Reference",
|
|
6849
|
-
"text": "MediaControlElement",
|
|
6850
|
-
"canonicalReference": "@gcorevideo/player!~MediaControlElement:type"
|
|
6851
|
-
},
|
|
6852
|
-
{
|
|
6853
|
-
"kind": "Content",
|
|
6854
|
-
"text": "): "
|
|
6855
|
-
},
|
|
6856
|
-
{
|
|
6857
|
-
"kind": "Reference",
|
|
6858
|
-
"text": "ZeptoResult",
|
|
6859
|
-
"canonicalReference": "@gcorevideo/player!~ZeptoResult:type"
|
|
6860
|
-
},
|
|
6861
|
-
{
|
|
6862
|
-
"kind": "Content",
|
|
6863
|
-
"text": " | null"
|
|
6864
|
-
},
|
|
6865
|
-
{
|
|
6866
|
-
"kind": "Content",
|
|
6867
|
-
"text": ";"
|
|
6868
|
-
}
|
|
6869
|
-
],
|
|
6870
|
-
"isStatic": false,
|
|
6871
|
-
"returnTypeTokenRange": {
|
|
6872
|
-
"startIndex": 3,
|
|
6873
|
-
"endIndex": 5
|
|
6874
|
-
},
|
|
6875
|
-
"releaseTag": "Public",
|
|
6876
|
-
"isProtected": false,
|
|
6877
|
-
"overloadIndex": 1,
|
|
6878
|
-
"parameters": [
|
|
6879
|
-
{
|
|
6880
|
-
"parameterName": "name",
|
|
6881
|
-
"parameterTypeTokenRange": {
|
|
6882
|
-
"startIndex": 1,
|
|
6883
|
-
"endIndex": 2
|
|
6884
|
-
},
|
|
6885
|
-
"isOptional": false
|
|
6886
|
-
}
|
|
6887
|
-
],
|
|
6888
|
-
"isOptional": false,
|
|
6889
|
-
"isAbstract": false,
|
|
6890
|
-
"name": "getElement"
|
|
6891
|
-
},
|
|
6892
|
-
{
|
|
6893
|
-
"kind": "Method",
|
|
6894
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#getExternalInterface:member(1)",
|
|
6895
|
-
"docComment": "",
|
|
6896
|
-
"excerptTokens": [
|
|
6897
|
-
{
|
|
6898
|
-
"kind": "Content",
|
|
6899
|
-
"text": "getExternalInterface(): "
|
|
6900
|
-
},
|
|
6901
|
-
{
|
|
6902
|
-
"kind": "Content",
|
|
6903
|
-
"text": "{\n setVolume: (value: number, isInitialVolume?: boolean) => void;\n getVolume: () => any;\n }"
|
|
6904
|
-
},
|
|
6905
|
-
{
|
|
6906
|
-
"kind": "Content",
|
|
6907
|
-
"text": ";"
|
|
6908
|
-
}
|
|
6909
|
-
],
|
|
6910
|
-
"isStatic": false,
|
|
6911
|
-
"returnTypeTokenRange": {
|
|
6912
|
-
"startIndex": 1,
|
|
6913
|
-
"endIndex": 2
|
|
6914
|
-
},
|
|
6915
|
-
"releaseTag": "Public",
|
|
6916
|
-
"isProtected": false,
|
|
6917
|
-
"overloadIndex": 1,
|
|
6918
|
-
"parameters": [],
|
|
6919
|
-
"isOptional": false,
|
|
6920
|
-
"isAbstract": false,
|
|
6921
|
-
"name": "getExternalInterface"
|
|
6922
|
-
},
|
|
6923
|
-
{
|
|
6924
|
-
"kind": "Method",
|
|
6925
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#getSettings:member(1)",
|
|
6926
|
-
"docComment": "",
|
|
6927
|
-
"excerptTokens": [
|
|
6928
|
-
{
|
|
6929
|
-
"kind": "Content",
|
|
6930
|
-
"text": "getSettings(): "
|
|
6931
|
-
},
|
|
6932
|
-
{
|
|
6933
|
-
"kind": "Content",
|
|
6934
|
-
"text": "any"
|
|
6935
|
-
},
|
|
6936
|
-
{
|
|
6937
|
-
"kind": "Content",
|
|
6938
|
-
"text": ";"
|
|
6939
|
-
}
|
|
6940
|
-
],
|
|
6941
|
-
"isStatic": false,
|
|
6942
|
-
"returnTypeTokenRange": {
|
|
6943
|
-
"startIndex": 1,
|
|
6944
|
-
"endIndex": 2
|
|
6945
|
-
},
|
|
6946
|
-
"releaseTag": "Public",
|
|
6947
|
-
"isProtected": false,
|
|
6948
|
-
"overloadIndex": 1,
|
|
6949
|
-
"parameters": [],
|
|
6950
|
-
"isOptional": false,
|
|
6951
|
-
"isAbstract": false,
|
|
6952
|
-
"name": "getSettings"
|
|
6953
|
-
},
|
|
6954
|
-
{
|
|
6955
|
-
"kind": "Method",
|
|
6956
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#getVolumeFromUIEvent:member(1)",
|
|
6957
|
-
"docComment": "",
|
|
6958
|
-
"excerptTokens": [
|
|
6959
|
-
{
|
|
6960
|
-
"kind": "Content",
|
|
6961
|
-
"text": "getVolumeFromUIEvent(event: "
|
|
6962
|
-
},
|
|
6963
|
-
{
|
|
6964
|
-
"kind": "Reference",
|
|
6965
|
-
"text": "MouseEvent",
|
|
6966
|
-
"canonicalReference": "!MouseEvent:interface"
|
|
6967
|
-
},
|
|
6968
|
-
{
|
|
6969
|
-
"kind": "Content",
|
|
6970
|
-
"text": " | "
|
|
6971
|
-
},
|
|
6972
|
-
{
|
|
6973
|
-
"kind": "Reference",
|
|
6974
|
-
"text": "TouchEvent",
|
|
6975
|
-
"canonicalReference": "!TouchEvent:interface"
|
|
6976
|
-
},
|
|
6977
|
-
{
|
|
6978
|
-
"kind": "Content",
|
|
6979
|
-
"text": "): "
|
|
6980
|
-
},
|
|
6981
|
-
{
|
|
6982
|
-
"kind": "Content",
|
|
6983
|
-
"text": "number"
|
|
6984
|
-
},
|
|
6985
|
-
{
|
|
6986
|
-
"kind": "Content",
|
|
6987
|
-
"text": ";"
|
|
6988
|
-
}
|
|
6989
|
-
],
|
|
6990
|
-
"isStatic": false,
|
|
6991
|
-
"returnTypeTokenRange": {
|
|
6992
|
-
"startIndex": 5,
|
|
6993
|
-
"endIndex": 6
|
|
6994
|
-
},
|
|
6995
|
-
"releaseTag": "Public",
|
|
6996
|
-
"isProtected": false,
|
|
6997
|
-
"overloadIndex": 1,
|
|
6998
|
-
"parameters": [
|
|
6999
|
-
{
|
|
7000
|
-
"parameterName": "event",
|
|
7001
|
-
"parameterTypeTokenRange": {
|
|
7002
|
-
"startIndex": 1,
|
|
7003
|
-
"endIndex": 4
|
|
7004
|
-
},
|
|
7005
|
-
"isOptional": false
|
|
7006
|
-
}
|
|
7007
|
-
],
|
|
7008
|
-
"isOptional": false,
|
|
7009
|
-
"isAbstract": false,
|
|
7010
|
-
"name": "getVolumeFromUIEvent"
|
|
7011
|
-
},
|
|
7012
|
-
{
|
|
7013
|
-
"kind": "Method",
|
|
7014
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#hide:member(1)",
|
|
7015
|
-
"docComment": "",
|
|
7016
|
-
"excerptTokens": [
|
|
7017
|
-
{
|
|
7018
|
-
"kind": "Content",
|
|
7019
|
-
"text": "hide(delay?: "
|
|
7020
|
-
},
|
|
7021
|
-
{
|
|
7022
|
-
"kind": "Content",
|
|
7023
|
-
"text": "number"
|
|
7024
|
-
},
|
|
7025
|
-
{
|
|
7026
|
-
"kind": "Content",
|
|
7027
|
-
"text": "): "
|
|
7028
|
-
},
|
|
7029
|
-
{
|
|
7030
|
-
"kind": "Content",
|
|
7031
|
-
"text": "void"
|
|
7032
|
-
},
|
|
7033
|
-
{
|
|
7034
|
-
"kind": "Content",
|
|
7035
|
-
"text": ";"
|
|
7036
|
-
}
|
|
7037
|
-
],
|
|
7038
|
-
"isStatic": false,
|
|
7039
|
-
"returnTypeTokenRange": {
|
|
7040
|
-
"startIndex": 3,
|
|
7041
|
-
"endIndex": 4
|
|
7042
|
-
},
|
|
7043
|
-
"releaseTag": "Public",
|
|
7044
|
-
"isProtected": false,
|
|
7045
|
-
"overloadIndex": 1,
|
|
7046
|
-
"parameters": [
|
|
7047
|
-
{
|
|
7048
|
-
"parameterName": "delay",
|
|
7049
|
-
"parameterTypeTokenRange": {
|
|
7050
|
-
"startIndex": 1,
|
|
7051
|
-
"endIndex": 2
|
|
7052
|
-
},
|
|
7053
|
-
"isOptional": true
|
|
7054
|
-
}
|
|
7055
|
-
],
|
|
7056
|
-
"isOptional": false,
|
|
7057
|
-
"isAbstract": false,
|
|
7058
|
-
"name": "hide"
|
|
7059
|
-
},
|
|
7060
|
-
{
|
|
7061
|
-
"kind": "Method",
|
|
7062
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#hideControllAds:member(1)",
|
|
7063
|
-
"docComment": "",
|
|
7064
|
-
"excerptTokens": [
|
|
7065
|
-
{
|
|
7066
|
-
"kind": "Content",
|
|
7067
|
-
"text": "hideControllAds(): "
|
|
7068
|
-
},
|
|
7069
|
-
{
|
|
7070
|
-
"kind": "Content",
|
|
7071
|
-
"text": "void"
|
|
7072
|
-
},
|
|
7073
|
-
{
|
|
7074
|
-
"kind": "Content",
|
|
7075
|
-
"text": ";"
|
|
7076
|
-
}
|
|
7077
|
-
],
|
|
7078
|
-
"isStatic": false,
|
|
7079
|
-
"returnTypeTokenRange": {
|
|
7080
|
-
"startIndex": 1,
|
|
7081
|
-
"endIndex": 2
|
|
7082
|
-
},
|
|
7083
|
-
"releaseTag": "Public",
|
|
7084
|
-
"isProtected": false,
|
|
7085
|
-
"overloadIndex": 1,
|
|
7086
|
-
"parameters": [],
|
|
7087
|
-
"isOptional": false,
|
|
7088
|
-
"isAbstract": false,
|
|
7089
|
-
"name": "hideControllAds"
|
|
7090
|
-
},
|
|
7091
|
-
{
|
|
7092
|
-
"kind": "Method",
|
|
7093
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#hideVolumeBar:member(1)",
|
|
7094
|
-
"docComment": "",
|
|
7095
|
-
"excerptTokens": [
|
|
7096
|
-
{
|
|
7097
|
-
"kind": "Content",
|
|
7098
|
-
"text": "hideVolumeBar(timeout?: "
|
|
7099
|
-
},
|
|
7100
|
-
{
|
|
7101
|
-
"kind": "Content",
|
|
7102
|
-
"text": "number"
|
|
7103
|
-
},
|
|
7104
|
-
{
|
|
7105
|
-
"kind": "Content",
|
|
7106
|
-
"text": "): "
|
|
7107
|
-
},
|
|
7108
|
-
{
|
|
7109
|
-
"kind": "Content",
|
|
7110
|
-
"text": "void"
|
|
7111
|
-
},
|
|
7112
|
-
{
|
|
7113
|
-
"kind": "Content",
|
|
7114
|
-
"text": ";"
|
|
7115
|
-
}
|
|
7116
|
-
],
|
|
7117
|
-
"isStatic": false,
|
|
7118
|
-
"returnTypeTokenRange": {
|
|
7119
|
-
"startIndex": 3,
|
|
7120
|
-
"endIndex": 4
|
|
7121
|
-
},
|
|
7122
|
-
"releaseTag": "Public",
|
|
7123
|
-
"isProtected": false,
|
|
7124
|
-
"overloadIndex": 1,
|
|
7125
|
-
"parameters": [
|
|
7126
|
-
{
|
|
7127
|
-
"parameterName": "timeout",
|
|
7128
|
-
"parameterTypeTokenRange": {
|
|
7129
|
-
"startIndex": 1,
|
|
7130
|
-
"endIndex": 2
|
|
7131
|
-
},
|
|
7132
|
-
"isOptional": true
|
|
7133
|
-
}
|
|
7134
|
-
],
|
|
7135
|
-
"isOptional": false,
|
|
7136
|
-
"isAbstract": false,
|
|
7137
|
-
"name": "hideVolumeBar"
|
|
7138
|
-
},
|
|
7139
|
-
{
|
|
7140
|
-
"kind": "Method",
|
|
7141
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#highDefinitionUpdate:member(1)",
|
|
7142
|
-
"docComment": "",
|
|
7143
|
-
"excerptTokens": [
|
|
7144
|
-
{
|
|
7145
|
-
"kind": "Content",
|
|
7146
|
-
"text": "highDefinitionUpdate(isHD: "
|
|
7147
|
-
},
|
|
7148
|
-
{
|
|
7149
|
-
"kind": "Content",
|
|
7150
|
-
"text": "boolean"
|
|
7151
|
-
},
|
|
7152
|
-
{
|
|
7153
|
-
"kind": "Content",
|
|
7154
|
-
"text": "): "
|
|
7155
|
-
},
|
|
7156
|
-
{
|
|
7157
|
-
"kind": "Content",
|
|
7158
|
-
"text": "void"
|
|
7159
|
-
},
|
|
7160
|
-
{
|
|
7161
|
-
"kind": "Content",
|
|
7162
|
-
"text": ";"
|
|
7163
|
-
}
|
|
7164
|
-
],
|
|
7165
|
-
"isStatic": false,
|
|
7166
|
-
"returnTypeTokenRange": {
|
|
7167
|
-
"startIndex": 3,
|
|
7168
|
-
"endIndex": 4
|
|
7169
|
-
},
|
|
7170
|
-
"releaseTag": "Public",
|
|
7171
|
-
"isProtected": false,
|
|
7172
|
-
"overloadIndex": 1,
|
|
7173
|
-
"parameters": [
|
|
7174
|
-
{
|
|
7175
|
-
"parameterName": "isHD",
|
|
7176
|
-
"parameterTypeTokenRange": {
|
|
7177
|
-
"startIndex": 1,
|
|
7178
|
-
"endIndex": 2
|
|
7179
|
-
},
|
|
7180
|
-
"isOptional": false
|
|
7181
|
-
}
|
|
7182
|
-
],
|
|
7183
|
-
"isOptional": false,
|
|
7184
|
-
"isAbstract": false,
|
|
7185
|
-
"name": "highDefinitionUpdate"
|
|
7186
|
-
},
|
|
7187
|
-
{
|
|
7188
|
-
"kind": "Method",
|
|
7189
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#initializeIcons:member(1)",
|
|
7190
|
-
"docComment": "",
|
|
7191
|
-
"excerptTokens": [
|
|
7192
|
-
{
|
|
7193
|
-
"kind": "Content",
|
|
7194
|
-
"text": "initializeIcons(): "
|
|
7195
|
-
},
|
|
7196
|
-
{
|
|
7197
|
-
"kind": "Content",
|
|
7198
|
-
"text": "void"
|
|
7199
|
-
},
|
|
7200
|
-
{
|
|
7201
|
-
"kind": "Content",
|
|
7202
|
-
"text": ";"
|
|
7203
|
-
}
|
|
7204
|
-
],
|
|
7205
|
-
"isStatic": false,
|
|
7206
|
-
"returnTypeTokenRange": {
|
|
7207
|
-
"startIndex": 1,
|
|
7208
|
-
"endIndex": 2
|
|
7209
|
-
},
|
|
7210
|
-
"releaseTag": "Public",
|
|
7211
|
-
"isProtected": false,
|
|
7212
|
-
"overloadIndex": 1,
|
|
7213
|
-
"parameters": [],
|
|
7214
|
-
"isOptional": false,
|
|
7215
|
-
"isAbstract": false,
|
|
7216
|
-
"name": "initializeIcons"
|
|
7217
|
-
},
|
|
7218
|
-
{
|
|
7219
|
-
"kind": "Method",
|
|
7220
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#isSeekEnabledForHtml5Playback:member(1)",
|
|
7221
|
-
"docComment": "",
|
|
7222
|
-
"excerptTokens": [
|
|
7223
|
-
{
|
|
7224
|
-
"kind": "Content",
|
|
7225
|
-
"text": "isSeekEnabledForHtml5Playback(): "
|
|
7226
|
-
},
|
|
7227
|
-
{
|
|
7228
|
-
"kind": "Content",
|
|
7229
|
-
"text": "any"
|
|
7230
|
-
},
|
|
7231
|
-
{
|
|
7232
|
-
"kind": "Content",
|
|
7233
|
-
"text": ";"
|
|
7234
|
-
}
|
|
7235
|
-
],
|
|
7236
|
-
"isStatic": false,
|
|
7237
|
-
"returnTypeTokenRange": {
|
|
7238
|
-
"startIndex": 1,
|
|
7239
|
-
"endIndex": 2
|
|
7240
|
-
},
|
|
7241
|
-
"releaseTag": "Public",
|
|
7242
|
-
"isProtected": false,
|
|
7243
|
-
"overloadIndex": 1,
|
|
7244
|
-
"parameters": [],
|
|
7245
|
-
"isOptional": false,
|
|
7246
|
-
"isAbstract": false,
|
|
7247
|
-
"name": "isSeekEnabledForHtml5Playback"
|
|
7248
|
-
},
|
|
7249
|
-
{
|
|
7250
|
-
"kind": "Method",
|
|
7251
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#isVisible:member(1)",
|
|
7252
|
-
"docComment": "",
|
|
7253
|
-
"excerptTokens": [
|
|
7254
|
-
{
|
|
7255
|
-
"kind": "Content",
|
|
7256
|
-
"text": "isVisible(): "
|
|
7257
|
-
},
|
|
7258
|
-
{
|
|
7259
|
-
"kind": "Content",
|
|
7260
|
-
"text": "boolean"
|
|
7261
|
-
},
|
|
7262
|
-
{
|
|
7263
|
-
"kind": "Content",
|
|
7264
|
-
"text": ";"
|
|
7265
|
-
}
|
|
7266
|
-
],
|
|
7267
|
-
"isStatic": false,
|
|
7268
|
-
"returnTypeTokenRange": {
|
|
7269
|
-
"startIndex": 1,
|
|
7270
|
-
"endIndex": 2
|
|
7271
|
-
},
|
|
7272
|
-
"releaseTag": "Public",
|
|
7273
|
-
"isProtected": false,
|
|
7274
|
-
"overloadIndex": 1,
|
|
7275
|
-
"parameters": [],
|
|
7276
|
-
"isOptional": false,
|
|
7277
|
-
"isAbstract": false,
|
|
7278
|
-
"name": "isVisible"
|
|
7279
|
-
},
|
|
7280
|
-
{
|
|
7281
|
-
"kind": "Property",
|
|
7282
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#muted:member",
|
|
7283
|
-
"docComment": "",
|
|
7284
|
-
"excerptTokens": [
|
|
7285
|
-
{
|
|
7286
|
-
"kind": "Content",
|
|
7287
|
-
"text": "get muted(): "
|
|
7288
|
-
},
|
|
7289
|
-
{
|
|
7290
|
-
"kind": "Content",
|
|
7291
|
-
"text": "boolean"
|
|
5355
|
+
"text": "{\n min: string;\n }"
|
|
7292
5356
|
},
|
|
7293
5357
|
{
|
|
7294
5358
|
"kind": "Content",
|
|
@@ -7297,8 +5361,8 @@
|
|
|
7297
5361
|
],
|
|
7298
5362
|
"isReadonly": true,
|
|
7299
5363
|
"isOptional": false,
|
|
7300
|
-
"releaseTag": "
|
|
7301
|
-
"name": "
|
|
5364
|
+
"releaseTag": "Beta",
|
|
5365
|
+
"name": "supportedVersion",
|
|
7302
5366
|
"propertyTypeTokenRange": {
|
|
7303
5367
|
"startIndex": 1,
|
|
7304
5368
|
"endIndex": 2
|
|
@@ -7309,12 +5373,12 @@
|
|
|
7309
5373
|
},
|
|
7310
5374
|
{
|
|
7311
5375
|
"kind": "Property",
|
|
7312
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5376
|
+
"canonicalReference": "@gcorevideo/player!LevelSelector.version:member",
|
|
7313
5377
|
"docComment": "",
|
|
7314
5378
|
"excerptTokens": [
|
|
7315
5379
|
{
|
|
7316
5380
|
"kind": "Content",
|
|
7317
|
-
"text": "get
|
|
5381
|
+
"text": "static get version(): "
|
|
7318
5382
|
},
|
|
7319
5383
|
{
|
|
7320
5384
|
"kind": "Content",
|
|
@@ -7327,263 +5391,93 @@
|
|
|
7327
5391
|
],
|
|
7328
5392
|
"isReadonly": true,
|
|
7329
5393
|
"isOptional": false,
|
|
7330
|
-
"releaseTag": "
|
|
7331
|
-
"name": "
|
|
5394
|
+
"releaseTag": "Beta",
|
|
5395
|
+
"name": "version",
|
|
7332
5396
|
"propertyTypeTokenRange": {
|
|
7333
5397
|
"startIndex": 1,
|
|
7334
5398
|
"endIndex": 2
|
|
7335
5399
|
},
|
|
7336
|
-
"isStatic":
|
|
5400
|
+
"isStatic": true,
|
|
7337
5401
|
"isProtected": false,
|
|
7338
5402
|
"isAbstract": false
|
|
7339
|
-
}
|
|
5403
|
+
}
|
|
5404
|
+
],
|
|
5405
|
+
"extendsTokenRange": {
|
|
5406
|
+
"startIndex": 1,
|
|
5407
|
+
"endIndex": 2
|
|
5408
|
+
},
|
|
5409
|
+
"implementsTokenRanges": []
|
|
5410
|
+
},
|
|
5411
|
+
{
|
|
5412
|
+
"kind": "Class",
|
|
5413
|
+
"canonicalReference": "@gcorevideo/player!Logo:class",
|
|
5414
|
+
"docComment": "",
|
|
5415
|
+
"excerptTokens": [
|
|
7340
5416
|
{
|
|
7341
|
-
"kind": "
|
|
7342
|
-
"
|
|
7343
|
-
"docComment": "",
|
|
7344
|
-
"excerptTokens": [
|
|
7345
|
-
{
|
|
7346
|
-
"kind": "Content",
|
|
7347
|
-
"text": "onActiveContainerChanged(): "
|
|
7348
|
-
},
|
|
7349
|
-
{
|
|
7350
|
-
"kind": "Content",
|
|
7351
|
-
"text": "void"
|
|
7352
|
-
},
|
|
7353
|
-
{
|
|
7354
|
-
"kind": "Content",
|
|
7355
|
-
"text": ";"
|
|
7356
|
-
}
|
|
7357
|
-
],
|
|
7358
|
-
"isStatic": false,
|
|
7359
|
-
"returnTypeTokenRange": {
|
|
7360
|
-
"startIndex": 1,
|
|
7361
|
-
"endIndex": 2
|
|
7362
|
-
},
|
|
7363
|
-
"releaseTag": "Public",
|
|
7364
|
-
"isProtected": false,
|
|
7365
|
-
"overloadIndex": 1,
|
|
7366
|
-
"parameters": [],
|
|
7367
|
-
"isOptional": false,
|
|
7368
|
-
"isAbstract": false,
|
|
7369
|
-
"name": "onActiveContainerChanged"
|
|
5417
|
+
"kind": "Content",
|
|
5418
|
+
"text": "export declare class Logo extends "
|
|
7370
5419
|
},
|
|
7371
5420
|
{
|
|
7372
|
-
"kind": "
|
|
7373
|
-
"
|
|
7374
|
-
"
|
|
7375
|
-
"excerptTokens": [
|
|
7376
|
-
{
|
|
7377
|
-
"kind": "Content",
|
|
7378
|
-
"text": "onFinishAd(): "
|
|
7379
|
-
},
|
|
7380
|
-
{
|
|
7381
|
-
"kind": "Content",
|
|
7382
|
-
"text": "void"
|
|
7383
|
-
},
|
|
7384
|
-
{
|
|
7385
|
-
"kind": "Content",
|
|
7386
|
-
"text": ";"
|
|
7387
|
-
}
|
|
7388
|
-
],
|
|
7389
|
-
"isStatic": false,
|
|
7390
|
-
"returnTypeTokenRange": {
|
|
7391
|
-
"startIndex": 1,
|
|
7392
|
-
"endIndex": 2
|
|
7393
|
-
},
|
|
7394
|
-
"releaseTag": "Public",
|
|
7395
|
-
"isProtected": false,
|
|
7396
|
-
"overloadIndex": 1,
|
|
7397
|
-
"parameters": [],
|
|
7398
|
-
"isOptional": false,
|
|
7399
|
-
"isAbstract": false,
|
|
7400
|
-
"name": "onFinishAd"
|
|
5421
|
+
"kind": "Reference",
|
|
5422
|
+
"text": "UIContainerPlugin",
|
|
5423
|
+
"canonicalReference": "@gcorevideo/player!~UIContainerPlugin"
|
|
7401
5424
|
},
|
|
7402
5425
|
{
|
|
7403
|
-
"kind": "
|
|
7404
|
-
"
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
|
|
7413
|
-
"text": "void"
|
|
7414
|
-
},
|
|
7415
|
-
{
|
|
7416
|
-
"kind": "Content",
|
|
7417
|
-
"text": ";"
|
|
7418
|
-
}
|
|
7419
|
-
],
|
|
7420
|
-
"isStatic": false,
|
|
7421
|
-
"returnTypeTokenRange": {
|
|
7422
|
-
"startIndex": 1,
|
|
7423
|
-
"endIndex": 2
|
|
7424
|
-
},
|
|
7425
|
-
"releaseTag": "Public",
|
|
7426
|
-
"isProtected": false,
|
|
7427
|
-
"overloadIndex": 1,
|
|
7428
|
-
"parameters": [],
|
|
7429
|
-
"isOptional": false,
|
|
7430
|
-
"isAbstract": false,
|
|
7431
|
-
"name": "onStartAd"
|
|
7432
|
-
},
|
|
5426
|
+
"kind": "Content",
|
|
5427
|
+
"text": " "
|
|
5428
|
+
}
|
|
5429
|
+
],
|
|
5430
|
+
"fileUrlPath": "src/plugins/logo/Logo.ts",
|
|
5431
|
+
"releaseTag": "Public",
|
|
5432
|
+
"isAbstract": false,
|
|
5433
|
+
"name": "Logo",
|
|
5434
|
+
"preserveMemberOrder": false,
|
|
5435
|
+
"members": [
|
|
7433
5436
|
{
|
|
7434
|
-
"kind": "
|
|
7435
|
-
"canonicalReference": "@gcorevideo/player!
|
|
7436
|
-
"docComment": "",
|
|
5437
|
+
"kind": "Constructor",
|
|
5438
|
+
"canonicalReference": "@gcorevideo/player!Logo:constructor(1)",
|
|
5439
|
+
"docComment": "/**\n * Constructs a new instance of the `Logo` class\n */\n",
|
|
7437
5440
|
"excerptTokens": [
|
|
7438
5441
|
{
|
|
7439
5442
|
"kind": "Content",
|
|
7440
|
-
"text": "
|
|
5443
|
+
"text": "constructor(container: "
|
|
7441
5444
|
},
|
|
7442
5445
|
{
|
|
7443
5446
|
"kind": "Reference",
|
|
7444
|
-
"text": "
|
|
7445
|
-
"canonicalReference": "@
|
|
7446
|
-
},
|
|
7447
|
-
{
|
|
7448
|
-
"kind": "Content",
|
|
7449
|
-
"text": "): "
|
|
7450
|
-
},
|
|
7451
|
-
{
|
|
7452
|
-
"kind": "Content",
|
|
7453
|
-
"text": "void"
|
|
5447
|
+
"text": "Container",
|
|
5448
|
+
"canonicalReference": "@clappr/core!default:class"
|
|
7454
5449
|
},
|
|
7455
5450
|
{
|
|
7456
5451
|
"kind": "Content",
|
|
7457
|
-
"text": ";"
|
|
5452
|
+
"text": ");"
|
|
7458
5453
|
}
|
|
7459
5454
|
],
|
|
7460
|
-
"isStatic": false,
|
|
7461
|
-
"returnTypeTokenRange": {
|
|
7462
|
-
"startIndex": 3,
|
|
7463
|
-
"endIndex": 4
|
|
7464
|
-
},
|
|
7465
5455
|
"releaseTag": "Public",
|
|
7466
5456
|
"isProtected": false,
|
|
7467
5457
|
"overloadIndex": 1,
|
|
7468
5458
|
"parameters": [
|
|
7469
5459
|
{
|
|
7470
|
-
"parameterName": "
|
|
5460
|
+
"parameterName": "container",
|
|
7471
5461
|
"parameterTypeTokenRange": {
|
|
7472
5462
|
"startIndex": 1,
|
|
7473
5463
|
"endIndex": 2
|
|
7474
5464
|
},
|
|
7475
5465
|
"isOptional": false
|
|
7476
5466
|
}
|
|
7477
|
-
]
|
|
7478
|
-
"isOptional": false,
|
|
7479
|
-
"isAbstract": false,
|
|
7480
|
-
"name": "onTimeUpdate"
|
|
7481
|
-
},
|
|
7482
|
-
{
|
|
7483
|
-
"kind": "Method",
|
|
7484
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#parseColors:member(1)",
|
|
7485
|
-
"docComment": "",
|
|
7486
|
-
"excerptTokens": [
|
|
7487
|
-
{
|
|
7488
|
-
"kind": "Content",
|
|
7489
|
-
"text": "parseColors(): "
|
|
7490
|
-
},
|
|
7491
|
-
{
|
|
7492
|
-
"kind": "Content",
|
|
7493
|
-
"text": "void"
|
|
7494
|
-
},
|
|
7495
|
-
{
|
|
7496
|
-
"kind": "Content",
|
|
7497
|
-
"text": ";"
|
|
7498
|
-
}
|
|
7499
|
-
],
|
|
7500
|
-
"isStatic": false,
|
|
7501
|
-
"returnTypeTokenRange": {
|
|
7502
|
-
"startIndex": 1,
|
|
7503
|
-
"endIndex": 2
|
|
7504
|
-
},
|
|
7505
|
-
"releaseTag": "Public",
|
|
7506
|
-
"isProtected": false,
|
|
7507
|
-
"overloadIndex": 1,
|
|
7508
|
-
"parameters": [],
|
|
7509
|
-
"isOptional": false,
|
|
7510
|
-
"isAbstract": false,
|
|
7511
|
-
"name": "parseColors"
|
|
7512
|
-
},
|
|
7513
|
-
{
|
|
7514
|
-
"kind": "Method",
|
|
7515
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#pause:member(1)",
|
|
7516
|
-
"docComment": "",
|
|
7517
|
-
"excerptTokens": [
|
|
7518
|
-
{
|
|
7519
|
-
"kind": "Content",
|
|
7520
|
-
"text": "pause(): "
|
|
7521
|
-
},
|
|
7522
|
-
{
|
|
7523
|
-
"kind": "Content",
|
|
7524
|
-
"text": "void"
|
|
7525
|
-
},
|
|
7526
|
-
{
|
|
7527
|
-
"kind": "Content",
|
|
7528
|
-
"text": ";"
|
|
7529
|
-
}
|
|
7530
|
-
],
|
|
7531
|
-
"isStatic": false,
|
|
7532
|
-
"returnTypeTokenRange": {
|
|
7533
|
-
"startIndex": 1,
|
|
7534
|
-
"endIndex": 2
|
|
7535
|
-
},
|
|
7536
|
-
"releaseTag": "Public",
|
|
7537
|
-
"isProtected": false,
|
|
7538
|
-
"overloadIndex": 1,
|
|
7539
|
-
"parameters": [],
|
|
7540
|
-
"isOptional": false,
|
|
7541
|
-
"isAbstract": false,
|
|
7542
|
-
"name": "pause"
|
|
7543
|
-
},
|
|
7544
|
-
{
|
|
7545
|
-
"kind": "Method",
|
|
7546
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#play:member(1)",
|
|
7547
|
-
"docComment": "",
|
|
7548
|
-
"excerptTokens": [
|
|
7549
|
-
{
|
|
7550
|
-
"kind": "Content",
|
|
7551
|
-
"text": "play(): "
|
|
7552
|
-
},
|
|
7553
|
-
{
|
|
7554
|
-
"kind": "Content",
|
|
7555
|
-
"text": "void"
|
|
7556
|
-
},
|
|
7557
|
-
{
|
|
7558
|
-
"kind": "Content",
|
|
7559
|
-
"text": ";"
|
|
7560
|
-
}
|
|
7561
|
-
],
|
|
7562
|
-
"isStatic": false,
|
|
7563
|
-
"returnTypeTokenRange": {
|
|
7564
|
-
"startIndex": 1,
|
|
7565
|
-
"endIndex": 2
|
|
7566
|
-
},
|
|
7567
|
-
"releaseTag": "Public",
|
|
7568
|
-
"isProtected": false,
|
|
7569
|
-
"overloadIndex": 1,
|
|
7570
|
-
"parameters": [],
|
|
7571
|
-
"isOptional": false,
|
|
7572
|
-
"isAbstract": false,
|
|
7573
|
-
"name": "play"
|
|
5467
|
+
]
|
|
7574
5468
|
},
|
|
7575
5469
|
{
|
|
7576
5470
|
"kind": "Property",
|
|
7577
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5471
|
+
"canonicalReference": "@gcorevideo/player!Logo#attributes:member",
|
|
7578
5472
|
"docComment": "",
|
|
7579
5473
|
"excerptTokens": [
|
|
7580
5474
|
{
|
|
7581
5475
|
"kind": "Content",
|
|
7582
|
-
"text": "get
|
|
5476
|
+
"text": "get attributes(): "
|
|
7583
5477
|
},
|
|
7584
5478
|
{
|
|
7585
5479
|
"kind": "Content",
|
|
7586
|
-
"text": "
|
|
5480
|
+
"text": "{\n class: string;\n 'data-logo': string;\n }"
|
|
7587
5481
|
},
|
|
7588
5482
|
{
|
|
7589
5483
|
"kind": "Content",
|
|
@@ -7593,7 +5487,7 @@
|
|
|
7593
5487
|
"isReadonly": true,
|
|
7594
5488
|
"isOptional": false,
|
|
7595
5489
|
"releaseTag": "Public",
|
|
7596
|
-
"name": "
|
|
5490
|
+
"name": "attributes",
|
|
7597
5491
|
"propertyTypeTokenRange": {
|
|
7598
5492
|
"startIndex": 1,
|
|
7599
5493
|
"endIndex": 2
|
|
@@ -7604,16 +5498,16 @@
|
|
|
7604
5498
|
},
|
|
7605
5499
|
{
|
|
7606
5500
|
"kind": "Method",
|
|
7607
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5501
|
+
"canonicalReference": "@gcorevideo/player!Logo#bindEvents:member(1)",
|
|
7608
5502
|
"docComment": "",
|
|
7609
5503
|
"excerptTokens": [
|
|
7610
5504
|
{
|
|
7611
5505
|
"kind": "Content",
|
|
7612
|
-
"text": "
|
|
5506
|
+
"text": "bindEvents(): "
|
|
7613
5507
|
},
|
|
7614
5508
|
{
|
|
7615
5509
|
"kind": "Content",
|
|
7616
|
-
"text": "
|
|
5510
|
+
"text": "void"
|
|
7617
5511
|
},
|
|
7618
5512
|
{
|
|
7619
5513
|
"kind": "Content",
|
|
@@ -7631,51 +5525,50 @@
|
|
|
7631
5525
|
"parameters": [],
|
|
7632
5526
|
"isOptional": false,
|
|
7633
5527
|
"isAbstract": false,
|
|
7634
|
-
"name": "
|
|
5528
|
+
"name": "bindEvents"
|
|
7635
5529
|
},
|
|
7636
5530
|
{
|
|
7637
|
-
"kind": "
|
|
7638
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5531
|
+
"kind": "Property",
|
|
5532
|
+
"canonicalReference": "@gcorevideo/player!Logo#name:member",
|
|
7639
5533
|
"docComment": "",
|
|
7640
5534
|
"excerptTokens": [
|
|
7641
5535
|
{
|
|
7642
5536
|
"kind": "Content",
|
|
7643
|
-
"text": "
|
|
5537
|
+
"text": "get name(): "
|
|
7644
5538
|
},
|
|
7645
5539
|
{
|
|
7646
5540
|
"kind": "Content",
|
|
7647
|
-
"text": "
|
|
5541
|
+
"text": "string"
|
|
7648
5542
|
},
|
|
7649
5543
|
{
|
|
7650
5544
|
"kind": "Content",
|
|
7651
5545
|
"text": ";"
|
|
7652
5546
|
}
|
|
7653
5547
|
],
|
|
7654
|
-
"
|
|
7655
|
-
"
|
|
5548
|
+
"isReadonly": true,
|
|
5549
|
+
"isOptional": false,
|
|
5550
|
+
"releaseTag": "Public",
|
|
5551
|
+
"name": "name",
|
|
5552
|
+
"propertyTypeTokenRange": {
|
|
7656
5553
|
"startIndex": 1,
|
|
7657
5554
|
"endIndex": 2
|
|
7658
5555
|
},
|
|
7659
|
-
"
|
|
5556
|
+
"isStatic": false,
|
|
7660
5557
|
"isProtected": false,
|
|
7661
|
-
"
|
|
7662
|
-
"parameters": [],
|
|
7663
|
-
"isOptional": false,
|
|
7664
|
-
"isAbstract": false,
|
|
7665
|
-
"name": "renderSeekBar"
|
|
5558
|
+
"isAbstract": false
|
|
7666
5559
|
},
|
|
7667
5560
|
{
|
|
7668
5561
|
"kind": "Method",
|
|
7669
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5562
|
+
"canonicalReference": "@gcorevideo/player!Logo#render:member(1)",
|
|
7670
5563
|
"docComment": "",
|
|
7671
5564
|
"excerptTokens": [
|
|
7672
5565
|
{
|
|
7673
5566
|
"kind": "Content",
|
|
7674
|
-
"text": "
|
|
5567
|
+
"text": "render(): "
|
|
7675
5568
|
},
|
|
7676
5569
|
{
|
|
7677
5570
|
"kind": "Content",
|
|
7678
|
-
"text": "
|
|
5571
|
+
"text": "this"
|
|
7679
5572
|
},
|
|
7680
5573
|
{
|
|
7681
5574
|
"kind": "Content",
|
|
@@ -7693,20 +5586,20 @@
|
|
|
7693
5586
|
"parameters": [],
|
|
7694
5587
|
"isOptional": false,
|
|
7695
5588
|
"isAbstract": false,
|
|
7696
|
-
"name": "
|
|
5589
|
+
"name": "render"
|
|
7697
5590
|
},
|
|
7698
5591
|
{
|
|
7699
5592
|
"kind": "Method",
|
|
7700
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5593
|
+
"canonicalReference": "@gcorevideo/player!Logo#stopListening:member(1)",
|
|
7701
5594
|
"docComment": "",
|
|
7702
5595
|
"excerptTokens": [
|
|
7703
5596
|
{
|
|
7704
5597
|
"kind": "Content",
|
|
7705
|
-
"text": "
|
|
5598
|
+
"text": "stopListening(): "
|
|
7706
5599
|
},
|
|
7707
5600
|
{
|
|
7708
5601
|
"kind": "Content",
|
|
7709
|
-
"text": "
|
|
5602
|
+
"text": "this"
|
|
7710
5603
|
},
|
|
7711
5604
|
{
|
|
7712
5605
|
"kind": "Content",
|
|
@@ -7724,192 +5617,171 @@
|
|
|
7724
5617
|
"parameters": [],
|
|
7725
5618
|
"isOptional": false,
|
|
7726
5619
|
"isAbstract": false,
|
|
7727
|
-
"name": "
|
|
5620
|
+
"name": "stopListening"
|
|
7728
5621
|
},
|
|
7729
5622
|
{
|
|
7730
|
-
"kind": "
|
|
7731
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5623
|
+
"kind": "Property",
|
|
5624
|
+
"canonicalReference": "@gcorevideo/player!Logo#supportedVersion:member",
|
|
7732
5625
|
"docComment": "",
|
|
7733
5626
|
"excerptTokens": [
|
|
7734
5627
|
{
|
|
7735
5628
|
"kind": "Content",
|
|
7736
|
-
"text": "
|
|
5629
|
+
"text": "get supportedVersion(): "
|
|
7737
5630
|
},
|
|
7738
5631
|
{
|
|
7739
5632
|
"kind": "Content",
|
|
7740
|
-
"text": "
|
|
5633
|
+
"text": "{\n min: string;\n }"
|
|
7741
5634
|
},
|
|
7742
5635
|
{
|
|
7743
5636
|
"kind": "Content",
|
|
7744
5637
|
"text": ";"
|
|
7745
5638
|
}
|
|
7746
5639
|
],
|
|
7747
|
-
"
|
|
7748
|
-
"
|
|
5640
|
+
"isReadonly": true,
|
|
5641
|
+
"isOptional": false,
|
|
5642
|
+
"releaseTag": "Public",
|
|
5643
|
+
"name": "supportedVersion",
|
|
5644
|
+
"propertyTypeTokenRange": {
|
|
7749
5645
|
"startIndex": 1,
|
|
7750
5646
|
"endIndex": 2
|
|
7751
5647
|
},
|
|
7752
|
-
"
|
|
5648
|
+
"isStatic": false,
|
|
7753
5649
|
"isProtected": false,
|
|
7754
|
-
"
|
|
7755
|
-
"parameters": [],
|
|
7756
|
-
"isOptional": false,
|
|
7757
|
-
"isAbstract": false,
|
|
7758
|
-
"name": "resetUserKeepVisible"
|
|
5650
|
+
"isAbstract": false
|
|
7759
5651
|
},
|
|
7760
5652
|
{
|
|
7761
|
-
"kind": "
|
|
7762
|
-
"canonicalReference": "@gcorevideo/player!
|
|
5653
|
+
"kind": "Property",
|
|
5654
|
+
"canonicalReference": "@gcorevideo/player!Logo#template:member",
|
|
7763
5655
|
"docComment": "",
|
|
7764
5656
|
"excerptTokens": [
|
|
7765
5657
|
{
|
|
7766
5658
|
"kind": "Content",
|
|
7767
|
-
"text": "
|
|
7768
|
-
},
|
|
7769
|
-
{
|
|
7770
|
-
"kind": "Reference",
|
|
7771
|
-
"text": "MouseEvent",
|
|
7772
|
-
"canonicalReference": "!MouseEvent:interface"
|
|
7773
|
-
},
|
|
7774
|
-
{
|
|
7775
|
-
"kind": "Content",
|
|
7776
|
-
"text": "): "
|
|
5659
|
+
"text": "get template(): "
|
|
7777
5660
|
},
|
|
7778
5661
|
{
|
|
7779
5662
|
"kind": "Content",
|
|
7780
|
-
"text": "
|
|
5663
|
+
"text": "any"
|
|
7781
5664
|
},
|
|
7782
5665
|
{
|
|
7783
5666
|
"kind": "Content",
|
|
7784
5667
|
"text": ";"
|
|
7785
5668
|
}
|
|
7786
5669
|
],
|
|
7787
|
-
"
|
|
7788
|
-
"
|
|
7789
|
-
"startIndex": 3,
|
|
7790
|
-
"endIndex": 4
|
|
7791
|
-
},
|
|
5670
|
+
"isReadonly": true,
|
|
5671
|
+
"isOptional": false,
|
|
7792
5672
|
"releaseTag": "Public",
|
|
5673
|
+
"name": "template",
|
|
5674
|
+
"propertyTypeTokenRange": {
|
|
5675
|
+
"startIndex": 1,
|
|
5676
|
+
"endIndex": 2
|
|
5677
|
+
},
|
|
5678
|
+
"isStatic": false,
|
|
7793
5679
|
"isProtected": false,
|
|
7794
|
-
"
|
|
7795
|
-
|
|
7796
|
-
|
|
7797
|
-
|
|
7798
|
-
|
|
7799
|
-
|
|
7800
|
-
|
|
7801
|
-
|
|
7802
|
-
|
|
7803
|
-
|
|
7804
|
-
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
|
|
5680
|
+
"isAbstract": false
|
|
5681
|
+
}
|
|
5682
|
+
],
|
|
5683
|
+
"extendsTokenRange": {
|
|
5684
|
+
"startIndex": 1,
|
|
5685
|
+
"endIndex": 2
|
|
5686
|
+
},
|
|
5687
|
+
"implementsTokenRanges": []
|
|
5688
|
+
},
|
|
5689
|
+
{
|
|
5690
|
+
"kind": "Class",
|
|
5691
|
+
"canonicalReference": "@gcorevideo/player!MediaControl:class",
|
|
5692
|
+
"docComment": "/**\n * The MediaControl is responsible for displaying the Player controls.\n *\n * @remarks\n *\n * This plugin provides a foundation for developing a media controls UI via additional plugins. The methods exposed are to be used by the other plugins that extend the media control UI.\n *\n * @beta\n */\n",
|
|
5693
|
+
"excerptTokens": [
|
|
5694
|
+
{
|
|
5695
|
+
"kind": "Content",
|
|
5696
|
+
"text": "export declare class MediaControl extends "
|
|
7808
5697
|
},
|
|
7809
5698
|
{
|
|
7810
|
-
"kind": "
|
|
7811
|
-
"
|
|
7812
|
-
"
|
|
5699
|
+
"kind": "Reference",
|
|
5700
|
+
"text": "UICorePlugin",
|
|
5701
|
+
"canonicalReference": "@gcorevideo/player!~UICorePlugin"
|
|
5702
|
+
},
|
|
5703
|
+
{
|
|
5704
|
+
"kind": "Content",
|
|
5705
|
+
"text": " "
|
|
5706
|
+
}
|
|
5707
|
+
],
|
|
5708
|
+
"fileUrlPath": "src/plugins/media-control/MediaControl.ts",
|
|
5709
|
+
"releaseTag": "Beta",
|
|
5710
|
+
"isAbstract": false,
|
|
5711
|
+
"name": "MediaControl",
|
|
5712
|
+
"preserveMemberOrder": false,
|
|
5713
|
+
"members": [
|
|
5714
|
+
{
|
|
5715
|
+
"kind": "Constructor",
|
|
5716
|
+
"canonicalReference": "@gcorevideo/player!MediaControl:constructor(1)",
|
|
5717
|
+
"docComment": "/**\n * Constructs a new instance of the `MediaControl` class\n */\n",
|
|
7813
5718
|
"excerptTokens": [
|
|
7814
5719
|
{
|
|
7815
5720
|
"kind": "Content",
|
|
7816
|
-
"text": "
|
|
7817
|
-
},
|
|
7818
|
-
{
|
|
7819
|
-
"kind": "Content",
|
|
7820
|
-
"text": "number"
|
|
7821
|
-
},
|
|
7822
|
-
{
|
|
7823
|
-
"kind": "Content",
|
|
7824
|
-
"text": "): "
|
|
5721
|
+
"text": "constructor(core: "
|
|
7825
5722
|
},
|
|
7826
5723
|
{
|
|
7827
|
-
"kind": "
|
|
7828
|
-
"text": "
|
|
5724
|
+
"kind": "Reference",
|
|
5725
|
+
"text": "Core",
|
|
5726
|
+
"canonicalReference": "@clappr/core!default:class"
|
|
7829
5727
|
},
|
|
7830
5728
|
{
|
|
7831
5729
|
"kind": "Content",
|
|
7832
|
-
"text": ";"
|
|
5730
|
+
"text": ");"
|
|
7833
5731
|
}
|
|
7834
5732
|
],
|
|
7835
|
-
"
|
|
7836
|
-
"returnTypeTokenRange": {
|
|
7837
|
-
"startIndex": 3,
|
|
7838
|
-
"endIndex": 4
|
|
7839
|
-
},
|
|
7840
|
-
"releaseTag": "Public",
|
|
5733
|
+
"releaseTag": "Beta",
|
|
7841
5734
|
"isProtected": false,
|
|
7842
5735
|
"overloadIndex": 1,
|
|
7843
5736
|
"parameters": [
|
|
7844
5737
|
{
|
|
7845
|
-
"parameterName": "
|
|
5738
|
+
"parameterName": "core",
|
|
7846
5739
|
"parameterTypeTokenRange": {
|
|
7847
5740
|
"startIndex": 1,
|
|
7848
5741
|
"endIndex": 2
|
|
7849
5742
|
},
|
|
7850
5743
|
"isOptional": false
|
|
7851
5744
|
}
|
|
7852
|
-
]
|
|
7853
|
-
"isOptional": false,
|
|
7854
|
-
"isAbstract": false,
|
|
7855
|
-
"name": "seekRelative"
|
|
5745
|
+
]
|
|
7856
5746
|
},
|
|
7857
5747
|
{
|
|
7858
|
-
"kind": "
|
|
7859
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5748
|
+
"kind": "Property",
|
|
5749
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#attributes:member",
|
|
7860
5750
|
"docComment": "",
|
|
7861
5751
|
"excerptTokens": [
|
|
7862
5752
|
{
|
|
7863
5753
|
"kind": "Content",
|
|
7864
|
-
"text": "
|
|
7865
|
-
},
|
|
7866
|
-
{
|
|
7867
|
-
"kind": "Content",
|
|
7868
|
-
"text": "unknown"
|
|
7869
|
-
},
|
|
7870
|
-
{
|
|
7871
|
-
"kind": "Content",
|
|
7872
|
-
"text": "): "
|
|
5754
|
+
"text": "get attributes(): "
|
|
7873
5755
|
},
|
|
7874
5756
|
{
|
|
7875
5757
|
"kind": "Content",
|
|
7876
|
-
"text": "
|
|
5758
|
+
"text": "{\n class: string;\n 'data-media-control-skin-1': string;\n }"
|
|
7877
5759
|
},
|
|
7878
5760
|
{
|
|
7879
5761
|
"kind": "Content",
|
|
7880
5762
|
"text": ";"
|
|
7881
5763
|
}
|
|
7882
5764
|
],
|
|
7883
|
-
"
|
|
7884
|
-
"
|
|
7885
|
-
|
|
7886
|
-
|
|
5765
|
+
"isReadonly": true,
|
|
5766
|
+
"isOptional": false,
|
|
5767
|
+
"releaseTag": "Beta",
|
|
5768
|
+
"name": "attributes",
|
|
5769
|
+
"propertyTypeTokenRange": {
|
|
5770
|
+
"startIndex": 1,
|
|
5771
|
+
"endIndex": 2
|
|
7887
5772
|
},
|
|
7888
|
-
"
|
|
5773
|
+
"isStatic": false,
|
|
7889
5774
|
"isProtected": false,
|
|
7890
|
-
"
|
|
7891
|
-
"parameters": [
|
|
7892
|
-
{
|
|
7893
|
-
"parameterName": "txt",
|
|
7894
|
-
"parameterTypeTokenRange": {
|
|
7895
|
-
"startIndex": 1,
|
|
7896
|
-
"endIndex": 2
|
|
7897
|
-
},
|
|
7898
|
-
"isOptional": false
|
|
7899
|
-
}
|
|
7900
|
-
],
|
|
7901
|
-
"isOptional": false,
|
|
7902
|
-
"isAbstract": false,
|
|
7903
|
-
"name": "setClipText"
|
|
5775
|
+
"isAbstract": false
|
|
7904
5776
|
},
|
|
7905
5777
|
{
|
|
7906
5778
|
"kind": "Method",
|
|
7907
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5779
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#bindContainerEvents:member(1)",
|
|
7908
5780
|
"docComment": "",
|
|
7909
5781
|
"excerptTokens": [
|
|
7910
5782
|
{
|
|
7911
5783
|
"kind": "Content",
|
|
7912
|
-
"text": "
|
|
5784
|
+
"text": "bindContainerEvents(): "
|
|
7913
5785
|
},
|
|
7914
5786
|
{
|
|
7915
5787
|
"kind": "Content",
|
|
@@ -7925,30 +5797,22 @@
|
|
|
7925
5797
|
"startIndex": 1,
|
|
7926
5798
|
"endIndex": 2
|
|
7927
5799
|
},
|
|
7928
|
-
"releaseTag": "
|
|
5800
|
+
"releaseTag": "Beta",
|
|
7929
5801
|
"isProtected": false,
|
|
7930
5802
|
"overloadIndex": 1,
|
|
7931
5803
|
"parameters": [],
|
|
7932
5804
|
"isOptional": false,
|
|
7933
5805
|
"isAbstract": false,
|
|
7934
|
-
"name": "
|
|
5806
|
+
"name": "bindContainerEvents"
|
|
7935
5807
|
},
|
|
7936
5808
|
{
|
|
7937
5809
|
"kind": "Method",
|
|
7938
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5810
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#bindEvents:member(1)",
|
|
7939
5811
|
"docComment": "",
|
|
7940
5812
|
"excerptTokens": [
|
|
7941
5813
|
{
|
|
7942
5814
|
"kind": "Content",
|
|
7943
|
-
"text": "
|
|
7944
|
-
},
|
|
7945
|
-
{
|
|
7946
|
-
"kind": "Content",
|
|
7947
|
-
"text": "boolean"
|
|
7948
|
-
},
|
|
7949
|
-
{
|
|
7950
|
-
"kind": "Content",
|
|
7951
|
-
"text": "): "
|
|
5815
|
+
"text": "bindEvents(): "
|
|
7952
5816
|
},
|
|
7953
5817
|
{
|
|
7954
5818
|
"kind": "Content",
|
|
@@ -7961,94 +5825,64 @@
|
|
|
7961
5825
|
],
|
|
7962
5826
|
"isStatic": false,
|
|
7963
5827
|
"returnTypeTokenRange": {
|
|
7964
|
-
"startIndex":
|
|
7965
|
-
"endIndex":
|
|
5828
|
+
"startIndex": 1,
|
|
5829
|
+
"endIndex": 2
|
|
7966
5830
|
},
|
|
7967
|
-
"releaseTag": "
|
|
5831
|
+
"releaseTag": "Beta",
|
|
7968
5832
|
"isProtected": false,
|
|
7969
5833
|
"overloadIndex": 1,
|
|
7970
|
-
"parameters": [
|
|
7971
|
-
{
|
|
7972
|
-
"parameterName": "value",
|
|
7973
|
-
"parameterTypeTokenRange": {
|
|
7974
|
-
"startIndex": 1,
|
|
7975
|
-
"endIndex": 2
|
|
7976
|
-
},
|
|
7977
|
-
"isOptional": false
|
|
7978
|
-
}
|
|
7979
|
-
],
|
|
5834
|
+
"parameters": [],
|
|
7980
5835
|
"isOptional": false,
|
|
7981
5836
|
"isAbstract": false,
|
|
7982
|
-
"name": "
|
|
5837
|
+
"name": "bindEvents"
|
|
7983
5838
|
},
|
|
7984
5839
|
{
|
|
7985
|
-
"kind": "
|
|
7986
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5840
|
+
"kind": "Property",
|
|
5841
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#container:member",
|
|
7987
5842
|
"docComment": "",
|
|
7988
5843
|
"excerptTokens": [
|
|
7989
5844
|
{
|
|
7990
5845
|
"kind": "Content",
|
|
7991
|
-
"text": "
|
|
7992
|
-
},
|
|
7993
|
-
{
|
|
7994
|
-
"kind": "Content",
|
|
7995
|
-
"text": "number"
|
|
7996
|
-
},
|
|
7997
|
-
{
|
|
7998
|
-
"kind": "Content",
|
|
7999
|
-
"text": "): "
|
|
5846
|
+
"text": "get container(): "
|
|
8000
5847
|
},
|
|
8001
5848
|
{
|
|
8002
5849
|
"kind": "Content",
|
|
8003
|
-
"text": "
|
|
5850
|
+
"text": "any"
|
|
8004
5851
|
},
|
|
8005
5852
|
{
|
|
8006
5853
|
"kind": "Content",
|
|
8007
5854
|
"text": ";"
|
|
8008
5855
|
}
|
|
8009
5856
|
],
|
|
8010
|
-
"
|
|
8011
|
-
"
|
|
8012
|
-
|
|
8013
|
-
|
|
5857
|
+
"isReadonly": true,
|
|
5858
|
+
"isOptional": false,
|
|
5859
|
+
"releaseTag": "Beta",
|
|
5860
|
+
"name": "container",
|
|
5861
|
+
"propertyTypeTokenRange": {
|
|
5862
|
+
"startIndex": 1,
|
|
5863
|
+
"endIndex": 2
|
|
8014
5864
|
},
|
|
8015
|
-
"
|
|
5865
|
+
"isStatic": false,
|
|
8016
5866
|
"isProtected": false,
|
|
8017
|
-
"
|
|
8018
|
-
"parameters": [
|
|
8019
|
-
{
|
|
8020
|
-
"parameterName": "value",
|
|
8021
|
-
"parameterTypeTokenRange": {
|
|
8022
|
-
"startIndex": 1,
|
|
8023
|
-
"endIndex": 2
|
|
8024
|
-
},
|
|
8025
|
-
"isOptional": false
|
|
8026
|
-
}
|
|
8027
|
-
],
|
|
8028
|
-
"isOptional": false,
|
|
8029
|
-
"isAbstract": false,
|
|
8030
|
-
"name": "setSeekPercentage"
|
|
5867
|
+
"isAbstract": false
|
|
8031
5868
|
},
|
|
8032
5869
|
{
|
|
8033
5870
|
"kind": "Method",
|
|
8034
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5871
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#destroy:member(1)",
|
|
8035
5872
|
"docComment": "",
|
|
8036
5873
|
"excerptTokens": [
|
|
8037
5874
|
{
|
|
8038
5875
|
"kind": "Content",
|
|
8039
|
-
"text": "
|
|
8040
|
-
},
|
|
8041
|
-
{
|
|
8042
|
-
"kind": "Content",
|
|
8043
|
-
"text": "string"
|
|
5876
|
+
"text": "destroy(): "
|
|
8044
5877
|
},
|
|
8045
5878
|
{
|
|
8046
5879
|
"kind": "Content",
|
|
8047
|
-
"text": ")
|
|
5880
|
+
"text": "import(\"@clappr/core\")."
|
|
8048
5881
|
},
|
|
8049
5882
|
{
|
|
8050
|
-
"kind": "
|
|
8051
|
-
"text": "
|
|
5883
|
+
"kind": "Reference",
|
|
5884
|
+
"text": "UIObject",
|
|
5885
|
+
"canonicalReference": "@clappr/core!default:class"
|
|
8052
5886
|
},
|
|
8053
5887
|
{
|
|
8054
5888
|
"kind": "Content",
|
|
@@ -8057,34 +5891,25 @@
|
|
|
8057
5891
|
],
|
|
8058
5892
|
"isStatic": false,
|
|
8059
5893
|
"returnTypeTokenRange": {
|
|
8060
|
-
"startIndex":
|
|
8061
|
-
"endIndex":
|
|
5894
|
+
"startIndex": 1,
|
|
5895
|
+
"endIndex": 3
|
|
8062
5896
|
},
|
|
8063
|
-
"releaseTag": "
|
|
5897
|
+
"releaseTag": "Beta",
|
|
8064
5898
|
"isProtected": false,
|
|
8065
5899
|
"overloadIndex": 1,
|
|
8066
|
-
"parameters": [
|
|
8067
|
-
{
|
|
8068
|
-
"parameterName": "svg",
|
|
8069
|
-
"parameterTypeTokenRange": {
|
|
8070
|
-
"startIndex": 1,
|
|
8071
|
-
"endIndex": 2
|
|
8072
|
-
},
|
|
8073
|
-
"isOptional": false
|
|
8074
|
-
}
|
|
8075
|
-
],
|
|
5900
|
+
"parameters": [],
|
|
8076
5901
|
"isOptional": false,
|
|
8077
5902
|
"isAbstract": false,
|
|
8078
|
-
"name": "
|
|
5903
|
+
"name": "destroy"
|
|
8079
5904
|
},
|
|
8080
5905
|
{
|
|
8081
5906
|
"kind": "Method",
|
|
8082
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5907
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#disable:member(1)",
|
|
8083
5908
|
"docComment": "",
|
|
8084
5909
|
"excerptTokens": [
|
|
8085
5910
|
{
|
|
8086
5911
|
"kind": "Content",
|
|
8087
|
-
"text": "
|
|
5912
|
+
"text": "disable(): "
|
|
8088
5913
|
},
|
|
8089
5914
|
{
|
|
8090
5915
|
"kind": "Content",
|
|
@@ -8100,38 +5925,52 @@
|
|
|
8100
5925
|
"startIndex": 1,
|
|
8101
5926
|
"endIndex": 2
|
|
8102
5927
|
},
|
|
8103
|
-
"releaseTag": "
|
|
5928
|
+
"releaseTag": "Beta",
|
|
8104
5929
|
"isProtected": false,
|
|
8105
5930
|
"overloadIndex": 1,
|
|
8106
5931
|
"parameters": [],
|
|
8107
5932
|
"isOptional": false,
|
|
8108
5933
|
"isAbstract": false,
|
|
8109
|
-
"name": "
|
|
5934
|
+
"name": "disable"
|
|
8110
5935
|
},
|
|
8111
5936
|
{
|
|
8112
|
-
"kind": "
|
|
8113
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5937
|
+
"kind": "Property",
|
|
5938
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#disabled:member",
|
|
8114
5939
|
"docComment": "",
|
|
8115
5940
|
"excerptTokens": [
|
|
8116
5941
|
{
|
|
8117
5942
|
"kind": "Content",
|
|
8118
|
-
"text": "
|
|
8119
|
-
},
|
|
8120
|
-
{
|
|
8121
|
-
"kind": "Content",
|
|
8122
|
-
"text": "number"
|
|
5943
|
+
"text": "get disabled(): "
|
|
8123
5944
|
},
|
|
8124
5945
|
{
|
|
8125
5946
|
"kind": "Content",
|
|
8126
|
-
"text": "
|
|
5947
|
+
"text": "any"
|
|
8127
5948
|
},
|
|
8128
5949
|
{
|
|
8129
5950
|
"kind": "Content",
|
|
8130
|
-
"text": "
|
|
8131
|
-
}
|
|
5951
|
+
"text": ";"
|
|
5952
|
+
}
|
|
5953
|
+
],
|
|
5954
|
+
"isReadonly": true,
|
|
5955
|
+
"isOptional": false,
|
|
5956
|
+
"releaseTag": "Beta",
|
|
5957
|
+
"name": "disabled",
|
|
5958
|
+
"propertyTypeTokenRange": {
|
|
5959
|
+
"startIndex": 1,
|
|
5960
|
+
"endIndex": 2
|
|
5961
|
+
},
|
|
5962
|
+
"isStatic": false,
|
|
5963
|
+
"isProtected": false,
|
|
5964
|
+
"isAbstract": false
|
|
5965
|
+
},
|
|
5966
|
+
{
|
|
5967
|
+
"kind": "Method",
|
|
5968
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#disabledControlButton:member(1)",
|
|
5969
|
+
"docComment": "/**\n * Disable the control button\n */\n",
|
|
5970
|
+
"excerptTokens": [
|
|
8132
5971
|
{
|
|
8133
5972
|
"kind": "Content",
|
|
8134
|
-
"text": "): "
|
|
5973
|
+
"text": "disabledControlButton(): "
|
|
8135
5974
|
},
|
|
8136
5975
|
{
|
|
8137
5976
|
"kind": "Content",
|
|
@@ -8144,51 +5983,25 @@
|
|
|
8144
5983
|
],
|
|
8145
5984
|
"isStatic": false,
|
|
8146
5985
|
"returnTypeTokenRange": {
|
|
8147
|
-
"startIndex":
|
|
8148
|
-
"endIndex":
|
|
5986
|
+
"startIndex": 1,
|
|
5987
|
+
"endIndex": 2
|
|
8149
5988
|
},
|
|
8150
|
-
"releaseTag": "
|
|
5989
|
+
"releaseTag": "Beta",
|
|
8151
5990
|
"isProtected": false,
|
|
8152
5991
|
"overloadIndex": 1,
|
|
8153
|
-
"parameters": [
|
|
8154
|
-
{
|
|
8155
|
-
"parameterName": "value",
|
|
8156
|
-
"parameterTypeTokenRange": {
|
|
8157
|
-
"startIndex": 1,
|
|
8158
|
-
"endIndex": 2
|
|
8159
|
-
},
|
|
8160
|
-
"isOptional": false
|
|
8161
|
-
},
|
|
8162
|
-
{
|
|
8163
|
-
"parameterName": "isInitialVolume",
|
|
8164
|
-
"parameterTypeTokenRange": {
|
|
8165
|
-
"startIndex": 3,
|
|
8166
|
-
"endIndex": 4
|
|
8167
|
-
},
|
|
8168
|
-
"isOptional": true
|
|
8169
|
-
}
|
|
8170
|
-
],
|
|
5992
|
+
"parameters": [],
|
|
8171
5993
|
"isOptional": false,
|
|
8172
5994
|
"isAbstract": false,
|
|
8173
|
-
"name": "
|
|
5995
|
+
"name": "disabledControlButton"
|
|
8174
5996
|
},
|
|
8175
5997
|
{
|
|
8176
5998
|
"kind": "Method",
|
|
8177
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
5999
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#enable:member(1)",
|
|
8178
6000
|
"docComment": "",
|
|
8179
6001
|
"excerptTokens": [
|
|
8180
6002
|
{
|
|
8181
6003
|
"kind": "Content",
|
|
8182
|
-
"text": "
|
|
8183
|
-
},
|
|
8184
|
-
{
|
|
8185
|
-
"kind": "Reference",
|
|
8186
|
-
"text": "MouseEvent",
|
|
8187
|
-
"canonicalReference": "!MouseEvent:interface"
|
|
8188
|
-
},
|
|
8189
|
-
{
|
|
8190
|
-
"kind": "Content",
|
|
8191
|
-
"text": "): "
|
|
6004
|
+
"text": "enable(): "
|
|
8192
6005
|
},
|
|
8193
6006
|
{
|
|
8194
6007
|
"kind": "Content",
|
|
@@ -8201,34 +6014,25 @@
|
|
|
8201
6014
|
],
|
|
8202
6015
|
"isStatic": false,
|
|
8203
6016
|
"returnTypeTokenRange": {
|
|
8204
|
-
"startIndex":
|
|
8205
|
-
"endIndex":
|
|
6017
|
+
"startIndex": 1,
|
|
6018
|
+
"endIndex": 2
|
|
8206
6019
|
},
|
|
8207
|
-
"releaseTag": "
|
|
6020
|
+
"releaseTag": "Beta",
|
|
8208
6021
|
"isProtected": false,
|
|
8209
6022
|
"overloadIndex": 1,
|
|
8210
|
-
"parameters": [
|
|
8211
|
-
{
|
|
8212
|
-
"parameterName": "event",
|
|
8213
|
-
"parameterTypeTokenRange": {
|
|
8214
|
-
"startIndex": 1,
|
|
8215
|
-
"endIndex": 2
|
|
8216
|
-
},
|
|
8217
|
-
"isOptional": true
|
|
8218
|
-
}
|
|
8219
|
-
],
|
|
6023
|
+
"parameters": [],
|
|
8220
6024
|
"isOptional": false,
|
|
8221
6025
|
"isAbstract": false,
|
|
8222
|
-
"name": "
|
|
6026
|
+
"name": "enable"
|
|
8223
6027
|
},
|
|
8224
6028
|
{
|
|
8225
6029
|
"kind": "Method",
|
|
8226
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8227
|
-
"docComment": "",
|
|
6030
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#enableControlButton:member(1)",
|
|
6031
|
+
"docComment": "/**\n * Enable the control button\n */\n",
|
|
8228
6032
|
"excerptTokens": [
|
|
8229
6033
|
{
|
|
8230
6034
|
"kind": "Content",
|
|
8231
|
-
"text": "
|
|
6035
|
+
"text": "enableControlButton(): "
|
|
8232
6036
|
},
|
|
8233
6037
|
{
|
|
8234
6038
|
"kind": "Content",
|
|
@@ -8244,84 +6048,70 @@
|
|
|
8244
6048
|
"startIndex": 1,
|
|
8245
6049
|
"endIndex": 2
|
|
8246
6050
|
},
|
|
8247
|
-
"releaseTag": "
|
|
6051
|
+
"releaseTag": "Beta",
|
|
8248
6052
|
"isProtected": false,
|
|
8249
6053
|
"overloadIndex": 1,
|
|
8250
6054
|
"parameters": [],
|
|
8251
6055
|
"isOptional": false,
|
|
8252
6056
|
"isAbstract": false,
|
|
8253
|
-
"name": "
|
|
6057
|
+
"name": "enableControlButton"
|
|
8254
6058
|
},
|
|
8255
6059
|
{
|
|
8256
|
-
"kind": "
|
|
8257
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
6060
|
+
"kind": "Property",
|
|
6061
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#events:member",
|
|
8258
6062
|
"docComment": "",
|
|
8259
6063
|
"excerptTokens": [
|
|
8260
6064
|
{
|
|
8261
6065
|
"kind": "Content",
|
|
8262
|
-
"text": "
|
|
8263
|
-
},
|
|
8264
|
-
{
|
|
8265
|
-
"kind": "Reference",
|
|
8266
|
-
"text": "MouseEvent",
|
|
8267
|
-
"canonicalReference": "!MouseEvent:interface"
|
|
8268
|
-
},
|
|
8269
|
-
{
|
|
8270
|
-
"kind": "Content",
|
|
8271
|
-
"text": "): "
|
|
6066
|
+
"text": "get events(): "
|
|
8272
6067
|
},
|
|
8273
6068
|
{
|
|
8274
6069
|
"kind": "Content",
|
|
8275
|
-
"text": "
|
|
6070
|
+
"text": "{\n 'click [data-play]': string;\n 'click [data-pause]': string;\n 'click [data-playpause]': string;\n 'click [data-stop]': string;\n 'click [data-playstop]': string;\n 'click [data-fullscreen]': string;\n 'click .bar-container[data-seekbar]': string;\n 'click .bar-container[data-volume]': string;\n 'click .drawer-icon[data-volume]': string;\n 'mouseenter .drawer-container[data-volume]': string;\n 'mouseleave .drawer-container[data-volume]': string;\n 'mousedown .bar-container[data-volume]': string;\n 'touchstart .bar-container[data-volume]': string;\n 'mousemove .bar-container[data-volume]': string;\n 'touchmove .bar-container[data-volume]': string;\n 'mousedown .bar-scrubber[data-seekbar]': string;\n 'mousedown .bar-container[data-seekbar]': string;\n 'touchstart .bar-scrubber[data-seekbar]': string;\n 'touchstart .bar-container[data-seekbar]': string;\n 'mousemove .bar-container[data-seekbar]': string;\n 'touchmove .bar-container[data-seekbar]': string;\n 'mouseleave .bar-container[data-seekbar]': string;\n 'touchend .bar-container[data-seekbar]': string;\n 'mouseenter .media-control-layer[data-controls]': string;\n 'mouseleave .media-control-layer[data-controls]': string;\n }"
|
|
8276
6071
|
},
|
|
8277
6072
|
{
|
|
8278
6073
|
"kind": "Content",
|
|
8279
6074
|
"text": ";"
|
|
8280
6075
|
}
|
|
8281
6076
|
],
|
|
8282
|
-
"
|
|
8283
|
-
"
|
|
8284
|
-
|
|
8285
|
-
|
|
6077
|
+
"isReadonly": true,
|
|
6078
|
+
"isOptional": false,
|
|
6079
|
+
"releaseTag": "Beta",
|
|
6080
|
+
"name": "events",
|
|
6081
|
+
"propertyTypeTokenRange": {
|
|
6082
|
+
"startIndex": 1,
|
|
6083
|
+
"endIndex": 2
|
|
8286
6084
|
},
|
|
8287
|
-
"
|
|
6085
|
+
"isStatic": false,
|
|
8288
6086
|
"isProtected": false,
|
|
8289
|
-
"
|
|
8290
|
-
"parameters": [
|
|
8291
|
-
{
|
|
8292
|
-
"parameterName": "event",
|
|
8293
|
-
"parameterTypeTokenRange": {
|
|
8294
|
-
"startIndex": 1,
|
|
8295
|
-
"endIndex": 2
|
|
8296
|
-
},
|
|
8297
|
-
"isOptional": false
|
|
8298
|
-
}
|
|
8299
|
-
],
|
|
8300
|
-
"isOptional": false,
|
|
8301
|
-
"isAbstract": false,
|
|
8302
|
-
"name": "startSeekDrag"
|
|
6087
|
+
"isAbstract": false
|
|
8303
6088
|
},
|
|
8304
6089
|
{
|
|
8305
6090
|
"kind": "Method",
|
|
8306
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8307
|
-
"docComment": "",
|
|
6091
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#getElement:member(1)",
|
|
6092
|
+
"docComment": "/**\n * Get a media control element DOM node\n *\n * @param name - The name of the media control element\n *\n * @returns The DOM node to render the media control element\n */\n",
|
|
8308
6093
|
"excerptTokens": [
|
|
8309
6094
|
{
|
|
8310
6095
|
"kind": "Content",
|
|
8311
|
-
"text": "
|
|
6096
|
+
"text": "getElement(name: "
|
|
8312
6097
|
},
|
|
8313
6098
|
{
|
|
8314
6099
|
"kind": "Reference",
|
|
8315
|
-
"text": "
|
|
8316
|
-
"canonicalReference": "!
|
|
6100
|
+
"text": "MediaControlElement",
|
|
6101
|
+
"canonicalReference": "@gcorevideo/player!MediaControlElement:type"
|
|
8317
6102
|
},
|
|
8318
6103
|
{
|
|
8319
6104
|
"kind": "Content",
|
|
8320
6105
|
"text": "): "
|
|
8321
6106
|
},
|
|
6107
|
+
{
|
|
6108
|
+
"kind": "Reference",
|
|
6109
|
+
"text": "ZeptoResult",
|
|
6110
|
+
"canonicalReference": "@gcorevideo/player!ZeptoResult:type"
|
|
6111
|
+
},
|
|
8322
6112
|
{
|
|
8323
6113
|
"kind": "Content",
|
|
8324
|
-
"text": "
|
|
6114
|
+
"text": " | null"
|
|
8325
6115
|
},
|
|
8326
6116
|
{
|
|
8327
6117
|
"kind": "Content",
|
|
@@ -8331,14 +6121,14 @@
|
|
|
8331
6121
|
"isStatic": false,
|
|
8332
6122
|
"returnTypeTokenRange": {
|
|
8333
6123
|
"startIndex": 3,
|
|
8334
|
-
"endIndex":
|
|
6124
|
+
"endIndex": 5
|
|
8335
6125
|
},
|
|
8336
|
-
"releaseTag": "
|
|
6126
|
+
"releaseTag": "Beta",
|
|
8337
6127
|
"isProtected": false,
|
|
8338
6128
|
"overloadIndex": 1,
|
|
8339
6129
|
"parameters": [
|
|
8340
6130
|
{
|
|
8341
|
-
"parameterName": "
|
|
6131
|
+
"parameterName": "name",
|
|
8342
6132
|
"parameterTypeTokenRange": {
|
|
8343
6133
|
"startIndex": 1,
|
|
8344
6134
|
"endIndex": 2
|
|
@@ -8348,90 +6138,51 @@
|
|
|
8348
6138
|
],
|
|
8349
6139
|
"isOptional": false,
|
|
8350
6140
|
"isAbstract": false,
|
|
8351
|
-
"name": "
|
|
8352
|
-
},
|
|
8353
|
-
{
|
|
8354
|
-
"kind": "Method",
|
|
8355
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#stop:member(1)",
|
|
8356
|
-
"docComment": "",
|
|
8357
|
-
"excerptTokens": [
|
|
8358
|
-
{
|
|
8359
|
-
"kind": "Content",
|
|
8360
|
-
"text": "stop(): "
|
|
8361
|
-
},
|
|
8362
|
-
{
|
|
8363
|
-
"kind": "Content",
|
|
8364
|
-
"text": "void"
|
|
8365
|
-
},
|
|
8366
|
-
{
|
|
8367
|
-
"kind": "Content",
|
|
8368
|
-
"text": ";"
|
|
8369
|
-
}
|
|
8370
|
-
],
|
|
8371
|
-
"isStatic": false,
|
|
8372
|
-
"returnTypeTokenRange": {
|
|
8373
|
-
"startIndex": 1,
|
|
8374
|
-
"endIndex": 2
|
|
8375
|
-
},
|
|
8376
|
-
"releaseTag": "Public",
|
|
8377
|
-
"isProtected": false,
|
|
8378
|
-
"overloadIndex": 1,
|
|
8379
|
-
"parameters": [],
|
|
8380
|
-
"isOptional": false,
|
|
8381
|
-
"isAbstract": false,
|
|
8382
|
-
"name": "stop"
|
|
6141
|
+
"name": "getElement"
|
|
8383
6142
|
},
|
|
8384
6143
|
{
|
|
8385
|
-
"kind": "
|
|
8386
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
6144
|
+
"kind": "Method",
|
|
6145
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#getExternalInterface:member(1)",
|
|
8387
6146
|
"docComment": "",
|
|
8388
6147
|
"excerptTokens": [
|
|
8389
6148
|
{
|
|
8390
6149
|
"kind": "Content",
|
|
8391
|
-
"text": "
|
|
8392
|
-
},
|
|
8393
|
-
{
|
|
8394
|
-
"kind": "Content",
|
|
8395
|
-
"text": "(event: "
|
|
8396
|
-
},
|
|
8397
|
-
{
|
|
8398
|
-
"kind": "Reference",
|
|
8399
|
-
"text": "MouseEvent",
|
|
8400
|
-
"canonicalReference": "!MouseEvent:interface"
|
|
6150
|
+
"text": "getExternalInterface(): "
|
|
8401
6151
|
},
|
|
8402
6152
|
{
|
|
8403
6153
|
"kind": "Content",
|
|
8404
|
-
"text": ") => void"
|
|
6154
|
+
"text": "{\n setVolume: (value: number, isInitialVolume?: boolean) => void;\n getVolume: () => any;\n }"
|
|
8405
6155
|
},
|
|
8406
6156
|
{
|
|
8407
6157
|
"kind": "Content",
|
|
8408
6158
|
"text": ";"
|
|
8409
6159
|
}
|
|
8410
6160
|
],
|
|
8411
|
-
"
|
|
8412
|
-
"
|
|
8413
|
-
"releaseTag": "Public",
|
|
8414
|
-
"name": "stopDrag",
|
|
8415
|
-
"propertyTypeTokenRange": {
|
|
6161
|
+
"isStatic": false,
|
|
6162
|
+
"returnTypeTokenRange": {
|
|
8416
6163
|
"startIndex": 1,
|
|
8417
|
-
"endIndex":
|
|
6164
|
+
"endIndex": 2
|
|
8418
6165
|
},
|
|
8419
|
-
"
|
|
6166
|
+
"releaseTag": "Beta",
|
|
8420
6167
|
"isProtected": false,
|
|
8421
|
-
"
|
|
6168
|
+
"overloadIndex": 1,
|
|
6169
|
+
"parameters": [],
|
|
6170
|
+
"isOptional": false,
|
|
6171
|
+
"isAbstract": false,
|
|
6172
|
+
"name": "getExternalInterface"
|
|
8422
6173
|
},
|
|
8423
6174
|
{
|
|
8424
6175
|
"kind": "Property",
|
|
8425
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8426
|
-
"docComment": "",
|
|
6176
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#muted:member",
|
|
6177
|
+
"docComment": "/**\n * Muted state\n */\n",
|
|
8427
6178
|
"excerptTokens": [
|
|
8428
6179
|
{
|
|
8429
6180
|
"kind": "Content",
|
|
8430
|
-
"text": "get
|
|
6181
|
+
"text": "get muted(): "
|
|
8431
6182
|
},
|
|
8432
6183
|
{
|
|
8433
6184
|
"kind": "Content",
|
|
8434
|
-
"text": "
|
|
6185
|
+
"text": "boolean"
|
|
8435
6186
|
},
|
|
8436
6187
|
{
|
|
8437
6188
|
"kind": "Content",
|
|
@@ -8440,8 +6191,8 @@
|
|
|
8440
6191
|
],
|
|
8441
6192
|
"isReadonly": true,
|
|
8442
6193
|
"isOptional": false,
|
|
8443
|
-
"releaseTag": "
|
|
8444
|
-
"name": "
|
|
6194
|
+
"releaseTag": "Beta",
|
|
6195
|
+
"name": "muted",
|
|
8445
6196
|
"propertyTypeTokenRange": {
|
|
8446
6197
|
"startIndex": 1,
|
|
8447
6198
|
"endIndex": 2
|
|
@@ -8452,16 +6203,16 @@
|
|
|
8452
6203
|
},
|
|
8453
6204
|
{
|
|
8454
6205
|
"kind": "Property",
|
|
8455
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
6206
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#name:member",
|
|
8456
6207
|
"docComment": "",
|
|
8457
6208
|
"excerptTokens": [
|
|
8458
6209
|
{
|
|
8459
6210
|
"kind": "Content",
|
|
8460
|
-
"text": "get
|
|
6211
|
+
"text": "get name(): "
|
|
8461
6212
|
},
|
|
8462
6213
|
{
|
|
8463
6214
|
"kind": "Content",
|
|
8464
|
-
"text": "
|
|
6215
|
+
"text": "string"
|
|
8465
6216
|
},
|
|
8466
6217
|
{
|
|
8467
6218
|
"kind": "Content",
|
|
@@ -8470,8 +6221,8 @@
|
|
|
8470
6221
|
],
|
|
8471
6222
|
"isReadonly": true,
|
|
8472
6223
|
"isOptional": false,
|
|
8473
|
-
"releaseTag": "
|
|
8474
|
-
"name": "
|
|
6224
|
+
"releaseTag": "Beta",
|
|
6225
|
+
"name": "name",
|
|
8475
6226
|
"propertyTypeTokenRange": {
|
|
8476
6227
|
"startIndex": 1,
|
|
8477
6228
|
"endIndex": 2
|
|
@@ -8482,12 +6233,12 @@
|
|
|
8482
6233
|
},
|
|
8483
6234
|
{
|
|
8484
6235
|
"kind": "Method",
|
|
8485
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8486
|
-
"docComment": "",
|
|
6236
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#pause:member(1)",
|
|
6237
|
+
"docComment": "/**\n * Pause the playback\n */\n",
|
|
8487
6238
|
"excerptTokens": [
|
|
8488
6239
|
{
|
|
8489
6240
|
"kind": "Content",
|
|
8490
|
-
"text": "
|
|
6241
|
+
"text": "pause(): "
|
|
8491
6242
|
},
|
|
8492
6243
|
{
|
|
8493
6244
|
"kind": "Content",
|
|
@@ -8503,22 +6254,22 @@
|
|
|
8503
6254
|
"startIndex": 1,
|
|
8504
6255
|
"endIndex": 2
|
|
8505
6256
|
},
|
|
8506
|
-
"releaseTag": "
|
|
6257
|
+
"releaseTag": "Beta",
|
|
8507
6258
|
"isProtected": false,
|
|
8508
6259
|
"overloadIndex": 1,
|
|
8509
6260
|
"parameters": [],
|
|
8510
6261
|
"isOptional": false,
|
|
8511
6262
|
"isAbstract": false,
|
|
8512
|
-
"name": "
|
|
6263
|
+
"name": "pause"
|
|
8513
6264
|
},
|
|
8514
6265
|
{
|
|
8515
6266
|
"kind": "Method",
|
|
8516
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8517
|
-
"docComment": "",
|
|
6267
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#play:member(1)",
|
|
6268
|
+
"docComment": "/**\n * Start the playback\n */\n",
|
|
8518
6269
|
"excerptTokens": [
|
|
8519
6270
|
{
|
|
8520
6271
|
"kind": "Content",
|
|
8521
|
-
"text": "
|
|
6272
|
+
"text": "play(): "
|
|
8522
6273
|
},
|
|
8523
6274
|
{
|
|
8524
6275
|
"kind": "Content",
|
|
@@ -8534,57 +6285,56 @@
|
|
|
8534
6285
|
"startIndex": 1,
|
|
8535
6286
|
"endIndex": 2
|
|
8536
6287
|
},
|
|
8537
|
-
"releaseTag": "
|
|
6288
|
+
"releaseTag": "Beta",
|
|
8538
6289
|
"isProtected": false,
|
|
8539
6290
|
"overloadIndex": 1,
|
|
8540
6291
|
"parameters": [],
|
|
8541
6292
|
"isOptional": false,
|
|
8542
6293
|
"isAbstract": false,
|
|
8543
|
-
"name": "
|
|
6294
|
+
"name": "play"
|
|
8544
6295
|
},
|
|
8545
6296
|
{
|
|
8546
|
-
"kind": "
|
|
8547
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
6297
|
+
"kind": "Property",
|
|
6298
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#playback:member",
|
|
8548
6299
|
"docComment": "",
|
|
8549
6300
|
"excerptTokens": [
|
|
8550
6301
|
{
|
|
8551
6302
|
"kind": "Content",
|
|
8552
|
-
"text": "
|
|
6303
|
+
"text": "get playback(): "
|
|
8553
6304
|
},
|
|
8554
6305
|
{
|
|
8555
6306
|
"kind": "Content",
|
|
8556
|
-
"text": "
|
|
6307
|
+
"text": "any"
|
|
8557
6308
|
},
|
|
8558
6309
|
{
|
|
8559
6310
|
"kind": "Content",
|
|
8560
6311
|
"text": ";"
|
|
8561
6312
|
}
|
|
8562
6313
|
],
|
|
8563
|
-
"
|
|
8564
|
-
"
|
|
6314
|
+
"isReadonly": true,
|
|
6315
|
+
"isOptional": false,
|
|
6316
|
+
"releaseTag": "Beta",
|
|
6317
|
+
"name": "playback",
|
|
6318
|
+
"propertyTypeTokenRange": {
|
|
8565
6319
|
"startIndex": 1,
|
|
8566
6320
|
"endIndex": 2
|
|
8567
6321
|
},
|
|
8568
|
-
"
|
|
6322
|
+
"isStatic": false,
|
|
8569
6323
|
"isProtected": false,
|
|
8570
|
-
"
|
|
8571
|
-
"parameters": [],
|
|
8572
|
-
"isOptional": false,
|
|
8573
|
-
"isAbstract": false,
|
|
8574
|
-
"name": "togglePlayPause"
|
|
6324
|
+
"isAbstract": false
|
|
8575
6325
|
},
|
|
8576
6326
|
{
|
|
8577
6327
|
"kind": "Method",
|
|
8578
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
6328
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#render:member(1)",
|
|
8579
6329
|
"docComment": "",
|
|
8580
6330
|
"excerptTokens": [
|
|
8581
6331
|
{
|
|
8582
6332
|
"kind": "Content",
|
|
8583
|
-
"text": "
|
|
6333
|
+
"text": "render(): "
|
|
8584
6334
|
},
|
|
8585
6335
|
{
|
|
8586
6336
|
"kind": "Content",
|
|
8587
|
-
"text": "
|
|
6337
|
+
"text": "this"
|
|
8588
6338
|
},
|
|
8589
6339
|
{
|
|
8590
6340
|
"kind": "Content",
|
|
@@ -8596,22 +6346,22 @@
|
|
|
8596
6346
|
"startIndex": 1,
|
|
8597
6347
|
"endIndex": 2
|
|
8598
6348
|
},
|
|
8599
|
-
"releaseTag": "
|
|
6349
|
+
"releaseTag": "Beta",
|
|
8600
6350
|
"isProtected": false,
|
|
8601
6351
|
"overloadIndex": 1,
|
|
8602
6352
|
"parameters": [],
|
|
8603
6353
|
"isOptional": false,
|
|
8604
6354
|
"isAbstract": false,
|
|
8605
|
-
"name": "
|
|
6355
|
+
"name": "render"
|
|
8606
6356
|
},
|
|
8607
6357
|
{
|
|
8608
6358
|
"kind": "Method",
|
|
8609
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8610
|
-
"docComment": "",
|
|
6359
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#setInitialVolume:member(1)",
|
|
6360
|
+
"docComment": "/**\n * Set the initial volume, which is preserved when playback is interrupted by an advertisement\n */\n",
|
|
8611
6361
|
"excerptTokens": [
|
|
8612
6362
|
{
|
|
8613
6363
|
"kind": "Content",
|
|
8614
|
-
"text": "
|
|
6364
|
+
"text": "setInitialVolume(): "
|
|
8615
6365
|
},
|
|
8616
6366
|
{
|
|
8617
6367
|
"kind": "Content",
|
|
@@ -8627,22 +6377,22 @@
|
|
|
8627
6377
|
"startIndex": 1,
|
|
8628
6378
|
"endIndex": 2
|
|
8629
6379
|
},
|
|
8630
|
-
"releaseTag": "
|
|
6380
|
+
"releaseTag": "Beta",
|
|
8631
6381
|
"isProtected": false,
|
|
8632
6382
|
"overloadIndex": 1,
|
|
8633
6383
|
"parameters": [],
|
|
8634
6384
|
"isOptional": false,
|
|
8635
6385
|
"isAbstract": false,
|
|
8636
|
-
"name": "
|
|
6386
|
+
"name": "setInitialVolume"
|
|
8637
6387
|
},
|
|
8638
6388
|
{
|
|
8639
6389
|
"kind": "Method",
|
|
8640
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
6390
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#setMuted:member(1)",
|
|
8641
6391
|
"docComment": "",
|
|
8642
6392
|
"excerptTokens": [
|
|
8643
6393
|
{
|
|
8644
6394
|
"kind": "Content",
|
|
8645
|
-
"text": "
|
|
6395
|
+
"text": "setMuted(value: "
|
|
8646
6396
|
},
|
|
8647
6397
|
{
|
|
8648
6398
|
"kind": "Content",
|
|
@@ -8666,12 +6416,12 @@
|
|
|
8666
6416
|
"startIndex": 3,
|
|
8667
6417
|
"endIndex": 4
|
|
8668
6418
|
},
|
|
8669
|
-
"releaseTag": "
|
|
6419
|
+
"releaseTag": "Beta",
|
|
8670
6420
|
"isProtected": false,
|
|
8671
6421
|
"overloadIndex": 1,
|
|
8672
6422
|
"parameters": [
|
|
8673
6423
|
{
|
|
8674
|
-
"parameterName": "
|
|
6424
|
+
"parameterName": "value",
|
|
8675
6425
|
"parameterTypeTokenRange": {
|
|
8676
6426
|
"startIndex": 1,
|
|
8677
6427
|
"endIndex": 2
|
|
@@ -8681,73 +6431,80 @@
|
|
|
8681
6431
|
],
|
|
8682
6432
|
"isOptional": false,
|
|
8683
6433
|
"isAbstract": false,
|
|
8684
|
-
"name": "
|
|
6434
|
+
"name": "setMuted"
|
|
8685
6435
|
},
|
|
8686
6436
|
{
|
|
8687
|
-
"kind": "
|
|
8688
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8689
|
-
"docComment": "",
|
|
6437
|
+
"kind": "Method",
|
|
6438
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#setVolume:member(1)",
|
|
6439
|
+
"docComment": "/**\n * Set the volume\n *\n * @remarks\n *\n * Initial volume can be restored later\n *\n * @param value - The volume value\n *\n * @param isInitialVolume - save as the initial volume\n */\n",
|
|
8690
6440
|
"excerptTokens": [
|
|
8691
6441
|
{
|
|
8692
6442
|
"kind": "Content",
|
|
8693
|
-
"text": "
|
|
6443
|
+
"text": "setVolume(value: "
|
|
8694
6444
|
},
|
|
8695
6445
|
{
|
|
8696
6446
|
"kind": "Content",
|
|
8697
|
-
"text": "
|
|
6447
|
+
"text": "number"
|
|
8698
6448
|
},
|
|
8699
6449
|
{
|
|
8700
|
-
"kind": "
|
|
8701
|
-
"text": "
|
|
8702
|
-
"canonicalReference": "!MouseEvent:interface"
|
|
6450
|
+
"kind": "Content",
|
|
6451
|
+
"text": ", isInitialVolume?: "
|
|
8703
6452
|
},
|
|
8704
6453
|
{
|
|
8705
6454
|
"kind": "Content",
|
|
8706
|
-
"text": "
|
|
6455
|
+
"text": "boolean"
|
|
8707
6456
|
},
|
|
8708
6457
|
{
|
|
8709
|
-
"kind": "
|
|
8710
|
-
"text": "
|
|
8711
|
-
"canonicalReference": "!TouchEvent:interface"
|
|
6458
|
+
"kind": "Content",
|
|
6459
|
+
"text": "): "
|
|
8712
6460
|
},
|
|
8713
6461
|
{
|
|
8714
6462
|
"kind": "Content",
|
|
8715
|
-
"text": "
|
|
6463
|
+
"text": "void"
|
|
8716
6464
|
},
|
|
8717
6465
|
{
|
|
8718
6466
|
"kind": "Content",
|
|
8719
6467
|
"text": ";"
|
|
8720
6468
|
}
|
|
8721
6469
|
],
|
|
8722
|
-
"
|
|
8723
|
-
"
|
|
8724
|
-
|
|
8725
|
-
"name": "updateDrag",
|
|
8726
|
-
"propertyTypeTokenRange": {
|
|
8727
|
-
"startIndex": 1,
|
|
6470
|
+
"isStatic": false,
|
|
6471
|
+
"returnTypeTokenRange": {
|
|
6472
|
+
"startIndex": 5,
|
|
8728
6473
|
"endIndex": 6
|
|
8729
6474
|
},
|
|
8730
|
-
"
|
|
6475
|
+
"releaseTag": "Beta",
|
|
8731
6476
|
"isProtected": false,
|
|
8732
|
-
"
|
|
6477
|
+
"overloadIndex": 1,
|
|
6478
|
+
"parameters": [
|
|
6479
|
+
{
|
|
6480
|
+
"parameterName": "value",
|
|
6481
|
+
"parameterTypeTokenRange": {
|
|
6482
|
+
"startIndex": 1,
|
|
6483
|
+
"endIndex": 2
|
|
6484
|
+
},
|
|
6485
|
+
"isOptional": false
|
|
6486
|
+
},
|
|
6487
|
+
{
|
|
6488
|
+
"parameterName": "isInitialVolume",
|
|
6489
|
+
"parameterTypeTokenRange": {
|
|
6490
|
+
"startIndex": 3,
|
|
6491
|
+
"endIndex": 4
|
|
6492
|
+
},
|
|
6493
|
+
"isOptional": true
|
|
6494
|
+
}
|
|
6495
|
+
],
|
|
6496
|
+
"isOptional": false,
|
|
6497
|
+
"isAbstract": false,
|
|
6498
|
+
"name": "setVolume"
|
|
8733
6499
|
},
|
|
8734
6500
|
{
|
|
8735
6501
|
"kind": "Method",
|
|
8736
|
-
"canonicalReference": "@gcorevideo/player!MediaControl#
|
|
8737
|
-
"docComment": "",
|
|
6502
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#stop:member(1)",
|
|
6503
|
+
"docComment": "/**\n * Stop the playback\n */\n",
|
|
8738
6504
|
"excerptTokens": [
|
|
8739
6505
|
{
|
|
8740
6506
|
"kind": "Content",
|
|
8741
|
-
"text": "
|
|
8742
|
-
},
|
|
8743
|
-
{
|
|
8744
|
-
"kind": "Reference",
|
|
8745
|
-
"text": "TimeProgress",
|
|
8746
|
-
"canonicalReference": "@gcorevideo/player!TimeProgress:type"
|
|
8747
|
-
},
|
|
8748
|
-
{
|
|
8749
|
-
"kind": "Content",
|
|
8750
|
-
"text": "): "
|
|
6507
|
+
"text": "stop(): "
|
|
8751
6508
|
},
|
|
8752
6509
|
{
|
|
8753
6510
|
"kind": "Content",
|
|
@@ -8760,30 +6517,51 @@
|
|
|
8760
6517
|
],
|
|
8761
6518
|
"isStatic": false,
|
|
8762
6519
|
"returnTypeTokenRange": {
|
|
8763
|
-
"startIndex":
|
|
8764
|
-
"endIndex":
|
|
6520
|
+
"startIndex": 1,
|
|
6521
|
+
"endIndex": 2
|
|
8765
6522
|
},
|
|
8766
|
-
"releaseTag": "
|
|
6523
|
+
"releaseTag": "Beta",
|
|
8767
6524
|
"isProtected": false,
|
|
8768
6525
|
"overloadIndex": 1,
|
|
8769
|
-
"parameters": [
|
|
6526
|
+
"parameters": [],
|
|
6527
|
+
"isOptional": false,
|
|
6528
|
+
"isAbstract": false,
|
|
6529
|
+
"name": "stop"
|
|
6530
|
+
},
|
|
6531
|
+
{
|
|
6532
|
+
"kind": "Property",
|
|
6533
|
+
"canonicalReference": "@gcorevideo/player!MediaControl#supportedVersion:member",
|
|
6534
|
+
"docComment": "",
|
|
6535
|
+
"excerptTokens": [
|
|
8770
6536
|
{
|
|
8771
|
-
"
|
|
8772
|
-
"
|
|
8773
|
-
|
|
8774
|
-
|
|
8775
|
-
|
|
8776
|
-
"
|
|
6537
|
+
"kind": "Content",
|
|
6538
|
+
"text": "get supportedVersion(): "
|
|
6539
|
+
},
|
|
6540
|
+
{
|
|
6541
|
+
"kind": "Content",
|
|
6542
|
+
"text": "{\n min: string;\n }"
|
|
6543
|
+
},
|
|
6544
|
+
{
|
|
6545
|
+
"kind": "Content",
|
|
6546
|
+
"text": ";"
|
|
8777
6547
|
}
|
|
8778
6548
|
],
|
|
6549
|
+
"isReadonly": true,
|
|
8779
6550
|
"isOptional": false,
|
|
8780
|
-
"
|
|
8781
|
-
"name": "
|
|
6551
|
+
"releaseTag": "Beta",
|
|
6552
|
+
"name": "supportedVersion",
|
|
6553
|
+
"propertyTypeTokenRange": {
|
|
6554
|
+
"startIndex": 1,
|
|
6555
|
+
"endIndex": 2
|
|
6556
|
+
},
|
|
6557
|
+
"isStatic": false,
|
|
6558
|
+
"isProtected": false,
|
|
6559
|
+
"isAbstract": false
|
|
8782
6560
|
},
|
|
8783
6561
|
{
|
|
8784
6562
|
"kind": "Property",
|
|
8785
6563
|
"canonicalReference": "@gcorevideo/player!MediaControl#volume:member",
|
|
8786
|
-
"docComment": "",
|
|
6564
|
+
"docComment": "/**\n * Current volume\n */\n",
|
|
8787
6565
|
"excerptTokens": [
|
|
8788
6566
|
{
|
|
8789
6567
|
"kind": "Content",
|
|
@@ -8800,7 +6578,7 @@
|
|
|
8800
6578
|
],
|
|
8801
6579
|
"isReadonly": true,
|
|
8802
6580
|
"isOptional": false,
|
|
8803
|
-
"releaseTag": "
|
|
6581
|
+
"releaseTag": "Beta",
|
|
8804
6582
|
"name": "volume",
|
|
8805
6583
|
"propertyTypeTokenRange": {
|
|
8806
6584
|
"startIndex": 1,
|
|
@@ -8817,6 +6595,32 @@
|
|
|
8817
6595
|
},
|
|
8818
6596
|
"implementsTokenRanges": []
|
|
8819
6597
|
},
|
|
6598
|
+
{
|
|
6599
|
+
"kind": "TypeAlias",
|
|
6600
|
+
"canonicalReference": "@gcorevideo/player!MediaControlElement:type",
|
|
6601
|
+
"docComment": "/**\n * @beta\n */\n",
|
|
6602
|
+
"excerptTokens": [
|
|
6603
|
+
{
|
|
6604
|
+
"kind": "Content",
|
|
6605
|
+
"text": "export type MediaControlElement = "
|
|
6606
|
+
},
|
|
6607
|
+
{
|
|
6608
|
+
"kind": "Content",
|
|
6609
|
+
"text": "'clipText' | 'pip' | 'seekBarContainer'"
|
|
6610
|
+
},
|
|
6611
|
+
{
|
|
6612
|
+
"kind": "Content",
|
|
6613
|
+
"text": ";"
|
|
6614
|
+
}
|
|
6615
|
+
],
|
|
6616
|
+
"fileUrlPath": "src/plugins/media-control/MediaControl.ts",
|
|
6617
|
+
"releaseTag": "Beta",
|
|
6618
|
+
"name": "MediaControlElement",
|
|
6619
|
+
"typeTokenRange": {
|
|
6620
|
+
"startIndex": 1,
|
|
6621
|
+
"endIndex": 2
|
|
6622
|
+
}
|
|
6623
|
+
},
|
|
8820
6624
|
{
|
|
8821
6625
|
"kind": "TypeAlias",
|
|
8822
6626
|
"canonicalReference": "@gcorevideo/player!MediaTransport:type",
|
|
@@ -15285,7 +13089,7 @@
|
|
|
15285
13089
|
{
|
|
15286
13090
|
"kind": "Reference",
|
|
15287
13091
|
"text": "ZeptoResult",
|
|
15288
|
-
"canonicalReference": "@gcorevideo/player
|
|
13092
|
+
"canonicalReference": "@gcorevideo/player!ZeptoResult:type"
|
|
15289
13093
|
},
|
|
15290
13094
|
{
|
|
15291
13095
|
"kind": "Content",
|
|
@@ -15386,7 +13190,7 @@
|
|
|
15386
13190
|
{
|
|
15387
13191
|
"kind": "Reference",
|
|
15388
13192
|
"text": "ZeptoResult",
|
|
15389
|
-
"canonicalReference": "@gcorevideo/player
|
|
13193
|
+
"canonicalReference": "@gcorevideo/player!ZeptoResult:type"
|
|
15390
13194
|
},
|
|
15391
13195
|
{
|
|
15392
13196
|
"kind": "Content",
|
|
@@ -16522,6 +14326,46 @@
|
|
|
16522
14326
|
"name": "FADE"
|
|
16523
14327
|
}
|
|
16524
14328
|
]
|
|
14329
|
+
},
|
|
14330
|
+
{
|
|
14331
|
+
"kind": "TypeAlias",
|
|
14332
|
+
"canonicalReference": "@gcorevideo/player!ZeptoResult:type",
|
|
14333
|
+
"docComment": "/**\n * @beta\n */\n",
|
|
14334
|
+
"excerptTokens": [
|
|
14335
|
+
{
|
|
14336
|
+
"kind": "Content",
|
|
14337
|
+
"text": "export type ZeptoResult = "
|
|
14338
|
+
},
|
|
14339
|
+
{
|
|
14340
|
+
"kind": "Reference",
|
|
14341
|
+
"text": "ReturnType",
|
|
14342
|
+
"canonicalReference": "!ReturnType:type"
|
|
14343
|
+
},
|
|
14344
|
+
{
|
|
14345
|
+
"kind": "Content",
|
|
14346
|
+
"text": "<typeof "
|
|
14347
|
+
},
|
|
14348
|
+
{
|
|
14349
|
+
"kind": "Reference",
|
|
14350
|
+
"text": "$",
|
|
14351
|
+
"canonicalReference": "!unknown:member"
|
|
14352
|
+
},
|
|
14353
|
+
{
|
|
14354
|
+
"kind": "Content",
|
|
14355
|
+
"text": ">"
|
|
14356
|
+
},
|
|
14357
|
+
{
|
|
14358
|
+
"kind": "Content",
|
|
14359
|
+
"text": ";"
|
|
14360
|
+
}
|
|
14361
|
+
],
|
|
14362
|
+
"fileUrlPath": "src/utils/types.ts",
|
|
14363
|
+
"releaseTag": "Beta",
|
|
14364
|
+
"name": "ZeptoResult",
|
|
14365
|
+
"typeTokenRange": {
|
|
14366
|
+
"startIndex": 1,
|
|
14367
|
+
"endIndex": 5
|
|
14368
|
+
}
|
|
16525
14369
|
}
|
|
16526
14370
|
]
|
|
16527
14371
|
}
|