bitmovin-player-ui 3.30.0 → 3.34.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.
Files changed (41) hide show
  1. package/CHANGELOG.md +35 -7
  2. package/dist/css/bitmovinplayer-ui.css +15 -11
  3. package/dist/css/bitmovinplayer-ui.min.css +2 -2
  4. package/dist/js/bitmovinplayer-ui.js +199 -124
  5. package/dist/js/bitmovinplayer-ui.min.js +8 -8
  6. package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
  7. package/dist/js/framework/components/component.d.ts +2 -0
  8. package/dist/js/framework/components/component.js +7 -0
  9. package/dist/js/framework/components/hugeplaybacktogglebutton.js +0 -1
  10. package/dist/js/framework/components/listbox.js +1 -0
  11. package/dist/js/framework/components/listselector.d.ts +4 -1
  12. package/dist/js/framework/components/listselector.js +16 -3
  13. package/dist/js/framework/components/playbacktogglebutton.js +3 -2
  14. package/dist/js/framework/components/seekbar.d.ts +2 -0
  15. package/dist/js/framework/components/seekbar.js +46 -24
  16. package/dist/js/framework/components/seekbarbufferlevel.d.ts +2 -0
  17. package/dist/js/framework/components/seekbarbufferlevel.js +18 -0
  18. package/dist/js/framework/components/timelinemarkershandler.js +1 -0
  19. package/dist/js/framework/components/togglebutton.d.ts +17 -0
  20. package/dist/js/framework/components/togglebutton.js +11 -2
  21. package/dist/js/framework/localization/languages/de.json +1 -0
  22. package/dist/js/framework/localization/languages/en.json +1 -0
  23. package/dist/js/framework/main.js +1 -1
  24. package/package.json +1 -1
  25. package/spec/components/listselector.spec.ts +40 -0
  26. package/spec/components/seekbar.spec.ts +110 -0
  27. package/spec/components/togglebutton.spec.ts +78 -0
  28. package/spec/helper/MockHelper.ts +4 -2
  29. package/spec/helper/PlayerEventEmitter.ts +16 -0
  30. package/src/scss/skin-modern/components/_subtitleoverlay.scss +14 -1
  31. package/src/ts/components/component.ts +9 -1
  32. package/src/ts/components/hugeplaybacktogglebutton.ts +0 -1
  33. package/src/ts/components/listbox.ts +1 -0
  34. package/src/ts/components/listselector.ts +6 -3
  35. package/src/ts/components/playbacktogglebutton.ts +3 -2
  36. package/src/ts/components/seekbar.ts +55 -31
  37. package/src/ts/components/seekbarbufferlevel.ts +21 -0
  38. package/src/ts/components/timelinemarkershandler.ts +1 -0
  39. package/src/ts/components/togglebutton.ts +31 -2
  40. package/src/ts/localization/languages/de.json +1 -0
  41. package/src/ts/localization/languages/en.json +1 -0
package/CHANGELOG.md CHANGED
@@ -1,20 +1,44 @@
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.30.0]
7
+ ## [3.34.0] - 2022-02-16
8
+
9
+ ### Fixed
10
+ - Incorrect aria-label on playbackbutton toggle
11
+
12
+ ## [3.33.0] - 2022-02-01
13
+
14
+ ### Added
15
+ - Support for providing custom `aria-label` when `ListBox` is used.
16
+
17
+ ### Fixed
18
+ - Updating the markers on live streams causing unhandled exception after player is destroyed.
19
+
20
+ ## [3.32.0] - 2021-12-21
21
+
22
+ ### Fixed
23
+ - The scrubber could jump to an old position during a seek operation when it was dragged.
24
+ - The Seekbar scrubber could jump to an old position on touch devices when the buffer updates during a seek operation.
25
+
26
+ ## [3.31.0] - 2021-10-12
27
+
28
+ ### Added
29
+ - Style reset for subtitle overlay element to prevent undesired CSS rules collisions.
30
+
31
+ ## [3.30.0] - 2021-09-14
8
32
 
9
33
  ### Added
10
34
  - Sort `AudioTracks` inside the `AudioTrackSelectBox` and the `AudioTrackListBox` by their identifier.
11
35
 
12
- ## [3.29.0]
36
+ ## [3.29.0] - 2021-08-19
13
37
 
14
38
  ### Fixed
15
39
  - An empty line being added to subtitle boxes when VTT positioning attributes are present.
16
40
 
17
- ## [3.28.1]
41
+ ## [3.28.1] - 2021-06-25
18
42
 
19
43
  ### Fixed
20
44
  - Broken build for previous release `3.28.0`
@@ -224,7 +248,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
224
248
  - UI not hiding after selecting an item within a `ListBox`
225
249
 
226
250
  ## [3.4.6]
227
-
251
+
228
252
  ### Fixed
229
253
  - Allow npm package to be imported in server side app without `navigator` error
230
254
 
@@ -258,7 +282,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
258
282
 
259
283
  ### Fixed
260
284
  - Stopping timeshift offset updater of `SeekBar` when player is destroyed
261
- - `box-sizing` style of `SeekBar` and `SeekBarLabel`
285
+ - `box-sizing` style of `SeekBar` and `SeekBarLabel`
262
286
 
263
287
  ## [3.4.0]
264
288
 
@@ -503,7 +527,7 @@ License change from LGPLv3 to MIT.
503
527
  - Removed `VolumeControlButton`'s `VolumeSlider` slide-in animation in the legacy skin to fix the slider knob at 100% bug
504
528
 
505
529
  ### Fixed
506
- - Vertical `VolumeSlider` knob in legacy skin was not visible when set to a low volume
530
+ - Vertical `VolumeSlider` knob in legacy skin was not visible when set to a low volume
507
531
  - Legacy skin's `VolumeSlider` knob was always rendered at 100% when appearing after being hidden
508
532
  - Avoid `ItemSelectionList` DOM recreation on item selection to avoid unexpected events (e.g. `mouseenter`)
509
533
 
@@ -749,6 +773,10 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
749
773
  ## 1.0.0 (2017-02-03)
750
774
  - First release
751
775
 
776
+ [3.34.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.33.0...v3.34.0
777
+ [3.33.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.32.0...v3.33.0
778
+ [3.32.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.31.0...v3.32.0
779
+ [3.31.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.30.0...v3.31.0
752
780
  [3.30.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.29.0...v3.30.0
753
781
  [3.29.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.28.1...v3.29.0
754
782
  [3.28.1]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.28.0...v3.28.1