@netless/window-manager 1.0.0-canary.47 → 1.0.0-canary.48
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 +2515 -3001
- package/dist/index.es.js +2538 -3024
- package/dist/index.umd.js +2507 -2993
- package/package.json +3 -3
- package/pnpm-lock.yaml +8 -8
- package/src/AppManager.ts +2 -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.48",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.cjs.js",
|
6
6
|
"module": "dist/index.es.js",
|
@@ -34,8 +34,8 @@
|
|
34
34
|
"value-enhancer": "^1.3.2"
|
35
35
|
},
|
36
36
|
"devDependencies": {
|
37
|
-
"@netless/app-docs-viewer": "^0.3.
|
38
|
-
"@netless/app-plyr": "0.2.
|
37
|
+
"@netless/app-docs-viewer": "^0.3.3",
|
38
|
+
"@netless/app-plyr": "0.2.2",
|
39
39
|
"@playwright/test": "^1.23.2",
|
40
40
|
"@rollup/plugin-commonjs": "^20.0.0",
|
41
41
|
"@rollup/plugin-node-resolve": "^13.0.4",
|
package/pnpm-lock.yaml
CHANGED
@@ -2,8 +2,8 @@ lockfileVersion: 5.4
|
|
2
2
|
|
3
3
|
specifiers:
|
4
4
|
'@juggle/resize-observer': ^3.3.1
|
5
|
-
'@netless/app-docs-viewer': ^0.3.
|
6
|
-
'@netless/app-plyr': 0.2.
|
5
|
+
'@netless/app-docs-viewer': ^0.3.3
|
6
|
+
'@netless/app-plyr': 0.2.2
|
7
7
|
'@netless/telebox-insider': 1.0.0-alpha.36
|
8
8
|
'@playwright/test': ^1.23.2
|
9
9
|
'@rollup/plugin-commonjs': ^20.0.0
|
@@ -54,8 +54,8 @@ dependencies:
|
|
54
54
|
value-enhancer: 1.3.2
|
55
55
|
|
56
56
|
devDependencies:
|
57
|
-
'@netless/app-docs-viewer': 0.3.
|
58
|
-
'@netless/app-plyr': 0.2.
|
57
|
+
'@netless/app-docs-viewer': 0.3.3
|
58
|
+
'@netless/app-plyr': 0.2.2
|
59
59
|
'@playwright/test': 1.23.2
|
60
60
|
'@rollup/plugin-commonjs': 20.0.0
|
61
61
|
'@rollup/plugin-node-resolve': 13.1.3
|
@@ -231,16 +231,16 @@ packages:
|
|
231
231
|
resolution: {integrity: sha512-6Wci+Tp3CgPt/B9B0a3J4s3yMgLNSku6w5TV6mN+61C71UqsRBv2FUibBf3tPGlNxebgPHMEUzKpb1ggE8KCKw==}
|
232
232
|
dev: true
|
233
233
|
|
234
|
-
/@netless/app-docs-viewer/0.3.
|
235
|
-
resolution: {integrity: sha512-
|
234
|
+
/@netless/app-docs-viewer/0.3.3:
|
235
|
+
resolution: {integrity: sha512-yrc79e4oPKSNRackRjupkNp3Qvhrk9rETCf03FL1GlnrSE+GKtoZStRF4D7L6/214Gh930qjaEAOSF9BvkabLg==}
|
236
236
|
dependencies:
|
237
237
|
remitter: 0.2.6
|
238
238
|
value-enhancer: 1.3.2
|
239
239
|
vanilla-lazyload: 17.8.2
|
240
240
|
dev: true
|
241
241
|
|
242
|
-
/@netless/app-plyr/0.2.
|
243
|
-
resolution: {integrity: sha512-
|
242
|
+
/@netless/app-plyr/0.2.2:
|
243
|
+
resolution: {integrity: sha512-bB/xQMMb7bUcr3SH7Sb7/orYyzoeWgADX8vQWNskvQuiX7uIvFHZSZSG2ld+Idmjiqjo7zU6L1bUMAMshLu5/g==}
|
244
244
|
dev: true
|
245
245
|
|
246
246
|
/@netless/canvas-polyfill/0.0.4:
|
package/src/AppManager.ts
CHANGED
@@ -473,7 +473,8 @@ export class AppManager {
|
|
473
473
|
this.appCreateQueue.emitReady();
|
474
474
|
}
|
475
475
|
let appsWithCreatedAt = appIds.map(appId => {
|
476
|
-
|
476
|
+
// 兼容 1.0 之前创建的应用
|
477
|
+
if (apps[appId].setup === true || apps[appId].setup === undefined) {
|
477
478
|
return {
|
478
479
|
id: appId,
|
479
480
|
createdAt: apps[appId].createdAt,
|