@hailin-zheng/editor-core 2.2.1 → 2.2.3

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.
Files changed (90) hide show
  1. package/editor.css +610 -559
  2. package/index-cjs.d.ts +31 -31
  3. package/index-cjs.js +22202 -22146
  4. package/index-cjs.js.map +1 -1
  5. package/index.d.ts +31 -31
  6. package/index.js +22204 -22149
  7. package/index.js.map +1 -1
  8. package/med_editor/doc-editor.d.ts +464 -461
  9. package/med_editor/doc-rule.d.ts +46 -46
  10. package/med_editor/editor-core.d.ts +21 -21
  11. package/med_editor/framework/code-interpreter/ast-parser.d.ts +4 -4
  12. package/med_editor/framework/code-interpreter/document-eval-func.d.ts +18 -18
  13. package/med_editor/framework/code-interpreter/dynamic-execute.d.ts +23 -23
  14. package/med_editor/framework/doc-layout/document-arrange.d.ts +86 -80
  15. package/med_editor/framework/doc-layout/paragraph-arrange.d.ts +107 -107
  16. package/med_editor/framework/document-change.d.ts +295 -295
  17. package/med_editor/framework/document-combine.d.ts +24 -24
  18. package/med_editor/framework/document-comment.d.ts +38 -38
  19. package/med_editor/framework/document-context.d.ts +133 -136
  20. package/med_editor/framework/document-event.d.ts +251 -251
  21. package/med_editor/framework/document-input-cursor.d.ts +43 -43
  22. package/med_editor/framework/document-paginator.d.ts +46 -41
  23. package/med_editor/framework/document-svg.d.ts +36 -36
  24. package/med_editor/framework/document-template.d.ts +13 -13
  25. package/med_editor/framework/document-textline-mode.d.ts +6 -6
  26. package/med_editor/framework/element-define.d.ts +409 -406
  27. package/med_editor/framework/element-event-define.d.ts +107 -107
  28. package/med_editor/framework/element-props.d.ts +343 -344
  29. package/med_editor/framework/element-reader.d.ts +20 -20
  30. package/med_editor/framework/element-serialize.d.ts +36 -36
  31. package/med_editor/framework/element-type-handler.d.ts +9 -9
  32. package/med_editor/framework/history/element-trace-manage.d.ts +107 -107
  33. package/med_editor/framework/history/element-trace-tracking.d.ts +89 -89
  34. package/med_editor/framework/impl/checkbox/checkbox-impl.d.ts +19 -19
  35. package/med_editor/framework/impl/comments/comment-content-impl.d.ts +39 -39
  36. package/med_editor/framework/impl/comments/comment-element-impl.d.ts +24 -24
  37. package/med_editor/framework/impl/comments/comments-container-impl.d.ts +19 -19
  38. package/med_editor/framework/impl/comments/validate-msg-impl.d.ts +19 -19
  39. package/med_editor/framework/impl/data-element/data-decorate-impl.d.ts +15 -15
  40. package/med_editor/framework/impl/data-element/data-element-barcode.d.ts +32 -32
  41. package/med_editor/framework/impl/data-element/data-element-base-impl.d.ts +96 -96
  42. package/med_editor/framework/impl/data-element/data-element-check-impl.d.ts +26 -26
  43. package/med_editor/framework/impl/data-element/data-element-date-impl.d.ts +23 -23
  44. package/med_editor/framework/impl/data-element/data-element-group-impl.d.ts +17 -17
  45. package/med_editor/framework/impl/data-element/data-element-image-impl.d.ts +23 -23
  46. package/med_editor/framework/impl/data-element/data-element-list-impl.d.ts +21 -21
  47. package/med_editor/framework/impl/data-element/data-element-text-impl.d.ts +22 -22
  48. package/med_editor/framework/impl/data-element/qrcode.d.ts +93 -93
  49. package/med_editor/framework/impl/decorate/fill-null-space-imple.d.ts +16 -16
  50. package/med_editor/framework/impl/document/doc-body-impl.d.ts +19 -20
  51. package/med_editor/framework/impl/document/doc-body-part-impl.d.ts +22 -22
  52. package/med_editor/framework/impl/document/doc-container-impl.d.ts +7 -7
  53. package/med_editor/framework/impl/document/doc-footer-impl.d.ts +19 -19
  54. package/med_editor/framework/impl/document/doc-header-impl.d.ts +19 -19
  55. package/med_editor/framework/impl/document/doc-impl.d.ts +72 -71
  56. package/med_editor/framework/impl/index.d.ts +39 -39
  57. package/med_editor/framework/impl/media-formula/menstrual-history.d.ts +31 -31
  58. package/med_editor/framework/impl/media-formula/permanent-teeth.d.ts +34 -34
  59. package/med_editor/framework/impl/paragraph/p-impl.d.ts +38 -38
  60. package/med_editor/framework/impl/picture/RectEle.d.ts +44 -44
  61. package/med_editor/framework/impl/picture/image-impl.d.ts +24 -24
  62. package/med_editor/framework/impl/radio/radio-impl.d.ts +17 -17
  63. package/med_editor/framework/impl/svg/svg-impl.d.ts +20 -20
  64. package/med_editor/framework/impl/symbol/br-symbol-impl.d.ts +18 -18
  65. package/med_editor/framework/impl/symbol/p-symbol-impl.d.ts +16 -16
  66. package/med_editor/framework/impl/symbol/page-br-symbol-impl.d.ts +20 -20
  67. package/med_editor/framework/impl/symbol/tab-symbol-impl.d.ts +15 -15
  68. package/med_editor/framework/impl/table/table-cell-impl.d.ts +34 -34
  69. package/med_editor/framework/impl/table/table-impl.d.ts +49 -49
  70. package/med_editor/framework/impl/table/table-row-impl.d.ts +27 -27
  71. package/med_editor/framework/impl/table/table-split-cell-patch.d.ts +20 -20
  72. package/med_editor/framework/impl/table/table-split-cell.d.ts +92 -92
  73. package/med_editor/framework/impl/table/table-util.d.ts +180 -180
  74. package/med_editor/framework/impl/text/text-impl.d.ts +34 -34
  75. package/med_editor/framework/impl/text/track-run-impl.d.ts +27 -27
  76. package/med_editor/framework/infrastructure/event-subject.d.ts +56 -56
  77. package/med_editor/framework/infrastructure/notify.d.ts +13 -13
  78. package/med_editor/framework/print/document-print-offscreen.d.ts +58 -58
  79. package/med_editor/framework/print/document-print.d.ts +18 -18
  80. package/med_editor/framework/render-context.d.ts +111 -111
  81. package/med_editor/framework/render-define.d.ts +141 -141
  82. package/med_editor/framework/selection/document-selection.d.ts +91 -97
  83. package/med_editor/framework/selection/range-util.d.ts +36 -36
  84. package/med_editor/framework/selection/selection-overlays.d.ts +32 -32
  85. package/med_editor/framework/util/adjust-viewport-elements.d.ts +12 -12
  86. package/med_editor/framework/util/common-util.d.ts +76 -76
  87. package/med_editor/framework/util/document-segmenter.d.ts +2 -2
  88. package/med_editor/framework/util/element-util.d.ts +410 -410
  89. package/med_editor/framework/vnode/editor-calendar-vnode.d.ts +42 -42
  90. package/package.json +19 -19
@@ -1,15 +1,15 @@
1
- import { Element, ElementFactory, LeafElement, SerializeProps } from "../../element-define";
2
- import { LeafRenderObject, RenderObject } from "../../render-define";
3
- export declare class TabElement extends LeafElement {
4
- constructor();
5
- createRenderObject(): LeafRenderObject;
6
- serialize(): SerializeProps;
7
- clone(): Element;
8
- }
9
- export declare class TabRenderObject extends LeafRenderObject<TabElement> {
10
- clone(): RenderObject;
11
- }
12
- export declare class TabFactory extends ElementFactory<null> {
13
- match(type: string): boolean;
14
- createElement(data: any): Element;
15
- }
1
+ import { Element, ElementFactory, LeafElement, SerializeProps } from "../../element-define";
2
+ import { LeafRenderObject, RenderObject } from "../../render-define";
3
+ export declare class TabElement extends LeafElement {
4
+ constructor();
5
+ createRenderObject(): LeafRenderObject;
6
+ serialize(): SerializeProps;
7
+ clone(): Element;
8
+ }
9
+ export declare class TabRenderObject extends LeafRenderObject<TabElement> {
10
+ clone(): RenderObject;
11
+ }
12
+ export declare class TabFactory extends ElementFactory<null> {
13
+ match(type: string): boolean;
14
+ createElement(data: any): Element;
15
+ }
@@ -1,34 +1,34 @@
1
- import { BlockContainerElement, Element, ElementFactory, IBeginMeasureData, ICreateRenderData, readElementProps, SerializeProps, ViewOptions } from "../../element-define";
2
- import { TableCellProps } from "../../element-props";
3
- import { IEditorVNodeOptions, InlineMuiltBlockLineRenderObject, RenderObject } from "../../render-define";
4
- export declare class TableCellElement extends BlockContainerElement<TableCellProps> {
5
- constructor();
6
- beginMeasure(data: IBeginMeasureData): void;
7
- /**
8
- * 不被合并单元格的单元格
9
- * @returns
10
- */
11
- isNotBeMergedCell(): boolean;
12
- createRenderObject(data: ICreateRenderData): RenderObject | null;
13
- serialize(options: ViewOptions): SerializeProps;
14
- clone(data: boolean): Element;
15
- getCellWidth(): {
16
- cellWidth: number;
17
- cellOffset: number;
18
- };
19
- static createCell(): TableCellElement;
20
- }
21
- export declare class TableCellRenderObject extends InlineMuiltBlockLineRenderObject<TableCellElement> {
22
- /**
23
- * 绘制对角线
24
- * @private
25
- */
26
- private renderDiagonalHTML;
27
- clone(): RenderObject;
28
- exportSVG(event: IEditorVNodeOptions): any;
29
- private createBgRect;
30
- }
31
- export declare class TableCellFactory extends ElementFactory<TableCellProps> {
32
- match(type: string): boolean;
33
- createElement(data: readElementProps<TableCellProps>): Element;
34
- }
1
+ import { BlockContainerElement, Element, ElementFactory, IBeginMeasureData, ICreateRenderData, readElementProps, SerializeProps, ViewOptions } from "../../element-define";
2
+ import { TableCellProps } from "../../element-props";
3
+ import { IEditorVNodeOptions, InlineMuiltBlockLineRenderObject, RenderObject } from "../../render-define";
4
+ export declare class TableCellElement extends BlockContainerElement<TableCellProps> {
5
+ constructor();
6
+ beginMeasure(data: IBeginMeasureData): void;
7
+ /**
8
+ * 不被合并单元格的单元格
9
+ * @returns
10
+ */
11
+ isNotBeMergedCell(): boolean;
12
+ createRenderObject(data: ICreateRenderData): RenderObject | null;
13
+ serialize(options: ViewOptions): SerializeProps;
14
+ clone(data: boolean): Element;
15
+ getCellWidth(): {
16
+ cellWidth: number;
17
+ cellOffset: number;
18
+ };
19
+ static createCell(): TableCellElement;
20
+ }
21
+ export declare class TableCellRenderObject extends InlineMuiltBlockLineRenderObject<TableCellElement> {
22
+ /**
23
+ * 绘制对角线
24
+ * @private
25
+ */
26
+ private renderDiagonalHTML;
27
+ clone(): RenderObject;
28
+ exportSVG(event: IEditorVNodeOptions): any;
29
+ private createBgRect;
30
+ }
31
+ export declare class TableCellFactory extends ElementFactory<TableCellProps> {
32
+ match(type: string): boolean;
33
+ createElement(data: readElementProps<TableCellProps>): Element;
34
+ }
@@ -1,49 +1,49 @@
1
- import { BlockContainerElement, Element, ElementFactory, IBeginMeasureData, ICreateRenderData, SerializeProps, ViewOptions } from "../../element-define";
2
- import { TableProps } from "../../element-props";
3
- import { IEditorVNodeOptions, MuiltBlockLineRenderObject, RenderObject } from "../../render-define";
4
- export declare class TableElement extends BlockContainerElement<TableProps> {
5
- private _actualColsProps;
6
- constructor();
7
- /**
8
- * 获取实际测量的宽度,将auto、百分比列宽度进行转化为 number 类型
9
- */
10
- get actualColsProps(): IColsData[];
11
- getCellWidth(cellIndex: number): number;
12
- getCellOffsetX(cellIndex: number): number;
13
- setCellWidth(cellIndex: number, width: number): void;
14
- /**
15
- * 插入列的定义
16
- * @param index
17
- * @param width
18
- */
19
- insertCol(index: number, width: number): void;
20
- /**
21
- * 移除列的定义
22
- * @param index
23
- */
24
- removeCol(index: number): void;
25
- getColsCount(): number;
26
- clone(data: boolean): Element;
27
- createRenderObject(): RenderObject;
28
- beginMeasure(data: IBeginMeasureData): void;
29
- serialize(options: ViewOptions): SerializeProps;
30
- }
31
- export declare class TableRenderObject extends MuiltBlockLineRenderObject<TableElement> {
32
- setRenderWidth(maxWidth: number): void;
33
- private exportTableBorder;
34
- clone(): RenderObject;
35
- exportSVG(event: IEditorVNodeOptions): any;
36
- }
37
- export declare class TableFactory extends ElementFactory<TableProps> {
38
- match(type: string): boolean;
39
- createElement(data: any): Element;
40
- }
41
- /**
42
- * 行-表格渲染模式
43
- */
44
- export declare function textLineRenderMode(tbRender: TableRenderObject, data: ICreateRenderData): boolean;
45
- interface IColsData {
46
- width: number;
47
- offset: number;
48
- }
49
- export {};
1
+ import { BlockContainerElement, Element, ElementFactory, IBeginMeasureData, ICreateRenderData, SerializeProps, ViewOptions } from "../../element-define";
2
+ import { TableProps } from "../../element-props";
3
+ import { IEditorVNodeOptions, MuiltBlockLineRenderObject, RenderObject } from "../../render-define";
4
+ export declare class TableElement extends BlockContainerElement<TableProps> {
5
+ private _actualColsProps;
6
+ constructor();
7
+ /**
8
+ * 获取实际测量的宽度,将auto、百分比列宽度进行转化为 number 类型
9
+ */
10
+ get actualColsProps(): IColsData[];
11
+ getCellWidth(cellIndex: number): number;
12
+ getCellOffsetX(cellIndex: number): number;
13
+ setCellWidth(cellIndex: number, width: number): void;
14
+ /**
15
+ * 插入列的定义
16
+ * @param index
17
+ * @param width
18
+ */
19
+ insertCol(index: number, width: number): void;
20
+ /**
21
+ * 移除列的定义
22
+ * @param index
23
+ */
24
+ removeCol(index: number): void;
25
+ getColsCount(): number;
26
+ clone(data: boolean): Element;
27
+ createRenderObject(): RenderObject;
28
+ beginMeasure(data: IBeginMeasureData): void;
29
+ serialize(options: ViewOptions): SerializeProps;
30
+ }
31
+ export declare class TableRenderObject extends MuiltBlockLineRenderObject<TableElement> {
32
+ setRenderWidth(maxWidth: number): void;
33
+ private exportTableBorder;
34
+ clone(): RenderObject;
35
+ exportSVG(event: IEditorVNodeOptions): any;
36
+ }
37
+ export declare class TableFactory extends ElementFactory<TableProps> {
38
+ match(type: string): boolean;
39
+ createElement(data: any): Element;
40
+ }
41
+ /**
42
+ * 行-表格渲染模式
43
+ */
44
+ export declare function textLineRenderMode(tbRender: TableRenderObject, data: ICreateRenderData): boolean;
45
+ interface IColsData {
46
+ width: number;
47
+ offset: number;
48
+ }
49
+ export {};
@@ -1,27 +1,27 @@
1
- import { BlockContainerElement, Element, ElementFactory, IBeginMeasureData, readElementProps, SerializeProps, ViewOptions } from "../../element-define";
2
- import { TableRowProps } from "../../element-props";
3
- import { MuiltBlockLineRenderObject, RenderObject } from "../../render-define";
4
- export declare const RowMinHeight = 20;
5
- export declare class TableRowElement extends BlockContainerElement<TableRowProps> {
6
- constructor();
7
- beginMeasure(data: IBeginMeasureData): void;
8
- /**
9
- * 解决纵向合并行的行缓存高度bug
10
- * @private
11
- */
12
- private checkRowModifyState;
13
- createRenderObject(): RenderObject;
14
- serialize(viewOptions: ViewOptions): SerializeProps;
15
- clone(data: boolean): Element;
16
- static createRow(cols: number): TableRowElement;
17
- }
18
- export declare class TableRowRenderObject extends MuiltBlockLineRenderObject<TableRowElement> {
19
- remeasureState: boolean;
20
- hasMergeCells: boolean | undefined;
21
- minHeight: number;
22
- clone(): RenderObject;
23
- }
24
- export declare class TableRowFactory extends ElementFactory<TableRowProps> {
25
- match(type: string): boolean;
26
- createElement(data: readElementProps<TableRowProps>): Element;
27
- }
1
+ import { BlockContainerElement, Element, ElementFactory, IBeginMeasureData, readElementProps, SerializeProps, ViewOptions } from "../../element-define";
2
+ import { TableRowProps } from "../../element-props";
3
+ import { MuiltBlockLineRenderObject, RenderObject } from "../../render-define";
4
+ export declare const RowMinHeight = 20;
5
+ export declare class TableRowElement extends BlockContainerElement<TableRowProps> {
6
+ constructor();
7
+ beginMeasure(data: IBeginMeasureData): void;
8
+ /**
9
+ * 解决纵向合并行的行缓存高度bug
10
+ * @private
11
+ */
12
+ private checkRowModifyState;
13
+ createRenderObject(): RenderObject;
14
+ serialize(viewOptions: ViewOptions): SerializeProps;
15
+ clone(data: boolean): Element;
16
+ static createRow(cols: number): TableRowElement;
17
+ }
18
+ export declare class TableRowRenderObject extends MuiltBlockLineRenderObject<TableRowElement> {
19
+ remeasureState: boolean;
20
+ hasMergeCells: boolean | undefined;
21
+ minHeight: number;
22
+ clone(): RenderObject;
23
+ }
24
+ export declare class TableRowFactory extends ElementFactory<TableRowProps> {
25
+ match(type: string): boolean;
26
+ createElement(data: readElementProps<TableRowProps>): Element;
27
+ }
@@ -1,20 +1,20 @@
1
- export interface ColumnPartOffset extends ColumnPart {
2
- offset: number;
3
- }
4
- export interface ColumnPart {
5
- index: number;
6
- width: number;
7
- }
8
- export interface ColumnPatch {
9
- type: 'modify' | 'insert';
10
- data: ColumnPart;
11
- }
12
- export declare class ColumnPatchUtil {
13
- static getPatchPacks(cols: Array<ColumnPart>, splitCols: Array<ColumnPart>): [Array<{
14
- part: ColumnPartOffset;
15
- patchs: Array<ColumnPatch>;
16
- }>, Array<Array<ColumnPart>>];
17
- private static getColumn;
18
- private static getSplitCols;
19
- private static getLinePointMap;
20
- }
1
+ export interface ColumnPartOffset extends ColumnPart {
2
+ offset: number;
3
+ }
4
+ export interface ColumnPart {
5
+ index: number;
6
+ width: number;
7
+ }
8
+ export interface ColumnPatch {
9
+ type: 'modify' | 'insert';
10
+ data: ColumnPart;
11
+ }
12
+ export declare class ColumnPatchUtil {
13
+ static getPatchPacks(cols: Array<ColumnPart>, splitCols: Array<ColumnPart>): [Array<{
14
+ part: ColumnPartOffset;
15
+ patchs: Array<ColumnPatch>;
16
+ }>, Array<Array<ColumnPart>>];
17
+ private static getColumn;
18
+ private static getSplitCols;
19
+ private static getLinePointMap;
20
+ }
@@ -1,92 +1,92 @@
1
- import { SelectionState } from "../../selection/document-selection";
2
- /**
3
- * 拆分单元格
4
- * 蜀道难,难于上青天;拆分单元格,头发秃,精神衰,眼睛昏,身体废。
5
- *
6
- * 1.拆分为多列规则:不影响其他列宽度,将当前列宽度均分
7
- */
8
- export declare class TableSplitCell {
9
- /**
10
- *
11
- * 普通单元格可以任意拆分行和列
12
- * 已合并的单元格,可以拆分任意数量的列;可以拆分的数量必须为合并单元格数量的约数
13
- */
14
- static splitCell(ss: SelectionState, rows: number, cols: number): void;
15
- /**
16
- * 拆分普通的单元格
17
- */
18
- private static splitNormalCell;
19
- /**
20
- * 拆分合并的单元格
21
- * @param ss
22
- * @param rows
23
- * @param cols
24
- */
25
- static splitMergeCell(ss: SelectionState, rows: number, cols: number): void;
26
- /**
27
- * 拆分横向正常的单元格
28
- * @param ss
29
- * @param rows
30
- * @param cols
31
- */
32
- static horSplitHorNormalCell(ss: SelectionState, rows: number, cols: number): {
33
- startColIndex: number;
34
- endColIndex: number;
35
- };
36
- /**
37
- * 横向拆分合并的单元格
38
- * @param ss
39
- * @param rows
40
- * @param cols
41
- */
42
- static horSplitHorMergeCell(ss: SelectionState, rows: number, cols: number): {
43
- startColIndex: number;
44
- endColIndex: number;
45
- };
46
- /**
47
- * 获取需要新创建的列数量
48
- */
49
- private static getPrepareNewColCounts;
50
- /**
51
- * 应用横向拆分单元格补丁
52
- */
53
- private static applyHorSplitColumnPatchPacks;
54
- /**
55
- * 存在横向合并的单元格,进行单元格分拆,打补丁
56
- * @param tb
57
- * @param focusRowIndex
58
- * @param focusColInex
59
- * @param splitRows
60
- * @param packs
61
- */
62
- private static applyHorSplitColumnCurrPatchPacks;
63
- /**
64
- * 纵向拆分合并的单元格
65
- * 在指定行下插入复制行
66
- * 存在
67
- */
68
- private static verSplitVerMergeCell;
69
- private static getSplitCols;
70
- /**
71
- * 获取横向合并的列
72
- * @param tb
73
- * @param currRowIndex
74
- * @param currColIndex
75
- * @param splitCols
76
- */
77
- private static getHMergeCols;
78
- /**
79
- * 获取纵向合并的行数
80
- * @param tb
81
- * @param rowIndex
82
- * @param colIndex
83
- */
84
- private static getVMergeRowsCount;
85
- /**
86
- * 获取纵向合并的行数
87
- * @param tb
88
- * @param rowIndex
89
- * @param colIndex
90
- */
91
- private static getHMergeColsCount;
92
- }
1
+ import { SelectionState } from "../../selection/document-selection";
2
+ /**
3
+ * 拆分单元格
4
+ * 蜀道难,难于上青天;拆分单元格,头发秃,精神衰,眼睛昏,身体废。
5
+ *
6
+ * 1.拆分为多列规则:不影响其他列宽度,将当前列宽度均分
7
+ */
8
+ export declare class TableSplitCell {
9
+ /**
10
+ *
11
+ * 普通单元格可以任意拆分行和列
12
+ * 已合并的单元格,可以拆分任意数量的列;可以拆分的数量必须为合并单元格数量的约数
13
+ */
14
+ static splitCell(ss: SelectionState, rows: number, cols: number): void;
15
+ /**
16
+ * 拆分普通的单元格
17
+ */
18
+ private static splitNormalCell;
19
+ /**
20
+ * 拆分合并的单元格
21
+ * @param ss
22
+ * @param rows
23
+ * @param cols
24
+ */
25
+ static splitMergeCell(ss: SelectionState, rows: number, cols: number): void;
26
+ /**
27
+ * 拆分横向正常的单元格
28
+ * @param ss
29
+ * @param rows
30
+ * @param cols
31
+ */
32
+ static horSplitHorNormalCell(ss: SelectionState, rows: number, cols: number): {
33
+ startColIndex: number;
34
+ endColIndex: number;
35
+ };
36
+ /**
37
+ * 横向拆分合并的单元格
38
+ * @param ss
39
+ * @param rows
40
+ * @param cols
41
+ */
42
+ static horSplitHorMergeCell(ss: SelectionState, rows: number, cols: number): {
43
+ startColIndex: number;
44
+ endColIndex: number;
45
+ };
46
+ /**
47
+ * 获取需要新创建的列数量
48
+ */
49
+ private static getPrepareNewColCounts;
50
+ /**
51
+ * 应用横向拆分单元格补丁
52
+ */
53
+ private static applyHorSplitColumnPatchPacks;
54
+ /**
55
+ * 存在横向合并的单元格,进行单元格分拆,打补丁
56
+ * @param tb
57
+ * @param focusRowIndex
58
+ * @param focusColInex
59
+ * @param splitRows
60
+ * @param packs
61
+ */
62
+ private static applyHorSplitColumnCurrPatchPacks;
63
+ /**
64
+ * 纵向拆分合并的单元格
65
+ * 在指定行下插入复制行
66
+ * 存在
67
+ */
68
+ private static verSplitVerMergeCell;
69
+ private static getSplitCols;
70
+ /**
71
+ * 获取横向合并的列
72
+ * @param tb
73
+ * @param currRowIndex
74
+ * @param currColIndex
75
+ * @param splitCols
76
+ */
77
+ private static getHMergeCols;
78
+ /**
79
+ * 获取纵向合并的行数
80
+ * @param tb
81
+ * @param rowIndex
82
+ * @param colIndex
83
+ */
84
+ private static getVMergeRowsCount;
85
+ /**
86
+ * 获取纵向合并的行数
87
+ * @param tb
88
+ * @param rowIndex
89
+ * @param colIndex
90
+ */
91
+ private static getHMergeColsCount;
92
+ }