@netless/window-manager 1.0.0-canary.65 → 1.0.0-canary.67
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.js +205 -202
- package/dist/index.mjs +205 -202
- package/dist/index.umd.js +205 -202
- package/package.json +2 -2
- package/pnpm-lock.yaml +4 -4
- package/src/App/AppContext.ts +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@netless/window-manager",
|
3
|
-
"version": "1.0.0-canary.
|
3
|
+
"version": "1.0.0-canary.67",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"module": "dist/index.mjs",
|
@@ -36,7 +36,7 @@
|
|
36
36
|
},
|
37
37
|
"devDependencies": {
|
38
38
|
"@netless/app-docs-viewer": "^1.0.0-canary.3",
|
39
|
-
"@netless/app-plyr": "^0.2.
|
39
|
+
"@netless/app-plyr": "^0.2.4",
|
40
40
|
"@playwright/test": "^1.23.2",
|
41
41
|
"@rollup/plugin-commonjs": "^20.0.0",
|
42
42
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
package/pnpm-lock.yaml
CHANGED
@@ -3,7 +3,7 @@ lockfileVersion: 5.4
|
|
3
3
|
specifiers:
|
4
4
|
'@juggle/resize-observer': ^3.3.1
|
5
5
|
'@netless/app-docs-viewer': ^1.0.0-canary.3
|
6
|
-
'@netless/app-plyr': ^0.2.
|
6
|
+
'@netless/app-plyr': ^0.2.4
|
7
7
|
'@netless/synced-store': ^2.0.7
|
8
8
|
'@netless/telebox-insider': 1.0.0-alpha.37
|
9
9
|
'@playwright/test': ^1.23.2
|
@@ -57,7 +57,7 @@ dependencies:
|
|
57
57
|
|
58
58
|
devDependencies:
|
59
59
|
'@netless/app-docs-viewer': 1.0.0-canary.3
|
60
|
-
'@netless/app-plyr': 0.2.
|
60
|
+
'@netless/app-plyr': 0.2.4
|
61
61
|
'@playwright/test': 1.23.2
|
62
62
|
'@rollup/plugin-commonjs': 20.0.0
|
63
63
|
'@rollup/plugin-node-resolve': 13.1.3
|
@@ -259,8 +259,8 @@ packages:
|
|
259
259
|
vanilla-lazyload: 17.8.3
|
260
260
|
dev: true
|
261
261
|
|
262
|
-
/@netless/app-plyr/0.2.
|
263
|
-
resolution: {integrity: sha512-
|
262
|
+
/@netless/app-plyr/0.2.4:
|
263
|
+
resolution: {integrity: sha512-PR2Os9ZoD2Q3K8aQYEsp8oupaYCNfEe6qQCIj2Fi80Mb8RINI1rxtkgZ1cToI9puePs00n7unu1leLO2c4M+HA==}
|
264
264
|
dev: true
|
265
265
|
|
266
266
|
/@netless/canvas-polyfill/0.0.4:
|
package/src/App/AppContext.ts
CHANGED
@@ -236,7 +236,7 @@ export class AppContext<TAttributes extends Record<string, any> = any, TMagixEve
|
|
236
236
|
const storage = new Storage({
|
237
237
|
plugin$,
|
238
238
|
isWritable$,
|
239
|
-
namespace
|
239
|
+
namespace: `${this.appId}:${namespace}`,
|
240
240
|
defaultState: defaultState
|
241
241
|
});
|
242
242
|
this.emitter.on("writableChange", writable => {
|