@player-ui/react 0.4.0-next.10 → 0.4.0-next.11
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/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +5 -5
- package/src/player.tsx +2 -2
package/dist/index.cjs.js
CHANGED
|
@@ -198,8 +198,8 @@ var __async$1 = (__this, __arguments, generator) => {
|
|
|
198
198
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
199
199
|
});
|
|
200
200
|
};
|
|
201
|
-
const WEB_PLAYER_VERSION = "0.4.0-next.
|
|
202
|
-
const COMMIT = "
|
|
201
|
+
const WEB_PLAYER_VERSION = "0.4.0-next.11";
|
|
202
|
+
const COMMIT = "843876eed97f2f08d6ade9a2d86984fc9e4bd916";
|
|
203
203
|
const _window = typeof window === "undefined" ? void 0 : window;
|
|
204
204
|
class ReactPlayer {
|
|
205
205
|
constructor(options) {
|
package/dist/index.esm.js
CHANGED
|
@@ -191,8 +191,8 @@ var __async$1 = (__this, __arguments, generator) => {
|
|
|
191
191
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
192
192
|
});
|
|
193
193
|
};
|
|
194
|
-
const WEB_PLAYER_VERSION = "0.4.0-next.
|
|
195
|
-
const COMMIT = "
|
|
194
|
+
const WEB_PLAYER_VERSION = "0.4.0-next.11";
|
|
195
|
+
const COMMIT = "843876eed97f2f08d6ade9a2d86984fc9e4bd916";
|
|
196
196
|
const _window = typeof window === "undefined" ? void 0 : window;
|
|
197
197
|
class ReactPlayer {
|
|
198
198
|
constructor(options) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@player-ui/react",
|
|
3
|
-
"version": "0.4.0-next.
|
|
3
|
+
"version": "0.4.0-next.11",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"react-dom": "^17.0.2"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@player-ui/player": "0.4.0-next.
|
|
15
|
-
"@player-ui/partial-match-registry": "0.4.0-next.
|
|
16
|
-
"@player-ui/metrics-plugin": "0.4.0-next.
|
|
17
|
-
"@player-ui/react-subscribe": "0.4.0-next.
|
|
14
|
+
"@player-ui/player": "0.4.0-next.11",
|
|
15
|
+
"@player-ui/partial-match-registry": "0.4.0-next.11",
|
|
16
|
+
"@player-ui/metrics-plugin": "0.4.0-next.11",
|
|
17
|
+
"@player-ui/react-subscribe": "0.4.0-next.11",
|
|
18
18
|
"react-error-boundary": "^3.1.3",
|
|
19
19
|
"tapable-ts": "^0.2.3",
|
|
20
20
|
"@babel/runtime": "7.15.4"
|
package/src/player.tsx
CHANGED
|
@@ -19,8 +19,8 @@ import type { ReactPlayerProps } from './app';
|
|
|
19
19
|
import PlayerComp from './app';
|
|
20
20
|
import OnUpdatePlugin from './plugins/onupdate-plugin';
|
|
21
21
|
|
|
22
|
-
const WEB_PLAYER_VERSION = '0.4.0-next.
|
|
23
|
-
const COMMIT = '
|
|
22
|
+
const WEB_PLAYER_VERSION = '0.4.0-next.11';
|
|
23
|
+
const COMMIT = '843876eed97f2f08d6ade9a2d86984fc9e4bd916';
|
|
24
24
|
|
|
25
25
|
export interface DevtoolsGlobals {
|
|
26
26
|
/** A global for a plugin to load to Player for devtools */
|