bitmovin-player-ui 3.62.0 → 3.63.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 +4 -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 +244 -111
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/button.d.ts +4 -0
- package/dist/js/framework/components/quickseekbutton.d.ts +21 -0
- package/dist/js/framework/components/quickseekbutton.js +113 -0
- package/dist/js/framework/components/replaybutton.js +1 -0
- package/dist/js/framework/demofactory.js +3 -0
- 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/button.ts +4 -0
- package/src/ts/components/quickseekbutton.ts +129 -0
- package/src/ts/components/replaybutton.ts +1 -0
- package/src/ts/demofactory.ts +3 -0
- 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
|
@@ -64,6 +64,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
64
64
|
### Added
|
|
65
65
|
- Automate release on every PR merge to develop
|
|
66
66
|
|
|
67
|
+
### Added
|
|
68
|
+
- `QuickSeekButton` control bar component for jumping +/- a configurable number of seconds (10 second default)
|
|
69
|
+
|
|
67
70
|
## [3.52.2] - 2023-11-23
|
|
68
71
|
|
|
69
72
|
### Fixed
|
|
@@ -947,6 +950,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
947
950
|
## 1.0.0 (2017-02-03)
|
|
948
951
|
- First release
|
|
949
952
|
|
|
953
|
+
[3.63.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.62.0...v3.63.0
|
|
950
954
|
[3.62.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.61.0...v3.62.0
|
|
951
955
|
[3.61.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.60.0...v3.61.0
|
|
952
956
|
[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>
|