bitmovin-player-ui 3.29.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 +34 -6
- package/dist/css/bitmovinplayer-ui.css +15 -11
- package/dist/css/bitmovinplayer-ui.min.css +2 -2
- package/dist/js/bitmovinplayer-ui.js +194 -123
- package/dist/js/bitmovinplayer-ui.min.js +8 -8
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/audiotrackutils.js +1 -1
- package/dist/js/framework/components/listbox.js +1 -0
- package/dist/js/framework/components/listselector.d.ts +7 -3
- package/dist/js/framework/components/listselector.js +33 -6
- package/dist/js/framework/components/seekbar.d.ts +2 -0
- package/dist/js/framework/components/seekbar.js +46 -24
- package/dist/js/framework/components/seekbarbufferlevel.d.ts +2 -0
- package/dist/js/framework/components/seekbarbufferlevel.js +18 -0
- package/dist/js/framework/components/timelinemarkershandler.js +1 -0
- package/dist/js/framework/main.js +1 -1
- package/package.json +1 -1
- package/spec/audioutils.spec.ts +1 -1
- package/spec/components/listselector.spec.ts +65 -0
- package/spec/components/seekbar.spec.ts +110 -0
- package/spec/helper/MockHelper.ts +1 -0
- package/spec/helper/PlayerEventEmitter.ts +16 -0
- package/src/scss/skin-modern/components/_subtitleoverlay.scss +14 -1
- package/src/ts/audiotrackutils.ts +1 -1
- package/src/ts/components/listbox.ts +1 -0
- package/src/ts/components/listselector.ts +20 -6
- package/src/ts/components/seekbar.ts +55 -31
- package/src/ts/components/seekbarbufferlevel.ts +21 -0
- package/src/ts/components/timelinemarkershandler.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,39 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
|
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
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- The scrubber could jump to an old position during a seek operation when it was dragged.
|
|
19
|
+
- The Seekbar scrubber could jump to an old position on touch devices when the buffer updates during a seek operation.
|
|
20
|
+
|
|
21
|
+
## [3.31.0] - 2021-10-12
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- Style reset for subtitle overlay element to prevent undesired CSS rules collisions.
|
|
25
|
+
|
|
26
|
+
## [3.30.0] - 2021-09-14
|
|
27
|
+
|
|
28
|
+
### Added
|
|
29
|
+
- Sort `AudioTracks` inside the `AudioTrackSelectBox` and the `AudioTrackListBox` by their identifier.
|
|
30
|
+
|
|
31
|
+
## [3.29.0] - 2021-08-19
|
|
8
32
|
|
|
9
33
|
### Fixed
|
|
10
34
|
- An empty line being added to subtitle boxes when VTT positioning attributes are present.
|
|
11
35
|
|
|
12
|
-
## [3.28.1]
|
|
36
|
+
## [3.28.1] - 2021-06-25
|
|
13
37
|
|
|
14
38
|
### Fixed
|
|
15
39
|
- Broken build for previous release `3.28.0`
|
|
@@ -219,7 +243,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
219
243
|
- UI not hiding after selecting an item within a `ListBox`
|
|
220
244
|
|
|
221
245
|
## [3.4.6]
|
|
222
|
-
|
|
246
|
+
|
|
223
247
|
### Fixed
|
|
224
248
|
- Allow npm package to be imported in server side app without `navigator` error
|
|
225
249
|
|
|
@@ -253,7 +277,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
253
277
|
|
|
254
278
|
### Fixed
|
|
255
279
|
- Stopping timeshift offset updater of `SeekBar` when player is destroyed
|
|
256
|
-
- `box-sizing` style of `SeekBar` and `SeekBarLabel`
|
|
280
|
+
- `box-sizing` style of `SeekBar` and `SeekBarLabel`
|
|
257
281
|
|
|
258
282
|
## [3.4.0]
|
|
259
283
|
|
|
@@ -498,7 +522,7 @@ License change from LGPLv3 to MIT.
|
|
|
498
522
|
- Removed `VolumeControlButton`'s `VolumeSlider` slide-in animation in the legacy skin to fix the slider knob at 100% bug
|
|
499
523
|
|
|
500
524
|
### Fixed
|
|
501
|
-
- Vertical `VolumeSlider` knob in legacy skin was not visible when set to a low volume
|
|
525
|
+
- Vertical `VolumeSlider` knob in legacy skin was not visible when set to a low volume
|
|
502
526
|
- Legacy skin's `VolumeSlider` knob was always rendered at 100% when appearing after being hidden
|
|
503
527
|
- Avoid `ItemSelectionList` DOM recreation on item selection to avoid unexpected events (e.g. `mouseenter`)
|
|
504
528
|
|
|
@@ -744,6 +768,10 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
744
768
|
## 1.0.0 (2017-02-03)
|
|
745
769
|
- First release
|
|
746
770
|
|
|
771
|
+
[3.33.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.32.0...v3.33.0
|
|
772
|
+
[3.32.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.31.0...v3.32.0
|
|
773
|
+
[3.31.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.30.0...v3.31.0
|
|
774
|
+
[3.30.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.29.0...v3.30.0
|
|
747
775
|
[3.29.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.28.1...v3.29.0
|
|
748
776
|
[3.28.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.28.0...v3.28.1
|
|
749
777
|
[3.28.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.27.0...v3.28.0
|