@oub/fusion 0.3.14 → 0.3.16
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/datepicker.css +1 -1
- package/dist/fusion.js +11471 -10057
- package/dist/fusion.umd.cjs +7 -8
- package/dist/lib/components/common/bars/tool-bar/FusionToolBar.vue.d.ts +1 -1
- package/dist/lib/components/form/date-picker/FusionDatePicker.vue.d.ts +393 -2
- package/dist/lib/components/form/date-picker/FusionMonthDatePicker.vue.d.ts +392 -1
- package/dist/lib/components/form/date-picker/FusionRangeDatePicker.vue.d.ts +400 -4
- package/dist/style.css +1 -1
- package/package.json +3 -3
|
@@ -126,8 +126,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
126
126
|
name: string;
|
|
127
127
|
dataTest: string;
|
|
128
128
|
id: string;
|
|
129
|
-
hideSortArrow: boolean;
|
|
130
129
|
mobileBreakpoint: number;
|
|
130
|
+
hideSortArrow: boolean;
|
|
131
131
|
showFilter: boolean;
|
|
132
132
|
hideSorter: boolean;
|
|
133
133
|
sortCount: number;
|
|
@@ -160,11 +160,402 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
160
160
|
minDate: string;
|
|
161
161
|
maxDate: string;
|
|
162
162
|
format: string;
|
|
163
|
-
clearable: boolean;
|
|
164
163
|
dateSeparator: string;
|
|
164
|
+
clearable: boolean;
|
|
165
165
|
}, {}, {
|
|
166
166
|
SVGCalendar: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
167
167
|
SVGExclamationOctagon: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
168
|
-
VueDatePicker:
|
|
168
|
+
VueDatePicker: {
|
|
169
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('@vuepic/vue-datepicker').RootProps> & Readonly<{
|
|
170
|
+
onBlur?: (() => any) | undefined;
|
|
171
|
+
onFocus?: (() => any) | undefined;
|
|
172
|
+
onInvalid?: ((event: Event) => any) | undefined;
|
|
173
|
+
onOpen?: (() => any) | undefined;
|
|
174
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
175
|
+
"onInternal-model-change"?: ((value: import('@vuepic/vue-datepicker').InternalModelValue) => any) | undefined;
|
|
176
|
+
"onText-submit"?: (() => any) | undefined;
|
|
177
|
+
"onText-input"?: ((event: string | Event, parsedDate: import('@vuepic/vue-datepicker').InputParsedDate) => any) | undefined;
|
|
178
|
+
onClosed?: (() => any) | undefined;
|
|
179
|
+
onCleared?: (() => any) | undefined;
|
|
180
|
+
"onFlow-step"?: ((step: number) => any) | undefined;
|
|
181
|
+
"onUpdate-month-year"?: ((value: {
|
|
182
|
+
instance: number;
|
|
183
|
+
month: number;
|
|
184
|
+
year: number;
|
|
185
|
+
}) => any) | undefined;
|
|
186
|
+
"onInvalid-select"?: (() => any) | undefined;
|
|
187
|
+
"onInvalid-fixed-range"?: ((date: Date) => any) | undefined;
|
|
188
|
+
"onInvalid-date"?: ((date: Date) => any) | undefined;
|
|
189
|
+
"onTooltip-open"?: ((marker: import('@vuepic/vue-datepicker').Marker) => any) | undefined;
|
|
190
|
+
"onTooltip-close"?: ((marker: import('@vuepic/vue-datepicker').Marker) => any) | undefined;
|
|
191
|
+
"onAm-pm-change"?: ((value: import('@vuepic/vue-datepicker').Hour12) => any) | undefined;
|
|
192
|
+
"onRange-start"?: ((date: Date) => any) | undefined;
|
|
193
|
+
"onRange-end"?: ((date: Date) => any) | undefined;
|
|
194
|
+
"onDate-click"?: ((date: Date) => any) | undefined;
|
|
195
|
+
"onOverlay-toggle"?: ((toggle: {
|
|
196
|
+
open: boolean;
|
|
197
|
+
overlay: import('@vuepic/vue-datepicker').PickerSection;
|
|
198
|
+
}) => any) | undefined;
|
|
199
|
+
}>, {
|
|
200
|
+
openMenu: () => void;
|
|
201
|
+
closeMenu: () => void;
|
|
202
|
+
selectDate: () => void;
|
|
203
|
+
clearValue: () => void;
|
|
204
|
+
formatInputValue: () => void;
|
|
205
|
+
updateInternalModelValue: (value: Date | Date[]) => void;
|
|
206
|
+
setMonthYear: (value: Partial<import('@vuepic/vue-datepicker').MonthModel>, instance?: number | undefined) => void;
|
|
207
|
+
parseModel: () => void;
|
|
208
|
+
switchView: (view: import('@vuepic/vue-datepicker').MenuView, instance?: number | undefined) => void;
|
|
209
|
+
handleFlow: () => void;
|
|
210
|
+
toggleMenu: () => void;
|
|
211
|
+
dpMenuRef: () => Readonly<import('vue').ShallowRef<any>>;
|
|
212
|
+
dpWrapMenuRef: () => any;
|
|
213
|
+
inputRef: () => any;
|
|
214
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
215
|
+
blur: () => any;
|
|
216
|
+
focus: () => any;
|
|
217
|
+
invalid: (event: Event) => any;
|
|
218
|
+
open: () => any;
|
|
219
|
+
"update:model-value": (value: any) => any;
|
|
220
|
+
"internal-model-change": (value: import('@vuepic/vue-datepicker').InternalModelValue) => any;
|
|
221
|
+
"text-submit": () => any;
|
|
222
|
+
"text-input": (event: string | Event, parsedDate: import('@vuepic/vue-datepicker').InputParsedDate) => any;
|
|
223
|
+
closed: () => any;
|
|
224
|
+
cleared: () => any;
|
|
225
|
+
"flow-step": (step: number) => any;
|
|
226
|
+
"update-month-year": (value: {
|
|
227
|
+
instance: number;
|
|
228
|
+
month: number;
|
|
229
|
+
year: number;
|
|
230
|
+
}) => any;
|
|
231
|
+
"invalid-select": () => any;
|
|
232
|
+
"invalid-fixed-range": (date: Date) => any;
|
|
233
|
+
"invalid-date": (date: Date) => any;
|
|
234
|
+
"tooltip-open": (marker: import('@vuepic/vue-datepicker').Marker) => any;
|
|
235
|
+
"tooltip-close": (marker: import('@vuepic/vue-datepicker').Marker) => any;
|
|
236
|
+
"am-pm-change": (value: import('@vuepic/vue-datepicker').Hour12) => any;
|
|
237
|
+
"range-start": (date: Date) => any;
|
|
238
|
+
"range-end": (date: Date) => any;
|
|
239
|
+
"date-click": (date: Date) => any;
|
|
240
|
+
"overlay-toggle": (toggle: {
|
|
241
|
+
open: boolean;
|
|
242
|
+
overlay: import('@vuepic/vue-datepicker').PickerSection;
|
|
243
|
+
}) => any;
|
|
244
|
+
}, import('vue').PublicProps, {
|
|
245
|
+
timePicker: boolean;
|
|
246
|
+
dark: boolean;
|
|
247
|
+
transitions: boolean | Partial<import('@vuepic/vue-datepicker').TransitionsConfig>;
|
|
248
|
+
hideNavigation: import('@vuepic/vue-datepicker').PickerSection[];
|
|
249
|
+
vertical: boolean;
|
|
250
|
+
hideMonthYearSelect: boolean;
|
|
251
|
+
disableYearSelect: boolean;
|
|
252
|
+
yearRange: [number, number];
|
|
253
|
+
autoApply: boolean;
|
|
254
|
+
disabledDates: string[] | Date[] | ((date: Date) => boolean);
|
|
255
|
+
hideOffsetDates: boolean;
|
|
256
|
+
noToday: boolean;
|
|
257
|
+
markers: import('@vuepic/vue-datepicker').Marker[];
|
|
258
|
+
presetDates: import('@vuepic/vue-datepicker').PresetDate[];
|
|
259
|
+
preventMinMaxNavigation: boolean;
|
|
260
|
+
reverseYears: boolean;
|
|
261
|
+
weekPicker: boolean;
|
|
262
|
+
arrowNavigation: boolean;
|
|
263
|
+
centered: boolean;
|
|
264
|
+
locale: import('date-fns').Locale;
|
|
265
|
+
weekStart: string | number;
|
|
266
|
+
monthPicker: boolean;
|
|
267
|
+
yearPicker: boolean;
|
|
268
|
+
modelAuto: boolean;
|
|
269
|
+
multiDates: boolean | Partial<import('@vuepic/vue-datepicker').MultiDatesConfig>;
|
|
270
|
+
range: boolean | Partial<import('@vuepic/vue-datepicker').RangeConfig>;
|
|
271
|
+
inline: boolean | {
|
|
272
|
+
input?: boolean | undefined;
|
|
273
|
+
};
|
|
274
|
+
sixWeeks: boolean | import('@vuepic/vue-datepicker').SixWeekMode;
|
|
275
|
+
focusStartDate: boolean;
|
|
276
|
+
quarterPicker: boolean;
|
|
277
|
+
yearFirst: boolean;
|
|
278
|
+
loading: boolean;
|
|
279
|
+
ui: Partial<import('@vuepic/vue-datepicker').UIConfig>;
|
|
280
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
281
|
+
'date-picker': ({
|
|
282
|
+
$: import('vue').ComponentInternalInstance;
|
|
283
|
+
$data: {};
|
|
284
|
+
$props: Partial<{}> & Omit<import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>;
|
|
285
|
+
$attrs: {
|
|
286
|
+
[x: string]: unknown;
|
|
287
|
+
};
|
|
288
|
+
$refs: any;
|
|
289
|
+
$slots: Readonly<{
|
|
290
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
291
|
+
}>;
|
|
292
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
293
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
294
|
+
$host: Element | null;
|
|
295
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
296
|
+
$el: any;
|
|
297
|
+
$options: import('vue').ComponentOptionsBase<Readonly<{}>, {
|
|
298
|
+
closeMenu: (fromClickAway?: boolean | undefined) => void;
|
|
299
|
+
selectDate: () => void;
|
|
300
|
+
clearValue: () => void;
|
|
301
|
+
openMenu: () => void;
|
|
302
|
+
onScroll: () => void;
|
|
303
|
+
formatInputValue: () => void;
|
|
304
|
+
updateInternalModelValue: (value: Date | Date[]) => void;
|
|
305
|
+
setMonthYear: (value: Partial<import('@vuepic/vue-datepicker').MonthModel>, instance?: number | undefined) => void;
|
|
306
|
+
parseModel: (value?: import('@vuepic/vue-datepicker').ModelValue) => void;
|
|
307
|
+
switchView: (view: import('@vuepic/vue-datepicker').MenuView, instance?: number | undefined) => void;
|
|
308
|
+
toggleMenu: () => void;
|
|
309
|
+
handleFlow: (skipStep?: number | undefined) => void;
|
|
310
|
+
getDpWrapMenuRef: () => any;
|
|
311
|
+
dpMenuRef: () => Readonly<import('vue').ShallowRef<any>>;
|
|
312
|
+
dpWrapMenuRef: () => any;
|
|
313
|
+
inputRef: () => any;
|
|
314
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
315
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
316
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
317
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
318
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
319
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
320
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
321
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
322
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
323
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
324
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
325
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
326
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
327
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
328
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
329
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[] | undefined;
|
|
330
|
+
};
|
|
331
|
+
$forceUpdate: () => void;
|
|
332
|
+
$nextTick: nextTick;
|
|
333
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import('@vue/reactivity').OnCleanup) => any : (args_0: any, args_1: any, args_2: import('@vue/reactivity').OnCleanup) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
334
|
+
} & Readonly<{}> & Omit<Readonly<{}>, "onScroll" | "openMenu" | "closeMenu" | "selectDate" | "clearValue" | "formatInputValue" | "updateInternalModelValue" | "setMonthYear" | "parseModel" | "switchView" | "handleFlow" | "toggleMenu" | "dpMenuRef" | "dpWrapMenuRef" | "inputRef" | "getDpWrapMenuRef"> & import('vue').ShallowUnwrapRef<{
|
|
335
|
+
closeMenu: (fromClickAway?: boolean | undefined) => void;
|
|
336
|
+
selectDate: () => void;
|
|
337
|
+
clearValue: () => void;
|
|
338
|
+
openMenu: () => void;
|
|
339
|
+
onScroll: () => void;
|
|
340
|
+
formatInputValue: () => void;
|
|
341
|
+
updateInternalModelValue: (value: Date | Date[]) => void;
|
|
342
|
+
setMonthYear: (value: Partial<import('@vuepic/vue-datepicker').MonthModel>, instance?: number | undefined) => void;
|
|
343
|
+
parseModel: (value?: import('@vuepic/vue-datepicker').ModelValue) => void;
|
|
344
|
+
switchView: (view: import('@vuepic/vue-datepicker').MenuView, instance?: number | undefined) => void;
|
|
345
|
+
toggleMenu: () => void;
|
|
346
|
+
handleFlow: (skipStep?: number | undefined) => void;
|
|
347
|
+
getDpWrapMenuRef: () => any;
|
|
348
|
+
dpMenuRef: () => Readonly<import('vue').ShallowRef<any>>;
|
|
349
|
+
dpWrapMenuRef: () => any;
|
|
350
|
+
inputRef: () => any;
|
|
351
|
+
}> & import('vue').ComponentCustomProperties & {
|
|
352
|
+
$slots: any;
|
|
353
|
+
}) | null;
|
|
354
|
+
}, any, import('vue').ComponentProvideOptions, {
|
|
355
|
+
P: {};
|
|
356
|
+
B: {};
|
|
357
|
+
D: {};
|
|
358
|
+
C: {};
|
|
359
|
+
M: {};
|
|
360
|
+
Defaults: {};
|
|
361
|
+
}, Readonly<import('@vuepic/vue-datepicker').RootProps> & Readonly<{
|
|
362
|
+
onBlur?: (() => any) | undefined;
|
|
363
|
+
onFocus?: (() => any) | undefined;
|
|
364
|
+
onInvalid?: ((event: Event) => any) | undefined;
|
|
365
|
+
onOpen?: (() => any) | undefined;
|
|
366
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
367
|
+
"onInternal-model-change"?: ((value: import('@vuepic/vue-datepicker').InternalModelValue) => any) | undefined;
|
|
368
|
+
"onText-submit"?: (() => any) | undefined;
|
|
369
|
+
"onText-input"?: ((event: string | Event, parsedDate: import('@vuepic/vue-datepicker').InputParsedDate) => any) | undefined;
|
|
370
|
+
onClosed?: (() => any) | undefined;
|
|
371
|
+
onCleared?: (() => any) | undefined;
|
|
372
|
+
"onFlow-step"?: ((step: number) => any) | undefined;
|
|
373
|
+
"onUpdate-month-year"?: ((value: {
|
|
374
|
+
instance: number;
|
|
375
|
+
month: number;
|
|
376
|
+
year: number;
|
|
377
|
+
}) => any) | undefined;
|
|
378
|
+
"onInvalid-select"?: (() => any) | undefined;
|
|
379
|
+
"onInvalid-fixed-range"?: ((date: Date) => any) | undefined;
|
|
380
|
+
"onInvalid-date"?: ((date: Date) => any) | undefined;
|
|
381
|
+
"onTooltip-open"?: ((marker: import('@vuepic/vue-datepicker').Marker) => any) | undefined;
|
|
382
|
+
"onTooltip-close"?: ((marker: import('@vuepic/vue-datepicker').Marker) => any) | undefined;
|
|
383
|
+
"onAm-pm-change"?: ((value: import('@vuepic/vue-datepicker').Hour12) => any) | undefined;
|
|
384
|
+
"onRange-start"?: ((date: Date) => any) | undefined;
|
|
385
|
+
"onRange-end"?: ((date: Date) => any) | undefined;
|
|
386
|
+
"onDate-click"?: ((date: Date) => any) | undefined;
|
|
387
|
+
"onOverlay-toggle"?: ((toggle: {
|
|
388
|
+
open: boolean;
|
|
389
|
+
overlay: import('@vuepic/vue-datepicker').PickerSection;
|
|
390
|
+
}) => any) | undefined;
|
|
391
|
+
}>, {
|
|
392
|
+
openMenu: () => void;
|
|
393
|
+
closeMenu: () => void;
|
|
394
|
+
selectDate: () => void;
|
|
395
|
+
clearValue: () => void;
|
|
396
|
+
formatInputValue: () => void;
|
|
397
|
+
updateInternalModelValue: (value: Date | Date[]) => void;
|
|
398
|
+
setMonthYear: (value: Partial<import('@vuepic/vue-datepicker').MonthModel>, instance?: number | undefined) => void;
|
|
399
|
+
parseModel: () => void;
|
|
400
|
+
switchView: (view: import('@vuepic/vue-datepicker').MenuView, instance?: number | undefined) => void;
|
|
401
|
+
handleFlow: () => void;
|
|
402
|
+
toggleMenu: () => void;
|
|
403
|
+
dpMenuRef: () => Readonly<import('vue').ShallowRef<any>>;
|
|
404
|
+
dpWrapMenuRef: () => any;
|
|
405
|
+
inputRef: () => any;
|
|
406
|
+
}, {}, {}, {}, {
|
|
407
|
+
timePicker: boolean;
|
|
408
|
+
dark: boolean;
|
|
409
|
+
transitions: boolean | Partial<import('@vuepic/vue-datepicker').TransitionsConfig>;
|
|
410
|
+
hideNavigation: import('@vuepic/vue-datepicker').PickerSection[];
|
|
411
|
+
vertical: boolean;
|
|
412
|
+
hideMonthYearSelect: boolean;
|
|
413
|
+
disableYearSelect: boolean;
|
|
414
|
+
yearRange: [number, number];
|
|
415
|
+
autoApply: boolean;
|
|
416
|
+
disabledDates: string[] | Date[] | ((date: Date) => boolean);
|
|
417
|
+
hideOffsetDates: boolean;
|
|
418
|
+
noToday: boolean;
|
|
419
|
+
markers: import('@vuepic/vue-datepicker').Marker[];
|
|
420
|
+
presetDates: import('@vuepic/vue-datepicker').PresetDate[];
|
|
421
|
+
preventMinMaxNavigation: boolean;
|
|
422
|
+
reverseYears: boolean;
|
|
423
|
+
weekPicker: boolean;
|
|
424
|
+
arrowNavigation: boolean;
|
|
425
|
+
centered: boolean;
|
|
426
|
+
locale: import('date-fns').Locale;
|
|
427
|
+
weekStart: string | number;
|
|
428
|
+
monthPicker: boolean;
|
|
429
|
+
yearPicker: boolean;
|
|
430
|
+
modelAuto: boolean;
|
|
431
|
+
multiDates: boolean | Partial<import('@vuepic/vue-datepicker').MultiDatesConfig>;
|
|
432
|
+
range: boolean | Partial<import('@vuepic/vue-datepicker').RangeConfig>;
|
|
433
|
+
inline: boolean | {
|
|
434
|
+
input?: boolean | undefined;
|
|
435
|
+
};
|
|
436
|
+
sixWeeks: boolean | import('@vuepic/vue-datepicker').SixWeekMode;
|
|
437
|
+
focusStartDate: boolean;
|
|
438
|
+
quarterPicker: boolean;
|
|
439
|
+
yearFirst: boolean;
|
|
440
|
+
loading: boolean;
|
|
441
|
+
ui: Partial<import('@vuepic/vue-datepicker').UIConfig>;
|
|
442
|
+
}>;
|
|
443
|
+
__isFragment?: undefined;
|
|
444
|
+
__isTeleport?: undefined;
|
|
445
|
+
__isSuspense?: undefined;
|
|
446
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('@vuepic/vue-datepicker').RootProps> & Readonly<{
|
|
447
|
+
onBlur?: (() => any) | undefined;
|
|
448
|
+
onFocus?: (() => any) | undefined;
|
|
449
|
+
onInvalid?: ((event: Event) => any) | undefined;
|
|
450
|
+
onOpen?: (() => any) | undefined;
|
|
451
|
+
"onUpdate:model-value"?: ((value: any) => any) | undefined;
|
|
452
|
+
"onInternal-model-change"?: ((value: import('@vuepic/vue-datepicker').InternalModelValue) => any) | undefined;
|
|
453
|
+
"onText-submit"?: (() => any) | undefined;
|
|
454
|
+
"onText-input"?: ((event: string | Event, parsedDate: import('@vuepic/vue-datepicker').InputParsedDate) => any) | undefined;
|
|
455
|
+
onClosed?: (() => any) | undefined;
|
|
456
|
+
onCleared?: (() => any) | undefined;
|
|
457
|
+
"onFlow-step"?: ((step: number) => any) | undefined;
|
|
458
|
+
"onUpdate-month-year"?: ((value: {
|
|
459
|
+
instance: number;
|
|
460
|
+
month: number;
|
|
461
|
+
year: number;
|
|
462
|
+
}) => any) | undefined;
|
|
463
|
+
"onInvalid-select"?: (() => any) | undefined;
|
|
464
|
+
"onInvalid-fixed-range"?: ((date: Date) => any) | undefined;
|
|
465
|
+
"onInvalid-date"?: ((date: Date) => any) | undefined;
|
|
466
|
+
"onTooltip-open"?: ((marker: import('@vuepic/vue-datepicker').Marker) => any) | undefined;
|
|
467
|
+
"onTooltip-close"?: ((marker: import('@vuepic/vue-datepicker').Marker) => any) | undefined;
|
|
468
|
+
"onAm-pm-change"?: ((value: import('@vuepic/vue-datepicker').Hour12) => any) | undefined;
|
|
469
|
+
"onRange-start"?: ((date: Date) => any) | undefined;
|
|
470
|
+
"onRange-end"?: ((date: Date) => any) | undefined;
|
|
471
|
+
"onDate-click"?: ((date: Date) => any) | undefined;
|
|
472
|
+
"onOverlay-toggle"?: ((toggle: {
|
|
473
|
+
open: boolean;
|
|
474
|
+
overlay: import('@vuepic/vue-datepicker').PickerSection;
|
|
475
|
+
}) => any) | undefined;
|
|
476
|
+
}>, {
|
|
477
|
+
openMenu: () => void;
|
|
478
|
+
closeMenu: () => void;
|
|
479
|
+
selectDate: () => void;
|
|
480
|
+
clearValue: () => void;
|
|
481
|
+
formatInputValue: () => void;
|
|
482
|
+
updateInternalModelValue: (value: Date | Date[]) => void;
|
|
483
|
+
setMonthYear: (value: Partial<import('@vuepic/vue-datepicker').MonthModel>, instance?: number | undefined) => void;
|
|
484
|
+
parseModel: () => void;
|
|
485
|
+
switchView: (view: import('@vuepic/vue-datepicker').MenuView, instance?: number | undefined) => void;
|
|
486
|
+
handleFlow: () => void;
|
|
487
|
+
toggleMenu: () => void;
|
|
488
|
+
dpMenuRef: () => Readonly<import('vue').ShallowRef<any>>;
|
|
489
|
+
dpWrapMenuRef: () => any;
|
|
490
|
+
inputRef: () => any;
|
|
491
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
492
|
+
blur: () => any;
|
|
493
|
+
focus: () => any;
|
|
494
|
+
invalid: (event: Event) => any;
|
|
495
|
+
open: () => any;
|
|
496
|
+
"update:model-value": (value: any) => any;
|
|
497
|
+
"internal-model-change": (value: import('@vuepic/vue-datepicker').InternalModelValue) => any;
|
|
498
|
+
"text-submit": () => any;
|
|
499
|
+
"text-input": (event: string | Event, parsedDate: import('@vuepic/vue-datepicker').InputParsedDate) => any;
|
|
500
|
+
closed: () => any;
|
|
501
|
+
cleared: () => any;
|
|
502
|
+
"flow-step": (step: number) => any;
|
|
503
|
+
"update-month-year": (value: {
|
|
504
|
+
instance: number;
|
|
505
|
+
month: number;
|
|
506
|
+
year: number;
|
|
507
|
+
}) => any;
|
|
508
|
+
"invalid-select": () => any;
|
|
509
|
+
"invalid-fixed-range": (date: Date) => any;
|
|
510
|
+
"invalid-date": (date: Date) => any;
|
|
511
|
+
"tooltip-open": (marker: import('@vuepic/vue-datepicker').Marker) => any;
|
|
512
|
+
"tooltip-close": (marker: import('@vuepic/vue-datepicker').Marker) => any;
|
|
513
|
+
"am-pm-change": (value: import('@vuepic/vue-datepicker').Hour12) => any;
|
|
514
|
+
"range-start": (date: Date) => any;
|
|
515
|
+
"range-end": (date: Date) => any;
|
|
516
|
+
"date-click": (date: Date) => any;
|
|
517
|
+
"overlay-toggle": (toggle: {
|
|
518
|
+
open: boolean;
|
|
519
|
+
overlay: import('@vuepic/vue-datepicker').PickerSection;
|
|
520
|
+
}) => any;
|
|
521
|
+
}, string, {
|
|
522
|
+
timePicker: boolean;
|
|
523
|
+
dark: boolean;
|
|
524
|
+
transitions: boolean | Partial<import('@vuepic/vue-datepicker').TransitionsConfig>;
|
|
525
|
+
hideNavigation: import('@vuepic/vue-datepicker').PickerSection[];
|
|
526
|
+
vertical: boolean;
|
|
527
|
+
hideMonthYearSelect: boolean;
|
|
528
|
+
disableYearSelect: boolean;
|
|
529
|
+
yearRange: [number, number];
|
|
530
|
+
autoApply: boolean;
|
|
531
|
+
disabledDates: string[] | Date[] | ((date: Date) => boolean);
|
|
532
|
+
hideOffsetDates: boolean;
|
|
533
|
+
noToday: boolean;
|
|
534
|
+
markers: import('@vuepic/vue-datepicker').Marker[];
|
|
535
|
+
presetDates: import('@vuepic/vue-datepicker').PresetDate[];
|
|
536
|
+
preventMinMaxNavigation: boolean;
|
|
537
|
+
reverseYears: boolean;
|
|
538
|
+
weekPicker: boolean;
|
|
539
|
+
arrowNavigation: boolean;
|
|
540
|
+
centered: boolean;
|
|
541
|
+
locale: import('date-fns').Locale;
|
|
542
|
+
weekStart: string | number;
|
|
543
|
+
monthPicker: boolean;
|
|
544
|
+
yearPicker: boolean;
|
|
545
|
+
modelAuto: boolean;
|
|
546
|
+
multiDates: boolean | Partial<import('@vuepic/vue-datepicker').MultiDatesConfig>;
|
|
547
|
+
range: boolean | Partial<import('@vuepic/vue-datepicker').RangeConfig>;
|
|
548
|
+
inline: boolean | {
|
|
549
|
+
input?: boolean | undefined;
|
|
550
|
+
};
|
|
551
|
+
sixWeeks: boolean | import('@vuepic/vue-datepicker').SixWeekMode;
|
|
552
|
+
focusStartDate: boolean;
|
|
553
|
+
quarterPicker: boolean;
|
|
554
|
+
yearFirst: boolean;
|
|
555
|
+
loading: boolean;
|
|
556
|
+
ui: Partial<import('@vuepic/vue-datepicker').UIConfig>;
|
|
557
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
558
|
+
$slots: Readonly<import('@vuepic/vue-datepicker').RootSlots> & import('@vuepic/vue-datepicker').RootSlots;
|
|
559
|
+
});
|
|
169
560
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
170
561
|
export default _default;
|