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.
- package/CHANGELOG.md +21 -0
- package/artifact/artifact.tar.gz +0 -0
- package/dist/css/bitmovinplayer-ui.css +4 -1
- package/dist/css/bitmovinplayer-ui.min.css +1 -1
- package/dist/js/bitmovinplayer-ui.js +103 -28
- 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/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/dist/js/framework/uifactory.d.ts +4 -0
- package/dist/js/framework/uifactory.js +44 -1
- package/package.json +1 -1
- package/spec/components/togglebutton.spec.ts +64 -0
- package/src/scss/skin-modern/_skin-tv.scss +4 -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/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/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
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|