@netless/window-manager 0.4.25 → 0.4.26

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 CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.4.26
2
+
3
+ 1. 修复 `app` 中 `pageStateChange` 事件被多次触发的问题
4
+ 2. 修复重连之后 `mainView` 显示错误的内容的问题
5
+
1
6
  ## 0.4.25
2
7
 
3
8
  1. 添加 `setContainerSizeRatio` 方法, 用于初始化后更新 `containerSizeRatio`
@@ -24,6 +24,7 @@ export declare class AppProxy {
24
24
  private status;
25
25
  private stateKey;
26
26
  private _pageState;
27
+ private _prevFullPath;
27
28
  appResult?: NetlessApp<any>;
28
29
  appContext?: AppContext<any, any>;
29
30
  constructor(params: BaseInsertParams, manager: AppManager, appId: string, isAddApp: boolean);
@@ -28,7 +28,8 @@ export declare type EmitterEvent = {
28
28
  observerIdChange: number;
29
29
  boxStateChange: string;
30
30
  playgroundSizeChange: DOMRect;
31
- onReconnected: void;
31
+ startReconnect: undefined;
32
+ onReconnected: undefined;
32
33
  removeScenes: string;
33
34
  cursorMove: CursorMovePayload;
34
35
  updateManagerRect: undefined;
@@ -13,6 +13,7 @@ export declare class MainViewProxy {
13
13
  ensureCameraAndSize(): void;
14
14
  private get mainViewCamera();
15
15
  private get mainViewSize();
16
+ private get didRelease();
16
17
  private moveCameraSizeByAttributes;
17
18
  start(): void;
18
19
  addCameraReaction: () => void;