@theoplayer/web-ui 1.16.1 → 1.16.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @theoplayer/web-ui
2
2
 
3
+ ## 1.16.3
4
+
5
+ ### 🐛 Issues
6
+
7
+ - Improve labels for text tracks and audio tracks in the `<theoplayer-language-menu>`.
8
+
9
+ ## 1.16.2
10
+
11
+ ### 🐛 Issues
12
+
13
+ - Language names in the language menu are now capitalized according to that language's case mappings.
14
+
3
15
  ## 1.16.1
4
16
 
5
17
  ### 🐛 Issues
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * THEOplayer Open Video UI for Web (v1.16.1)
2
+ * THEOplayer Open Video UI for Web (v1.16.3)
3
3
  * License: MIT
4
4
  */
5
5
  import { ChromelessPlayer, VideoQuality, THEOplayerError, MediaTrack, TextTrack, TextTracksList, EdgeStyle, VendorCast, CastState, UIPlayerConfiguration, SourceDescription } from 'theoplayer/chromeless';
@@ -709,6 +709,11 @@ declare global {
709
709
  }
710
710
  }
711
711
 
712
+ declare module 'theoplayer/chromeless' {
713
+ interface TextTrack {
714
+ captionChannel?: number;
715
+ }
716
+ }
712
717
  /**
713
718
  * `<theoplayer-text-track-radio-button>` -A radio button that shows the label of a given text track, and switches to that track when clicked.
714
719
  *