@netless/window-manager 1.0.19 → 1.0.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 +3 -0
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +140 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/App/AppBoxSizeSynchronizer.ts +1 -1
- package/src/App/AppProxy.ts +40 -1
- package/src/ContainerResizeObserver.ts +134 -4
- package/src/constants.ts +4 -0
- package/src/index.ts +13 -1
package/dist/index.d.ts
CHANGED
|
@@ -731,6 +731,7 @@ declare class AppProxy implements PageRemoveService {
|
|
|
731
731
|
private _pageState;
|
|
732
732
|
private _prevFullPath;
|
|
733
733
|
private boxSizeSynchronizer;
|
|
734
|
+
private setupWatchdogTimer?;
|
|
734
735
|
appResult?: NetlessApp<any>;
|
|
735
736
|
appContext?: AppContext<any, any>;
|
|
736
737
|
constructor(params: BaseInsertParams, manager: AppManager, appId: string, isAddApp: boolean);
|
|
@@ -751,6 +752,8 @@ declare class AppProxy implements PageRemoveService {
|
|
|
751
752
|
}>;
|
|
752
753
|
get box(): ReadonlyTeleBox | undefined;
|
|
753
754
|
private setupApp;
|
|
755
|
+
private runAppSetup;
|
|
756
|
+
private clearSetupWatchdog;
|
|
754
757
|
private fixMobileSize;
|
|
755
758
|
private afterSetupApp;
|
|
756
759
|
onSeek(time: number): Promise<void>;
|