jspreadsheet 11.3.3 → 11.4.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 +3 -1
- package/dist/index.js +553 -549
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ declare namespace jspreadsheet {
|
|
|
73
73
|
function validations() : void;
|
|
74
74
|
|
|
75
75
|
/** Jspreadsheet bar extension. More info at: https://jspreadsheet.com/products */
|
|
76
|
-
function bar(options
|
|
76
|
+
function bar(options?: { suggestions?: boolean }) : void;
|
|
77
77
|
|
|
78
78
|
/** Jspreadsheet charts extension. More info at: https://jspreadsheet.com/products */
|
|
79
79
|
function charts() : void;
|
|
@@ -1350,6 +1350,8 @@ declare namespace jspreadsheet {
|
|
|
1350
1350
|
|
|
1351
1351
|
/** Get the style from a cell or all cells. getStyle() or getStyle('A1') */
|
|
1352
1352
|
getStyle: (cellName?: string|null, onlyIndexes?: boolean) => string|object;
|
|
1353
|
+
/** Find a style ID from a style string. Null when no styleId is found */
|
|
1354
|
+
getStyleId: (styleString?: string) => number|null;
|
|
1353
1355
|
/** Get value by the cell name or object. The value can be the raw or processed value. */
|
|
1354
1356
|
getValue: (cell: string, processed: boolean) => string;
|
|
1355
1357
|
/** Get value by the coordinates. The value can be the source or processed value, including not formatted proceed data. */
|