bitmovin-player-ui 3.63.0 → 3.64.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 (40) hide show
  1. package/CHANGELOG.md +14 -3
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +53 -18
  4. package/dist/js/bitmovinplayer-ui.min.js +1 -1
  5. package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
  6. package/dist/js/framework/components/adclickoverlay.d.ts +2 -1
  7. package/dist/js/framework/components/adclickoverlay.js +7 -2
  8. package/dist/js/framework/components/adskipbutton.js +1 -0
  9. package/dist/js/framework/components/button.d.ts +6 -0
  10. package/dist/js/framework/components/button.js +2 -1
  11. package/dist/js/framework/components/component.js +1 -1
  12. package/dist/js/framework/components/container.js +1 -1
  13. package/dist/js/framework/components/itemselectionlist.js +1 -1
  14. package/dist/js/framework/components/label.js +1 -1
  15. package/dist/js/framework/components/listbox.js +1 -1
  16. package/dist/js/framework/components/recommendationoverlay.js +1 -1
  17. package/dist/js/framework/components/seekbar.js +1 -1
  18. package/dist/js/framework/components/selectbox.js +1 -1
  19. package/dist/js/framework/components/subtitlesettings/subtitlesettingslabel.js +1 -1
  20. package/dist/js/framework/components/tvnoisecanvas.js +1 -1
  21. package/dist/js/framework/components/uicontainer.js +26 -1
  22. package/dist/js/framework/dom.d.ts +11 -3
  23. package/dist/js/framework/dom.js +4 -1
  24. package/dist/js/framework/main.js +1 -1
  25. package/package.json +1 -1
  26. package/src/ts/components/adclickoverlay.ts +8 -1
  27. package/src/ts/components/adskipbutton.ts +1 -0
  28. package/src/ts/components/button.ts +9 -1
  29. package/src/ts/components/component.ts +1 -1
  30. package/src/ts/components/container.ts +1 -1
  31. package/src/ts/components/itemselectionlist.ts +1 -1
  32. package/src/ts/components/label.ts +1 -1
  33. package/src/ts/components/listbox.ts +1 -1
  34. package/src/ts/components/recommendationoverlay.ts +1 -1
  35. package/src/ts/components/seekbar.ts +1 -1
  36. package/src/ts/components/selectbox.ts +1 -1
  37. package/src/ts/components/subtitlesettings/subtitlesettingslabel.ts +1 -1
  38. package/src/ts/components/tvnoisecanvas.ts +1 -1
  39. package/src/ts/components/uicontainer.ts +31 -2
  40. package/src/ts/dom.ts +29 -11
package/CHANGELOG.md CHANGED
@@ -4,6 +4,19 @@ 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.64.0] - 2024-05-28
8
+
9
+ ### Added
10
+ - `Component` instances are now assigned to their `HTMLElements` for easier accessing
11
+
12
+ ### Fixed
13
+ - Two touch interactions needed to skip an ad or open the click through link
14
+
15
+ ## [3.63.0] - 2024-05-17
16
+
17
+ ### Added
18
+ - `QuickSeekButton` control bar component for jumping +/- a configurable number of seconds (10 second default)
19
+
7
20
  ## [3.62.0] - 2024-05-06
8
21
 
9
22
  ### Fixed
@@ -64,9 +77,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
64
77
  ### Added
65
78
  - Automate release on every PR merge to develop
66
79
 
67
- ### Added
68
- - `QuickSeekButton` control bar component for jumping +/- a configurable number of seconds (10 second default)
69
-
70
80
  ## [3.52.2] - 2023-11-23
71
81
 
72
82
  ### Fixed
@@ -950,6 +960,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
950
960
  ## 1.0.0 (2017-02-03)
951
961
  - First release
952
962
 
963
+ [3.64.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.63.0...v3.64.0
953
964
  [3.63.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.62.0...v3.63.0
954
965
  [3.62.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.61.0...v3.62.0
955
966
  [3.61.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.60.0...v3.61.0
Binary file