@theoplayer/extended 5.10.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.
@@ -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
  /**
@@ -11328,6 +11312,10 @@ interface View {
11328
11312
  position: number;
11329
11313
  /**
11330
11314
  * Whether audio is muted.
11315
+ *
11316
+ * @remarks
11317
+ * <br/> Only one view can be unmuted at a time.
11318
+ * <br/> Setting this value will give audio focus to the view.
11331
11319
  */
11332
11320
  muted: boolean;
11333
11321
  /**
@@ -11579,6 +11567,20 @@ declare class MultiViewPlayer implements EventDispatcher<MultiViewPlayerEventMap
11579
11567
  * Whether all the underlying players are muted.
11580
11568
  */
11581
11569
  muted: boolean;
11570
+ /**
11571
+ * The {@link View} whose audio is in focus.
11572
+ *
11573
+ * @remarks
11574
+ * <br/> Only one view can have audio focus at a time.
11575
+ */
11576
+ readonly mainAudioView: View | undefined;
11577
+ /**
11578
+ * The {@link View} whose video is in focus.
11579
+ *
11580
+ * @remarks
11581
+ * <br/> This is the same as the {@link View} at position zero.
11582
+ */
11583
+ readonly mainVideoView: View | undefined;
11582
11584
  /**
11583
11585
  * Whether any of the underlying players is muted.
11584
11586
  */
@@ -11728,6 +11730,7 @@ declare const version: string;
11728
11730
  * The player suite version of the THEOplayer SDK.
11729
11731
  *
11730
11732
  * @public
11733
+ * @deprecated Use {@link version | THEOplayer.version} instead.
11731
11734
  */
11732
11735
  declare const playerSuiteVersion: string;
11733
11736
  /**