bitmovin-player-ui 3.33.0 → 3.36.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 +18 -0
- package/dist/css/bitmovinplayer-ui.css +1503 -1210
- package/dist/css/bitmovinplayer-ui.min.css +1 -1
- package/dist/css/demo.css +5 -4
- package/dist/js/bitmovinplayer-ui.js +42 -15
- 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 +2 -0
- package/dist/js/framework/components/component.js +7 -0
- package/dist/js/framework/components/hugeplaybacktogglebutton.js +0 -1
- package/dist/js/framework/components/playbacktogglebutton.js +3 -2
- package/dist/js/framework/components/seekbar.d.ts +5 -0
- package/dist/js/framework/components/seekbar.js +15 -6
- package/dist/js/framework/components/togglebutton.d.ts +17 -0
- package/dist/js/framework/components/togglebutton.js +11 -2
- package/dist/js/framework/localization/languages/de.json +1 -0
- package/dist/js/framework/localization/languages/en.json +1 -0
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/uiconfig.d.ts +5 -0
- package/dist/js/framework/uimanager.js +1 -1
- package/gulpfile.js +1 -1
- package/package.json +3 -3
- package/spec/components/togglebutton.spec.ts +78 -0
- package/spec/helper/MockHelper.ts +3 -2
- package/src/scss/skin-modern/_mixins.scss +1 -1
- package/src/scss/skin-modern/_skin-ads.scss +1 -1
- package/src/scss/skin-modern/_skin-cast-receiver.scss +1 -1
- package/src/scss/skin-modern/_skin-smallscreen.scss +1 -1
- package/src/scss/skin-modern/_variables.scss +1 -1
- package/src/scss/skin-modern/components/_bufferingoverlay.scss +1 -1
- package/src/scss/skin-modern/components/_controlbar.scss +1 -1
- package/src/scss/skin-modern/components/_uicontainer.scss +1 -1
- package/src/ts/components/component.ts +9 -1
- package/src/ts/components/hugeplaybacktogglebutton.ts +0 -1
- package/src/ts/components/playbacktogglebutton.ts +3 -2
- package/src/ts/components/seekbar.ts +24 -6
- package/src/ts/components/togglebutton.ts +31 -2
- package/src/ts/localization/languages/de.json +1 -0
- package/src/ts/localization/languages/en.json +1 -0
- package/src/ts/uiconfig.ts +5 -0
- package/src/ts/uimanager.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,21 @@ 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.36.0] - 2022-03-15
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- Seek preview is now configurable via `UIConfig.enableSeekPreview` or `SeekBarConfig.enableSeekPreview`
|
|
11
|
+
|
|
12
|
+
## [3.35.0] - 2022-03-01
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- npm install failure on node 16
|
|
16
|
+
|
|
17
|
+
## [3.34.0] - 2022-02-16
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- Incorrect aria-label on playbackbutton toggle
|
|
21
|
+
|
|
7
22
|
## [3.33.0] - 2022-02-01
|
|
8
23
|
|
|
9
24
|
### Added
|
|
@@ -768,6 +783,9 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
768
783
|
## 1.0.0 (2017-02-03)
|
|
769
784
|
- First release
|
|
770
785
|
|
|
786
|
+
[3.36.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.35.0...v3.36.0
|
|
787
|
+
[3.35.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.34.0...v3.35.0
|
|
788
|
+
[3.34.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.33.0...v3.34.0
|
|
771
789
|
[3.33.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.32.0...v3.33.0
|
|
772
790
|
[3.32.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.31.0...v3.32.0
|
|
773
791
|
[3.31.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.30.0...v3.31.0
|