@gcorevideo/player 2.26.1 → 2.26.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/README.md +5 -5
  2. package/dist/core.js +1 -1
  3. package/dist/index.css +893 -893
  4. package/dist/index.embed.js +42 -29
  5. package/dist/index.js +52 -39
  6. package/dist/player.d.ts +14 -15
  7. package/docs/api/player.audiotracks.md +0 -3
  8. package/docs/api/player.contextmenu._constructor_.md +0 -3
  9. package/docs/api/player.contextmenu.md +1 -4
  10. package/docs/api/player.contextmenupluginsettings.md +1 -4
  11. package/docs/api/player.contextmenupluginsettings.options.md +0 -3
  12. package/docs/api/player.md +14 -14
  13. package/docs/api/player.mediacontrol._constructor_.md +0 -3
  14. package/docs/api/player.mediacontrol.currentseekpos.md +0 -3
  15. package/docs/api/player.mediacontrol.defaultsettings.md +0 -3
  16. package/docs/api/player.mediacontrol.disable.md +0 -3
  17. package/docs/api/player.mediacontrol.enable.md +0 -3
  18. package/docs/api/player.mediacontrol.extendsettings.md +0 -3
  19. package/docs/api/player.mediacontrol.getavailableheight.md +0 -3
  20. package/docs/api/player.mediacontrol.getavailablepopupheight.md +0 -3
  21. package/docs/api/player.mediacontrol.md +11 -22
  22. package/docs/api/player.mediacontrol.mount.md +0 -3
  23. package/docs/api/player.mediacontrol.muted.md +0 -3
  24. package/docs/api/player.mediacontrol.setinitialvolume.md +0 -3
  25. package/docs/api/player.mediacontrol.setvolume.md +0 -3
  26. package/docs/api/player.mediacontrol.slot.md +0 -3
  27. package/docs/api/player.mediacontrol.toggleelement.md +0 -3
  28. package/docs/api/player.mediacontrol.volume.md +0 -3
  29. package/docs/api/player.mediacontrolelement.md +0 -3
  30. package/docs/api/player.mediacontrolsettings.md +0 -3
  31. package/docs/api/player.mediacontrolslotmountpoint.md +0 -3
  32. package/docs/api/player.playbackrate._constructor_.md +0 -3
  33. package/docs/api/player.playbackrate.md +1 -4
  34. package/docs/api/player.seektime.attributes.md +0 -3
  35. package/docs/api/player.seektime.md +0 -9
  36. package/docs/api/player.seektime.name.md +0 -3
  37. package/docs/api/player.seektime.supportedversion.md +0 -3
  38. package/docs/api/player.seektimesettings.md +0 -3
  39. package/docs/api/player.standardmediacontrolelement.md +0 -3
  40. package/docs/api/player.thumbnails._constructor_.md +0 -3
  41. package/docs/api/player.thumbnails.md +1 -6
  42. package/docs/api/player.thumbnails.render.md +0 -3
  43. package/docs/api/player.thumbnailspluginsettings.md +0 -3
  44. package/docs/api/player.volumefade._constructor_.md +0 -3
  45. package/docs/api/player.volumefade.md +1 -4
  46. package/lib/plugins/audio-selector/AudioTracks.d.ts +1 -1
  47. package/lib/plugins/audio-selector/AudioTracks.js +1 -1
  48. package/lib/plugins/bottom-gear/BottomGear.d.ts.map +1 -1
  49. package/lib/plugins/bottom-gear/BottomGear.js +3 -1
  50. package/lib/plugins/context-menu/ContextMenu.d.ts +2 -2
  51. package/lib/plugins/context-menu/ContextMenu.js +1 -1
  52. package/lib/plugins/level-selector/QualityLevels.js +1 -1
  53. package/lib/plugins/media-control/MediaControl.d.ts +5 -5
  54. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  55. package/lib/plugins/media-control/MediaControl.js +7 -6
  56. package/lib/plugins/playback-rate/PlaybackRate.d.ts +1 -1
  57. package/lib/plugins/playback-rate/PlaybackRate.js +1 -1
  58. package/lib/plugins/seek-time/SeekTime.d.ts +2 -3
  59. package/lib/plugins/seek-time/SeekTime.d.ts.map +1 -1
  60. package/lib/plugins/seek-time/SeekTime.js +1 -1
  61. package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
  62. package/lib/plugins/source-controller/SourceController.js +16 -8
  63. package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.d.ts.map +1 -1
  64. package/lib/plugins/spinner-three-bounce/SpinnerThreeBounce.js +4 -2
  65. package/lib/plugins/thumbnails/Thumbnails.d.ts +2 -2
  66. package/lib/plugins/thumbnails/Thumbnails.js +1 -1
  67. package/lib/plugins/volume-fade/VolumeFade.d.ts +1 -1
  68. package/lib/plugins/volume-fade/VolumeFade.js +1 -1
  69. package/package.json +1 -1
  70. package/release.txt +395 -0
  71. package/src/plugins/audio-selector/AudioTracks.ts +1 -1
  72. package/src/plugins/bottom-gear/BottomGear.ts +1 -0
  73. package/src/plugins/context-menu/ContextMenu.ts +2 -2
  74. package/src/plugins/level-selector/QualityLevels.ts +1 -1
  75. package/src/plugins/media-control/MediaControl.ts +13 -12
  76. package/src/plugins/playback-rate/PlaybackRate.ts +1 -1
  77. package/src/plugins/seek-time/SeekTime.ts +2 -3
  78. package/src/plugins/source-controller/SourceController.ts +19 -11
  79. package/src/plugins/source-controller/__tests__/SourceController.test.ts +31 -18
  80. package/src/plugins/spinner-three-bounce/SpinnerThreeBounce.ts +4 -2
  81. package/src/plugins/thumbnails/Thumbnails.ts +2 -2
  82. package/src/plugins/volume-fade/VolumeFade.ts +1 -1
  83. package/temp/player.api.json +52 -52
  84. package/tsconfig.tsbuildinfo +1 -1
@@ -4,11 +4,14 @@ import FakeTimers from '@sinonjs/fake-timers'
4
4
  import { SourceController } from '../SourceController'
5
5
  import { PlaybackErrorCode } from '../../../playback.types.js'
6
6
  import {
7
+ createMockContainer,
7
8
  createMockCore,
8
9
  createMockPlayback,
9
10
  createMockPlugin,
10
11
  createSpinnerPlugin,
11
12
  } from '../../../testUtils.js'
13
+ import { Events } from '@clappr/core'
14
+ import { SpinnerEvents } from '../../spinner-three-bounce/SpinnerThreeBounce.js'
12
15
 
13
16
  // import { LogTracer, Logger, setTracer } from '@gcorevideo/utils'
14
17
 
@@ -77,19 +80,22 @@ describe('SourceController', () => {
77
80
  describe('on fatal playback failure', () => {
78
81
  let core: any
79
82
  let nextPlayback: any
83
+ let nextContainer: any
80
84
  describe('basically', () => {
81
85
  beforeEach(() => {
82
86
  core = createMockCore({
83
87
  sources: MOCK_SOURCES,
84
88
  })
85
89
  const _ = new SourceController(core)
86
- core.emit('core:ready')
87
- core.emit('core:active:container:changed')
88
- core.activePlayback.emit('playback:error', {
90
+ core.emit(Events.CORE_READY)
91
+ core.emit(Events.CORE_ACTIVE_CONTAINER_CHANGED)
92
+ core.activePlayback.emit(Events.PLAYBACK_ERROR, {
89
93
  code: PlaybackErrorCode.MediaSourceUnavailable,
90
94
  })
91
- nextPlayback = createMockPlayback()
95
+ nextContainer = createMockContainer()
96
+ nextPlayback = nextContainer.playback
92
97
  core.activePlayback = nextPlayback
98
+ core.activeContainer = nextContainer
93
99
  })
94
100
  it('should load the next source after a delay', async () => {
95
101
  expect(core.load).not.toHaveBeenCalled()
@@ -124,7 +130,7 @@ describe('SourceController', () => {
124
130
  return spinner
125
131
  }
126
132
  })
127
- core.emit('core:active:container:changed')
133
+ core.emit(Events.CORE_ACTIVE_CONTAINER_CHANGED)
128
134
  })
129
135
  it('should disable the poster', async () => {
130
136
  expect(poster.disable).toHaveBeenCalled()
@@ -147,18 +153,22 @@ describe('SourceController', () => {
147
153
  }
148
154
  })
149
155
  const _ = new SourceController(core)
150
- core.emit('core:ready')
151
- core.emit('core:active:container:changed')
152
- core.activePlayback.emit('playback:error', {
156
+ core.emit(Events.CORE_READY)
157
+ core.emit(Events.CORE_ACTIVE_CONTAINER_CHANGED)
158
+ core.activePlayback.emit(Events.PLAYBACK_ERROR, {
153
159
  code: PlaybackErrorCode.MediaSourceUnavailable,
154
160
  })
155
- nextPlayback = createMockPlayback()
161
+ nextContainer = createMockContainer()
162
+ nextPlayback = nextContainer.playback
156
163
  core.activePlayback = nextPlayback
164
+ core.activeContainer = nextContainer
157
165
  })
158
166
  it('should sync with the spinner before reloading the source', async () => {
159
167
  await clock.tickAsync(1000)
160
168
  expect(core.load).not.toHaveBeenCalled()
161
- spinner.emit('plugins:spinner:sync')
169
+ spinner.emit(SpinnerEvents.SYNC, {
170
+ elapsedTime: 1000,
171
+ })
162
172
  expect(core.load).toHaveBeenCalled()
163
173
  })
164
174
  })
@@ -171,14 +181,16 @@ describe('SourceController', () => {
171
181
  sources: MOCK_SOURCES,
172
182
  })
173
183
  const _ = new SourceController(core)
174
- core.emit('core:ready')
175
- core.emit('core:active:container:changed')
176
- core.activePlayback.emit('playback:error', {
184
+ core.emit(Events.CORE_READY)
185
+ core.emit(Events.CORE_ACTIVE_CONTAINER_CHANGED)
186
+ core.activePlayback.emit(Events.PLAYBACK_ERROR, {
177
187
  code: PlaybackErrorCode.MediaSourceUnavailable,
178
188
  })
179
189
  await clock.tickAsync(1000)
180
- nextPlayback = createMockPlayback()
190
+ nextContainer = createMockContainer()
191
+ nextPlayback = nextContainer.playback
181
192
  core.activePlayback = nextPlayback
193
+ core.activeContainer = nextContainer
182
194
  poster = createMockPlugin()
183
195
  spinner = createSpinnerPlugin()
184
196
  core.activeContainer.getPlugin.mockImplementation((name: string) => {
@@ -189,9 +201,10 @@ describe('SourceController', () => {
189
201
  return spinner
190
202
  }
191
203
  })
192
- core.emit('core:ready')
193
- core.emit('core:active:container:changed')
194
- nextPlayback.emit('playback:play')
204
+ core.emit(Events.CORE_READY)
205
+ core.emit(Events.CORE_ACTIVE_CONTAINER_CHANGED)
206
+ nextPlayback.emit(Events.PLAYBACK_PLAY)
207
+ nextContainer.emit(Events.CONTAINER_PLAY, 'Container', {})
195
208
  })
196
209
  it('should enable the poster', async () => {
197
210
  expect(poster.enable).toHaveBeenCalled()
@@ -206,7 +219,7 @@ describe('SourceController', () => {
206
219
  it('should do nothing', async () => {
207
220
  nextPlayback.emit(event)
208
221
  await clock.tickAsync(1000)
209
- nextPlayback.emit('playback:play')
222
+ nextPlayback.emit(Events.PLAYBACK_PLAY)
210
223
  await clock.tickAsync(1000)
211
224
  expect(poster.enable).toHaveBeenCalledTimes(1)
212
225
  expect(spinner.hide).toHaveBeenCalledTimes(1)
@@ -166,8 +166,10 @@ export class SpinnerThreeBounce extends UIContainerPlugin {
166
166
  */
167
167
  override render() {
168
168
  this.$el.html(this.template())
169
- this.el.firstElementChild?.addEventListener('animationiteration', () => {
170
- this.trigger(SpinnerEvents.SYNC)
169
+ this.el.firstElementChild?.addEventListener('animationiteration', (event) => {
170
+ this.trigger(SpinnerEvents.SYNC, {
171
+ elapsedTime: (event as AnimationEvent).elapsedTime,
172
+ })
171
173
  })
172
174
  this.container.$el.append(this.$el[0])
173
175
  if (this.container.buffering) {
@@ -23,7 +23,7 @@ import { loadImageDimensions } from './utils.js'
23
23
 
24
24
  /**
25
25
  * Plugin configuration options for the thumbnails plugin.
26
- * @beta
26
+ * @public
27
27
  */
28
28
  export type ThumbnailsPluginSettings = {
29
29
  backdropHeight?: number
@@ -49,7 +49,7 @@ const T = 'plugins.thumbnails'
49
49
 
50
50
  /**
51
51
  * `PLUGIN` that displays the thumbnails of the video when available.
52
- * @beta
52
+ * @public
53
53
  * @remarks
54
54
  * The plugin needs specially crafted VTT file with a thumbnail sprite sheet to work.
55
55
  * The VTT consist of timestamp records followed by a thumbnail area
@@ -33,7 +33,7 @@ export type VolumeFadeSettings = {
33
33
 
34
34
  /**
35
35
  * `PLUGIN` that mutes the sound and fades it in when the mouse is over the player.
36
- * @beta
36
+ * @public
37
37
  *
38
38
  * @remarks
39
39
  * When the user moves the mouse over and away from the player, the sound is unmuted and unmuted with a fade effect.
@@ -175,7 +175,7 @@
175
175
  {
176
176
  "kind": "Class",
177
177
  "canonicalReference": "@gcorevideo/player!AudioTracks:class",
178
- "docComment": "/**\n * `PLUGIN` that makes possible to switch audio tracks via the media control UI.\n *\n * @remarks\n *\n * The plugin is activated when there are multiple audio tracks available. The plugin adds a button showing the current audio track and a dropdown to switch to another audio track. Depends on:\n *\n * - {@link MediaControl}\n *\n * @beta\n */\n",
178
+ "docComment": "/**\n * `PLUGIN` that makes possible to switch audio tracks via the media control UI.\n *\n * @remarks\n *\n * The plugin is activated when there are multiple audio tracks available. The plugin adds a button showing the current audio track and a dropdown to switch to another audio track. Depends on:\n *\n * - {@link MediaControl}\n *\n * @public\n */\n",
179
179
  "excerptTokens": [
180
180
  {
181
181
  "kind": "Content",
@@ -192,7 +192,7 @@
192
192
  }
193
193
  ],
194
194
  "fileUrlPath": "src/plugins/audio-selector/AudioTracks.ts",
195
- "releaseTag": "Beta",
195
+ "releaseTag": "Public",
196
196
  "isAbstract": false,
197
197
  "name": "AudioTracks",
198
198
  "preserveMemberOrder": false,
@@ -1865,7 +1865,7 @@
1865
1865
  {
1866
1866
  "kind": "Class",
1867
1867
  "canonicalReference": "@gcorevideo/player!ContextMenu:class",
1868
- "docComment": "/**\n * `PLUGIN` that displays a small context menu when clicked on the player container.\n *\n * @remarks\n *\n * Configuration options - {@link ContextMenuPluginSettings}\n *\n * Should not be used together with {@link ClickToPause} plugin\n *\n * @beta\n */\n",
1868
+ "docComment": "/**\n * `PLUGIN` that displays a small context menu when clicked on the player container.\n *\n * @remarks\n *\n * Configuration options - {@link ContextMenuPluginSettings}\n *\n * Should not be used together with {@link ClickToPause} plugin\n *\n * @public\n */\n",
1869
1869
  "excerptTokens": [
1870
1870
  {
1871
1871
  "kind": "Content",
@@ -1882,7 +1882,7 @@
1882
1882
  }
1883
1883
  ],
1884
1884
  "fileUrlPath": "src/plugins/context-menu/ContextMenu.ts",
1885
- "releaseTag": "Beta",
1885
+ "releaseTag": "Public",
1886
1886
  "isAbstract": false,
1887
1887
  "name": "ContextMenu",
1888
1888
  "preserveMemberOrder": false,
@@ -1906,7 +1906,7 @@
1906
1906
  "text": ");"
1907
1907
  }
1908
1908
  ],
1909
- "releaseTag": "Beta",
1909
+ "releaseTag": "Public",
1910
1910
  "isProtected": false,
1911
1911
  "overloadIndex": 1,
1912
1912
  "parameters": [
@@ -1930,7 +1930,7 @@
1930
1930
  {
1931
1931
  "kind": "Interface",
1932
1932
  "canonicalReference": "@gcorevideo/player!ContextMenuPluginSettings:interface",
1933
- "docComment": "/**\n * Context menu plugin settings\n *\n * @beta\n */\n",
1933
+ "docComment": "/**\n * Context menu plugin settings\n *\n * @public\n */\n",
1934
1934
  "excerptTokens": [
1935
1935
  {
1936
1936
  "kind": "Content",
@@ -1938,7 +1938,7 @@
1938
1938
  }
1939
1939
  ],
1940
1940
  "fileUrlPath": "src/plugins/context-menu/ContextMenu.ts",
1941
- "releaseTag": "Beta",
1941
+ "releaseTag": "Public",
1942
1942
  "name": "ContextMenuPluginSettings",
1943
1943
  "preserveMemberOrder": false,
1944
1944
  "members": [
@@ -1967,7 +1967,7 @@
1967
1967
  ],
1968
1968
  "isReadonly": false,
1969
1969
  "isOptional": true,
1970
- "releaseTag": "Beta",
1970
+ "releaseTag": "Public",
1971
1971
  "name": "options",
1972
1972
  "propertyTypeTokenRange": {
1973
1973
  "startIndex": 1,
@@ -3390,7 +3390,7 @@
3390
3390
  {
3391
3391
  "kind": "Class",
3392
3392
  "canonicalReference": "@gcorevideo/player!MediaControl:class",
3393
- "docComment": "/**\n * `PLUGIN` that provides framework for building media control UI.\n *\n * @remarks\n *\n * The methods exposed are to be used by the other plugins that extend the media control UI.\n *\n * Configuration options (root level)\n *\n * - `hideMediaControlDelay`: number - specifies the delay in milliseconds before the media control UI is hidden after the last user interaction\n *\n * - `mediaControl`: {@link MediaControlSettings} - specifies the media control dashboard layout\n *\n * - `persistConfig`: boolean - `common` option, makes the plugin persist the media control settings\n *\n * - `chromeless`: boolean - `common` option, hides the media control UI\n *\n * @beta\n */\n",
3393
+ "docComment": "/**\n * `PLUGIN` that provides framework for building media control UI.\n *\n * @remarks\n *\n * The methods exposed are to be used by the other plugins that extend the media control UI.\n *\n * Configuration options (root level)\n *\n * - `hideMediaControlDelay`: number - specifies the delay in milliseconds before the media control UI is hidden after the last user interaction\n *\n * - `mediaControl`: {@link MediaControlSettings} - specifies the media control dashboard layout\n *\n * - `persistConfig`: boolean - `common` option, makes the plugin persist the media control settings\n *\n * - `chromeless`: boolean - `common` option, hides the media control UI\n *\n * @public\n */\n",
3394
3394
  "excerptTokens": [
3395
3395
  {
3396
3396
  "kind": "Content",
@@ -3407,7 +3407,7 @@
3407
3407
  }
3408
3408
  ],
3409
3409
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
3410
- "releaseTag": "Beta",
3410
+ "releaseTag": "Public",
3411
3411
  "isAbstract": false,
3412
3412
  "name": "MediaControl",
3413
3413
  "preserveMemberOrder": false,
@@ -3431,7 +3431,7 @@
3431
3431
  "text": ");"
3432
3432
  }
3433
3433
  ],
3434
- "releaseTag": "Beta",
3434
+ "releaseTag": "Public",
3435
3435
  "isProtected": false,
3436
3436
  "overloadIndex": 1,
3437
3437
  "parameters": [
@@ -3465,7 +3465,7 @@
3465
3465
  ],
3466
3466
  "isReadonly": true,
3467
3467
  "isOptional": false,
3468
- "releaseTag": "Beta",
3468
+ "releaseTag": "Public",
3469
3469
  "name": "currentSeekPos",
3470
3470
  "propertyTypeTokenRange": {
3471
3471
  "startIndex": 1,
@@ -3498,7 +3498,7 @@
3498
3498
  "startIndex": 1,
3499
3499
  "endIndex": 2
3500
3500
  },
3501
- "releaseTag": "Beta",
3501
+ "releaseTag": "Public",
3502
3502
  "isProtected": false,
3503
3503
  "overloadIndex": 1,
3504
3504
  "parameters": [],
@@ -3529,7 +3529,7 @@
3529
3529
  "startIndex": 1,
3530
3530
  "endIndex": 2
3531
3531
  },
3532
- "releaseTag": "Beta",
3532
+ "releaseTag": "Public",
3533
3533
  "isProtected": false,
3534
3534
  "overloadIndex": 1,
3535
3535
  "parameters": [],
@@ -3560,7 +3560,7 @@
3560
3560
  "startIndex": 1,
3561
3561
  "endIndex": 2
3562
3562
  },
3563
- "releaseTag": "Beta",
3563
+ "releaseTag": "Public",
3564
3564
  "isProtected": false,
3565
3565
  "overloadIndex": 1,
3566
3566
  "parameters": [],
@@ -3613,7 +3613,7 @@
3613
3613
  "startIndex": 6,
3614
3614
  "endIndex": 7
3615
3615
  },
3616
- "releaseTag": "Beta",
3616
+ "releaseTag": "Public",
3617
3617
  "isProtected": false,
3618
3618
  "overloadIndex": 1,
3619
3619
  "parameters": [
@@ -3653,7 +3653,7 @@
3653
3653
  "startIndex": 1,
3654
3654
  "endIndex": 2
3655
3655
  },
3656
- "releaseTag": "Beta",
3656
+ "releaseTag": "Public",
3657
3657
  "isProtected": false,
3658
3658
  "overloadIndex": 1,
3659
3659
  "parameters": [],
@@ -3684,7 +3684,7 @@
3684
3684
  "startIndex": 1,
3685
3685
  "endIndex": 2
3686
3686
  },
3687
- "releaseTag": "Beta",
3687
+ "releaseTag": "Public",
3688
3688
  "isProtected": false,
3689
3689
  "overloadIndex": 1,
3690
3690
  "parameters": [],
@@ -3733,7 +3733,7 @@
3733
3733
  "startIndex": 5,
3734
3734
  "endIndex": 6
3735
3735
  },
3736
- "releaseTag": "Beta",
3736
+ "releaseTag": "Public",
3737
3737
  "isProtected": false,
3738
3738
  "overloadIndex": 1,
3739
3739
  "parameters": [
@@ -3778,7 +3778,7 @@
3778
3778
  ],
3779
3779
  "isReadonly": true,
3780
3780
  "isOptional": false,
3781
- "releaseTag": "Beta",
3781
+ "releaseTag": "Public",
3782
3782
  "name": "muted",
3783
3783
  "propertyTypeTokenRange": {
3784
3784
  "startIndex": 1,
@@ -3811,7 +3811,7 @@
3811
3811
  "startIndex": 1,
3812
3812
  "endIndex": 2
3813
3813
  },
3814
- "releaseTag": "Beta",
3814
+ "releaseTag": "Public",
3815
3815
  "isProtected": false,
3816
3816
  "overloadIndex": 1,
3817
3817
  "parameters": [],
@@ -3858,7 +3858,7 @@
3858
3858
  "startIndex": 5,
3859
3859
  "endIndex": 6
3860
3860
  },
3861
- "releaseTag": "Beta",
3861
+ "releaseTag": "Public",
3862
3862
  "isProtected": false,
3863
3863
  "overloadIndex": 1,
3864
3864
  "parameters": [
@@ -3924,7 +3924,7 @@
3924
3924
  "startIndex": 5,
3925
3925
  "endIndex": 6
3926
3926
  },
3927
- "releaseTag": "Beta",
3927
+ "releaseTag": "Public",
3928
3928
  "isProtected": false,
3929
3929
  "overloadIndex": 1,
3930
3930
  "parameters": [
@@ -3989,7 +3989,7 @@
3989
3989
  "startIndex": 5,
3990
3990
  "endIndex": 6
3991
3991
  },
3992
- "releaseTag": "Beta",
3992
+ "releaseTag": "Public",
3993
3993
  "isProtected": false,
3994
3994
  "overloadIndex": 1,
3995
3995
  "parameters": [
@@ -4034,7 +4034,7 @@
4034
4034
  ],
4035
4035
  "isReadonly": true,
4036
4036
  "isOptional": false,
4037
- "releaseTag": "Beta",
4037
+ "releaseTag": "Public",
4038
4038
  "name": "volume",
4039
4039
  "propertyTypeTokenRange": {
4040
4040
  "startIndex": 1,
@@ -4054,7 +4054,7 @@
4054
4054
  {
4055
4055
  "kind": "TypeAlias",
4056
4056
  "canonicalReference": "@gcorevideo/player!MediaControlElement:type",
4057
- "docComment": "/**\n * Media control element. Each element's token in the media control layout settings determines where the element is rendered.\n *\n * @remarks\n *\n * Standard media control elements are defined in the {@link StandardMediaControlElement} type. Custom media control elements can be identified by a unique token.\n *\n * @beta\n */\n",
4057
+ "docComment": "/**\n * Media control element. Each element's token in the media control layout settings determines where the element is rendered.\n *\n * @remarks\n *\n * Standard media control elements are defined in the {@link StandardMediaControlElement} type. Custom media control elements can be identified by a unique token.\n *\n * @public\n */\n",
4058
4058
  "excerptTokens": [
4059
4059
  {
4060
4060
  "kind": "Content",
@@ -4070,7 +4070,7 @@
4070
4070
  }
4071
4071
  ],
4072
4072
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
4073
- "releaseTag": "Beta",
4073
+ "releaseTag": "Public",
4074
4074
  "name": "MediaControlElement",
4075
4075
  "typeTokenRange": {
4076
4076
  "startIndex": 1,
@@ -4080,7 +4080,7 @@
4080
4080
  {
4081
4081
  "kind": "TypeAlias",
4082
4082
  "canonicalReference": "@gcorevideo/player!MediaControlSettings:type",
4083
- "docComment": "/**\n * Specifies the layout of media control elements. Actual elements will be rendered according to the playback settings. Custom elements rendered by the plugins will be mounted at the specified locations.\n *\n * @beta\n */\n",
4083
+ "docComment": "/**\n * Specifies the layout of media control elements. Actual elements will be rendered according to the playback settings. Custom elements rendered by the plugins will be mounted at the specified locations.\n *\n * @public\n */\n",
4084
4084
  "excerptTokens": [
4085
4085
  {
4086
4086
  "kind": "Content",
@@ -4123,7 +4123,7 @@
4123
4123
  }
4124
4124
  ],
4125
4125
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
4126
- "releaseTag": "Beta",
4126
+ "releaseTag": "Public",
4127
4127
  "name": "MediaControlSettings",
4128
4128
  "typeTokenRange": {
4129
4129
  "startIndex": 1,
@@ -4133,7 +4133,7 @@
4133
4133
  {
4134
4134
  "kind": "TypeAlias",
4135
4135
  "canonicalReference": "@gcorevideo/player!MediaControlSlotMountPoint:type",
4136
- "docComment": "/**\n * Identifies a location for mounting custom media control elements.\n *\n * @beta\n */\n",
4136
+ "docComment": "/**\n * Identifies a location for mounting custom media control elements.\n *\n * @public\n */\n",
4137
4137
  "excerptTokens": [
4138
4138
  {
4139
4139
  "kind": "Content",
@@ -4149,7 +4149,7 @@
4149
4149
  }
4150
4150
  ],
4151
4151
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
4152
- "releaseTag": "Beta",
4152
+ "releaseTag": "Public",
4153
4153
  "name": "MediaControlSlotMountPoint",
4154
4154
  "typeTokenRange": {
4155
4155
  "startIndex": 1,
@@ -5030,7 +5030,7 @@
5030
5030
  {
5031
5031
  "kind": "Class",
5032
5032
  "canonicalReference": "@gcorevideo/player!PlaybackRate:class",
5033
- "docComment": "/**\n * `PLUGIN` that allows changing the playback speed of the video.\n *\n * @remarks\n *\n * Depends on:\n *\n * - {@link MediaControl}\n *\n * - {@link BottomGear}\n *\n * It renders an option in the gear menu, which opens a dropdown with the options to change the playback rate. Note that the playback rate change is supported only for VOD or DVR-enabled live streams.\n *\n * Plugin settings - {@link PlaybackRateSettings}\n *\n * @example\n * ```ts\n * import { Player, PlaybackRateSettings } from '@gcorevideo/player'\n * Player.registerPlugin(PlaybackRate)\n * const player = new Player({\n * playbackRate: {\n * options: [\n * { value: 0.5, label: '0.5x' },\n * { value: 1, label: '1x' },\n * ],\n * defaultValue: 1,\n * },\n * })\n * ```\n *\n * @beta\n */\n",
5033
+ "docComment": "/**\n * `PLUGIN` that allows changing the playback speed of the video.\n *\n * @remarks\n *\n * Depends on:\n *\n * - {@link MediaControl}\n *\n * - {@link BottomGear}\n *\n * It renders an option in the gear menu, which opens a dropdown with the options to change the playback rate. Note that the playback rate change is supported only for VOD or DVR-enabled live streams.\n *\n * Plugin settings - {@link PlaybackRateSettings}\n *\n * @example\n * ```ts\n * import { Player, PlaybackRateSettings } from '@gcorevideo/player'\n * Player.registerPlugin(PlaybackRate)\n * const player = new Player({\n * playbackRate: {\n * options: [\n * { value: 0.5, label: '0.5x' },\n * { value: 1, label: '1x' },\n * ],\n * defaultValue: 1,\n * },\n * })\n * ```\n *\n * @public\n */\n",
5034
5034
  "excerptTokens": [
5035
5035
  {
5036
5036
  "kind": "Content",
@@ -5047,7 +5047,7 @@
5047
5047
  }
5048
5048
  ],
5049
5049
  "fileUrlPath": "src/plugins/playback-rate/PlaybackRate.ts",
5050
- "releaseTag": "Beta",
5050
+ "releaseTag": "Public",
5051
5051
  "isAbstract": false,
5052
5052
  "name": "PlaybackRate",
5053
5053
  "preserveMemberOrder": false,
@@ -5071,7 +5071,7 @@
5071
5071
  "text": ");"
5072
5072
  }
5073
5073
  ],
5074
- "releaseTag": "Beta",
5074
+ "releaseTag": "Public",
5075
5075
  "isProtected": false,
5076
5076
  "overloadIndex": 1,
5077
5077
  "parameters": [
@@ -7646,7 +7646,7 @@
7646
7646
  {
7647
7647
  "kind": "Class",
7648
7648
  "canonicalReference": "@gcorevideo/player!SeekTime:class",
7649
- "docComment": "/**\n * `PLUGIN` that adds a seek time indicator when the mouse pointer is over the seek bar.\n *\n * @remarks\n *\n * Configuration options - {@link SeekTimeSettings}\n *\n * @beta\n */\n",
7649
+ "docComment": "/**\n * `PLUGIN` that adds a seek time indicator when the mouse pointer is over the seek bar.\n *\n * @remarks\n *\n * Configuration options - {@link SeekTimeSettings}\n *\n * @public\n */\n",
7650
7650
  "excerptTokens": [
7651
7651
  {
7652
7652
  "kind": "Content",
@@ -7663,7 +7663,7 @@
7663
7663
  }
7664
7664
  ],
7665
7665
  "fileUrlPath": "src/plugins/seek-time/SeekTime.ts",
7666
- "releaseTag": "Beta",
7666
+ "releaseTag": "Public",
7667
7667
  "isAbstract": false,
7668
7668
  "name": "SeekTime",
7669
7669
  "preserveMemberOrder": false,
@@ -7688,7 +7688,7 @@
7688
7688
  ],
7689
7689
  "isReadonly": true,
7690
7690
  "isOptional": false,
7691
- "releaseTag": "Beta",
7691
+ "releaseTag": "Public",
7692
7692
  "name": "attributes",
7693
7693
  "propertyTypeTokenRange": {
7694
7694
  "startIndex": 1,
@@ -7718,7 +7718,7 @@
7718
7718
  ],
7719
7719
  "isReadonly": true,
7720
7720
  "isOptional": false,
7721
- "releaseTag": "Beta",
7721
+ "releaseTag": "Public",
7722
7722
  "name": "name",
7723
7723
  "propertyTypeTokenRange": {
7724
7724
  "startIndex": 1,
@@ -7748,7 +7748,7 @@
7748
7748
  ],
7749
7749
  "isReadonly": true,
7750
7750
  "isOptional": false,
7751
- "releaseTag": "Beta",
7751
+ "releaseTag": "Public",
7752
7752
  "name": "supportedVersion",
7753
7753
  "propertyTypeTokenRange": {
7754
7754
  "startIndex": 1,
@@ -7768,7 +7768,7 @@
7768
7768
  {
7769
7769
  "kind": "TypeAlias",
7770
7770
  "canonicalReference": "@gcorevideo/player!SeekTimeSettings:type",
7771
- "docComment": "/**\n * Configuration options for the SeekTime plugin.\n *\n * @beta\n */\n",
7771
+ "docComment": "/**\n * Configuration options for the SeekTime plugin.\n *\n * @public\n */\n",
7772
7772
  "excerptTokens": [
7773
7773
  {
7774
7774
  "kind": "Content",
@@ -7784,7 +7784,7 @@
7784
7784
  }
7785
7785
  ],
7786
7786
  "fileUrlPath": "src/plugins/seek-time/SeekTime.ts",
7787
- "releaseTag": "Beta",
7787
+ "releaseTag": "Public",
7788
7788
  "name": "SeekTimeSettings",
7789
7789
  "typeTokenRange": {
7790
7790
  "startIndex": 1,
@@ -8875,7 +8875,7 @@
8875
8875
  {
8876
8876
  "kind": "TypeAlias",
8877
8877
  "canonicalReference": "@gcorevideo/player!StandardMediaControlElement:type",
8878
- "docComment": "/**\n * Built-in media control elements.\n *\n * @beta\n */\n",
8878
+ "docComment": "/**\n * Built-in media control elements.\n *\n * @public\n */\n",
8879
8879
  "excerptTokens": [
8880
8880
  {
8881
8881
  "kind": "Content",
@@ -8891,7 +8891,7 @@
8891
8891
  }
8892
8892
  ],
8893
8893
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
8894
- "releaseTag": "Beta",
8894
+ "releaseTag": "Public",
8895
8895
  "name": "StandardMediaControlElement",
8896
8896
  "typeTokenRange": {
8897
8897
  "startIndex": 1,
@@ -9348,7 +9348,7 @@
9348
9348
  {
9349
9349
  "kind": "Class",
9350
9350
  "canonicalReference": "@gcorevideo/player!Thumbnails:class",
9351
- "docComment": "/**\n * `PLUGIN` that displays the thumbnails of the video when available.\n *\n * @remarks\n *\n * The plugin needs specially crafted VTT file with a thumbnail sprite sheet to work. The VTT consist of timestamp records followed by a thumbnail area\n *\n * Configuration options - {@link ThumbnailsPluginSettings}\n *\n * @example\n * ```ts\n * import { Thumbnails } from '@gcorevideo/player'\n *\n * Player.registerPlugin(Thumbnails)\n *\n * new Player({\n * thumbnails: {\n * backdropHeight: 200,\n * backdropMinOpacity: 0.9,\n * backdropMaxOpacity: 0.99,\n * spotlightHeight: 100,\n * vtt: '1\\n00:00:00,000 --> 00:00:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,0,100,56\\n\\n2\\n00:00:10,000 --> 00:00:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,0,100,56\\n\\n3\\n00:00:20,000 --> 00:00:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,0,100,56\\n\\n4\\n00:00:30,000 --> 00:00:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,0,100,56\\n\\n5\\n00:00:40,000 --> 00:00:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,0,100,56\\n\\n6\\n00:00:50,000 --> 00:01:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,0,100,56\\n\\n7\\n00:01:00,000 --> 00:01:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,0,100,56\\n\\n8\\n00:01:10,000 --> 00:01:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,56,100,56\\n\\n9\\n00:01:20,000 --> 00:01:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,56,100,56\\n\\n10\\n00:01:30,000 --> 00:01:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,56,100,56\\n\\n11\\n00:01:40,000 --> 00:01:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,56,100,56\\n\\n12\\n00:01:50,000 --> 00:02:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,56,100,56\\n\\n13\\n00:02:00,000 --> 00:02:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,56,100,56\\n\\n14\\n00:02:10,000 --> 00:02:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,56,100,56\\n\\n15\\n00:02:20,000 --> 00:02:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,112,100,56\\n\\n16\\n00:02:30,000 --> 00:02:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,112,100,56\\n\\n17\\n00:02:40,000 --> 00:02:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,112,100,56\\n\\n18\\n00:02:50,000 --> 00:03:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,112,100,56\\n\\n19\\n00:03:00,000 --> 00:03:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,112,100,56\\n\\n20\\n00:03:10,000 --> 00:03:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,112,100,56\\n\\n21\\n00:03:20,000 --> 00:03:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,112,100,56\\n\\n22\\n00:03:30,000 --> 00:03:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,168,100,56\\n\\n23\\n00:03:40,000 --> 00:03:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,168,100,56\\n\\n24\\n00:03:50,000 --> 00:04:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,168,100,56\\n\\n25\\n00:04:00,000 --> 00:04:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,168,100,56\\n\\n26\\n00:04:10,000 --> 00:04:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,168,100,56\\n\\n27\\n00:04:20,000 --> 00:04:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,168,100,56\\n\\n28\\n00:04:30,000 --> 00:04:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,168,100,56\\n\\n29\\n00:04:40,000 --> 00:04:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,224,100,56\\n\\n30\\n00:04:50,000 --> 00:05:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,224,100,56\\n\\n31\\n00:05:00,000 --> 00:05:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,224,100,56\\n\\n32\\n00:05:10,000 --> 00:05:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,224,100,56\\n\\n33\\n00:05:20,000 --> 00:05:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,224,100,56\\n\\n34\\n00:05:30,000 --> 00:05:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,224,100,56\\n\\n35\\n00:05:40,000 --> 00:05:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,224,100,56\\n\\n36\\n00:05:50,000 --> 00:06:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,280,100,56\\n\\n37\\n00:06:00,000 --> 00:06:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,280,100,56\\n\\n38\\n00:06:10,000 --> 00:06:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,280,100,56\\n\\n39\\n00:06:20,000 --> 00:06:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,280,100,56\\n\\n40\\n00:06:30,000 --> 00:06:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,280,100,56\\n\\n41\\n00:06:40,000 --> 00:06:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,280,100,56\\n\\n42\\n00:06:50,000 --> 00:07:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,280,100,56\\n\\n43\\n00:07:00,000 --> 00:07:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,336,100,56\\n\\n44\\n00:07:10,000 --> 00:07:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,336,100,56\\n\\n45\\n00:07:20,000 --> 00:07:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,336,100,56\\n\\n46\\n00:07:30,000 --> 00:07:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,336,100,56\\n\\n47\\n00:07:40,000 --> 00:07:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,336,100,56\\n\\n48\\n00:07:50,000 --> 00:08:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,336,100,56\\n\\n49\\n00:08:00,000 --> 00:08:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,336,100,56\\n',\n * sprite:\n * 'https://static.gvideo.co/videoplatform/sprites/2675/2452164_3dk4NsRt6vWsffEr.mp4_sprite.jpg',\n * },\n * })\n * ```\n *\n * @beta\n */\n",
9351
+ "docComment": "/**\n * `PLUGIN` that displays the thumbnails of the video when available.\n *\n * @remarks\n *\n * The plugin needs specially crafted VTT file with a thumbnail sprite sheet to work. The VTT consist of timestamp records followed by a thumbnail area\n *\n * Configuration options - {@link ThumbnailsPluginSettings}\n *\n * @example\n * ```ts\n * import { Thumbnails } from '@gcorevideo/player'\n *\n * Player.registerPlugin(Thumbnails)\n *\n * new Player({\n * thumbnails: {\n * backdropHeight: 200,\n * backdropMinOpacity: 0.9,\n * backdropMaxOpacity: 0.99,\n * spotlightHeight: 100,\n * vtt: '1\\n00:00:00,000 --> 00:00:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,0,100,56\\n\\n2\\n00:00:10,000 --> 00:00:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,0,100,56\\n\\n3\\n00:00:20,000 --> 00:00:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,0,100,56\\n\\n4\\n00:00:30,000 --> 00:00:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,0,100,56\\n\\n5\\n00:00:40,000 --> 00:00:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,0,100,56\\n\\n6\\n00:00:50,000 --> 00:01:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,0,100,56\\n\\n7\\n00:01:00,000 --> 00:01:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,0,100,56\\n\\n8\\n00:01:10,000 --> 00:01:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,56,100,56\\n\\n9\\n00:01:20,000 --> 00:01:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,56,100,56\\n\\n10\\n00:01:30,000 --> 00:01:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,56,100,56\\n\\n11\\n00:01:40,000 --> 00:01:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,56,100,56\\n\\n12\\n00:01:50,000 --> 00:02:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,56,100,56\\n\\n13\\n00:02:00,000 --> 00:02:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,56,100,56\\n\\n14\\n00:02:10,000 --> 00:02:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,56,100,56\\n\\n15\\n00:02:20,000 --> 00:02:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,112,100,56\\n\\n16\\n00:02:30,000 --> 00:02:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,112,100,56\\n\\n17\\n00:02:40,000 --> 00:02:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,112,100,56\\n\\n18\\n00:02:50,000 --> 00:03:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,112,100,56\\n\\n19\\n00:03:00,000 --> 00:03:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,112,100,56\\n\\n20\\n00:03:10,000 --> 00:03:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,112,100,56\\n\\n21\\n00:03:20,000 --> 00:03:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,112,100,56\\n\\n22\\n00:03:30,000 --> 00:03:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,168,100,56\\n\\n23\\n00:03:40,000 --> 00:03:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,168,100,56\\n\\n24\\n00:03:50,000 --> 00:04:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,168,100,56\\n\\n25\\n00:04:00,000 --> 00:04:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,168,100,56\\n\\n26\\n00:04:10,000 --> 00:04:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,168,100,56\\n\\n27\\n00:04:20,000 --> 00:04:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,168,100,56\\n\\n28\\n00:04:30,000 --> 00:04:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,168,100,56\\n\\n29\\n00:04:40,000 --> 00:04:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,224,100,56\\n\\n30\\n00:04:50,000 --> 00:05:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,224,100,56\\n\\n31\\n00:05:00,000 --> 00:05:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,224,100,56\\n\\n32\\n00:05:10,000 --> 00:05:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,224,100,56\\n\\n33\\n00:05:20,000 --> 00:05:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,224,100,56\\n\\n34\\n00:05:30,000 --> 00:05:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,224,100,56\\n\\n35\\n00:05:40,000 --> 00:05:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,224,100,56\\n\\n36\\n00:05:50,000 --> 00:06:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,280,100,56\\n\\n37\\n00:06:00,000 --> 00:06:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,280,100,56\\n\\n38\\n00:06:10,000 --> 00:06:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,280,100,56\\n\\n39\\n00:06:20,000 --> 00:06:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,280,100,56\\n\\n40\\n00:06:30,000 --> 00:06:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,280,100,56\\n\\n41\\n00:06:40,000 --> 00:06:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,280,100,56\\n\\n42\\n00:06:50,000 --> 00:07:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,280,100,56\\n\\n43\\n00:07:00,000 --> 00:07:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=0,336,100,56\\n\\n44\\n00:07:10,000 --> 00:07:20,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=100,336,100,56\\n\\n45\\n00:07:20,000 --> 00:07:30,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=200,336,100,56\\n\\n46\\n00:07:30,000 --> 00:07:40,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=300,336,100,56\\n\\n47\\n00:07:40,000 --> 00:07:50,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=400,336,100,56\\n\\n48\\n00:07:50,000 --> 00:08:00,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=500,336,100,56\\n\\n49\\n00:08:00,000 --> 00:08:10,000\\n3dk4NsRt6vWsffEr_sprite.jpg#xywh=600,336,100,56\\n',\n * sprite:\n * 'https://static.gvideo.co/videoplatform/sprites/2675/2452164_3dk4NsRt6vWsffEr.mp4_sprite.jpg',\n * },\n * })\n * ```\n *\n * @public\n */\n",
9352
9352
  "excerptTokens": [
9353
9353
  {
9354
9354
  "kind": "Content",
@@ -9365,7 +9365,7 @@
9365
9365
  }
9366
9366
  ],
9367
9367
  "fileUrlPath": "src/plugins/thumbnails/Thumbnails.ts",
9368
- "releaseTag": "Beta",
9368
+ "releaseTag": "Public",
9369
9369
  "isAbstract": false,
9370
9370
  "name": "Thumbnails",
9371
9371
  "preserveMemberOrder": false,
@@ -9389,7 +9389,7 @@
9389
9389
  "text": ");"
9390
9390
  }
9391
9391
  ],
9392
- "releaseTag": "Beta",
9392
+ "releaseTag": "Public",
9393
9393
  "isProtected": false,
9394
9394
  "overloadIndex": 1,
9395
9395
  "parameters": [
@@ -9426,7 +9426,7 @@
9426
9426
  "startIndex": 1,
9427
9427
  "endIndex": 2
9428
9428
  },
9429
- "releaseTag": "Beta",
9429
+ "releaseTag": "Public",
9430
9430
  "isProtected": false,
9431
9431
  "overloadIndex": 1,
9432
9432
  "parameters": [],
@@ -9444,7 +9444,7 @@
9444
9444
  {
9445
9445
  "kind": "TypeAlias",
9446
9446
  "canonicalReference": "@gcorevideo/player!ThumbnailsPluginSettings:type",
9447
- "docComment": "/**\n * Plugin configuration options for the thumbnails plugin.\n *\n * @beta\n */\n",
9447
+ "docComment": "/**\n * Plugin configuration options for the thumbnails plugin.\n *\n * @public\n */\n",
9448
9448
  "excerptTokens": [
9449
9449
  {
9450
9450
  "kind": "Content",
@@ -9460,7 +9460,7 @@
9460
9460
  }
9461
9461
  ],
9462
9462
  "fileUrlPath": "src/plugins/thumbnails/Thumbnails.ts",
9463
- "releaseTag": "Beta",
9463
+ "releaseTag": "Public",
9464
9464
  "name": "ThumbnailsPluginSettings",
9465
9465
  "typeTokenRange": {
9466
9466
  "startIndex": 1,
@@ -9797,7 +9797,7 @@
9797
9797
  {
9798
9798
  "kind": "Class",
9799
9799
  "canonicalReference": "@gcorevideo/player!VolumeFade:class",
9800
- "docComment": "/**\n * `PLUGIN` that mutes the sound and fades it in when the mouse is over the player.\n *\n * @remarks\n *\n * When the user moves the mouse over and away from the player, the sound is unmuted and unmuted with a fade effect.\n *\n * Depends on {@link MediaControl} plugin. Configuration options - {@link VolumeFadeSettings}\n *\n * @beta\n */\n",
9800
+ "docComment": "/**\n * `PLUGIN` that mutes the sound and fades it in when the mouse is over the player.\n *\n * @remarks\n *\n * When the user moves the mouse over and away from the player, the sound is unmuted and unmuted with a fade effect.\n *\n * Depends on {@link MediaControl} plugin. Configuration options - {@link VolumeFadeSettings}\n *\n * @public\n */\n",
9801
9801
  "excerptTokens": [
9802
9802
  {
9803
9803
  "kind": "Content",
@@ -9814,7 +9814,7 @@
9814
9814
  }
9815
9815
  ],
9816
9816
  "fileUrlPath": "src/plugins/volume-fade/VolumeFade.ts",
9817
- "releaseTag": "Beta",
9817
+ "releaseTag": "Public",
9818
9818
  "isAbstract": false,
9819
9819
  "name": "VolumeFade",
9820
9820
  "preserveMemberOrder": false,
@@ -9838,7 +9838,7 @@
9838
9838
  "text": ");"
9839
9839
  }
9840
9840
  ],
9841
- "releaseTag": "Beta",
9841
+ "releaseTag": "Public",
9842
9842
  "isProtected": false,
9843
9843
  "overloadIndex": 1,
9844
9844
  "parameters": [