@dpa-id-components/dpa-shared-components 12.0.2 → 12.2.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/components/UiAutocomplete/UiAutocomplete.stories.d.ts +29 -29
- package/dist/components/UiAutocomplete/UiAutocomplete.vue.d.ts +29 -29
- package/dist/components/UiButton/UiButton.stories.d.ts +3 -3
- package/dist/components/UiButton/UiButton.vue.d.ts +1 -1
- package/dist/components/UiButtonGroup/UiButtonGroup.stories.d.ts +13 -1
- package/dist/components/UiCheckBox/UiCheckBox.stories.d.ts +7 -6
- package/dist/components/UiCheckBox/UiCheckBox.vue.d.ts +4 -4
- package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.stories.d.ts +6 -6
- package/dist/components/UiCheckBoxGroup/UiCheckBoxGroup.vue.d.ts +6 -6
- package/dist/components/UiColorPicker/UiColorPicker.stories.d.ts +3 -3
- package/dist/components/UiColorPicker/UiColorPicker.vue.d.ts +3 -3
- package/dist/components/UiDatePicker/UiDatePicker.stories.d.ts +2713 -57
- package/dist/components/UiDatePicker/UiDatePicker.vue.d.ts +33 -33
- package/dist/components/UiDialog/UiDialog.stories.d.ts +224 -12
- package/dist/components/UiDialog/UiDialog.vue.d.ts +2 -2
- package/dist/components/UiFilterBadge/UiFilterBadge.stories.d.ts +100 -21
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.stories.d.ts +133 -15
- package/dist/components/UiFilterBadgeButton/UiFilterBadgeButton.vue.d.ts +2 -2
- package/dist/components/UiFilterButton/UiFilterButton.stories.d.ts +80 -6
- package/dist/components/UiFilterButton/UiFilterButton.vue.d.ts +2 -2
- package/dist/components/UiIcon/UiIcon.stories.d.ts +1 -16
- package/dist/components/UiIconButton/UiIconButton.stories.d.ts +56 -8
- package/dist/components/UiIconButton/UiIconButton.vue.d.ts +3 -3
- package/dist/components/UiInfoContent/UiInfoContent.stories.d.ts +100 -4
- package/dist/components/UiInput/UiInput.stories.d.ts +427 -76
- package/dist/components/UiInput/UiInput.vue.d.ts +12 -11
- package/dist/components/UiList/UiList.stories.d.ts +13 -292
- package/dist/components/UiListItem/UiListItem.stories.d.ts +248 -24
- package/dist/components/UiListItem/UiListItem.vue.d.ts +4 -4
- package/dist/components/UiMenu/UiMenu.stories.d.ts +55 -189
- package/dist/components/UiMenu/UiMenu.vue.d.ts +15 -9
- package/dist/components/UiOverlay/UiOverlay.stories.d.ts +64 -12
- package/dist/components/UiOverlay/UiOverlay.vue.d.ts +2 -2
- package/dist/components/UiOverlayMenu/UiOverlayMenu.stories.d.ts +110 -34
- package/dist/components/UiOverlayMenu/UiOverlayMenu.vue.d.ts +2 -2
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.stories.d.ts +56 -26
- package/dist/components/UiRadioInputGroup/UiRadioInputGroup.vue.d.ts +8 -7
- package/dist/components/UiSearchBar/UiSearchBar.stories.d.ts +36 -317
- package/dist/components/UiSearchBar/UiSearchBar.vue.d.ts +12 -14
- package/dist/components/UiSearchInput/UiSearchInput.stories.d.ts +196 -36
- package/dist/components/UiSearchInput/UiSearchInput.vue.d.ts +7 -7
- package/dist/components/UiSimpleInput/UiSimpleInput.stories.d.ts +48 -6
- package/dist/components/UiSimpleInput/UiSimpleInput.vue.d.ts +2 -2
- package/dist/components/UiSkeletonBox/UiSkeletonBox.stories.d.ts +26 -2
- package/dist/components/UiSnackbar/UiSnackbar.stories.d.ts +163 -23
- package/dist/components/UiSnackbar/UiSnackbar.vue.d.ts +4 -4
- package/dist/components/UiSpinner/UiSpinner.stories.d.ts +20 -2
- package/dist/components/UiToggleButton/UiToggleButton.stories.d.ts +11 -5
- package/dist/components/UiToggleButton/UiToggleButton.vue.d.ts +4 -2
- package/dist/components/UiTooltip/UiTooltip.stories.d.ts +200 -2
- package/dist/dpa-shared-components.mjs +6458 -6461
- package/dist/dpa-shared-components.umd.js +4 -4
- package/dist/style.css +1 -1
- package/dist/tailwind/tailwind.config.d.cts +3 -211
- package/dist/tailwind.config.cjs +7 -3
- package/package.json +9 -9
|
@@ -42,15 +42,15 @@ declare const meta: {
|
|
|
42
42
|
}> & Readonly<{
|
|
43
43
|
onClose?: (() => any) | undefined;
|
|
44
44
|
onReset?: (() => any) | undefined;
|
|
45
|
-
"onDate-changed"?: ((
|
|
45
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
46
46
|
onOpen?: (() => any) | undefined;
|
|
47
|
-
onDatepickerQuickfilterClick?: ((
|
|
48
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
47
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
48
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
49
49
|
close: () => any;
|
|
50
50
|
reset: () => any;
|
|
51
|
-
"date-changed": (
|
|
51
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
52
52
|
open: () => any;
|
|
53
|
-
datepickerQuickfilterClick: (
|
|
53
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
54
54
|
}, import('vue').PublicProps, {
|
|
55
55
|
cancel: string;
|
|
56
56
|
submit: string;
|
|
@@ -277,7 +277,7 @@ declare const meta: {
|
|
|
277
277
|
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
278
278
|
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
279
279
|
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
280
|
-
readonly weekStart?: import('vue').Prop<0 |
|
|
280
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
281
281
|
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
282
282
|
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
283
283
|
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -421,9 +421,9 @@ declare const meta: {
|
|
|
421
421
|
clearInput?: string;
|
|
422
422
|
calendarIcon?: string;
|
|
423
423
|
timePicker?: string;
|
|
424
|
-
monthPicker
|
|
425
|
-
yearPicker
|
|
426
|
-
timeOverlay
|
|
424
|
+
monthPicker?: (overlay: boolean) => string;
|
|
425
|
+
yearPicker?: (overlay: boolean) => string;
|
|
426
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
427
427
|
} | undefined, {
|
|
428
428
|
toggleOverlay?: string;
|
|
429
429
|
menu?: string;
|
|
@@ -449,9 +449,9 @@ declare const meta: {
|
|
|
449
449
|
clearInput?: string;
|
|
450
450
|
calendarIcon?: string;
|
|
451
451
|
timePicker?: string;
|
|
452
|
-
monthPicker
|
|
453
|
-
yearPicker
|
|
454
|
-
timeOverlay
|
|
452
|
+
monthPicker?: (overlay: boolean) => string;
|
|
453
|
+
yearPicker?: (overlay: boolean) => string;
|
|
454
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
455
455
|
} | undefined> | null | undefined;
|
|
456
456
|
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
457
457
|
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -810,7 +810,7 @@ declare const meta: {
|
|
|
810
810
|
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
811
811
|
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
812
812
|
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
813
|
-
readonly weekStart?: import('vue').Prop<0 |
|
|
813
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
814
814
|
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
815
815
|
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
816
816
|
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -954,9 +954,9 @@ declare const meta: {
|
|
|
954
954
|
clearInput?: string;
|
|
955
955
|
calendarIcon?: string;
|
|
956
956
|
timePicker?: string;
|
|
957
|
-
monthPicker
|
|
958
|
-
yearPicker
|
|
959
|
-
timeOverlay
|
|
957
|
+
monthPicker?: (overlay: boolean) => string;
|
|
958
|
+
yearPicker?: (overlay: boolean) => string;
|
|
959
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
960
960
|
} | undefined, {
|
|
961
961
|
toggleOverlay?: string;
|
|
962
962
|
menu?: string;
|
|
@@ -982,9 +982,9 @@ declare const meta: {
|
|
|
982
982
|
clearInput?: string;
|
|
983
983
|
calendarIcon?: string;
|
|
984
984
|
timePicker?: string;
|
|
985
|
-
monthPicker
|
|
986
|
-
yearPicker
|
|
987
|
-
timeOverlay
|
|
985
|
+
monthPicker?: (overlay: boolean) => string;
|
|
986
|
+
yearPicker?: (overlay: boolean) => string;
|
|
987
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
988
988
|
} | undefined> | null | undefined;
|
|
989
989
|
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
990
990
|
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -1199,9 +1199,9 @@ declare const meta: {
|
|
|
1199
1199
|
}> & Readonly<{
|
|
1200
1200
|
onClose?: (() => any) | undefined;
|
|
1201
1201
|
onReset?: (() => any) | undefined;
|
|
1202
|
-
"onDate-changed"?: ((
|
|
1202
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
1203
1203
|
onOpen?: (() => any) | undefined;
|
|
1204
|
-
onDatepickerQuickfilterClick?: ((
|
|
1204
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
1205
1205
|
}>, {}, {}, {}, {}, {
|
|
1206
1206
|
cancel: string;
|
|
1207
1207
|
submit: string;
|
|
@@ -1281,15 +1281,15 @@ declare const meta: {
|
|
|
1281
1281
|
}> & Readonly<{
|
|
1282
1282
|
onClose?: (() => any) | undefined;
|
|
1283
1283
|
onReset?: (() => any) | undefined;
|
|
1284
|
-
"onDate-changed"?: ((
|
|
1284
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
1285
1285
|
onOpen?: (() => any) | undefined;
|
|
1286
|
-
onDatepickerQuickfilterClick?: ((
|
|
1287
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1286
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
1287
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1288
1288
|
close: () => any;
|
|
1289
1289
|
reset: () => any;
|
|
1290
|
-
"date-changed": (
|
|
1290
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
1291
1291
|
open: () => any;
|
|
1292
|
-
datepickerQuickfilterClick: (
|
|
1292
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
1293
1293
|
}, string, {
|
|
1294
1294
|
cancel: string;
|
|
1295
1295
|
submit: string;
|
|
@@ -1438,7 +1438,1335 @@ declare const meta: {
|
|
|
1438
1438
|
iconLeft: null;
|
|
1439
1439
|
enableQuickfilterToggle: false;
|
|
1440
1440
|
};
|
|
1441
|
-
render: (args:
|
|
1441
|
+
render: (args: import('@storybook/vue3').ComponentPropsAndSlots<{
|
|
1442
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
1443
|
+
definesRange?: boolean;
|
|
1444
|
+
multiCalendars?: boolean;
|
|
1445
|
+
enableTimePicker?: boolean;
|
|
1446
|
+
autoApply?: boolean;
|
|
1447
|
+
closeOnAutoApply?: boolean;
|
|
1448
|
+
roundedEdges?: boolean;
|
|
1449
|
+
locale?: string;
|
|
1450
|
+
placeholderText?: string;
|
|
1451
|
+
quickFilterRanges?: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
1452
|
+
quickFilterHeadline?: string;
|
|
1453
|
+
selectedDate?: Date | [Date, Date] | string | {
|
|
1454
|
+
month: number;
|
|
1455
|
+
year: number;
|
|
1456
|
+
};
|
|
1457
|
+
autoPosition?: boolean;
|
|
1458
|
+
leftSidebar?: boolean;
|
|
1459
|
+
actionArea?: boolean;
|
|
1460
|
+
actionAreaExtraContent?: string;
|
|
1461
|
+
cancel?: string;
|
|
1462
|
+
submit?: string;
|
|
1463
|
+
firstAvailableDate?: number;
|
|
1464
|
+
minDate?: Date | string;
|
|
1465
|
+
maxDate?: Date;
|
|
1466
|
+
autoRange?: string | number | undefined;
|
|
1467
|
+
maxRange?: number | string | undefined;
|
|
1468
|
+
activeState?: boolean;
|
|
1469
|
+
disabledState?: boolean;
|
|
1470
|
+
monthPicker?: boolean;
|
|
1471
|
+
customFormatCallback?: any;
|
|
1472
|
+
inputLabel?: string;
|
|
1473
|
+
iconLeft?: (typeof iconNames)[number] | null;
|
|
1474
|
+
utc?: boolean;
|
|
1475
|
+
teleport?: boolean | string;
|
|
1476
|
+
closeOnScroll?: boolean;
|
|
1477
|
+
enableQuickfilterToggle?: boolean;
|
|
1478
|
+
}> & Readonly<{
|
|
1479
|
+
onClose?: (() => any) | undefined;
|
|
1480
|
+
onReset?: (() => any) | undefined;
|
|
1481
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
1482
|
+
onOpen?: (() => any) | undefined;
|
|
1483
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
1484
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1485
|
+
close: () => any;
|
|
1486
|
+
reset: () => any;
|
|
1487
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
1488
|
+
open: () => any;
|
|
1489
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
1490
|
+
}, import('vue').PublicProps, {
|
|
1491
|
+
cancel: string;
|
|
1492
|
+
submit: string;
|
|
1493
|
+
iconLeft: (typeof iconNames)[number] | null;
|
|
1494
|
+
definesRange: boolean;
|
|
1495
|
+
multiCalendars: boolean;
|
|
1496
|
+
enableTimePicker: boolean;
|
|
1497
|
+
autoApply: boolean;
|
|
1498
|
+
closeOnAutoApply: boolean;
|
|
1499
|
+
roundedEdges: boolean;
|
|
1500
|
+
locale: string;
|
|
1501
|
+
placeholderText: string;
|
|
1502
|
+
quickFilterRanges: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
1503
|
+
quickFilterHeadline: string;
|
|
1504
|
+
selectedDate: Date | [Date, Date] | string | {
|
|
1505
|
+
month: number;
|
|
1506
|
+
year: number;
|
|
1507
|
+
};
|
|
1508
|
+
autoPosition: boolean;
|
|
1509
|
+
leftSidebar: boolean;
|
|
1510
|
+
actionArea: boolean;
|
|
1511
|
+
actionAreaExtraContent: string;
|
|
1512
|
+
firstAvailableDate: number;
|
|
1513
|
+
minDate: Date | string;
|
|
1514
|
+
maxDate: Date;
|
|
1515
|
+
autoRange: string | number;
|
|
1516
|
+
maxRange: string | number;
|
|
1517
|
+
activeState: boolean;
|
|
1518
|
+
disabledState: boolean;
|
|
1519
|
+
monthPicker: boolean;
|
|
1520
|
+
customFormatCallback: any;
|
|
1521
|
+
inputLabel: string;
|
|
1522
|
+
utc: boolean;
|
|
1523
|
+
teleport: boolean | string;
|
|
1524
|
+
closeOnScroll: boolean;
|
|
1525
|
+
enableQuickfilterToggle: boolean;
|
|
1526
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
1527
|
+
datePickerRef: ({
|
|
1528
|
+
$: import('vue').ComponentInternalInstance;
|
|
1529
|
+
$data: {};
|
|
1530
|
+
$props: Partial<{
|
|
1531
|
+
[x: number]: string;
|
|
1532
|
+
} | {}> & Omit<({
|
|
1533
|
+
readonly [x: number]: string;
|
|
1534
|
+
readonly [Symbol.iterator]?: ArrayIterator<string> | undefined;
|
|
1535
|
+
readonly [Symbol.unscopables]?: {
|
|
1536
|
+
[x: number]: boolean | undefined;
|
|
1537
|
+
length?: boolean | undefined;
|
|
1538
|
+
toString?: boolean | undefined;
|
|
1539
|
+
toLocaleString?: boolean | undefined;
|
|
1540
|
+
pop?: boolean | undefined;
|
|
1541
|
+
push?: boolean | undefined;
|
|
1542
|
+
concat?: boolean | undefined;
|
|
1543
|
+
join?: boolean | undefined;
|
|
1544
|
+
reverse?: boolean | undefined;
|
|
1545
|
+
shift?: boolean | undefined;
|
|
1546
|
+
slice?: boolean | undefined;
|
|
1547
|
+
sort?: boolean | undefined;
|
|
1548
|
+
splice?: boolean | undefined;
|
|
1549
|
+
unshift?: boolean | undefined;
|
|
1550
|
+
indexOf?: boolean | undefined;
|
|
1551
|
+
lastIndexOf?: boolean | undefined;
|
|
1552
|
+
every?: boolean | undefined;
|
|
1553
|
+
some?: boolean | undefined;
|
|
1554
|
+
forEach?: boolean | undefined;
|
|
1555
|
+
map?: boolean | undefined;
|
|
1556
|
+
filter?: boolean | undefined;
|
|
1557
|
+
reduce?: boolean | undefined;
|
|
1558
|
+
reduceRight?: boolean | undefined;
|
|
1559
|
+
find?: boolean | undefined;
|
|
1560
|
+
findIndex?: boolean | undefined;
|
|
1561
|
+
fill?: boolean | undefined;
|
|
1562
|
+
copyWithin?: boolean | undefined;
|
|
1563
|
+
entries?: boolean | undefined;
|
|
1564
|
+
keys?: boolean | undefined;
|
|
1565
|
+
values?: boolean | undefined;
|
|
1566
|
+
includes?: boolean | undefined;
|
|
1567
|
+
flatMap?: boolean | undefined;
|
|
1568
|
+
flat?: boolean | undefined;
|
|
1569
|
+
at?: boolean | undefined;
|
|
1570
|
+
findLast?: boolean | undefined;
|
|
1571
|
+
findLastIndex?: boolean | undefined;
|
|
1572
|
+
toReversed?: boolean | undefined;
|
|
1573
|
+
toSorted?: boolean | undefined;
|
|
1574
|
+
toSpliced?: boolean | undefined;
|
|
1575
|
+
with?: boolean | undefined;
|
|
1576
|
+
[Symbol.iterator]?: boolean | undefined;
|
|
1577
|
+
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1578
|
+
} | undefined;
|
|
1579
|
+
readonly filter?: {
|
|
1580
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S[];
|
|
1581
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
1582
|
+
} | undefined;
|
|
1583
|
+
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
1584
|
+
readonly concat?: string[] | undefined;
|
|
1585
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1586
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
1587
|
+
readonly slice?: string[] | undefined;
|
|
1588
|
+
readonly length?: number | undefined;
|
|
1589
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
1590
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
1591
|
+
readonly toLocaleString?: string | undefined;
|
|
1592
|
+
readonly pop?: string | undefined;
|
|
1593
|
+
readonly push?: number | undefined;
|
|
1594
|
+
readonly join?: string | undefined;
|
|
1595
|
+
readonly reverse?: string[] | undefined;
|
|
1596
|
+
readonly shift?: string | undefined;
|
|
1597
|
+
readonly sort?: string[] | undefined;
|
|
1598
|
+
readonly splice?: {
|
|
1599
|
+
(start: number, deleteCount?: number): string[];
|
|
1600
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
1601
|
+
} | undefined;
|
|
1602
|
+
readonly unshift?: number | undefined;
|
|
1603
|
+
readonly every?: {
|
|
1604
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
1605
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
1606
|
+
} | undefined;
|
|
1607
|
+
readonly some?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
1608
|
+
readonly forEach?: ((callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void) | undefined;
|
|
1609
|
+
readonly reduce?: {
|
|
1610
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
1611
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
1612
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
1613
|
+
} | undefined;
|
|
1614
|
+
readonly reduceRight?: {
|
|
1615
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
1616
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
1617
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
1618
|
+
} | undefined;
|
|
1619
|
+
readonly find?: {
|
|
1620
|
+
<S extends string>(predicate: (value: string, index: number, obj: string[]) => value is S, thisArg?: any): S | undefined;
|
|
1621
|
+
(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
|
|
1622
|
+
} | undefined;
|
|
1623
|
+
readonly findIndex?: ((predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
1624
|
+
readonly fill?: ((value: string, start?: number, end?: number) => string[]) | undefined;
|
|
1625
|
+
readonly copyWithin?: ((target: number, start: number, end?: number) => string[]) | undefined;
|
|
1626
|
+
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
1627
|
+
readonly keys?: ArrayIterator<number> | undefined;
|
|
1628
|
+
readonly values?: ArrayIterator<string> | undefined;
|
|
1629
|
+
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
1630
|
+
readonly flat?: unknown[] | undefined;
|
|
1631
|
+
readonly findLast?: {
|
|
1632
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
1633
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
1634
|
+
} | undefined;
|
|
1635
|
+
readonly findLastIndex?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
1636
|
+
readonly toReversed?: string[] | undefined;
|
|
1637
|
+
readonly toSorted?: string[] | undefined;
|
|
1638
|
+
readonly toSpliced?: {
|
|
1639
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
1640
|
+
(start: number, deleteCount?: number): string[];
|
|
1641
|
+
} | undefined;
|
|
1642
|
+
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
1643
|
+
readonly toString?: string | undefined;
|
|
1644
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1645
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1646
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1647
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
1648
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
1649
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
1650
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1651
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
1652
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
1653
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
1654
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
1655
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
1656
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
1657
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
1658
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
1659
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
1660
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
1661
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
1662
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
1663
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
1664
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
1665
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
1666
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
1667
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
1668
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
1669
|
+
} | {
|
|
1670
|
+
readonly name?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1671
|
+
readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1672
|
+
readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1673
|
+
readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1674
|
+
readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
|
|
1675
|
+
readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1676
|
+
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1677
|
+
readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
|
|
1678
|
+
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
1679
|
+
static: boolean;
|
|
1680
|
+
solo: boolean;
|
|
1681
|
+
count: number | string;
|
|
1682
|
+
}> | undefined, import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
1683
|
+
static: boolean;
|
|
1684
|
+
solo: boolean;
|
|
1685
|
+
count: number | string;
|
|
1686
|
+
}> | undefined> | null | undefined;
|
|
1687
|
+
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1688
|
+
readonly autoApply?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1689
|
+
readonly locale?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1690
|
+
readonly autoPosition?: import('vue').Prop<boolean | "top" | "bottom" | undefined, boolean | "top" | "bottom" | undefined> | null | undefined;
|
|
1691
|
+
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1692
|
+
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1693
|
+
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1694
|
+
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
1695
|
+
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
1696
|
+
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
1697
|
+
readonly uid?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1698
|
+
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1699
|
+
readonly position?: import('vue').Prop<"left" | "center" | "right" | undefined, "left" | "center" | "right" | undefined> | null | undefined;
|
|
1700
|
+
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1701
|
+
readonly weekNumbers?: import('vue').Prop<import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
1702
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
1703
|
+
hideOnOffsetDates?: boolean;
|
|
1704
|
+
} | undefined, import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
1705
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
1706
|
+
hideOnOffsetDates?: boolean;
|
|
1707
|
+
} | undefined> | null | undefined;
|
|
1708
|
+
readonly hoursIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1709
|
+
readonly hoursGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1710
|
+
readonly secondsGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1711
|
+
readonly minutesGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1712
|
+
readonly minutesIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1713
|
+
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1714
|
+
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
1715
|
+
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
1716
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
1717
|
+
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1718
|
+
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1719
|
+
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1720
|
+
readonly state?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1721
|
+
readonly clearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1722
|
+
readonly alwaysClearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1723
|
+
readonly filters?: import('vue').Prop<{
|
|
1724
|
+
months?: number[];
|
|
1725
|
+
years?: number[];
|
|
1726
|
+
times?: {
|
|
1727
|
+
hours?: number[];
|
|
1728
|
+
minutes?: number[];
|
|
1729
|
+
seconds?: number[];
|
|
1730
|
+
};
|
|
1731
|
+
} | undefined, {
|
|
1732
|
+
months?: number[];
|
|
1733
|
+
years?: number[];
|
|
1734
|
+
times?: {
|
|
1735
|
+
hours?: number[];
|
|
1736
|
+
minutes?: number[];
|
|
1737
|
+
seconds?: number[];
|
|
1738
|
+
};
|
|
1739
|
+
} | undefined> | null | undefined;
|
|
1740
|
+
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1741
|
+
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
1742
|
+
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
1743
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
1744
|
+
input?: boolean;
|
|
1745
|
+
} | undefined, boolean | {
|
|
1746
|
+
input?: boolean;
|
|
1747
|
+
} | undefined> | null | undefined;
|
|
1748
|
+
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1749
|
+
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1750
|
+
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1751
|
+
readonly timePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1752
|
+
readonly textInput?: import('vue').Prop<boolean | {
|
|
1753
|
+
enterSubmit?: boolean;
|
|
1754
|
+
tabSubmit?: boolean;
|
|
1755
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
1756
|
+
rangeSeparator?: string;
|
|
1757
|
+
selectOnFocus?: boolean;
|
|
1758
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
1759
|
+
escClose?: boolean;
|
|
1760
|
+
} | undefined, boolean | {
|
|
1761
|
+
enterSubmit?: boolean;
|
|
1762
|
+
tabSubmit?: boolean;
|
|
1763
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
1764
|
+
rangeSeparator?: string;
|
|
1765
|
+
selectOnFocus?: boolean;
|
|
1766
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
1767
|
+
escClose?: boolean;
|
|
1768
|
+
} | undefined> | null | undefined;
|
|
1769
|
+
readonly monthNameFormat?: import('vue').Prop<"long" | "short" | undefined, "long" | "short" | undefined> | null | undefined;
|
|
1770
|
+
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1771
|
+
readonly startTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined> | null | undefined;
|
|
1772
|
+
readonly hideOffsetDates?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1773
|
+
readonly noToday?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1774
|
+
readonly noHoursOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1775
|
+
readonly noMinutesOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1776
|
+
readonly noSecondsOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1777
|
+
readonly altPosition?: import('vue').Prop<((el: HTMLElement | undefined) => Record<string, string | number>) | undefined, ((el: HTMLElement | undefined) => Record<string, string | number>) | undefined> | null | undefined;
|
|
1778
|
+
readonly disabledWeekDays?: import('vue').Prop<string[] | number[] | undefined, string[] | number[] | undefined> | null | undefined;
|
|
1779
|
+
readonly allowedDates?: import('vue').Prop<string[] | Date[] | undefined, string[] | Date[] | undefined> | null | undefined;
|
|
1780
|
+
readonly nowButtonLabel?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1781
|
+
readonly monthChangeOnScroll?: import('vue').Prop<boolean | "inverse" | undefined, boolean | "inverse" | undefined> | null | undefined;
|
|
1782
|
+
readonly markers?: import('vue').Prop<import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined, import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined> | null | undefined;
|
|
1783
|
+
readonly transitions?: import('vue').Prop<boolean | {
|
|
1784
|
+
menuAppearTop?: string;
|
|
1785
|
+
menuAppearBottom?: string;
|
|
1786
|
+
open?: string;
|
|
1787
|
+
close?: string;
|
|
1788
|
+
next?: string;
|
|
1789
|
+
previous?: string;
|
|
1790
|
+
vNext?: string;
|
|
1791
|
+
vPrevious?: string;
|
|
1792
|
+
} | undefined, boolean | {
|
|
1793
|
+
menuAppearTop?: string;
|
|
1794
|
+
menuAppearBottom?: string;
|
|
1795
|
+
open?: string;
|
|
1796
|
+
close?: string;
|
|
1797
|
+
next?: string;
|
|
1798
|
+
previous?: string;
|
|
1799
|
+
vNext?: string;
|
|
1800
|
+
vPrevious?: string;
|
|
1801
|
+
} | undefined> | null | undefined;
|
|
1802
|
+
readonly enableSeconds?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1803
|
+
readonly escClose?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1804
|
+
readonly spaceConfirm?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1805
|
+
readonly monthChangeOnArrows?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1806
|
+
readonly formatLocale?: import('vue').Prop<import('date-fns').Locale | undefined, import('date-fns').Locale | undefined> | null | undefined;
|
|
1807
|
+
readonly multiDates?: import('vue').Prop<boolean | {
|
|
1808
|
+
limit?: number | string;
|
|
1809
|
+
dragSelect?: boolean;
|
|
1810
|
+
} | undefined, boolean | {
|
|
1811
|
+
limit?: number | string;
|
|
1812
|
+
dragSelect?: boolean;
|
|
1813
|
+
} | undefined> | null | undefined;
|
|
1814
|
+
readonly presetDates?: import('vue').Prop<{
|
|
1815
|
+
label: string;
|
|
1816
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
1817
|
+
style?: Record<string, string>;
|
|
1818
|
+
slot?: string;
|
|
1819
|
+
noTz?: boolean;
|
|
1820
|
+
testId?: string;
|
|
1821
|
+
}[] | undefined, {
|
|
1822
|
+
label: string;
|
|
1823
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
1824
|
+
style?: Record<string, string>;
|
|
1825
|
+
slot?: string;
|
|
1826
|
+
noTz?: boolean;
|
|
1827
|
+
testId?: string;
|
|
1828
|
+
}[] | undefined> | null | undefined;
|
|
1829
|
+
readonly flow?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
1830
|
+
readonly partialFlow?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1831
|
+
readonly preventMinMaxNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1832
|
+
readonly reverseYears?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1833
|
+
readonly weekPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1834
|
+
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1835
|
+
readonly ariaLabels?: import('vue').Prop<{
|
|
1836
|
+
toggleOverlay?: string;
|
|
1837
|
+
menu?: string;
|
|
1838
|
+
input?: string;
|
|
1839
|
+
calendarWrap?: string;
|
|
1840
|
+
calendarDays?: string;
|
|
1841
|
+
openTimePicker?: string;
|
|
1842
|
+
closeTimePicker?: string;
|
|
1843
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1844
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1845
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1846
|
+
amPmButton?: string;
|
|
1847
|
+
openYearsOverlay?: string;
|
|
1848
|
+
openMonthsOverlay?: string;
|
|
1849
|
+
nextMonth?: string;
|
|
1850
|
+
prevMonth?: string;
|
|
1851
|
+
nextYear?: string;
|
|
1852
|
+
prevYear?: string;
|
|
1853
|
+
day?: ({ value }: {
|
|
1854
|
+
value: Date;
|
|
1855
|
+
}) => string;
|
|
1856
|
+
weekDay?: (day: number) => string;
|
|
1857
|
+
clearInput?: string;
|
|
1858
|
+
calendarIcon?: string;
|
|
1859
|
+
timePicker?: string;
|
|
1860
|
+
monthPicker?: (overlay: boolean) => string;
|
|
1861
|
+
yearPicker?: (overlay: boolean) => string;
|
|
1862
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1863
|
+
} | undefined, {
|
|
1864
|
+
toggleOverlay?: string;
|
|
1865
|
+
menu?: string;
|
|
1866
|
+
input?: string;
|
|
1867
|
+
calendarWrap?: string;
|
|
1868
|
+
calendarDays?: string;
|
|
1869
|
+
openTimePicker?: string;
|
|
1870
|
+
closeTimePicker?: string;
|
|
1871
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1872
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1873
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1874
|
+
amPmButton?: string;
|
|
1875
|
+
openYearsOverlay?: string;
|
|
1876
|
+
openMonthsOverlay?: string;
|
|
1877
|
+
nextMonth?: string;
|
|
1878
|
+
prevMonth?: string;
|
|
1879
|
+
nextYear?: string;
|
|
1880
|
+
prevYear?: string;
|
|
1881
|
+
day?: ({ value }: {
|
|
1882
|
+
value: Date;
|
|
1883
|
+
}) => string;
|
|
1884
|
+
weekDay?: (day: number) => string;
|
|
1885
|
+
clearInput?: string;
|
|
1886
|
+
calendarIcon?: string;
|
|
1887
|
+
timePicker?: string;
|
|
1888
|
+
monthPicker?: (overlay: boolean) => string;
|
|
1889
|
+
yearPicker?: (overlay: boolean) => string;
|
|
1890
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1891
|
+
} | undefined> | null | undefined;
|
|
1892
|
+
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1893
|
+
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1894
|
+
readonly dayNames?: import('vue').Prop<string[] | ((lang: string, weekStart: number) => string[]) | undefined, string[] | ((lang: string, weekStart: number) => string[]) | undefined> | null | undefined;
|
|
1895
|
+
readonly modelType?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1896
|
+
readonly modelAuto?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1897
|
+
readonly highlight?: import('vue').Prop<((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
1898
|
+
month: number;
|
|
1899
|
+
year: number;
|
|
1900
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
1901
|
+
quarter: number;
|
|
1902
|
+
year: number;
|
|
1903
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined, ((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
1904
|
+
month: number;
|
|
1905
|
+
year: number;
|
|
1906
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
1907
|
+
quarter: number;
|
|
1908
|
+
year: number;
|
|
1909
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined> | null | undefined;
|
|
1910
|
+
readonly offset?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1911
|
+
readonly teleportCenter?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1912
|
+
readonly ignoreTimeValidation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1913
|
+
readonly dayClass?: import('vue').Prop<((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined, ((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined> | null | undefined;
|
|
1914
|
+
readonly hideNavigation?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
1915
|
+
readonly sixWeeks?: import('vue').Prop<boolean | "center" | "append" | "prepend" | "fair" | undefined, boolean | "center" | "append" | "prepend" | "fair" | undefined> | null | undefined;
|
|
1916
|
+
readonly timezone?: import('vue').Prop<string | {
|
|
1917
|
+
timezone?: string;
|
|
1918
|
+
exactMatch?: boolean;
|
|
1919
|
+
dateInTz?: string;
|
|
1920
|
+
emitTimezone?: string;
|
|
1921
|
+
convertModel?: boolean;
|
|
1922
|
+
} | undefined, string | {
|
|
1923
|
+
timezone?: string;
|
|
1924
|
+
exactMatch?: boolean;
|
|
1925
|
+
dateInTz?: string;
|
|
1926
|
+
emitTimezone?: string;
|
|
1927
|
+
convertModel?: boolean;
|
|
1928
|
+
} | undefined> | null | undefined;
|
|
1929
|
+
readonly disableYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1930
|
+
readonly focusStartDate?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1931
|
+
readonly disabledTimes?: import('vue').Prop<((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined, ((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined> | null | undefined;
|
|
1932
|
+
readonly timePickerInline?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1933
|
+
readonly config?: import('vue').Prop<import('@vuepic/vue-datepicker').GeneralConfig | undefined, import('@vuepic/vue-datepicker').GeneralConfig | undefined> | null | undefined;
|
|
1934
|
+
readonly quarterPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1935
|
+
readonly yearFirst?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1936
|
+
readonly loading?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1937
|
+
readonly onInternalModelChange?: import('vue').Prop<((...args: any[]) => void) | undefined, ((...args: any[]) => void) | undefined> | null | undefined;
|
|
1938
|
+
readonly enableMinutes?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1939
|
+
readonly ui?: import('vue').Prop<Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined, Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined> | null | undefined;
|
|
1940
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1941
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1942
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1943
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
1944
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
1945
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
1946
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1947
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
1948
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
1949
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
1950
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
1951
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
1952
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
1953
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
1954
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
1955
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
1956
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
1957
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
1958
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
1959
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
1960
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
1961
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
1962
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
1963
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
1964
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
1965
|
+
}) & import('@vuepic/vue-datepicker').VueDatePickerProps, never>;
|
|
1966
|
+
$attrs: {
|
|
1967
|
+
[x: string]: unknown;
|
|
1968
|
+
};
|
|
1969
|
+
$refs: {
|
|
1970
|
+
[x: string]: unknown;
|
|
1971
|
+
};
|
|
1972
|
+
$slots: Readonly<{
|
|
1973
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
1974
|
+
}>;
|
|
1975
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
1976
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
1977
|
+
$host: Element | null;
|
|
1978
|
+
$emit: (event: import('@vuepic/vue-datepicker').EmitEvents, ...args: any[]) => void;
|
|
1979
|
+
$el: any;
|
|
1980
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
1981
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1982
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1983
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1984
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
1985
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
1986
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
1987
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1988
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
1989
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
1990
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
1991
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
1992
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
1993
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
1994
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
1995
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
1996
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
1997
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
1998
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
1999
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
2000
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
2001
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
2002
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
2003
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
2004
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
2005
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
2006
|
+
}, {}, {}, import('vue').ComputedOptions, import('@vuepic/vue-datepicker').PublicMethods, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, import('@vuepic/vue-datepicker').EmitEvents[], string, {
|
|
2007
|
+
[x: number]: string;
|
|
2008
|
+
} | {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
2009
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
2010
|
+
created?: (() => void) | (() => void)[];
|
|
2011
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
2012
|
+
mounted?: (() => void) | (() => void)[];
|
|
2013
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
2014
|
+
updated?: (() => void) | (() => void)[];
|
|
2015
|
+
activated?: (() => void) | (() => void)[];
|
|
2016
|
+
deactivated?: (() => void) | (() => void)[];
|
|
2017
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
2018
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
2019
|
+
destroyed?: (() => void) | (() => void)[];
|
|
2020
|
+
unmounted?: (() => void) | (() => void)[];
|
|
2021
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
2022
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
2023
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2024
|
+
};
|
|
2025
|
+
$forceUpdate: () => void;
|
|
2026
|
+
$nextTick: typeof import('vue').nextTick;
|
|
2027
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
2028
|
+
} & Readonly<{
|
|
2029
|
+
[x: number]: string;
|
|
2030
|
+
}> & Omit<{} & (Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
2031
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2032
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2033
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
2034
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
2035
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
2036
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
2037
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
2038
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
2039
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
2040
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
2041
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
2042
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
2043
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
2044
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
2045
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
2046
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
2047
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
2048
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
2049
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
2050
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
2051
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
2052
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
2053
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
2054
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
2055
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
2056
|
+
}), never> & import('vue').ShallowUnwrapRef<{}> & {
|
|
2057
|
+
[x: string]: never;
|
|
2058
|
+
} & import('@vuepic/vue-datepicker').PublicMethods & import('vue').ComponentCustomProperties & {} & {
|
|
2059
|
+
$slots: Readonly<import('@vuepic/vue-datepicker').Slots> & import('@vuepic/vue-datepicker').Slots;
|
|
2060
|
+
}) | ({
|
|
2061
|
+
$: import('vue').ComponentInternalInstance;
|
|
2062
|
+
$data: {};
|
|
2063
|
+
$props: Partial<{
|
|
2064
|
+
[x: number]: string;
|
|
2065
|
+
} | {}> & Omit<({
|
|
2066
|
+
readonly [x: number]: string;
|
|
2067
|
+
readonly [Symbol.iterator]?: ArrayIterator<string> | undefined;
|
|
2068
|
+
readonly [Symbol.unscopables]?: {
|
|
2069
|
+
[x: number]: boolean | undefined;
|
|
2070
|
+
length?: boolean | undefined;
|
|
2071
|
+
toString?: boolean | undefined;
|
|
2072
|
+
toLocaleString?: boolean | undefined;
|
|
2073
|
+
pop?: boolean | undefined;
|
|
2074
|
+
push?: boolean | undefined;
|
|
2075
|
+
concat?: boolean | undefined;
|
|
2076
|
+
join?: boolean | undefined;
|
|
2077
|
+
reverse?: boolean | undefined;
|
|
2078
|
+
shift?: boolean | undefined;
|
|
2079
|
+
slice?: boolean | undefined;
|
|
2080
|
+
sort?: boolean | undefined;
|
|
2081
|
+
splice?: boolean | undefined;
|
|
2082
|
+
unshift?: boolean | undefined;
|
|
2083
|
+
indexOf?: boolean | undefined;
|
|
2084
|
+
lastIndexOf?: boolean | undefined;
|
|
2085
|
+
every?: boolean | undefined;
|
|
2086
|
+
some?: boolean | undefined;
|
|
2087
|
+
forEach?: boolean | undefined;
|
|
2088
|
+
map?: boolean | undefined;
|
|
2089
|
+
filter?: boolean | undefined;
|
|
2090
|
+
reduce?: boolean | undefined;
|
|
2091
|
+
reduceRight?: boolean | undefined;
|
|
2092
|
+
find?: boolean | undefined;
|
|
2093
|
+
findIndex?: boolean | undefined;
|
|
2094
|
+
fill?: boolean | undefined;
|
|
2095
|
+
copyWithin?: boolean | undefined;
|
|
2096
|
+
entries?: boolean | undefined;
|
|
2097
|
+
keys?: boolean | undefined;
|
|
2098
|
+
values?: boolean | undefined;
|
|
2099
|
+
includes?: boolean | undefined;
|
|
2100
|
+
flatMap?: boolean | undefined;
|
|
2101
|
+
flat?: boolean | undefined;
|
|
2102
|
+
at?: boolean | undefined;
|
|
2103
|
+
findLast?: boolean | undefined;
|
|
2104
|
+
findLastIndex?: boolean | undefined;
|
|
2105
|
+
toReversed?: boolean | undefined;
|
|
2106
|
+
toSorted?: boolean | undefined;
|
|
2107
|
+
toSpliced?: boolean | undefined;
|
|
2108
|
+
with?: boolean | undefined;
|
|
2109
|
+
[Symbol.iterator]?: boolean | undefined;
|
|
2110
|
+
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
2111
|
+
} | undefined;
|
|
2112
|
+
readonly filter?: {
|
|
2113
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S[];
|
|
2114
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
2115
|
+
} | undefined;
|
|
2116
|
+
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
2117
|
+
readonly concat?: string[] | undefined;
|
|
2118
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
2119
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
2120
|
+
readonly slice?: string[] | undefined;
|
|
2121
|
+
readonly length?: number | undefined;
|
|
2122
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
2123
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
2124
|
+
readonly toLocaleString?: string | undefined;
|
|
2125
|
+
readonly pop?: string | undefined;
|
|
2126
|
+
readonly push?: number | undefined;
|
|
2127
|
+
readonly join?: string | undefined;
|
|
2128
|
+
readonly reverse?: string[] | undefined;
|
|
2129
|
+
readonly shift?: string | undefined;
|
|
2130
|
+
readonly sort?: string[] | undefined;
|
|
2131
|
+
readonly splice?: {
|
|
2132
|
+
(start: number, deleteCount?: number): string[];
|
|
2133
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
2134
|
+
} | undefined;
|
|
2135
|
+
readonly unshift?: number | undefined;
|
|
2136
|
+
readonly every?: {
|
|
2137
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
2138
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
2139
|
+
} | undefined;
|
|
2140
|
+
readonly some?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
2141
|
+
readonly forEach?: ((callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void) | undefined;
|
|
2142
|
+
readonly reduce?: {
|
|
2143
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
2144
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
2145
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
2146
|
+
} | undefined;
|
|
2147
|
+
readonly reduceRight?: {
|
|
2148
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
2149
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
2150
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
2151
|
+
} | undefined;
|
|
2152
|
+
readonly find?: {
|
|
2153
|
+
<S extends string>(predicate: (value: string, index: number, obj: string[]) => value is S, thisArg?: any): S | undefined;
|
|
2154
|
+
(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
|
|
2155
|
+
} | undefined;
|
|
2156
|
+
readonly findIndex?: ((predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
2157
|
+
readonly fill?: ((value: string, start?: number, end?: number) => string[]) | undefined;
|
|
2158
|
+
readonly copyWithin?: ((target: number, start: number, end?: number) => string[]) | undefined;
|
|
2159
|
+
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
2160
|
+
readonly keys?: ArrayIterator<number> | undefined;
|
|
2161
|
+
readonly values?: ArrayIterator<string> | undefined;
|
|
2162
|
+
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
2163
|
+
readonly flat?: unknown[] | undefined;
|
|
2164
|
+
readonly findLast?: {
|
|
2165
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
2166
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
2167
|
+
} | undefined;
|
|
2168
|
+
readonly findLastIndex?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
2169
|
+
readonly toReversed?: string[] | undefined;
|
|
2170
|
+
readonly toSorted?: string[] | undefined;
|
|
2171
|
+
readonly toSpliced?: {
|
|
2172
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
2173
|
+
(start: number, deleteCount?: number): string[];
|
|
2174
|
+
} | undefined;
|
|
2175
|
+
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
2176
|
+
readonly toString?: string | undefined;
|
|
2177
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2178
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2179
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
2180
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
2181
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
2182
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
2183
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
2184
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
2185
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
2186
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
2187
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
2188
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
2189
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
2190
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
2191
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
2192
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
2193
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
2194
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
2195
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
2196
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
2197
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
2198
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
2199
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
2200
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
2201
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
2202
|
+
} | {
|
|
2203
|
+
readonly name?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2204
|
+
readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2205
|
+
readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2206
|
+
readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2207
|
+
readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
|
|
2208
|
+
readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2209
|
+
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2210
|
+
readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
|
|
2211
|
+
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
2212
|
+
static: boolean;
|
|
2213
|
+
solo: boolean;
|
|
2214
|
+
count: number | string;
|
|
2215
|
+
}> | undefined, import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
2216
|
+
static: boolean;
|
|
2217
|
+
solo: boolean;
|
|
2218
|
+
count: number | string;
|
|
2219
|
+
}> | undefined> | null | undefined;
|
|
2220
|
+
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2221
|
+
readonly autoApply?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2222
|
+
readonly locale?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2223
|
+
readonly autoPosition?: import('vue').Prop<boolean | "top" | "bottom" | undefined, boolean | "top" | "bottom" | undefined> | null | undefined;
|
|
2224
|
+
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
2225
|
+
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
2226
|
+
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2227
|
+
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
2228
|
+
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
2229
|
+
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
2230
|
+
readonly uid?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2231
|
+
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2232
|
+
readonly position?: import('vue').Prop<"left" | "center" | "right" | undefined, "left" | "center" | "right" | undefined> | null | undefined;
|
|
2233
|
+
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2234
|
+
readonly weekNumbers?: import('vue').Prop<import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
2235
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
2236
|
+
hideOnOffsetDates?: boolean;
|
|
2237
|
+
} | undefined, import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
2238
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
2239
|
+
hideOnOffsetDates?: boolean;
|
|
2240
|
+
} | undefined> | null | undefined;
|
|
2241
|
+
readonly hoursIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2242
|
+
readonly hoursGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2243
|
+
readonly secondsGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2244
|
+
readonly minutesGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2245
|
+
readonly minutesIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2246
|
+
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2247
|
+
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
2248
|
+
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
2249
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
2250
|
+
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
2251
|
+
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
2252
|
+
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2253
|
+
readonly state?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2254
|
+
readonly clearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2255
|
+
readonly alwaysClearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2256
|
+
readonly filters?: import('vue').Prop<{
|
|
2257
|
+
months?: number[];
|
|
2258
|
+
years?: number[];
|
|
2259
|
+
times?: {
|
|
2260
|
+
hours?: number[];
|
|
2261
|
+
minutes?: number[];
|
|
2262
|
+
seconds?: number[];
|
|
2263
|
+
};
|
|
2264
|
+
} | undefined, {
|
|
2265
|
+
months?: number[];
|
|
2266
|
+
years?: number[];
|
|
2267
|
+
times?: {
|
|
2268
|
+
hours?: number[];
|
|
2269
|
+
minutes?: number[];
|
|
2270
|
+
seconds?: number[];
|
|
2271
|
+
};
|
|
2272
|
+
} | undefined> | null | undefined;
|
|
2273
|
+
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2274
|
+
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
2275
|
+
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
2276
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
2277
|
+
input?: boolean;
|
|
2278
|
+
} | undefined, boolean | {
|
|
2279
|
+
input?: boolean;
|
|
2280
|
+
} | undefined> | null | undefined;
|
|
2281
|
+
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2282
|
+
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2283
|
+
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2284
|
+
readonly timePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2285
|
+
readonly textInput?: import('vue').Prop<boolean | {
|
|
2286
|
+
enterSubmit?: boolean;
|
|
2287
|
+
tabSubmit?: boolean;
|
|
2288
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
2289
|
+
rangeSeparator?: string;
|
|
2290
|
+
selectOnFocus?: boolean;
|
|
2291
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
2292
|
+
escClose?: boolean;
|
|
2293
|
+
} | undefined, boolean | {
|
|
2294
|
+
enterSubmit?: boolean;
|
|
2295
|
+
tabSubmit?: boolean;
|
|
2296
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
2297
|
+
rangeSeparator?: string;
|
|
2298
|
+
selectOnFocus?: boolean;
|
|
2299
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
2300
|
+
escClose?: boolean;
|
|
2301
|
+
} | undefined> | null | undefined;
|
|
2302
|
+
readonly monthNameFormat?: import('vue').Prop<"long" | "short" | undefined, "long" | "short" | undefined> | null | undefined;
|
|
2303
|
+
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
2304
|
+
readonly startTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined> | null | undefined;
|
|
2305
|
+
readonly hideOffsetDates?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2306
|
+
readonly noToday?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2307
|
+
readonly noHoursOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2308
|
+
readonly noMinutesOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2309
|
+
readonly noSecondsOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2310
|
+
readonly altPosition?: import('vue').Prop<((el: HTMLElement | undefined) => Record<string, string | number>) | undefined, ((el: HTMLElement | undefined) => Record<string, string | number>) | undefined> | null | undefined;
|
|
2311
|
+
readonly disabledWeekDays?: import('vue').Prop<string[] | number[] | undefined, string[] | number[] | undefined> | null | undefined;
|
|
2312
|
+
readonly allowedDates?: import('vue').Prop<string[] | Date[] | undefined, string[] | Date[] | undefined> | null | undefined;
|
|
2313
|
+
readonly nowButtonLabel?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2314
|
+
readonly monthChangeOnScroll?: import('vue').Prop<boolean | "inverse" | undefined, boolean | "inverse" | undefined> | null | undefined;
|
|
2315
|
+
readonly markers?: import('vue').Prop<import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined, import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined> | null | undefined;
|
|
2316
|
+
readonly transitions?: import('vue').Prop<boolean | {
|
|
2317
|
+
menuAppearTop?: string;
|
|
2318
|
+
menuAppearBottom?: string;
|
|
2319
|
+
open?: string;
|
|
2320
|
+
close?: string;
|
|
2321
|
+
next?: string;
|
|
2322
|
+
previous?: string;
|
|
2323
|
+
vNext?: string;
|
|
2324
|
+
vPrevious?: string;
|
|
2325
|
+
} | undefined, boolean | {
|
|
2326
|
+
menuAppearTop?: string;
|
|
2327
|
+
menuAppearBottom?: string;
|
|
2328
|
+
open?: string;
|
|
2329
|
+
close?: string;
|
|
2330
|
+
next?: string;
|
|
2331
|
+
previous?: string;
|
|
2332
|
+
vNext?: string;
|
|
2333
|
+
vPrevious?: string;
|
|
2334
|
+
} | undefined> | null | undefined;
|
|
2335
|
+
readonly enableSeconds?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2336
|
+
readonly escClose?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2337
|
+
readonly spaceConfirm?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2338
|
+
readonly monthChangeOnArrows?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2339
|
+
readonly formatLocale?: import('vue').Prop<import('date-fns').Locale | undefined, import('date-fns').Locale | undefined> | null | undefined;
|
|
2340
|
+
readonly multiDates?: import('vue').Prop<boolean | {
|
|
2341
|
+
limit?: number | string;
|
|
2342
|
+
dragSelect?: boolean;
|
|
2343
|
+
} | undefined, boolean | {
|
|
2344
|
+
limit?: number | string;
|
|
2345
|
+
dragSelect?: boolean;
|
|
2346
|
+
} | undefined> | null | undefined;
|
|
2347
|
+
readonly presetDates?: import('vue').Prop<{
|
|
2348
|
+
label: string;
|
|
2349
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
2350
|
+
style?: Record<string, string>;
|
|
2351
|
+
slot?: string;
|
|
2352
|
+
noTz?: boolean;
|
|
2353
|
+
testId?: string;
|
|
2354
|
+
}[] | undefined, {
|
|
2355
|
+
label: string;
|
|
2356
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
2357
|
+
style?: Record<string, string>;
|
|
2358
|
+
slot?: string;
|
|
2359
|
+
noTz?: boolean;
|
|
2360
|
+
testId?: string;
|
|
2361
|
+
}[] | undefined> | null | undefined;
|
|
2362
|
+
readonly flow?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
2363
|
+
readonly partialFlow?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2364
|
+
readonly preventMinMaxNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2365
|
+
readonly reverseYears?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2366
|
+
readonly weekPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2367
|
+
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2368
|
+
readonly ariaLabels?: import('vue').Prop<{
|
|
2369
|
+
toggleOverlay?: string;
|
|
2370
|
+
menu?: string;
|
|
2371
|
+
input?: string;
|
|
2372
|
+
calendarWrap?: string;
|
|
2373
|
+
calendarDays?: string;
|
|
2374
|
+
openTimePicker?: string;
|
|
2375
|
+
closeTimePicker?: string;
|
|
2376
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2377
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2378
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2379
|
+
amPmButton?: string;
|
|
2380
|
+
openYearsOverlay?: string;
|
|
2381
|
+
openMonthsOverlay?: string;
|
|
2382
|
+
nextMonth?: string;
|
|
2383
|
+
prevMonth?: string;
|
|
2384
|
+
nextYear?: string;
|
|
2385
|
+
prevYear?: string;
|
|
2386
|
+
day?: ({ value }: {
|
|
2387
|
+
value: Date;
|
|
2388
|
+
}) => string;
|
|
2389
|
+
weekDay?: (day: number) => string;
|
|
2390
|
+
clearInput?: string;
|
|
2391
|
+
calendarIcon?: string;
|
|
2392
|
+
timePicker?: string;
|
|
2393
|
+
monthPicker?: (overlay: boolean) => string;
|
|
2394
|
+
yearPicker?: (overlay: boolean) => string;
|
|
2395
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2396
|
+
} | undefined, {
|
|
2397
|
+
toggleOverlay?: string;
|
|
2398
|
+
menu?: string;
|
|
2399
|
+
input?: string;
|
|
2400
|
+
calendarWrap?: string;
|
|
2401
|
+
calendarDays?: string;
|
|
2402
|
+
openTimePicker?: string;
|
|
2403
|
+
closeTimePicker?: string;
|
|
2404
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2405
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2406
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2407
|
+
amPmButton?: string;
|
|
2408
|
+
openYearsOverlay?: string;
|
|
2409
|
+
openMonthsOverlay?: string;
|
|
2410
|
+
nextMonth?: string;
|
|
2411
|
+
prevMonth?: string;
|
|
2412
|
+
nextYear?: string;
|
|
2413
|
+
prevYear?: string;
|
|
2414
|
+
day?: ({ value }: {
|
|
2415
|
+
value: Date;
|
|
2416
|
+
}) => string;
|
|
2417
|
+
weekDay?: (day: number) => string;
|
|
2418
|
+
clearInput?: string;
|
|
2419
|
+
calendarIcon?: string;
|
|
2420
|
+
timePicker?: string;
|
|
2421
|
+
monthPicker?: (overlay: boolean) => string;
|
|
2422
|
+
yearPicker?: (overlay: boolean) => string;
|
|
2423
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2424
|
+
} | undefined> | null | undefined;
|
|
2425
|
+
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2426
|
+
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2427
|
+
readonly dayNames?: import('vue').Prop<string[] | ((lang: string, weekStart: number) => string[]) | undefined, string[] | ((lang: string, weekStart: number) => string[]) | undefined> | null | undefined;
|
|
2428
|
+
readonly modelType?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
2429
|
+
readonly modelAuto?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2430
|
+
readonly highlight?: import('vue').Prop<((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
2431
|
+
month: number;
|
|
2432
|
+
year: number;
|
|
2433
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
2434
|
+
quarter: number;
|
|
2435
|
+
year: number;
|
|
2436
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined, ((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
2437
|
+
month: number;
|
|
2438
|
+
year: number;
|
|
2439
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
2440
|
+
quarter: number;
|
|
2441
|
+
year: number;
|
|
2442
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined> | null | undefined;
|
|
2443
|
+
readonly offset?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2444
|
+
readonly teleportCenter?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2445
|
+
readonly ignoreTimeValidation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2446
|
+
readonly dayClass?: import('vue').Prop<((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined, ((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined> | null | undefined;
|
|
2447
|
+
readonly hideNavigation?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
2448
|
+
readonly sixWeeks?: import('vue').Prop<boolean | "center" | "append" | "prepend" | "fair" | undefined, boolean | "center" | "append" | "prepend" | "fair" | undefined> | null | undefined;
|
|
2449
|
+
readonly timezone?: import('vue').Prop<string | {
|
|
2450
|
+
timezone?: string;
|
|
2451
|
+
exactMatch?: boolean;
|
|
2452
|
+
dateInTz?: string;
|
|
2453
|
+
emitTimezone?: string;
|
|
2454
|
+
convertModel?: boolean;
|
|
2455
|
+
} | undefined, string | {
|
|
2456
|
+
timezone?: string;
|
|
2457
|
+
exactMatch?: boolean;
|
|
2458
|
+
dateInTz?: string;
|
|
2459
|
+
emitTimezone?: string;
|
|
2460
|
+
convertModel?: boolean;
|
|
2461
|
+
} | undefined> | null | undefined;
|
|
2462
|
+
readonly disableYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2463
|
+
readonly focusStartDate?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2464
|
+
readonly disabledTimes?: import('vue').Prop<((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined, ((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined> | null | undefined;
|
|
2465
|
+
readonly timePickerInline?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2466
|
+
readonly config?: import('vue').Prop<import('@vuepic/vue-datepicker').GeneralConfig | undefined, import('@vuepic/vue-datepicker').GeneralConfig | undefined> | null | undefined;
|
|
2467
|
+
readonly quarterPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2468
|
+
readonly yearFirst?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2469
|
+
readonly loading?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2470
|
+
readonly onInternalModelChange?: import('vue').Prop<((...args: any[]) => void) | undefined, ((...args: any[]) => void) | undefined> | null | undefined;
|
|
2471
|
+
readonly enableMinutes?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2472
|
+
readonly ui?: import('vue').Prop<Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined, Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined> | null | undefined;
|
|
2473
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2474
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2475
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
2476
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
2477
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
2478
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
2479
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
2480
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
2481
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
2482
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
2483
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
2484
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
2485
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
2486
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
2487
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
2488
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
2489
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
2490
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
2491
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
2492
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
2493
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
2494
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
2495
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
2496
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
2497
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
2498
|
+
}) & import('@vuepic/vue-datepicker').VueDatePickerProps, never>;
|
|
2499
|
+
$attrs: {
|
|
2500
|
+
[x: string]: unknown;
|
|
2501
|
+
};
|
|
2502
|
+
$refs: {
|
|
2503
|
+
[x: string]: unknown;
|
|
2504
|
+
};
|
|
2505
|
+
$slots: Readonly<{
|
|
2506
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
2507
|
+
}>;
|
|
2508
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
2509
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
2510
|
+
$host: Element | null;
|
|
2511
|
+
$emit: (event: import('@vuepic/vue-datepicker').EmitEvents, ...args: any[]) => void;
|
|
2512
|
+
$el: any;
|
|
2513
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
2514
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2515
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2516
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
2517
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
2518
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
2519
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
2520
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
2521
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
2522
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
2523
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
2524
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
2525
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
2526
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
2527
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
2528
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
2529
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
2530
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
2531
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
2532
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
2533
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
2534
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
2535
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
2536
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
2537
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
2538
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
2539
|
+
}, {}, {}, import('vue').ComputedOptions, import('@vuepic/vue-datepicker').PublicMethods, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, import('@vuepic/vue-datepicker').EmitEvents[], string, {
|
|
2540
|
+
[x: number]: string;
|
|
2541
|
+
} | {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
2542
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
2543
|
+
created?: (() => void) | (() => void)[];
|
|
2544
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
2545
|
+
mounted?: (() => void) | (() => void)[];
|
|
2546
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
2547
|
+
updated?: (() => void) | (() => void)[];
|
|
2548
|
+
activated?: (() => void) | (() => void)[];
|
|
2549
|
+
deactivated?: (() => void) | (() => void)[];
|
|
2550
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
2551
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
2552
|
+
destroyed?: (() => void) | (() => void)[];
|
|
2553
|
+
unmounted?: (() => void) | (() => void)[];
|
|
2554
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
2555
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
2556
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
2557
|
+
};
|
|
2558
|
+
$forceUpdate: () => void;
|
|
2559
|
+
$nextTick: typeof import('vue').nextTick;
|
|
2560
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
2561
|
+
} & Readonly<{}> & Omit<{} & (Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
2562
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2563
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2564
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
2565
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
2566
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
2567
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
2568
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
2569
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
2570
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
2571
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
2572
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
2573
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
2574
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
2575
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
2576
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
2577
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
2578
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
2579
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
2580
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
2581
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
2582
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
2583
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
2584
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
2585
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
2586
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
2587
|
+
}), never> & import('vue').ShallowUnwrapRef<{}> & {
|
|
2588
|
+
[x: string]: never;
|
|
2589
|
+
} & import('@vuepic/vue-datepicker').PublicMethods & import('vue').ComponentCustomProperties & {} & {
|
|
2590
|
+
$slots: Readonly<import('@vuepic/vue-datepicker').Slots> & import('@vuepic/vue-datepicker').Slots;
|
|
2591
|
+
}) | null;
|
|
2592
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
2593
|
+
P: {};
|
|
2594
|
+
B: {};
|
|
2595
|
+
D: {};
|
|
2596
|
+
C: {};
|
|
2597
|
+
M: {};
|
|
2598
|
+
Defaults: {};
|
|
2599
|
+
}, Readonly<{
|
|
2600
|
+
definesRange?: boolean;
|
|
2601
|
+
multiCalendars?: boolean;
|
|
2602
|
+
enableTimePicker?: boolean;
|
|
2603
|
+
autoApply?: boolean;
|
|
2604
|
+
closeOnAutoApply?: boolean;
|
|
2605
|
+
roundedEdges?: boolean;
|
|
2606
|
+
locale?: string;
|
|
2607
|
+
placeholderText?: string;
|
|
2608
|
+
quickFilterRanges?: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
2609
|
+
quickFilterHeadline?: string;
|
|
2610
|
+
selectedDate?: Date | [Date, Date] | string | {
|
|
2611
|
+
month: number;
|
|
2612
|
+
year: number;
|
|
2613
|
+
};
|
|
2614
|
+
autoPosition?: boolean;
|
|
2615
|
+
leftSidebar?: boolean;
|
|
2616
|
+
actionArea?: boolean;
|
|
2617
|
+
actionAreaExtraContent?: string;
|
|
2618
|
+
cancel?: string;
|
|
2619
|
+
submit?: string;
|
|
2620
|
+
firstAvailableDate?: number;
|
|
2621
|
+
minDate?: Date | string;
|
|
2622
|
+
maxDate?: Date;
|
|
2623
|
+
autoRange?: string | number | undefined;
|
|
2624
|
+
maxRange?: number | string | undefined;
|
|
2625
|
+
activeState?: boolean;
|
|
2626
|
+
disabledState?: boolean;
|
|
2627
|
+
monthPicker?: boolean;
|
|
2628
|
+
customFormatCallback?: any;
|
|
2629
|
+
inputLabel?: string;
|
|
2630
|
+
iconLeft?: (typeof iconNames)[number] | null;
|
|
2631
|
+
utc?: boolean;
|
|
2632
|
+
teleport?: boolean | string;
|
|
2633
|
+
closeOnScroll?: boolean;
|
|
2634
|
+
enableQuickfilterToggle?: boolean;
|
|
2635
|
+
}> & Readonly<{
|
|
2636
|
+
onClose?: (() => any) | undefined;
|
|
2637
|
+
onReset?: (() => any) | undefined;
|
|
2638
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
2639
|
+
onOpen?: (() => any) | undefined;
|
|
2640
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
2641
|
+
}>, {}, {}, {}, {}, {
|
|
2642
|
+
cancel: string;
|
|
2643
|
+
submit: string;
|
|
2644
|
+
iconLeft: (typeof iconNames)[number] | null;
|
|
2645
|
+
definesRange: boolean;
|
|
2646
|
+
multiCalendars: boolean;
|
|
2647
|
+
enableTimePicker: boolean;
|
|
2648
|
+
autoApply: boolean;
|
|
2649
|
+
closeOnAutoApply: boolean;
|
|
2650
|
+
roundedEdges: boolean;
|
|
2651
|
+
locale: string;
|
|
2652
|
+
placeholderText: string;
|
|
2653
|
+
quickFilterRanges: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
2654
|
+
quickFilterHeadline: string;
|
|
2655
|
+
selectedDate: Date | [Date, Date] | string | {
|
|
2656
|
+
month: number;
|
|
2657
|
+
year: number;
|
|
2658
|
+
};
|
|
2659
|
+
autoPosition: boolean;
|
|
2660
|
+
leftSidebar: boolean;
|
|
2661
|
+
actionArea: boolean;
|
|
2662
|
+
actionAreaExtraContent: string;
|
|
2663
|
+
firstAvailableDate: number;
|
|
2664
|
+
minDate: Date | string;
|
|
2665
|
+
maxDate: Date;
|
|
2666
|
+
autoRange: string | number;
|
|
2667
|
+
maxRange: string | number;
|
|
2668
|
+
activeState: boolean;
|
|
2669
|
+
disabledState: boolean;
|
|
2670
|
+
monthPicker: boolean;
|
|
2671
|
+
customFormatCallback: any;
|
|
2672
|
+
inputLabel: string;
|
|
2673
|
+
utc: boolean;
|
|
2674
|
+
teleport: boolean | string;
|
|
2675
|
+
closeOnScroll: boolean;
|
|
2676
|
+
enableQuickfilterToggle: boolean;
|
|
2677
|
+
}>;
|
|
2678
|
+
__isFragment?: never;
|
|
2679
|
+
__isTeleport?: never;
|
|
2680
|
+
__isSuspense?: never;
|
|
2681
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
2682
|
+
definesRange?: boolean;
|
|
2683
|
+
multiCalendars?: boolean;
|
|
2684
|
+
enableTimePicker?: boolean;
|
|
2685
|
+
autoApply?: boolean;
|
|
2686
|
+
closeOnAutoApply?: boolean;
|
|
2687
|
+
roundedEdges?: boolean;
|
|
2688
|
+
locale?: string;
|
|
2689
|
+
placeholderText?: string;
|
|
2690
|
+
quickFilterRanges?: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
2691
|
+
quickFilterHeadline?: string;
|
|
2692
|
+
selectedDate?: Date | [Date, Date] | string | {
|
|
2693
|
+
month: number;
|
|
2694
|
+
year: number;
|
|
2695
|
+
};
|
|
2696
|
+
autoPosition?: boolean;
|
|
2697
|
+
leftSidebar?: boolean;
|
|
2698
|
+
actionArea?: boolean;
|
|
2699
|
+
actionAreaExtraContent?: string;
|
|
2700
|
+
cancel?: string;
|
|
2701
|
+
submit?: string;
|
|
2702
|
+
firstAvailableDate?: number;
|
|
2703
|
+
minDate?: Date | string;
|
|
2704
|
+
maxDate?: Date;
|
|
2705
|
+
autoRange?: string | number | undefined;
|
|
2706
|
+
maxRange?: number | string | undefined;
|
|
2707
|
+
activeState?: boolean;
|
|
2708
|
+
disabledState?: boolean;
|
|
2709
|
+
monthPicker?: boolean;
|
|
2710
|
+
customFormatCallback?: any;
|
|
2711
|
+
inputLabel?: string;
|
|
2712
|
+
iconLeft?: (typeof iconNames)[number] | null;
|
|
2713
|
+
utc?: boolean;
|
|
2714
|
+
teleport?: boolean | string;
|
|
2715
|
+
closeOnScroll?: boolean;
|
|
2716
|
+
enableQuickfilterToggle?: boolean;
|
|
2717
|
+
}> & Readonly<{
|
|
2718
|
+
onClose?: (() => any) | undefined;
|
|
2719
|
+
onReset?: (() => any) | undefined;
|
|
2720
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
2721
|
+
onOpen?: (() => any) | undefined;
|
|
2722
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
2723
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2724
|
+
close: () => any;
|
|
2725
|
+
reset: () => any;
|
|
2726
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
2727
|
+
open: () => any;
|
|
2728
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
2729
|
+
}, string, {
|
|
2730
|
+
cancel: string;
|
|
2731
|
+
submit: string;
|
|
2732
|
+
iconLeft: (typeof iconNames)[number] | null;
|
|
2733
|
+
definesRange: boolean;
|
|
2734
|
+
multiCalendars: boolean;
|
|
2735
|
+
enableTimePicker: boolean;
|
|
2736
|
+
autoApply: boolean;
|
|
2737
|
+
closeOnAutoApply: boolean;
|
|
2738
|
+
roundedEdges: boolean;
|
|
2739
|
+
locale: string;
|
|
2740
|
+
placeholderText: string;
|
|
2741
|
+
quickFilterRanges: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
2742
|
+
quickFilterHeadline: string;
|
|
2743
|
+
selectedDate: Date | [Date, Date] | string | {
|
|
2744
|
+
month: number;
|
|
2745
|
+
year: number;
|
|
2746
|
+
};
|
|
2747
|
+
autoPosition: boolean;
|
|
2748
|
+
leftSidebar: boolean;
|
|
2749
|
+
actionArea: boolean;
|
|
2750
|
+
actionAreaExtraContent: string;
|
|
2751
|
+
firstAvailableDate: number;
|
|
2752
|
+
minDate: Date | string;
|
|
2753
|
+
maxDate: Date;
|
|
2754
|
+
autoRange: string | number;
|
|
2755
|
+
maxRange: string | number;
|
|
2756
|
+
activeState: boolean;
|
|
2757
|
+
disabledState: boolean;
|
|
2758
|
+
monthPicker: boolean;
|
|
2759
|
+
customFormatCallback: any;
|
|
2760
|
+
inputLabel: string;
|
|
2761
|
+
utc: boolean;
|
|
2762
|
+
teleport: boolean | string;
|
|
2763
|
+
closeOnScroll: boolean;
|
|
2764
|
+
enableQuickfilterToggle: boolean;
|
|
2765
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
2766
|
+
$slots: {
|
|
2767
|
+
actionArea?(_: {}): any;
|
|
2768
|
+
};
|
|
2769
|
+
})>) => {
|
|
1442
2770
|
components: {
|
|
1443
2771
|
UiDatePicker: {
|
|
1444
2772
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
@@ -1480,15 +2808,1346 @@ declare const meta: {
|
|
|
1480
2808
|
}> & Readonly<{
|
|
1481
2809
|
onClose?: (() => any) | undefined;
|
|
1482
2810
|
onReset?: (() => any) | undefined;
|
|
1483
|
-
"onDate-changed"?: ((
|
|
2811
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
2812
|
+
onOpen?: (() => any) | undefined;
|
|
2813
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
2814
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2815
|
+
close: () => any;
|
|
2816
|
+
reset: () => any;
|
|
2817
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
2818
|
+
open: () => any;
|
|
2819
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
2820
|
+
}, import('vue').PublicProps, {
|
|
2821
|
+
cancel: string;
|
|
2822
|
+
submit: string;
|
|
2823
|
+
iconLeft: (typeof iconNames)[number] | null;
|
|
2824
|
+
definesRange: boolean;
|
|
2825
|
+
multiCalendars: boolean;
|
|
2826
|
+
enableTimePicker: boolean;
|
|
2827
|
+
autoApply: boolean;
|
|
2828
|
+
closeOnAutoApply: boolean;
|
|
2829
|
+
roundedEdges: boolean;
|
|
2830
|
+
locale: string;
|
|
2831
|
+
placeholderText: string;
|
|
2832
|
+
quickFilterRanges: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
2833
|
+
quickFilterHeadline: string;
|
|
2834
|
+
selectedDate: Date | [Date, Date] | string | {
|
|
2835
|
+
month: number;
|
|
2836
|
+
year: number;
|
|
2837
|
+
};
|
|
2838
|
+
autoPosition: boolean;
|
|
2839
|
+
leftSidebar: boolean;
|
|
2840
|
+
actionArea: boolean;
|
|
2841
|
+
actionAreaExtraContent: string;
|
|
2842
|
+
firstAvailableDate: number;
|
|
2843
|
+
minDate: Date | string;
|
|
2844
|
+
maxDate: Date;
|
|
2845
|
+
autoRange: string | number;
|
|
2846
|
+
maxRange: string | number;
|
|
2847
|
+
activeState: boolean;
|
|
2848
|
+
disabledState: boolean;
|
|
2849
|
+
monthPicker: boolean;
|
|
2850
|
+
customFormatCallback: any;
|
|
2851
|
+
inputLabel: string;
|
|
2852
|
+
utc: boolean;
|
|
2853
|
+
teleport: boolean | string;
|
|
2854
|
+
closeOnScroll: boolean;
|
|
2855
|
+
enableQuickfilterToggle: boolean;
|
|
2856
|
+
}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
2857
|
+
datePickerRef: ({
|
|
2858
|
+
$: import('vue').ComponentInternalInstance;
|
|
2859
|
+
$data: {};
|
|
2860
|
+
$props: Partial<{
|
|
2861
|
+
[x: number]: string;
|
|
2862
|
+
} | {}> & Omit<({
|
|
2863
|
+
readonly [x: number]: string;
|
|
2864
|
+
readonly [Symbol.iterator]?: ArrayIterator<string> | undefined;
|
|
2865
|
+
readonly [Symbol.unscopables]?: {
|
|
2866
|
+
[x: number]: boolean | undefined;
|
|
2867
|
+
length?: boolean | undefined;
|
|
2868
|
+
toString?: boolean | undefined;
|
|
2869
|
+
toLocaleString?: boolean | undefined;
|
|
2870
|
+
pop?: boolean | undefined;
|
|
2871
|
+
push?: boolean | undefined;
|
|
2872
|
+
concat?: boolean | undefined;
|
|
2873
|
+
join?: boolean | undefined;
|
|
2874
|
+
reverse?: boolean | undefined;
|
|
2875
|
+
shift?: boolean | undefined;
|
|
2876
|
+
slice?: boolean | undefined;
|
|
2877
|
+
sort?: boolean | undefined;
|
|
2878
|
+
splice?: boolean | undefined;
|
|
2879
|
+
unshift?: boolean | undefined;
|
|
2880
|
+
indexOf?: boolean | undefined;
|
|
2881
|
+
lastIndexOf?: boolean | undefined;
|
|
2882
|
+
every?: boolean | undefined;
|
|
2883
|
+
some?: boolean | undefined;
|
|
2884
|
+
forEach?: boolean | undefined;
|
|
2885
|
+
map?: boolean | undefined;
|
|
2886
|
+
filter?: boolean | undefined;
|
|
2887
|
+
reduce?: boolean | undefined;
|
|
2888
|
+
reduceRight?: boolean | undefined;
|
|
2889
|
+
find?: boolean | undefined;
|
|
2890
|
+
findIndex?: boolean | undefined;
|
|
2891
|
+
fill?: boolean | undefined;
|
|
2892
|
+
copyWithin?: boolean | undefined;
|
|
2893
|
+
entries?: boolean | undefined;
|
|
2894
|
+
keys?: boolean | undefined;
|
|
2895
|
+
values?: boolean | undefined;
|
|
2896
|
+
includes?: boolean | undefined;
|
|
2897
|
+
flatMap?: boolean | undefined;
|
|
2898
|
+
flat?: boolean | undefined;
|
|
2899
|
+
at?: boolean | undefined;
|
|
2900
|
+
findLast?: boolean | undefined;
|
|
2901
|
+
findLastIndex?: boolean | undefined;
|
|
2902
|
+
toReversed?: boolean | undefined;
|
|
2903
|
+
toSorted?: boolean | undefined;
|
|
2904
|
+
toSpliced?: boolean | undefined;
|
|
2905
|
+
with?: boolean | undefined;
|
|
2906
|
+
[Symbol.iterator]?: boolean | undefined;
|
|
2907
|
+
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
2908
|
+
} | undefined;
|
|
2909
|
+
readonly filter?: {
|
|
2910
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S[];
|
|
2911
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
2912
|
+
} | undefined;
|
|
2913
|
+
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
2914
|
+
readonly concat?: string[] | undefined;
|
|
2915
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
2916
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
2917
|
+
readonly slice?: string[] | undefined;
|
|
2918
|
+
readonly length?: number | undefined;
|
|
2919
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
2920
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
2921
|
+
readonly toLocaleString?: string | undefined;
|
|
2922
|
+
readonly pop?: string | undefined;
|
|
2923
|
+
readonly push?: number | undefined;
|
|
2924
|
+
readonly join?: string | undefined;
|
|
2925
|
+
readonly reverse?: string[] | undefined;
|
|
2926
|
+
readonly shift?: string | undefined;
|
|
2927
|
+
readonly sort?: string[] | undefined;
|
|
2928
|
+
readonly splice?: {
|
|
2929
|
+
(start: number, deleteCount?: number): string[];
|
|
2930
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
2931
|
+
} | undefined;
|
|
2932
|
+
readonly unshift?: number | undefined;
|
|
2933
|
+
readonly every?: {
|
|
2934
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
2935
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
2936
|
+
} | undefined;
|
|
2937
|
+
readonly some?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
2938
|
+
readonly forEach?: ((callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void) | undefined;
|
|
2939
|
+
readonly reduce?: {
|
|
2940
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
2941
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
2942
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
2943
|
+
} | undefined;
|
|
2944
|
+
readonly reduceRight?: {
|
|
2945
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
2946
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
2947
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
2948
|
+
} | undefined;
|
|
2949
|
+
readonly find?: {
|
|
2950
|
+
<S extends string>(predicate: (value: string, index: number, obj: string[]) => value is S, thisArg?: any): S | undefined;
|
|
2951
|
+
(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
|
|
2952
|
+
} | undefined;
|
|
2953
|
+
readonly findIndex?: ((predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
2954
|
+
readonly fill?: ((value: string, start?: number, end?: number) => string[]) | undefined;
|
|
2955
|
+
readonly copyWithin?: ((target: number, start: number, end?: number) => string[]) | undefined;
|
|
2956
|
+
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
2957
|
+
readonly keys?: ArrayIterator<number> | undefined;
|
|
2958
|
+
readonly values?: ArrayIterator<string> | undefined;
|
|
2959
|
+
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
2960
|
+
readonly flat?: unknown[] | undefined;
|
|
2961
|
+
readonly findLast?: {
|
|
2962
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
2963
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
2964
|
+
} | undefined;
|
|
2965
|
+
readonly findLastIndex?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
2966
|
+
readonly toReversed?: string[] | undefined;
|
|
2967
|
+
readonly toSorted?: string[] | undefined;
|
|
2968
|
+
readonly toSpliced?: {
|
|
2969
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
2970
|
+
(start: number, deleteCount?: number): string[];
|
|
2971
|
+
} | undefined;
|
|
2972
|
+
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
2973
|
+
readonly toString?: string | undefined;
|
|
2974
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2975
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
2976
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
2977
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
2978
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
2979
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
2980
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
2981
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
2982
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
2983
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
2984
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
2985
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
2986
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
2987
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
2988
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
2989
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
2990
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
2991
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
2992
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
2993
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
2994
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
2995
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
2996
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
2997
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
2998
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
2999
|
+
} | {
|
|
3000
|
+
readonly name?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3001
|
+
readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3002
|
+
readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3003
|
+
readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3004
|
+
readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
|
|
3005
|
+
readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3006
|
+
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3007
|
+
readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
|
|
3008
|
+
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
3009
|
+
static: boolean;
|
|
3010
|
+
solo: boolean;
|
|
3011
|
+
count: number | string;
|
|
3012
|
+
}> | undefined, import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
3013
|
+
static: boolean;
|
|
3014
|
+
solo: boolean;
|
|
3015
|
+
count: number | string;
|
|
3016
|
+
}> | undefined> | null | undefined;
|
|
3017
|
+
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3018
|
+
readonly autoApply?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3019
|
+
readonly locale?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3020
|
+
readonly autoPosition?: import('vue').Prop<boolean | "top" | "bottom" | undefined, boolean | "top" | "bottom" | undefined> | null | undefined;
|
|
3021
|
+
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3022
|
+
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3023
|
+
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3024
|
+
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
3025
|
+
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
3026
|
+
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
3027
|
+
readonly uid?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3028
|
+
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3029
|
+
readonly position?: import('vue').Prop<"left" | "center" | "right" | undefined, "left" | "center" | "right" | undefined> | null | undefined;
|
|
3030
|
+
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3031
|
+
readonly weekNumbers?: import('vue').Prop<import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
3032
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
3033
|
+
hideOnOffsetDates?: boolean;
|
|
3034
|
+
} | undefined, import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
3035
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
3036
|
+
hideOnOffsetDates?: boolean;
|
|
3037
|
+
} | undefined> | null | undefined;
|
|
3038
|
+
readonly hoursIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3039
|
+
readonly hoursGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3040
|
+
readonly secondsGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3041
|
+
readonly minutesGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3042
|
+
readonly minutesIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3043
|
+
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3044
|
+
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
3045
|
+
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
3046
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
3047
|
+
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
3048
|
+
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
3049
|
+
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3050
|
+
readonly state?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3051
|
+
readonly clearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3052
|
+
readonly alwaysClearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3053
|
+
readonly filters?: import('vue').Prop<{
|
|
3054
|
+
months?: number[];
|
|
3055
|
+
years?: number[];
|
|
3056
|
+
times?: {
|
|
3057
|
+
hours?: number[];
|
|
3058
|
+
minutes?: number[];
|
|
3059
|
+
seconds?: number[];
|
|
3060
|
+
};
|
|
3061
|
+
} | undefined, {
|
|
3062
|
+
months?: number[];
|
|
3063
|
+
years?: number[];
|
|
3064
|
+
times?: {
|
|
3065
|
+
hours?: number[];
|
|
3066
|
+
minutes?: number[];
|
|
3067
|
+
seconds?: number[];
|
|
3068
|
+
};
|
|
3069
|
+
} | undefined> | null | undefined;
|
|
3070
|
+
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3071
|
+
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
3072
|
+
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
3073
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
3074
|
+
input?: boolean;
|
|
3075
|
+
} | undefined, boolean | {
|
|
3076
|
+
input?: boolean;
|
|
3077
|
+
} | undefined> | null | undefined;
|
|
3078
|
+
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3079
|
+
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3080
|
+
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3081
|
+
readonly timePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3082
|
+
readonly textInput?: import('vue').Prop<boolean | {
|
|
3083
|
+
enterSubmit?: boolean;
|
|
3084
|
+
tabSubmit?: boolean;
|
|
3085
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
3086
|
+
rangeSeparator?: string;
|
|
3087
|
+
selectOnFocus?: boolean;
|
|
3088
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
3089
|
+
escClose?: boolean;
|
|
3090
|
+
} | undefined, boolean | {
|
|
3091
|
+
enterSubmit?: boolean;
|
|
3092
|
+
tabSubmit?: boolean;
|
|
3093
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
3094
|
+
rangeSeparator?: string;
|
|
3095
|
+
selectOnFocus?: boolean;
|
|
3096
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
3097
|
+
escClose?: boolean;
|
|
3098
|
+
} | undefined> | null | undefined;
|
|
3099
|
+
readonly monthNameFormat?: import('vue').Prop<"long" | "short" | undefined, "long" | "short" | undefined> | null | undefined;
|
|
3100
|
+
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3101
|
+
readonly startTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined> | null | undefined;
|
|
3102
|
+
readonly hideOffsetDates?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3103
|
+
readonly noToday?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3104
|
+
readonly noHoursOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3105
|
+
readonly noMinutesOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3106
|
+
readonly noSecondsOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3107
|
+
readonly altPosition?: import('vue').Prop<((el: HTMLElement | undefined) => Record<string, string | number>) | undefined, ((el: HTMLElement | undefined) => Record<string, string | number>) | undefined> | null | undefined;
|
|
3108
|
+
readonly disabledWeekDays?: import('vue').Prop<string[] | number[] | undefined, string[] | number[] | undefined> | null | undefined;
|
|
3109
|
+
readonly allowedDates?: import('vue').Prop<string[] | Date[] | undefined, string[] | Date[] | undefined> | null | undefined;
|
|
3110
|
+
readonly nowButtonLabel?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3111
|
+
readonly monthChangeOnScroll?: import('vue').Prop<boolean | "inverse" | undefined, boolean | "inverse" | undefined> | null | undefined;
|
|
3112
|
+
readonly markers?: import('vue').Prop<import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined, import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined> | null | undefined;
|
|
3113
|
+
readonly transitions?: import('vue').Prop<boolean | {
|
|
3114
|
+
menuAppearTop?: string;
|
|
3115
|
+
menuAppearBottom?: string;
|
|
3116
|
+
open?: string;
|
|
3117
|
+
close?: string;
|
|
3118
|
+
next?: string;
|
|
3119
|
+
previous?: string;
|
|
3120
|
+
vNext?: string;
|
|
3121
|
+
vPrevious?: string;
|
|
3122
|
+
} | undefined, boolean | {
|
|
3123
|
+
menuAppearTop?: string;
|
|
3124
|
+
menuAppearBottom?: string;
|
|
3125
|
+
open?: string;
|
|
3126
|
+
close?: string;
|
|
3127
|
+
next?: string;
|
|
3128
|
+
previous?: string;
|
|
3129
|
+
vNext?: string;
|
|
3130
|
+
vPrevious?: string;
|
|
3131
|
+
} | undefined> | null | undefined;
|
|
3132
|
+
readonly enableSeconds?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3133
|
+
readonly escClose?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3134
|
+
readonly spaceConfirm?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3135
|
+
readonly monthChangeOnArrows?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3136
|
+
readonly formatLocale?: import('vue').Prop<import('date-fns').Locale | undefined, import('date-fns').Locale | undefined> | null | undefined;
|
|
3137
|
+
readonly multiDates?: import('vue').Prop<boolean | {
|
|
3138
|
+
limit?: number | string;
|
|
3139
|
+
dragSelect?: boolean;
|
|
3140
|
+
} | undefined, boolean | {
|
|
3141
|
+
limit?: number | string;
|
|
3142
|
+
dragSelect?: boolean;
|
|
3143
|
+
} | undefined> | null | undefined;
|
|
3144
|
+
readonly presetDates?: import('vue').Prop<{
|
|
3145
|
+
label: string;
|
|
3146
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
3147
|
+
style?: Record<string, string>;
|
|
3148
|
+
slot?: string;
|
|
3149
|
+
noTz?: boolean;
|
|
3150
|
+
testId?: string;
|
|
3151
|
+
}[] | undefined, {
|
|
3152
|
+
label: string;
|
|
3153
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
3154
|
+
style?: Record<string, string>;
|
|
3155
|
+
slot?: string;
|
|
3156
|
+
noTz?: boolean;
|
|
3157
|
+
testId?: string;
|
|
3158
|
+
}[] | undefined> | null | undefined;
|
|
3159
|
+
readonly flow?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
3160
|
+
readonly partialFlow?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3161
|
+
readonly preventMinMaxNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3162
|
+
readonly reverseYears?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3163
|
+
readonly weekPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3164
|
+
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3165
|
+
readonly ariaLabels?: import('vue').Prop<{
|
|
3166
|
+
toggleOverlay?: string;
|
|
3167
|
+
menu?: string;
|
|
3168
|
+
input?: string;
|
|
3169
|
+
calendarWrap?: string;
|
|
3170
|
+
calendarDays?: string;
|
|
3171
|
+
openTimePicker?: string;
|
|
3172
|
+
closeTimePicker?: string;
|
|
3173
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3174
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3175
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3176
|
+
amPmButton?: string;
|
|
3177
|
+
openYearsOverlay?: string;
|
|
3178
|
+
openMonthsOverlay?: string;
|
|
3179
|
+
nextMonth?: string;
|
|
3180
|
+
prevMonth?: string;
|
|
3181
|
+
nextYear?: string;
|
|
3182
|
+
prevYear?: string;
|
|
3183
|
+
day?: ({ value }: {
|
|
3184
|
+
value: Date;
|
|
3185
|
+
}) => string;
|
|
3186
|
+
weekDay?: (day: number) => string;
|
|
3187
|
+
clearInput?: string;
|
|
3188
|
+
calendarIcon?: string;
|
|
3189
|
+
timePicker?: string;
|
|
3190
|
+
monthPicker?: (overlay: boolean) => string;
|
|
3191
|
+
yearPicker?: (overlay: boolean) => string;
|
|
3192
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3193
|
+
} | undefined, {
|
|
3194
|
+
toggleOverlay?: string;
|
|
3195
|
+
menu?: string;
|
|
3196
|
+
input?: string;
|
|
3197
|
+
calendarWrap?: string;
|
|
3198
|
+
calendarDays?: string;
|
|
3199
|
+
openTimePicker?: string;
|
|
3200
|
+
closeTimePicker?: string;
|
|
3201
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3202
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3203
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3204
|
+
amPmButton?: string;
|
|
3205
|
+
openYearsOverlay?: string;
|
|
3206
|
+
openMonthsOverlay?: string;
|
|
3207
|
+
nextMonth?: string;
|
|
3208
|
+
prevMonth?: string;
|
|
3209
|
+
nextYear?: string;
|
|
3210
|
+
prevYear?: string;
|
|
3211
|
+
day?: ({ value }: {
|
|
3212
|
+
value: Date;
|
|
3213
|
+
}) => string;
|
|
3214
|
+
weekDay?: (day: number) => string;
|
|
3215
|
+
clearInput?: string;
|
|
3216
|
+
calendarIcon?: string;
|
|
3217
|
+
timePicker?: string;
|
|
3218
|
+
monthPicker?: (overlay: boolean) => string;
|
|
3219
|
+
yearPicker?: (overlay: boolean) => string;
|
|
3220
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3221
|
+
} | undefined> | null | undefined;
|
|
3222
|
+
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3223
|
+
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3224
|
+
readonly dayNames?: import('vue').Prop<string[] | ((lang: string, weekStart: number) => string[]) | undefined, string[] | ((lang: string, weekStart: number) => string[]) | undefined> | null | undefined;
|
|
3225
|
+
readonly modelType?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3226
|
+
readonly modelAuto?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3227
|
+
readonly highlight?: import('vue').Prop<((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
3228
|
+
month: number;
|
|
3229
|
+
year: number;
|
|
3230
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
3231
|
+
quarter: number;
|
|
3232
|
+
year: number;
|
|
3233
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined, ((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
3234
|
+
month: number;
|
|
3235
|
+
year: number;
|
|
3236
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
3237
|
+
quarter: number;
|
|
3238
|
+
year: number;
|
|
3239
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined> | null | undefined;
|
|
3240
|
+
readonly offset?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3241
|
+
readonly teleportCenter?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3242
|
+
readonly ignoreTimeValidation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3243
|
+
readonly dayClass?: import('vue').Prop<((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined, ((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined> | null | undefined;
|
|
3244
|
+
readonly hideNavigation?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
3245
|
+
readonly sixWeeks?: import('vue').Prop<boolean | "center" | "append" | "prepend" | "fair" | undefined, boolean | "center" | "append" | "prepend" | "fair" | undefined> | null | undefined;
|
|
3246
|
+
readonly timezone?: import('vue').Prop<string | {
|
|
3247
|
+
timezone?: string;
|
|
3248
|
+
exactMatch?: boolean;
|
|
3249
|
+
dateInTz?: string;
|
|
3250
|
+
emitTimezone?: string;
|
|
3251
|
+
convertModel?: boolean;
|
|
3252
|
+
} | undefined, string | {
|
|
3253
|
+
timezone?: string;
|
|
3254
|
+
exactMatch?: boolean;
|
|
3255
|
+
dateInTz?: string;
|
|
3256
|
+
emitTimezone?: string;
|
|
3257
|
+
convertModel?: boolean;
|
|
3258
|
+
} | undefined> | null | undefined;
|
|
3259
|
+
readonly disableYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3260
|
+
readonly focusStartDate?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3261
|
+
readonly disabledTimes?: import('vue').Prop<((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined, ((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined> | null | undefined;
|
|
3262
|
+
readonly timePickerInline?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3263
|
+
readonly config?: import('vue').Prop<import('@vuepic/vue-datepicker').GeneralConfig | undefined, import('@vuepic/vue-datepicker').GeneralConfig | undefined> | null | undefined;
|
|
3264
|
+
readonly quarterPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3265
|
+
readonly yearFirst?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3266
|
+
readonly loading?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3267
|
+
readonly onInternalModelChange?: import('vue').Prop<((...args: any[]) => void) | undefined, ((...args: any[]) => void) | undefined> | null | undefined;
|
|
3268
|
+
readonly enableMinutes?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3269
|
+
readonly ui?: import('vue').Prop<Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined, Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined> | null | undefined;
|
|
3270
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3271
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3272
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
3273
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
3274
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
3275
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
3276
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
3277
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
3278
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
3279
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
3280
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
3281
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
3282
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
3283
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
3284
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
3285
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
3286
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
3287
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
3288
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
3289
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
3290
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
3291
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
3292
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
3293
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
3294
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
3295
|
+
}) & import('@vuepic/vue-datepicker').VueDatePickerProps, never>;
|
|
3296
|
+
$attrs: {
|
|
3297
|
+
[x: string]: unknown;
|
|
3298
|
+
};
|
|
3299
|
+
$refs: {
|
|
3300
|
+
[x: string]: unknown;
|
|
3301
|
+
};
|
|
3302
|
+
$slots: Readonly<{
|
|
3303
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
3304
|
+
}>;
|
|
3305
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
3306
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
3307
|
+
$host: Element | null;
|
|
3308
|
+
$emit: (event: import('@vuepic/vue-datepicker').EmitEvents, ...args: any[]) => void;
|
|
3309
|
+
$el: any;
|
|
3310
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
3311
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3312
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3313
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
3314
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
3315
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
3316
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
3317
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
3318
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
3319
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
3320
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
3321
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
3322
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
3323
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
3324
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
3325
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
3326
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
3327
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
3328
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
3329
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
3330
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
3331
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
3332
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
3333
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
3334
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
3335
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
3336
|
+
}, {}, {}, import('vue').ComputedOptions, import('@vuepic/vue-datepicker').PublicMethods, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, import('@vuepic/vue-datepicker').EmitEvents[], string, {
|
|
3337
|
+
[x: number]: string;
|
|
3338
|
+
} | {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3339
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
3340
|
+
created?: (() => void) | (() => void)[];
|
|
3341
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
3342
|
+
mounted?: (() => void) | (() => void)[];
|
|
3343
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
3344
|
+
updated?: (() => void) | (() => void)[];
|
|
3345
|
+
activated?: (() => void) | (() => void)[];
|
|
3346
|
+
deactivated?: (() => void) | (() => void)[];
|
|
3347
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
3348
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
3349
|
+
destroyed?: (() => void) | (() => void)[];
|
|
3350
|
+
unmounted?: (() => void) | (() => void)[];
|
|
3351
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3352
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3353
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3354
|
+
};
|
|
3355
|
+
$forceUpdate: () => void;
|
|
3356
|
+
$nextTick: typeof import('vue').nextTick;
|
|
3357
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3358
|
+
} & Readonly<{
|
|
3359
|
+
[x: number]: string;
|
|
3360
|
+
}> & Omit<{} & (Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
3361
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3362
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3363
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
3364
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
3365
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
3366
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
3367
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
3368
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
3369
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
3370
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
3371
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
3372
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
3373
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
3374
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
3375
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
3376
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
3377
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
3378
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
3379
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
3380
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
3381
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
3382
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
3383
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
3384
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
3385
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
3386
|
+
}), never> & import('vue').ShallowUnwrapRef<{}> & {
|
|
3387
|
+
[x: string]: never;
|
|
3388
|
+
} & import('@vuepic/vue-datepicker').PublicMethods & import('vue').ComponentCustomProperties & {} & {
|
|
3389
|
+
$slots: Readonly<import('@vuepic/vue-datepicker').Slots> & import('@vuepic/vue-datepicker').Slots;
|
|
3390
|
+
}) | ({
|
|
3391
|
+
$: import('vue').ComponentInternalInstance;
|
|
3392
|
+
$data: {};
|
|
3393
|
+
$props: Partial<{
|
|
3394
|
+
[x: number]: string;
|
|
3395
|
+
} | {}> & Omit<({
|
|
3396
|
+
readonly [x: number]: string;
|
|
3397
|
+
readonly [Symbol.iterator]?: ArrayIterator<string> | undefined;
|
|
3398
|
+
readonly [Symbol.unscopables]?: {
|
|
3399
|
+
[x: number]: boolean | undefined;
|
|
3400
|
+
length?: boolean | undefined;
|
|
3401
|
+
toString?: boolean | undefined;
|
|
3402
|
+
toLocaleString?: boolean | undefined;
|
|
3403
|
+
pop?: boolean | undefined;
|
|
3404
|
+
push?: boolean | undefined;
|
|
3405
|
+
concat?: boolean | undefined;
|
|
3406
|
+
join?: boolean | undefined;
|
|
3407
|
+
reverse?: boolean | undefined;
|
|
3408
|
+
shift?: boolean | undefined;
|
|
3409
|
+
slice?: boolean | undefined;
|
|
3410
|
+
sort?: boolean | undefined;
|
|
3411
|
+
splice?: boolean | undefined;
|
|
3412
|
+
unshift?: boolean | undefined;
|
|
3413
|
+
indexOf?: boolean | undefined;
|
|
3414
|
+
lastIndexOf?: boolean | undefined;
|
|
3415
|
+
every?: boolean | undefined;
|
|
3416
|
+
some?: boolean | undefined;
|
|
3417
|
+
forEach?: boolean | undefined;
|
|
3418
|
+
map?: boolean | undefined;
|
|
3419
|
+
filter?: boolean | undefined;
|
|
3420
|
+
reduce?: boolean | undefined;
|
|
3421
|
+
reduceRight?: boolean | undefined;
|
|
3422
|
+
find?: boolean | undefined;
|
|
3423
|
+
findIndex?: boolean | undefined;
|
|
3424
|
+
fill?: boolean | undefined;
|
|
3425
|
+
copyWithin?: boolean | undefined;
|
|
3426
|
+
entries?: boolean | undefined;
|
|
3427
|
+
keys?: boolean | undefined;
|
|
3428
|
+
values?: boolean | undefined;
|
|
3429
|
+
includes?: boolean | undefined;
|
|
3430
|
+
flatMap?: boolean | undefined;
|
|
3431
|
+
flat?: boolean | undefined;
|
|
3432
|
+
at?: boolean | undefined;
|
|
3433
|
+
findLast?: boolean | undefined;
|
|
3434
|
+
findLastIndex?: boolean | undefined;
|
|
3435
|
+
toReversed?: boolean | undefined;
|
|
3436
|
+
toSorted?: boolean | undefined;
|
|
3437
|
+
toSpliced?: boolean | undefined;
|
|
3438
|
+
with?: boolean | undefined;
|
|
3439
|
+
[Symbol.iterator]?: boolean | undefined;
|
|
3440
|
+
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
3441
|
+
} | undefined;
|
|
3442
|
+
readonly filter?: {
|
|
3443
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S[];
|
|
3444
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string[];
|
|
3445
|
+
} | undefined;
|
|
3446
|
+
readonly map?: (<U>(callbackfn: (value: string, index: number, array: string[]) => U, thisArg?: any) => U[]) | undefined;
|
|
3447
|
+
readonly concat?: string[] | undefined;
|
|
3448
|
+
readonly indexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
3449
|
+
readonly lastIndexOf?: ((searchElement: string, fromIndex?: number) => number) | undefined;
|
|
3450
|
+
readonly slice?: string[] | undefined;
|
|
3451
|
+
readonly length?: number | undefined;
|
|
3452
|
+
readonly includes?: ((searchElement: string, fromIndex?: number) => boolean) | undefined;
|
|
3453
|
+
readonly at?: ((index: number) => string | undefined) | undefined;
|
|
3454
|
+
readonly toLocaleString?: string | undefined;
|
|
3455
|
+
readonly pop?: string | undefined;
|
|
3456
|
+
readonly push?: number | undefined;
|
|
3457
|
+
readonly join?: string | undefined;
|
|
3458
|
+
readonly reverse?: string[] | undefined;
|
|
3459
|
+
readonly shift?: string | undefined;
|
|
3460
|
+
readonly sort?: string[] | undefined;
|
|
3461
|
+
readonly splice?: {
|
|
3462
|
+
(start: number, deleteCount?: number): string[];
|
|
3463
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
3464
|
+
} | undefined;
|
|
3465
|
+
readonly unshift?: number | undefined;
|
|
3466
|
+
readonly every?: {
|
|
3467
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): this is S[];
|
|
3468
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): boolean;
|
|
3469
|
+
} | undefined;
|
|
3470
|
+
readonly some?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
3471
|
+
readonly forEach?: ((callbackfn: (value: string, index: number, array: string[]) => void, thisArg?: any) => void) | undefined;
|
|
3472
|
+
readonly reduce?: {
|
|
3473
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
3474
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
3475
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
3476
|
+
} | undefined;
|
|
3477
|
+
readonly reduceRight?: {
|
|
3478
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string): string;
|
|
3479
|
+
(callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: string[]) => string, initialValue: string): string;
|
|
3480
|
+
<U>(callbackfn: (previousValue: U, currentValue: string, currentIndex: number, array: string[]) => U, initialValue: U): U;
|
|
3481
|
+
} | undefined;
|
|
3482
|
+
readonly find?: {
|
|
3483
|
+
<S extends string>(predicate: (value: string, index: number, obj: string[]) => value is S, thisArg?: any): S | undefined;
|
|
3484
|
+
(predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any): string | undefined;
|
|
3485
|
+
} | undefined;
|
|
3486
|
+
readonly findIndex?: ((predicate: (value: string, index: number, obj: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
3487
|
+
readonly fill?: ((value: string, start?: number, end?: number) => string[]) | undefined;
|
|
3488
|
+
readonly copyWithin?: ((target: number, start: number, end?: number) => string[]) | undefined;
|
|
3489
|
+
readonly entries?: ArrayIterator<[number, string]> | undefined;
|
|
3490
|
+
readonly keys?: ArrayIterator<number> | undefined;
|
|
3491
|
+
readonly values?: ArrayIterator<string> | undefined;
|
|
3492
|
+
readonly flatMap?: (<U, This = undefined>(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
3493
|
+
readonly flat?: unknown[] | undefined;
|
|
3494
|
+
readonly findLast?: {
|
|
3495
|
+
<S extends string>(predicate: (value: string, index: number, array: string[]) => value is S, thisArg?: any): S | undefined;
|
|
3496
|
+
(predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any): string | undefined;
|
|
3497
|
+
} | undefined;
|
|
3498
|
+
readonly findLastIndex?: ((predicate: (value: string, index: number, array: string[]) => unknown, thisArg?: any) => number) | undefined;
|
|
3499
|
+
readonly toReversed?: string[] | undefined;
|
|
3500
|
+
readonly toSorted?: string[] | undefined;
|
|
3501
|
+
readonly toSpliced?: {
|
|
3502
|
+
(start: number, deleteCount: number, ...items: string[]): string[];
|
|
3503
|
+
(start: number, deleteCount?: number): string[];
|
|
3504
|
+
} | undefined;
|
|
3505
|
+
readonly with?: ((index: number, value: string) => string[]) | undefined;
|
|
3506
|
+
readonly toString?: string | undefined;
|
|
3507
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3508
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3509
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
3510
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
3511
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
3512
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
3513
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
3514
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
3515
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
3516
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
3517
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
3518
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
3519
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
3520
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
3521
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
3522
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
3523
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
3524
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
3525
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
3526
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
3527
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
3528
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
3529
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
3530
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
3531
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
3532
|
+
} | {
|
|
3533
|
+
readonly name?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3534
|
+
readonly required?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3535
|
+
readonly disabled?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3536
|
+
readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3537
|
+
readonly modelValue?: import('vue').Prop<import('@vuepic/vue-datepicker').ModelValue | undefined, import('@vuepic/vue-datepicker').ModelValue | undefined> | null | undefined;
|
|
3538
|
+
readonly placeholder?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3539
|
+
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3540
|
+
readonly range?: import('vue').Prop<boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined, boolean | import('@vuepic/vue-datepicker').RangeConfig | undefined> | null | undefined;
|
|
3541
|
+
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
3542
|
+
static: boolean;
|
|
3543
|
+
solo: boolean;
|
|
3544
|
+
count: number | string;
|
|
3545
|
+
}> | undefined, import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
3546
|
+
static: boolean;
|
|
3547
|
+
solo: boolean;
|
|
3548
|
+
count: number | string;
|
|
3549
|
+
}> | undefined> | null | undefined;
|
|
3550
|
+
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3551
|
+
readonly autoApply?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3552
|
+
readonly locale?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3553
|
+
readonly autoPosition?: import('vue').Prop<boolean | "top" | "bottom" | undefined, boolean | "top" | "bottom" | undefined> | null | undefined;
|
|
3554
|
+
readonly minDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3555
|
+
readonly maxDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3556
|
+
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3557
|
+
readonly utc?: import('vue').Prop<boolean | "preserve" | undefined, boolean | "preserve" | undefined> | null | undefined;
|
|
3558
|
+
readonly teleport?: import('vue').Prop<string | boolean | HTMLElement | undefined, string | boolean | HTMLElement | undefined> | null | undefined;
|
|
3559
|
+
readonly calendar?: import('vue').Prop<((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined, ((weeks: import('@vuepic/vue-datepicker').CalendarWeek[]) => import('@vuepic/vue-datepicker').CalendarWeek[]) | undefined> | null | undefined;
|
|
3560
|
+
readonly uid?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3561
|
+
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3562
|
+
readonly position?: import('vue').Prop<"left" | "center" | "right" | undefined, "left" | "center" | "right" | undefined> | null | undefined;
|
|
3563
|
+
readonly dark?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3564
|
+
readonly weekNumbers?: import('vue').Prop<import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
3565
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
3566
|
+
hideOnOffsetDates?: boolean;
|
|
3567
|
+
} | undefined, import('@vuepic/vue-datepicker').WeekNumberType | {
|
|
3568
|
+
type: import('@vuepic/vue-datepicker').WeekNumberType;
|
|
3569
|
+
hideOnOffsetDates?: boolean;
|
|
3570
|
+
} | undefined> | null | undefined;
|
|
3571
|
+
readonly hoursIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3572
|
+
readonly hoursGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3573
|
+
readonly secondsGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3574
|
+
readonly minutesGridIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3575
|
+
readonly minutesIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3576
|
+
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3577
|
+
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
3578
|
+
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
3579
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
3580
|
+
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
3581
|
+
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
3582
|
+
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3583
|
+
readonly state?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3584
|
+
readonly clearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3585
|
+
readonly alwaysClearable?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3586
|
+
readonly filters?: import('vue').Prop<{
|
|
3587
|
+
months?: number[];
|
|
3588
|
+
years?: number[];
|
|
3589
|
+
times?: {
|
|
3590
|
+
hours?: number[];
|
|
3591
|
+
minutes?: number[];
|
|
3592
|
+
seconds?: number[];
|
|
3593
|
+
};
|
|
3594
|
+
} | undefined, {
|
|
3595
|
+
months?: number[];
|
|
3596
|
+
years?: number[];
|
|
3597
|
+
times?: {
|
|
3598
|
+
hours?: number[];
|
|
3599
|
+
minutes?: number[];
|
|
3600
|
+
seconds?: number[];
|
|
3601
|
+
};
|
|
3602
|
+
} | undefined> | null | undefined;
|
|
3603
|
+
readonly disableMonthYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3604
|
+
readonly yearRange?: import('vue').Prop<number[] | undefined, number[] | undefined> | null | undefined;
|
|
3605
|
+
readonly disabledDates?: import('vue').Prop<string[] | Date[] | ((date: Date) => boolean) | undefined, string[] | Date[] | ((date: Date) => boolean) | undefined> | null | undefined;
|
|
3606
|
+
readonly inline?: import('vue').Prop<boolean | {
|
|
3607
|
+
input?: boolean;
|
|
3608
|
+
} | undefined, boolean | {
|
|
3609
|
+
input?: boolean;
|
|
3610
|
+
} | undefined> | null | undefined;
|
|
3611
|
+
readonly selectText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3612
|
+
readonly cancelText?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3613
|
+
readonly weekNumName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3614
|
+
readonly timePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3615
|
+
readonly textInput?: import('vue').Prop<boolean | {
|
|
3616
|
+
enterSubmit?: boolean;
|
|
3617
|
+
tabSubmit?: boolean;
|
|
3618
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
3619
|
+
rangeSeparator?: string;
|
|
3620
|
+
selectOnFocus?: boolean;
|
|
3621
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
3622
|
+
escClose?: boolean;
|
|
3623
|
+
} | undefined, boolean | {
|
|
3624
|
+
enterSubmit?: boolean;
|
|
3625
|
+
tabSubmit?: boolean;
|
|
3626
|
+
openMenu?: "open" | "toggle" | boolean;
|
|
3627
|
+
rangeSeparator?: string;
|
|
3628
|
+
selectOnFocus?: boolean;
|
|
3629
|
+
format?: string | string[] | ((value: string) => Date | null);
|
|
3630
|
+
escClose?: boolean;
|
|
3631
|
+
} | undefined> | null | undefined;
|
|
3632
|
+
readonly monthNameFormat?: import('vue').Prop<"long" | "short" | undefined, "long" | "short" | undefined> | null | undefined;
|
|
3633
|
+
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
3634
|
+
readonly startTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | import('@vuepic/vue-datepicker').PartialTimeObj[] | undefined> | null | undefined;
|
|
3635
|
+
readonly hideOffsetDates?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3636
|
+
readonly noToday?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3637
|
+
readonly noHoursOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3638
|
+
readonly noMinutesOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3639
|
+
readonly noSecondsOverlay?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3640
|
+
readonly altPosition?: import('vue').Prop<((el: HTMLElement | undefined) => Record<string, string | number>) | undefined, ((el: HTMLElement | undefined) => Record<string, string | number>) | undefined> | null | undefined;
|
|
3641
|
+
readonly disabledWeekDays?: import('vue').Prop<string[] | number[] | undefined, string[] | number[] | undefined> | null | undefined;
|
|
3642
|
+
readonly allowedDates?: import('vue').Prop<string[] | Date[] | undefined, string[] | Date[] | undefined> | null | undefined;
|
|
3643
|
+
readonly nowButtonLabel?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3644
|
+
readonly monthChangeOnScroll?: import('vue').Prop<boolean | "inverse" | undefined, boolean | "inverse" | undefined> | null | undefined;
|
|
3645
|
+
readonly markers?: import('vue').Prop<import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined, import('@vuepic/vue-datepicker').DatePickerMarker[] | undefined> | null | undefined;
|
|
3646
|
+
readonly transitions?: import('vue').Prop<boolean | {
|
|
3647
|
+
menuAppearTop?: string;
|
|
3648
|
+
menuAppearBottom?: string;
|
|
3649
|
+
open?: string;
|
|
3650
|
+
close?: string;
|
|
3651
|
+
next?: string;
|
|
3652
|
+
previous?: string;
|
|
3653
|
+
vNext?: string;
|
|
3654
|
+
vPrevious?: string;
|
|
3655
|
+
} | undefined, boolean | {
|
|
3656
|
+
menuAppearTop?: string;
|
|
3657
|
+
menuAppearBottom?: string;
|
|
3658
|
+
open?: string;
|
|
3659
|
+
close?: string;
|
|
3660
|
+
next?: string;
|
|
3661
|
+
previous?: string;
|
|
3662
|
+
vNext?: string;
|
|
3663
|
+
vPrevious?: string;
|
|
3664
|
+
} | undefined> | null | undefined;
|
|
3665
|
+
readonly enableSeconds?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3666
|
+
readonly escClose?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3667
|
+
readonly spaceConfirm?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3668
|
+
readonly monthChangeOnArrows?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3669
|
+
readonly formatLocale?: import('vue').Prop<import('date-fns').Locale | undefined, import('date-fns').Locale | undefined> | null | undefined;
|
|
3670
|
+
readonly multiDates?: import('vue').Prop<boolean | {
|
|
3671
|
+
limit?: number | string;
|
|
3672
|
+
dragSelect?: boolean;
|
|
3673
|
+
} | undefined, boolean | {
|
|
3674
|
+
limit?: number | string;
|
|
3675
|
+
dragSelect?: boolean;
|
|
3676
|
+
} | undefined> | null | undefined;
|
|
3677
|
+
readonly presetDates?: import('vue').Prop<{
|
|
3678
|
+
label: string;
|
|
3679
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
3680
|
+
style?: Record<string, string>;
|
|
3681
|
+
slot?: string;
|
|
3682
|
+
noTz?: boolean;
|
|
3683
|
+
testId?: string;
|
|
3684
|
+
}[] | undefined, {
|
|
3685
|
+
label: string;
|
|
3686
|
+
value: import('vue').MaybeRefOrGetter<Date[] | string[] | string | Date>;
|
|
3687
|
+
style?: Record<string, string>;
|
|
3688
|
+
slot?: string;
|
|
3689
|
+
noTz?: boolean;
|
|
3690
|
+
testId?: string;
|
|
3691
|
+
}[] | undefined> | null | undefined;
|
|
3692
|
+
readonly flow?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
3693
|
+
readonly partialFlow?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3694
|
+
readonly preventMinMaxNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3695
|
+
readonly reverseYears?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3696
|
+
readonly weekPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3697
|
+
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3698
|
+
readonly ariaLabels?: import('vue').Prop<{
|
|
3699
|
+
toggleOverlay?: string;
|
|
3700
|
+
menu?: string;
|
|
3701
|
+
input?: string;
|
|
3702
|
+
calendarWrap?: string;
|
|
3703
|
+
calendarDays?: string;
|
|
3704
|
+
openTimePicker?: string;
|
|
3705
|
+
closeTimePicker?: string;
|
|
3706
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3707
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3708
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3709
|
+
amPmButton?: string;
|
|
3710
|
+
openYearsOverlay?: string;
|
|
3711
|
+
openMonthsOverlay?: string;
|
|
3712
|
+
nextMonth?: string;
|
|
3713
|
+
prevMonth?: string;
|
|
3714
|
+
nextYear?: string;
|
|
3715
|
+
prevYear?: string;
|
|
3716
|
+
day?: ({ value }: {
|
|
3717
|
+
value: Date;
|
|
3718
|
+
}) => string;
|
|
3719
|
+
weekDay?: (day: number) => string;
|
|
3720
|
+
clearInput?: string;
|
|
3721
|
+
calendarIcon?: string;
|
|
3722
|
+
timePicker?: string;
|
|
3723
|
+
monthPicker?: (overlay: boolean) => string;
|
|
3724
|
+
yearPicker?: (overlay: boolean) => string;
|
|
3725
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3726
|
+
} | undefined, {
|
|
3727
|
+
toggleOverlay?: string;
|
|
3728
|
+
menu?: string;
|
|
3729
|
+
input?: string;
|
|
3730
|
+
calendarWrap?: string;
|
|
3731
|
+
calendarDays?: string;
|
|
3732
|
+
openTimePicker?: string;
|
|
3733
|
+
closeTimePicker?: string;
|
|
3734
|
+
incrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3735
|
+
decrementValue?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3736
|
+
openTpOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3737
|
+
amPmButton?: string;
|
|
3738
|
+
openYearsOverlay?: string;
|
|
3739
|
+
openMonthsOverlay?: string;
|
|
3740
|
+
nextMonth?: string;
|
|
3741
|
+
prevMonth?: string;
|
|
3742
|
+
nextYear?: string;
|
|
3743
|
+
prevYear?: string;
|
|
3744
|
+
day?: ({ value }: {
|
|
3745
|
+
value: Date;
|
|
3746
|
+
}) => string;
|
|
3747
|
+
weekDay?: (day: number) => string;
|
|
3748
|
+
clearInput?: string;
|
|
3749
|
+
calendarIcon?: string;
|
|
3750
|
+
timePicker?: string;
|
|
3751
|
+
monthPicker?: (overlay: boolean) => string;
|
|
3752
|
+
yearPicker?: (overlay: boolean) => string;
|
|
3753
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
3754
|
+
} | undefined> | null | undefined;
|
|
3755
|
+
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3756
|
+
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3757
|
+
readonly dayNames?: import('vue').Prop<string[] | ((lang: string, weekStart: number) => string[]) | undefined, string[] | ((lang: string, weekStart: number) => string[]) | undefined> | null | undefined;
|
|
3758
|
+
readonly modelType?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
3759
|
+
readonly modelAuto?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3760
|
+
readonly highlight?: import('vue').Prop<((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
3761
|
+
month: number;
|
|
3762
|
+
year: number;
|
|
3763
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
3764
|
+
quarter: number;
|
|
3765
|
+
year: number;
|
|
3766
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined, ((date: Date[], disabled?: boolean) => boolean) | ((month: {
|
|
3767
|
+
month: number;
|
|
3768
|
+
year: number;
|
|
3769
|
+
}) => boolean) | ((year: number) => boolean) | ((quarter: {
|
|
3770
|
+
quarter: number;
|
|
3771
|
+
year: number;
|
|
3772
|
+
}) => boolean) | Partial<import('@vuepic/vue-datepicker').Highlight> | undefined> | null | undefined;
|
|
3773
|
+
readonly offset?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
3774
|
+
readonly teleportCenter?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3775
|
+
readonly ignoreTimeValidation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3776
|
+
readonly dayClass?: import('vue').Prop<((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined, ((date: Date, internalModelValue: import('@vuepic/vue-datepicker').InternalTime) => string) | undefined> | null | undefined;
|
|
3777
|
+
readonly hideNavigation?: import('vue').Prop<("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined, ("time" | "month" | "calendar" | "year" | "minutes" | "hours" | "seconds")[] | undefined> | null | undefined;
|
|
3778
|
+
readonly sixWeeks?: import('vue').Prop<boolean | "center" | "append" | "prepend" | "fair" | undefined, boolean | "center" | "append" | "prepend" | "fair" | undefined> | null | undefined;
|
|
3779
|
+
readonly timezone?: import('vue').Prop<string | {
|
|
3780
|
+
timezone?: string;
|
|
3781
|
+
exactMatch?: boolean;
|
|
3782
|
+
dateInTz?: string;
|
|
3783
|
+
emitTimezone?: string;
|
|
3784
|
+
convertModel?: boolean;
|
|
3785
|
+
} | undefined, string | {
|
|
3786
|
+
timezone?: string;
|
|
3787
|
+
exactMatch?: boolean;
|
|
3788
|
+
dateInTz?: string;
|
|
3789
|
+
emitTimezone?: string;
|
|
3790
|
+
convertModel?: boolean;
|
|
3791
|
+
} | undefined> | null | undefined;
|
|
3792
|
+
readonly disableYearSelect?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3793
|
+
readonly focusStartDate?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3794
|
+
readonly disabledTimes?: import('vue').Prop<((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined, ((time: import('@vuepic/vue-datepicker').TimeObj | (import('@vuepic/vue-datepicker').TimeObj | undefined)[]) => boolean) | import('@vuepic/vue-datepicker').DisabledTime[] | [import('@vuepic/vue-datepicker').DisabledTime[], import('@vuepic/vue-datepicker').DisabledTime[]] | undefined> | null | undefined;
|
|
3795
|
+
readonly timePickerInline?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3796
|
+
readonly config?: import('vue').Prop<import('@vuepic/vue-datepicker').GeneralConfig | undefined, import('@vuepic/vue-datepicker').GeneralConfig | undefined> | null | undefined;
|
|
3797
|
+
readonly quarterPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3798
|
+
readonly yearFirst?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3799
|
+
readonly loading?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3800
|
+
readonly onInternalModelChange?: import('vue').Prop<((...args: any[]) => void) | undefined, ((...args: any[]) => void) | undefined> | null | undefined;
|
|
3801
|
+
readonly enableMinutes?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
3802
|
+
readonly ui?: import('vue').Prop<Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined, Partial<import('@vuepic/vue-datepicker').UIOptions> | undefined> | null | undefined;
|
|
3803
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3804
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3805
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
3806
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
3807
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
3808
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
3809
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
3810
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
3811
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
3812
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
3813
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
3814
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
3815
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
3816
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
3817
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
3818
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
3819
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
3820
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
3821
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
3822
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
3823
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
3824
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
3825
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
3826
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
3827
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
3828
|
+
}) & import('@vuepic/vue-datepicker').VueDatePickerProps, never>;
|
|
3829
|
+
$attrs: {
|
|
3830
|
+
[x: string]: unknown;
|
|
3831
|
+
};
|
|
3832
|
+
$refs: {
|
|
3833
|
+
[x: string]: unknown;
|
|
3834
|
+
};
|
|
3835
|
+
$slots: Readonly<{
|
|
3836
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
3837
|
+
}>;
|
|
3838
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
3839
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
3840
|
+
$host: Element | null;
|
|
3841
|
+
$emit: (event: import('@vuepic/vue-datepicker').EmitEvents, ...args: any[]) => void;
|
|
3842
|
+
$el: any;
|
|
3843
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
3844
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3845
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3846
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
3847
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
3848
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
3849
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
3850
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
3851
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
3852
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
3853
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
3854
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
3855
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
3856
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
3857
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
3858
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
3859
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
3860
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
3861
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
3862
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
3863
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
3864
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
3865
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
3866
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
3867
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
3868
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
3869
|
+
}, {}, {}, import('vue').ComputedOptions, import('@vuepic/vue-datepicker').PublicMethods, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, import('@vuepic/vue-datepicker').EmitEvents[], string, {
|
|
3870
|
+
[x: number]: string;
|
|
3871
|
+
} | {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3872
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
3873
|
+
created?: (() => void) | (() => void)[];
|
|
3874
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
3875
|
+
mounted?: (() => void) | (() => void)[];
|
|
3876
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
3877
|
+
updated?: (() => void) | (() => void)[];
|
|
3878
|
+
activated?: (() => void) | (() => void)[];
|
|
3879
|
+
deactivated?: (() => void) | (() => void)[];
|
|
3880
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
3881
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
3882
|
+
destroyed?: (() => void) | (() => void)[];
|
|
3883
|
+
unmounted?: (() => void) | (() => void)[];
|
|
3884
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3885
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3886
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3887
|
+
};
|
|
3888
|
+
$forceUpdate: () => void;
|
|
3889
|
+
$nextTick: typeof import('vue').nextTick;
|
|
3890
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3891
|
+
} & Readonly<{}> & Omit<{} & (Readonly<import('vue').ExtractPropTypes<string[]> | import('vue').ExtractPropTypes<import('vue').ComponentObjectPropsOptions<import('@vuepic/vue-datepicker').VueDatePickerProps>>> & {
|
|
3892
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
3893
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
3894
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
3895
|
+
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
3896
|
+
"onUpdate:model-timezone-value"?: ((...args: any[]) => any) | undefined;
|
|
3897
|
+
"onText-submit"?: ((...args: any[]) => any) | undefined;
|
|
3898
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
3899
|
+
onCleared?: ((...args: any[]) => any) | undefined;
|
|
3900
|
+
"onInternal-model-change"?: ((...args: any[]) => any) | undefined;
|
|
3901
|
+
"onRecalculate-position"?: ((...args: any[]) => any) | undefined;
|
|
3902
|
+
"onFlow-step"?: ((...args: any[]) => any) | undefined;
|
|
3903
|
+
"onUpdate-month-year"?: ((...args: any[]) => any) | undefined;
|
|
3904
|
+
"onInvalid-select"?: ((...args: any[]) => any) | undefined;
|
|
3905
|
+
"onTooltip-open"?: ((...args: any[]) => any) | undefined;
|
|
3906
|
+
"onTooltip-close"?: ((...args: any[]) => any) | undefined;
|
|
3907
|
+
"onInvalid-fixed-range"?: ((...args: any[]) => any) | undefined;
|
|
3908
|
+
"onTime-picker-open"?: ((...args: any[]) => any) | undefined;
|
|
3909
|
+
"onTime-picker-close"?: ((...args: any[]) => any) | undefined;
|
|
3910
|
+
"onAm-pm-change"?: ((...args: any[]) => any) | undefined;
|
|
3911
|
+
"onRange-start"?: ((...args: any[]) => any) | undefined;
|
|
3912
|
+
"onRange-end"?: ((...args: any[]) => any) | undefined;
|
|
3913
|
+
"onDate-update"?: ((...args: any[]) => any) | undefined;
|
|
3914
|
+
"onInvalid-date"?: ((...args: any[]) => any) | undefined;
|
|
3915
|
+
"onOverlay-toggle"?: ((...args: any[]) => any) | undefined;
|
|
3916
|
+
"onText-input"?: ((...args: any[]) => any) | undefined;
|
|
3917
|
+
}), never> & import('vue').ShallowUnwrapRef<{}> & {
|
|
3918
|
+
[x: string]: never;
|
|
3919
|
+
} & import('@vuepic/vue-datepicker').PublicMethods & import('vue').ComponentCustomProperties & {} & {
|
|
3920
|
+
$slots: Readonly<import('@vuepic/vue-datepicker').Slots> & import('@vuepic/vue-datepicker').Slots;
|
|
3921
|
+
}) | null;
|
|
3922
|
+
}, HTMLDivElement, import('vue').ComponentProvideOptions, {
|
|
3923
|
+
P: {};
|
|
3924
|
+
B: {};
|
|
3925
|
+
D: {};
|
|
3926
|
+
C: {};
|
|
3927
|
+
M: {};
|
|
3928
|
+
Defaults: {};
|
|
3929
|
+
}, Readonly<{
|
|
3930
|
+
definesRange?: boolean;
|
|
3931
|
+
multiCalendars?: boolean;
|
|
3932
|
+
enableTimePicker?: boolean;
|
|
3933
|
+
autoApply?: boolean;
|
|
3934
|
+
closeOnAutoApply?: boolean;
|
|
3935
|
+
roundedEdges?: boolean;
|
|
3936
|
+
locale?: string;
|
|
3937
|
+
placeholderText?: string;
|
|
3938
|
+
quickFilterRanges?: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
3939
|
+
quickFilterHeadline?: string;
|
|
3940
|
+
selectedDate?: Date | [Date, Date] | string | {
|
|
3941
|
+
month: number;
|
|
3942
|
+
year: number;
|
|
3943
|
+
};
|
|
3944
|
+
autoPosition?: boolean;
|
|
3945
|
+
leftSidebar?: boolean;
|
|
3946
|
+
actionArea?: boolean;
|
|
3947
|
+
actionAreaExtraContent?: string;
|
|
3948
|
+
cancel?: string;
|
|
3949
|
+
submit?: string;
|
|
3950
|
+
firstAvailableDate?: number;
|
|
3951
|
+
minDate?: Date | string;
|
|
3952
|
+
maxDate?: Date;
|
|
3953
|
+
autoRange?: string | number | undefined;
|
|
3954
|
+
maxRange?: number | string | undefined;
|
|
3955
|
+
activeState?: boolean;
|
|
3956
|
+
disabledState?: boolean;
|
|
3957
|
+
monthPicker?: boolean;
|
|
3958
|
+
customFormatCallback?: any;
|
|
3959
|
+
inputLabel?: string;
|
|
3960
|
+
iconLeft?: (typeof iconNames)[number] | null;
|
|
3961
|
+
utc?: boolean;
|
|
3962
|
+
teleport?: boolean | string;
|
|
3963
|
+
closeOnScroll?: boolean;
|
|
3964
|
+
enableQuickfilterToggle?: boolean;
|
|
3965
|
+
}> & Readonly<{
|
|
3966
|
+
onClose?: (() => any) | undefined;
|
|
3967
|
+
onReset?: (() => any) | undefined;
|
|
3968
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
3969
|
+
onOpen?: (() => any) | undefined;
|
|
3970
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
3971
|
+
}>, {}, {}, {}, {}, {
|
|
3972
|
+
cancel: string;
|
|
3973
|
+
submit: string;
|
|
3974
|
+
iconLeft: (typeof iconNames)[number] | null;
|
|
3975
|
+
definesRange: boolean;
|
|
3976
|
+
multiCalendars: boolean;
|
|
3977
|
+
enableTimePicker: boolean;
|
|
3978
|
+
autoApply: boolean;
|
|
3979
|
+
closeOnAutoApply: boolean;
|
|
3980
|
+
roundedEdges: boolean;
|
|
3981
|
+
locale: string;
|
|
3982
|
+
placeholderText: string;
|
|
3983
|
+
quickFilterRanges: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
3984
|
+
quickFilterHeadline: string;
|
|
3985
|
+
selectedDate: Date | [Date, Date] | string | {
|
|
3986
|
+
month: number;
|
|
3987
|
+
year: number;
|
|
3988
|
+
};
|
|
3989
|
+
autoPosition: boolean;
|
|
3990
|
+
leftSidebar: boolean;
|
|
3991
|
+
actionArea: boolean;
|
|
3992
|
+
actionAreaExtraContent: string;
|
|
3993
|
+
firstAvailableDate: number;
|
|
3994
|
+
minDate: Date | string;
|
|
3995
|
+
maxDate: Date;
|
|
3996
|
+
autoRange: string | number;
|
|
3997
|
+
maxRange: string | number;
|
|
3998
|
+
activeState: boolean;
|
|
3999
|
+
disabledState: boolean;
|
|
4000
|
+
monthPicker: boolean;
|
|
4001
|
+
customFormatCallback: any;
|
|
4002
|
+
inputLabel: string;
|
|
4003
|
+
utc: boolean;
|
|
4004
|
+
teleport: boolean | string;
|
|
4005
|
+
closeOnScroll: boolean;
|
|
4006
|
+
enableQuickfilterToggle: boolean;
|
|
4007
|
+
}>;
|
|
4008
|
+
__isFragment?: never;
|
|
4009
|
+
__isTeleport?: never;
|
|
4010
|
+
__isSuspense?: never;
|
|
4011
|
+
} & import('vue').ComponentOptionsBase<Readonly<{
|
|
4012
|
+
definesRange?: boolean;
|
|
4013
|
+
multiCalendars?: boolean;
|
|
4014
|
+
enableTimePicker?: boolean;
|
|
4015
|
+
autoApply?: boolean;
|
|
4016
|
+
closeOnAutoApply?: boolean;
|
|
4017
|
+
roundedEdges?: boolean;
|
|
4018
|
+
locale?: string;
|
|
4019
|
+
placeholderText?: string;
|
|
4020
|
+
quickFilterRanges?: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
4021
|
+
quickFilterHeadline?: string;
|
|
4022
|
+
selectedDate?: Date | [Date, Date] | string | {
|
|
4023
|
+
month: number;
|
|
4024
|
+
year: number;
|
|
4025
|
+
};
|
|
4026
|
+
autoPosition?: boolean;
|
|
4027
|
+
leftSidebar?: boolean;
|
|
4028
|
+
actionArea?: boolean;
|
|
4029
|
+
actionAreaExtraContent?: string;
|
|
4030
|
+
cancel?: string;
|
|
4031
|
+
submit?: string;
|
|
4032
|
+
firstAvailableDate?: number;
|
|
4033
|
+
minDate?: Date | string;
|
|
4034
|
+
maxDate?: Date;
|
|
4035
|
+
autoRange?: string | number | undefined;
|
|
4036
|
+
maxRange?: number | string | undefined;
|
|
4037
|
+
activeState?: boolean;
|
|
4038
|
+
disabledState?: boolean;
|
|
4039
|
+
monthPicker?: boolean;
|
|
4040
|
+
customFormatCallback?: any;
|
|
4041
|
+
inputLabel?: string;
|
|
4042
|
+
iconLeft?: (typeof iconNames)[number] | null;
|
|
4043
|
+
utc?: boolean;
|
|
4044
|
+
teleport?: boolean | string;
|
|
4045
|
+
closeOnScroll?: boolean;
|
|
4046
|
+
enableQuickfilterToggle?: boolean;
|
|
4047
|
+
}> & Readonly<{
|
|
4048
|
+
onClose?: (() => any) | undefined;
|
|
4049
|
+
onReset?: (() => any) | undefined;
|
|
4050
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
4051
|
+
onOpen?: (() => any) | undefined;
|
|
4052
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
4053
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4054
|
+
close: () => any;
|
|
4055
|
+
reset: () => any;
|
|
4056
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
4057
|
+
open: () => any;
|
|
4058
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
4059
|
+
}, string, {
|
|
4060
|
+
cancel: string;
|
|
4061
|
+
submit: string;
|
|
4062
|
+
iconLeft: (typeof iconNames)[number] | null;
|
|
4063
|
+
definesRange: boolean;
|
|
4064
|
+
multiCalendars: boolean;
|
|
4065
|
+
enableTimePicker: boolean;
|
|
4066
|
+
autoApply: boolean;
|
|
4067
|
+
closeOnAutoApply: boolean;
|
|
4068
|
+
roundedEdges: boolean;
|
|
4069
|
+
locale: string;
|
|
4070
|
+
placeholderText: string;
|
|
4071
|
+
quickFilterRanges: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
4072
|
+
quickFilterHeadline: string;
|
|
4073
|
+
selectedDate: Date | [Date, Date] | string | {
|
|
4074
|
+
month: number;
|
|
4075
|
+
year: number;
|
|
4076
|
+
};
|
|
4077
|
+
autoPosition: boolean;
|
|
4078
|
+
leftSidebar: boolean;
|
|
4079
|
+
actionArea: boolean;
|
|
4080
|
+
actionAreaExtraContent: string;
|
|
4081
|
+
firstAvailableDate: number;
|
|
4082
|
+
minDate: Date | string;
|
|
4083
|
+
maxDate: Date;
|
|
4084
|
+
autoRange: string | number;
|
|
4085
|
+
maxRange: string | number;
|
|
4086
|
+
activeState: boolean;
|
|
4087
|
+
disabledState: boolean;
|
|
4088
|
+
monthPicker: boolean;
|
|
4089
|
+
customFormatCallback: any;
|
|
4090
|
+
inputLabel: string;
|
|
4091
|
+
utc: boolean;
|
|
4092
|
+
teleport: boolean | string;
|
|
4093
|
+
closeOnScroll: boolean;
|
|
4094
|
+
enableQuickfilterToggle: boolean;
|
|
4095
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
4096
|
+
$slots: {
|
|
4097
|
+
actionArea?(_: {}): any;
|
|
4098
|
+
};
|
|
4099
|
+
});
|
|
4100
|
+
};
|
|
4101
|
+
setup(this: void): {
|
|
4102
|
+
args: import('@storybook/vue3').ComponentPropsAndSlots<{
|
|
4103
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
4104
|
+
definesRange?: boolean;
|
|
4105
|
+
multiCalendars?: boolean;
|
|
4106
|
+
enableTimePicker?: boolean;
|
|
4107
|
+
autoApply?: boolean;
|
|
4108
|
+
closeOnAutoApply?: boolean;
|
|
4109
|
+
roundedEdges?: boolean;
|
|
4110
|
+
locale?: string;
|
|
4111
|
+
placeholderText?: string;
|
|
4112
|
+
quickFilterRanges?: import('./UiDatePicker.vue').PresetRange[] | null;
|
|
4113
|
+
quickFilterHeadline?: string;
|
|
4114
|
+
selectedDate?: Date | [Date, Date] | string | {
|
|
4115
|
+
month: number;
|
|
4116
|
+
year: number;
|
|
4117
|
+
};
|
|
4118
|
+
autoPosition?: boolean;
|
|
4119
|
+
leftSidebar?: boolean;
|
|
4120
|
+
actionArea?: boolean;
|
|
4121
|
+
actionAreaExtraContent?: string;
|
|
4122
|
+
cancel?: string;
|
|
4123
|
+
submit?: string;
|
|
4124
|
+
firstAvailableDate?: number;
|
|
4125
|
+
minDate?: Date | string;
|
|
4126
|
+
maxDate?: Date;
|
|
4127
|
+
autoRange?: string | number | undefined;
|
|
4128
|
+
maxRange?: number | string | undefined;
|
|
4129
|
+
activeState?: boolean;
|
|
4130
|
+
disabledState?: boolean;
|
|
4131
|
+
monthPicker?: boolean;
|
|
4132
|
+
customFormatCallback?: any;
|
|
4133
|
+
inputLabel?: string;
|
|
4134
|
+
iconLeft?: (typeof iconNames)[number] | null;
|
|
4135
|
+
utc?: boolean;
|
|
4136
|
+
teleport?: boolean | string;
|
|
4137
|
+
closeOnScroll?: boolean;
|
|
4138
|
+
enableQuickfilterToggle?: boolean;
|
|
4139
|
+
}> & Readonly<{
|
|
4140
|
+
onClose?: (() => any) | undefined;
|
|
4141
|
+
onReset?: (() => any) | undefined;
|
|
4142
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
1484
4143
|
onOpen?: (() => any) | undefined;
|
|
1485
|
-
onDatepickerQuickfilterClick?: ((
|
|
1486
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4144
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
4145
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1487
4146
|
close: () => any;
|
|
1488
4147
|
reset: () => any;
|
|
1489
|
-
"date-changed": (
|
|
4148
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
1490
4149
|
open: () => any;
|
|
1491
|
-
datepickerQuickfilterClick: (
|
|
4150
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
1492
4151
|
}, import('vue').PublicProps, {
|
|
1493
4152
|
cancel: string;
|
|
1494
4153
|
submit: string;
|
|
@@ -1715,7 +4374,7 @@ declare const meta: {
|
|
|
1715
4374
|
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1716
4375
|
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
1717
4376
|
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
1718
|
-
readonly weekStart?: import('vue').Prop<0 |
|
|
4377
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
1719
4378
|
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1720
4379
|
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1721
4380
|
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -1859,9 +4518,9 @@ declare const meta: {
|
|
|
1859
4518
|
clearInput?: string;
|
|
1860
4519
|
calendarIcon?: string;
|
|
1861
4520
|
timePicker?: string;
|
|
1862
|
-
monthPicker
|
|
1863
|
-
yearPicker
|
|
1864
|
-
timeOverlay
|
|
4521
|
+
monthPicker?: (overlay: boolean) => string;
|
|
4522
|
+
yearPicker?: (overlay: boolean) => string;
|
|
4523
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1865
4524
|
} | undefined, {
|
|
1866
4525
|
toggleOverlay?: string;
|
|
1867
4526
|
menu?: string;
|
|
@@ -1887,9 +4546,9 @@ declare const meta: {
|
|
|
1887
4546
|
clearInput?: string;
|
|
1888
4547
|
calendarIcon?: string;
|
|
1889
4548
|
timePicker?: string;
|
|
1890
|
-
monthPicker
|
|
1891
|
-
yearPicker
|
|
1892
|
-
timeOverlay
|
|
4549
|
+
monthPicker?: (overlay: boolean) => string;
|
|
4550
|
+
yearPicker?: (overlay: boolean) => string;
|
|
4551
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
1893
4552
|
} | undefined> | null | undefined;
|
|
1894
4553
|
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1895
4554
|
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -2248,7 +4907,7 @@ declare const meta: {
|
|
|
2248
4907
|
readonly secondsIncrement?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
2249
4908
|
readonly minTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
2250
4909
|
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
2251
|
-
readonly weekStart?: import('vue').Prop<0 |
|
|
4910
|
+
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | "0" | 3 | 4 | 5 | 6 | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
2252
4911
|
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
2253
4912
|
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
2254
4913
|
readonly hideInputIcon?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -2392,9 +5051,9 @@ declare const meta: {
|
|
|
2392
5051
|
clearInput?: string;
|
|
2393
5052
|
calendarIcon?: string;
|
|
2394
5053
|
timePicker?: string;
|
|
2395
|
-
monthPicker
|
|
2396
|
-
yearPicker
|
|
2397
|
-
timeOverlay
|
|
5054
|
+
monthPicker?: (overlay: boolean) => string;
|
|
5055
|
+
yearPicker?: (overlay: boolean) => string;
|
|
5056
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2398
5057
|
} | undefined, {
|
|
2399
5058
|
toggleOverlay?: string;
|
|
2400
5059
|
menu?: string;
|
|
@@ -2420,9 +5079,9 @@ declare const meta: {
|
|
|
2420
5079
|
clearInput?: string;
|
|
2421
5080
|
calendarIcon?: string;
|
|
2422
5081
|
timePicker?: string;
|
|
2423
|
-
monthPicker
|
|
2424
|
-
yearPicker
|
|
2425
|
-
timeOverlay
|
|
5082
|
+
monthPicker?: (overlay: boolean) => string;
|
|
5083
|
+
yearPicker?: (overlay: boolean) => string;
|
|
5084
|
+
timeOverlay?: (type: import('@vuepic/vue-datepicker').TimeType) => string;
|
|
2426
5085
|
} | undefined> | null | undefined;
|
|
2427
5086
|
readonly arrowNavigation?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
2428
5087
|
readonly yearPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -2637,9 +5296,9 @@ declare const meta: {
|
|
|
2637
5296
|
}> & Readonly<{
|
|
2638
5297
|
onClose?: (() => any) | undefined;
|
|
2639
5298
|
onReset?: (() => any) | undefined;
|
|
2640
|
-
"onDate-changed"?: ((
|
|
5299
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
2641
5300
|
onOpen?: (() => any) | undefined;
|
|
2642
|
-
onDatepickerQuickfilterClick?: ((
|
|
5301
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
2643
5302
|
}>, {}, {}, {}, {}, {
|
|
2644
5303
|
cancel: string;
|
|
2645
5304
|
submit: string;
|
|
@@ -2719,15 +5378,15 @@ declare const meta: {
|
|
|
2719
5378
|
}> & Readonly<{
|
|
2720
5379
|
onClose?: (() => any) | undefined;
|
|
2721
5380
|
onReset?: (() => any) | undefined;
|
|
2722
|
-
"onDate-changed"?: ((
|
|
5381
|
+
"onDate-changed"?: ((args_0: Date | [Date, Date]) => any) | undefined;
|
|
2723
5382
|
onOpen?: (() => any) | undefined;
|
|
2724
|
-
onDatepickerQuickfilterClick?: ((
|
|
2725
|
-
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5383
|
+
onDatepickerQuickfilterClick?: ((args_0: string) => any) | undefined;
|
|
5384
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2726
5385
|
close: () => any;
|
|
2727
5386
|
reset: () => any;
|
|
2728
|
-
"date-changed": (
|
|
5387
|
+
"date-changed": (args_0: Date | [Date, Date]) => any;
|
|
2729
5388
|
open: () => any;
|
|
2730
|
-
datepickerQuickfilterClick: (
|
|
5389
|
+
datepickerQuickfilterClick: (args_0: string) => any;
|
|
2731
5390
|
}, string, {
|
|
2732
5391
|
cancel: string;
|
|
2733
5392
|
submit: string;
|
|
@@ -2768,10 +5427,7 @@ declare const meta: {
|
|
|
2768
5427
|
$slots: {
|
|
2769
5428
|
actionArea?(_: {}): any;
|
|
2770
5429
|
};
|
|
2771
|
-
})
|
|
2772
|
-
};
|
|
2773
|
-
setup(this: void): {
|
|
2774
|
-
args: any;
|
|
5430
|
+
})>;
|
|
2775
5431
|
};
|
|
2776
5432
|
template: string;
|
|
2777
5433
|
};
|