bitmovin-player-ui 3.90.0 → 3.92.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 (37) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/css/bitmovinplayer-ui.css +4 -1
  4. package/dist/css/bitmovinplayer-ui.min.css +1 -1
  5. package/dist/js/bitmovinplayer-ui.js +103 -28
  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/button.js +0 -4
  9. package/dist/js/framework/components/errormessageoverlay.d.ts +1 -0
  10. package/dist/js/framework/components/errormessageoverlay.js +9 -4
  11. package/dist/js/framework/components/quickseekbutton.js +5 -1
  12. package/dist/js/framework/components/seekbar.d.ts +5 -0
  13. package/dist/js/framework/components/seekbar.js +8 -1
  14. package/dist/js/framework/components/togglebutton.d.ts +6 -1
  15. package/dist/js/framework/components/togglebutton.js +24 -4
  16. package/dist/js/framework/localization/languages/de.json +2 -2
  17. package/dist/js/framework/localization/languages/en.json +2 -2
  18. package/dist/js/framework/localization/languages/es.json +2 -2
  19. package/dist/js/framework/localization/languages/nl.json +2 -2
  20. package/dist/js/framework/main.js +1 -1
  21. package/dist/js/framework/stringutils.js +3 -3
  22. package/dist/js/framework/uifactory.d.ts +4 -0
  23. package/dist/js/framework/uifactory.js +44 -1
  24. package/package.json +1 -1
  25. package/spec/components/togglebutton.spec.ts +64 -0
  26. package/src/scss/skin-modern/_skin-tv.scss +4 -0
  27. package/src/ts/components/button.ts +0 -4
  28. package/src/ts/components/errormessageoverlay.ts +11 -4
  29. package/src/ts/components/quickseekbutton.ts +5 -1
  30. package/src/ts/components/seekbar.ts +17 -1
  31. package/src/ts/components/togglebutton.ts +32 -9
  32. package/src/ts/localization/languages/de.json +2 -2
  33. package/src/ts/localization/languages/en.json +2 -2
  34. package/src/ts/localization/languages/es.json +2 -2
  35. package/src/ts/localization/languages/nl.json +2 -2
  36. package/src/ts/stringutils.ts +3 -3
  37. package/src/ts/uifactory.ts +53 -0
package/CHANGELOG.md CHANGED
@@ -4,6 +4,25 @@ 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.92.0] - 2025-04-23
8
+
9
+ ### Added
10
+ - Ads UI variant to default TV UI
11
+
12
+ ## [3.91.0] - 2025-04-10
13
+
14
+ ### Added
15
+ - `aria-label` to `ErrorMessageOverlay`
16
+ - New `ariaFallbackMode` configuration option to `SeekBarConfig`, which updates the current playback position also in the `aria-label`. This can be used for devices which don't support the `aria-valuetext` attribute for `slider`s.
17
+
18
+ ### Changed
19
+ - The `aria-pressed` attribute is only set on `ToggleButton`s instead of all buttons
20
+ - The `aria-pressed` attribute is not set if both, `onAriaLabel` and `offAriaLabel`, configuration properties are set for a specific component
21
+ - The `aria-label` for Quickseek buttons contain now also the number of seconds the button seeks
22
+
23
+ ### Fixed
24
+ - Error message in `ErrorMessageOverlay` not read by Text-To-Speech engine on Tizen
25
+
7
26
  ## [3.90.0] - 2025-04-03
8
27
 
9
28
  ### Fixed
@@ -1101,6 +1120,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
1101
1120
  ## 1.0.0 (2017-02-03)
1102
1121
  - First release
1103
1122
 
1123
+ [3.92.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.91.0...v3.92.0
1124
+ [3.91.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.90.0...v3.91.0
1104
1125
  [3.90.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.89.0...v3.90.0
1105
1126
  [3.89.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.88.0...v3.89.0
1106
1127
  [3.88.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.87.0...v3.88.0
Binary file