@cj-tech-master/excelts 5.1.0 → 5.1.1
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/dist/browser/modules/excel/worksheet.d.ts +4 -0
- package/dist/browser/modules/excel/worksheet.js +155 -7
- package/dist/cjs/modules/excel/worksheet.js +155 -7
- package/dist/esm/modules/excel/worksheet.js +155 -7
- package/dist/iife/excelts.iife.js +72 -7
- package/dist/iife/excelts.iife.js.map +1 -1
- package/dist/iife/excelts.iife.min.js +2 -2
- package/dist/types/modules/excel/worksheet.d.ts +4 -0
- package/package.json +1 -1
|
@@ -283,6 +283,10 @@ declare class Worksheet {
|
|
|
283
283
|
mergeCellsWithoutStyle(...cells: RangeInput[]): void;
|
|
284
284
|
_mergeCellsInternal(dimensions: Range, ignoreStyle?: boolean): void;
|
|
285
285
|
_unMergeMaster(master: Cell): void;
|
|
286
|
+
/**
|
|
287
|
+
* Update _merges dictionary and cell-level merge references after a row or column splice.
|
|
288
|
+
*/
|
|
289
|
+
private _spliceMerges;
|
|
286
290
|
get hasMerges(): boolean;
|
|
287
291
|
/**
|
|
288
292
|
* Scan the range and if any cell is part of a merge, un-merge the group.
|