bitmovin-player-ui 3.83.0 → 3.84.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 (34) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/css/bitmovinplayer-ui.css +121 -10
  4. package/dist/css/bitmovinplayer-ui.min.css +1 -1
  5. package/dist/js/bitmovinplayer-ui.js +301 -113
  6. package/dist/js/bitmovinplayer-ui.min.js +1 -1
  7. package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
  8. package/dist/js/framework/components/listselector.d.ts +1 -1
  9. package/dist/js/framework/components/subtitlesettings/characteredgecolorselectbox.d.ts +12 -0
  10. package/dist/js/framework/components/subtitlesettings/characteredgecolorselectbox.js +70 -0
  11. package/dist/js/framework/components/subtitlesettings/characteredgeselectbox.js +20 -6
  12. package/dist/js/framework/components/subtitlesettings/fontstyleselectbox.d.ts +12 -0
  13. package/dist/js/framework/components/subtitlesettings/fontstyleselectbox.js +64 -0
  14. package/dist/js/framework/components/subtitlesettings/subtitlesettingselectbox.d.ts +1 -1
  15. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.d.ts +2 -0
  16. package/dist/js/framework/components/subtitlesettings/subtitlesettingsmanager.js +16 -0
  17. package/dist/js/framework/components/subtitlesettings/subtitlesettingspanelpage.js +8 -0
  18. package/dist/js/framework/localization/languages/de.json +4 -0
  19. package/dist/js/framework/localization/languages/en.json +4 -0
  20. package/dist/js/framework/localization/languages/es.json +4 -0
  21. package/dist/js/framework/main.js +1 -1
  22. package/package.json +1 -1
  23. package/src/scss/skin-modern/_mixins.scss +15 -0
  24. package/src/scss/skin-modern/components/subtitlesettings/_subtitleoverlay-settings.scss +24 -9
  25. package/src/ts/components/listselector.ts +1 -1
  26. package/src/ts/components/subtitlesettings/characteredgecolorselectbox.ts +57 -0
  27. package/src/ts/components/subtitlesettings/characteredgeselectbox.ts +21 -7
  28. package/src/ts/components/subtitlesettings/fontstyleselectbox.ts +50 -0
  29. package/src/ts/components/subtitlesettings/subtitlesettingselectbox.ts +1 -1
  30. package/src/ts/components/subtitlesettings/subtitlesettingsmanager.ts +12 -0
  31. package/src/ts/components/subtitlesettings/subtitlesettingspanelpage.ts +8 -0
  32. package/src/ts/localization/languages/de.json +4 -0
  33. package/src/ts/localization/languages/en.json +4 -0
  34. package/src/ts/localization/languages/es.json +4 -0
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ 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.84.0] - 2025-01-15
8
+
9
+ ### Added
10
+ - Support for changing the font style of subtitles and closed captions
11
+ - Support for changing the edge color of characters of subtitles and closed captions
12
+
7
13
  ## [3.83.0] - 2025-01-14
8
14
 
9
15
  ## Fixed
@@ -1062,6 +1068,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
1062
1068
  ## 1.0.0 (2017-02-03)
1063
1069
  - First release
1064
1070
 
1071
+ [3.84.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.83.0...v3.84.0
1065
1072
  [3.83.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.82.0...v3.83.0
1066
1073
  [3.82.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.81.0...v3.82.0
1067
1074
  [3.81.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.80.0...v3.81.0
Binary file