@gcorevideo/player 2.20.11 → 2.20.13

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 (66) hide show
  1. package/dist/core.js +26 -2
  2. package/dist/index.css +953 -953
  3. package/dist/index.js +61 -55
  4. package/dist/player.d.ts +47 -15
  5. package/dist/plugins/index.css +1475 -1475
  6. package/dist/plugins/index.js +36 -49
  7. package/docs/api/player.contextmenupluginsettings.md +1 -1
  8. package/docs/api/player.favicon.md +4 -174
  9. package/docs/api/{player.favicon.bindevents.md → player.faviconpluginsettings.faviconcolor.md} +5 -7
  10. package/docs/api/{player.favicon._constructor_.md → player.faviconpluginsettings.md} +17 -8
  11. package/docs/api/player.md +15 -4
  12. package/docs/api/{player.favicon.disable.md → player.mediacontrol.getcenterpanel.md} +4 -4
  13. package/docs/api/{player.favicon.configure.md → player.mediacontrol.getleftpanel.md} +8 -4
  14. package/docs/api/player.mediacontrol.md +30 -11
  15. package/docs/api/player.playbackerror.md +2 -2
  16. package/docs/api/player.playbackerror.origin.md +1 -1
  17. package/docs/api/player.playbackerror.scope.md +1 -1
  18. package/docs/api/player.poster.md +1 -1
  19. package/docs/api/player.sourcecontroller.md +2 -33
  20. package/lib/Player.js +1 -1
  21. package/lib/playback/HTML5Video.d.ts +5 -0
  22. package/lib/playback/HTML5Video.d.ts.map +1 -1
  23. package/lib/playback/HTML5Video.js +21 -0
  24. package/lib/playback/hls-playback/HlsPlayback.d.ts +2 -2
  25. package/lib/playback/hls-playback/HlsPlayback.d.ts.map +1 -1
  26. package/lib/playback/hls-playback/HlsPlayback.js +4 -0
  27. package/lib/playback.types.d.ts +2 -2
  28. package/lib/plugins/click-to-pause/ClickToPause.d.ts.map +1 -1
  29. package/lib/plugins/click-to-pause/ClickToPause.js +0 -4
  30. package/lib/plugins/context-menu/ContextMenu.d.ts +1 -1
  31. package/lib/plugins/dvr-controls/DvrControls.d.ts.map +1 -1
  32. package/lib/plugins/dvr-controls/DvrControls.js +0 -1
  33. package/lib/plugins/error-screen/ErrorScreen.d.ts.map +1 -1
  34. package/lib/plugins/error-screen/ErrorScreen.js +0 -1
  35. package/lib/plugins/favicon/Favicon.d.ts +30 -3
  36. package/lib/plugins/favicon/Favicon.d.ts.map +1 -1
  37. package/lib/plugins/favicon/Favicon.js +28 -35
  38. package/lib/plugins/media-control/MediaControl.d.ts +1 -8
  39. package/lib/plugins/media-control/MediaControl.d.ts.map +1 -1
  40. package/lib/plugins/media-control/MediaControl.js +2 -9
  41. package/lib/plugins/poster/Poster.d.ts +2 -0
  42. package/lib/plugins/poster/Poster.d.ts.map +1 -1
  43. package/lib/plugins/poster/Poster.js +3 -3
  44. package/lib/plugins/source-controller/SourceController.d.ts +3 -0
  45. package/lib/plugins/source-controller/SourceController.d.ts.map +1 -1
  46. package/lib/plugins/source-controller/SourceController.js +3 -0
  47. package/package.json +1 -1
  48. package/src/Player.ts +1 -1
  49. package/src/playback/HTML5Video.ts +29 -1
  50. package/src/playback/__tests__/HTML5Video.test.ts +47 -0
  51. package/src/playback/hls-playback/HlsPlayback.ts +5 -1
  52. package/src/playback.types.ts +2 -2
  53. package/src/plugins/click-to-pause/ClickToPause.ts +0 -5
  54. package/src/plugins/context-menu/ContextMenu.ts +1 -1
  55. package/src/plugins/dvr-controls/DvrControls.ts +0 -1
  56. package/src/plugins/error-screen/ErrorScreen.ts +0 -1
  57. package/src/plugins/favicon/Favicon.ts +38 -41
  58. package/src/plugins/media-control/MediaControl.ts +2 -9
  59. package/src/plugins/poster/Poster.ts +4 -3
  60. package/src/plugins/source-controller/SourceController.ts +3 -0
  61. package/temp/player.api.json +101 -246
  62. package/tsconfig.tsbuildinfo +1 -1
  63. package/docs/api/player.favicon.destroy.md +0 -18
  64. package/docs/api/player.favicon.name.md +0 -14
  65. package/docs/api/player.favicon.supportedversion.md +0 -16
  66. package/docs/api/player.sourcecontroller._constructor_.md +0 -50
@@ -162,7 +162,7 @@
162
162
  },
163
163
  "kind": "Package",
164
164
  "canonicalReference": "@gcorevideo/player!",
165
- "docComment": "/**\n * Video player for the Gcore streaming platform\n *\n * @remarks\n *\n * This package provides a video player for the Gcore streaming platform. It is built on top of the Clappr library and provides a framework for building custom integrations. Start with {@link Player} for more information.\n *\n * Various plugins (marked with `PLUGIN` keyword) are available to extend the player with additional features.\n *\n * @example\n * ```ts\n * import { Player, MediaControl, ErrorScreen } from '@gcorevideo/player'\n *\n * Player.registerPlugin(MediaControl)\n * Player.registerPlugin(ErrorScreen)\n *\n * const player = new Player({\n * autoPlay: true,\n * mute: true,\n * sources: [{ source: 'https://example.com/a.mpd', mimeType: 'application/dash+xml' }],\n * })\n *\n * player.attachTo(document.getElementById('container'))\n * ```\n *\n * @packageDocumentation\n */\n",
165
+ "docComment": "/**\n * Video player for the Gcore streaming platform\n *\n * @remarks\n *\n * This package provides a video player for the Gcore streaming platform. It is built on top of the {@link https://github.com/clappr/clappr | Clappr} library and provides a framework for building custom integrations. Start with {@link Player} for more information.\n *\n * Various plugins (marked with `PLUGIN` keyword) are available to extend the player with additional features.\n *\n * @example\n * ```ts\n * import { Player, MediaControl, ErrorScreen } from '@gcorevideo/player'\n *\n * Player.registerPlugin(MediaControl)\n * Player.registerPlugin(ErrorScreen)\n *\n * const player = new Player({\n * autoPlay: true,\n * mute: true,\n * sources: [{ source: 'https://example.com/a.mpd', mimeType: 'application/dash+xml' }],\n * })\n *\n * player.attachTo(document.getElementById('container'))\n * ```\n *\n * @packageDocumentation\n */\n",
166
166
  "name": "@gcorevideo/player",
167
167
  "preserveMemberOrder": false,
168
168
  "members": [
@@ -1043,7 +1043,7 @@
1043
1043
  {
1044
1044
  "kind": "Interface",
1045
1045
  "canonicalReference": "@gcorevideo/player!ContextMenuPluginSettings:interface",
1046
- "docComment": "/**\n * The plugin adds a context menu to the player.\n *\n * @beta\n */\n",
1046
+ "docComment": "/**\n * Context menu plugin settings\n *\n * @beta\n */\n",
1047
1047
  "excerptTokens": [
1048
1048
  {
1049
1049
  "kind": "Content",
@@ -1331,7 +1331,7 @@
1331
1331
  {
1332
1332
  "kind": "Class",
1333
1333
  "canonicalReference": "@gcorevideo/player!Favicon:class",
1334
- "docComment": "/**\n * `PLUGIN` that adds custom favicon to the player's tab.\n *\n * @beta\n */\n",
1334
+ "docComment": "/**\n * `PLUGIN` that changes the favicon according to the player's state.\n *\n * @remarks\n *\n * There are three states: stopped, playing and paused.\n *\n * The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the `Favicon` class.\n *\n * @beta\n */\n",
1335
1335
  "excerptTokens": [
1336
1336
  {
1337
1337
  "kind": "Content",
@@ -1352,172 +1352,36 @@
1352
1352
  "isAbstract": false,
1353
1353
  "name": "Favicon",
1354
1354
  "preserveMemberOrder": false,
1355
- "members": [
1356
- {
1357
- "kind": "Constructor",
1358
- "canonicalReference": "@gcorevideo/player!Favicon:constructor(1)",
1359
- "docComment": "/**\n * Constructs a new instance of the `Favicon` class\n */\n",
1360
- "excerptTokens": [
1361
- {
1362
- "kind": "Content",
1363
- "text": "constructor(core: "
1364
- },
1365
- {
1366
- "kind": "Reference",
1367
- "text": "Core",
1368
- "canonicalReference": "@clappr/core!default:class"
1369
- },
1370
- {
1371
- "kind": "Content",
1372
- "text": ");"
1373
- }
1374
- ],
1375
- "releaseTag": "Beta",
1376
- "isProtected": false,
1377
- "overloadIndex": 1,
1378
- "parameters": [
1379
- {
1380
- "parameterName": "core",
1381
- "parameterTypeTokenRange": {
1382
- "startIndex": 1,
1383
- "endIndex": 2
1384
- },
1385
- "isOptional": false
1386
- }
1387
- ]
1388
- },
1389
- {
1390
- "kind": "Method",
1391
- "canonicalReference": "@gcorevideo/player!Favicon#bindEvents:member(1)",
1392
- "docComment": "",
1393
- "excerptTokens": [
1394
- {
1395
- "kind": "Content",
1396
- "text": "bindEvents(): "
1397
- },
1398
- {
1399
- "kind": "Content",
1400
- "text": "void"
1401
- },
1402
- {
1403
- "kind": "Content",
1404
- "text": ";"
1405
- }
1406
- ],
1407
- "isStatic": false,
1408
- "returnTypeTokenRange": {
1409
- "startIndex": 1,
1410
- "endIndex": 2
1411
- },
1412
- "releaseTag": "Beta",
1413
- "isProtected": false,
1414
- "overloadIndex": 1,
1415
- "parameters": [],
1416
- "isOptional": false,
1417
- "isAbstract": false,
1418
- "name": "bindEvents"
1419
- },
1420
- {
1421
- "kind": "Method",
1422
- "canonicalReference": "@gcorevideo/player!Favicon#configure:member(1)",
1423
- "docComment": "",
1424
- "excerptTokens": [
1425
- {
1426
- "kind": "Content",
1427
- "text": "configure(): "
1428
- },
1429
- {
1430
- "kind": "Content",
1431
- "text": "void"
1432
- },
1433
- {
1434
- "kind": "Content",
1435
- "text": ";"
1436
- }
1437
- ],
1438
- "isStatic": false,
1439
- "returnTypeTokenRange": {
1440
- "startIndex": 1,
1441
- "endIndex": 2
1442
- },
1443
- "releaseTag": "Beta",
1444
- "isProtected": false,
1445
- "overloadIndex": 1,
1446
- "parameters": [],
1447
- "isOptional": false,
1448
- "isAbstract": false,
1449
- "name": "configure"
1450
- },
1451
- {
1452
- "kind": "Method",
1453
- "canonicalReference": "@gcorevideo/player!Favicon#destroy:member(1)",
1454
- "docComment": "",
1455
- "excerptTokens": [
1456
- {
1457
- "kind": "Content",
1458
- "text": "destroy(): "
1459
- },
1460
- {
1461
- "kind": "Content",
1462
- "text": "void"
1463
- },
1464
- {
1465
- "kind": "Content",
1466
- "text": ";"
1467
- }
1468
- ],
1469
- "isStatic": false,
1470
- "returnTypeTokenRange": {
1471
- "startIndex": 1,
1472
- "endIndex": 2
1473
- },
1474
- "releaseTag": "Beta",
1475
- "isProtected": false,
1476
- "overloadIndex": 1,
1477
- "parameters": [],
1478
- "isOptional": false,
1479
- "isAbstract": false,
1480
- "name": "destroy"
1481
- },
1355
+ "members": [],
1356
+ "extendsTokenRange": {
1357
+ "startIndex": 1,
1358
+ "endIndex": 2
1359
+ },
1360
+ "implementsTokenRanges": []
1361
+ },
1362
+ {
1363
+ "kind": "Interface",
1364
+ "canonicalReference": "@gcorevideo/player!FaviconPluginSettings:interface",
1365
+ "docComment": "/**\n * @beta\n */\n",
1366
+ "excerptTokens": [
1482
1367
  {
1483
- "kind": "Method",
1484
- "canonicalReference": "@gcorevideo/player!Favicon#disable:member(1)",
1485
- "docComment": "",
1486
- "excerptTokens": [
1487
- {
1488
- "kind": "Content",
1489
- "text": "disable(): "
1490
- },
1491
- {
1492
- "kind": "Content",
1493
- "text": "void"
1494
- },
1495
- {
1496
- "kind": "Content",
1497
- "text": ";"
1498
- }
1499
- ],
1500
- "isStatic": false,
1501
- "returnTypeTokenRange": {
1502
- "startIndex": 1,
1503
- "endIndex": 2
1504
- },
1505
- "releaseTag": "Beta",
1506
- "isProtected": false,
1507
- "overloadIndex": 1,
1508
- "parameters": [],
1509
- "isOptional": false,
1510
- "isAbstract": false,
1511
- "name": "disable"
1512
- },
1368
+ "kind": "Content",
1369
+ "text": "export interface FaviconPluginSettings "
1370
+ }
1371
+ ],
1372
+ "fileUrlPath": "src/plugins/favicon/Favicon.ts",
1373
+ "releaseTag": "Beta",
1374
+ "name": "FaviconPluginSettings",
1375
+ "preserveMemberOrder": false,
1376
+ "members": [
1513
1377
  {
1514
- "kind": "Property",
1515
- "canonicalReference": "@gcorevideo/player!Favicon#name:member",
1516
- "docComment": "",
1378
+ "kind": "PropertySignature",
1379
+ "canonicalReference": "@gcorevideo/player!FaviconPluginSettings#faviconColor:member",
1380
+ "docComment": "/**\n * CSS color of the favicon.\n */\n",
1517
1381
  "excerptTokens": [
1518
1382
  {
1519
1383
  "kind": "Content",
1520
- "text": "get name(): "
1384
+ "text": "faviconColor?: "
1521
1385
  },
1522
1386
  {
1523
1387
  "kind": "Content",
@@ -1528,54 +1392,17 @@
1528
1392
  "text": ";"
1529
1393
  }
1530
1394
  ],
1531
- "isReadonly": true,
1532
- "isOptional": false,
1533
- "releaseTag": "Beta",
1534
- "name": "name",
1535
- "propertyTypeTokenRange": {
1536
- "startIndex": 1,
1537
- "endIndex": 2
1538
- },
1539
- "isStatic": false,
1540
- "isProtected": false,
1541
- "isAbstract": false
1542
- },
1543
- {
1544
- "kind": "Property",
1545
- "canonicalReference": "@gcorevideo/player!Favicon#supportedVersion:member",
1546
- "docComment": "",
1547
- "excerptTokens": [
1548
- {
1549
- "kind": "Content",
1550
- "text": "get supportedVersion(): "
1551
- },
1552
- {
1553
- "kind": "Content",
1554
- "text": "{\n min: string;\n }"
1555
- },
1556
- {
1557
- "kind": "Content",
1558
- "text": ";"
1559
- }
1560
- ],
1561
- "isReadonly": true,
1562
- "isOptional": false,
1395
+ "isReadonly": false,
1396
+ "isOptional": true,
1563
1397
  "releaseTag": "Beta",
1564
- "name": "supportedVersion",
1398
+ "name": "faviconColor",
1565
1399
  "propertyTypeTokenRange": {
1566
1400
  "startIndex": 1,
1567
1401
  "endIndex": 2
1568
- },
1569
- "isStatic": false,
1570
- "isProtected": false,
1571
- "isAbstract": false
1402
+ }
1572
1403
  }
1573
1404
  ],
1574
- "extendsTokenRange": {
1575
- "startIndex": 1,
1576
- "endIndex": 2
1577
- },
1578
- "implementsTokenRanges": []
1405
+ "extendsTokenRanges": []
1579
1406
  },
1580
1407
  {
1581
1408
  "kind": "TypeAlias",
@@ -2767,7 +2594,7 @@
2767
2594
  {
2768
2595
  "kind": "Class",
2769
2596
  "canonicalReference": "@gcorevideo/player!MediaControl:class",
2770
- "docComment": "/**\n * `PLUGIN` that provides a foundation for developing custom media controls UI.\n *\n * @remarks\n *\n * The methods exposed are to be used by the other plugins that extend the media control UI. The plugin registration should be arranged so that MediaControl is initialized before every other `PLUGIN` that depends on it.\n *\n * @example\n * ```ts\n * Player.registerPlugin(MediaControl) // <--- This must go first\n * Player.registerPlugin(LevelSelector) // a media control plugin\n * Player.registerPlugin(NerdStats) // another media control plugin\n * ```\n *\n * @beta\n */\n",
2597
+ "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 * @beta\n */\n",
2771
2598
  "excerptTokens": [
2772
2599
  {
2773
2600
  "kind": "Content",
@@ -2976,6 +2803,37 @@
2976
2803
  "isAbstract": false,
2977
2804
  "name": "enableControlButton"
2978
2805
  },
2806
+ {
2807
+ "kind": "Method",
2808
+ "canonicalReference": "@gcorevideo/player!MediaControl#getCenterPanel:member(1)",
2809
+ "docComment": "",
2810
+ "excerptTokens": [
2811
+ {
2812
+ "kind": "Content",
2813
+ "text": "getCenterPanel(): "
2814
+ },
2815
+ {
2816
+ "kind": "Content",
2817
+ "text": "any"
2818
+ },
2819
+ {
2820
+ "kind": "Content",
2821
+ "text": ";"
2822
+ }
2823
+ ],
2824
+ "isStatic": false,
2825
+ "returnTypeTokenRange": {
2826
+ "startIndex": 1,
2827
+ "endIndex": 2
2828
+ },
2829
+ "releaseTag": "Beta",
2830
+ "isProtected": false,
2831
+ "overloadIndex": 1,
2832
+ "parameters": [],
2833
+ "isOptional": false,
2834
+ "isAbstract": false,
2835
+ "name": "getCenterPanel"
2836
+ },
2979
2837
  {
2980
2838
  "kind": "Method",
2981
2839
  "canonicalReference": "@gcorevideo/player!MediaControl#getElement:member(1)",
@@ -3030,6 +2888,37 @@
3030
2888
  "isAbstract": false,
3031
2889
  "name": "getElement"
3032
2890
  },
2891
+ {
2892
+ "kind": "Method",
2893
+ "canonicalReference": "@gcorevideo/player!MediaControl#getLeftPanel:member(1)",
2894
+ "docComment": "/**\n * Get the left panel area to append custom elements to\n *\n * @returns ZeptoSelector of the left panel element\n */\n",
2895
+ "excerptTokens": [
2896
+ {
2897
+ "kind": "Content",
2898
+ "text": "getLeftPanel(): "
2899
+ },
2900
+ {
2901
+ "kind": "Content",
2902
+ "text": "any"
2903
+ },
2904
+ {
2905
+ "kind": "Content",
2906
+ "text": ";"
2907
+ }
2908
+ ],
2909
+ "isStatic": false,
2910
+ "returnTypeTokenRange": {
2911
+ "startIndex": 1,
2912
+ "endIndex": 2
2913
+ },
2914
+ "releaseTag": "Beta",
2915
+ "isProtected": false,
2916
+ "overloadIndex": 1,
2917
+ "parameters": [],
2918
+ "isOptional": false,
2919
+ "isAbstract": false,
2920
+ "name": "getLeftPanel"
2921
+ },
3033
2922
  {
3034
2923
  "kind": "Method",
3035
2924
  "canonicalReference": "@gcorevideo/player!MediaControl#getRightPanel:member(1)",
@@ -3848,7 +3737,7 @@
3848
3737
  {
3849
3738
  "kind": "PropertySignature",
3850
3739
  "canonicalReference": "@gcorevideo/player!PlaybackError#origin:member",
3851
- "docComment": "/**\n * Exact component that originated the error.\n *\n * @example\n *\n * - 'core' - 'dash' - 'media_control'\n */\n",
3740
+ "docComment": "/**\n * Name of the component that originated the error.\n *\n * @example\n *\n * - 'core' - 'dash' - 'media_control'\n */\n",
3852
3741
  "excerptTokens": [
3853
3742
  {
3854
3743
  "kind": "Content",
@@ -3875,7 +3764,7 @@
3875
3764
  {
3876
3765
  "kind": "PropertySignature",
3877
3766
  "canonicalReference": "@gcorevideo/player!PlaybackError#scope:member",
3878
- "docComment": "/**\n * Component subsystem of the error origin\n */\n",
3767
+ "docComment": "/**\n * Component subsystem of the error origin, together with the `origin` uniquely identifies the originating component.\n */\n",
3879
3768
  "excerptTokens": [
3880
3769
  {
3881
3770
  "kind": "Content",
@@ -6109,7 +5998,7 @@
6109
5998
  {
6110
5999
  "kind": "Class",
6111
6000
  "canonicalReference": "@gcorevideo/player!Poster:class",
6112
- "docComment": "/**\n * `PLUGIN` that displays a poster image in the background and a big play button on top when playback is stopped\n *\n * @remarks\n *\n * When the playback is stopped, media control UI is disabled.\n *\n * Configuration options:\n *\n * - `poster.custom` - custom CSS background\n *\n * - `poster.showForNoOp` - whether to show the poster when the playback is not started\n *\n * - `poster.url` - the URL of the poster image\n *\n * - `poster.showOnVideoEnd` - whether to show the poster when the playback is ended\n *\n * @example\n * ```ts\n * new Player({\n * ...\n * poster: {\n * showForNoOp: true,\n * url: 'https://via.placeholder.com/150.png',\n * }\n * })\n * ```\n *\n * @beta\n */\n",
6001
+ "docComment": "/**\n * `PLUGIN` that displays a poster image in the background and a big play button on top when playback is stopped\n *\n * @remarks\n *\n * When the playback is stopped, media control UI is disabled. Note that the poster image, if specified via the player config, will be used to update video element's poster attribute by the HTML5-video-based playback module.\n *\n * Configuration options:\n *\n * - `poster.custom` - custom CSS background\n *\n * - `poster.showForNoOp` - whether to show the poster when the playback is not started\n *\n * - `poster.url` - the URL of the poster image\n *\n * - `poster.showOnVideoEnd` - whether to show the poster when the playback is ended\n *\n * @example\n * ```ts\n * new Player({\n * ...\n * poster: {\n * showForNoOp: true,\n * url: 'https://via.placeholder.com/150.png',\n * }\n * })\n * ```\n *\n * @beta\n */\n",
6113
6002
  "excerptTokens": [
6114
6003
  {
6115
6004
  "kind": "Content",
@@ -7770,7 +7659,7 @@
7770
7659
  {
7771
7660
  "kind": "Class",
7772
7661
  "canonicalReference": "@gcorevideo/player!SourceController:class",
7773
- "docComment": "/**\n * `PLUGIN` that is responsible for managing the automatic failover between sources.\n *\n * @remarks\n *\n * Have a look at the {@link https://miro.com/app/board/uXjVLiN15tY=/?share_link_id=390327585787 | source failover diagram} for the details on how sources ordering and selection works.\n *\n * This plugin does not expose any public methods apart from required by the Clappr plugin interface. It is supposed to work autonomously.\n *\n * @example\n * ```ts\n * import { SourceController } from '@gcorevideo/player'\n *\n * Player.registerPlugin(SourceController)\n * ```\n *\n * @beta\n */\n",
7662
+ "docComment": "/**\n * `PLUGIN` that is responsible for managing the automatic failover between sources.\n *\n * @remarks\n *\n * Have a look at the {@link https://miro.com/app/board/uXjVLiN15tY=/?share_link_id=390327585787 | source failover diagram} for the details on how sources ordering and selection works.\n *\n * This plugin does not expose any public methods apart from required by the Clappr plugin interface. It is supposed to work autonomously.\n *\n * The constructor for this class is marked as internal. Third-party code should not call the constructor directly or create subclasses that extend the `SourceController` class.\n *\n * @example\n * ```ts\n * import { SourceController } from '@gcorevideo/player'\n *\n * Player.registerPlugin(SourceController)\n * ```\n *\n * @beta\n */\n",
7774
7663
  "excerptTokens": [
7775
7664
  {
7776
7665
  "kind": "Content",
@@ -7791,41 +7680,7 @@
7791
7680
  "isAbstract": false,
7792
7681
  "name": "SourceController",
7793
7682
  "preserveMemberOrder": false,
7794
- "members": [
7795
- {
7796
- "kind": "Constructor",
7797
- "canonicalReference": "@gcorevideo/player!SourceController:constructor(1)",
7798
- "docComment": "/**\n * Constructs a new instance of the `SourceController` class\n */\n",
7799
- "excerptTokens": [
7800
- {
7801
- "kind": "Content",
7802
- "text": "constructor(core: "
7803
- },
7804
- {
7805
- "kind": "Reference",
7806
- "text": "ClapprCore",
7807
- "canonicalReference": "@clappr/core!default:class"
7808
- },
7809
- {
7810
- "kind": "Content",
7811
- "text": ");"
7812
- }
7813
- ],
7814
- "releaseTag": "Beta",
7815
- "isProtected": false,
7816
- "overloadIndex": 1,
7817
- "parameters": [
7818
- {
7819
- "parameterName": "core",
7820
- "parameterTypeTokenRange": {
7821
- "startIndex": 1,
7822
- "endIndex": 2
7823
- },
7824
- "isOptional": false
7825
- }
7826
- ]
7827
- }
7828
- ],
7683
+ "members": [],
7829
7684
  "extendsTokenRange": {
7830
7685
  "startIndex": 1,
7831
7686
  "endIndex": 2