@hailin-zheng/editor-core 1.0.60 → 1.0.62

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
@@ -1416,6 +1416,7 @@ class ViewOptions {
1416
1416
  viewBackcolor = 'rgb(230,230,230)';
1417
1417
  paraSymbolColor = 'rgb(128,128,128)';
1418
1418
  dataGroupColor = 'rgb(0,80,179)';
1419
+ defaultLineHeight = 1.3;
1419
1420
  //新增-留痕块文本颜色
1420
1421
  trackInsColor = '#ff4d4f';
1421
1422
  //删除-留痕块文本颜色
@@ -1462,6 +1463,8 @@ class ViewOptions {
1462
1463
  pageNumOffset = 0;
1463
1464
  //页排版模式:单页模式、多页模式、适应页宽模式
1464
1465
  pageLayoutMode = 'singlePage';
1466
+ //默认tab缩进的量
1467
+ defaultIndent = 20;
1465
1468
  //内容区宽度,受审阅窗口宽度影响
1466
1469
  get contentWidth() {
1467
1470
  if (this.showReviewWindow) {
@@ -1724,6 +1727,12 @@ class TextProps extends INotifyPropertyChanged {
1724
1727
  && this.border === props.border;
1725
1728
  }
1726
1729
  }
1730
+ var ParagraphNumberType;
1731
+ (function (ParagraphNumberType) {
1732
+ ParagraphNumberType[ParagraphNumberType["none"] = -1] = "none";
1733
+ ParagraphNumberType[ParagraphNumberType["ul"] = 0] = "ul";
1734
+ ParagraphNumberType[ParagraphNumberType["ol"] = 1] = "ol";
1735
+ })(ParagraphNumberType || (ParagraphNumberType = {}));
1727
1736
  class ParagraphProps extends INotifyPropertyChanged {
1728
1737
  //段落默认的文本属性
1729
1738
  //textProps!: TextProps;
@@ -1731,7 +1740,7 @@ class ParagraphProps extends INotifyPropertyChanged {
1731
1740
  hanging = 0;
1732
1741
  lineHeight = 1.3;
1733
1742
  textAlign = 'left';
1734
- numberType = -1;
1743
+ numberType = ParagraphNumberType.none;
1735
1744
  pageBreak = false;
1736
1745
  clone(dest = null) {
1737
1746
  const clone = dest ?? new ParagraphProps();
@@ -1753,13 +1762,13 @@ class ParagraphProps extends INotifyPropertyChanged {
1753
1762
  if (this.hanging) {
1754
1763
  props["hanging"] = this.hanging;
1755
1764
  }
1756
- if (this.lineHeight && this.lineHeight !== 1.3) {
1765
+ if (this.lineHeight && this.lineHeight !== viewOptions.defaultLineHeight) {
1757
1766
  props["lineHeight"] = this.lineHeight;
1758
1767
  }
1759
1768
  if (this.textAlign && this.textAlign !== "left") {
1760
1769
  props["textAlign"] = this.textAlign;
1761
1770
  }
1762
- if (this.numberType !== -1) {
1771
+ if (this.numberType !== ParagraphNumberType.none) {
1763
1772
  props["numberType"] = this.numberType;
1764
1773
  }
1765
1774
  if (this.pageBreak) {
@@ -2369,6 +2378,13 @@ class ValidateProps {
2369
2378
  id;
2370
2379
  title;
2371
2380
  msg;
2381
+ clone(dest) {
2382
+ const clone = dest ?? new ValidateProps();
2383
+ clone.id = this.id;
2384
+ clone.title = this.title;
2385
+ clone.msg = this.msg;
2386
+ return clone;
2387
+ }
2372
2388
  }
2373
2389
  class DataElementGroupProps {
2374
2390
  id;
@@ -3291,6 +3307,19 @@ class ParagraphElement extends BlockContentElement {
3291
3307
  }
3292
3308
  }
3293
3309
  }, true);
3310
+ this.addEvent('ElementKeyDown', evt => {
3311
+ //当前存在缩进,点击tab
3312
+ if (evt.sourceEvent.keyCode === 9) {
3313
+ const { startControl, startOffset } = evt.selectionState;
3314
+ if (startOffset === 0 && startControl === this.getChild(0)) {
3315
+ const defaultIndent = evt.ctx.viewOptions.defaultIndent;
3316
+ let increaseValue = evt.sourceEvent.shiftKey ? -defaultIndent : defaultIndent;
3317
+ this.props.indent += increaseValue;
3318
+ evt.isCancel = true;
3319
+ evt.sourceEvent.preventDefault();
3320
+ }
3321
+ }
3322
+ }, true);
3294
3323
  }
3295
3324
  /**
3296
3325
  * 设置样式
@@ -3338,25 +3367,39 @@ class ParagraphRenderObject extends MuiltBlockLineRenderObject {
3338
3367
  */
3339
3368
  drawProjectNumber(ctx, viewOptions) {
3340
3369
  const paraElement = this.element;
3341
- if (paraElement.props.numberType >= 0) {
3370
+ if (paraElement.props.numberType !== ParagraphNumberType.none) {
3342
3371
  if (paraElement.paintRenders.indexOf(this) > 0) {
3343
3372
  return;
3344
3373
  }
3345
3374
  const firstLine = this.getChild(0);
3346
- if (!firstLine) {
3347
- debugger;
3348
- }
3349
3375
  const firstInline = firstLine.getChild(0);
3350
- if (!firstInline) {
3351
- debugger;
3352
- }
3353
3376
  const firstInlinePaintPos = ElementUtil.getRenderAbsolutePaintPos(firstInline, {
3354
3377
  x: 0,
3355
3378
  y: -viewOptions.translateY
3356
3379
  });
3357
- const numberSymbolY = firstInlinePaintPos.y + Math.ceil(firstInline.rect.height / 2);
3358
- //ctx.contentContext.drawText(str, textProps, firstInlinePaintPos.x - paraElement.paraProps.indent, numberSymbolY, 14, 14);
3359
- ctx.contentContext.fillCircular(firstInlinePaintPos.x - paraElement.props.indent + 2, numberSymbolY, 4);
3380
+ if (paraElement.props.numberType === ParagraphNumberType.ul) {
3381
+ const numberSymbolY = firstInlinePaintPos.y + Math.ceil(firstInline.rect.height / 2);
3382
+ ctx.contentContext.fillCircular(firstInlinePaintPos.x - paraElement.props.indent + 2, numberSymbolY, 4);
3383
+ }
3384
+ else if (paraElement.props.numberType === ParagraphNumberType.ol) {
3385
+ const parent = paraElement.parent;
3386
+ let i = paraElement.getIndex() - 1;
3387
+ for (; i >= 0; i--) {
3388
+ if (parent.getChild(i) instanceof ParagraphElement) {
3389
+ //紧挨上面的段落
3390
+ const prevSiblingPara = parent.getChild(i);
3391
+ if (prevSiblingPara.props.numberType !== paraElement.props.numberType || prevSiblingPara.props.indent !== paraElement.props.indent) {
3392
+ break;
3393
+ }
3394
+ }
3395
+ }
3396
+ const olText = (paraElement.getIndex() - i) + '.';
3397
+ const textProps = new TextProps();
3398
+ textProps.color = '#000';
3399
+ textProps.fontSize = firstInline.rect.height - 4;
3400
+ textProps.fontName = '宋体';
3401
+ ctx.contentContext.drawText(olText, textProps, firstInlinePaintPos.x - paraElement.props.indent + 2, firstInlinePaintPos.y + 2, 40, textProps.fontSize);
3402
+ }
3360
3403
  }
3361
3404
  }
3362
3405
  clone() {
@@ -3384,7 +3427,7 @@ class ParagraphFactory extends ElementFactory {
3384
3427
  paraElement.props.hanging = props?.hanging ?? 0;
3385
3428
  paraElement.props.textAlign = props?.textAlign ?? 'left';
3386
3429
  paraElement.props.numberType = props?.numberType ?? -1;
3387
- paraElement.props.lineHeight = props?.lineHeight ?? 1.3;
3430
+ paraElement.props.lineHeight = props?.lineHeight ?? this.options.defaultLineHeight;
3388
3431
  paraElement.props.pageBreak = props?.pageBreak ?? false;
3389
3432
  return paraElement;
3390
3433
  }
@@ -7035,7 +7078,14 @@ class CommContentElement extends CommContentBaseElement {
7035
7078
  };
7036
7079
  }
7037
7080
  clone(data) {
7038
- throw new Error('不支持');
7081
+ const clone = new CommContentElement();
7082
+ this.props.clone(clone.props);
7083
+ if (data) {
7084
+ for (let i = 0; i < this.length; i++) {
7085
+ clone.addChild(this.getChild(i).clone(true));
7086
+ }
7087
+ }
7088
+ return clone;
7039
7089
  }
7040
7090
  }
7041
7091
  class CommContentRenderObject extends CommContentBaseRenderObject {
@@ -7051,7 +7101,10 @@ class CommContentRenderObject extends CommContentBaseRenderObject {
7051
7101
  });
7052
7102
  const commMarkLinePos = ElementUtil.getParaLinePos(this.commMarkRender.render, commMarkPos);
7053
7103
  commMarkPos.y = commMarkLinePos.y + 2;
7054
- const docRenderPos = ElementUtil.getRenderAbsolutePaintPos(docRender, { x: 0, y: -e.docCtx.viewOptions.translateY });
7104
+ const docRenderPos = ElementUtil.getRenderAbsolutePaintPos(docRender, {
7105
+ x: 0,
7106
+ y: -e.docCtx.viewOptions.translateY
7107
+ });
7055
7108
  const marginLeft = commMarkPos.x - docRenderPos.x - docRender.padding.left;
7056
7109
  const marginRight = e.docCtx.viewOptions.docPageSettings.width - marginLeft - docRender.padding.right * 2;
7057
7110
  e.render.overlaysContext.drawDashLine([commMarkPos, {
@@ -7248,7 +7301,14 @@ class ValidateElement extends CommContentBaseElement {
7248
7301
  return null;
7249
7302
  }
7250
7303
  clone(data) {
7251
- throw new Error("Method not implemented.");
7304
+ const clone = new ValidateElement();
7305
+ this.props.clone(clone.props);
7306
+ if (data) {
7307
+ for (let i = 0; i < this.length; i++) {
7308
+ clone.addChild(this.getChild(i).clone(true));
7309
+ }
7310
+ }
7311
+ return clone;
7252
7312
  }
7253
7313
  setContent(content) {
7254
7314
  this.clearItems();
@@ -10065,7 +10125,7 @@ class ElementMeasure {
10065
10125
  const innerLineRect = innerLineRects[i];
10066
10126
  innerLineRect.rect.x = this.getParaLineRectStartX(innerLineRects.length, i, paragraph, render, innerLineRect);
10067
10127
  //限制最大行高
10068
- const maxLineHeight = Math.floor(14 * 1.3);
10128
+ const maxLineHeight = paragraph.props.lineHeight !== this.options.defaultLineHeight ? 100 : Math.floor(14 * 2);
10069
10129
  //fillLineHeight填充行高
10070
10130
  let fillLineHeight = Math.ceil(innerLineRect.rect.height * (paragraph.props.lineHeight - 1));
10071
10131
  fillLineHeight = fillLineHeight > maxLineHeight ? maxLineHeight : fillLineHeight;
@@ -11656,63 +11716,6 @@ class DocumentPaint {
11656
11716
  }
11657
11717
  }
11658
11718
 
11659
- /**
11660
- * 段落行
11661
- */
11662
- class ParaLineElement extends LeafElement {
11663
- constructor() {
11664
- super('p-line');
11665
- this.props = new ParaLineProps();
11666
- }
11667
- clone(data) {
11668
- const clone = new ParaLineElement();
11669
- this.props.clone(clone.props);
11670
- return clone;
11671
- }
11672
- createRenderObject(options, renderCtx) {
11673
- const render = new ParaLineRenderObject(this);
11674
- render.rect.width = 9999;
11675
- return render;
11676
- }
11677
- serialize(viewOptions) {
11678
- return {
11679
- type: this.type,
11680
- props: {
11681
- ...this.props
11682
- }
11683
- };
11684
- }
11685
- }
11686
- class ParaLineRenderObject extends LeafRenderObject {
11687
- clone() {
11688
- const clone = new ParaLineRenderObject(this.element);
11689
- clone.rect = ElementUtil.cloneRect(this.rect);
11690
- return clone;
11691
- }
11692
- render(e) {
11693
- const { render, position } = e;
11694
- render.contentContext.drawHoriLine(position.x, position.y, this.parent.rect.width, 'black', 1);
11695
- }
11696
- }
11697
- class ParaLineElementFactory extends ElementFactory {
11698
- createElement(data, renderCtx) {
11699
- const ele = new ParaLineElement();
11700
- ele.props.lineType = data.props?.lineType ?? 'solid';
11701
- return ele;
11702
- }
11703
- match(type) {
11704
- return type === 'p-line';
11705
- }
11706
- }
11707
- class ParaLineProps {
11708
- lineType = 'solid';
11709
- clone(dest) {
11710
- const clone = dest ?? new ParaLineProps();
11711
- clone.lineType = this.lineType;
11712
- return clone;
11713
- }
11714
- }
11715
-
11716
11719
  class ElementReader {
11717
11720
  docCtx;
11718
11721
  renderCtx;
@@ -11754,7 +11757,6 @@ class ElementReader {
11754
11757
  this.addFactory(RunElementFactory);
11755
11758
  this.addFactory(DataElementGroupFactory);
11756
11759
  this.addFactory(DocumentBodyPartFactory);
11757
- this.addFactory(ParaLineElementFactory);
11758
11760
  // this.registerReadFunc<TrackRunProps>('ins-run', (data) => {
11759
11761
  // const props = new TrackRunProps(data.type);
11760
11762
  // props.userId = data.userId;
@@ -14434,12 +14436,12 @@ class DocumentChange {
14434
14436
  }
14435
14437
  const para = ElementUtil.getParentByType(startControl, ParagraphElement);
14436
14438
  const format = {};
14437
- if (para.props.numberType >= 0) {
14438
- format.numberType = -1;
14439
+ if (para.props.numberType !== ParagraphNumberType.none) {
14440
+ format.numberType = ParagraphNumberType.none;
14439
14441
  format.indent = 0;
14440
14442
  }
14441
14443
  else {
14442
- format.numberType = 0;
14444
+ format.numberType = ParagraphNumberType.ul;
14443
14445
  format.indent = 15;
14444
14446
  }
14445
14447
  para.setFormat(format);
@@ -16658,27 +16660,6 @@ class CanvasTextEditor {
16658
16660
  }
16659
16661
  this.flushToSchedule();
16660
16662
  }
16661
- test2() {
16662
- //获取文档上下文
16663
- const docEleCtx = this.docCtx.getCtx(this.docCtx.document);
16664
- //获取年龄数据元
16665
- const dataEle = docEleCtx.getControlById('1493477712134672386');
16666
- //获取要隐藏的数据组
16667
- const dataGroup = docEleCtx.ctx.treeFind((item) => item instanceof DataElementGroupElement);
16668
- //侦听数据元更改时间
16669
- dataEle.onChangeSubject.subscribe((e) => {
16670
- //在文档重新排版、绘制前,获取最终的指定节点的内容
16671
- const beforeRefreshSub = this.onBeforeRefreshDocument.subscribe((e2) => {
16672
- console.log('内容发生改变,隐藏数据组');
16673
- //获取年龄数据元输入的值
16674
- const age = Number.parseInt(dataEle.getValue());
16675
- //年龄大于20,隐藏数据元
16676
- dataGroup.props.hidden = age > 20;
16677
- //取消订阅事件
16678
- beforeRefreshSub.unsubscribe();
16679
- });
16680
- });
16681
- }
16682
16663
  }
16683
16664
 
16684
16665
  /**
@@ -16962,5 +16943,5 @@ function removeDuplicatesEvent(events) {
16962
16943
  return arr;
16963
16944
  }
16964
16945
 
16965
- export { BlockContainerElement, BlockContainerRenderObject, BlockContentElement, BlockContentRenderObject, BlockLineRectRenderObject, BodyPartProps, BooleanEnum, BorderProps, BranchElement, BranchRenderObject, BreakElement, BreakFactory, BreakRenderObject, CanvasTextEditor, 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, DocMode, DocRule, 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, ElementMeasure, ElementPaint, ElementReader, ElementRenderCut, ElementSerialize, ElementUtil, EventMap, EventSourceCore, FillNullSpaceElement, FillNullSpaceRenderObject, GetTrackTipsEvent, GotCursorEvent, IDispose, INotifyPropertyChanged, InlineBlockContainer, InlineGroupElement, InlineGroupInputElement, InlineGroupRenderObject, InlineMuiltBlockLineRenderObject, IsInSideDataElement, IsInSideInlineGroupInputElement, KeyboradElementEvent, LeafElement, LeafRenderObject, LostCursorEvent, MarginProps, ModifyFlag, MouseElementEvent, MousedownElementEvent, MuiltBlockLineRenderObject, PSymbolElement, PSymbolRenderObject, PaddingProps, PageOptions, PaintContent, ParagraphElement, ParagraphFactory, ParagraphLineRectRenderObject, ParagraphProps, ParagraphRenderObject, PictureElement, PictureFactory, PictureProps, PictureRenderObject, RadioBoxElement, RadioBoxFactory, RadioBoxProps, RadioBoxRenderObject, RangeUtil, Rect, RenderContext, RenderObject, RenderObjectType, ResizeLeafRenderObject, RunElementFactory, SelectionOverlays, SelectionRange, SelectionState, Subject, SubjectSubscription, 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, createPrintTemplate, deleteCurrentParagraph, documentPrint, elementTypeEventHandler, fontMapFunc, fromEvent, getFocusTextSegment, invokeTypeHandler, isDate, objectToString, onTableContextmenu, onceTask, printDocOnContextmenu, printNodes, reactiveMap, runTextLineRender, setDataElementProps, setNotifyChangedCallback, targetMaps, textLineRenderMode, toRawType, toTypeString, validateDataEle, validateDataEleRenderObj, validateInlineInputRenderObj, watchChanged };
16946
+ export { BlockContainerElement, BlockContainerRenderObject, BlockContentElement, BlockContentRenderObject, BlockLineRectRenderObject, BodyPartProps, BooleanEnum, BorderProps, BranchElement, BranchRenderObject, BreakElement, BreakFactory, BreakRenderObject, CanvasTextEditor, 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, DocMode, DocRule, 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, ElementMeasure, ElementPaint, ElementReader, ElementRenderCut, ElementSerialize, ElementUtil, EventMap, EventSourceCore, FillNullSpaceElement, FillNullSpaceRenderObject, GetTrackTipsEvent, GotCursorEvent, IDispose, INotifyPropertyChanged, InlineBlockContainer, InlineGroupElement, InlineGroupInputElement, InlineGroupRenderObject, InlineMuiltBlockLineRenderObject, IsInSideDataElement, IsInSideInlineGroupInputElement, KeyboradElementEvent, LeafElement, LeafRenderObject, LostCursorEvent, MarginProps, ModifyFlag, MouseElementEvent, MousedownElementEvent, MuiltBlockLineRenderObject, 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, SubjectSubscription, 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, createPrintTemplate, deleteCurrentParagraph, documentPrint, elementTypeEventHandler, fontMapFunc, fromEvent, getFocusTextSegment, invokeTypeHandler, isDate, objectToString, onTableContextmenu, onceTask, printDocOnContextmenu, printNodes, reactiveMap, runTextLineRender, setDataElementProps, setNotifyChangedCallback, targetMaps, textLineRenderMode, toRawType, toTypeString, validateDataEle, validateDataEleRenderObj, validateInlineInputRenderObj, watchChanged };
16966
16947
  //# sourceMappingURL=index.js.map