@hailin-zheng/editor-core 2.2.17 → 2.2.18
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
@@ -1720,18 +1720,26 @@ class ViewOptions {
|
|
1720
1720
|
dataEleEmptyBgColor = '';
|
1721
1721
|
//数据元鼠标悬浮颜色
|
1722
1722
|
dataEleMouseEnterBgColor = '#d9d9d9';
|
1723
|
+
dataEleMouseEnterDecoratorMode = 'background';
|
1723
1724
|
//数据元只读背景颜色
|
1724
1725
|
dataEleReadOnlyBgColor = '#d9d9d9';
|
1725
1726
|
//数据元焦点背景颜色
|
1726
1727
|
dataEleFocusedBgColor = '#d9d9d9';
|
1728
|
+
dataEleFocusedDecoratorMode = 'background';
|
1727
1729
|
//数据元正常背景颜色
|
1728
1730
|
dataEleNormalBgColor = '#fafafa';
|
1731
|
+
//数据元外部框线颜色
|
1732
|
+
dataEleOutlineColor = '#0050b3';
|
1733
|
+
//数据组外部框线颜色
|
1734
|
+
dataGroupOutlineColor = '#0050b3';
|
1729
1735
|
//数据元错误背景颜色
|
1730
1736
|
dataEleErrorBgColor = '#ff4d4f';
|
1731
1737
|
//数据组修饰符号颜色
|
1732
1738
|
dataGroupDecoratorNormalColor = '#0050b3';
|
1733
1739
|
dataGroupDecoratorMouseEnterColor = '#0050b3';
|
1740
|
+
dataGroupMouseEnterDecoratorMode = 'outline';
|
1734
1741
|
dataGroupDecoratorFocusedColor = '#0050b3';
|
1742
|
+
dataGroupFocusedDecoratorMode = 'outline';
|
1735
1743
|
//数据组正常背景颜色
|
1736
1744
|
dataGroupNormalBgColor = '#fafafa';
|
1737
1745
|
//数据元没有输入值时背景颜色
|
@@ -1752,8 +1760,6 @@ class ViewOptions {
|
|
1752
1760
|
trackDelColor = '#000';
|
1753
1761
|
showLineRect;
|
1754
1762
|
showCharRect;
|
1755
|
-
//数据元交互修饰模式
|
1756
|
-
dataEleDecoratorMode = 'outline';
|
1757
1763
|
showTabChar;
|
1758
1764
|
showSpaceChar;
|
1759
1765
|
showLineBreak;
|
@@ -3730,7 +3736,7 @@ class DocumentRenderObject extends BlockContainerRenderObject {
|
|
3730
3736
|
},
|
3731
3737
|
},
|
3732
3738
|
children: [
|
3733
|
-
pageCorner, highlight, ...CommonUtil.toArray(event.getChildNodes(this)), pageNum,
|
3739
|
+
pageCorner, highlight, selection, ...CommonUtil.toArray(event.getChildNodes(this)), pageNum, copyright
|
3734
3740
|
]
|
3735
3741
|
};
|
3736
3742
|
}
|
@@ -4057,7 +4063,11 @@ class DataElementInlineGroup extends InlineGroupInputElement {
|
|
4057
4063
|
}
|
4058
4064
|
});
|
4059
4065
|
}
|
4060
|
-
this.parserExpress = {
|
4066
|
+
this.parserExpress = {
|
4067
|
+
compliedCode,
|
4068
|
+
func: new Function(`with(this){ ${compliedCode} }`),
|
4069
|
+
depItems: depEleMap
|
4070
|
+
};
|
4061
4071
|
}
|
4062
4072
|
catch (e) {
|
4063
4073
|
console.error('解析表达式出错,parseEleExpression', this.props.expression);
|
@@ -4174,6 +4184,7 @@ function exportDataEleDecoratorSVG$1(event, r) {
|
|
4174
4184
|
return;
|
4175
4185
|
}
|
4176
4186
|
const options = event.options;
|
4187
|
+
let mode = 'background';
|
4177
4188
|
let color = options.dataEleNormalBgColor;
|
4178
4189
|
//空数据元填充颜色
|
4179
4190
|
if (r.element.length === 2 && options.dataEleEmptyBgColor) {
|
@@ -4181,17 +4192,69 @@ function exportDataEleDecoratorSVG$1(event, r) {
|
|
4181
4192
|
}
|
4182
4193
|
if (r.element.isMouseenter && options.dataEleMouseEnterBgColor) {
|
4183
4194
|
color = options.dataEleMouseEnterBgColor;
|
4195
|
+
mode = options.dataEleMouseEnterDecoratorMode;
|
4184
4196
|
}
|
4185
4197
|
if (r.element.isFocused && options.dataEleFocusedBgColor) {
|
4186
4198
|
color = options.dataEleFocusedBgColor;
|
4199
|
+
mode = options.dataEleFocusedDecoratorMode;
|
4187
4200
|
}
|
4188
4201
|
if (!color) {
|
4189
4202
|
return;
|
4190
4203
|
}
|
4191
4204
|
//绘制背景
|
4192
|
-
|
4193
|
-
|
4194
|
-
|
4205
|
+
if (['all', 'background'].includes(mode)) {
|
4206
|
+
const bgX = event.relativePagePos.x;
|
4207
|
+
const bgY = event.relativePagePos.y;
|
4208
|
+
event.highlights.push(ElementUtil.getFillSvgRect(bgX, bgY, r.rect.width, r.rect.height, color));
|
4209
|
+
}
|
4210
|
+
if (['all', 'outline'].includes(mode)) {
|
4211
|
+
color = event.options.dataEleOutlineColor;
|
4212
|
+
const verOffset = 0;
|
4213
|
+
const renderPosMap = getCurrentParaGroupRenders(r).map(item => ({ pos: getRenderPosToDoc(item), render: item }));
|
4214
|
+
if (renderPosMap.length > 1) {
|
4215
|
+
const secondGroupRenderPos = renderPosMap[1].pos;
|
4216
|
+
if (secondGroupRenderPos.x + renderPosMap[1].render.rect.width > event.relativePagePos.x) {
|
4217
|
+
const leftPoints = [];
|
4218
|
+
const rightPoints = [];
|
4219
|
+
for (let i = 0; i < renderPosMap.length; i++) {
|
4220
|
+
const groupRender = renderPosMap[i].render;
|
4221
|
+
const groupRenderPos = renderPosMap[i].pos;
|
4222
|
+
leftPoints.push({ x: groupRenderPos.x, y: groupRenderPos.y - verOffset });
|
4223
|
+
rightPoints.push({
|
4224
|
+
x: groupRenderPos.x + groupRender.rect.width,
|
4225
|
+
y: groupRenderPos.y - verOffset
|
4226
|
+
});
|
4227
|
+
leftPoints.push({
|
4228
|
+
x: groupRenderPos.x,
|
4229
|
+
y: groupRenderPos.y + groupRender.rect.height + verOffset * 2
|
4230
|
+
});
|
4231
|
+
rightPoints.push({
|
4232
|
+
x: groupRenderPos.x + groupRender.rect.width,
|
4233
|
+
y: groupRenderPos.y + groupRender.rect.height + verOffset * 2
|
4234
|
+
});
|
4235
|
+
}
|
4236
|
+
const sharpPoints1 = CommonUtil.resharpPoints(rightPoints);
|
4237
|
+
const sharpPoints = CommonUtil.resharpPoints([...leftPoints.reverse()]);
|
4238
|
+
const path = [...sharpPoints, ...sharpPoints1, sharpPoints[0]].map((item, index) => ((index === 0) ? 'M' : "L") + item.x + " " + item.y).join(" ");
|
4239
|
+
event.highlights.push(ElementUtil.createSvgPath({
|
4240
|
+
d: path,
|
4241
|
+
stroke: color,
|
4242
|
+
fill: 'none',
|
4243
|
+
'stroke-width': 1
|
4244
|
+
}));
|
4245
|
+
return;
|
4246
|
+
}
|
4247
|
+
}
|
4248
|
+
for (let i = 0; i < renderPosMap.length; i++) {
|
4249
|
+
const currRen = renderPosMap[i];
|
4250
|
+
event.highlights.push(ElementUtil.createSvgPath({
|
4251
|
+
d: `M${currRen.pos.x} ${currRen.pos.y} L${currRen.pos.x + currRen.render.rect.width} ${currRen.pos.y} L${currRen.pos.x + currRen.render.rect.width} ${currRen.pos.y + currRen.render.rect.height} L${currRen.pos.x} ${currRen.pos.y + currRen.render.rect.height} Z`,
|
4252
|
+
stroke: color,
|
4253
|
+
fill: 'none',
|
4254
|
+
'stroke-width': 1
|
4255
|
+
}));
|
4256
|
+
}
|
4257
|
+
}
|
4195
4258
|
// const canPaint = r.element.isMouseenter || r.element.isFocused;
|
4196
4259
|
// if (!canPaint) {
|
4197
4260
|
// return;
|
@@ -4206,51 +4269,6 @@ function exportDataEleDecoratorSVG$1(event, r) {
|
|
4206
4269
|
// event.highlights.push(ElementUtil.getFillSvgRect(bgX, bgY, r.rect.width, r.rect.height, color));
|
4207
4270
|
// return;
|
4208
4271
|
// } else if (mode === 'outline') {
|
4209
|
-
// const verOffset = 0;
|
4210
|
-
// const renderPosMap = getCurrentParaGroupRenders(r).map(item => ({ pos: getRenderPosToDoc(item), render: item }));
|
4211
|
-
// if (renderPosMap.length > 1) {
|
4212
|
-
// const secondGroupRenderPos = renderPosMap[1].pos;
|
4213
|
-
// if (secondGroupRenderPos.x + renderPosMap[1].render.rect.width > event.relativePagePos.x) {
|
4214
|
-
// const leftPoints: Array<Position> = [];
|
4215
|
-
// const rightPoints: Array<Position> = [];
|
4216
|
-
// for (let i = 0; i < renderPosMap.length; i++) {
|
4217
|
-
// const groupRender = renderPosMap[i].render;
|
4218
|
-
// const groupRenderPos = renderPosMap[i].pos;
|
4219
|
-
// leftPoints.push({ x: groupRenderPos.x, y: groupRenderPos.y - verOffset });
|
4220
|
-
// rightPoints.push({
|
4221
|
-
// x: groupRenderPos.x + groupRender.rect.width,
|
4222
|
-
// y: groupRenderPos.y - verOffset
|
4223
|
-
// });
|
4224
|
-
// leftPoints.push({
|
4225
|
-
// x: groupRenderPos.x,
|
4226
|
-
// y: groupRenderPos.y + groupRender.rect.height + verOffset * 2
|
4227
|
-
// });
|
4228
|
-
// rightPoints.push({
|
4229
|
-
// x: groupRenderPos.x + groupRender.rect.width,
|
4230
|
-
// y: groupRenderPos.y + groupRender.rect.height + verOffset * 2
|
4231
|
-
// });
|
4232
|
-
// }
|
4233
|
-
// const sharpPoints1 = CommonUtil.resharpPoints(rightPoints);
|
4234
|
-
// const sharpPoints = CommonUtil.resharpPoints([...leftPoints.reverse()]);
|
4235
|
-
// const path = [...sharpPoints, ...sharpPoints1, sharpPoints[0]].map((item, index) => ((index === 0) ? 'M' : "L") + item.x + " " + item.y).join(" ")
|
4236
|
-
// event.highlights.push(ElementUtil.createSvgPath({
|
4237
|
-
// d: path,
|
4238
|
-
// stroke: color,
|
4239
|
-
// fill: 'none',
|
4240
|
-
// 'stroke-width': 1
|
4241
|
-
// }));
|
4242
|
-
// return;
|
4243
|
-
// }
|
4244
|
-
// }
|
4245
|
-
// for (let i = 0; i < renderPosMap.length; i++) {
|
4246
|
-
// const currRen = renderPosMap[i];
|
4247
|
-
// event.highlights.push(ElementUtil.createSvgPath({
|
4248
|
-
// d: `M${currRen.pos.x} ${currRen.pos.y} L${currRen.pos.x + currRen.render.rect.width} ${currRen.pos.y} L${currRen.pos.x + currRen.render.rect.width} ${currRen.pos.y + currRen.render.rect.height} L${currRen.pos.x} ${currRen.pos.y + currRen.render.rect.height} Z`,
|
4249
|
-
// stroke: '#0050b3',
|
4250
|
-
// fill: 'none',
|
4251
|
-
// 'stroke-width': 1
|
4252
|
-
// }));
|
4253
|
-
// }
|
4254
4272
|
// }
|
4255
4273
|
}
|
4256
4274
|
/**
|
@@ -4357,6 +4375,30 @@ function renderUnderWavyLine(event, r, color) {
|
|
4357
4375
|
const path = ElementUtil.createSvgPath({ d, fill: 'none', stroke: color });
|
4358
4376
|
event.highlights.push(path);
|
4359
4377
|
}
|
4378
|
+
/**
|
4379
|
+
* 获取渲染元素相对稳当的位置
|
4380
|
+
* @param render
|
4381
|
+
* @param refPos
|
4382
|
+
*/
|
4383
|
+
function getRenderPosToDoc(render, refPos = null) {
|
4384
|
+
refPos = refPos ?? { x: 0, y: 0 };
|
4385
|
+
if (render instanceof DocumentRenderObject) {
|
4386
|
+
return refPos;
|
4387
|
+
}
|
4388
|
+
const currPos = { x: render.rect.x + refPos.x, y: render.rect.y + refPos.y };
|
4389
|
+
return getRenderPosToDoc(render.parent, currPos);
|
4390
|
+
}
|
4391
|
+
function getCurrentParaGroupRenders(r) {
|
4392
|
+
const renders = [];
|
4393
|
+
const currParaRender = ElementUtil.getParentRender(r, ParagraphRenderObject);
|
4394
|
+
for (let i = 0; i < r.element.paintRenders.length; i++) {
|
4395
|
+
const paraRender = ElementUtil.getParentRender(r.element.paintRenders[i], ParagraphRenderObject);
|
4396
|
+
if (paraRender === currParaRender) {
|
4397
|
+
renders.push(r.element.paintRenders[i]);
|
4398
|
+
}
|
4399
|
+
}
|
4400
|
+
return renders;
|
4401
|
+
}
|
4360
4402
|
function renderUnderline(event, render) {
|
4361
4403
|
const { x, y } = event.relativePagePos;
|
4362
4404
|
event.highlights.push({
|
@@ -8899,23 +8941,76 @@ function exportDataEleDecoratorSVG(event, r) {
|
|
8899
8941
|
}
|
8900
8942
|
const options = event.options;
|
8901
8943
|
let color = options.dataGroupNormalBgColor;
|
8944
|
+
let mode = 'background';
|
8902
8945
|
//空数据元填充颜色
|
8903
8946
|
if (r.element.length === 2 && options.dataGroupEmptyBgColor) {
|
8904
8947
|
color = options.dataGroupEmptyBgColor;
|
8905
8948
|
}
|
8906
8949
|
if (r.element.isMouseenter && options.dataGroupMouseEnterBgColor) {
|
8907
8950
|
color = options.dataGroupMouseEnterBgColor;
|
8951
|
+
mode = options.dataGroupMouseEnterDecoratorMode;
|
8908
8952
|
}
|
8909
8953
|
if (r.element.isFocused && options.dataGroupFocusedBgColor) {
|
8910
8954
|
color = options.dataGroupFocusedBgColor;
|
8955
|
+
mode = options.dataGroupFocusedDecoratorMode;
|
8911
8956
|
}
|
8912
8957
|
if (!color) {
|
8913
8958
|
return;
|
8914
8959
|
}
|
8915
8960
|
//绘制背景
|
8916
|
-
|
8917
|
-
|
8918
|
-
|
8961
|
+
if (['all', 'background'].includes(mode)) {
|
8962
|
+
const bgX = event.relativePagePos.x;
|
8963
|
+
const bgY = event.relativePagePos.y;
|
8964
|
+
event.highlights.push(ElementUtil.getFillSvgRect(bgX, bgY, r.rect.width, r.rect.height, color));
|
8965
|
+
}
|
8966
|
+
if (['all', 'outline'].includes(mode)) {
|
8967
|
+
color = event.options.dataGroupOutlineColor;
|
8968
|
+
const verOffset = 0;
|
8969
|
+
const renderPosMap = getCurrentParaGroupRenders(r).map(item => ({ pos: getRenderPosToDoc(item), render: item }));
|
8970
|
+
if (renderPosMap.length > 1) {
|
8971
|
+
const secondGroupRenderPos = renderPosMap[1].pos;
|
8972
|
+
if (secondGroupRenderPos.x + renderPosMap[1].render.rect.width > event.relativePagePos.x) {
|
8973
|
+
const leftPoints = [];
|
8974
|
+
const rightPoints = [];
|
8975
|
+
for (let i = 0; i < renderPosMap.length; i++) {
|
8976
|
+
const groupRender = renderPosMap[i].render;
|
8977
|
+
const groupRenderPos = renderPosMap[i].pos;
|
8978
|
+
leftPoints.push({ x: groupRenderPos.x, y: groupRenderPos.y - verOffset });
|
8979
|
+
rightPoints.push({
|
8980
|
+
x: groupRenderPos.x + groupRender.rect.width,
|
8981
|
+
y: groupRenderPos.y - verOffset
|
8982
|
+
});
|
8983
|
+
leftPoints.push({
|
8984
|
+
x: groupRenderPos.x,
|
8985
|
+
y: groupRenderPos.y + groupRender.rect.height + verOffset * 2
|
8986
|
+
});
|
8987
|
+
rightPoints.push({
|
8988
|
+
x: groupRenderPos.x + groupRender.rect.width,
|
8989
|
+
y: groupRenderPos.y + groupRender.rect.height + verOffset * 2
|
8990
|
+
});
|
8991
|
+
}
|
8992
|
+
const sharpPoints1 = CommonUtil.resharpPoints(rightPoints);
|
8993
|
+
const sharpPoints = CommonUtil.resharpPoints([...leftPoints.reverse()]);
|
8994
|
+
const path = [...sharpPoints, ...sharpPoints1, sharpPoints[0]].map((item, index) => ((index === 0) ? 'M' : "L") + item.x + " " + item.y).join(" ");
|
8995
|
+
event.highlights.push(ElementUtil.createSvgPath({
|
8996
|
+
d: path,
|
8997
|
+
stroke: color,
|
8998
|
+
fill: 'none',
|
8999
|
+
'stroke-width': 1
|
9000
|
+
}));
|
9001
|
+
return;
|
9002
|
+
}
|
9003
|
+
}
|
9004
|
+
for (let i = 0; i < renderPosMap.length; i++) {
|
9005
|
+
const currRen = renderPosMap[i];
|
9006
|
+
event.highlights.push(ElementUtil.createSvgPath({
|
9007
|
+
d: `M${currRen.pos.x} ${currRen.pos.y} L${currRen.pos.x + currRen.render.rect.width} ${currRen.pos.y} L${currRen.pos.x + currRen.render.rect.width} ${currRen.pos.y + currRen.render.rect.height} L${currRen.pos.x} ${currRen.pos.y + currRen.render.rect.height} Z`,
|
9008
|
+
stroke: color,
|
9009
|
+
fill: 'none',
|
9010
|
+
'stroke-width': 1
|
9011
|
+
}));
|
9012
|
+
}
|
9013
|
+
}
|
8919
9014
|
}
|
8920
9015
|
|
8921
9016
|
class DataElementImage extends DataElementLeaf {
|
@@ -14228,6 +14323,11 @@ class ParagraphMeasure {
|
|
14228
14323
|
parent: parentLine,
|
14229
14324
|
isCloseToBody: parentLine.isCloseToBody,
|
14230
14325
|
applyNewLine() {
|
14326
|
+
//申请新行前,需要将当前内联元素的宽度扩充到可用最大宽度
|
14327
|
+
const space = parentLine.limitWidth - parentLine.lineWidth();
|
14328
|
+
if (space > 0) {
|
14329
|
+
render.rect.width += space;
|
14330
|
+
}
|
14231
14331
|
parentLine.applyNewLine();
|
14232
14332
|
render = ele.createRenderObject({ options, renderCtx, execute });
|
14233
14333
|
parentLine.add(render);
|
@@ -19723,7 +19823,6 @@ class DocumentSvg {
|
|
19723
19823
|
fill: item.color ?? this.viewOptions.selectionColor,
|
19724
19824
|
'paint-order': 'stroke fill markers',
|
19725
19825
|
d: `M${item.x} ${item.y} L${item.x + item.width} ${item.y} L${item.x + item.width} ${item.y + item.height} L${item.x} ${item.y + item.height} Z`,
|
19726
|
-
'fill-opacity': '0.5'
|
19727
19826
|
}
|
19728
19827
|
}
|
19729
19828
|
}));
|
@@ -22345,7 +22444,7 @@ class DocEditor {
|
|
22345
22444
|
rule.setRuleOptions({ width: this.viewOptions.docPageSettings.width, pagePL, pagePR, docLeft });
|
22346
22445
|
}
|
22347
22446
|
version() {
|
22348
|
-
return "2.2.
|
22447
|
+
return "2.2.18";
|
22349
22448
|
}
|
22350
22449
|
switchPageHeaderEditor() {
|
22351
22450
|
this.docCtx.document.switchPageHeaderEditor(this.selectionState, null);
|
@@ -28101,5 +28200,5 @@ function removeDuplicatesEvent(events) {
|
|
28101
28200
|
return arr;
|
28102
28201
|
}
|
28103
28202
|
|
28104
|
-
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, exportDataEleDecoratorSVG$1 as exportDataEleDecoratorSVG, falseChar, fontMapFunc, formatEle, fromEvent, generatePatch, getCalleeName, getFocusTextSegment, inputText, insertEle, invokeTypeHandler, isDate, logUpdateEleProps, objectToString$4 as objectToString, onTableContextmenu, onceTask, parser, reactiveMap, refreshEditor, removeEle, removeText, renderErrorTip, renderUnderWavyLine, renderUnderline, runTextLineRender, setChildrenModifyFlag, setNotifyChangedCallback, setTraceTrackingFlag, suppressTracking, targetMaps, textLineRenderMode, toRawType, toTypeString, trueChar, validateDataEle, validateDataEleRenderObj, validateDataGroup, validateInlineInputRenderObj, watchChanged };
|
28203
|
+
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, exportDataEleDecoratorSVG$1 as exportDataEleDecoratorSVG, falseChar, fontMapFunc, formatEle, fromEvent, generatePatch, getCalleeName, getCurrentParaGroupRenders, getFocusTextSegment, getRenderPosToDoc, inputText, insertEle, invokeTypeHandler, isDate, logUpdateEleProps, objectToString$4 as objectToString, onTableContextmenu, onceTask, parser, reactiveMap, refreshEditor, removeEle, removeText, renderErrorTip, renderUnderWavyLine, renderUnderline, runTextLineRender, setChildrenModifyFlag, setNotifyChangedCallback, setTraceTrackingFlag, suppressTracking, targetMaps, textLineRenderMode, toRawType, toTypeString, trueChar, validateDataEle, validateDataEleRenderObj, validateDataGroup, validateInlineInputRenderObj, watchChanged };
|
28105
28204
|
//# sourceMappingURL=index.js.map
|