jspreadsheet 11.4.11 → 11.5.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 +2 -0
- package/dist/index.js +553 -551
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1359,6 +1359,8 @@ declare namespace jspreadsheet {
|
|
|
1359
1359
|
|
|
1360
1360
|
/** Get the style from a cell or all cells. getStyle() or getStyle('A1') */
|
|
1361
1361
|
getStyle: (cellName?: string|null, onlyIndexes?: boolean) => string|object;
|
|
1362
|
+
/** Get the style index from a cell or all cells */
|
|
1363
|
+
getStyleIndexes: (cellName?: string|null) => number|object;
|
|
1362
1364
|
/** Find a style ID from a style string. Null when no styleId is found */
|
|
1363
1365
|
getStyleId: (styleString?: string) => number|null;
|
|
1364
1366
|
/** Get value by the cell name or object. The value can be the raw or processed value. */
|