bitmovin-player-ui 3.56.0 → 3.58.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 (29) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +78 -49
  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/seekbar.d.ts +6 -1
  7. package/dist/js/framework/components/seekbar.js +10 -2
  8. package/dist/js/framework/components/subtitlesettings/subtitlesettingselectbox.d.ts +4 -2
  9. package/dist/js/framework/components/subtitlesettings/subtitlesettingselectbox.js +3 -1
  10. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.d.ts +1 -0
  11. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.js +25 -21
  12. package/dist/js/framework/components/subtitlesettings/subtitlesettingspanelpage.js +10 -14
  13. package/dist/js/framework/components/subtitlesettings/subtitlesettingsresetbutton.d.ts +2 -5
  14. package/dist/js/framework/components/subtitlesettings/subtitlesettingsresetbutton.js +2 -1
  15. package/dist/js/framework/main.js +1 -1
  16. package/dist/js/framework/storageutils.d.ts +2 -0
  17. package/dist/js/framework/storageutils.js +10 -4
  18. package/dist/js/framework/uiconfig.d.ts +21 -1
  19. package/dist/js/framework/uimanager.d.ts +6 -1
  20. package/dist/js/framework/uimanager.js +14 -2
  21. package/package.json +1 -1
  22. package/src/ts/components/seekbar.ts +18 -3
  23. package/src/ts/components/subtitlesettings/subtitlesettingselectbox.ts +7 -3
  24. package/src/ts/components/subtitlesettings/subtitlesettingsmanager.ts +38 -28
  25. package/src/ts/components/subtitlesettings/subtitlesettingspanelpage.ts +10 -13
  26. package/src/ts/components/subtitlesettings/subtitlesettingsresetbutton.ts +5 -6
  27. package/src/ts/storageutils.ts +12 -3
  28. package/src/ts/uiconfig.ts +22 -1
  29. 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.58.0] - 2024-04-08
8
+
9
+ ### Added
10
+ - `UIConfig#seekbarSnappingEnabled` config option to enable/disable the play head snapping to markers on the seek bar when seeking near them. Default is `true`.
11
+
12
+ ## [3.57.0] - 2024-03-28
13
+
14
+ ### Added
15
+ - `disableStorageApi` config option
16
+
17
+ ### Fixed
18
+ - Subtitle settings not being retained when the UI variant switches
19
+
7
20
  ## [3.56.0] - 2024-03-26
8
21
 
9
22
  ### Changed
@@ -911,6 +924,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
911
924
  ## 1.0.0 (2017-02-03)
912
925
  - First release
913
926
 
927
+ [3.58.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.57.0...v3.58.0
928
+ [3.57.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.56.0...v3.57.0
914
929
  [3.56.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.55.0...v3.56.0
915
930
  [3.55.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.54.0...v3.55.0
916
931
  [3.54.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.53.0...v3.54.0
Binary file