@theoplayer/web-ui 1.11.0 → 1.11.1

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,11 @@ sidebar_custom_props: { 'icon': '📰' }
15
15
  > - 🏠 Internal
16
16
  > - 💅 Polish
17
17
 
18
+ ## v1.11.1 (2025-06-30)
19
+
20
+ - 🐛 Fix pressing `Enter` on TV remote triggering click twice. ([#101](https://github.com/THEOplayer/web-ui/pull/101))
21
+ - 🚀 Add `error` slot to default UI, to allow for a custom error display. ([#102](https://github.com/THEOplayer/web-ui/pull/102))
22
+
18
23
  ## v1.11.0 (2025-06-12)
19
24
 
20
25
  - 🚀 Add settings menu button to default UI. ([#99](https://github.com/THEOplayer/web-ui/pull/99))
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * THEOplayer Open Video UI for Web (v1.11.0)
2
+ * THEOplayer Open Video UI for Web (v1.11.1)
3
3
  * License: MIT
4
4
  */
5
5
  import { ChromelessPlayer, VideoQuality, THEOplayerError, MediaTrack, TextTrack, TextTracksList, EdgeStyle, VendorCast, CastState, PlayerConfiguration, SourceDescription } from 'theoplayer/chromeless';
@@ -2065,6 +2065,8 @@ declare global {
2065
2065
  * @slot `top-control-bar` - A slot for extra UI controls in the top control bar.
2066
2066
  * @slot `bottom-control-bar` - A slot for extra UI controls in the bottom control bar.
2067
2067
  * @slot `menu` - A slot for extra menus (see {@link Menu | `<theoplayer-menu>`}).
2068
+ * @slot `error` - A slot for an error display, to show when the player encounters a fatal error.
2069
+ * By default, this shows an {@link ErrorDisplay | `<theoplayer-error-display>`}.
2068
2070
  * @group Components
2069
2071
  */
2070
2072
  declare class DefaultUI extends HTMLElement {