bitmovin-player-ui 3.38.0 → 3.39.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 +11 -0
- package/assets/skin-modern/images/replay-nocircle.svg +12 -0
- package/dist/css/bitmovinplayer-ui.css +30 -10
- package/dist/css/bitmovinplayer-ui.min.css +2 -2
- package/dist/js/bitmovinplayer-ui.js +175 -97
- package/dist/js/bitmovinplayer-ui.min.js +8 -8
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/component.d.ts +4 -0
- package/dist/js/framework/components/component.js +6 -0
- package/dist/js/framework/components/errormessageoverlay.d.ts +1 -0
- package/dist/js/framework/components/errormessageoverlay.js +6 -3
- package/dist/js/framework/components/replaybutton.d.ts +10 -0
- package/dist/js/framework/components/replaybutton.js +62 -0
- package/dist/js/framework/main.d.ts +1 -0
- package/dist/js/framework/main.js +3 -1
- package/dist/js/framework/uimanager.js +4 -1
- package/package.json +1 -1
- package/src/scss/skin-modern/_skin.scss +1 -0
- package/src/scss/skin-modern/components/_replaybutton.scss +12 -0
- package/src/ts/components/component.ts +7 -0
- package/src/ts/components/errormessageoverlay.ts +7 -3
- package/src/ts/components/replaybutton.ts +48 -0
- package/src/ts/main.ts +1 -0
- package/src/ts/uimanager.ts +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ 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.39.0] - 2022-12-01
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- `display` method on `ErrorMessageOverlay` to enable usage for application errors without a player error
|
|
11
|
+
- Replay button which can be used within the controlbar and works also during playback
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Unnecessary DOM element creation on release
|
|
15
|
+
|
|
7
16
|
## [3.38.0] - 2022-08-30
|
|
8
17
|
|
|
9
18
|
### Fixed
|
|
@@ -795,6 +804,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
795
804
|
## 1.0.0 (2017-02-03)
|
|
796
805
|
- First release
|
|
797
806
|
|
|
807
|
+
[develop]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.38.0...HEAD
|
|
808
|
+
[3.39.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.38.0...v3.39.0
|
|
798
809
|
[3.38.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.37.0...v3.38.0
|
|
799
810
|
[3.37.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.36.0...v3.37.0
|
|
800
811
|
[3.36.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.35.0...v3.36.0
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 26.3.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<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"
|
|
4
|
+
viewBox="0 0 32 32" style="enable-background:new 0 0 32 32;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#FFFFFF;}
|
|
7
|
+
</style>
|
|
8
|
+
<path class="st0" d="M22.8,9.1C19,5.2,12.7,5.1,8.7,8.9V7.1c0-0.6-0.4-1-1-1s-1,0.4-1,1v4.5c0,0.6,0.4,1,1,1h4.5c0.6,0,1-0.4,1-1
|
|
9
|
+
s-0.4-1-1-1H9.8c1.6-1.6,3.7-2.5,5.9-2.5c4.4,0,8,3.7,8,8.1s-3.7,8-8.1,8c-3.5,0-6.5-2.3-7.6-5.4l0,0C7.9,18.4,7.5,18,7.1,18
|
|
10
|
+
c-0.5,0-1,0.4-1,1c0,0.1,0,0.2,0.1,0.3l0,0l0,0l0,0c0.5,1.3,1.2,2.5,2.2,3.5c3.8,4,10.1,4.1,14.1,0.3C26.5,19.5,26.6,13.2,22.8,9.1z
|
|
11
|
+
"/>
|
|
12
|
+
</svg>
|