jspreadsheet 9.5.5 → 9.5.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 +10 -8
- package/dist/index.js +590 -590
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -262,22 +262,24 @@ declare namespace jspreadsheet {
|
|
|
262
262
|
}
|
|
263
263
|
|
|
264
264
|
interface Calendar {
|
|
265
|
-
/**
|
|
265
|
+
/** Specifies the type of calendar to render. Default is 'default'. Possible values are 'default' and 'year-month-picker'. */
|
|
266
266
|
type?: 'default' | 'year-month-picker';
|
|
267
|
-
/**
|
|
267
|
+
/** An array of numbers specifying a range of valid dates. Dates outside this range will be disabled. */
|
|
268
268
|
validRange?: number[];
|
|
269
|
-
/**
|
|
269
|
+
/** Specifies the day of the week the calendar starts on, where 0 is Sunday and 6 is Saturday. Default is 0 (Sunday). */
|
|
270
270
|
format?: string;
|
|
271
|
-
/**
|
|
271
|
+
/** Specifies whether the calendar input is readonly or not. Default is false. */
|
|
272
272
|
readonly?: boolean;
|
|
273
|
-
/**
|
|
273
|
+
/** Specifies whether today's date is automatically selected when no date is defined. Default is false. */
|
|
274
274
|
today?: boolean;
|
|
275
|
-
/**
|
|
275
|
+
/** Specifies whether to display a dropdown for selecting hour and minute values. Default is false. */
|
|
276
276
|
time?: boolean;
|
|
277
|
-
/**
|
|
277
|
+
/** Specifies whether to display a reset button. Default is true. */
|
|
278
278
|
resetButton?: boolean;
|
|
279
|
-
/**
|
|
279
|
+
/** Specifies a placeholder text to display in the calendar input when no date is selected. */
|
|
280
280
|
placeholder?: string;
|
|
281
|
+
/** Auto select confirms the current date as the new value onblur. Default: true */
|
|
282
|
+
autoSelect?: boolean;
|
|
281
283
|
}
|
|
282
284
|
|
|
283
285
|
interface DefinedNames {
|