@netless/window-manager 0.4.29 → 0.4.30
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/CHANGELOG.md +7 -2
- package/dist/InternalEmitter.d.ts +1 -0
- package/dist/constants.d.ts +1 -0
- package/dist/index.cjs.js +12 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +41 -12
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/App/AppProxy.ts +5 -0
- package/src/AppManager.ts +20 -6
- package/src/InternalEmitter.ts +2 -1
- package/src/ReconnectRefresher.ts +18 -4
- package/src/constants.ts +1 -0
package/CHANGELOG.md
CHANGED
@@ -1,7 +1,12 @@
|
|
1
|
+
## 0.4.30 (2022-06-08)
|
2
|
+
|
3
|
+
- 重构: removePage 在 resolve 之后可以立即查询到正确的状态
|
4
|
+
- 修复: 重连后 app 创建错误
|
5
|
+
|
1
6
|
## 0.4.28-0.4.29 (2022-06-08)
|
2
7
|
|
3
|
-
-
|
4
|
-
- `removePage` `index` 参数变为可选,默认删除当前页
|
8
|
+
- 修复: `removePage` 可以删除最后一页的问题
|
9
|
+
- 重构: `removePage` `index` 参数变为可选,默认删除当前页
|
5
10
|
|
6
11
|
## 0.4.27 (2022-06-07)
|
7
12
|
|
package/dist/constants.d.ts
CHANGED
@@ -19,6 +19,7 @@ export declare enum Events {
|
|
19
19
|
InitMainViewCamera = "InitMainViewCamera"
|
20
20
|
}
|
21
21
|
export declare const MagixEventName = "__WindowManger";
|
22
|
+
export declare const EnsureReconnectEvent = "__WindowMangerEnsureReconnected__";
|
22
23
|
export declare enum AppAttributes {
|
23
24
|
Size = "size",
|
24
25
|
Position = "position",
|