bitmovin-player-ui 3.32.0 → 3.33.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 +10 -1
- package/dist/js/bitmovinplayer-ui.js +20 -5
- package/dist/js/bitmovinplayer-ui.min.js +7 -7
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/listbox.js +1 -0
- package/dist/js/framework/components/listselector.d.ts +4 -1
- package/dist/js/framework/components/listselector.js +16 -3
- package/dist/js/framework/components/timelinemarkershandler.js +1 -0
- package/dist/js/framework/main.js +1 -1
- package/package.json +1 -1
- package/spec/components/listselector.spec.ts +40 -0
- package/src/ts/components/listbox.ts +1 -0
- package/src/ts/components/listselector.ts +6 -3
- package/src/ts/components/timelinemarkershandler.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,15 @@ 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.
|
|
7
|
+
## [3.33.0] - 2022-02-01
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Support for providing custom `aria-label` when `ListBox` is used.
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Updating the markers on live streams causing unhandled exception after player is destroyed.
|
|
14
|
+
|
|
15
|
+
## [3.32.0] - 2021-12-21
|
|
8
16
|
|
|
9
17
|
### Fixed
|
|
10
18
|
- The scrubber could jump to an old position during a seek operation when it was dragged.
|
|
@@ -760,6 +768,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
760
768
|
## 1.0.0 (2017-02-03)
|
|
761
769
|
- First release
|
|
762
770
|
|
|
771
|
+
[3.33.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.32.0...v3.33.0
|
|
763
772
|
[3.32.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.31.0...v3.32.0
|
|
764
773
|
[3.31.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.30.0...v3.31.0
|
|
765
774
|
[3.30.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.29.0...v3.30.0
|