@hailin-zheng/editor-core 2.0.18 → 2.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.
@@ -37,6 +37,7 @@ export declare class DocumentEvent {
37
37
  }>;
38
38
  clickEvent: Subject<MouseEvent>;
39
39
  dblClickEvent: Subject<MouseEvent>;
40
+ tripleClickEvent: Subject<MouseEvent>;
40
41
  changeCursor: Subject<CursorType>;
41
42
  contextMenu: Subject<MouseEvent>;
42
43
  trackTipsChanged: Subject<{
@@ -242,5 +243,11 @@ export declare class DocumentEvent {
242
243
  * 开启打印区域
243
244
  */
244
245
  startPrintArea(editor: NodeCore): ICancelTokenFn;
246
+ clicks: number;
247
+ timeout: any;
248
+ /**
249
+ * 处理三击事件
250
+ */
251
+ handleTripleClick(): void;
245
252
  }
246
253
  export {};
@@ -72,6 +72,7 @@ export declare class DocumentProps extends INotifyPropertyChanged {
72
72
  createUserName: string;
73
73
  createDate: string;
74
74
  scripts: string;
75
+ columns: number;
75
76
  clone(dest: DocumentProps): DocumentProps;
76
77
  getSerializeProps(): any;
77
78
  }
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": "hailin-zheng",
5
5
  "private": false,
6
6
  "license": "ISC",
7
- "version": "2.0.18",
7
+ "version": "2.0.20",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "bwip-js": "^3.0.5",