bitmovin-player-ui 3.62.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 +15 -0
- package/artifact/artifact.tar.gz +0 -0
- package/assets/skin-modern/images/quickseek-fastforward.svg +2 -0
- package/assets/skin-modern/images/quickseek-rewind.svg +2 -0
- package/dist/css/bitmovinplayer-ui.css +33 -10
- package/dist/css/bitmovinplayer-ui.min.css +2 -2
- package/dist/js/bitmovinplayer-ui.js +294 -126
- 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 +10 -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/quickseekbutton.d.ts +21 -0
- package/dist/js/framework/components/quickseekbutton.js +113 -0
- package/dist/js/framework/components/recommendationoverlay.js +1 -1
- package/dist/js/framework/components/replaybutton.js +1 -0
- 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/demofactory.js +3 -0
- package/dist/js/framework/dom.d.ts +11 -3
- package/dist/js/framework/dom.js +4 -1
- package/dist/js/framework/localization/languages/de.json +3 -1
- package/dist/js/framework/localization/languages/en.json +3 -1
- package/dist/js/framework/localization/languages/es.json +3 -1
- package/dist/js/framework/main.d.ts +1 -0
- package/dist/js/framework/main.js +4 -2
- package/dist/js/framework/playerutils.d.ts +1 -0
- package/dist/js/framework/playerutils.js +6 -0
- package/package.json +1 -1
- package/src/scss/skin-modern/_skin.scss +1 -0
- package/src/scss/skin-modern/components/_quickseekbutton.scss +18 -0
- package/src/ts/components/adclickoverlay.ts +8 -1
- package/src/ts/components/adskipbutton.ts +1 -0
- package/src/ts/components/button.ts +13 -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/quickseekbutton.ts +129 -0
- package/src/ts/components/recommendationoverlay.ts +1 -1
- package/src/ts/components/replaybutton.ts +1 -0
- 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/demofactory.ts +3 -0
- package/src/ts/dom.ts +29 -11
- package/src/ts/localization/languages/de.json +3 -1
- package/src/ts/localization/languages/en.json +3 -1
- package/src/ts/localization/languages/es.json +3 -1
- package/src/ts/main.ts +1 -0
- package/src/ts/playerutils.ts +6 -0
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
|
|
@@ -947,6 +960,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
947
960
|
## 1.0.0 (2017-02-03)
|
|
948
961
|
- First release
|
|
949
962
|
|
|
963
|
+
[3.64.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.63.0...v3.64.0
|
|
964
|
+
[3.63.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.62.0...v3.63.0
|
|
950
965
|
[3.62.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.61.0...v3.62.0
|
|
951
966
|
[3.61.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.60.0...v3.61.0
|
|
952
967
|
[3.60.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.59.0...v3.60.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve"><style type="text/css">.st0{fill:#FFFFFF;}</style><path class="st0" d="M16.8,21c0.5,0,0.9-0.4,0.9-0.9v-3.2h3.2c0.5,0,0.9-0.4,0.9-0.9s-0.4-0.9-0.9-0.9h-3.2v-3.2 c0-0.5-0.4-0.9-0.9-0.9s-0.9,0.4-0.9,1v3.1h-3.2c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,1,0.9h3.2v3.2C15.9,20.7,16.2,21,16.8,21z M25.2,10.5V6.8c0-0.5-0.4-0.9-0.9-0.9s-0.9,0.4-0.9,0.9v1.5c-1.8-1.5-4.1-2.4-6.5-2.4C11.3,5.9,6.8,10.4,6.8,16s4.5,10.1,10.1,10.1 c3.2,0,6.2-1.5,8.1-4.1c0.3-0.4,0.2-1-0.2-1.3c-0.4-0.3-1-0.2-1.2,0.2c-1.6,2.1-4.1,3.4-6.7,3.4c-4.6,0-8.3-3.7-8.3-8.3 s3.7-8.3,8.3-8.3c1.9,0,3.7,0.7,5.2,1.9h-1.5c-0.5,0-0.9,0.4-0.9,0.9s0.4,0.9,0.9,0.9h3.7C24.8,11.4,25.2,11,25.2,10.5z"/></svg>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;zoom: 1;" xml:space="preserve"><style type="text/css">.st0{fill:#FFFFFF;}</style><path d="M21.073007,16 c0,-0.5 -0.4,-0.9 -0.9,-0.9 H11.873006 C11.373006,15.1 10.973006,15.5 10.973006,16 s0.4,0.9 0.9,0.9 h8.2 C20.673006,16.9 21.073007,16.5 21.073007,16 M15.873006,5.9 c-2.4,0 -4.7,0.9 -6.5,2.4 V6.8 c0,-0.5 -0.4,-0.9 -0.9,-0.9 S7.573007,6.3 7.573007,6.8 v3.7 c0,0.5 0.4,0.9 0.9,0.9 h3.7 c0.5,0 0.9,-0.4 0.9,-0.9 s-0.4,-0.9 -0.9,-0.9 h-1.5 c1.5,-1.2 3.3,-1.9 5.2,-1.9 c4.6,0 8.3,3.7 8.3,8.3 s-3.7,8.3 -8.3,8.3 c-2.6,0 -5.1,-1.3 -6.7,-3.4 C8.973006,20.5 8.373006,20.4 7.973006,20.700001 C7.573007,21 7.473006,21.6 7.773006,22 c1.9,2.6 4.9,4.1 8.1,4.1 C21.473007,26.1 25.973007,21.6 25.973007,16 S21.473007,5.9 15.873006,5.9 " visibility="visible" class="st0"></path></svg>
|