@netless/window-manager 1.0.8 → 1.0.9
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 +2 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +10 -8
- 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 +2 -2
- package/src/AppManager.ts +11 -9
- package/src/index.ts +3 -0
package/dist/index.d.ts
CHANGED
|
@@ -1267,6 +1267,7 @@ type MountParams = {
|
|
|
1267
1267
|
applianceIcons?: ApplianceIcons;
|
|
1268
1268
|
fullscreen?: boolean;
|
|
1269
1269
|
polling?: boolean;
|
|
1270
|
+
/** 是否支持 appliance plugin */
|
|
1270
1271
|
supportAppliancePlugin?: boolean;
|
|
1271
1272
|
/** 是否使用 boxesStatus 状态管理窗口 */
|
|
1272
1273
|
useBoxesStatus?: boolean;
|
|
@@ -1297,6 +1298,7 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
|
1297
1298
|
private _fullscreen?;
|
|
1298
1299
|
private _cursorUIDs;
|
|
1299
1300
|
private _cursorUIDsStyleDOM?;
|
|
1301
|
+
_appliancePlugin?: any;
|
|
1300
1302
|
private boxManager?;
|
|
1301
1303
|
private static params?;
|
|
1302
1304
|
static extendClass?: ExtendClass$1;
|