@netless/window-manager 0.4.73-beta.1 → 0.4.73
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 +6 -2
- package/dist/index.js +14 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +137 -125
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -10
- package/src/App/AppContext.ts +1 -4
- package/src/App/AppProxy.ts +2 -7
- package/src/AppManager.ts +6 -19
- package/src/Cursor/Cursor.svelte +3 -1
- package/src/Cursor/Cursor.ts +1 -0
- package/src/Cursor/index.ts +1 -1
- package/src/View/MainView.ts +1 -4
- package/src/index.ts +26 -3
package/dist/index.d.ts
CHANGED
@@ -1151,7 +1151,7 @@ type MountParams = {
|
|
1151
1151
|
applianceIcons?: ApplianceIcons;
|
1152
1152
|
fullscreen?: boolean;
|
1153
1153
|
polling?: boolean;
|
1154
|
-
|
1154
|
+
supportAppliancePlugin?: boolean;
|
1155
1155
|
};
|
1156
1156
|
declare const reconnectRefresher: ReconnectRefresher;
|
1157
1157
|
declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any> implements PageController {
|
@@ -1163,7 +1163,7 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
1163
1163
|
static container?: HTMLElement;
|
1164
1164
|
static debug: boolean;
|
1165
1165
|
static containerSizeRatio: number;
|
1166
|
-
static
|
1166
|
+
static supportAppliancePlugin?: boolean;
|
1167
1167
|
private static isCreated;
|
1168
1168
|
private static _resolve;
|
1169
1169
|
version: string;
|
@@ -1177,6 +1177,8 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
1177
1177
|
isReplay: boolean;
|
1178
1178
|
private _pageState?;
|
1179
1179
|
private _fullscreen?;
|
1180
|
+
private _cursorUIDs;
|
1181
|
+
private _cursorUIDsStyleDOM?;
|
1180
1182
|
private boxManager?;
|
1181
1183
|
private static params?;
|
1182
1184
|
private containerResizeObserver?;
|
@@ -1260,6 +1262,8 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
1260
1262
|
setMaximized(maximized: boolean): void;
|
1261
1263
|
setMinimized(minimized: boolean): void;
|
1262
1264
|
setFullscreen(fullscreen: boolean): void;
|
1265
|
+
get cursorUIDs(): string[];
|
1266
|
+
setCursorUIDs(cursorUIDs?: string[] | null): void;
|
1263
1267
|
get mainView(): View;
|
1264
1268
|
get camera(): Camera;
|
1265
1269
|
get cameraState(): CameraState;
|