@netless/window-manager 0.4.11-canary.2 → 0.4.11
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/CHANGELOG.md +8 -5
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/PageState.ts +5 -5
- package/src/index.ts +6 -2
package/CHANGELOG.md
CHANGED
@@ -1,11 +1,14 @@
|
|
1
|
-
## 0.
|
2
|
-
|
3
|
-
1. 修复在同时调用多次 `addApp` 时, 先添加的课件不显示的问题
|
4
|
-
|
5
|
-
## 0.4.11 (canary)
|
1
|
+
## 0.4.11
|
6
2
|
|
7
3
|
1. 升级 `@netless/app-docs-viewer` 到 `0.2.8`
|
8
4
|
2. 同步注册的 url 的 src 到远端
|
5
|
+
3. 添加 `pageState` 和 `pageStateChange` 事件
|
6
|
+
4. 修复 manager 设置初始化 scenePath 错误的问题
|
7
|
+
5. 添加 `containerSizeRatio` 到 `manager` 实例
|
8
|
+
|
9
|
+
## 0.3.27
|
10
|
+
|
11
|
+
1. 修复在同时调用多次 `addApp` 时, 先添加的课件不显示的问题
|
9
12
|
|
10
13
|
## 0.4.10
|
11
14
|
|
package/dist/index.d.ts
CHANGED
@@ -115,6 +115,7 @@ export declare class WindowManager extends InvisiblePlugin<WindowMangerAttribute
|
|
115
115
|
private boxManager?;
|
116
116
|
private static params?;
|
117
117
|
private containerResizeObserver?;
|
118
|
+
containerSizeRatio: number;
|
118
119
|
constructor(context: InvisiblePluginContext);
|
119
120
|
static mount(params: MountParams): Promise<WindowManager>;
|
120
121
|
private static initManager;
|