@hailin-zheng/editor-core 2.2.8 → 2.2.10

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.js CHANGED
@@ -1508,12 +1508,19 @@ class BranchElement extends Element {
1508
1508
  }
1509
1509
  return len;
1510
1510
  }
1511
- treeFilter(predicate) {
1511
+ treeFilter(predicate, options) {
1512
+ if (!options) {
1513
+ options = { includeChildren: true };
1514
+ }
1512
1515
  const items = [];
1513
1516
  for (let i = 0; i < this.length; i++) {
1514
1517
  const item = this.getChild(i);
1515
1518
  if (predicate(item)) {
1516
1519
  items.push(item);
1520
+ //已经匹配节点,不需要匹配当前元素的子节点
1521
+ if (!options.includeChildren) {
1522
+ continue;
1523
+ }
1517
1524
  }
1518
1525
  if (item instanceof BranchElement) {
1519
1526
  items.push(...item.treeFilter(predicate));
@@ -2841,15 +2848,7 @@ class ValidateProps {
2841
2848
  return clone;
2842
2849
  }
2843
2850
  }
2844
- class DataElementGroupProps extends DataEleBaseProps {
2845
- clone(dest) {
2846
- const clone = dest ?? new DataElementGroupProps();
2847
- super.cloneBaseProps(clone);
2848
- }
2849
- getSerializeProps(options) {
2850
- const props = {};
2851
- return this.getBaseProps(props, options);
2852
- }
2851
+ class DataElementGroupProps extends DataEleBaseTextProps {
2853
2852
  }
2854
2853
  class DataElementBarcodeProps {
2855
2854
  type = 'code128';
@@ -8618,6 +8617,61 @@ class DataElementDateFactory extends DataElementBaseFactory {
8618
8617
  }
8619
8618
  }
8620
8619
 
8620
+ class BreakElement extends LeafElement {
8621
+ textProps;
8622
+ constructor() {
8623
+ super('br');
8624
+ this.textProps = new TextProps();
8625
+ this.textProps.fontSize = 14;
8626
+ this.textProps.fontName = '宋体';
8627
+ this.textProps.color = '#595959';
8628
+ }
8629
+ createRenderObject() {
8630
+ const symbol = new BreakRenderObject(this);
8631
+ symbol.rect.height = 14;
8632
+ symbol.rect.width = 7;
8633
+ return symbol;
8634
+ }
8635
+ serialize() {
8636
+ return {
8637
+ type: 'br',
8638
+ props: {}
8639
+ };
8640
+ }
8641
+ clone() {
8642
+ const clone = new BreakElement();
8643
+ cloneElementBase(this, clone);
8644
+ return clone;
8645
+ }
8646
+ }
8647
+ class BreakRenderObject extends LeafRenderObject {
8648
+ exportSVG(event) {
8649
+ if (!event.options.showEnterSymbol || event.mode === 'print') {
8650
+ return null;
8651
+ }
8652
+ return ElementUtil.createSvgText('↓', { 'dominant-baseline': 'hanging',
8653
+ 'font-family': 'Courier',
8654
+ 'font-size': this.rect.height,
8655
+ x: this.rect.x + 4,
8656
+ y: this.rect.y,
8657
+ fill: 'green' });
8658
+ }
8659
+ clone() {
8660
+ const render = new BreakRenderObject(this.element);
8661
+ render.rect = ElementUtil.cloneRect(this.rect);
8662
+ return render;
8663
+ }
8664
+ }
8665
+ class BreakFactory extends ElementFactory {
8666
+ match(type) {
8667
+ return type === 'br';
8668
+ }
8669
+ createElement(data) {
8670
+ const ele = new BreakElement();
8671
+ return ele;
8672
+ }
8673
+ }
8674
+
8621
8675
  class DataElementGroupElement extends InlineGroupInputElement {
8622
8676
  constructor() {
8623
8677
  super('data-group');
@@ -8631,6 +8685,37 @@ class DataElementGroupElement extends InlineGroupInputElement {
8631
8685
  this.refreshView();
8632
8686
  });
8633
8687
  }
8688
+ setValue(val) {
8689
+ if (val === null || val === undefined) {
8690
+ val = '';
8691
+ }
8692
+ if (this.getValue() === val) {
8693
+ return;
8694
+ }
8695
+ this.pubOnChange('self');
8696
+ this.clearInnerItems();
8697
+ if (typeof val !== 'string') {
8698
+ val += '';
8699
+ }
8700
+ if (val) {
8701
+ const items = val.split('<br/>');
8702
+ if (items.length) {
8703
+ items.forEach((item, index) => {
8704
+ const valueText = new TextGroupElement();
8705
+ this.props.valueTextProps.clone(valueText.props);
8706
+ valueText.text = item + '';
8707
+ this.addChild(valueText, this.length - 1);
8708
+ if (index < items.length - 1) {
8709
+ const brElement = new BreakElement();
8710
+ this.addChild(brElement, this.length - 1);
8711
+ }
8712
+ });
8713
+ }
8714
+ }
8715
+ }
8716
+ getValue() {
8717
+ return ElementSerialize.serializeString(this, { all: false });
8718
+ }
8634
8719
  clone(data) {
8635
8720
  return super.cloneSelf(data, DataElementGroupElement);
8636
8721
  }
@@ -8666,9 +8751,33 @@ class DataElementGroupFactory extends DataElementBaseFactory {
8666
8751
  createElement(data) {
8667
8752
  const props = data.props;
8668
8753
  const ele = new DataElementGroupElement();
8669
- ElementUtil.readEleBaseProps(ele.props, props);
8754
+ this.createDataEleProps(ele.props, props);
8670
8755
  return ele;
8671
8756
  }
8757
+ createDataEleProps(dest, props) {
8758
+ const dataEleProps = dest;
8759
+ ElementUtil.readEleBaseProps(dataEleProps, props);
8760
+ dataEleProps.nullText = props.nullText;
8761
+ dataEleProps.nullTextProps = ElementUtil.readTextProps(null, props.nullTextProps, this.options);
8762
+ dataEleProps.valueTextProps = ElementUtil.readTextProps(null, props.valueTextProps, this.options);
8763
+ dataEleProps.dataType = props.dataType;
8764
+ return dataEleProps;
8765
+ }
8766
+ }
8767
+ /**
8768
+ * 是否在数据组内部
8769
+ * @param control
8770
+ * @param offset
8771
+ */
8772
+ function IsInSideDataGroup(control, offset) {
8773
+ const mathEle = ElementUtil.getParent(control, (item) => item instanceof DataElementGroupElement);
8774
+ if (mathEle) {
8775
+ if ((control === mathEle.startDecorate && offset === 0) || (control === mathEle.endDecorate && offset === 1)) {
8776
+ return false;
8777
+ }
8778
+ return true;
8779
+ }
8780
+ return false;
8672
8781
  }
8673
8782
 
8674
8783
  class DataElementImage extends DataElementLeaf {
@@ -8910,61 +9019,6 @@ class DataElementListFactory extends DataElementBaseFactory {
8910
9019
  }
8911
9020
  }
8912
9021
 
8913
- class BreakElement extends LeafElement {
8914
- textProps;
8915
- constructor() {
8916
- super('br');
8917
- this.textProps = new TextProps();
8918
- this.textProps.fontSize = 14;
8919
- this.textProps.fontName = '宋体';
8920
- this.textProps.color = '#595959';
8921
- }
8922
- createRenderObject() {
8923
- const symbol = new BreakRenderObject(this);
8924
- symbol.rect.height = 14;
8925
- symbol.rect.width = 7;
8926
- return symbol;
8927
- }
8928
- serialize() {
8929
- return {
8930
- type: 'br',
8931
- props: {}
8932
- };
8933
- }
8934
- clone() {
8935
- const clone = new BreakElement();
8936
- cloneElementBase(this, clone);
8937
- return clone;
8938
- }
8939
- }
8940
- class BreakRenderObject extends LeafRenderObject {
8941
- exportSVG(event) {
8942
- if (!event.options.showEnterSymbol || event.mode === 'print') {
8943
- return null;
8944
- }
8945
- return ElementUtil.createSvgText('↓', { 'dominant-baseline': 'hanging',
8946
- 'font-family': 'Courier',
8947
- 'font-size': this.rect.height,
8948
- x: this.rect.x + 4,
8949
- y: this.rect.y,
8950
- fill: 'green' });
8951
- }
8952
- clone() {
8953
- const render = new BreakRenderObject(this.element);
8954
- render.rect = ElementUtil.cloneRect(this.rect);
8955
- return render;
8956
- }
8957
- }
8958
- class BreakFactory extends ElementFactory {
8959
- match(type) {
8960
- return type === 'br';
8961
- }
8962
- createElement(data) {
8963
- const ele = new BreakElement();
8964
- return ele;
8965
- }
8966
- }
8967
-
8968
9022
  class DataElementText extends DataElementInlineGroup {
8969
9023
  //props: DataEleBaseTextProps;
8970
9024
  constructor() {
@@ -12456,6 +12510,14 @@ class ElementUtil {
12456
12510
  static getDataElement(ele) {
12457
12511
  return this.getParent(ele, item => item instanceof DataElementInlineGroup);
12458
12512
  }
12513
+ /**
12514
+ * 向上查找类型为数据元的父级
12515
+ * @param ele
12516
+ * @returns
12517
+ */
12518
+ static getDataGroupElement(ele) {
12519
+ return this.getParent(ele, item => item instanceof DataElementGroupElement);
12520
+ }
12459
12521
  static getOSPlatform() {
12460
12522
  const userAgent = navigator.userAgent;
12461
12523
  if (userAgent.indexOf('Windows') > -1) {
@@ -12604,23 +12666,35 @@ class ElementUtil {
12604
12666
  if (startControl.paintRenders.length === 0) {
12605
12667
  return false;
12606
12668
  }
12669
+ if (!ElementUtil.verifyHitable(startControl)) {
12670
+ return false;
12671
+ }
12607
12672
  if (viewOptions.docMode === DocMode.Design) {
12608
12673
  return true;
12609
12674
  }
12610
- //表单模式下,如果不在数据元素中,则不显示光标
12675
+ //表单模式下
12611
12676
  if (viewOptions.docMode === DocMode.FormEdit) {
12612
- if (!IsInSideDataElement(startControl, startOffset)) {
12613
- return false;
12677
+ //如果光标在数据元素中,判断是否可编辑
12678
+ if (IsInSideDataElement(startControl, startOffset)) {
12679
+ const dataEle = ElementUtil.getDataElement(startControl);
12680
+ //数据元不可编辑
12681
+ if (dataEle && !dataEle.props.editable) {
12682
+ return false;
12683
+ }
12684
+ return true;
12614
12685
  }
12615
- }
12616
- if (!ElementUtil.verifyHitable(startControl)) {
12617
- return false;
12618
- }
12619
- //表单模式下,数据元不可编辑
12620
- if (viewOptions.docMode === DocMode.FormEdit && IsInSideDataElement(startControl, startOffset)) {
12621
- const dataEle = ElementUtil.getDataElement(startControl);
12622
- if (dataEle && !dataEle.props.editable) {
12623
- return false;
12686
+ else {
12687
+ //不在数据元中,需要判断是否在数据组中
12688
+ if (IsInSideDataGroup(startControl, startOffset)) {
12689
+ const dataGroup = ElementUtil.getDataGroupElement(startControl);
12690
+ //数据元不可编辑
12691
+ if (dataGroup && !dataGroup.props.editable) {
12692
+ return false;
12693
+ }
12694
+ }
12695
+ else {
12696
+ return false;
12697
+ }
12624
12698
  }
12625
12699
  }
12626
12700
  return true;
@@ -13303,8 +13377,8 @@ class DocumentContext {
13303
13377
  const dataEleList = this.ctx.treeFilter(item => validateDataEle(item));
13304
13378
  return dataEleList.map(item => item.props.id);
13305
13379
  }
13306
- getControlInstanceList() {
13307
- return this.ctx.treeFilter(item => validateDataEle(item));
13380
+ getControlInstanceList(options) {
13381
+ return this.ctx.treeFilter(item => validateDataEle(item), options);
13308
13382
  }
13309
13383
  getControlById(id) {
13310
13384
  return this.ctx.treeFind(item => validateDataEle(item) && item['props']['id'] === id);
@@ -13327,8 +13401,9 @@ class DocumentContext {
13327
13401
  * 获取数据元结构以及get\set闭包调用函数
13328
13402
  * @returns
13329
13403
  */
13330
- getDataElementModelList() {
13331
- const dataEleList = this.ctx.treeFilter(item => validateDataEle(item) || item instanceof DataElementInlineGroup);
13404
+ getDataElementModelList(options) {
13405
+ const dataEleList = this.ctx.treeFilter(item => validateDataEle(item), options);
13406
+ //数据元、数据组
13332
13407
  const dataInlineGroups = dataEleList.filter(item => item instanceof DataElementInlineGroup);
13333
13408
  const dataLeafs = dataEleList.filter(item => item instanceof DataElementLeaf);
13334
13409
  //复选框数据元
@@ -13337,7 +13412,7 @@ class DocumentContext {
13337
13412
  const dataOtherLeafValues = CommonUtil.removeUnionSet(dataLeafs, dataCheckList).map(item => ({
13338
13413
  id: item.props.id,
13339
13414
  name: item.props.name,
13340
- fieldName: item.props.field,
13415
+ fieldName: item.props.fieldName,
13341
13416
  item,
13342
13417
  getValue: () => {
13343
13418
  return item.getValue();
@@ -17461,8 +17536,12 @@ class DocumentChange {
17461
17536
  * @private
17462
17537
  */
17463
17538
  canDeleteInlineGroup(dataEle) {
17539
+ //当前编辑模式为表单模式,单独的数据元不可删除
17540
+ //存在于数据组内的数据元可以删除
17464
17541
  if (this.viewOptions.docMode === DocMode.FormEdit) {
17465
- return false;
17542
+ if (dataEle.parent.type !== 'data-group') {
17543
+ return false;
17544
+ }
17466
17545
  }
17467
17546
  return dataEle.length === 2;
17468
17547
  }
@@ -18392,9 +18471,13 @@ class DocumentChange {
18392
18471
  }
18393
18472
  getCursorElementByDeleteAction(control) {
18394
18473
  if (this.viewOptions.docMode === DocMode.FormEdit) {
18395
- if (control.parent instanceof DataElementInlineGroup) {
18474
+ //是否属于数据元或者数据组区域
18475
+ const isInDataAre = (ele) => {
18476
+ return ele.parent instanceof DataElementInlineGroup || ele.parent instanceof DataElementGroupElement;
18477
+ };
18478
+ if (isInDataAre(control)) {
18396
18479
  const prevLeafElementInPara = ElementUtil.getRecursionPrevSiblingElement(control, true, true, this.viewOptions);
18397
- if (prevLeafElementInPara && ElementUtil.getParent(prevLeafElementInPara, item => item instanceof DataElementInlineGroup)) {
18480
+ if (prevLeafElementInPara && isInDataAre(prevLeafElementInPara)) {
18398
18481
  return {
18399
18482
  ele: prevLeafElementInPara,
18400
18483
  offset: ElementUtil.getElementEndOffset(prevLeafElementInPara)
@@ -18402,7 +18485,7 @@ class DocumentChange {
18402
18485
  }
18403
18486
  else {
18404
18487
  return {
18405
- ele: control.parent.startDecorate,
18488
+ ele: (control.parent).startDecorate,
18406
18489
  offset: 1
18407
18490
  };
18408
18491
  }
@@ -20875,7 +20958,7 @@ class DocEditor {
20875
20958
  this.onDblClickEvent.next(evt);
20876
20959
  }
20877
20960
  /**
20878
- * 获取当前光标所在的数据元
20961
+ * 获取当前光标所在的数据元或者数据组
20879
20962
  * @returns
20880
20963
  */
20881
20964
  getCurrentDataElement() {
@@ -21914,7 +21997,7 @@ class DocEditor {
21914
21997
  rule.setRuleOptions({ width: this.viewOptions.docPageSettings.width, pagePL, pagePR, docLeft });
21915
21998
  }
21916
21999
  version() {
21917
- return "2.2.8";
22000
+ return "2.2.10";
21918
22001
  }
21919
22002
  switchPageHeaderEditor() {
21920
22003
  this.docCtx.document.switchPageHeaderEditor(this.selectionState, null);
@@ -27633,5 +27716,5 @@ function removeDuplicatesEvent(events) {
27633
27716
  return arr;
27634
27717
  }
27635
27718
 
27636
- 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, CommonUtil, CommsContainerElement, CommsContainerRenderObject, ContentMenuItem, ContextMenuElementEvent, CopyElementEvent, DOMEventSource, DOMSubscription, DataContainerElement, DataContainerFactory, DataContainerProps, DataContainerRenderObject, 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, DocInputSuggestions, DocMode, DocumentBodyElement, DocumentBodyFactory, DocumentBodyPartElement, DocumentBodyPartFactory, DocumentBodyPartRenderObject, DocumentBodyRenderObject, DocumentChange, DocumentCombine, DocumentComment, DocumentContainerRender, DocumentContext, DocumentCursor, DocumentElement, DocumentEvalFunc, DocumentEvent, DocumentFactory, DocumentFooterElement, DocumentFooterFactory, DocumentFooterRenderObject, DocumentHeaderElement, DocumentHeaderFactory, DocumentHeaderRenderObject, DocumentInput, DocumentPaginator, DocumentPrintOffscreen, DocumentPrintOffscreenBase, DocumentProps, DocumentRenderObject, DocumentSelection, DocumentTemplate, DropElementEvent, EditMode, EditorContext, Element, ElementEvent, ElementFactory, ElementReader, ElementSerialize, ElementUtil, EventBus, EventMap, EventSourceCore, FillNullSpaceElement, FillNullSpaceRenderObject, GetTrackTipsEvent, GotCursorEvent, IDispose, INotifyPropertyChanged, InlineBlockContainer, InlineGroupElement, InlineGroupInputElement, InlineGroupRenderObject, InlineMuiltBlockLineRenderObject, InputElementEvent, IsInSideDataElement, IsInSideInlineGroupInputElement, KeyboradElementEvent, LeafElement, LeafRenderObject, LostCursorEvent, MarginProps, ModifyFlag, MouseElementEvent, MousedownElementEvent, MultiBlockLineRenderObject, OnceSubject, PSymbolElement, PSymbolRenderObject, PaddingProps, PageBreakElement, PageBreakFactory, PageBreakRenderObject, PageOptions, PaintContent, ParagraphElement, ParagraphFactory, ParagraphLineRectRenderObject, ParagraphNumberType, ParagraphProps, ParagraphRenderObject, PasteElementEvent, PermanentTeethElement, PermanentTeethFactory, PermanentTeethProps, PermanentTeethRenderObject, PictureElement, PictureFactory, PictureProps, PictureRenderObject, RadioBoxElement, RadioBoxFactory, RadioBoxProps, RadioBoxRenderObject, RangeUtil, Rect, RenderContext, RenderObject, RenderObjectType, ResizeLeafRenderObject, RowMinHeight, RunElementFactory, SVGElement, SVGFactory, SVGProps, SVGRenderObject, SelectionOverlays, SelectionRange, SelectionState, Subject, SubjectSubscription, Subscription, TEXT_HEIGHT_FACTOR, TabElement, TabFactory, TabRenderObject, TableCellElement, TableCellFactory, TableCellProps, TableCellRenderObject, TableElement, TableFactory, TableProps, TableRenderObject, TableRowElement, TableRowFactory, TableRowProps, TableRowRenderObject, TableSplitCell, TableUtil, TextGroupElement, TextGroupFactory, TextGroupRenderObject, TextProps, TextUnitsHolder, TrackRunElement, TrackRunProps, TrackRunRenderObject, TrackRunTypeEnum, ValidateCondition, ValidateElement, ValidateProps, ValidateRenderObject, ViewOptions, addReturn, clearChildrenRenderCache, clearTraces, cloneChildren, cloneElementBase, defaultParaHanging, deleteCurrentParagraph, docOpsMap, elementTypeEventHandler, exportDecoratorHTML, falseChar, fontMapFunc, formatEle, fromEvent, generatePatch, getCalleeName, getFocusTextSegment, inputText, insertEle, invokeTypeHandler, isDate, logUpdateEleProps, objectToString$4 as objectToString, onTableContextmenu, onceTask, parser, reactiveMap, removeEle, removeText, renderErrorTip, renderUnderWavyLine, runTextLineRender, setChildrenModifyFlag, setNotifyChangedCallback, setTraceTrackingFlag, suppressTracking, targetMaps, textLineRenderMode, toRawType, toTypeString, trueChar, validateDataEle, validateDataEleRenderObj, validateInlineInputRenderObj, watchChanged };
27719
+ 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, CommonUtil, CommsContainerElement, CommsContainerRenderObject, ContentMenuItem, ContextMenuElementEvent, CopyElementEvent, DOMEventSource, DOMSubscription, DataContainerElement, DataContainerFactory, DataContainerProps, DataContainerRenderObject, 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, DocInputSuggestions, DocMode, DocumentBodyElement, DocumentBodyFactory, DocumentBodyPartElement, DocumentBodyPartFactory, DocumentBodyPartRenderObject, DocumentBodyRenderObject, DocumentChange, DocumentCombine, DocumentComment, DocumentContainerRender, DocumentContext, DocumentCursor, DocumentElement, DocumentEvalFunc, DocumentEvent, DocumentFactory, DocumentFooterElement, DocumentFooterFactory, DocumentFooterRenderObject, DocumentHeaderElement, DocumentHeaderFactory, DocumentHeaderRenderObject, DocumentInput, DocumentPaginator, DocumentPrintOffscreen, DocumentPrintOffscreenBase, DocumentProps, DocumentRenderObject, DocumentSelection, DocumentTemplate, DropElementEvent, EditMode, EditorContext, Element, ElementEvent, ElementFactory, ElementReader, ElementSerialize, ElementUtil, EventBus, EventMap, EventSourceCore, FillNullSpaceElement, FillNullSpaceRenderObject, GetTrackTipsEvent, GotCursorEvent, IDispose, INotifyPropertyChanged, InlineBlockContainer, InlineGroupElement, InlineGroupInputElement, InlineGroupRenderObject, InlineMuiltBlockLineRenderObject, InputElementEvent, IsInSideDataElement, IsInSideDataGroup, IsInSideInlineGroupInputElement, KeyboradElementEvent, LeafElement, LeafRenderObject, LostCursorEvent, MarginProps, ModifyFlag, MouseElementEvent, MousedownElementEvent, MultiBlockLineRenderObject, OnceSubject, PSymbolElement, PSymbolRenderObject, PaddingProps, PageBreakElement, PageBreakFactory, PageBreakRenderObject, PageOptions, PaintContent, ParagraphElement, ParagraphFactory, ParagraphLineRectRenderObject, ParagraphNumberType, ParagraphProps, ParagraphRenderObject, PasteElementEvent, PermanentTeethElement, PermanentTeethFactory, PermanentTeethProps, PermanentTeethRenderObject, PictureElement, PictureFactory, PictureProps, PictureRenderObject, RadioBoxElement, RadioBoxFactory, RadioBoxProps, RadioBoxRenderObject, RangeUtil, Rect, RenderContext, RenderObject, RenderObjectType, ResizeLeafRenderObject, RowMinHeight, RunElementFactory, SVGElement, SVGFactory, SVGProps, SVGRenderObject, SelectionOverlays, SelectionRange, SelectionState, Subject, SubjectSubscription, Subscription, TEXT_HEIGHT_FACTOR, TabElement, TabFactory, TabRenderObject, TableCellElement, TableCellFactory, TableCellProps, TableCellRenderObject, TableElement, TableFactory, TableProps, TableRenderObject, TableRowElement, TableRowFactory, TableRowProps, TableRowRenderObject, TableSplitCell, TableUtil, TextGroupElement, TextGroupFactory, TextGroupRenderObject, TextProps, TextUnitsHolder, TrackRunElement, TrackRunProps, TrackRunRenderObject, TrackRunTypeEnum, ValidateCondition, ValidateElement, ValidateProps, ValidateRenderObject, ViewOptions, addReturn, clearChildrenRenderCache, clearTraces, cloneChildren, cloneElementBase, defaultParaHanging, deleteCurrentParagraph, docOpsMap, elementTypeEventHandler, exportDecoratorHTML, falseChar, fontMapFunc, formatEle, fromEvent, generatePatch, getCalleeName, getFocusTextSegment, inputText, insertEle, invokeTypeHandler, isDate, logUpdateEleProps, objectToString$4 as objectToString, onTableContextmenu, onceTask, parser, reactiveMap, removeEle, removeText, renderErrorTip, renderUnderWavyLine, runTextLineRender, setChildrenModifyFlag, setNotifyChangedCallback, setTraceTrackingFlag, suppressTracking, targetMaps, textLineRenderMode, toRawType, toTypeString, trueChar, validateDataEle, validateDataEleRenderObj, validateInlineInputRenderObj, watchChanged };
27637
27720
  //# sourceMappingURL=index.js.map