bitmovin-player-ui 3.71.0 → 3.73.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 +19 -0
- package/artifact/artifact.tar.gz +0 -0
- package/dist/js/bitmovinplayer-ui.js +391 -112
- package/dist/js/bitmovinplayer-ui.min.js +1 -1
- package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
- package/dist/js/framework/components/component.d.ts +31 -0
- package/dist/js/framework/components/component.js +42 -13
- package/dist/js/framework/components/container.d.ts +5 -1
- package/dist/js/framework/components/container.js +23 -0
- package/dist/js/framework/components/selectbox.d.ts +16 -0
- package/dist/js/framework/components/selectbox.js +117 -8
- package/dist/js/framework/components/settingspanel.d.ts +3 -1
- package/dist/js/framework/components/settingspanel.js +15 -26
- package/dist/js/framework/components/uicontainer.d.ts +6 -1
- package/dist/js/framework/components/uicontainer.js +19 -5
- package/dist/js/framework/dom.d.ts +4 -2
- package/dist/js/framework/dom.js +8 -6
- package/dist/js/framework/localization/i18n.js +2 -0
- package/dist/js/framework/localization/languages/nl.json +76 -0
- package/dist/js/framework/main.js +1 -1
- package/dist/js/framework/timeout.d.ts +15 -2
- package/dist/js/framework/timeout.js +28 -2
- package/dist/js/framework/uimanager.d.ts +2 -1
- package/dist/js/framework/uimanager.js +8 -0
- package/package.json +1 -1
- package/spec/components/selectbox.spec.ts +325 -0
- package/spec/components/settingspanel.spec.ts +74 -6
- package/spec/components/uicontainer.spec.ts +51 -5
- package/spec/helper/MockHelper.ts +10 -0
- package/src/ts/components/component.ts +53 -12
- package/src/ts/components/container.ts +27 -1
- package/src/ts/components/selectbox.ts +142 -12
- package/src/ts/components/settingspanel.ts +14 -26
- package/src/ts/components/uicontainer.ts +25 -10
- package/src/ts/dom.ts +8 -6
- package/src/ts/localization/i18n.ts +3 -0
- package/src/ts/localization/languages/nl.json +76 -0
- package/src/ts/timeout.ts +35 -2
- package/src/ts/uimanager.ts +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,23 @@ 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.73.0] - 2024-09-06
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
- `Component` now has a `ViewMode` that can either be `Persistent` or `Temporary`
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- `selectbox` dropdown not closing in Safari when the UI is hidden
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
- `selectbox` now sets its `ViewMode` to `Persistent` whenever and as long as the select-dropdown is shown
|
|
17
|
+
- `uicontainer` and `settingspanel` will no longer auto-hide if there are any components that are in the `Persistent` view mode
|
|
18
|
+
|
|
19
|
+
## [3.72.0] - 2024-08-30
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- Dutch (nl) subtitles
|
|
23
|
+
|
|
7
24
|
## [3.71.0] - 2024-08-28
|
|
8
25
|
|
|
9
26
|
### Added
|
|
@@ -991,6 +1008,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
|
|
|
991
1008
|
## 1.0.0 (2017-02-03)
|
|
992
1009
|
- First release
|
|
993
1010
|
|
|
1011
|
+
[3.73.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.72.0...v3.73.0
|
|
1012
|
+
[3.72.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.71.0...v3.72.0
|
|
994
1013
|
[3.71.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.70.0...v3.71.0
|
|
995
1014
|
[3.70.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.69.0...v3.70.0
|
|
996
1015
|
[3.69.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.67.0...v3.69.0
|
package/artifact/artifact.tar.gz
CHANGED
|
Binary file
|