@netless/window-manager 1.0.13-test.4 → 1.0.13-test.5
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.d.ts +1 -0
- package/dist/index.js +14 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +32 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/AppListener.ts +1 -1
- package/src/AppManager.ts +3 -3
- package/src/ContainerResizeObserver.ts +2 -0
- package/src/Utils/RoomHacker.ts +1 -1
- package/src/Utils/log.ts +2 -2
- package/src/View/MainView.ts +5 -4
- package/src/index.ts +21 -2
package/dist/index.d.ts
CHANGED
|
@@ -1317,6 +1317,7 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
|
1317
1317
|
private visibleStateListener;
|
|
1318
1318
|
static onCreate(manager: WindowManager): void;
|
|
1319
1319
|
static mount(params: MountParams, extendClass?: ExtendClass$1): Promise<WindowManager>;
|
|
1320
|
+
onMainViewScenePathChangeHandler: (scenePath: string) => void;
|
|
1320
1321
|
private static initManager;
|
|
1321
1322
|
private static initContainer;
|
|
1322
1323
|
static get registered(): Map<string, RegisterParams>;
|