@theoplayer/extended 5.11.0 → 6.0.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.
- package/README.md +13 -14
- package/THEOplayer.chromeless.d.ts +1 -1
- package/THEOplayer.chromeless.esm.js +40 -0
- package/THEOplayer.chromeless.js +3 -3
- package/THEOplayer.common.d.ts +1 -16
- package/THEOplayer.common.esm.js +40 -0
- package/THEOplayer.d.ts +1 -1
- package/THEOplayer.esm.js +40 -0
- package/THEOplayer.js +3 -3
- package/THEOplayer.transmux.asmjs.js +3 -3
- package/THEOplayer.transmux.js +3 -3
- package/package.json +41 -1
- package/theoplayer.d.js +3 -3
- package/theoplayer.e.js +0 -36
- package/theoplayer.p.js +0 -31
package/THEOplayer.common.d.ts
CHANGED
|
@@ -2463,22 +2463,6 @@ interface HlsPlaybackConfiguration {
|
|
|
2463
2463
|
* @defaultValue `'auto'`
|
|
2464
2464
|
*/
|
|
2465
2465
|
discontinuityAlignment?: HlsDiscontinuityAlignment;
|
|
2466
|
-
/**
|
|
2467
|
-
* Whether this source should be played using the legacy HLS pipeline.
|
|
2468
|
-
*
|
|
2469
|
-
* <br/> - If set to `true`, always use the legacy HLS pipeline.
|
|
2470
|
-
* <br/> - If set to `false`, never use the legacy HLS pipeline.
|
|
2471
|
-
* <br/> - If set to `undefined` (default), use the modern HLS pipeline if available, otherwise fall back to the legacy HLS pipeline.
|
|
2472
|
-
*
|
|
2473
|
-
* @defaultValue `undefined`
|
|
2474
|
-
*
|
|
2475
|
-
* @remarks
|
|
2476
|
-
* <br/> - Available since v4.0.0.
|
|
2477
|
-
*
|
|
2478
|
-
* @deprecated The legacy HLS pipeline is no longer supported and will be removed in a future semver-major release.
|
|
2479
|
-
* Please migrate to the new HLS pipeline.
|
|
2480
|
-
*/
|
|
2481
|
-
useLegacy?: boolean;
|
|
2482
2466
|
}
|
|
2483
2467
|
|
|
2484
2468
|
/**
|
|
@@ -11746,6 +11730,7 @@ declare const version: string;
|
|
|
11746
11730
|
* The player suite version of the THEOplayer SDK.
|
|
11747
11731
|
*
|
|
11748
11732
|
* @public
|
|
11733
|
+
* @deprecated Use {@link version | THEOplayer.version} instead.
|
|
11749
11734
|
*/
|
|
11750
11735
|
declare const playerSuiteVersion: string;
|
|
11751
11736
|
/**
|