jspreadsheet 11.17.0 → 11.18.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 -0
- package/dist/index.js +540 -572
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -248,6 +248,8 @@ declare namespace jspreadsheet {
|
|
|
248
248
|
className?: string;
|
|
249
249
|
/** Array with two positions, the second position used when criteria is between or not between. */
|
|
250
250
|
value?: number[] | string[],
|
|
251
|
+
/** Make sure run that as a dropdown */
|
|
252
|
+
dropdown: true,
|
|
251
253
|
}
|
|
252
254
|
|
|
253
255
|
/** Only available with the Validations extension */
|
|
@@ -1036,6 +1038,8 @@ declare namespace jspreadsheet {
|
|
|
1036
1038
|
international?: International;
|
|
1037
1039
|
/** Persistence handler */
|
|
1038
1040
|
persistence?: (worksheet: worksheetInstance, method: string, args: object) => void;
|
|
1041
|
+
/** Create a selection during the openWorksheet. Default: true */
|
|
1042
|
+
autoSelect?: boolean;
|
|
1039
1043
|
}
|
|
1040
1044
|
|
|
1041
1045
|
interface Worksheet {
|