bitmovin-player-ui 3.28.1 → 3.32.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 +30 -5
- package/README.md +1 -1
- package/dist/css/bitmovinplayer-ui.css +17 -12
- package/dist/css/bitmovinplayer-ui.min.css +2 -2
- package/dist/js/bitmovinplayer-ui.js +177 -121
- 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/listselector.d.ts +4 -3
- package/dist/js/framework/components/listselector.js +18 -4
- 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/main.js +1 -1
- package/package.json +1 -1
- package/publish.sh +2 -2
- package/spec/audioutils.spec.ts +1 -1
- package/spec/components/listselector.spec.ts +25 -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 +16 -1
- package/src/ts/audiotrackutils.ts +1 -1
- package/src/ts/components/listselector.ts +15 -4
- package/src/ts/components/seekbar.ts +55 -31
- package/src/ts/components/seekbarbufferlevel.ts +21 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,31 @@
|
|
|
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.32.0] - 2021-12-21 - 2021-12-21
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
- The scrubber could jump to an old position during a seek operation when it was dragged.
|
|
11
|
+
- The Seekbar scrubber could jump to an old position on touch devices when the buffer updates during a seek operation.
|
|
12
|
+
|
|
13
|
+
## [3.31.0] - 2021-10-12
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Style reset for subtitle overlay element to prevent undesired CSS rules collisions.
|
|
17
|
+
|
|
18
|
+
## [3.30.0] - 2021-09-14
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- Sort `AudioTracks` inside the `AudioTrackSelectBox` and the `AudioTrackListBox` by their identifier.
|
|
22
|
+
|
|
23
|
+
## [3.29.0] - 2021-08-19
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
- An empty line being added to subtitle boxes when VTT positioning attributes are present.
|
|
27
|
+
|
|
28
|
+
## [3.28.1] - 2021-06-25
|
|
8
29
|
|
|
9
30
|
### Fixed
|
|
10
31
|
- Broken build for previous release `3.28.0`
|
|
@@ -214,7 +235,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
214
235
|
- UI not hiding after selecting an item within a `ListBox`
|
|
215
236
|
|
|
216
237
|
## [3.4.6]
|
|
217
|
-
|
|
238
|
+
|
|
218
239
|
### Fixed
|
|
219
240
|
- Allow npm package to be imported in server side app without `navigator` error
|
|
220
241
|
|
|
@@ -248,7 +269,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
248
269
|
|
|
249
270
|
### Fixed
|
|
250
271
|
- Stopping timeshift offset updater of `SeekBar` when player is destroyed
|
|
251
|
-
- `box-sizing` style of `SeekBar` and `SeekBarLabel`
|
|
272
|
+
- `box-sizing` style of `SeekBar` and `SeekBarLabel`
|
|
252
273
|
|
|
253
274
|
## [3.4.0]
|
|
254
275
|
|
|
@@ -493,7 +514,7 @@ License change from LGPLv3 to MIT.
|
|
|
493
514
|
- Removed `VolumeControlButton`'s `VolumeSlider` slide-in animation in the legacy skin to fix the slider knob at 100% bug
|
|
494
515
|
|
|
495
516
|
### Fixed
|
|
496
|
-
- Vertical `VolumeSlider` knob in legacy skin was not visible when set to a low volume
|
|
517
|
+
- Vertical `VolumeSlider` knob in legacy skin was not visible when set to a low volume
|
|
497
518
|
- Legacy skin's `VolumeSlider` knob was always rendered at 100% when appearing after being hidden
|
|
498
519
|
- Avoid `ItemSelectionList` DOM recreation on item selection to avoid unexpected events (e.g. `mouseenter`)
|
|
499
520
|
|
|
@@ -739,6 +760,10 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
739
760
|
## 1.0.0 (2017-02-03)
|
|
740
761
|
- First release
|
|
741
762
|
|
|
763
|
+
[3.32.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.31.0...v3.32.0
|
|
764
|
+
[3.31.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.30.0...v3.31.0
|
|
765
|
+
[3.30.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.29.0...v3.30.0
|
|
766
|
+
[3.29.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.28.1...v3.29.0
|
|
742
767
|
[3.28.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.28.0...v3.28.1
|
|
743
768
|
[3.28.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.27.0...v3.28.0
|
|
744
769
|
[3.27.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.26.0...v3.27.0
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Bitmovin Player UI [](https://badge.fury.io/js/bitmovin-player-ui) [](https://badge.fury.io/js/bitmovin-player-ui) [](https://travis-ci.com/bitmovin/bitmovin-player-ui)
|
|
2
2
|
The Bitmovin Adaptive Streaming Player UI
|
|
3
3
|
|
|
4
4
|
Read more about the usage, along with other important information about the Bitmovin Player at https://bitmovin.com/ and https://bitmovin.com/docs/player.
|