@gcorevideo/player 2.20.3 → 2.20.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 (60) hide show
  1. package/dist/core.js +30 -6
  2. package/dist/index.css +859 -859
  3. package/dist/index.js +39 -10
  4. package/dist/player.d.ts +10 -0
  5. package/dist/plugins/index.css +954 -954
  6. package/dist/plugins/index.js +10 -5
  7. package/docs/api/player.contextmenupluginsettings.label.md +3 -0
  8. package/docs/api/player.contextmenupluginsettings.md +8 -3
  9. package/docs/api/player.contextmenupluginsettings.preventshowcontextmenu.md +3 -0
  10. package/docs/api/player.contextmenupluginsettings.url.md +3 -0
  11. package/docs/api/player.md +6 -2
  12. package/docs/api/player.multicamera._constructor_.md +3 -0
  13. package/docs/api/player.multicamera.activebyid.md +3 -0
  14. package/docs/api/player.multicamera.attributes.md +3 -0
  15. package/docs/api/player.multicamera.bindevents.md +3 -0
  16. package/docs/api/player.multicamera.events.md +3 -0
  17. package/docs/api/player.multicamera.getcameraslist.md +3 -0
  18. package/docs/api/player.multicamera.getcurrentcamera.md +3 -0
  19. package/docs/api/player.multicamera.md +28 -1
  20. package/docs/api/player.multicamera.name.md +3 -0
  21. package/docs/api/player.multicamera.render.md +3 -0
  22. package/docs/api/player.multicamera.supportedversion.md +3 -0
  23. package/docs/api/player.multicamera.template.md +3 -0
  24. package/docs/api/player.multicamera.unbindevents.md +3 -0
  25. package/docs/api/player.multicamera.version.md +3 -0
  26. package/docs/api/player.volumefadeevents.md +7 -0
  27. package/docs/api/player.zeptoresult.md +1 -0
  28. package/lib/Player.d.ts +5 -3
  29. package/lib/Player.d.ts.map +1 -1
  30. package/lib/Player.js +30 -6
  31. package/lib/internal.types.d.ts +7 -7
  32. package/lib/internal.types.d.ts.map +1 -1
  33. package/lib/plugins/context-menu/ContextMenu.d.ts +4 -0
  34. package/lib/plugins/context-menu/ContextMenu.d.ts.map +1 -1
  35. package/lib/plugins/multi-camera/MultiCamera.d.ts +1 -0
  36. package/lib/plugins/multi-camera/MultiCamera.d.ts.map +1 -1
  37. package/lib/plugins/multi-camera/MultiCamera.js +3 -2
  38. package/lib/plugins/seek-time/SeekTime.js +1 -1
  39. package/lib/plugins/share/Share.js +1 -1
  40. package/lib/plugins/volume-fade/VolumeFade.d.ts +4 -0
  41. package/lib/plugins/volume-fade/VolumeFade.d.ts.map +1 -1
  42. package/lib/plugins/volume-fade/VolumeFade.js +4 -0
  43. package/lib/types.d.ts +9 -1
  44. package/lib/types.d.ts.map +1 -1
  45. package/lib/utils/types.d.ts +1 -0
  46. package/lib/utils/types.d.ts.map +1 -1
  47. package/package.json +1 -1
  48. package/release_notes +297 -0
  49. package/src/Player.ts +101 -46
  50. package/src/__tests__/Player.test.ts +23 -1
  51. package/src/internal.types.ts +86 -79
  52. package/src/plugins/context-menu/ContextMenu.ts +4 -0
  53. package/src/plugins/multi-camera/MultiCamera.ts +3 -2
  54. package/src/plugins/seek-time/SeekTime.ts +1 -1
  55. package/src/plugins/share/Share.ts +1 -1
  56. package/src/plugins/volume-fade/VolumeFade.ts +4 -0
  57. package/src/types.ts +11 -1
  58. package/src/utils/types.ts +1 -0
  59. package/temp/player.api.json +24 -24
  60. package/tsconfig.tsbuildinfo +1 -1
@@ -12,7 +12,7 @@ import { Loader, Player as PlayerClappr } from '@clappr/core'
12
12
  import EventLite from 'event-lite'
13
13
 
14
14
  import { Player } from '../Player'
15
- import { TransportPreference } from '../types'
15
+ import { CorePluginConstructor, TransportPreference } from '../types'
16
16
  import { canPlayDash, canPlayHls } from '../playback'
17
17
  import { isDashSource, isHlsSource } from '../utils/mediaSources'
18
18
 
@@ -167,4 +167,26 @@ describe('Player', () => {
167
167
  })
168
168
  })
169
169
  })
170
+ describe('registerPlugin', () => {
171
+ it('should register plugins with respect to dependencies order', () => {
172
+ class MockMediaControl {
173
+ get name() {
174
+ return 'media_control'
175
+ }
176
+ }
177
+ (MockMediaControl as any).type = 'core';
178
+ class MockMediaControlButtonPlugin {
179
+ get name() {
180
+ return 'media_control_button'
181
+ }
182
+ }
183
+ (MockMediaControlButtonPlugin as any).type = 'core'
184
+ Player.registerPlugin(MockMediaControlButtonPlugin as unknown as CorePluginConstructor)
185
+ Player.registerPlugin(MockMediaControl as unknown as CorePluginConstructor)
186
+ const player = new Player({ sources: [] })
187
+ player.attachTo(document.createElement('div'))
188
+ expect(Loader.registerPlugin).toHaveBeenNthCalledWith(1, MockMediaControl)
189
+ expect(Loader.registerPlugin).toHaveBeenNthCalledWith(2, MockMediaControlButtonPlugin)
190
+ })
191
+ })
170
192
  })
@@ -2,22 +2,29 @@ import type {
2
2
  CorePlugin,
3
3
  ContainerPlugin,
4
4
  Playback as ClapprPlayback,
5
- } from "@clappr/core";
5
+ } from '@clappr/core'
6
6
 
7
- import { ContainerSize, PlaybackType, PlayerDebugTag, PlayerMediaSource } from "./types";
8
- import { PlaybackError } from "./playback.types.js";
7
+ import {
8
+ ContainerSize,
9
+ PlaybackType,
10
+ PlayerDebugTag,
11
+ PlayerMediaSource,
12
+ type CorePluginConstructor,
13
+ type ContainerPluginConstructor,
14
+ } from './types'
15
+ import { PlaybackError } from './playback.types.js'
9
16
 
10
17
  type ExternalTrack = {
11
- kind?: "subtitles" | "captions";
12
- src: string;
13
- label: string;
14
- lang: string;
18
+ kind?: 'subtitles' | 'captions'
19
+ src: string
20
+ label: string
21
+ lang: string
15
22
  }
16
23
 
17
24
  type MediacontrolStyles = {
18
25
  // TODO
19
- seekbar?: string;
20
- buttons?: string;
26
+ seekbar?: string
27
+ buttons?: string
21
28
  }
22
29
 
23
30
  /**
@@ -25,11 +32,11 @@ type MediacontrolStyles = {
25
32
  * @beta
26
33
  */
27
34
  type HlsjsConfig = {
28
- debug?: boolean;
29
- startLevel?: number;
30
- } & Record<string, unknown>;
35
+ debug?: boolean
36
+ startLevel?: number
37
+ } & Record<string, unknown>
31
38
 
32
- type ShakaConfig = Record<string, unknown>;
39
+ type ShakaConfig = Record<string, unknown>
33
40
 
34
41
  /**
35
42
  * @see {@link https://github.com/clappr/clappr-core?tab=readme-ov-file#playback-configuration | the Clappr playback settings}
@@ -37,25 +44,25 @@ type ShakaConfig = Record<string, unknown>;
37
44
  */
38
45
  export interface CorePlaybackConfig {
39
46
  // audioOnly: boolean;
40
- disableContextMenu?: boolean;
41
- controls?: boolean;
42
- crossOrigin?: 'anonymous' | 'use-credentials';
47
+ disableContextMenu?: boolean
48
+ controls?: boolean
49
+ crossOrigin?: 'anonymous' | 'use-credentials'
43
50
  // enableAutomaticABR?: boolean;
44
- externalTracks?: ExternalTrack[];
45
- hlsjsConfig?: HlsjsConfig;
51
+ externalTracks?: ExternalTrack[]
52
+ hlsjsConfig?: HlsjsConfig
46
53
  // initialBandwidthEstimate?: number;
47
54
  // maxBufferLength?: number;
48
55
  // maxBackBufferLength?: number;
49
56
  // minBufferLength?: number;
50
- minimumDvrSize?: number; // TODO ?
57
+ minimumDvrSize?: number // TODO ?
51
58
  // maxAdaptiveBitrate?: number;
52
59
  // maxAdaptiveVideoDimensions?: unknown; // TODO
53
- mute?: boolean;
54
- playInline: boolean;
55
- preload?: 'metadata' | 'auto' | 'none';
60
+ mute?: boolean
61
+ playInline: boolean
62
+ preload?: 'metadata' | 'auto' | 'none'
56
63
  // preferredAudioLanguage?: string;
57
- recycleVideo?: boolean;
58
- shakaConfiguration?: ShakaConfig;
64
+ recycleVideo?: boolean
65
+ shakaConfiguration?: ShakaConfig
59
66
  }
60
67
 
61
68
  /**
@@ -63,34 +70,34 @@ export interface CorePlaybackConfig {
63
70
  */
64
71
  export type CorePlayerEvents = {
65
72
  // TODO event arguments types
66
- onReady?: () => void;
67
- onResize?: (data: ContainerSize) => void;
68
- onPlay?: (metadata: unknown) => void;
69
- onPause?: (metadata: unknown) => void;
70
- onStop?: (metadata: unknown) => void;
71
- onEnded?: () => void;
72
- onSeek?: (currentTime: number) => void;
73
- onError?: (err: PlaybackError) => void;
74
- onTimeUpdate?: (timeProgress: { current: number; total: number }) => void;
75
- onVolumeUpdate?: (value: number) => void;
76
- onSubtitleAvailable?: () => void;
73
+ onReady?: () => void
74
+ onResize?: (data: ContainerSize) => void
75
+ onPlay?: (metadata: unknown) => void
76
+ onPause?: (metadata: unknown) => void
77
+ onStop?: (metadata: unknown) => void
78
+ onEnded?: () => void
79
+ onSeek?: (currentTime: number) => void
80
+ onError?: (err: PlaybackError) => void
81
+ onTimeUpdate?: (timeProgress: { current: number; total: number }) => void
82
+ onVolumeUpdate?: (value: number) => void
83
+ onSubtitleAvailable?: () => void
77
84
  }
78
85
 
79
86
  /**
80
87
  * @internal
81
88
  */
82
- export type PlaybackPluginFactory = typeof ClapprPlayback;
89
+ export type PlaybackPluginFactory = typeof ClapprPlayback
83
90
 
84
91
  /**
85
92
  * For the plugin development
86
93
  * @internal
87
94
  */
88
95
  export type CorePluginOptions = {
89
- core?: CorePlugin[];
90
- container?: ContainerPlugin[];
91
- playback?: PlaybackPluginFactory[];
92
- loadExternalPluginsFirst?: boolean;
93
- loadExternalPlaybacksFirst?: boolean;
96
+ core?: CorePluginConstructor[]
97
+ container?: ContainerPluginConstructor[]
98
+ playback?: PlaybackPluginFactory[]
99
+ loadExternalPluginsFirst?: boolean
100
+ loadExternalPlaybacksFirst?: boolean
94
101
  }
95
102
 
96
103
  /**
@@ -98,41 +105,41 @@ export type CorePluginOptions = {
98
105
  * @internal
99
106
  */
100
107
  export type CoreOptions = {
101
- actualLiveTime?: boolean;
102
- actualLiveServerTime?: string;
103
- allowUserInteraction?: boolean;
104
- autoPlay?: boolean;
105
- autoSeekFromUrl?: boolean;
106
- chromeless?: boolean;
107
- debug?: PlayerDebugTag | boolean;
108
- disableCanAutoPlay?: boolean; // custom, for reconfiguration
109
- disableKeyboardShortcuts?: boolean;
110
- disableVideoTagContextMenu?: boolean;
111
- events?: CorePlayerEvents;
112
- exitFullscreenOnEnd?: boolean;
113
- gaAccount?: string;
114
- gaTrackerName?: string;
115
- height?: number;
116
- hideMediaControl?: boolean;
117
- hideVolumeBar?: boolean;
118
- language?: string;
119
- loop?: boolean;
120
- maxBufferLength?: number;
121
- mediacontrol?: MediacontrolStyles;
122
- mimeType?: string;
123
- mute?: boolean;
124
- persistConfig?: boolean;
125
- preload?: "auto" | "metadata" | "none";
126
- parentId?: string;
127
- parent?: HTMLElement;
128
- playback?: CorePlaybackConfig;
129
- playbackNotSupportedMessage?: string;
130
- playbackType?: PlaybackType;
131
- plugins?: CorePluginOptions | CorePlugin[];
132
- poster?: string;
133
- source?: string;
134
- sources?: PlayerMediaSource[];
135
- watermark?: string;
136
- watermarkLink?: string;
137
- width?: number;
138
- }
108
+ actualLiveTime?: boolean
109
+ actualLiveServerTime?: string
110
+ allowUserInteraction?: boolean
111
+ autoPlay?: boolean
112
+ autoSeekFromUrl?: boolean
113
+ chromeless?: boolean
114
+ debug?: PlayerDebugTag | boolean
115
+ disableCanAutoPlay?: boolean // custom, for reconfiguration
116
+ disableKeyboardShortcuts?: boolean
117
+ disableVideoTagContextMenu?: boolean
118
+ events?: CorePlayerEvents
119
+ exitFullscreenOnEnd?: boolean
120
+ gaAccount?: string
121
+ gaTrackerName?: string
122
+ height?: number
123
+ hideMediaControl?: boolean
124
+ hideVolumeBar?: boolean
125
+ language?: string
126
+ loop?: boolean
127
+ maxBufferLength?: number
128
+ mediacontrol?: MediacontrolStyles
129
+ mimeType?: string
130
+ mute?: boolean
131
+ persistConfig?: boolean
132
+ preload?: 'auto' | 'metadata' | 'none'
133
+ parentId?: string
134
+ parent?: HTMLElement
135
+ playback?: CorePlaybackConfig
136
+ playbackNotSupportedMessage?: string
137
+ playbackType?: PlaybackType
138
+ plugins?: CorePluginOptions | CorePlugin[]
139
+ poster?: string
140
+ source?: string
141
+ sources?: PlayerMediaSource[]
142
+ watermark?: string
143
+ watermarkLink?: string
144
+ width?: number
145
+ }
@@ -19,6 +19,10 @@ type MenuOption = {
19
19
  name: string
20
20
  }
21
21
 
22
+ /**
23
+ * The plugin adds a context menu to the player.
24
+ * @beta
25
+ */
22
26
  export interface ContextMenuPluginSettings {
23
27
  label?: string
24
28
  url?: string
@@ -23,10 +23,11 @@ type MediaSourceInfo = {
23
23
 
24
24
  const VERSION = '0.0.1';
25
25
 
26
- const T = 'plugins.media_control_multicamera';
26
+ const T = 'plugins.multicamera';
27
27
 
28
28
  /**
29
29
  * The plugin adds support for loading multiple streams and switching between them using the media control UI.
30
+ * @beta
30
31
  */
31
32
  export class MultiCamera extends UICorePlugin {
32
33
  private currentCamera: MediaSourceInfo | null = null;
@@ -40,7 +41,7 @@ export class MultiCamera extends UICorePlugin {
40
41
  private noActiveStreams = false;
41
42
 
42
43
  get name() {
43
- return 'media_control_multicamera';
44
+ return 'multicamera';
44
45
  }
45
46
 
46
47
  get supportedVersion() {
@@ -19,7 +19,7 @@ const { formatTime } = Utils;
19
19
  */
20
20
  export class SeekTime extends UICorePlugin {
21
21
  get name() {
22
- return 'media_control_seek_time';
22
+ return 'seek_time';
23
23
  }
24
24
 
25
25
  get supportedVersion() {
@@ -18,7 +18,7 @@ export class Share extends UICorePlugin {
18
18
  private container: Container | null = null;
19
19
 
20
20
  get name() {
21
- return 'media_control_share';
21
+ return 'share';
22
22
  }
23
23
 
24
24
  get supportedVersion() {
@@ -3,6 +3,10 @@ import { reportError } from '@gcorevideo/utils';
3
3
 
4
4
  import { TimerId } from '../../utils/types.js';
5
5
 
6
+ /**
7
+ * Events emitted by the VolumeFade plugin.
8
+ * @beta
9
+ */
6
10
  export enum VolumeFadeEvents {
7
11
  FADE = 'core:volume:fade',
8
12
  }
package/src/types.ts CHANGED
@@ -57,13 +57,23 @@ export type TransportPreference = MediaTransport
57
57
 
58
58
  /**
59
59
  * @beta
60
- * @see {@link https://clappr.github.io/classes/UIContainerPlugin.html}, {@link https://clappr.github.io/classes/ContainerPlugin.html}
60
+ * @see {@link https://clappr.github.io/classes/UIContainerPlugin.html},
61
+ * {@link https://clappr.github.io/classes/ContainerPlugin.html}
61
62
  */
62
63
  export type PlayerPlugin = {
63
64
  new (...args: any[]): unknown
64
65
  name: string
65
66
  }
66
67
 
68
+ export type PlayerPluginConstructor = CorePluginConstructor | ContainerPluginConstructor
69
+ export type CorePluginConstructor = ((core: unknown) => PlayerPlugin) & {
70
+ type: 'core'
71
+ }
72
+
73
+ export type ContainerPluginConstructor = ((container: unknown) => PlayerPlugin) & {
74
+ type: 'container'
75
+ }
76
+
67
77
  /**
68
78
  * Configuration options for the player
69
79
  *
@@ -1,6 +1,7 @@
1
1
  import { $ } from "@clappr/core";
2
2
 
3
3
  /**
4
+ * {@link https://zeptojs.com/#$() | Zepto query result}
4
5
  * @beta
5
6
  */
6
7
  export type ZeptoResult = ReturnType<typeof $>;
@@ -1017,7 +1017,7 @@
1017
1017
  {
1018
1018
  "kind": "Interface",
1019
1019
  "canonicalReference": "@gcorevideo/player!ContextMenuPluginSettings:interface",
1020
- "docComment": "",
1020
+ "docComment": "/**\n * The plugin adds a context menu to the player.\n *\n * @beta\n */\n",
1021
1021
  "excerptTokens": [
1022
1022
  {
1023
1023
  "kind": "Content",
@@ -1025,7 +1025,7 @@
1025
1025
  }
1026
1026
  ],
1027
1027
  "fileUrlPath": "src/plugins/context-menu/ContextMenu.ts",
1028
- "releaseTag": "Public",
1028
+ "releaseTag": "Beta",
1029
1029
  "name": "ContextMenuPluginSettings",
1030
1030
  "preserveMemberOrder": false,
1031
1031
  "members": [
@@ -1049,7 +1049,7 @@
1049
1049
  ],
1050
1050
  "isReadonly": false,
1051
1051
  "isOptional": true,
1052
- "releaseTag": "Public",
1052
+ "releaseTag": "Beta",
1053
1053
  "name": "label",
1054
1054
  "propertyTypeTokenRange": {
1055
1055
  "startIndex": 1,
@@ -1076,7 +1076,7 @@
1076
1076
  ],
1077
1077
  "isReadonly": false,
1078
1078
  "isOptional": true,
1079
- "releaseTag": "Public",
1079
+ "releaseTag": "Beta",
1080
1080
  "name": "preventShowContextMenu",
1081
1081
  "propertyTypeTokenRange": {
1082
1082
  "startIndex": 1,
@@ -1103,7 +1103,7 @@
1103
1103
  ],
1104
1104
  "isReadonly": false,
1105
1105
  "isOptional": true,
1106
- "releaseTag": "Public",
1106
+ "releaseTag": "Beta",
1107
1107
  "name": "url",
1108
1108
  "propertyTypeTokenRange": {
1109
1109
  "startIndex": 1,
@@ -3471,7 +3471,7 @@
3471
3471
  {
3472
3472
  "kind": "Class",
3473
3473
  "canonicalReference": "@gcorevideo/player!MultiCamera:class",
3474
- "docComment": "/**\n * The plugin adds support for loading multiple streams and switching between them using the media control UI.\n */\n",
3474
+ "docComment": "/**\n * The plugin adds support for loading multiple streams and switching between them using the media control UI.\n *\n * @beta\n */\n",
3475
3475
  "excerptTokens": [
3476
3476
  {
3477
3477
  "kind": "Content",
@@ -3488,7 +3488,7 @@
3488
3488
  }
3489
3489
  ],
3490
3490
  "fileUrlPath": "src/plugins/multi-camera/MultiCamera.ts",
3491
- "releaseTag": "Public",
3491
+ "releaseTag": "Beta",
3492
3492
  "isAbstract": false,
3493
3493
  "name": "MultiCamera",
3494
3494
  "preserveMemberOrder": false,
@@ -3512,7 +3512,7 @@
3512
3512
  "text": ");"
3513
3513
  }
3514
3514
  ],
3515
- "releaseTag": "Public",
3515
+ "releaseTag": "Beta",
3516
3516
  "isProtected": false,
3517
3517
  "overloadIndex": 1,
3518
3518
  "parameters": [
@@ -3565,7 +3565,7 @@
3565
3565
  "startIndex": 5,
3566
3566
  "endIndex": 6
3567
3567
  },
3568
- "releaseTag": "Public",
3568
+ "releaseTag": "Beta",
3569
3569
  "isProtected": false,
3570
3570
  "overloadIndex": 1,
3571
3571
  "parameters": [
@@ -3610,7 +3610,7 @@
3610
3610
  ],
3611
3611
  "isReadonly": true,
3612
3612
  "isOptional": false,
3613
- "releaseTag": "Public",
3613
+ "releaseTag": "Beta",
3614
3614
  "name": "attributes",
3615
3615
  "propertyTypeTokenRange": {
3616
3616
  "startIndex": 1,
@@ -3643,7 +3643,7 @@
3643
3643
  "startIndex": 1,
3644
3644
  "endIndex": 2
3645
3645
  },
3646
- "releaseTag": "Public",
3646
+ "releaseTag": "Beta",
3647
3647
  "isProtected": false,
3648
3648
  "overloadIndex": 1,
3649
3649
  "parameters": [],
@@ -3671,7 +3671,7 @@
3671
3671
  ],
3672
3672
  "isReadonly": true,
3673
3673
  "isOptional": false,
3674
- "releaseTag": "Public",
3674
+ "releaseTag": "Beta",
3675
3675
  "name": "events",
3676
3676
  "propertyTypeTokenRange": {
3677
3677
  "startIndex": 1,
@@ -3709,7 +3709,7 @@
3709
3709
  "startIndex": 1,
3710
3710
  "endIndex": 3
3711
3711
  },
3712
- "releaseTag": "Public",
3712
+ "releaseTag": "Beta",
3713
3713
  "isProtected": false,
3714
3714
  "overloadIndex": 1,
3715
3715
  "parameters": [],
@@ -3745,7 +3745,7 @@
3745
3745
  "startIndex": 1,
3746
3746
  "endIndex": 3
3747
3747
  },
3748
- "releaseTag": "Public",
3748
+ "releaseTag": "Beta",
3749
3749
  "isProtected": false,
3750
3750
  "overloadIndex": 1,
3751
3751
  "parameters": [],
@@ -3773,7 +3773,7 @@
3773
3773
  ],
3774
3774
  "isReadonly": true,
3775
3775
  "isOptional": false,
3776
- "releaseTag": "Public",
3776
+ "releaseTag": "Beta",
3777
3777
  "name": "name",
3778
3778
  "propertyTypeTokenRange": {
3779
3779
  "startIndex": 1,
@@ -3806,7 +3806,7 @@
3806
3806
  "startIndex": 1,
3807
3807
  "endIndex": 2
3808
3808
  },
3809
- "releaseTag": "Public",
3809
+ "releaseTag": "Beta",
3810
3810
  "isProtected": false,
3811
3811
  "overloadIndex": 1,
3812
3812
  "parameters": [],
@@ -3834,7 +3834,7 @@
3834
3834
  ],
3835
3835
  "isReadonly": true,
3836
3836
  "isOptional": false,
3837
- "releaseTag": "Public",
3837
+ "releaseTag": "Beta",
3838
3838
  "name": "supportedVersion",
3839
3839
  "propertyTypeTokenRange": {
3840
3840
  "startIndex": 1,
@@ -3864,7 +3864,7 @@
3864
3864
  ],
3865
3865
  "isReadonly": true,
3866
3866
  "isOptional": false,
3867
- "releaseTag": "Public",
3867
+ "releaseTag": "Beta",
3868
3868
  "name": "template",
3869
3869
  "propertyTypeTokenRange": {
3870
3870
  "startIndex": 1,
@@ -3897,7 +3897,7 @@
3897
3897
  "startIndex": 1,
3898
3898
  "endIndex": 2
3899
3899
  },
3900
- "releaseTag": "Public",
3900
+ "releaseTag": "Beta",
3901
3901
  "isProtected": false,
3902
3902
  "overloadIndex": 1,
3903
3903
  "parameters": [],
@@ -3925,7 +3925,7 @@
3925
3925
  ],
3926
3926
  "isReadonly": true,
3927
3927
  "isOptional": false,
3928
- "releaseTag": "Public",
3928
+ "releaseTag": "Beta",
3929
3929
  "name": "version",
3930
3930
  "propertyTypeTokenRange": {
3931
3931
  "startIndex": 1,
@@ -9188,7 +9188,7 @@
9188
9188
  {
9189
9189
  "kind": "Enum",
9190
9190
  "canonicalReference": "@gcorevideo/player!VolumeFadeEvents:enum",
9191
- "docComment": "",
9191
+ "docComment": "/**\n * Events emitted by the VolumeFade plugin.\n *\n * @beta\n */\n",
9192
9192
  "excerptTokens": [
9193
9193
  {
9194
9194
  "kind": "Content",
@@ -9196,7 +9196,7 @@
9196
9196
  }
9197
9197
  ],
9198
9198
  "fileUrlPath": "src/plugins/volume-fade/VolumeFade.ts",
9199
- "releaseTag": "Public",
9199
+ "releaseTag": "Beta",
9200
9200
  "name": "VolumeFadeEvents",
9201
9201
  "preserveMemberOrder": false,
9202
9202
  "members": [
@@ -9218,7 +9218,7 @@
9218
9218
  "startIndex": 1,
9219
9219
  "endIndex": 2
9220
9220
  },
9221
- "releaseTag": "Public",
9221
+ "releaseTag": "Beta",
9222
9222
  "name": "FADE"
9223
9223
  }
9224
9224
  ]
@@ -9272,7 +9272,7 @@
9272
9272
  {
9273
9273
  "kind": "TypeAlias",
9274
9274
  "canonicalReference": "@gcorevideo/player!ZeptoResult:type",
9275
- "docComment": "/**\n * @beta\n */\n",
9275
+ "docComment": "/**\n * {@link https://zeptojs.com/#$() | Zepto query result}\n *\n * @beta\n */\n",
9276
9276
  "excerptTokens": [
9277
9277
  {
9278
9278
  "kind": "Content",