@player-ui/player 0.3.1-next.0 → 0.3.1-next.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/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/package.json +3 -3
- package/src/player.ts +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -4272,7 +4272,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4272
4272
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
4273
4273
|
});
|
|
4274
4274
|
};
|
|
4275
|
-
const PLAYER_VERSION = "0.3.1-next.
|
|
4275
|
+
const PLAYER_VERSION = "0.3.1-next.1";
|
|
4276
4276
|
const COMMIT = "b51603be07572111ca68e73d1b710ed2d0aa9412";
|
|
4277
4277
|
const _Player = class {
|
|
4278
4278
|
constructor(config) {
|
package/dist/index.esm.js
CHANGED
|
@@ -4259,7 +4259,7 @@ var __async = (__this, __arguments, generator) => {
|
|
|
4259
4259
|
step((generator = generator.apply(__this, __arguments)).next());
|
|
4260
4260
|
});
|
|
4261
4261
|
};
|
|
4262
|
-
const PLAYER_VERSION = "0.3.1-next.
|
|
4262
|
+
const PLAYER_VERSION = "0.3.1-next.1";
|
|
4263
4263
|
const COMMIT = "b51603be07572111ca68e73d1b710ed2d0aa9412";
|
|
4264
4264
|
const _Player = class {
|
|
4265
4265
|
constructor(config) {
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@player-ui/player",
|
|
3
|
-
"version": "0.3.1-next.
|
|
3
|
+
"version": "0.3.1-next.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org"
|
|
7
7
|
},
|
|
8
8
|
"peerDependencies": {},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@player-ui/partial-match-registry": "0.3.1-next.
|
|
11
|
-
"@player-ui/types": "0.3.1-next.
|
|
10
|
+
"@player-ui/partial-match-registry": "0.3.1-next.1",
|
|
11
|
+
"@player-ui/types": "0.3.1-next.1",
|
|
12
12
|
"dequal": "^2.0.2",
|
|
13
13
|
"p-defer": "^3.0.0",
|
|
14
14
|
"queue-microtask": "^1.2.3",
|
package/src/player.ts
CHANGED
|
@@ -30,7 +30,7 @@ import type {
|
|
|
30
30
|
import { NOT_STARTED_STATE } from './types';
|
|
31
31
|
|
|
32
32
|
// Variables injected at build time
|
|
33
|
-
const PLAYER_VERSION = '0.3.1-next.
|
|
33
|
+
const PLAYER_VERSION = '0.3.1-next.1';
|
|
34
34
|
const COMMIT = 'b51603be07572111ca68e73d1b710ed2d0aa9412';
|
|
35
35
|
|
|
36
36
|
export interface PlayerPlugin {
|