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.
- package/CHANGELOG.md +14 -3
- package/artifact/artifact.tar.gz +0 -0
- package/dist/js/bitmovinplayer-ui.js +53 -18
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/adclickoverlay.d.ts +2 -1
- package/dist/js/framework/components/adclickoverlay.js +7 -2
- package/dist/js/framework/components/adskipbutton.js +1 -0
- package/dist/js/framework/components/button.d.ts +6 -0
- package/dist/js/framework/components/button.js +2 -1
- package/dist/js/framework/components/component.js +1 -1
- package/dist/js/framework/components/container.js +1 -1
- package/dist/js/framework/components/itemselectionlist.js +1 -1
- package/dist/js/framework/components/label.js +1 -1
- package/dist/js/framework/components/listbox.js +1 -1
- package/dist/js/framework/components/recommendationoverlay.js +1 -1
- package/dist/js/framework/components/seekbar.js +1 -1
- package/dist/js/framework/components/selectbox.js +1 -1
- package/dist/js/framework/components/subtitlesettings/subtitlesettingslabel.js +1 -1
- package/dist/js/framework/components/tvnoisecanvas.js +1 -1
- package/dist/js/framework/components/uicontainer.js +26 -1
- package/dist/js/framework/dom.d.ts +11 -3
- package/dist/js/framework/dom.js +4 -1
- package/dist/js/framework/main.js +1 -1
- package/package.json +1 -1
- package/src/ts/components/adclickoverlay.ts +8 -1
- package/src/ts/components/adskipbutton.ts +1 -0
- package/src/ts/components/button.ts +9 -1
- package/src/ts/components/component.ts +1 -1
- package/src/ts/components/container.ts +1 -1
- package/src/ts/components/itemselectionlist.ts +1 -1
- package/src/ts/components/label.ts +1 -1
- package/src/ts/components/listbox.ts +1 -1
- package/src/ts/components/recommendationoverlay.ts +1 -1
- package/src/ts/components/seekbar.ts +1 -1
- package/src/ts/components/selectbox.ts +1 -1
- package/src/ts/components/subtitlesettings/subtitlesettingslabel.ts +1 -1
- package/src/ts/components/tvnoisecanvas.ts +1 -1
- package/src/ts/components/uicontainer.ts +31 -2
- 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
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|