bitmovin-player-ui 3.77.0 → 3.79.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 (36) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/css/bitmovinplayer-ui.css +51 -6
  4. package/dist/css/bitmovinplayer-ui.min.css +1 -1
  5. package/dist/js/bitmovinplayer-ui.js +24 -14
  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/container.js +2 -2
  9. package/dist/js/framework/components/listselector.js +3 -3
  10. package/dist/js/framework/components/playbacktimelabel.js +1 -2
  11. package/dist/js/framework/components/seekbarcontroller.js +2 -0
  12. package/dist/js/framework/components/settingspanel.js +1 -0
  13. package/dist/js/framework/components/subtitleoverlay.d.ts +1 -1
  14. package/dist/js/framework/components/subtitleoverlay.js +9 -5
  15. package/dist/js/framework/localization/i18n.js +1 -0
  16. package/dist/js/framework/main.js +1 -1
  17. package/dist/js/framework/spatialnavigation/navigationgroup.js +2 -0
  18. package/dist/js/framework/uimanager.js +1 -0
  19. package/eslint.config.mjs +49 -0
  20. package/gulpfile.js +4 -13
  21. package/package.json +5 -3
  22. package/spec/helper/mockClass.ts +0 -1
  23. package/spec/release/defineVersion.spec.ts +1 -0
  24. package/src/scss/skin-modern/components/_subtitleoverlay-cea608.scss +14 -5
  25. package/src/ts/components/container.ts +2 -2
  26. package/src/ts/components/listselector.ts +4 -3
  27. package/src/ts/components/playbacktimelabel.ts +1 -2
  28. package/src/ts/components/seekbarcontroller.ts +2 -0
  29. package/src/ts/components/settingspanel.ts +1 -0
  30. package/src/ts/components/subtitleoverlay.ts +14 -5
  31. package/src/ts/errorutils.ts +1 -1
  32. package/src/ts/localization/i18n.ts +1 -0
  33. package/src/ts/spatialnavigation/navigationgroup.ts +3 -0
  34. package/src/ts/uimanager.ts +1 -0
  35. package/tsconfig.json +1 -0
  36. package/tslint.json +0 -39
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.79.0] - 2025-01-08
8
+
9
+ ### Fixed
10
+ - CEA-608 caption window covering almost the entire video area
11
+
12
+ ### Changed
13
+ - Create separate region components for each CEA-608 row
14
+
15
+ ## [3.78.0] - 2025-01-08
16
+
17
+ ### Changed
18
+ - Chore: Switch from `tslint` to `eslint` for linting
19
+
7
20
  ## [3.77.0] - 2025-01-03
8
21
 
9
22
  ### Changed
@@ -1028,6 +1041,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
1028
1041
  ## 1.0.0 (2017-02-03)
1029
1042
  - First release
1030
1043
 
1044
+ [3.79.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.78.0...v3.79.0
1045
+ [3.78.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.77.0...v3.78.0
1031
1046
  [3.77.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.76.0...v3.77.0
1032
1047
  [3.76.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.75.0...v3.76.0
1033
1048
  [3.75.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.74.0...v3.75.0
Binary file