@hailin-zheng/editor-core 2.2.9 → 2.2.11

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
@@ -1510,7 +1510,7 @@ class BranchElement extends Element {
1510
1510
  }
1511
1511
  treeFilter(predicate, options) {
1512
1512
  if (!options) {
1513
- options = { includeChildren: true };
1513
+ options = { includeChildren: false };
1514
1514
  }
1515
1515
  const items = [];
1516
1516
  for (let i = 0; i < this.length; i++) {
@@ -1523,7 +1523,7 @@ class BranchElement extends Element {
1523
1523
  }
1524
1524
  }
1525
1525
  if (item instanceof BranchElement) {
1526
- items.push(...item.treeFilter(predicate));
1526
+ items.push(...item.treeFilter(predicate, options));
1527
1527
  }
1528
1528
  }
1529
1529
  return items;
@@ -1708,6 +1708,8 @@ class ViewOptions {
1708
1708
  dataDecoratorNormalColor = '#0050b3';
1709
1709
  dataDecoratorMouseEnterColor = '#0050b3';
1710
1710
  dataDecoratorFocusedColor = '#0050b3';
1711
+ //是否显示数据元修饰符
1712
+ showDataEleDecorator = true;
1711
1713
  //数据元没有输入值时背景颜色
1712
1714
  dataEleEmptyBgColor = '';
1713
1715
  //数据元鼠标悬浮颜色
@@ -1718,7 +1720,14 @@ class ViewOptions {
1718
1720
  dataEleFocusedBgColor = '#d9d9d9';
1719
1721
  //数据元正常背景颜色
1720
1722
  dataEleNormalBgColor = '#fafafa';
1723
+ //数据元错误背景颜色
1721
1724
  dataEleErrorBgColor = '#ff4d4f';
1725
+ //数据元正常背景颜色
1726
+ dataGroupEleNormalBgColor = '';
1727
+ //数据元鼠标悬浮颜色
1728
+ dataGroupMouseEnterBgColor = '';
1729
+ //数据元只读背景颜色
1730
+ dataGroupFocusedBgColor = '';
1722
1731
  viewBackcolor = 'rgb(230,230,230)';
1723
1732
  paraSymbolColor = 'rgb(128,128,128)';
1724
1733
  dataGroupColor = 'rgb(0,80,179)';
@@ -8672,7 +8681,7 @@ class BreakFactory extends ElementFactory {
8672
8681
  }
8673
8682
  }
8674
8683
 
8675
- class DataElementGroupElement extends DataElementInlineGroup {
8684
+ class DataElementGroupElement extends InlineGroupInputElement {
8676
8685
  constructor() {
8677
8686
  super('data-group');
8678
8687
  this.props = new DataElementGroupProps();
@@ -8712,7 +8721,6 @@ class DataElementGroupElement extends DataElementInlineGroup {
8712
8721
  });
8713
8722
  }
8714
8723
  }
8715
- this.onChangedValidate();
8716
8724
  }
8717
8725
  getValue() {
8718
8726
  return ElementSerialize.serializeString(this, { all: false });
@@ -8764,6 +8772,24 @@ class DataElementGroupFactory extends DataElementBaseFactory {
8764
8772
  dataEleProps.dataType = props.dataType;
8765
8773
  return dataEleProps;
8766
8774
  }
8775
+ }
8776
+ /**
8777
+ * 是否在数据组内部
8778
+ * @param control
8779
+ * @param offset
8780
+ */
8781
+ function IsInSideDataGroup(control, offset) {
8782
+ const mathEle = ElementUtil.getParent(control, (item) => item instanceof DataElementGroupElement);
8783
+ if (mathEle) {
8784
+ if ((control === mathEle.startDecorate && offset === 0) || (control === mathEle.endDecorate && offset === 1)) {
8785
+ return false;
8786
+ }
8787
+ return true;
8788
+ }
8789
+ return false;
8790
+ }
8791
+ function validateDataGroup(control) {
8792
+ return control instanceof DataElementGroupElement;
8767
8793
  }
8768
8794
 
8769
8795
  class DataElementImage extends DataElementLeaf {
@@ -12496,6 +12522,14 @@ class ElementUtil {
12496
12522
  static getDataElement(ele) {
12497
12523
  return this.getParent(ele, item => item instanceof DataElementInlineGroup);
12498
12524
  }
12525
+ /**
12526
+ * 向上查找类型为数据元的父级
12527
+ * @param ele
12528
+ * @returns
12529
+ */
12530
+ static getDataGroupElement(ele) {
12531
+ return this.getParent(ele, item => item instanceof DataElementGroupElement);
12532
+ }
12499
12533
  static getOSPlatform() {
12500
12534
  const userAgent = navigator.userAgent;
12501
12535
  if (userAgent.indexOf('Windows') > -1) {
@@ -12644,23 +12678,35 @@ class ElementUtil {
12644
12678
  if (startControl.paintRenders.length === 0) {
12645
12679
  return false;
12646
12680
  }
12681
+ if (!ElementUtil.verifyHitable(startControl)) {
12682
+ return false;
12683
+ }
12647
12684
  if (viewOptions.docMode === DocMode.Design) {
12648
12685
  return true;
12649
12686
  }
12650
- //表单模式下,如果不在数据元素中,则不显示光标
12687
+ //表单模式下
12651
12688
  if (viewOptions.docMode === DocMode.FormEdit) {
12652
- if (!IsInSideDataElement(startControl, startOffset)) {
12653
- return false;
12689
+ //如果光标在数据元素中,判断是否可编辑
12690
+ if (IsInSideDataElement(startControl, startOffset)) {
12691
+ const dataEle = ElementUtil.getDataElement(startControl);
12692
+ //数据元不可编辑
12693
+ if (dataEle && !dataEle.props.editable) {
12694
+ return false;
12695
+ }
12696
+ return true;
12654
12697
  }
12655
- }
12656
- if (!ElementUtil.verifyHitable(startControl)) {
12657
- return false;
12658
- }
12659
- //表单模式下,数据元不可编辑
12660
- if (viewOptions.docMode === DocMode.FormEdit && IsInSideDataElement(startControl, startOffset)) {
12661
- const dataEle = ElementUtil.getDataElement(startControl);
12662
- if (dataEle && !dataEle.props.editable) {
12663
- return false;
12698
+ else {
12699
+ //不在数据元中,需要判断是否在数据组中
12700
+ if (IsInSideDataGroup(startControl, startOffset)) {
12701
+ const dataGroup = ElementUtil.getDataGroupElement(startControl);
12702
+ //数据元不可编辑
12703
+ if (dataGroup && !dataGroup.props.editable) {
12704
+ return false;
12705
+ }
12706
+ }
12707
+ else {
12708
+ return false;
12709
+ }
12664
12710
  }
12665
12711
  }
12666
12712
  return true;
@@ -13340,17 +13386,20 @@ class DocumentContext {
13340
13386
  this.ss = ss;
13341
13387
  }
13342
13388
  getControlIDList() {
13343
- const dataEleList = this.ctx.treeFilter(item => validateDataEle(item));
13389
+ const dataEleList = this.ctx.treeFilter(item => this.isDataEle(item));
13344
13390
  return dataEleList.map(item => item.props.id);
13345
13391
  }
13346
13392
  getControlInstanceList(options) {
13347
- return this.ctx.treeFilter(item => validateDataEle(item), options);
13393
+ return this.ctx.treeFilter(item => this.isDataEle(item), options);
13348
13394
  }
13349
13395
  getControlById(id) {
13350
- return this.ctx.treeFind(item => validateDataEle(item) && item['props']['id'] === id);
13396
+ return this.ctx.treeFind(item => this.isDataEle(item) && item['props']['id'] === id);
13397
+ }
13398
+ isDataEle(ele) {
13399
+ return validateDataEle(ele) || ele instanceof DataElementGroupElement;
13351
13400
  }
13352
13401
  getControlByName(name) {
13353
- return this.ctx.treeFind(item => validateDataEle(item) && item['props']['name'] === name);
13402
+ return this.ctx.treeFind(item => this.isDataEle(item) && item['props']['name'] === name);
13354
13403
  }
13355
13404
  /**
13356
13405
  * 获取数据元值集合
@@ -13368,7 +13417,7 @@ class DocumentContext {
13368
13417
  * @returns
13369
13418
  */
13370
13419
  getDataElementModelList(options) {
13371
- const dataEleList = this.ctx.treeFilter(item => validateDataEle(item), options);
13420
+ const dataEleList = this.ctx.treeFilter(item => this.isDataEle(item), options);
13372
13421
  //数据元、数据组
13373
13422
  const dataInlineGroups = dataEleList.filter(item => item instanceof DataElementInlineGroup);
13374
13423
  const dataLeafs = dataEleList.filter(item => item instanceof DataElementLeaf);
@@ -15442,12 +15491,12 @@ class DocumentEvent {
15442
15491
  },
15443
15492
  mouseup: (evt) => {
15444
15493
  this.mouseup(evt, ElementUtil.getMousePos(evt, scale));
15445
- this.mouseClickHandle(evt);
15494
+ //this.mouseClickHandle(evt);
15446
15495
  },
15447
15496
  click: (evt) => {
15448
15497
  //nulltext 不触发 click 事件,暂且这么处理
15449
15498
  //移到 mouseup 事件中处理
15450
- //this.mouseClickHandle(evt);
15499
+ this.mouseClickHandle(evt);
15451
15500
  },
15452
15501
  mousemove: (evt) => {
15453
15502
  this.mousemove(evt, ElementUtil.getMousePos(evt, scale));
@@ -16674,6 +16723,30 @@ class DocumentEvent {
16674
16723
  }
16675
16724
  return null;
16676
16725
  }
16726
+ /**
16727
+ * 获取当前光标所在的数据组
16728
+ * @returns
16729
+ */
16730
+ getCurrentDataGroupElement(mode = 'strict') {
16731
+ const selectionState = this.selectionState;
16732
+ const { startControl, startOffset, collapsed, ancestorCommonControl } = selectionState;
16733
+ if (startControl && collapsed) {
16734
+ // if (!ElementUtil.verifyHitable(startControl)) {
16735
+ // return null;
16736
+ // }
16737
+ const dataEle = ElementUtil.getParent(startControl, validateDataGroup);
16738
+ if (mode === 'free' || IsInSideDataGroup(startControl, startOffset)) {
16739
+ return dataEle;
16740
+ }
16741
+ else {
16742
+ return null;
16743
+ }
16744
+ }
16745
+ else if (!collapsed && ancestorCommonControl) {
16746
+ return ElementUtil.getParent(ancestorCommonControl, validateDataGroup);
16747
+ }
16748
+ return null;
16749
+ }
16677
16750
  }
16678
16751
 
16679
16752
  /**
@@ -17502,8 +17575,12 @@ class DocumentChange {
17502
17575
  * @private
17503
17576
  */
17504
17577
  canDeleteInlineGroup(dataEle) {
17578
+ //当前编辑模式为表单模式,单独的数据元不可删除
17579
+ //存在于数据组内的数据元可以删除
17505
17580
  if (this.viewOptions.docMode === DocMode.FormEdit) {
17506
- return false;
17581
+ if (dataEle.parent.type !== 'data-group') {
17582
+ return false;
17583
+ }
17507
17584
  }
17508
17585
  return dataEle.length === 2;
17509
17586
  }
@@ -17818,6 +17895,14 @@ class DocumentChange {
17818
17895
  }
17819
17896
  return;
17820
17897
  }
17898
+ const dataGroup = ElementUtil.getDataGroupElement(range.target);
17899
+ if (dataGroup) {
17900
+ this.deleteRange(range);
17901
+ if (!startPointElement || ElementUtil.getParent(startPointElement, item => validateDataGroup(item)) !== dataGroup) {
17902
+ this.selectionState.resetRange(dataGroup.startDecorate, 1);
17903
+ }
17904
+ return;
17905
+ }
17821
17906
  //在数据元外删除
17822
17907
  else {
17823
17908
  this.loopForDelDataEleRange(range);
@@ -18433,9 +18518,13 @@ class DocumentChange {
18433
18518
  }
18434
18519
  getCursorElementByDeleteAction(control) {
18435
18520
  if (this.viewOptions.docMode === DocMode.FormEdit) {
18436
- if (control.parent instanceof DataElementInlineGroup) {
18521
+ //是否属于数据元或者数据组区域
18522
+ const isInDataAre = (ele) => {
18523
+ return ele.parent instanceof DataElementInlineGroup || ele.parent instanceof DataElementGroupElement;
18524
+ };
18525
+ if (isInDataAre(control)) {
18437
18526
  const prevLeafElementInPara = ElementUtil.getRecursionPrevSiblingElement(control, true, true, this.viewOptions);
18438
- if (prevLeafElementInPara && ElementUtil.getParent(prevLeafElementInPara, item => item instanceof DataElementInlineGroup)) {
18527
+ if (prevLeafElementInPara && isInDataAre(prevLeafElementInPara)) {
18439
18528
  return {
18440
18529
  ele: prevLeafElementInPara,
18441
18530
  offset: ElementUtil.getElementEndOffset(prevLeafElementInPara)
@@ -18443,7 +18532,7 @@ class DocumentChange {
18443
18532
  }
18444
18533
  else {
18445
18534
  return {
18446
- ele: control.parent.startDecorate,
18535
+ ele: (control.parent).startDecorate,
18447
18536
  offset: 1
18448
18537
  };
18449
18538
  }
@@ -20922,6 +21011,13 @@ class DocEditor {
20922
21011
  getCurrentDataElement() {
20923
21012
  return this.documentEvent.getCurrentDataElement();
20924
21013
  }
21014
+ /**
21015
+ * 回去当前光标所在数据组
21016
+ * @returns
21017
+ */
21018
+ getCurrentDataGroupElement() {
21019
+ return this.documentEvent.getCurrentDataGroupElement();
21020
+ }
20925
21021
  /**
20926
21022
  * 移动光标到下一个数据元素上
20927
21023
  */
@@ -21955,7 +22051,7 @@ class DocEditor {
21955
22051
  rule.setRuleOptions({ width: this.viewOptions.docPageSettings.width, pagePL, pagePR, docLeft });
21956
22052
  }
21957
22053
  version() {
21958
- return "2.2.9";
22054
+ return "2.2.11";
21959
22055
  }
21960
22056
  switchPageHeaderEditor() {
21961
22057
  this.docCtx.document.switchPageHeaderEditor(this.selectionState, null);
@@ -27674,5 +27770,5 @@ function removeDuplicatesEvent(events) {
27674
27770
  return arr;
27675
27771
  }
27676
27772
 
27677
- 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 };
27773
+ 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, validateDataGroup, validateInlineInputRenderObj, watchChanged };
27678
27774
  //# sourceMappingURL=index.js.map