jspreadsheet 10.0.2-beta.6 → 10.0.2-beta.7
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 -2
- package/dist/index.js +621 -621
- package/dist/jspreadsheet.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1520,8 +1520,8 @@ declare namespace jspreadsheet {
|
|
|
1520
1520
|
resetValidations: (validationIndex?: number | number[]) => void;
|
|
1521
1521
|
/** Load all validations rules from a cell based on its coordinates. */
|
|
1522
1522
|
loadValidations: (xOrCell: number|object, y?: number) => object[];
|
|
1523
|
-
/** This method returns true
|
|
1524
|
-
hasErrors: (
|
|
1523
|
+
/** This method returns true if a cell fails to meet all the defined validation criteria. If invoked without arguments, this method will scan the entire worksheet and return true if it detects validation errors. */
|
|
1524
|
+
hasErrors: (col?: number|object, row?: number) => boolean;
|
|
1525
1525
|
/** Resize columns to match the visible content */
|
|
1526
1526
|
autoWidth: (columns: number[]) => void;
|
|
1527
1527
|
/** Show the column headers */
|