@theoplayer/web-ui 2.0.0-beta.0 → 2.1.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 +29 -1
- package/README.md +2 -2
- package/dist/THEOplayerUI.d.ts +4 -2
- package/dist/THEOplayerUI.es5.js +1 -1
- package/dist/THEOplayerUI.es5.mjs +1 -1
- package/dist/THEOplayerUI.js +2 -2
- package/dist/THEOplayerUI.js.map +1 -1
- package/dist/THEOplayerUI.mjs +1 -1
- package/dist/THEOplayerUI.mjs.map +1 -1
- package/dist/THEOplayerUI.node.mjs +1 -1
- package/dist/THEOplayerUI.node.mjs.map +1 -1
- package/dist/THEOplayerUI.polyfills.js +1 -1
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# @theoplayer/web-ui
|
|
2
2
|
|
|
3
|
-
## 2.
|
|
3
|
+
## 2.1.0
|
|
4
|
+
|
|
5
|
+
### ✨ Features
|
|
6
|
+
|
|
7
|
+
- Added support for THEOplayer 11.x.
|
|
8
|
+
|
|
9
|
+
## 2.0.0
|
|
4
10
|
|
|
5
11
|
### 💥 Breaking Changes
|
|
6
12
|
|
|
@@ -8,6 +14,28 @@
|
|
|
8
14
|
- All components now extend [`LitElement`](https://lit.dev/docs/api/LitElement/) and use [reactive rendering](https://lit.dev/docs/components/rendering/), making it much easier to build custom UI components. While existing custom UI components should mostly continue to work, we highly recommend updating them to use a `render()` method instead.
|
|
9
15
|
- For older browsers that don't support Custom Elements, we recommend loading our new polyfills library from `@theoplayer/web-ui/polyfills`.
|
|
10
16
|
|
|
17
|
+
### ✨ Features
|
|
18
|
+
|
|
19
|
+
- Added settings menu to default UI.
|
|
20
|
+
|
|
21
|
+
## 1.16.3
|
|
22
|
+
|
|
23
|
+
### 🐛 Issues
|
|
24
|
+
|
|
25
|
+
- Improve labels for text tracks and audio tracks in the `<theoplayer-language-menu>`.
|
|
26
|
+
|
|
27
|
+
## 1.16.2
|
|
28
|
+
|
|
29
|
+
### 🐛 Issues
|
|
30
|
+
|
|
31
|
+
- Language names in the language menu are now capitalized according to that language's case mappings.
|
|
32
|
+
|
|
33
|
+
## 1.16.1
|
|
34
|
+
|
|
35
|
+
### 🐛 Issues
|
|
36
|
+
|
|
37
|
+
- 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).
|
|
38
|
+
|
|
11
39
|
## 1.16.0
|
|
12
40
|
|
|
13
41
|
### ✨ Features
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ the [THEOplayer Web SDK](https://www.theoplayer.com/product/theoplayer).
|
|
|
18
18
|
|
|
19
19
|
## Motivation
|
|
20
20
|
|
|
21
|
-
The current THEOplayer Web SDK comes with a built-in UI based on [video.js](https://github.com/videojs/video.js) through [the `Player` constructor](https://www.theoplayer.com/docs/theoplayer/
|
|
21
|
+
The current THEOplayer Web SDK comes with a built-in UI based on [video.js](https://github.com/videojs/video.js) through [the `Player` constructor](https://www.theoplayer.com/docs/theoplayer/v11/api-reference/web/classes/Player.html). This new UI aims to solve some limitations from the old approach:
|
|
22
22
|
|
|
23
23
|
- Designed with customization in mind. With the old UI, customizing anything beyond changing some text and icon colors was difficult, and could break in unpredictable ways when updating to a new THEOplayer version. With the new UI, all components can be customized in a variety of ways with well-documented attributes and CSS custom properties.
|
|
24
24
|
- Built for the modern web. The old UI was built at a time when Internet Explorer was still a major browser, so it couldn't use newer web technologies. The new UI breaks with the past and takes full advantage of Web Components, so it works well in modern web apps.
|
|
@@ -137,7 +137,7 @@ By default, Open Video UI for Web targets modern browsers that support modern Ja
|
|
|
137
137
|
On older browsers (such as Internet Explorer 11 and older smart TVs), you need to load a different version of the Open Video UI that uses older JavaScript syntax. You also need to load additional polyfills for missing features such as `Promise`, `Symbol.iterator` or Custom Elements:
|
|
138
138
|
|
|
139
139
|
- For ES2015 features like `Promise` and `Symbol.iterator`, we recommend [the Cloudflare mirror of Polyfill.io](https://cdnjs.cloudflare.com/polyfill/).
|
|
140
|
-
- For Custom Elements, we recommend loading our polyfill bundle from `@theoplayer/web-ui/polyfills`. Alternatively, you can load the [Web Components Polyfills](https://github.com/webcomponents/polyfills).
|
|
140
|
+
- For Custom Elements, we recommend loading our polyfill bundle from `@theoplayer/web-ui/polyfills`. Alternatively, you can load the [Web Components Polyfills](https://github.com/webcomponents/polyfills) along with [Lit's `polyfill-support` module](https://lit.dev/docs/v2/tools/requirements/#polyfills).
|
|
141
141
|
|
|
142
142
|
* Option 1: in your HTML. This uses [differential serving](https://css-tricks.com/differential-serving/) so modern browsers will load the modern build (with `type="module"`), while legacy browsers will load the legacy build (with `nomodule`).
|
|
143
143
|
|
package/dist/THEOplayerUI.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* THEOplayer Open Video UI for Web (v2.
|
|
2
|
+
* THEOplayer Open Video UI for Web (v2.1.0)
|
|
3
3
|
* License: MIT
|
|
4
4
|
*/
|
|
5
5
|
import * as lit from 'lit';
|
|
@@ -1220,6 +1220,7 @@ declare global {
|
|
|
1220
1220
|
declare class VolumeRange extends Range {
|
|
1221
1221
|
private _player;
|
|
1222
1222
|
constructor();
|
|
1223
|
+
connectedCallback(): void;
|
|
1223
1224
|
get player(): ChromelessPlayer | undefined;
|
|
1224
1225
|
set player(player: ChromelessPlayer | undefined);
|
|
1225
1226
|
private readonly _updateFromPlayer;
|
|
@@ -2153,5 +2154,6 @@ declare enum Attribute {
|
|
|
2153
2154
|
*/
|
|
2154
2155
|
declare const version: string;
|
|
2155
2156
|
|
|
2156
|
-
export { ActiveQualityDisplay, AdClickThroughButton, AdCountdown, AdDisplay, AdSkipButton, AirPlayButton, Attribute, Button,
|
|
2157
|
+
export { ActiveQualityDisplay, AdClickThroughButton, AdCountdown, AdDisplay, AdSkipButton, AirPlayButton, Attribute, Button, CastButton, ChromecastButton, ChromecastDisplay, CloseMenuButton, ColorStops, ControlBar, DefaultUI, DurationDisplay, ErrorDisplay, ExtensionSlot, FullscreenButton, GestureReceiver, LanguageMenu, LanguageMenuButton, LinkButton, LiveButton, LoadingIndicator, MediaTrackRadioButton, Menu, MenuButton, MenuGroup, MuteButton, PlayButton, PlaybackRateDisplay, PlaybackRateMenu, PlaybackRateMenuButton, PlaybackRateRadioGroup, PreviewThumbnail, PreviewTimeDisplay, QualityRadioButton, QualityRadioGroup, RadioButton, RadioGroup, Range, SeekButton, SettingsMenu, SettingsMenuButton, SlotContainer, StateReceiverMixin, THEOliveDefaultUI, TextTrackOffRadioButton, TextTrackRadioButton, TextTrackStyleDisplay, TextTrackStyleMenu, TextTrackStyleRadioGroup, TextTrackStyleResetButton, TimeDisplay, TimeRange, TrackRadioGroup, UIContainer, VolumeRange, buttonTemplate, linkButtonTemplate, menuGroupTemplate, menuTemplate, registerExtension, stateReceiver, version };
|
|
2158
|
+
export type { ButtonOptions, Constructor, DeviceType, Extension, MenuGroupOptions, MenuOptions, StateReceiverElement, StateReceiverPropertyMap, StreamType, TextTrackStyleMap, TextTrackStyleOption, TrackType, VolumeLevel };
|
|
2157
2159
|
export as namespace THEOplayerUI;
|