@netless/window-manager 0.4.32 → 0.4.35
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 +15 -0
- package/dist/Helper.d.ts +2 -0
- package/dist/index.cjs.js +12 -12
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +32 -17
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/App/AppProxy.ts +4 -0
- package/src/AppManager.ts +1 -8
- package/src/Cursor/index.ts +1 -1
- package/src/Helper.ts +17 -1
- package/src/ReconnectRefresher.ts +9 -3
- package/src/index.ts +6 -12
- package/src/style.css +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,18 @@
|
|
1
|
+
## 0.4.35 (2022-07-06)
|
2
|
+
|
3
|
+
- 优化: 降低发送鼠标移动事件的频率
|
4
|
+
- 修复: 在 `writable` 进行切换的时候 `mainView` 的 `disableCameraTransform` 丢失
|
5
|
+
|
6
|
+
## 0.4.34 (2022-06-29)
|
7
|
+
|
8
|
+
- 修复: 重连之后 `app` 没有正确创建的问题
|
9
|
+
- 修复: `app` 创建之后初始化宽高没有同步的问题
|
10
|
+
|
11
|
+
## 0.4.33 (2022-06-29)
|
12
|
+
|
13
|
+
- 修复: 多人同时调用 `WindowManager.mount` 有概率出现错误的问题
|
14
|
+
- 修复: 只读用户的重连刷新问题
|
15
|
+
|
1
16
|
## 0.4.32 (2022-06-10)
|
2
17
|
|
3
18
|
- 功能: `WindowManager.mount` 添加 `applianceIcons` 选项配置光标使用的图片
|
package/dist/Helper.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { WindowManager } from "./index";
|
1
2
|
import type { Room } from "white-web-sdk";
|
2
3
|
export declare const setupWrapper: (root: HTMLElement) => {
|
3
4
|
playground: HTMLDivElement;
|
@@ -7,3 +8,4 @@ export declare const setupWrapper: (root: HTMLElement) => {
|
|
7
8
|
};
|
8
9
|
export declare const checkVersion: () => void;
|
9
10
|
export declare const findMemberByUid: (room: Room | undefined, uid: string) => import("white-web-sdk").RoomMember | undefined;
|
11
|
+
export declare const createInvisiblePlugin: (room: Room) => Promise<WindowManager | undefined>;
|