bitmovin-player-ui 3.72.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +263 -63
  4. package/dist/js/bitmovinplayer-ui.min.js +1 -1
  5. package/dist/js/bitmovinplayer-ui.min.js.map +1 -1
  6. package/dist/js/framework/components/component.d.ts +31 -0
  7. package/dist/js/framework/components/component.js +42 -13
  8. package/dist/js/framework/components/container.d.ts +5 -1
  9. package/dist/js/framework/components/container.js +23 -0
  10. package/dist/js/framework/components/selectbox.d.ts +16 -0
  11. package/dist/js/framework/components/selectbox.js +117 -8
  12. package/dist/js/framework/components/settingspanel.d.ts +3 -1
  13. package/dist/js/framework/components/settingspanel.js +15 -26
  14. package/dist/js/framework/components/uicontainer.d.ts +6 -1
  15. package/dist/js/framework/components/uicontainer.js +19 -5
  16. package/dist/js/framework/dom.d.ts +4 -2
  17. package/dist/js/framework/dom.js +8 -6
  18. package/dist/js/framework/main.js +1 -1
  19. package/dist/js/framework/timeout.d.ts +15 -2
  20. package/dist/js/framework/timeout.js +28 -2
  21. package/dist/js/framework/uimanager.d.ts +2 -1
  22. package/dist/js/framework/uimanager.js +8 -0
  23. package/package.json +1 -1
  24. package/spec/components/selectbox.spec.ts +325 -0
  25. package/spec/components/settingspanel.spec.ts +74 -6
  26. package/spec/components/uicontainer.spec.ts +51 -5
  27. package/spec/helper/MockHelper.ts +10 -0
  28. package/src/ts/components/component.ts +53 -12
  29. package/src/ts/components/container.ts +27 -1
  30. package/src/ts/components/selectbox.ts +142 -12
  31. package/src/ts/components/settingspanel.ts +14 -26
  32. package/src/ts/components/uicontainer.ts +25 -10
  33. package/src/ts/dom.ts +8 -6
  34. package/src/ts/timeout.ts +35 -2
  35. package/src/ts/uimanager.ts +6 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,18 @@ 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
+
7
19
  ## [3.72.0] - 2024-08-30
8
20
 
9
21
  ### Added
@@ -996,6 +1008,7 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
996
1008
  ## 1.0.0 (2017-02-03)
997
1009
  - First release
998
1010
 
1011
+ [3.73.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.72.0...v3.73.0
999
1012
  [3.72.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.71.0...v3.72.0
1000
1013
  [3.71.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.70.0...v3.71.0
1001
1014
  [3.70.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.69.0...v3.70.0
Binary file