@theoplayer/web-ui 1.15.0 → 1.16.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 +16 -0
- package/dist/THEOplayerUI.d.ts +5 -3
- package/dist/THEOplayerUI.es5.js +2 -2
- package/dist/THEOplayerUI.es5.mjs +2 -2
- package/dist/THEOplayerUI.js +5 -5
- package/dist/THEOplayerUI.js.map +1 -1
- package/dist/THEOplayerUI.mjs +5 -5
- package/dist/THEOplayerUI.mjs.map +1 -1
- package/dist/THEOplayerUI.node.mjs +3 -3
- package/dist/THEOplayerUI.node.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @theoplayer/web-ui
|
|
2
2
|
|
|
3
|
+
## 1.16.1
|
|
4
|
+
|
|
5
|
+
### 🐛 Issues
|
|
6
|
+
|
|
7
|
+
- Fixed a regression where menus would always fill the entire player on desktop (rather than opening as a small popup in the bottom right corner).
|
|
8
|
+
|
|
9
|
+
## 1.16.0
|
|
10
|
+
|
|
11
|
+
### ✨ Features
|
|
12
|
+
|
|
13
|
+
- Added `centered-chrome` slot to `<theoplayer-default-ui>` to replace all controls in the center of the player.
|
|
14
|
+
|
|
15
|
+
### 🐛 Issues
|
|
16
|
+
|
|
17
|
+
- Fixed an issue where buttons inside the default UI could accidentally be clicked even when they were hidden because of user inactivity.
|
|
18
|
+
|
|
3
19
|
## 1.15.0
|
|
4
20
|
|
|
5
21
|
### ✨ Features
|
package/dist/THEOplayerUI.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* THEOplayer Open Video UI for Web (v1.
|
|
2
|
+
* THEOplayer Open Video UI for Web (v1.16.1)
|
|
3
3
|
* License: MIT
|
|
4
4
|
*/
|
|
5
5
|
import { ChromelessPlayer, VideoQuality, THEOplayerError, MediaTrack, TextTrack, TextTracksList, EdgeStyle, VendorCast, CastState, UIPlayerConfiguration, SourceDescription } from 'theoplayer/chromeless';
|
|
@@ -1852,8 +1852,8 @@ declare const READY_EVENT: "theoplayerready";
|
|
|
1852
1852
|
* @slot `top-chrome` - A slot for controls at the top of the player.
|
|
1853
1853
|
* Can be used to display the stream's title, or for a cast button ({@link ChromecastButton | `<theoplayer-chromecast-button>`}).
|
|
1854
1854
|
* @slot `middle-chrome` - A slot for controls in the middle of the player (between the top and bottom chrome).
|
|
1855
|
-
* @slot `centered-chrome` - A slot for controls
|
|
1856
|
-
* @slot `centered-loading` - A slot for a loading indicator
|
|
1855
|
+
* @slot `centered-chrome` - A slot for controls in the center of the player, layered on top of other controls.
|
|
1856
|
+
* @slot `centered-loading` - A slot for a loading indicator in the center of the player, layered on top of other controls
|
|
1857
1857
|
* but behind the centered chrome.
|
|
1858
1858
|
* @slot `menu` - A slot for extra menus (see {@link Menu | `<theoplayer-menu>`}).
|
|
1859
1859
|
* @slot `error` - A slot for an error display, to show when the player encounters a fatal error
|
|
@@ -2086,6 +2086,8 @@ declare global {
|
|
|
2086
2086
|
*
|
|
2087
2087
|
* @slot `title` - A slot for the stream's title in the top control bar.
|
|
2088
2088
|
* @slot `top-control-bar` - A slot for extra UI controls in the top control bar.
|
|
2089
|
+
* @slot `centered-chrome` - A slot to replace the controls in the center of the player,
|
|
2090
|
+
* layered on top of other controls.
|
|
2089
2091
|
* @slot `bottom-control-bar` - A slot for extra UI controls in the bottom control bar.
|
|
2090
2092
|
* @slot `menu` - A slot for extra menus (see {@link Menu | `<theoplayer-menu>`}).
|
|
2091
2093
|
* @slot `error` - A slot for an error display, to show when the player encounters a fatal error.
|