@netless/window-manager 1.0.13-test.19 → 1.0.13-test.20
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 +12 -1
- package/dist/index.js +13 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +332 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Utils/Reactive.ts +2 -2
- package/src/View/MainView.ts +0 -1
- package/src/index.ts +430 -8
package/dist/index.d.ts
CHANGED
|
@@ -1329,10 +1329,21 @@ declare class WindowManager extends InvisiblePlugin<WindowMangerAttributes, any>
|
|
|
1329
1329
|
private _roomLogger?;
|
|
1330
1330
|
get Logger(): Logger | undefined;
|
|
1331
1331
|
constructor(context: InvisiblePluginContext);
|
|
1332
|
-
private visibleStateListener;
|
|
1333
1332
|
static onCreate(manager: WindowManager): void;
|
|
1334
1333
|
static mount(params: MountParams, extendClass?: ExtendClass$1): Promise<WindowManager>;
|
|
1335
1334
|
onMainViewScenePathChangeHandler: (scenePath: string) => void;
|
|
1335
|
+
logMainViewVisibilityDiagnostics(tag: string, scenePath?: string, mainViewElement?: HTMLDivElement | null): void;
|
|
1336
|
+
private emitMainViewVisibilityDiagnostic;
|
|
1337
|
+
private collectMainViewVisibilityDiagnostics;
|
|
1338
|
+
private collectElementChainDiagnostics;
|
|
1339
|
+
private collectImageDiagnostic;
|
|
1340
|
+
private appendRenderImpactIssues;
|
|
1341
|
+
private pickRenderRelevantFields;
|
|
1342
|
+
private pickBackgroundImageStatus;
|
|
1343
|
+
private collectElementDiagnostic;
|
|
1344
|
+
private describeElement;
|
|
1345
|
+
private serializeRect;
|
|
1346
|
+
private parseColorChannels;
|
|
1336
1347
|
private static initManager;
|
|
1337
1348
|
private static initContainer;
|
|
1338
1349
|
static get registered(): Map<string, RegisterParams>;
|