bitmovin-player-ui 3.89.0 → 3.91.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 (35) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +116 -34
  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/button.js +0 -4
  7. package/dist/js/framework/components/errormessageoverlay.d.ts +1 -0
  8. package/dist/js/framework/components/errormessageoverlay.js +9 -4
  9. package/dist/js/framework/components/quickseekbutton.js +5 -1
  10. package/dist/js/framework/components/seekbar.d.ts +5 -0
  11. package/dist/js/framework/components/seekbar.js +8 -1
  12. package/dist/js/framework/components/subtitleoverlay.d.ts +5 -0
  13. package/dist/js/framework/components/subtitleoverlay.js +57 -7
  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/package.json +1 -1
  23. package/spec/components/subtitleoverlay.spec.ts +43 -2
  24. package/spec/components/togglebutton.spec.ts +64 -0
  25. package/src/ts/components/button.ts +0 -4
  26. package/src/ts/components/errormessageoverlay.ts +11 -4
  27. package/src/ts/components/quickseekbutton.ts +5 -1
  28. package/src/ts/components/seekbar.ts +17 -1
  29. package/src/ts/components/subtitleoverlay.ts +67 -7
  30. package/src/ts/components/togglebutton.ts +32 -9
  31. package/src/ts/localization/languages/de.json +2 -2
  32. package/src/ts/localization/languages/en.json +2 -2
  33. package/src/ts/localization/languages/es.json +2 -2
  34. package/src/ts/localization/languages/nl.json +2 -2
  35. package/src/ts/stringutils.ts +3 -3
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.91.0] - 2025-04-10
8
+
9
+ ### Added
10
+ - `aria-label` to `ErrorMessageOverlay`
11
+ - 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.
12
+
13
+ ### Changed
14
+ - The `aria-pressed` attribute is only set on `ToggleButton`s instead of all buttons
15
+ - The `aria-pressed` attribute is not set if both, `onAriaLabel` and `offAriaLabel`, configuration properties are set for a specific component
16
+ - The `aria-label` for Quickseek buttons contain now also the number of seconds the button seeks
17
+
18
+ ### Fixed
19
+ - Error message in `ErrorMessageOverlay` not read by Text-To-Speech engine on Tizen
20
+
21
+ ## [3.90.0] - 2025-04-03
22
+
23
+ ### Fixed
24
+ - Setting larger font size while using CEA-608 captions can shift some cues outside of visible area.
25
+
7
26
  ## [3.89.0] - 2025-03-24
8
27
 
9
28
  ### Added
@@ -1096,6 +1115,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
1096
1115
  ## 1.0.0 (2017-02-03)
1097
1116
  - First release
1098
1117
 
1118
+ [3.91.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.90.0...v3.91.0
1119
+ [3.90.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.89.0...v3.90.0
1099
1120
  [3.89.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.88.0...v3.89.0
1100
1121
  [3.88.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.87.0...v3.88.0
1101
1122
  [3.87.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.86.0...v3.87.0
Binary file