@netless/window-manager 1.0.7-beta.9 → 1.0.9-beta.0
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 -2
- package/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -37
- package/dist/index.mjs.map +1 -1
- package/docs/api.md +3 -2
- package/docs/cn/api.md +1 -0
- package/package.json +1 -1
- package/src/AppListener.ts +19 -19
- package/src/AppManager.ts +11 -13
- package/src/index.ts +5 -2
package/dist/index.d.ts
CHANGED
|
@@ -974,8 +974,6 @@ declare class AppListeners {
|
|
|
974
974
|
private appResizeHandler;
|
|
975
975
|
private boxStateChangeHandler;
|
|
976
976
|
private setMainViewScenePathHandler;
|
|
977
|
-
private moveCameraHandler;
|
|
978
|
-
private moveCameraToContainHandler;
|
|
979
977
|
private cursorMoveHandler;
|
|
980
978
|
private rootDirRemovedHandler;
|
|
981
979
|
private refreshHandler;
|
|
@@ -1299,6 +1297,7 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
|
1299
1297
|
private _fullscreen?;
|
|
1300
1298
|
private _cursorUIDs;
|
|
1301
1299
|
private _cursorUIDsStyleDOM?;
|
|
1300
|
+
_appliancePlugin?: any;
|
|
1302
1301
|
private boxManager?;
|
|
1303
1302
|
private static params?;
|
|
1304
1303
|
static extendClass?: ExtendClass$1;
|