File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import type {
5
5
ComputedOptions ,
6
6
ComputedRef ,
7
7
DefineComponent ,
8
+ MaybeRefOrGetter ,
8
9
MethodOptions ,
9
10
Ref ,
10
11
} from 'vue' ;
@@ -172,6 +173,7 @@ export interface VueDatePickerProps {
172
173
hideInputIcon ?: boolean ;
173
174
state ?: boolean ;
174
175
clearable ?: boolean ;
176
+ alwaysClearable ?: boolean ;
175
177
autoApply ?: boolean ;
176
178
filters ?: {
177
179
months ?: number [ ] ;
@@ -233,7 +235,7 @@ export interface VueDatePickerProps {
233
235
multiDates ?: boolean | { limit ?: number | string ; dragSelect ?: boolean } ;
234
236
presetDates ?: {
235
237
label : string ;
236
- value : Date [ ] | string [ ] | string | Date ;
238
+ value : MaybeRefOrGetter < Date [ ] | string [ ] | string | Date > ;
237
239
style ?: Record < string , string > ;
238
240
slot ?: string ;
239
241
noTz ?: boolean ;
@@ -408,6 +410,7 @@ export interface Slots {
408
410
instance ?: number ;
409
411
selectMonth ?: ( month : number , instance : number ) => void ;
410
412
selectYear ?: ( year : number , instance : number ) => void ;
413
+ isDisabled ?: ( next : boolean ) => boolean ;
411
414
} ) : any ;
412
415
'time-picker' ( props : {
413
416
time : InternalTime ;
You can’t perform that action at this time.
0 commit comments