@theoplayer/web-ui 1.11.3 → 1.13.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 CHANGED
@@ -15,6 +15,15 @@ sidebar_custom_props: { 'icon': '📰' }
15
15
  > - 🏠 Internal
16
16
  > - 💅 Polish
17
17
 
18
+ ## v1.13.0 (2025-09-12)
19
+
20
+ - 🚀 Added support for THEOplayer 10.0. ([#112](https://github.com/THEOplayer/web-ui/pull/112))
21
+
22
+ ## v1.12.0 (2025-09-10)
23
+
24
+ - 🚀 Fill the entire window when fullscreen is not natively supported. ([#94](https://github.com/THEOplayer/web-ui/issues/94), [#110](https://github.com/THEOplayer/web-ui/pull/110))
25
+ - 🐛 Fix settings menu and subtitle options menu not displaying correctly on older smart TVs. ([#108](https://github.com/THEOplayer/web-ui/pull/108), [#109](https://github.com/THEOplayer/web-ui/pull/109))
26
+
18
27
  ## v1.11.3 (2025-07-22)
19
28
 
20
29
  - 🐛 Fix issue with the `<theoplayer-ad-clickthrough-button>` component that was triggering the error `Failed to execute 'createElement' on 'Document': The result must not have attributes` when loaded into a React application. ([#106](https://github.com/THEOplayer/web-ui/pull/106))
@@ -35,7 +44,7 @@ sidebar_custom_props: { 'icon': '📰' }
35
44
 
36
45
  ## v1.10.0 (2025-04-02)
37
46
 
38
- - 🚀 Added support for THEOplayer 9.0.
47
+ - 🚀 Added support for THEOplayer 9.0. ([#95](https://github.com/THEOplayer/web-ui/pull/95))
39
48
 
40
49
  ## v1.9.5 (2025-03-20)
41
50
 
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * THEOplayer Open Video UI for Web (v1.11.3)
2
+ * THEOplayer Open Video UI for Web (v1.13.0)
3
3
  * License: MIT
4
4
  */
5
5
  import { ChromelessPlayer, VideoQuality, THEOplayerError, MediaTrack, TextTrack, TextTracksList, EdgeStyle, VendorCast, CastState, PlayerConfiguration, SourceDescription } from 'theoplayer/chromeless';
@@ -25,6 +25,7 @@ declare enum Attribute {
25
25
  AUTOPLAY = "autoplay",
26
26
  MUTED = "muted",
27
27
  FULLSCREEN = "fullscreen",
28
+ FULLWINDOW = "fullwindow",
28
29
  FLUID = "fluid",
29
30
  DEVICE_TYPE = "device-type",
30
31
  MOBILE = "mobile",
@@ -1982,6 +1983,7 @@ declare class UIContainer extends HTMLElement {
1982
1983
  private readonly _onEnterFullscreen;
1983
1984
  private readonly _onExitFullscreen;
1984
1985
  private readonly _onFullscreenChange;
1986
+ private readonly _exitFullscreenOnEsc;
1985
1987
  private readonly _updateAspectRatio;
1986
1988
  private readonly _updateError;
1987
1989
  private readonly _onPlay;