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.
Files changed (39) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/artifact/artifact.tar.gz +0 -0
  3. package/dist/js/bitmovinplayer-ui.js +391 -112
  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/localization/i18n.js +2 -0
  19. package/dist/js/framework/localization/languages/nl.json +76 -0
  20. package/dist/js/framework/main.js +1 -1
  21. package/dist/js/framework/timeout.d.ts +15 -2
  22. package/dist/js/framework/timeout.js +28 -2
  23. package/dist/js/framework/uimanager.d.ts +2 -1
  24. package/dist/js/framework/uimanager.js +8 -0
  25. package/package.json +1 -1
  26. package/spec/components/selectbox.spec.ts +325 -0
  27. package/spec/components/settingspanel.spec.ts +74 -6
  28. package/spec/components/uicontainer.spec.ts +51 -5
  29. package/spec/helper/MockHelper.ts +10 -0
  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/localization/i18n.ts +3 -0
  37. package/src/ts/localization/languages/nl.json +76 -0
  38. package/src/ts/timeout.ts +35 -2
  39. 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
Binary file