@netless/window-manager 0.4.6 → 0.4.7
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 +4 -0
- package/dist/AppManager.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/docs/api.md +2 -2
- package/docs/migrate.md +6 -3
- package/package.json +1 -1
- package/src/AppManager.ts +14 -1
- package/src/index.ts +7 -5
package/CHANGELOG.md
CHANGED
package/dist/AppManager.d.ts
CHANGED
@@ -25,6 +25,7 @@ export declare class AppManager {
|
|
25
25
|
private callbacksNode;
|
26
26
|
private appCreateQueue;
|
27
27
|
constructor(windowManger: WindowManager);
|
28
|
+
private createRootDirScenesCallback;
|
28
29
|
private get eventName();
|
29
30
|
get attributes(): import("./index").WindowMangerAttributes;
|
30
31
|
get canOperate(): boolean;
|
package/dist/index.d.ts
CHANGED
@@ -138,7 +138,7 @@ export declare type CallbacksType = Emittery<PublicEvent>;
|
|
138
138
|
export declare const callbacks: CallbacksType;
|
139
139
|
export declare const reconnectRefresher: ReconnectRefresher;
|
140
140
|
export declare type AddPageParams = {
|
141
|
-
|
141
|
+
after?: boolean;
|
142
142
|
scene?: SceneDefinition;
|
143
143
|
};
|
144
144
|
export declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes> {
|