bitmovin-player-ui 3.90.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 (31) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +59 -27
  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/togglebutton.d.ts +6 -1
  13. package/dist/js/framework/components/togglebutton.js +24 -4
  14. package/dist/js/framework/localization/languages/de.json +2 -2
  15. package/dist/js/framework/localization/languages/en.json +2 -2
  16. package/dist/js/framework/localization/languages/es.json +2 -2
  17. package/dist/js/framework/localization/languages/nl.json +2 -2
  18. package/dist/js/framework/main.js +1 -1
  19. package/dist/js/framework/stringutils.js +3 -3
  20. package/package.json +1 -1
  21. package/spec/components/togglebutton.spec.ts +64 -0
  22. package/src/ts/components/button.ts +0 -4
  23. package/src/ts/components/errormessageoverlay.ts +11 -4
  24. package/src/ts/components/quickseekbutton.ts +5 -1
  25. package/src/ts/components/seekbar.ts +17 -1
  26. package/src/ts/components/togglebutton.ts +32 -9
  27. package/src/ts/localization/languages/de.json +2 -2
  28. package/src/ts/localization/languages/en.json +2 -2
  29. package/src/ts/localization/languages/es.json +2 -2
  30. package/src/ts/localization/languages/nl.json +2 -2
  31. package/src/ts/stringutils.ts +3 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,20 @@ 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
+
7
21
  ## [3.90.0] - 2025-04-03
8
22
 
9
23
  ### Fixed
@@ -1101,6 +1115,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
1101
1115
  ## 1.0.0 (2017-02-03)
1102
1116
  - First release
1103
1117
 
1118
+ [3.91.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.90.0...v3.91.0
1104
1119
  [3.90.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.89.0...v3.90.0
1105
1120
  [3.89.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.88.0...v3.89.0
1106
1121
  [3.88.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.87.0...v3.88.0
Binary file