jspreadsheet 11.12.0 → 11.13.0
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/index.d.ts +4 -1
- package/dist/index.js +567 -566
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -625,6 +625,8 @@ declare namespace jspreadsheet {
|
|
|
625
625
|
wrap?: boolean;
|
|
626
626
|
/** The rotation angle for the text value, between -90 and 90. Default: null. */
|
|
627
627
|
rotate?: number;
|
|
628
|
+
/** Can be used to map JSON properties or help to group type radio cells */
|
|
629
|
+
name?: string;
|
|
628
630
|
/** Record editor */
|
|
629
631
|
worksheetId?: string;
|
|
630
632
|
worksheetColumn?: number;
|
|
@@ -1578,9 +1580,10 @@ declare namespace jspreadsheet {
|
|
|
1578
1580
|
setHeader: (x: number, title?: string) => false | undefined;
|
|
1579
1581
|
/** Set the height of one row by its position. currentHeight is for internal use only */
|
|
1580
1582
|
setHeight: (row: number|number[], height: number|number[], currentHeight?: number|number[]) => void;
|
|
1581
|
-
/**
|
|
1583
|
+
/** Create a merge cells based on a given cell, colspan and rowspan or an object multiple entries A1: [1,1], or null for the current selected cells */
|
|
1582
1584
|
setMerge(cellName: Record<string, [number, number]>): false | undefined;
|
|
1583
1585
|
setMerge(cellName: string, colspan: number, rowspan: number): false | undefined;
|
|
1586
|
+
setMerge(): false | undefined;
|
|
1584
1587
|
/** Get one or various meta information for one cell. */
|
|
1585
1588
|
setMeta: (cell: string | Record<string, any>, property?: string, value?: string) => false | undefined;
|
|
1586
1589
|
/** Set the nested headers */
|