@gcorevideo/player 2.24.14 → 2.25.0

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 (40) hide show
  1. package/assets/clips/clips.ejs +1 -1
  2. package/assets/clips/clips.scss +7 -5
  3. package/assets/media-control/width370.scss +3 -5
  4. package/dist/core.js +1 -1
  5. package/dist/index.css +870 -871
  6. package/dist/index.embed.js +171 -100
  7. package/dist/index.js +150 -78
  8. package/dist/player.d.ts +106 -42
  9. package/docs/api/player.md +18 -20
  10. package/docs/api/player.mediacontrol.defaultsettings.md +32 -0
  11. package/docs/api/player.mediacontrol.extendsettings.md +77 -0
  12. package/docs/api/player.mediacontrol.md +31 -11
  13. package/docs/api/player.mediacontrol.mount.md +8 -8
  14. package/docs/api/player.mediacontrol.slot.md +97 -0
  15. package/docs/api/player.mediacontrolelement.md +6 -3
  16. package/docs/api/player.mediacontrolpluginsettings.md +13 -0
  17. package/docs/api/player.mediacontrolsettings.md +5 -5
  18. package/docs/api/{player.mediacontrol.enablecontrolbutton.md → player.mediacontrolslotmountpoint.md} +4 -8
  19. package/docs/api/{player.mediacontrol.disabledcontrolbutton.md → player.standardmediacontrolelement.md} +4 -8
  20. package/lib/plugins/clips/Clips.d.ts +1 -0
  21. package/lib/plugins/clips/Clips.d.ts.map +1 -1
  22. package/lib/plugins/clips/Clips.js +16 -2
  23. package/lib/plugins/dvr-controls/DvrControls.js +1 -1
  24. package/lib/plugins/media-control/MediaControl.d.ts +87 -34
  25. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  26. package/lib/plugins/media-control/MediaControl.js +121 -76
  27. package/package.json +1 -1
  28. package/src/plugins/clips/Clips.ts +17 -2
  29. package/src/plugins/clips/__tests__/Clips.test.ts +1 -1
  30. package/src/plugins/clips/__tests__/__snapshots__/Clips.test.ts.snap +1 -1
  31. package/src/plugins/dvr-controls/DvrControls.ts +1 -1
  32. package/src/plugins/dvr-controls/__tests__/DvrControls.test.ts +1 -1
  33. package/src/plugins/media-control/MediaControl.ts +170 -141
  34. package/src/plugins/media-control/__tests__/MediaControl.test.ts +24 -17
  35. package/src/plugins/media-control/__tests__/__snapshots__/MediaControl.test.ts.snap +125 -93
  36. package/temp/player.api.json +186 -108
  37. package/tsconfig.tsbuildinfo +1 -1
  38. package/docs/api/player.mediacontrollayerelement.md +0 -16
  39. package/docs/api/player.mediacontrolleftelement.md +0 -16
  40. package/docs/api/player.mediacontrolrightelement.md +0 -16
@@ -3390,7 +3390,7 @@
3390
3390
  {
3391
3391
  "kind": "Class",
3392
3392
  "canonicalReference": "@gcorevideo/player!MediaControl:class",
3393
- "docComment": "/**\n * `PLUGIN` that provides basic playback controls UI and a foundation for developing custom 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:\n *\n * - `mediaControl`: {@link MediaControlSettings} - specifies the allowed media control elements in each area\n *\n * - `persistConfig`: boolean - `common` option, makes the plugin persist the media control settings\n *\n * - `chromeless`: boolean\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 * @beta\n */\n",
3394
3394
  "excerptTokens": [
3395
3395
  {
3396
3396
  "kind": "Content",
@@ -3477,23 +3477,23 @@
3477
3477
  },
3478
3478
  {
3479
3479
  "kind": "Method",
3480
- "canonicalReference": "@gcorevideo/player!MediaControl#disable:member(1)",
3481
- "docComment": "/**\n * Hides the media control UI\n */\n",
3480
+ "canonicalReference": "@gcorevideo/player!MediaControl.defaultSettings:member(1)",
3481
+ "docComment": "/**\n * @returns Default media control layout settings @remark The method can be used to change the default dashboard layout, for example, removing the standard UI elements\n *\n * @example\n * ```ts\n * const settings = MediaControl.defaultSettings()\n * settings.left = settings.filter(item => item !== 'playpause' && item !== 'playstop')\n * ...\n * new Player({\n * mediaControl: settings,\n * })\n * ```\n *\n */\n",
3482
3482
  "excerptTokens": [
3483
3483
  {
3484
3484
  "kind": "Content",
3485
- "text": "disable(): "
3485
+ "text": "static defaultSettings(): "
3486
3486
  },
3487
3487
  {
3488
3488
  "kind": "Content",
3489
- "text": "void"
3489
+ "text": "any"
3490
3490
  },
3491
3491
  {
3492
3492
  "kind": "Content",
3493
3493
  "text": ";"
3494
3494
  }
3495
3495
  ],
3496
- "isStatic": false,
3496
+ "isStatic": true,
3497
3497
  "returnTypeTokenRange": {
3498
3498
  "startIndex": 1,
3499
3499
  "endIndex": 2
@@ -3504,16 +3504,16 @@
3504
3504
  "parameters": [],
3505
3505
  "isOptional": false,
3506
3506
  "isAbstract": false,
3507
- "name": "disable"
3507
+ "name": "defaultSettings"
3508
3508
  },
3509
3509
  {
3510
3510
  "kind": "Method",
3511
- "canonicalReference": "@gcorevideo/player!MediaControl#disabledControlButton:member(1)",
3512
- "docComment": "/**\n * Disable the user interaction for the control buttons\n */\n",
3511
+ "canonicalReference": "@gcorevideo/player!MediaControl#disable:member(1)",
3512
+ "docComment": "/**\n * Hides the media control UI\n */\n",
3513
3513
  "excerptTokens": [
3514
3514
  {
3515
3515
  "kind": "Content",
3516
- "text": "disabledControlButton(): "
3516
+ "text": "disable(): "
3517
3517
  },
3518
3518
  {
3519
3519
  "kind": "Content",
@@ -3535,7 +3535,7 @@
3535
3535
  "parameters": [],
3536
3536
  "isOptional": false,
3537
3537
  "isAbstract": false,
3538
- "name": "disabledControlButton"
3538
+ "name": "disable"
3539
3539
  },
3540
3540
  {
3541
3541
  "kind": "Method",
@@ -3570,34 +3570,65 @@
3570
3570
  },
3571
3571
  {
3572
3572
  "kind": "Method",
3573
- "canonicalReference": "@gcorevideo/player!MediaControl#enableControlButton:member(1)",
3574
- "docComment": "/**\n * Enable the user interaction disabled earlier\n */\n",
3573
+ "canonicalReference": "@gcorevideo/player!MediaControl.extendSettings:member(1)",
3574
+ "docComment": "/**\n * Extend the default media control layout settings\n *\n * @remarks\n *\n * This method allows adding custom elements to the media control dashboard. The default settings are not modified.\n *\n * @param settings - Additional settings\n *\n * @returns The extended settings\n *\n * @example\n * ```ts\n * new Player({\n * mediaControl: MediaControl.extendSettings({\n * left: ['*'], // add all custom elements to the left panel\n * }),\n * })\n * ```\n *\n */\n",
3575
3575
  "excerptTokens": [
3576
3576
  {
3577
3577
  "kind": "Content",
3578
- "text": "enableControlButton(): "
3578
+ "text": "static extendSettings(settings: "
3579
+ },
3580
+ {
3581
+ "kind": "Reference",
3582
+ "text": "Partial",
3583
+ "canonicalReference": "!Partial:type"
3579
3584
  },
3580
3585
  {
3581
3586
  "kind": "Content",
3582
- "text": "void"
3587
+ "text": "<"
3588
+ },
3589
+ {
3590
+ "kind": "Reference",
3591
+ "text": "MediaControlSettings",
3592
+ "canonicalReference": "@gcorevideo/player!MediaControlSettings:type"
3593
+ },
3594
+ {
3595
+ "kind": "Content",
3596
+ "text": ">"
3597
+ },
3598
+ {
3599
+ "kind": "Content",
3600
+ "text": "): "
3601
+ },
3602
+ {
3603
+ "kind": "Content",
3604
+ "text": "{\n left: string[];\n right: string[];\n default: string[];\n }"
3583
3605
  },
3584
3606
  {
3585
3607
  "kind": "Content",
3586
3608
  "text": ";"
3587
3609
  }
3588
3610
  ],
3589
- "isStatic": false,
3611
+ "isStatic": true,
3590
3612
  "returnTypeTokenRange": {
3591
- "startIndex": 1,
3592
- "endIndex": 2
3613
+ "startIndex": 6,
3614
+ "endIndex": 7
3593
3615
  },
3594
3616
  "releaseTag": "Beta",
3595
3617
  "isProtected": false,
3596
3618
  "overloadIndex": 1,
3597
- "parameters": [],
3619
+ "parameters": [
3620
+ {
3621
+ "parameterName": "settings",
3622
+ "parameterTypeTokenRange": {
3623
+ "startIndex": 1,
3624
+ "endIndex": 5
3625
+ },
3626
+ "isOptional": false
3627
+ }
3628
+ ],
3598
3629
  "isOptional": false,
3599
3630
  "isAbstract": false,
3600
- "name": "enableControlButton"
3631
+ "name": "extendSettings"
3601
3632
  },
3602
3633
  {
3603
3634
  "kind": "Method",
@@ -3633,7 +3664,7 @@
3633
3664
  {
3634
3665
  "kind": "Method",
3635
3666
  "canonicalReference": "@gcorevideo/player!MediaControl#mount:member(1)",
3636
- "docComment": "/**\n * Get a media control element DOM node\n *\n * @remarks\n *\n * Use this method to render custom media control UI in a plugin\n *\n * @param name - The name of the media control element\n *\n * @returns The DOM node to render to or extend\n *\n * @example\n * ```ts\n * class MyPlugin extends UICorePlugin {\n * override render() {\n * this.$el.html('<div data-clips>Here we go</div>')\n * this.core.getPlugin('media_control').mount('clips', this.$el)\n * return this\n * }\n * }\n * ```\n *\n */\n",
3667
+ "docComment": "/**\n * Mounts a media control element at a specific location\n *\n * @remarks\n *\n * Use this method to render custom media control UI in a plugin\n *\n * @param name - The location to mount the element\n *\n * @param element - The element to mount\n *\n * @example\n * ```ts\n * class MyPlugin extends UICorePlugin {\n * override render() {\n * this.$el.html('<div id=\"my-element\" class=\"my-class\">Here we go</div>')\n * this.core.getPlugin('media_control').mount('left', this.$el)\n * return this\n * }\n * }\n * ```\n *\n */\n",
3637
3668
  "excerptTokens": [
3638
3669
  {
3639
3670
  "kind": "Content",
@@ -3641,8 +3672,8 @@
3641
3672
  },
3642
3673
  {
3643
3674
  "kind": "Reference",
3644
- "text": "MediaControlElement",
3645
- "canonicalReference": "@gcorevideo/player!MediaControlElement:type"
3675
+ "text": "MediaControlSlotMountPoint",
3676
+ "canonicalReference": "@gcorevideo/player!MediaControlSlotMountPoint:type"
3646
3677
  },
3647
3678
  {
3648
3679
  "kind": "Content",
@@ -3821,6 +3852,72 @@
3821
3852
  "isAbstract": false,
3822
3853
  "name": "setVolume"
3823
3854
  },
3855
+ {
3856
+ "kind": "Method",
3857
+ "canonicalReference": "@gcorevideo/player!MediaControl#slot:member(1)",
3858
+ "docComment": "/**\n * Mount a media control to its configured location\n *\n * @remarks\n *\n * Media controls layout is configured via {@link MediaControlSettings}. A plugin implementing custom elements on the media control dashboard, should use this method to mount the element to the correct location. The actual location is defined by the occurence of the element token in the `left`, `right` or `default` section of the {@link MediaControlSettings}.\n *\n * @param name - The name of the media control element\n *\n * @param element - The DOM node/fragment to mount\n *\n * @example\n * ```ts\n * class MyPlugin extends UICorePlugin {\n * override render() {\n * // mount the element where it is configured in the layout\n * this.core.getPlugin('media_control').slot('my-element', this.$el)\n * }\n * }\n * ...\n * Player.registerPlugin(MyPlugin)\n * ...\n * // Configuration of the media control layout\n * new Player({\n * mediaControl: {\n * left: ['my-element'], // the element will be mounted to the left panel\n * },\n * })\n * ```\n *\n */\n",
3859
+ "excerptTokens": [
3860
+ {
3861
+ "kind": "Content",
3862
+ "text": "slot(name: "
3863
+ },
3864
+ {
3865
+ "kind": "Reference",
3866
+ "text": "MediaControlElement",
3867
+ "canonicalReference": "@gcorevideo/player!MediaControlElement:type"
3868
+ },
3869
+ {
3870
+ "kind": "Content",
3871
+ "text": ", element: "
3872
+ },
3873
+ {
3874
+ "kind": "Reference",
3875
+ "text": "ZeptoResult",
3876
+ "canonicalReference": "@gcorevideo/player!ZeptoResult:type"
3877
+ },
3878
+ {
3879
+ "kind": "Content",
3880
+ "text": "): "
3881
+ },
3882
+ {
3883
+ "kind": "Content",
3884
+ "text": "void"
3885
+ },
3886
+ {
3887
+ "kind": "Content",
3888
+ "text": ";"
3889
+ }
3890
+ ],
3891
+ "isStatic": false,
3892
+ "returnTypeTokenRange": {
3893
+ "startIndex": 5,
3894
+ "endIndex": 6
3895
+ },
3896
+ "releaseTag": "Beta",
3897
+ "isProtected": false,
3898
+ "overloadIndex": 1,
3899
+ "parameters": [
3900
+ {
3901
+ "parameterName": "name",
3902
+ "parameterTypeTokenRange": {
3903
+ "startIndex": 1,
3904
+ "endIndex": 2
3905
+ },
3906
+ "isOptional": false
3907
+ },
3908
+ {
3909
+ "parameterName": "element",
3910
+ "parameterTypeTokenRange": {
3911
+ "startIndex": 3,
3912
+ "endIndex": 4
3913
+ },
3914
+ "isOptional": false
3915
+ }
3916
+ ],
3917
+ "isOptional": false,
3918
+ "isAbstract": false,
3919
+ "name": "slot"
3920
+ },
3824
3921
  {
3825
3922
  "kind": "Method",
3826
3923
  "canonicalReference": "@gcorevideo/player!MediaControl#toggleElement:member(1)",
@@ -3926,34 +4023,15 @@
3926
4023
  {
3927
4024
  "kind": "TypeAlias",
3928
4025
  "canonicalReference": "@gcorevideo/player!MediaControlElement:type",
3929
- "docComment": "/**\n * Built-in media control elements.\n *\n * @beta\n */\n",
4026
+ "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",
3930
4027
  "excerptTokens": [
3931
4028
  {
3932
4029
  "kind": "Content",
3933
4030
  "text": "export type MediaControlElement = "
3934
4031
  },
3935
- {
3936
- "kind": "Reference",
3937
- "text": "MediaControlLeftElement",
3938
- "canonicalReference": "@gcorevideo/player!MediaControlLeftElement:type"
3939
- },
3940
4032
  {
3941
4033
  "kind": "Content",
3942
- "text": " | "
3943
- },
3944
- {
3945
- "kind": "Reference",
3946
- "text": "MediaControlLayerElement",
3947
- "canonicalReference": "@gcorevideo/player!MediaControlLayerElement:type"
3948
- },
3949
- {
3950
- "kind": "Content",
3951
- "text": " | "
3952
- },
3953
- {
3954
- "kind": "Reference",
3955
- "text": "MediaControlRightElement",
3956
- "canonicalReference": "@gcorevideo/player!MediaControlRightElement:type"
4034
+ "text": "string"
3957
4035
  },
3958
4036
  {
3959
4037
  "kind": "Content",
@@ -3965,21 +4043,21 @@
3965
4043
  "name": "MediaControlElement",
3966
4044
  "typeTokenRange": {
3967
4045
  "startIndex": 1,
3968
- "endIndex": 6
4046
+ "endIndex": 2
3969
4047
  }
3970
4048
  },
3971
4049
  {
3972
4050
  "kind": "TypeAlias",
3973
- "canonicalReference": "@gcorevideo/player!MediaControlLayerElement:type",
3974
- "docComment": "/**\n * Media control elements that appear in main layer, spanning the entire width of the player.\n *\n * @beta\n */\n",
4051
+ "canonicalReference": "@gcorevideo/player!MediaControlPluginSettings:type",
4052
+ "docComment": "",
3975
4053
  "excerptTokens": [
3976
4054
  {
3977
4055
  "kind": "Content",
3978
- "text": "export type MediaControlLayerElement = "
4056
+ "text": "export type MediaControlPluginSettings = "
3979
4057
  },
3980
4058
  {
3981
4059
  "kind": "Content",
3982
- "text": "'seekbar' | 'seekBarContainer'"
4060
+ "text": "{\n hideMediaControlDelay?: number;\n}"
3983
4061
  },
3984
4062
  {
3985
4063
  "kind": "Content",
@@ -3987,8 +4065,8 @@
3987
4065
  }
3988
4066
  ],
3989
4067
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
3990
- "releaseTag": "Beta",
3991
- "name": "MediaControlLayerElement",
4068
+ "releaseTag": "Public",
4069
+ "name": "MediaControlPluginSettings",
3992
4070
  "typeTokenRange": {
3993
4071
  "startIndex": 1,
3994
4072
  "endIndex": 2
@@ -3996,42 +4074,43 @@
3996
4074
  },
3997
4075
  {
3998
4076
  "kind": "TypeAlias",
3999
- "canonicalReference": "@gcorevideo/player!MediaControlLeftElement:type",
4000
- "docComment": "/**\n * Media control elements that appear in the left area.\n *\n * @beta\n */\n",
4077
+ "canonicalReference": "@gcorevideo/player!MediaControlSettings:type",
4078
+ "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",
4001
4079
  "excerptTokens": [
4002
4080
  {
4003
4081
  "kind": "Content",
4004
- "text": "export type MediaControlLeftElement = "
4082
+ "text": "export type MediaControlSettings = "
4005
4083
  },
4006
4084
  {
4007
4085
  "kind": "Content",
4008
- "text": "'clipText' | 'duration' | 'dvr' | 'playpause' | 'playstop' | 'position' | 'volume' | 'clips'"
4086
+ "text": "{\n left: "
4087
+ },
4088
+ {
4089
+ "kind": "Reference",
4090
+ "text": "MediaControlElement",
4091
+ "canonicalReference": "@gcorevideo/player!MediaControlElement:type"
4009
4092
  },
4010
4093
  {
4011
4094
  "kind": "Content",
4012
- "text": ";"
4013
- }
4014
- ],
4015
- "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
4016
- "releaseTag": "Beta",
4017
- "name": "MediaControlLeftElement",
4018
- "typeTokenRange": {
4019
- "startIndex": 1,
4020
- "endIndex": 2
4021
- }
4022
- },
4023
- {
4024
- "kind": "TypeAlias",
4025
- "canonicalReference": "@gcorevideo/player!MediaControlRightElement:type",
4026
- "docComment": "/**\n * Media control elements that appear in the right area.\n *\n * @beta\n */\n",
4027
- "excerptTokens": [
4095
+ "text": "[];\n right: "
4096
+ },
4097
+ {
4098
+ "kind": "Reference",
4099
+ "text": "MediaControlElement",
4100
+ "canonicalReference": "@gcorevideo/player!MediaControlElement:type"
4101
+ },
4028
4102
  {
4029
4103
  "kind": "Content",
4030
- "text": "export type MediaControlRightElement = "
4104
+ "text": "[];\n default: "
4105
+ },
4106
+ {
4107
+ "kind": "Reference",
4108
+ "text": "MediaControlElement",
4109
+ "canonicalReference": "@gcorevideo/player!MediaControlElement:type"
4031
4110
  },
4032
4111
  {
4033
4112
  "kind": "Content",
4034
- "text": "'audiotracks' | 'cc' | 'fullscreen' | 'hd-indicator' | 'gear' | 'multicamera' | 'pip' | 'vr'"
4113
+ "text": "[];\n seekEnabled: boolean;\n}"
4035
4114
  },
4036
4115
  {
4037
4116
  "kind": "Content",
@@ -4040,51 +4119,24 @@
4040
4119
  ],
4041
4120
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
4042
4121
  "releaseTag": "Beta",
4043
- "name": "MediaControlRightElement",
4122
+ "name": "MediaControlSettings",
4044
4123
  "typeTokenRange": {
4045
4124
  "startIndex": 1,
4046
- "endIndex": 2
4125
+ "endIndex": 8
4047
4126
  }
4048
4127
  },
4049
4128
  {
4050
4129
  "kind": "TypeAlias",
4051
- "canonicalReference": "@gcorevideo/player!MediaControlSettings:type",
4052
- "docComment": "/**\n * Specifies the allowed media control elements in each area. Can be used to restrict rendered media control elements.\n *\n * @beta\n */\n",
4130
+ "canonicalReference": "@gcorevideo/player!MediaControlSlotMountPoint:type",
4131
+ "docComment": "/**\n * Identifies a location for mounting custom media control elements.\n *\n * @beta\n */\n",
4053
4132
  "excerptTokens": [
4054
4133
  {
4055
4134
  "kind": "Content",
4056
- "text": "export type MediaControlSettings = "
4135
+ "text": "export type MediaControlSlotMountPoint = "
4057
4136
  },
4058
4137
  {
4059
4138
  "kind": "Content",
4060
- "text": "{\n left: "
4061
- },
4062
- {
4063
- "kind": "Reference",
4064
- "text": "MediaControlLeftElement",
4065
- "canonicalReference": "@gcorevideo/player!MediaControlLeftElement:type"
4066
- },
4067
- {
4068
- "kind": "Content",
4069
- "text": "[];\n right: "
4070
- },
4071
- {
4072
- "kind": "Reference",
4073
- "text": "MediaControlRightElement",
4074
- "canonicalReference": "@gcorevideo/player!MediaControlRightElement:type"
4075
- },
4076
- {
4077
- "kind": "Content",
4078
- "text": "[];\n default: "
4079
- },
4080
- {
4081
- "kind": "Reference",
4082
- "text": "MediaControlLayerElement",
4083
- "canonicalReference": "@gcorevideo/player!MediaControlLayerElement:type"
4084
- },
4085
- {
4086
- "kind": "Content",
4087
- "text": "[];\n seekEnabled: boolean;\n}"
4139
+ "text": "'root' | 'base' | 'left' | 'right' | 'center' | 'seekbar'"
4088
4140
  },
4089
4141
  {
4090
4142
  "kind": "Content",
@@ -4093,10 +4145,10 @@
4093
4145
  ],
4094
4146
  "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
4095
4147
  "releaseTag": "Beta",
4096
- "name": "MediaControlSettings",
4148
+ "name": "MediaControlSlotMountPoint",
4097
4149
  "typeTokenRange": {
4098
4150
  "startIndex": 1,
4099
- "endIndex": 8
4151
+ "endIndex": 2
4100
4152
  }
4101
4153
  },
4102
4154
  {
@@ -8815,6 +8867,32 @@
8815
8867
  ],
8816
8868
  "extendsTokenRanges": []
8817
8869
  },
8870
+ {
8871
+ "kind": "TypeAlias",
8872
+ "canonicalReference": "@gcorevideo/player!StandardMediaControlElement:type",
8873
+ "docComment": "/**\n * Built-in media control elements.\n *\n * @beta\n */\n",
8874
+ "excerptTokens": [
8875
+ {
8876
+ "kind": "Content",
8877
+ "text": "export type StandardMediaControlElement = "
8878
+ },
8879
+ {
8880
+ "kind": "Content",
8881
+ "text": "'duration' | 'fullscreen' | 'hd-indicator' | 'playpause' | 'playstop' | 'position' | 'seekbar' | 'volume'"
8882
+ },
8883
+ {
8884
+ "kind": "Content",
8885
+ "text": ";"
8886
+ }
8887
+ ],
8888
+ "fileUrlPath": "src/plugins/media-control/MediaControl.ts",
8889
+ "releaseTag": "Beta",
8890
+ "name": "StandardMediaControlElement",
8891
+ "typeTokenRange": {
8892
+ "startIndex": 1,
8893
+ "endIndex": 2
8894
+ }
8895
+ },
8818
8896
  {
8819
8897
  "kind": "Interface",
8820
8898
  "canonicalReference": "@gcorevideo/player!StartEventData:interface",