@netless/window-manager 0.4.51 → 0.4.53
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 -0
- package/dist/Cursor/index.d.ts +4 -1
- package/dist/index.cjs.js +11 -11
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +40 -13
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +11 -11
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/docs/export-pdf.md +3 -1
- package/package.json +2 -1
- package/src/Cursor/index.ts +40 -11
- package/src/style.css +1 -0
package/CHANGELOG.md
CHANGED
package/dist/Cursor/index.d.ts
CHANGED
@@ -31,14 +31,17 @@ export declare class CursorManager {
|
|
31
31
|
setMainViewDivElement(div: HTMLDivElement): void;
|
32
32
|
get boxState(): any;
|
33
33
|
get focusView(): View | undefined;
|
34
|
+
private mouseMoveListener_;
|
35
|
+
private mouseMoveTimer;
|
34
36
|
private mouseMoveListener;
|
37
|
+
private mouseLeaveListener;
|
38
|
+
private showPencilEraserIfNeeded;
|
35
39
|
private updateCursor;
|
36
40
|
private getPoint;
|
37
41
|
/**
|
38
42
|
* 因为窗口内框在不同分辨率下的大小不一样,所以这里通过来鼠标事件的 target 来判断是在主白板还是在 APP 中
|
39
43
|
*/
|
40
44
|
private getType;
|
41
|
-
private mouseLeaveListener;
|
42
45
|
updateContainerRect(): void;
|
43
46
|
deleteCursor(uid: string): void;
|
44
47
|
hideCursor(uid: string): void;
|