ht-emr 0.7.1 → 0.7.3
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/canvas-editor.js +7559 -6697
- package/dist/canvas-editor.umd.cjs +70 -71
- package/dist/src/editor/core/draw/Draw.d.ts +5 -0
- package/dist/src/editor/core/draw/control/Control.d.ts +0 -5
- package/dist/src/editor/core/draw/control/text/TextControl.d.ts +3 -1
- package/package.json +4 -9
- package/dist/canvas-editor.js.map +0 -1
- package/dist/canvas-editor.umd.cjs.map +0 -1
|
@@ -794,6 +794,11 @@ export declare class Draw {
|
|
|
794
794
|
getElementRowMargin(el: IElement): number;
|
|
795
795
|
computeRowList(payload: IComputeRowListPayload): IRow[];
|
|
796
796
|
private _collectTextControlValueSet;
|
|
797
|
+
/**
|
|
798
|
+
* 收集含有内容的文本/文本域控件ID集合(包括嵌套控件)
|
|
799
|
+
* 嵌套控件也算父控件的内容,应该隐藏父控件的placeholder
|
|
800
|
+
*/
|
|
801
|
+
private _collectTextControlHasContentSet;
|
|
797
802
|
private _computePageList;
|
|
798
803
|
private _drawHighlight;
|
|
799
804
|
validateNumber(value: any): boolean;
|
|
@@ -89,11 +89,6 @@ export declare class Control {
|
|
|
89
89
|
getPreControlContext(): INextControlContext | null;
|
|
90
90
|
getNextControlContext(): INextControlContext | null;
|
|
91
91
|
initNextControl(option?: IInitNextControlOption): void;
|
|
92
|
-
private getControlKey;
|
|
93
|
-
private getControlStartIndex;
|
|
94
|
-
private getControlEnterIndex;
|
|
95
|
-
private isNavigableControlElement;
|
|
96
|
-
private getOrderedNavigableControlContexts;
|
|
97
92
|
setMinWidthControlInfo(option: ISetControlRowFlexOption): void;
|
|
98
93
|
mergeControl(context?: IControlContext): IMergeControlContext;
|
|
99
94
|
}
|
|
@@ -18,9 +18,11 @@ export declare class TextControl implements IControlInstance {
|
|
|
18
18
|
removeNextControlElement(controlId: string, nextTdId?: string): IElement | undefined;
|
|
19
19
|
setValue(data: IElement[], context?: IControlContext, options?: IControlRuleOption): number;
|
|
20
20
|
private _removeControlPlaceholders;
|
|
21
|
+
private _removePlaceholdersByControl;
|
|
22
|
+
private _findNearestTextAncestorId;
|
|
21
23
|
clearValue(context?: IControlContext, options?: IControlRuleOption): number;
|
|
22
24
|
keydown(evt: KeyboardEvent): number | null;
|
|
23
25
|
cut(): number;
|
|
24
|
-
strikeout(options?: IRichtextOption):
|
|
26
|
+
strikeout(options?: IRichtextOption): number | null;
|
|
25
27
|
strikeoute(options?: IRichtextOption): void;
|
|
26
28
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "ht-emr",
|
|
3
3
|
"author": "swj",
|
|
4
4
|
"license": "MIT",
|
|
5
|
-
"version": "0.7.
|
|
5
|
+
"version": "0.7.3",
|
|
6
6
|
"description": "rich text editor by canvas/svg",
|
|
7
7
|
"publishConfig": {
|
|
8
8
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -14,9 +14,8 @@
|
|
|
14
14
|
"package.json"
|
|
15
15
|
],
|
|
16
16
|
"typings": "./dist/src/editor/index.d.ts",
|
|
17
|
-
"main": "./dist/canvas-editor.umd.
|
|
18
|
-
"module": "./dist/canvas-editor.
|
|
19
|
-
|
|
17
|
+
"main": "./dist/canvas-editor.umd.cjs",
|
|
18
|
+
"module": "./dist/canvas-editor.js",
|
|
20
19
|
"engines": {
|
|
21
20
|
"node": ">=16.9.1"
|
|
22
21
|
},
|
|
@@ -51,10 +50,6 @@
|
|
|
51
50
|
"vitepress": "1.0.0-beta.6",
|
|
52
51
|
"vue": "^3.2.45"
|
|
53
52
|
},
|
|
54
|
-
"dependencies": {
|
|
55
|
-
"moment": "^2.30.1",
|
|
56
|
-
"prismjs": "^1.27.0"
|
|
57
|
-
},
|
|
58
53
|
"simple-git-hooks": {
|
|
59
54
|
"pre-commit": "npm run lint && npm run type:check",
|
|
60
55
|
"commit-msg": "node scripts/verifyCommit.js"
|
|
@@ -70,4 +65,4 @@
|
|
|
70
65
|
"url": "https://github.com/sunwanj1999/ht-emr/issues"
|
|
71
66
|
},
|
|
72
67
|
"homepage": "https://github.com/sunwanj1999/ht-emr#readme"
|
|
73
|
-
}
|
|
68
|
+
}
|