jspreadsheet 9.2.10 → 9.3.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 +5 -1
- package/dist/index.js +489 -486
- package/dist/jspreadsheet.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -690,7 +690,9 @@ declare namespace jspreadsheet {
|
|
|
690
690
|
/** Validations */
|
|
691
691
|
validations?: Validation[];
|
|
692
692
|
/** Plugins */
|
|
693
|
-
plugins?: Record<string, Function
|
|
693
|
+
plugins?: Record<string, Function>;
|
|
694
|
+
/** Space between the table and the end of the container. Default: 100 */
|
|
695
|
+
spacing?: number;
|
|
694
696
|
}
|
|
695
697
|
|
|
696
698
|
interface Worksheet {
|
|
@@ -1375,6 +1377,8 @@ declare namespace jspreadsheet {
|
|
|
1375
1377
|
setValidations: (validations: Validations[]) => void;
|
|
1376
1378
|
/** Reset validations by validation indexes. Require the extension Validations. */
|
|
1377
1379
|
resetValidations: (validationIndex: number | number[]) => void;
|
|
1380
|
+
/** Resize columns to match the visible content */
|
|
1381
|
+
autoWidth: (columns: number[]) => void;
|
|
1378
1382
|
}
|
|
1379
1383
|
}
|
|
1380
1384
|
|