@netless/window-manager 1.0.6-beta.0 → 1.0.6-beta.2
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 +7 -5
- package/dist/index.js +8 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/ExtendPluginManager.ts +6 -0
- package/src/index.ts +5 -0
package/dist/index.d.ts
CHANGED
@@ -1063,11 +1063,6 @@ declare class IframeBridge {
|
|
1063
1063
|
private get isDisableInput();
|
1064
1064
|
}
|
1065
1065
|
|
1066
|
-
declare const BuiltinApps: {
|
1067
|
-
DocsViewer: string;
|
1068
|
-
MediaPlayer: string;
|
1069
|
-
};
|
1070
|
-
|
1071
1066
|
interface ExtendContext {
|
1072
1067
|
readonly manager: ExtendPluginManager;
|
1073
1068
|
readonly windowManager: WindowManager;
|
@@ -1089,10 +1084,16 @@ declare class ExtendPluginManager {
|
|
1089
1084
|
private extends;
|
1090
1085
|
private context;
|
1091
1086
|
constructor(props: ExtendManagerOptions);
|
1087
|
+
hasRegister(kind: string): boolean;
|
1092
1088
|
use(extend: ExtendPluginInstance<any>): void;
|
1093
1089
|
destroy(): void;
|
1094
1090
|
}
|
1095
1091
|
|
1092
|
+
declare const BuiltinApps: {
|
1093
|
+
DocsViewer: string;
|
1094
|
+
MediaPlayer: string;
|
1095
|
+
};
|
1096
|
+
|
1096
1097
|
type WindowMangerAttributes = {
|
1097
1098
|
modelValue?: string;
|
1098
1099
|
boxState: TELE_BOX_STATE;
|
@@ -1364,6 +1365,7 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
1364
1365
|
private ensureAttributes;
|
1365
1366
|
private _iframeBridge?;
|
1366
1367
|
getIframeBridge(): IframeBridge;
|
1368
|
+
useExtendPlugin(extend: ExtendPluginInstance<any>): void;
|
1367
1369
|
}
|
1368
1370
|
|
1369
1371
|
export { type AddAppOptions, type AddAppParams, type AddPageParams, AppContext, AppCreateError, type AppEmitterEvent, type AppInitState, type AppListenerKeys, AppManagerNotInitError, AppNotRegisterError, type AppPayload, type AppSyncAttributes, type ApplianceIcons, type BaseInsertParams, BindContainerRoomPhaseInvalidError, BoxManagerNotFoundError, BoxNotCreatedError, BuiltinApps, type CursorMovePayload, type CursorOptions, DomEvents, type ExtendContext, type ExtendManagerOptions, ExtendPlugin, type ExtendPluginInstance, ExtendPluginManager, IframeBridge, type IframeBridgeAttributes, type IframeBridgeEvents, IframeEvents, type IframeSize, type InsertOptions, InvalidScenePath, type MountParams, type NetlessApp, type OnCreateInsertOption, type PageController, type PageRemoveService, type PageState, ParamsInvalidError, type PublicEvent, type RegisterEventData, type RegisterEvents, type RegisterParams, Storage, type StorageStateChangedEvent, type StorageStateChangedListener, WhiteWebSDKInvalidError, WindowManager, type WindowMangerAttributes, type apps, calculateNextIndex, reconnectRefresher, type setAppOptions };
|