Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,8 @@
"@theoplayer/web-ui": "1.13.0",
"@theoplayer/react-ui": "1.13.0"
},
"changesets": []
"changesets": [
"giant-rats-bake",
"little-bars-talk"
]
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @theoplayer/web-ui

## 2.0.0-beta.0

### 💥 Breaking Changes

- Open Video UI for Web is now built using [Lit](https://lit.dev/).
- 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.
- For older browsers that don't support Custom Elements, we recommend loading our new polyfills library from `@theoplayer/web-ui/polyfills`.

## 1.16.0

### ✨ Features
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theoplayer/web-ui",
"version": "1.16.0",
"version": "2.0.0-beta.0",
"description": "UI component library for the THEOplayer Web SDK",
"main": "dist/THEOplayerUI.js",
"module": "dist/THEOplayerUI.mjs",
Expand Down
12 changes: 12 additions & 0 deletions react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @theoplayer/react-ui

## 2.0.0-beta.0

### 💥 Breaking Changes

- Open Video UI for Web is now built using [Lit](https://lit.dev/).
- This shouldn't affect any custom UIs or custom components built using Open Video UI for React.
- For older browsers that don't support Custom Elements, we recommend loading our new polyfills library from `@theoplayer/web-ui/polyfills`.

### 📦 Dependency Updates

- See changes to [Open Video UI for Web v2.0.0-beta.0](https://github.com/THEOplayer/web-ui/blob/%40theoplayer%2Fweb-ui%402.0.0-beta.0/CHANGELOG.md)

## 1.16.0

### ✨ Features
Expand Down
4 changes: 2 additions & 2 deletions react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@theoplayer/react-ui",
"version": "1.16.0",
"version": "2.0.0-beta.0",
"description": "React component library for the THEOplayer Web SDK",
"main": "dist/THEOplayerReactUI.js",
"module": "dist/THEOplayerReactUI.mjs",
Expand Down Expand Up @@ -52,7 +52,7 @@
},
"dependencies": {
"@lit/react": "^1.0.7",
"@theoplayer/web-ui": "^1.16.0"
"@theoplayer/web-ui": "^2.0.0-beta.0"
},
"peerDependencies": {
"@types/react": "^16.3.0 || ^17 || ^18",
Expand Down