bitmovin-player-ui 3.55.0 → 3.57.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 (26) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +92 -89
  4. package/dist/js/bitmovinplayer-ui.min.js +1 -1
  5. package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
  6. package/dist/js/framework/components/subtitlesettings/subtitlesettingselectbox.d.ts +4 -2
  7. package/dist/js/framework/components/subtitlesettings/subtitlesettingselectbox.js +3 -1
  8. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.d.ts +1 -0
  9. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.js +25 -21
  10. package/dist/js/framework/components/subtitlesettings/subtitlesettingspanelpage.js +10 -14
  11. package/dist/js/framework/components/subtitlesettings/subtitlesettingsresetbutton.d.ts +2 -5
  12. package/dist/js/framework/components/subtitlesettings/subtitlesettingsresetbutton.js +2 -1
  13. package/dist/js/framework/main.js +1 -1
  14. package/dist/js/framework/storageutils.d.ts +3 -2
  15. package/dist/js/framework/storageutils.js +32 -44
  16. package/dist/js/framework/uiconfig.d.ts +4 -0
  17. package/dist/js/framework/uimanager.d.ts +6 -1
  18. package/dist/js/framework/uimanager.js +14 -2
  19. package/package.json +1 -1
  20. package/src/ts/components/subtitlesettings/subtitlesettingselectbox.ts +7 -3
  21. package/src/ts/components/subtitlesettings/subtitlesettingsmanager.ts +38 -28
  22. package/src/ts/components/subtitlesettings/subtitlesettingspanelpage.ts +10 -13
  23. package/src/ts/components/subtitlesettings/subtitlesettingsresetbutton.ts +5 -6
  24. package/src/ts/storageutils.ts +36 -45
  25. package/src/ts/uiconfig.ts +5 -0
  26. package/src/ts/uimanager.ts +20 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](http://keepachangelog.com/)
5
5
  and this project adheres to [Semantic Versioning](http://semver.org/).
6
6
 
7
+ ## [3.57.0] - 2024-03-28
8
+
9
+ ### Added
10
+ - `disableStorageApi` config option
11
+
12
+ ### Fixed
13
+ - Subtitle settings not being retained when the UI variant switches
14
+
15
+ ## [3.56.0] - 2024-03-26
16
+
17
+ ### Changed
18
+ - `localStorage` availability check to not create a test-entry anymore
19
+
7
20
  ## [3.55.0] - 2024-03-21
8
21
 
9
22
  ### Added
@@ -906,6 +919,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
906
919
  ## 1.0.0 (2017-02-03)
907
920
  - First release
908
921
 
922
+ [3.57.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.56.0...v3.57.0
923
+ [3.56.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.55.0...v3.56.0
909
924
  [3.55.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.54.0...v3.55.0
910
925
  [3.54.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.53.0...v3.54.0
911
926
  [3.53.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.52.2...v3.53.0
Binary file