bitmovin-player-ui 3.72.0 → 3.74.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 (38) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +270 -72
  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/spatialnavigation/keymap.js +7 -9
  20. package/dist/js/framework/timeout.d.ts +15 -2
  21. package/dist/js/framework/timeout.js +28 -2
  22. package/dist/js/framework/uimanager.d.ts +2 -1
  23. package/dist/js/framework/uimanager.js +8 -0
  24. package/package.json +1 -1
  25. package/spec/components/selectbox.spec.ts +325 -0
  26. package/spec/components/settingspanel.spec.ts +74 -6
  27. package/spec/components/uicontainer.spec.ts +51 -5
  28. package/spec/helper/MockHelper.ts +10 -0
  29. package/spec/spatialnavigation/keymap.spec.ts +1 -1
  30. package/src/ts/components/component.ts +53 -12
  31. package/src/ts/components/container.ts +27 -1
  32. package/src/ts/components/selectbox.ts +142 -12
  33. package/src/ts/components/settingspanel.ts +14 -26
  34. package/src/ts/components/uicontainer.ts +25 -10
  35. package/src/ts/dom.ts +8 -6
  36. package/src/ts/spatialnavigation/keymap.ts +7 -9
  37. package/src/ts/timeout.ts +35 -2
  38. 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.74.0] - 2024-10-24
8
+
9
+ ### Changed
10
+ - Dpad keymap for Android devices
11
+
12
+ ## [3.73.0] - 2024-09-06
13
+
14
+ ### Added
15
+ - `Component` now has a `ViewMode` that can either be `Persistent` or `Temporary`
16
+
17
+ ### Fixed
18
+ - `selectbox` dropdown not closing in Safari when the UI is hidden
19
+
20
+ ### Changed
21
+ - `selectbox` now sets its `ViewMode` to `Persistent` whenever and as long as the select-dropdown is shown
22
+ - `uicontainer` and `settingspanel` will no longer auto-hide if there are any components that are in the `Persistent` view mode
23
+
7
24
  ## [3.72.0] - 2024-08-30
8
25
 
9
26
  ### Added
@@ -996,6 +1013,8 @@ Version 2.0 of the UI framework is built for player 7.1. If absolutely necessary
996
1013
  ## 1.0.0 (2017-02-03)
997
1014
  - First release
998
1015
 
1016
+ [3.74.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.73.0...v3.74.0
1017
+ [3.73.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.72.0...v3.73.0
999
1018
  [3.72.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.71.0...v3.72.0
1000
1019
  [3.71.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.70.0...v3.71.0
1001
1020
  [3.70.0]: https://github.com/bitmovin/bitmovin-player-ui/compare/v3.69.0...v3.70.0
Binary file