@hailin-zheng/editor-core 2.1.11 → 2.1.12
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/index-cjs.js +179 -124
- package/index-cjs.js.map +1 -1
- package/index.js +174 -125
- package/index.js.map +1 -1
- package/med_editor/doc-editor.d.ts +11 -1
- package/med_editor/framework/document-change.d.ts +1 -1
- package/med_editor/framework/impl/index.d.ts +2 -0
- package/package.json +1 -1
package/index.js
CHANGED
@@ -2208,7 +2208,7 @@ class DataEleBaseProps extends INotifyPropertyChanged {
|
|
2208
2208
|
required;
|
2209
2209
|
printable;
|
2210
2210
|
secretBrowse;
|
2211
|
-
editable;
|
2211
|
+
editable = true;
|
2212
2212
|
deleteable;
|
2213
2213
|
minLength;
|
2214
2214
|
underline;
|
@@ -5212,7 +5212,7 @@ class SelectionRange {
|
|
5212
5212
|
}
|
5213
5213
|
else if (control instanceof BranchElement) {
|
5214
5214
|
if (offset > control.length) {
|
5215
|
-
|
5215
|
+
offset = control.length - 1;
|
5216
5216
|
}
|
5217
5217
|
if (offset === control.length) {
|
5218
5218
|
const child = control.getChild(offset - 1);
|
@@ -9994,6 +9994,103 @@ class RadioBoxRenderObject extends LeafRenderObject {
|
|
9994
9994
|
}
|
9995
9995
|
}
|
9996
9996
|
|
9997
|
+
/**
|
9998
|
+
* 强制分页符号
|
9999
|
+
*/
|
10000
|
+
class PageBreakElement extends LeafElement {
|
10001
|
+
textProps;
|
10002
|
+
constructor() {
|
10003
|
+
super('page-br');
|
10004
|
+
this.textProps = new TextProps();
|
10005
|
+
this.textProps.fontSize = 14;
|
10006
|
+
this.textProps.fontName = '宋体';
|
10007
|
+
this.textProps.color = '#1890ff';
|
10008
|
+
}
|
10009
|
+
createRenderObject() {
|
10010
|
+
const symbol = new PageBreakRenderObject(this);
|
10011
|
+
symbol.rect.height = 14;
|
10012
|
+
symbol.rect.width = 7;
|
10013
|
+
return symbol;
|
10014
|
+
}
|
10015
|
+
serialize() {
|
10016
|
+
return {
|
10017
|
+
type: 'page-br',
|
10018
|
+
props: {}
|
10019
|
+
};
|
10020
|
+
}
|
10021
|
+
clone() {
|
10022
|
+
const clone = new PageBreakElement();
|
10023
|
+
//clone.renderCtx = this.renderCtx;
|
10024
|
+
return clone;
|
10025
|
+
}
|
10026
|
+
}
|
10027
|
+
class PageBreakRenderObject extends LeafRenderObject {
|
10028
|
+
render(e) {
|
10029
|
+
const { render, position } = e;
|
10030
|
+
if (render.drawMode === 'print') {
|
10031
|
+
return;
|
10032
|
+
}
|
10033
|
+
render.contentContext.drawText('↩', this.element.textProps, position.x, position.y, 20, this.rect.height);
|
10034
|
+
}
|
10035
|
+
clone() {
|
10036
|
+
const render = new PageBreakRenderObject(this.element);
|
10037
|
+
render.rect = ElementUtil.cloneRect(this.rect);
|
10038
|
+
return render;
|
10039
|
+
}
|
10040
|
+
}
|
10041
|
+
class PageBreakFactory extends ElementFactory {
|
10042
|
+
match(type) {
|
10043
|
+
return type === 'page-br';
|
10044
|
+
}
|
10045
|
+
createElement(data) {
|
10046
|
+
return new PageBreakElement();
|
10047
|
+
}
|
10048
|
+
}
|
10049
|
+
|
10050
|
+
class TabElement extends LeafElement {
|
10051
|
+
constructor() {
|
10052
|
+
super('tab');
|
10053
|
+
}
|
10054
|
+
createRenderObject() {
|
10055
|
+
const symbol = new TabRenderObject(this);
|
10056
|
+
symbol.rect.height = 14;
|
10057
|
+
symbol.rect.width = 28;
|
10058
|
+
return symbol;
|
10059
|
+
}
|
10060
|
+
serialize() {
|
10061
|
+
return {
|
10062
|
+
type: 'tab',
|
10063
|
+
props: {}
|
10064
|
+
};
|
10065
|
+
}
|
10066
|
+
clone() {
|
10067
|
+
return new TabElement();
|
10068
|
+
}
|
10069
|
+
}
|
10070
|
+
class TabRenderObject extends LeafRenderObject {
|
10071
|
+
render(e) {
|
10072
|
+
const { render, position } = e;
|
10073
|
+
if (render.drawMode === 'print') {
|
10074
|
+
return;
|
10075
|
+
}
|
10076
|
+
//render.contentContext.fillRect(position.x,position.y,this.rect.width,this.rect.height,'red');
|
10077
|
+
}
|
10078
|
+
clone() {
|
10079
|
+
const render = new TabRenderObject(this.element);
|
10080
|
+
render.rect = ElementUtil.cloneRect(this.rect);
|
10081
|
+
return render;
|
10082
|
+
}
|
10083
|
+
}
|
10084
|
+
class TabFactory extends ElementFactory {
|
10085
|
+
match(type) {
|
10086
|
+
return type === 'tab';
|
10087
|
+
}
|
10088
|
+
createElement(data) {
|
10089
|
+
const ele = new TabElement();
|
10090
|
+
return ele;
|
10091
|
+
}
|
10092
|
+
}
|
10093
|
+
|
9997
10094
|
class ColumnPatchUtil {
|
9998
10095
|
static getPatchPacks(cols, splitCols) {
|
9999
10096
|
const oldLinePointMap = this.getLinePointMap(cols);
|
@@ -13945,50 +14042,6 @@ class DynamicContextParser {
|
|
13945
14042
|
}
|
13946
14043
|
}
|
13947
14044
|
|
13948
|
-
class TabElement extends LeafElement {
|
13949
|
-
constructor() {
|
13950
|
-
super('tab');
|
13951
|
-
}
|
13952
|
-
createRenderObject() {
|
13953
|
-
const symbol = new TabRenderObject(this);
|
13954
|
-
symbol.rect.height = 14;
|
13955
|
-
symbol.rect.width = 28;
|
13956
|
-
return symbol;
|
13957
|
-
}
|
13958
|
-
serialize() {
|
13959
|
-
return {
|
13960
|
-
type: 'tab',
|
13961
|
-
props: {}
|
13962
|
-
};
|
13963
|
-
}
|
13964
|
-
clone() {
|
13965
|
-
return new TabElement();
|
13966
|
-
}
|
13967
|
-
}
|
13968
|
-
class TabRenderObject extends LeafRenderObject {
|
13969
|
-
render(e) {
|
13970
|
-
const { render, position } = e;
|
13971
|
-
if (render.drawMode === 'print') {
|
13972
|
-
return;
|
13973
|
-
}
|
13974
|
-
//render.contentContext.fillRect(position.x,position.y,this.rect.width,this.rect.height,'red');
|
13975
|
-
}
|
13976
|
-
clone() {
|
13977
|
-
const render = new TabRenderObject(this.element);
|
13978
|
-
render.rect = ElementUtil.cloneRect(this.rect);
|
13979
|
-
return render;
|
13980
|
-
}
|
13981
|
-
}
|
13982
|
-
class TabFactory extends ElementFactory {
|
13983
|
-
match(type) {
|
13984
|
-
return type === 'tab';
|
13985
|
-
}
|
13986
|
-
createElement(data) {
|
13987
|
-
const ele = new TabElement();
|
13988
|
-
return ele;
|
13989
|
-
}
|
13990
|
-
}
|
13991
|
-
|
13992
14045
|
class ParagraphMeasure {
|
13993
14046
|
options;
|
13994
14047
|
renderCtx;
|
@@ -16340,59 +16393,6 @@ class DocumentPaint {
|
|
16340
16393
|
}
|
16341
16394
|
}
|
16342
16395
|
|
16343
|
-
/**
|
16344
|
-
* 强制分页符号
|
16345
|
-
*/
|
16346
|
-
class PageBreakElement extends LeafElement {
|
16347
|
-
textProps;
|
16348
|
-
constructor() {
|
16349
|
-
super('page-br');
|
16350
|
-
this.textProps = new TextProps();
|
16351
|
-
this.textProps.fontSize = 14;
|
16352
|
-
this.textProps.fontName = '宋体';
|
16353
|
-
this.textProps.color = '#1890ff';
|
16354
|
-
}
|
16355
|
-
createRenderObject() {
|
16356
|
-
const symbol = new PageBreakRenderObject(this);
|
16357
|
-
symbol.rect.height = 14;
|
16358
|
-
symbol.rect.width = 7;
|
16359
|
-
return symbol;
|
16360
|
-
}
|
16361
|
-
serialize() {
|
16362
|
-
return {
|
16363
|
-
type: 'page-br',
|
16364
|
-
props: {}
|
16365
|
-
};
|
16366
|
-
}
|
16367
|
-
clone() {
|
16368
|
-
const clone = new PageBreakElement();
|
16369
|
-
//clone.renderCtx = this.renderCtx;
|
16370
|
-
return clone;
|
16371
|
-
}
|
16372
|
-
}
|
16373
|
-
class PageBreakRenderObject extends LeafRenderObject {
|
16374
|
-
render(e) {
|
16375
|
-
const { render, position } = e;
|
16376
|
-
if (render.drawMode === 'print') {
|
16377
|
-
return;
|
16378
|
-
}
|
16379
|
-
render.contentContext.drawText('↩', this.element.textProps, position.x, position.y, 20, this.rect.height);
|
16380
|
-
}
|
16381
|
-
clone() {
|
16382
|
-
const render = new PageBreakRenderObject(this.element);
|
16383
|
-
render.rect = ElementUtil.cloneRect(this.rect);
|
16384
|
-
return render;
|
16385
|
-
}
|
16386
|
-
}
|
16387
|
-
class PageBreakFactory extends ElementFactory {
|
16388
|
-
match(type) {
|
16389
|
-
return type === 'page-br';
|
16390
|
-
}
|
16391
|
-
createElement(data) {
|
16392
|
-
return new PageBreakElement();
|
16393
|
-
}
|
16394
|
-
}
|
16395
|
-
|
16396
16396
|
const fontSize = 12;
|
16397
16397
|
const verPadding = 2;
|
16398
16398
|
/**
|
@@ -16606,6 +16606,9 @@ class ElementReader {
|
|
16606
16606
|
//this.viewOptions.viewSettings.width = this.viewOptions.docPageSettings.width + 10;
|
16607
16607
|
}
|
16608
16608
|
readElement(data) {
|
16609
|
+
if (typeof data === 'string') {
|
16610
|
+
data = JSON.parse(data);
|
16611
|
+
}
|
16609
16612
|
const type = data.type;
|
16610
16613
|
for (const factory of this.factories) {
|
16611
16614
|
if (factory.match(type)) {
|
@@ -19135,7 +19138,7 @@ class DocumentChange {
|
|
19135
19138
|
const dataEle = control.parent;
|
19136
19139
|
//空数据元,并且当前光标处于数据元开始位置
|
19137
19140
|
if (this.canDeleteInlineGroup(dataEle)) {
|
19138
|
-
this.
|
19141
|
+
this.setCursorForDeleteAction(dataEle);
|
19139
19142
|
dataEle.remove();
|
19140
19143
|
return;
|
19141
19144
|
}
|
@@ -19227,7 +19230,7 @@ class DocumentChange {
|
|
19227
19230
|
//空数据元,并且当前光标处于数据元开始位置
|
19228
19231
|
if (control.isPrefix) {
|
19229
19232
|
if (this.canDeleteInlineGroup(dataEle)) {
|
19230
|
-
this.
|
19233
|
+
this.setCursorForDeleteAction(dataEle);
|
19231
19234
|
dataEle.remove();
|
19232
19235
|
}
|
19233
19236
|
else {
|
@@ -19965,23 +19968,42 @@ class DocumentChange {
|
|
19965
19968
|
console.log('当前单元格列数不足以粘贴');
|
19966
19969
|
return;
|
19967
19970
|
}
|
19968
|
-
if (pasteTb.length > 1) {
|
19969
|
-
|
19970
|
-
|
19971
|
-
}
|
19972
|
-
const
|
19973
|
-
|
19974
|
-
const
|
19975
|
-
|
19976
|
-
|
19977
|
-
|
19978
|
-
|
19979
|
-
|
19971
|
+
// if (pasteTb.length > 1) {
|
19972
|
+
// console.log('当前单元格只能粘贴一行');
|
19973
|
+
// return;
|
19974
|
+
// }
|
19975
|
+
const range = new SelectionRange();
|
19976
|
+
if (pasteTb.length > targetTb.length - targetRow.getIndex()) {
|
19977
|
+
const addRows = pasteTb.length - (targetTb.length - targetRow.getIndex());
|
19978
|
+
for (let i = 0; i < addRows; i++) {
|
19979
|
+
targetTb.addChild(TableRowElement.createRow(targetTb.props.cols.length));
|
19980
|
+
}
|
19981
|
+
}
|
19982
|
+
for (let j = 0; j < pasteTb.length; j++) {
|
19983
|
+
const pasteRow = pasteTb.getChild(j);
|
19984
|
+
for (let i = 0; i < pasteRow.length; i++) {
|
19985
|
+
const pasteCell = pasteRow.getChild(i);
|
19986
|
+
const targetCell = targetTb.getChild(targetRow.getIndex() + j).getChild(colIndex + i);
|
19987
|
+
if (targetCell) {
|
19988
|
+
//选区开始位置
|
19989
|
+
if (j === 0 && i === 0) {
|
19990
|
+
range.setStart(targetCell, 0);
|
19991
|
+
range.setEnd(targetCell, -1);
|
19992
|
+
}
|
19993
|
+
else {
|
19994
|
+
range.setEnd(targetCell, -1);
|
19995
|
+
}
|
19996
|
+
targetCell.clearItems();
|
19997
|
+
ElementUtil.getChildrenElements(pasteCell).forEach(item => {
|
19998
|
+
targetCell.addChild(item.clone(true), -1);
|
19999
|
+
});
|
20000
|
+
}
|
20001
|
+
}
|
19980
20002
|
}
|
19981
20003
|
//设置选区
|
19982
|
-
const range = new SelectionRange();
|
19983
|
-
range.setStart(targetRow.getChild(colIndex), 0);
|
19984
|
-
range.setEnd(targetRow.getChild(colIndex + pasteRow.length - 1), -1);
|
20004
|
+
// const range = new SelectionRange();
|
20005
|
+
// range.setStart(targetRow.getChild(colIndex), 0);
|
20006
|
+
// range.setEnd(targetRow.getChild(colIndex + pasteRow.length - 1), -1);
|
19985
20007
|
this.selectionState.addRange(range);
|
19986
20008
|
}
|
19987
20009
|
insertSoftBr() {
|
@@ -20121,12 +20143,12 @@ class DocumentChange {
|
|
20121
20143
|
*/
|
20122
20144
|
removeEmptyText(text) {
|
20123
20145
|
//const nextLeafElementInPara = ElementUtil.getRecursionNextSiblingElement(text, true, true); getComputedStyle
|
20124
|
-
this.
|
20146
|
+
this.setCursorForDeleteAction(text);
|
20125
20147
|
const parent = text.parent;
|
20126
20148
|
text.remove();
|
20127
20149
|
this.removeEmtpyInlineBlock(parent);
|
20128
20150
|
}
|
20129
|
-
|
20151
|
+
setCursorForDeleteAction(control) {
|
20130
20152
|
const cursorInfo = this.getCursorElementByDeleteAction(control);
|
20131
20153
|
if (cursorInfo) {
|
20132
20154
|
this.selectionState.resetRange(cursorInfo.ele, cursorInfo.offset);
|
@@ -20138,10 +20160,19 @@ class DocumentChange {
|
|
20138
20160
|
getCursorElementByDeleteAction(control) {
|
20139
20161
|
if (this.viewOptions.docMode === DocMode.FormEdit) {
|
20140
20162
|
if (control.parent instanceof DataElementInlineGroup) {
|
20141
|
-
|
20142
|
-
|
20143
|
-
|
20144
|
-
|
20163
|
+
const prevLeafElementInPara = ElementUtil.getRecursionPrevSiblingElement(control, true, true, this.viewOptions);
|
20164
|
+
if (prevLeafElementInPara && ElementUtil.getParent(prevLeafElementInPara, item => item instanceof DataElementInlineGroup)) {
|
20165
|
+
return {
|
20166
|
+
ele: prevLeafElementInPara,
|
20167
|
+
offset: ElementUtil.getElementEndOffset(prevLeafElementInPara)
|
20168
|
+
};
|
20169
|
+
}
|
20170
|
+
else {
|
20171
|
+
return {
|
20172
|
+
ele: control.parent.startDecorate,
|
20173
|
+
offset: 1
|
20174
|
+
};
|
20175
|
+
}
|
20145
20176
|
}
|
20146
20177
|
}
|
20147
20178
|
const prevLeafElementInPara = ElementUtil.getRecursionPrevSiblingElement(control, false, true, this.viewOptions);
|
@@ -20308,7 +20339,7 @@ function createPrintTemplate({ width, height, orient }) {
|
|
20308
20339
|
white-space: pre;
|
20309
20340
|
}
|
20310
20341
|
@page {
|
20311
|
-
size: ${
|
20342
|
+
size: ${orient};
|
20312
20343
|
margin: 0;
|
20313
20344
|
}
|
20314
20345
|
div {
|
@@ -27929,6 +27960,20 @@ class DocEditor {
|
|
27929
27960
|
}
|
27930
27961
|
});
|
27931
27962
|
}
|
27963
|
+
/**
|
27964
|
+
* 将元素序列化为字符串,和serialize方法不同的是,该方法区别在于对留痕信息的处理
|
27965
|
+
* @param ele
|
27966
|
+
*/
|
27967
|
+
serializeString(ele) {
|
27968
|
+
return ElementSerialize.serializeString(ele);
|
27969
|
+
}
|
27970
|
+
/**
|
27971
|
+
* 将元素序列化为JSON对象,可进一步操作该对象序列化为JSON对象
|
27972
|
+
* @param ele
|
27973
|
+
*/
|
27974
|
+
serialize(ele) {
|
27975
|
+
return ElementSerialize.serialize(ele, this.viewOptions);
|
27976
|
+
}
|
27932
27977
|
/**
|
27933
27978
|
* 获取选区文本属性
|
27934
27979
|
* @returns
|
@@ -28210,6 +28255,10 @@ class DocEditor {
|
|
28210
28255
|
* @param ele
|
28211
28256
|
*/
|
28212
28257
|
insertNewElement(ele) {
|
28258
|
+
if (ele instanceof TableElement) {
|
28259
|
+
this.documentChange.insertTable(ele);
|
28260
|
+
return;
|
28261
|
+
}
|
28213
28262
|
const { startControl, startOffset } = this.selectionState;
|
28214
28263
|
this.insertElement(startControl, startOffset, [ele]);
|
28215
28264
|
}
|
@@ -28724,7 +28773,7 @@ class DocEditor {
|
|
28724
28773
|
rule.setRuleOptions({ width: this.viewOptions.docPageSettings.width, pagePL, pagePR, docLeft });
|
28725
28774
|
}
|
28726
28775
|
version() {
|
28727
|
-
return "2.1.
|
28776
|
+
return "2.1.12";
|
28728
28777
|
}
|
28729
28778
|
switchPageHeaderEditor() {
|
28730
28779
|
this.docCtx.document.switchPageHeaderEditor(this.selectionState, null);
|
@@ -28900,5 +28949,5 @@ function removeDuplicatesEvent(events) {
|
|
28900
28949
|
return arr;
|
28901
28950
|
}
|
28902
28951
|
|
28903
|
-
export { BlockContainerElement, BlockContainerRenderObject, BlockContentElement, BlockContentRenderObject, BlockLineRectRenderObject, BodyPartProps, BooleanEnum, BorderProps, BranchElement, BranchRenderObject, BreakElement, BreakFactory, BreakRenderObject, CheckBoxElement, CheckBoxFactory, CheckBoxProps, CheckBoxRenderObject, ColumnPatchUtil, CommContentBaseElement, CommContentBaseRenderObject, CommContentElement, CommContentProps, CommContentRenderObject, CommProps, CommentContentFactory, CommentElement, CommentFactory, CommentRenderObject, CommentsFactory, CommentsUtil, CommonUtil, CommsContainerElement, CommsContainerRenderObject, ContentMenuItem, ContextMenuElementEvent, DOMEventSource, DOMSubscription, DataDecorateElement, DataDecorateProps, DataDecorateRenderObject, DataEleBaseProps, DataEleBaseTextProps, DataEleCheckProps, DataEleDateProps, DataEleImageProps, DataEleListProps, DataEleMHProps, DataElementBarcode, DataElementBarcodeFactory, DataElementBarcodeProps, DataElementBarcodeRenderObject, DataElementBaseFactory, DataElementCheck, DataElementCheckFactory, DataElementCheckRenderObject, DataElementDate, DataElementDateFactory, DataElementDateRenderObject, DataElementGroupElement, DataElementGroupFactory, DataElementGroupProps, DataElementGroupRenderObject, DataElementImage, DataElementImgFactory, DataElementInlineGroup, DataElementLeaf, DataElementList, DataElementListFactory, DataElementListRenderObject, DataElementMH, DataElementMHFactory, DataElementRenderObject, DataElementText, DataElementTextFactory, DataElementTextRenderObject, DataImageRenderObject, DataRenderMH, DocEditor, DocMode, DocumentBodyElement, DocumentBodyFactory, DocumentBodyPartElement, DocumentBodyPartFactory, DocumentBodyPartRenderObject, DocumentBodyRenderObject, DocumentChange, DocumentCombine, DocumentComment, DocumentContainerRender, DocumentContext, DocumentCursor, DocumentElement, DocumentEvalFunc, DocumentEvent, DocumentFactory, DocumentFooterElement, DocumentFooterFactory, DocumentFooterRenderObject, DocumentHeaderElement, DocumentHeaderFactory, DocumentHeaderRenderObject, DocumentImagesBaseLoader, DocumentImagesLoader, DocumentInput, DocumentPaint, DocumentPrintOffscreen, DocumentPrintOffscreenBase, DocumentProps, DocumentRenderObject, DocumentSelection, DocumentTemplate, DropElementEvent, EditMode, EditorContext, Element, ElementEvent, ElementFactory, ElementPaint, ElementReader, ElementSerialize, ElementUtil, EventMap, EventSourceCore$1 as EventSourceCore, FillNullSpaceElement, FillNullSpaceRenderObject, GetTrackTipsEvent, GotCursorEvent, IDispose, INotifyPropertyChanged, InlineBlockContainer, InlineGroupElement, InlineGroupInputElement, InlineGroupRenderObject, InlineMuiltBlockLineRenderObject, InputElementEvent, IsInSideDataElement, IsInSideInlineGroupInputElement, KeyboradElementEvent, LeafElement, LeafRenderObject, LostCursorEvent, MarginProps, ModifyFlag$1 as ModifyFlag, MouseElementEvent, MousedownElementEvent, MuiltBlockLineRenderObject, OnceSubject, PSymbolElement, PSymbolRenderObject, PaddingProps, PageOptions, PaintContent, ParagraphElement, ParagraphFactory, ParagraphLineRectRenderObject, ParagraphNumberType, ParagraphProps, ParagraphRenderObject, PictureElement, PictureFactory, PictureProps, PictureRenderObject, RadioBoxElement, RadioBoxFactory, RadioBoxProps, RadioBoxRenderObject, RangeUtil, Rect, RenderContext, RenderObject, RenderObjectType, ResizeLeafRenderObject, RunElementFactory, SelectionOverlays, SelectionRange, SelectionState, Subject$1 as Subject, SubjectSubscription$1 as SubjectSubscription, Subscription$1 as Subscription, TableCellElement, TableCellFactory, TableCellProps, TableCellRenderObject, TableElement, TableFactory, TableProps, TableRenderObject, TableRowElement, TableRowFactory, TableRowProps, TableRowRenderObject, TableSplitCell, TableUtil, TextGroupElement, TextGroupFactory, TextGroupRenderObject, TextProps, TrackRunElement, TrackRunProps, TrackRunRenderObject, TrackRunTypeEnum, ValidateCondition, ValidateElement, ValidateProps, ValidateRenderObject, ViewOptions, clearChildrenRenderCache, clearTraces, createPrintTemplate, defaultParaHanging, deleteCurrentParagraph, docOpsMap, documentPrint, drawDecorator, elementTypeEventHandler, exportDecoratorHTML, falseChar, fontMapFunc, formatEle, fromEvent, generatePatch, getCalleeName, getFocusTextSegment, inputText, insertEle, invokeTypeHandler, isDate, logUpdateEleProps, objectToString$4 as objectToString, onTableContextmenu, onceTask, parser, printNodes, reactiveMap, removeEle, removeText, runTextLineRender, setChildrenModifyFlag, setDataElementProps, setNotifyChangedCallback, setTraceTrackingFlag, suppressTracking, targetMaps, textLineRenderMode, toRawType, toTypeString, trueChar, validateDataEle, validateDataEleRenderObj, validateInlineInputRenderObj, watchChanged };
|
28952
|
+
export { BlockContainerElement, BlockContainerRenderObject, BlockContentElement, BlockContentRenderObject, BlockLineRectRenderObject, BodyPartProps, BooleanEnum, BorderProps, BranchElement, BranchRenderObject, BreakElement, BreakFactory, BreakRenderObject, CheckBoxElement, CheckBoxFactory, CheckBoxProps, CheckBoxRenderObject, ColumnPatchUtil, CommContentBaseElement, CommContentBaseRenderObject, CommContentElement, CommContentProps, CommContentRenderObject, CommProps, CommentContentFactory, CommentElement, CommentFactory, CommentRenderObject, CommentsFactory, CommentsUtil, CommonUtil, CommsContainerElement, CommsContainerRenderObject, ContentMenuItem, ContextMenuElementEvent, DOMEventSource, DOMSubscription, DataDecorateElement, DataDecorateProps, DataDecorateRenderObject, DataEleBaseProps, DataEleBaseTextProps, DataEleCheckProps, DataEleDateProps, DataEleImageProps, DataEleListProps, DataEleMHProps, DataElementBarcode, DataElementBarcodeFactory, DataElementBarcodeProps, DataElementBarcodeRenderObject, DataElementBaseFactory, DataElementCheck, DataElementCheckFactory, DataElementCheckRenderObject, DataElementDate, DataElementDateFactory, DataElementDateRenderObject, DataElementGroupElement, DataElementGroupFactory, DataElementGroupProps, DataElementGroupRenderObject, DataElementImage, DataElementImgFactory, DataElementInlineGroup, DataElementLeaf, DataElementList, DataElementListFactory, DataElementListRenderObject, DataElementMH, DataElementMHFactory, DataElementRenderObject, DataElementText, DataElementTextFactory, DataElementTextRenderObject, DataImageRenderObject, DataRenderMH, DocEditor, DocMode, DocumentBodyElement, DocumentBodyFactory, DocumentBodyPartElement, DocumentBodyPartFactory, DocumentBodyPartRenderObject, DocumentBodyRenderObject, DocumentChange, DocumentCombine, DocumentComment, DocumentContainerRender, DocumentContext, DocumentCursor, DocumentElement, DocumentEvalFunc, DocumentEvent, DocumentFactory, DocumentFooterElement, DocumentFooterFactory, DocumentFooterRenderObject, DocumentHeaderElement, DocumentHeaderFactory, DocumentHeaderRenderObject, DocumentImagesBaseLoader, DocumentImagesLoader, DocumentInput, DocumentPaint, DocumentPrintOffscreen, DocumentPrintOffscreenBase, DocumentProps, DocumentRenderObject, DocumentSelection, DocumentTemplate, DropElementEvent, EditMode, EditorContext, Element, ElementEvent, ElementFactory, ElementPaint, ElementReader, ElementSerialize, ElementUtil, EventMap, EventSourceCore$1 as EventSourceCore, FillNullSpaceElement, FillNullSpaceRenderObject, GetTrackTipsEvent, GotCursorEvent, IDispose, INotifyPropertyChanged, InlineBlockContainer, InlineGroupElement, InlineGroupInputElement, InlineGroupRenderObject, InlineMuiltBlockLineRenderObject, InputElementEvent, IsInSideDataElement, IsInSideInlineGroupInputElement, KeyboradElementEvent, LeafElement, LeafRenderObject, LostCursorEvent, MarginProps, ModifyFlag$1 as ModifyFlag, MouseElementEvent, MousedownElementEvent, MuiltBlockLineRenderObject, OnceSubject, PSymbolElement, PSymbolRenderObject, PaddingProps, PageBreakElement, PageBreakFactory, PageBreakRenderObject, PageOptions, PaintContent, ParagraphElement, ParagraphFactory, ParagraphLineRectRenderObject, ParagraphNumberType, ParagraphProps, ParagraphRenderObject, PictureElement, PictureFactory, PictureProps, PictureRenderObject, RadioBoxElement, RadioBoxFactory, RadioBoxProps, RadioBoxRenderObject, RangeUtil, Rect, RenderContext, RenderObject, RenderObjectType, ResizeLeafRenderObject, RunElementFactory, SelectionOverlays, SelectionRange, SelectionState, Subject$1 as Subject, SubjectSubscription$1 as SubjectSubscription, Subscription$1 as Subscription, TabElement, TabFactory, TabRenderObject, TableCellElement, TableCellFactory, TableCellProps, TableCellRenderObject, TableElement, TableFactory, TableProps, TableRenderObject, TableRowElement, TableRowFactory, TableRowProps, TableRowRenderObject, TableSplitCell, TableUtil, TextGroupElement, TextGroupFactory, TextGroupRenderObject, TextProps, TrackRunElement, TrackRunProps, TrackRunRenderObject, TrackRunTypeEnum, ValidateCondition, ValidateElement, ValidateProps, ValidateRenderObject, ViewOptions, clearChildrenRenderCache, clearTraces, createPrintTemplate, defaultParaHanging, deleteCurrentParagraph, docOpsMap, documentPrint, drawDecorator, elementTypeEventHandler, exportDecoratorHTML, falseChar, fontMapFunc, formatEle, fromEvent, generatePatch, getCalleeName, getFocusTextSegment, inputText, insertEle, invokeTypeHandler, isDate, logUpdateEleProps, objectToString$4 as objectToString, onTableContextmenu, onceTask, parser, printNodes, reactiveMap, removeEle, removeText, runTextLineRender, setChildrenModifyFlag, setDataElementProps, setNotifyChangedCallback, setTraceTrackingFlag, suppressTracking, targetMaps, textLineRenderMode, toRawType, toTypeString, trueChar, validateDataEle, validateDataEleRenderObj, validateInlineInputRenderObj, watchChanged };
|
28904
28953
|
//# sourceMappingURL=index.js.map
|