bitmovin-player-ui 4.16.0 → 4.17.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 (333) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/css/bitmovinplayer-ui.css +1 -1
  3. package/dist/css/bitmovinplayer-ui.css.map +1 -1
  4. package/dist/js/bitmovinplayer-ui.js +1 -1
  5. package/dist/js/bitmovinplayer-ui.js.map +1 -1
  6. package/dist/js/framework/UIComponentConfigOverrides.d.ts +527 -0
  7. package/dist/js/framework/UIComponentConfigOverrides.js +2 -0
  8. package/dist/js/framework/UIConfig.d.ts +60 -1
  9. package/dist/js/framework/UIFactory.js +69 -30
  10. package/dist/js/framework/UIManager.d.ts +66 -7
  11. package/dist/js/framework/UIManager.js +122 -26
  12. package/dist/js/framework/components/Component.d.ts +6 -0
  13. package/dist/js/framework/components/Component.js +8 -0
  14. package/dist/js/framework/components/EcoModeContainer.js +2 -1
  15. package/dist/js/framework/components/buttons/PersistentPreferencesToggleButton.d.ts +15 -0
  16. package/dist/js/framework/components/buttons/PersistentPreferencesToggleButton.js +60 -0
  17. package/dist/js/framework/components/contextmenu/PlayerContextMenu.d.ts +4 -0
  18. package/dist/js/framework/components/contextmenu/PlayerContextMenu.js +68 -49
  19. package/dist/js/framework/components/overlays/SubtitleOverlay.d.ts +16 -2
  20. package/dist/js/framework/components/overlays/SubtitleOverlay.js +34 -20
  21. package/dist/js/framework/components/panels/player-insights/PlayerInsightsContextMenuItem.js +6 -13
  22. package/dist/js/framework/components/panels/player-insights/PlayerInsightsPanel.js +14 -26
  23. package/dist/js/framework/components/panels/player-insights/PlayerInsightsPanelItem.js +9 -23
  24. package/dist/js/framework/components/panels/player-insights/PlayerInsightsPanelTitleItem.d.ts +1 -1
  25. package/dist/js/framework/components/panels/player-insights/PlayerInsightsPanelTitleItem.js +8 -7
  26. package/dist/js/framework/components/settings/SettingsPanel.d.ts +1 -1
  27. package/dist/js/framework/components/settings/SettingsPanel.js +4 -2
  28. package/dist/js/framework/components/settings/SettingsPanelItem.js +1 -1
  29. package/dist/js/framework/components/settings/SubtitleSelectBox.js +1 -2
  30. package/dist/js/framework/components/settings/ToggleSettingsPanelItem.d.ts +27 -0
  31. package/dist/js/framework/components/settings/ToggleSettingsPanelItem.js +67 -0
  32. package/dist/js/framework/localization/i18n.d.ts +2 -0
  33. package/dist/js/framework/localization/languages/de.json +44 -42
  34. package/dist/js/framework/localization/languages/en.json +3 -1
  35. package/dist/js/framework/localization/languages/es.json +3 -1
  36. package/dist/js/framework/localization/languages/fr.json +3 -1
  37. package/dist/js/framework/localization/languages/nl.json +3 -1
  38. package/dist/js/framework/localization/languages/pt.json +3 -1
  39. package/dist/js/framework/main.d.ts +4 -0
  40. package/dist/js/framework/main.js +9 -3
  41. package/dist/js/framework/spatialnavigation/SeekBarHandler.js +13 -3
  42. package/dist/js/framework/spatialnavigation/SettingsPanelNavigationGroup.js +2 -6
  43. package/dist/js/framework/utils/ComponentConfigManager.d.ts +30 -0
  44. package/dist/js/framework/utils/ComponentConfigManager.js +64 -0
  45. package/dist/js/framework/utils/StorageUtils.d.ts +5 -0
  46. package/dist/js/framework/utils/StorageUtils.js +15 -0
  47. package/dist/js/framework/utils/TimestampLinkUtils.d.ts +4 -0
  48. package/dist/js/framework/utils/TimestampLinkUtils.js +28 -0
  49. package/dist/js/framework/utils/UIPreferencesManager.d.ts +56 -0
  50. package/dist/js/framework/utils/UIPreferencesManager.js +171 -0
  51. package/docs/assets/hierarchy.js +1 -1
  52. package/docs/assets/highlight.css +25 -4
  53. package/docs/assets/navigation.js +1 -1
  54. package/docs/assets/search.js +1 -1
  55. package/docs/classes/AdClickOverlay.html +28 -28
  56. package/docs/classes/AdControlBar.html +31 -31
  57. package/docs/classes/AdCounterLabel.html +31 -31
  58. package/docs/classes/AdMessageLabel.html +31 -31
  59. package/docs/classes/AdSkipButton.html +27 -27
  60. package/docs/classes/AdStatusOverlay.html +31 -31
  61. package/docs/classes/AirPlayToggleButton.html +35 -35
  62. package/docs/classes/AudioQualitySelectBox.html +41 -41
  63. package/docs/classes/AudioTrackListBox.html +39 -39
  64. package/docs/classes/AudioTrackSelectBox.html +41 -41
  65. package/docs/classes/BackgroundColorSelectBox.html +41 -41
  66. package/docs/classes/BackgroundOpacitySelectBox.html +41 -41
  67. package/docs/classes/BrowserUtils.html +2 -2
  68. package/docs/classes/BufferingOverlay.html +31 -31
  69. package/docs/classes/Button.html +27 -27
  70. package/docs/classes/CastStatusOverlay.html +31 -31
  71. package/docs/classes/CastToggleButton.html +35 -35
  72. package/docs/classes/CastUIContainer.html +31 -31
  73. package/docs/classes/CharacterEdgeColorSelectBox.html +41 -41
  74. package/docs/classes/CharacterEdgeSelectBox.html +41 -41
  75. package/docs/classes/ClickOverlay.html +28 -28
  76. package/docs/classes/CloseButton.html +27 -27
  77. package/docs/classes/Component.html +29 -25
  78. package/docs/classes/Container.html +31 -31
  79. package/docs/classes/ContextMenu.html +39 -39
  80. package/docs/classes/ControlBar.html +31 -31
  81. package/docs/classes/DismissClickOverlay.html +31 -31
  82. package/docs/classes/DynamicSettingsPanelItem.html +34 -34
  83. package/docs/classes/EcoModeContainer.html +32 -32
  84. package/docs/classes/EcoModeToggleButton.html +35 -35
  85. package/docs/classes/ErrorMessageOverlay.html +31 -31
  86. package/docs/classes/FontColorSelectBox.html +41 -41
  87. package/docs/classes/FontFamilySelectBox.html +41 -41
  88. package/docs/classes/FontOpacitySelectBox.html +41 -41
  89. package/docs/classes/FontSizeSelectBox.html +41 -41
  90. package/docs/classes/FontStyleSelectBox.html +41 -41
  91. package/docs/classes/FullscreenToggleButton.html +35 -35
  92. package/docs/classes/HugePlaybackToggleButton.html +35 -35
  93. package/docs/classes/HugeReplayButton.html +27 -27
  94. package/docs/classes/I18n.html +2 -2
  95. package/docs/classes/Icon.html +25 -25
  96. package/docs/classes/InteractiveContextMenuItem.html +34 -34
  97. package/docs/classes/InteractiveSettingsPanelItem.html +34 -34
  98. package/docs/classes/ItemSelectionList.html +41 -41
  99. package/docs/classes/Label.html +31 -31
  100. package/docs/classes/ListBox.html +39 -39
  101. package/docs/classes/ListSelector.html +41 -41
  102. package/docs/classes/MetadataLabel.html +31 -31
  103. package/docs/classes/NavigationGroup.html +11 -11
  104. package/docs/classes/PersistentPreferencesToggleButton.html +105 -0
  105. package/docs/classes/PictureInPictureToggleButton.html +35 -35
  106. package/docs/classes/PlaybackSpeedSelectBox.html +41 -41
  107. package/docs/classes/PlaybackTimeLabel.html +32 -32
  108. package/docs/classes/PlaybackToggleButton.html +35 -35
  109. package/docs/classes/PlaybackToggleOverlay.html +31 -31
  110. package/docs/classes/PlayerContextMenu.html +40 -40
  111. package/docs/classes/PlayerInsightsPanel.html +39 -39
  112. package/docs/classes/PlayerUtils.LiveStreamDetector.html +2 -2
  113. package/docs/classes/PlayerUtils.TimeShiftAvailabilityDetector.html +2 -2
  114. package/docs/classes/PlayerWrapper.html +4 -4
  115. package/docs/classes/QuickSeekButton.html +27 -27
  116. package/docs/classes/RecommendationItem.html +25 -25
  117. package/docs/classes/RecommendationOverlay.html +31 -31
  118. package/docs/classes/ReplayButton.html +27 -27
  119. package/docs/classes/RootNavigationGroup.html +11 -11
  120. package/docs/classes/SeekBar.html +36 -36
  121. package/docs/classes/SeekBarLabel.html +35 -35
  122. package/docs/classes/SelectBox.html +41 -41
  123. package/docs/classes/SettingsPanel.html +39 -39
  124. package/docs/classes/SettingsPanelItem.html +33 -33
  125. package/docs/classes/SettingsPanelNavigationGroup.html +11 -11
  126. package/docs/classes/SettingsPanelNavigationGroupConfig.html +2 -2
  127. package/docs/classes/SettingsPanelPage.html +33 -33
  128. package/docs/classes/SettingsPanelPageBackButton.html +29 -29
  129. package/docs/classes/SettingsPanelPageNavigatorButton.html +29 -29
  130. package/docs/classes/SettingsPanelPageOpenButton.html +29 -29
  131. package/docs/classes/SettingsPanelSelectOption.html +34 -34
  132. package/docs/classes/SettingsPanelSeparator.html +31 -31
  133. package/docs/classes/SettingsToggleButton.html +35 -35
  134. package/docs/classes/ShadowDomManager.html +2 -2
  135. package/docs/classes/SmallCenteredPlaybackToggleButton.html +35 -35
  136. package/docs/classes/Spacer.html +25 -25
  137. package/docs/classes/SpatialNavigation.html +4 -4
  138. package/docs/classes/SubtitleListBox.html +39 -39
  139. package/docs/classes/SubtitleOverlay.html +31 -31
  140. package/docs/classes/SubtitleSelectBox.html +41 -41
  141. package/docs/classes/SubtitleSettingSelectBox.html +41 -41
  142. package/docs/classes/SubtitleSettingsPanelPage.html +33 -33
  143. package/docs/classes/SubtitleSettingsResetButton.html +27 -27
  144. package/docs/classes/TitleBar.html +31 -31
  145. package/docs/classes/ToggleButton.html +35 -35
  146. package/docs/classes/ToggleSettingsPanelItem.html +106 -0
  147. package/docs/classes/TouchControlOverlay.html +31 -31
  148. package/docs/classes/TvNoiseCanvas.html +25 -25
  149. package/docs/classes/UIContainer.html +31 -31
  150. package/docs/classes/UIInstanceManager.html +21 -17
  151. package/docs/classes/UIManager.html +21 -20
  152. package/docs/classes/UIPreferencesManager.html +30 -0
  153. package/docs/classes/VRToggleButton.html +35 -35
  154. package/docs/classes/VideoQualitySelectBox.html +42 -42
  155. package/docs/classes/VolumeControlButton.html +33 -33
  156. package/docs/classes/VolumeSlider.html +36 -36
  157. package/docs/classes/VolumeToggleButton.html +35 -35
  158. package/docs/classes/Watermark.html +28 -28
  159. package/docs/classes/WindowColorSelectBox.html +41 -41
  160. package/docs/classes/WindowOpacitySelectBox.html +41 -41
  161. package/docs/enums/ButtonStyle.html +5 -5
  162. package/docs/enums/LabelStyle.html +4 -4
  163. package/docs/enums/MetadataLabelContent.html +3 -3
  164. package/docs/enums/NavigationDirection.html +2 -2
  165. package/docs/enums/PlaybackTimeLabelMode.html +5 -5
  166. package/docs/enums/PlayerUtils.PlayerState.html +2 -2
  167. package/docs/enums/UIUtils.KeyCode.html +2 -2
  168. package/docs/enums/UIVariantIdentifier.html +11 -0
  169. package/docs/enums/ViewMode.html +3 -3
  170. package/docs/functions/ArrayUtils.remove.html +1 -1
  171. package/docs/functions/ErrorUtils.defaultMobileV3ErrorMessageTranslator.html +1 -1
  172. package/docs/functions/PlayerUtils.clampValueToRange.html +1 -1
  173. package/docs/functions/PlayerUtils.getCurrentTimeRelativeToSeekableRange.html +1 -1
  174. package/docs/functions/PlayerUtils.getSeekableRangeRespectingLive.html +1 -1
  175. package/docs/functions/PlayerUtils.getSeekableRangeStart.html +1 -1
  176. package/docs/functions/PlayerUtils.getState.html +1 -1
  177. package/docs/functions/PlayerUtils.isTimeShiftAvailable.html +1 -1
  178. package/docs/functions/StorageUtils.getItem.html +1 -1
  179. package/docs/functions/StorageUtils.getObject.html +1 -1
  180. package/docs/functions/StorageUtils.removeItem.html +3 -0
  181. package/docs/functions/StorageUtils.setItem.html +1 -1
  182. package/docs/functions/StorageUtils.setObject.html +1 -1
  183. package/docs/functions/StorageUtils.setStorageApiDisabled.html +1 -1
  184. package/docs/functions/StringUtils.replaceAdMessagePlaceholders.html +1 -1
  185. package/docs/functions/StringUtils.secondsToText.html +1 -1
  186. package/docs/functions/StringUtils.secondsToTime.html +1 -1
  187. package/docs/functions/UIFactory.buildCastReceiverUI.html +1 -1
  188. package/docs/functions/UIFactory.buildSmallScreenUI.html +1 -1
  189. package/docs/functions/UIFactory.buildSubtitleUI.html +1 -1
  190. package/docs/functions/UIFactory.buildTvUI.html +1 -1
  191. package/docs/functions/UIFactory.buildUI.html +1 -1
  192. package/docs/functions/UIFactory.defaultLayouts.ads.html +1 -1
  193. package/docs/functions/UIFactory.defaultLayouts.castReceiver.html +1 -1
  194. package/docs/functions/UIFactory.defaultLayouts.emptyState.html +1 -1
  195. package/docs/functions/UIFactory.defaultLayouts.main.html +1 -1
  196. package/docs/functions/UIFactory.defaultLayouts.smallScreen.html +1 -1
  197. package/docs/functions/UIFactory.defaultLayouts.smallScreenAds.html +1 -1
  198. package/docs/functions/UIFactory.defaultLayouts.subtitle.html +1 -1
  199. package/docs/functions/UIFactory.defaultLayouts.tv.html +1 -1
  200. package/docs/functions/UIFactory.defaultLayouts.tvAds.html +1 -1
  201. package/docs/functions/UIUtils.traverseTree.html +1 -1
  202. package/docs/hierarchy.html +1 -1
  203. package/docs/interfaces/ActiveUiChangedArgs.html +3 -3
  204. package/docs/interfaces/AdControlBarConfig.html +12 -12
  205. package/docs/interfaces/AdSkipButtonConfig.html +16 -16
  206. package/docs/interfaces/AudioTrackListBoxConfig.html +19 -19
  207. package/docs/interfaces/BufferingOverlayConfig.html +13 -13
  208. package/docs/interfaces/ButtonConfig.html +14 -14
  209. package/docs/interfaces/ClickOverlayConfig.html +15 -15
  210. package/docs/interfaces/CloseButtonConfig.html +15 -15
  211. package/docs/interfaces/ComponentConfig.html +11 -11
  212. package/docs/interfaces/ComponentFocusChangedEventArgs.html +2 -2
  213. package/docs/interfaces/ComponentHoverChangedEventArgs.html +2 -2
  214. package/docs/interfaces/ContainerConfig.html +12 -12
  215. package/docs/interfaces/ContextMenuConfig.html +17 -17
  216. package/docs/interfaces/ControlBarConfig.html +12 -12
  217. package/docs/interfaces/DismissClickOverlayConfig.html +14 -14
  218. package/docs/interfaces/DynamicSettingsPanelItemConfig.html +19 -19
  219. package/docs/interfaces/ErrorMessageMap.html +1 -1
  220. package/docs/interfaces/ErrorMessageOverlayConfig.html +13 -13
  221. package/docs/interfaces/ErrorMessageTranslator.html +1 -1
  222. package/docs/interfaces/ExternalRecommendationLink.html +3 -3
  223. package/docs/interfaces/InteractiveContextMenuItemConfig.html +18 -18
  224. package/docs/interfaces/InternalUIConfig.html +53 -20
  225. package/docs/interfaces/LabelConfig.html +14 -14
  226. package/docs/interfaces/ListBoxConfig.html +20 -20
  227. package/docs/interfaces/ListItem.html +2 -2
  228. package/docs/interfaces/ListItemFilter.html +1 -1
  229. package/docs/interfaces/ListItemLabelTranslator.html +1 -1
  230. package/docs/interfaces/ListSelectorConfig.html +12 -12
  231. package/docs/interfaces/LocalizationConfig.html +5 -5
  232. package/docs/interfaces/MetadataLabelConfig.html +15 -15
  233. package/docs/interfaces/PlaybackTimeLabelConfig.html +16 -16
  234. package/docs/interfaces/PlaybackToggleButtonConfig.html +19 -19
  235. package/docs/interfaces/PlaybackToggleOverlayConfig.html +13 -13
  236. package/docs/interfaces/PlayerContextMenuConfig.html +18 -18
  237. package/docs/interfaces/PlayerInsightsPanelConfig.html +18 -18
  238. package/docs/interfaces/PlayerUtils.LiveStreamDetectorEventArgs.html +2 -2
  239. package/docs/interfaces/PlayerUtils.TimeShiftAvailabilityChangedArgs.html +2 -2
  240. package/docs/interfaces/QuickSeekButtonConfig.html +15 -15
  241. package/docs/interfaces/RecommendationConfig.html +4 -4
  242. package/docs/interfaces/RecommendationItemConfig.html +12 -12
  243. package/docs/interfaces/RecommendationsApi.html +4 -4
  244. package/docs/interfaces/SeekBarConfig.html +19 -19
  245. package/docs/interfaces/SeekBarLabelConfig.html +12 -12
  246. package/docs/interfaces/SeekBarMarker.html +2 -2
  247. package/docs/interfaces/SeekPreviewArgs.html +3 -3
  248. package/docs/interfaces/SeekPreviewEventArgs.html +4 -4
  249. package/docs/interfaces/SettingsPanelConfig.html +17 -17
  250. package/docs/interfaces/SettingsPanelItemConfig.html +17 -17
  251. package/docs/interfaces/SettingsPanelPageConfig.html +13 -13
  252. package/docs/interfaces/SettingsPanelPageNavigatorConfig.html +17 -17
  253. package/docs/interfaces/SettingsPanelSelectOptionConfig.html +18 -18
  254. package/docs/interfaces/SettingsPanelSeparatorConfig.html +12 -12
  255. package/docs/interfaces/SettingsPanelState.html +2 -2
  256. package/docs/interfaces/SettingsToggleButtonConfig.html +20 -20
  257. package/docs/interfaces/ShadowDomConfig.html +4 -4
  258. package/docs/interfaces/SubtitleListBoxConfig.html +19 -19
  259. package/docs/interfaces/SubtitleOverlayConfig.html +24 -15
  260. package/docs/interfaces/SubtitleSettingSelectBoxConfig.html +12 -12
  261. package/docs/interfaces/SubtitleSettingsPanelPageConfig.html +13 -13
  262. package/docs/interfaces/TimelineMarker.html +6 -6
  263. package/docs/interfaces/TimelineMarkersApi.html +4 -4
  264. package/docs/interfaces/TitleBarConfig.html +13 -13
  265. package/docs/interfaces/ToggleButtonConfig.html +18 -18
  266. package/docs/interfaces/ToggleSettingsPanelItemConfig.html +40 -0
  267. package/docs/interfaces/TouchControlOverlayConfig.html +17 -17
  268. package/docs/interfaces/UIComponentConfigMap.html +95 -0
  269. package/docs/interfaces/UIComponentConfigOverrides.html +128 -0
  270. package/docs/interfaces/UIConditionContext.html +10 -10
  271. package/docs/interfaces/UIConditionResolver.html +1 -1
  272. package/docs/interfaces/UIConfig.html +51 -18
  273. package/docs/interfaces/UIContainerConfig.html +17 -17
  274. package/docs/interfaces/UIUtils.TreeTraversalCallback.html +1 -1
  275. package/docs/interfaces/UIVariant.html +8 -2
  276. package/docs/interfaces/UIVariantFactory.html +11 -0
  277. package/docs/interfaces/ViewModeChangedEventArgs.html +2 -2
  278. package/docs/interfaces/Vocabularies.html +1 -1
  279. package/docs/interfaces/Vocabulary.html +4 -2
  280. package/docs/interfaces/VolumeControlButtonConfig.html +14 -14
  281. package/docs/interfaces/VolumeSliderConfig.html +21 -21
  282. package/docs/interfaces/WatermarkConfig.html +15 -15
  283. package/docs/interfaces/WrappedPlayer.html +4 -4
  284. package/docs/media/CHANGELOG.md +29 -0
  285. package/docs/modules/StorageUtils.html +1 -1
  286. package/docs/modules.html +1 -1
  287. package/docs/types/CustomVocabulary.html +1 -1
  288. package/docs/types/ListItemComparator.html +1 -1
  289. package/docs/types/LocalizableText.html +1 -1
  290. package/docs/types/Localizer.html +1 -1
  291. package/docs/variables/ErrorUtils.defaultErrorMessages.html +1 -1
  292. package/docs/variables/ErrorUtils.defaultWebErrorMessageTranslator.html +1 -1
  293. package/docs/variables/StringUtils.FORMAT_HHMMSS.html +1 -1
  294. package/docs/variables/StringUtils.FORMAT_MMSS.html +1 -1
  295. package/docs/variables/i18n.html +1 -1
  296. package/docs/variables/version.html +1 -1
  297. package/package.json +3 -2
  298. package/src/scss/bitmovinplayer-ui.scss +1 -0
  299. package/src/scss/components/buttons/_eco-mode-toggle-button.scss +0 -28
  300. package/src/scss/components/settings/_toggle-settings-panel-item.scss +37 -0
  301. package/src/ts/UIComponentConfigOverrides.ts +530 -0
  302. package/src/ts/UIConfig.ts +60 -1
  303. package/src/ts/UIFactory.ts +69 -15
  304. package/src/ts/UIManager.ts +186 -33
  305. package/src/ts/components/Component.ts +9 -0
  306. package/src/ts/components/EcoModeContainer.ts +2 -1
  307. package/src/ts/components/buttons/PersistentPreferencesToggleButton.ts +50 -0
  308. package/src/ts/components/contextmenu/PlayerContextMenu.ts +94 -37
  309. package/src/ts/components/overlays/SubtitleOverlay.ts +51 -25
  310. package/src/ts/components/panels/player-insights/PlayerInsightsContextMenuItem.ts +11 -6
  311. package/src/ts/components/panels/player-insights/PlayerInsightsPanel.ts +7 -10
  312. package/src/ts/components/panels/player-insights/PlayerInsightsPanelItem.ts +14 -9
  313. package/src/ts/components/panels/player-insights/PlayerInsightsPanelTitleItem.ts +15 -9
  314. package/src/ts/components/settings/SettingsPanel.ts +3 -3
  315. package/src/ts/components/settings/SettingsPanelItem.ts +1 -1
  316. package/src/ts/components/settings/SubtitleSelectBox.ts +4 -5
  317. package/src/ts/components/settings/ToggleSettingsPanelItem.ts +78 -0
  318. package/src/ts/localization/i18n.ts +2 -0
  319. package/src/ts/localization/languages/de.json +44 -42
  320. package/src/ts/localization/languages/en.json +3 -1
  321. package/src/ts/localization/languages/es.json +3 -1
  322. package/src/ts/localization/languages/fr.json +3 -1
  323. package/src/ts/localization/languages/nl.json +3 -1
  324. package/src/ts/localization/languages/pt.json +3 -1
  325. package/src/ts/main.ts +4 -0
  326. package/src/ts/spatialnavigation/SeekBarHandler.ts +14 -3
  327. package/src/ts/spatialnavigation/SettingsPanelNavigationGroup.ts +2 -5
  328. package/src/ts/utils/ComponentConfigManager.ts +83 -0
  329. package/src/ts/utils/StorageUtils.ts +14 -0
  330. package/src/ts/utils/TimestampLinkUtils.ts +24 -0
  331. package/src/ts/utils/UIPreferencesManager.ts +181 -0
  332. package/typedoc.json +11 -1
  333. package/webpack.config.js +11 -0
package/CHANGELOG.md CHANGED
@@ -5,6 +5,35 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
6
6
  and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
 
8
+ ## [4.17.0] - 2026-07-02
9
+
10
+ ### Added
11
+
12
+ - New `SubtitleOverlayConfig.enableCea608CaptionPositioning` flag (default `true`): by default, the player UI applies CEA-608 grid-based row/column positioning to Closed Captions. Setting this to `false` disables that positioning so that 608/708 captions are laid out like regular VTT subtitles, while CEA-608-specific text formatting remains independently controlled via `enableCea608CaptionFormatting`.
13
+ - `UIConfig.enableTimestampDeepLink` to enable sharing of current playback position.
14
+ - Shows a `PlayerContextMenu` option to copy the current link with the current time.
15
+ - Applies the timestamp deep link on first `SourceLoaded` and seeks to the target time (`t=<seconds>[s]`).
16
+ - `UIConfig.componentConfigOverrides` and `UIComponentConfigOverrides` to configure default UI components without rebuilding complete UI layouts through the `UIFactory`.
17
+ - `UIVariantIdentifier` to scope component config overrides to individual default UI variants.
18
+ - `ToggleSettingsPanelItem` for settings rows that toggle their nested `ToggleButton` when the row is selected.
19
+ - `UIConfig.enablePersistentPreferences` and `UIConfig.showPersistentPreferencesToggle` to configure whether the UI persists volume, mute state, and playback speed across sessions.
20
+
21
+ ## [4.16.1] - 2026-06-25
22
+
23
+ ### Added
24
+
25
+ - `UIVariantFactory` to lazily resolve UI variants only when they are selected.
26
+
27
+ ### Changed
28
+
29
+ - Production builds now preserve public component class names during minification.
30
+
31
+ ### Fixed
32
+
33
+ - Seeking with the remote on the TV UI no longer gets stuck at the start or end of the seek bar: after scrubbing all the way to one edge, pressing the opposite direction now moves the playback position immediately instead of requiring multiple presses.
34
+ - Settings panels with disabled automatic hiding no longer crash when component view mode changes are dispatched.
35
+ - Settings panel items no longer render an empty label when no label config is provided.
36
+
8
37
  ## [4.16.0] - 2026-06-18
9
38
 
10
39
  ### Added