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.
- package/CHANGELOG.md +21 -0
- package/artifact/artifact.tar.gz +0 -0
- package/dist/js/bitmovinplayer-ui.js +116 -34
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/button.js +0 -4
- package/dist/js/framework/components/errormessageoverlay.d.ts +1 -0
- package/dist/js/framework/components/errormessageoverlay.js +9 -4
- package/dist/js/framework/components/quickseekbutton.js +5 -1
- package/dist/js/framework/components/seekbar.d.ts +5 -0
- package/dist/js/framework/components/seekbar.js +8 -1
- package/dist/js/framework/components/subtitleoverlay.d.ts +5 -0
- package/dist/js/framework/components/subtitleoverlay.js +57 -7
- package/dist/js/framework/components/togglebutton.d.ts +6 -1
- package/dist/js/framework/components/togglebutton.js +24 -4
- package/dist/js/framework/localization/languages/de.json +2 -2
- package/dist/js/framework/localization/languages/en.json +2 -2
- package/dist/js/framework/localization/languages/es.json +2 -2
- package/dist/js/framework/localization/languages/nl.json +2 -2
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/stringutils.js +3 -3
- package/package.json +1 -1
- package/spec/components/subtitleoverlay.spec.ts +43 -2
- package/spec/components/togglebutton.spec.ts +64 -0
- package/src/ts/components/button.ts +0 -4
- package/src/ts/components/errormessageoverlay.ts +11 -4
- package/src/ts/components/quickseekbutton.ts +5 -1
- package/src/ts/components/seekbar.ts +17 -1
- package/src/ts/components/subtitleoverlay.ts +67 -7
- package/src/ts/components/togglebutton.ts +32 -9
- package/src/ts/localization/languages/de.json +2 -2
- package/src/ts/localization/languages/en.json +2 -2
- package/src/ts/localization/languages/es.json +2 -2
- package/src/ts/localization/languages/nl.json +2 -2
- 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
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|