@vuetify/nightly 3.8.8-master.2025-06-10 → 3.8.9-dev.2025-06-11
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/CHANGELOG.md +39 -19
- package/dist/json/attributes.json +1662 -1538
- package/dist/json/importMap-labs.json +36 -36
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +32 -1
- package/dist/json/web-types.json +3166 -2780
- package/dist/vuetify-labs.cjs +389 -146
- package/dist/vuetify-labs.css +3499 -3465
- package/dist/vuetify-labs.d.ts +2602 -2062
- package/dist/vuetify-labs.esm.js +390 -147
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +389 -146
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +383 -135
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5561 -5527
- package/dist/vuetify.d.ts +1598 -1098
- package/dist/vuetify.esm.js +384 -136
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +383 -135
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1219 -1203
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +15 -10
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VAppBar/VAppBarNavIcon.d.ts +20 -10
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +154 -103
- package/lib/components/VAutocomplete/VAutocomplete.js +21 -3
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/components/VBtn/VBtn.d.ts +20 -10
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCard/VCard.d.ts +20 -10
- package/lib/components/VCheckbox/VCheckbox.d.ts +23 -13
- package/lib/components/VCheckbox/VCheckboxBtn.d.ts +20 -10
- package/lib/components/VChip/VChip.d.ts +20 -10
- package/lib/components/VChipGroup/VChipGroup.d.ts +10 -0
- package/lib/components/VCombobox/VCombobox.d.ts +154 -103
- package/lib/components/VCombobox/VCombobox.js +22 -3
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +60 -0
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +13 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +4 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +42 -0
- package/lib/components/VDatePicker/VDatePicker.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanels.d.ts +20 -10
- package/lib/components/VFab/VFab.d.ts +20 -10
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInfiniteScroll/VInfiniteScroll.d.ts +9 -3
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +29 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VList/VList.d.ts +13 -0
- package/lib/components/VList/VList.js +4 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VList/VListChildren.js.map +1 -1
- package/lib/components/VList/VListItem.d.ts +23 -10
- package/lib/components/VList/VListItem.js +7 -3
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VList/list.d.ts +9 -2
- package/lib/components/VList/list.js +7 -0
- package/lib/components/VList/list.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +103 -89
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +2 -1
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadio/VRadio.d.ts +20 -10
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +23 -13
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +171 -107
- package/lib/components/VSelect/VSelect.js +21 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.d.ts +20 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.d.ts +28 -14
- package/lib/components/VSlideGroup/VSlideGroup.d.ts +10 -0
- package/lib/components/VSlideGroup/VSlideGroup.js +2 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSlider/VSliderThumb.d.ts +20 -10
- package/lib/components/VStepper/VStepperItem.d.ts +28 -14
- package/lib/components/VSwitch/VSwitch.d.ts +23 -13
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VTabs/VTab.d.ts +56 -28
- package/lib/components/VTabs/VTabs.d.ts +10 -0
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/calendar.d.ts +6 -0
- package/lib/composables/calendar.js +2 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +3 -3
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +4 -4
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +3 -3
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/directives/ripple/index.d.ts +2 -1
- package/lib/directives/ripple/index.js +12 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/entry-bundler.d.ts +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +84 -69
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +10 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +97 -87
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- package/lib/labs/VFileUpload/VFileUploadItem.d.ts +20 -10
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/VStepperVertical/VStepperVertical.d.ts +20 -10
- package/lib/labs/VStepperVertical/VStepperVerticalItem.d.ts +20 -10
- package/lib/labs/VTreeview/VTreeview.d.ts +13 -0
- package/lib/labs/VTreeview/VTreeviewItem.d.ts +20 -10
- package/lib/labs/entry-bundler.d.ts +3 -3
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +3 -1
@@ -53,6 +53,7 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
53
53
|
weeksInMonth?: unknown;
|
54
54
|
firstDayOfWeek?: unknown;
|
55
55
|
allowedDates?: unknown;
|
56
|
+
weekdayFormat?: unknown;
|
56
57
|
hideWeekdays?: unknown;
|
57
58
|
showWeek?: unknown;
|
58
59
|
allowedMonths?: unknown;
|
@@ -404,6 +405,10 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
404
405
|
type: PropType<unknown extends Defaults["allowedDates"] ? unknown[] | ((date: unknown) => boolean) : unknown[] | ((date: unknown) => boolean) | Defaults["allowedDates"]>;
|
405
406
|
default: unknown extends Defaults["allowedDates"] ? unknown[] | ((date: unknown) => boolean) : NonNullable<unknown[] | ((date: unknown) => boolean)> | Defaults["allowedDates"];
|
406
407
|
};
|
408
|
+
weekdayFormat: unknown extends Defaults["weekdayFormat"] ? PropType<"long" | "short" | "narrow" | undefined> : {
|
409
|
+
type: PropType<unknown extends Defaults["weekdayFormat"] ? "long" | "short" | "narrow" | undefined : "long" | "short" | "narrow" | Defaults["weekdayFormat"] | undefined>;
|
410
|
+
default: unknown extends Defaults["weekdayFormat"] ? "long" | "short" | "narrow" | undefined : NonNullable<"long" | "short" | "narrow" | undefined> | Defaults["weekdayFormat"];
|
411
|
+
};
|
407
412
|
hideWeekdays: unknown extends Defaults["hideWeekdays"] ? BooleanConstructor : {
|
408
413
|
type: PropType<unknown extends Defaults["hideWeekdays"] ? boolean : boolean | Defaults["hideWeekdays"]>;
|
409
414
|
default: unknown extends Defaults["hideWeekdays"] ? boolean : boolean | Defaults["hideWeekdays"];
|
@@ -902,6 +907,7 @@ export declare const VDateInput: {
|
|
902
907
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
903
908
|
controlHeight?: string | number | undefined;
|
904
909
|
headerColor?: string | undefined;
|
910
|
+
iconColor?: string | boolean | undefined;
|
905
911
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
906
912
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
907
913
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -910,7 +916,6 @@ export declare const VDateInput: {
|
|
910
916
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
911
917
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
912
918
|
centerAffix?: boolean | undefined;
|
913
|
-
iconColor?: string | boolean | undefined;
|
914
919
|
hint?: string | undefined;
|
915
920
|
hideDetails?: boolean | "auto" | undefined;
|
916
921
|
suffix?: string | undefined;
|
@@ -918,6 +923,7 @@ export declare const VDateInput: {
|
|
918
923
|
modelModifiers?: Record<string, boolean> | undefined;
|
919
924
|
firstDayOfWeek?: string | number | undefined;
|
920
925
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
926
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
921
927
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
922
928
|
allowedYears?: number[] | ((date: number) => boolean) | undefined;
|
923
929
|
inputFormat?: string | undefined;
|
@@ -1071,6 +1077,7 @@ export declare const VDateInput: {
|
|
1071
1077
|
bgColor?: string | undefined;
|
1072
1078
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1073
1079
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1080
|
+
iconColor?: string | boolean | undefined;
|
1074
1081
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1075
1082
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1076
1083
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1079,7 +1086,6 @@ export declare const VDateInput: {
|
|
1079
1086
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1080
1087
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1081
1088
|
centerAffix?: boolean | undefined;
|
1082
|
-
iconColor?: string | boolean | undefined;
|
1083
1089
|
hint?: string | undefined;
|
1084
1090
|
hideDetails?: boolean | "auto" | undefined;
|
1085
1091
|
suffix?: string | undefined;
|
@@ -1223,6 +1229,7 @@ export declare const VDateInput: {
|
|
1223
1229
|
bgColor?: string | undefined;
|
1224
1230
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1225
1231
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1232
|
+
iconColor?: string | boolean | undefined;
|
1226
1233
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1227
1234
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1228
1235
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1231,7 +1238,6 @@ export declare const VDateInput: {
|
|
1231
1238
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1232
1239
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1233
1240
|
centerAffix?: boolean | undefined;
|
1234
|
-
iconColor?: string | boolean | undefined;
|
1235
1241
|
hint?: string | undefined;
|
1236
1242
|
hideDetails?: boolean | "auto" | undefined;
|
1237
1243
|
suffix?: string | undefined;
|
@@ -1346,9 +1352,9 @@ export declare const VDateInput: {
|
|
1346
1352
|
baseColor?: string | undefined;
|
1347
1353
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1348
1354
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1355
|
+
iconColor?: string | boolean | undefined;
|
1349
1356
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1350
1357
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1351
|
-
iconColor?: string | boolean | undefined;
|
1352
1358
|
hint?: string | undefined;
|
1353
1359
|
hideDetails?: boolean | "auto" | undefined;
|
1354
1360
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1402,9 +1408,9 @@ export declare const VDateInput: {
|
|
1402
1408
|
baseColor?: string | undefined;
|
1403
1409
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1404
1410
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1411
|
+
iconColor?: string | boolean | undefined;
|
1405
1412
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1406
1413
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1407
|
-
iconColor?: string | boolean | undefined;
|
1408
1414
|
hint?: string | undefined;
|
1409
1415
|
hideDetails?: boolean | "auto" | undefined;
|
1410
1416
|
} & {}, {
|
@@ -1505,9 +1511,9 @@ export declare const VDateInput: {
|
|
1505
1511
|
baseColor?: string | undefined;
|
1506
1512
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1507
1513
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1514
|
+
iconColor?: string | boolean | undefined;
|
1508
1515
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1509
1516
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1510
|
-
iconColor?: string | boolean | undefined;
|
1511
1517
|
hint?: string | undefined;
|
1512
1518
|
hideDetails?: boolean | "auto" | undefined;
|
1513
1519
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1519,7 +1525,7 @@ export declare const VDateInput: {
|
|
1519
1525
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1520
1526
|
modelValue?: unknown;
|
1521
1527
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1522
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
1528
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
1523
1529
|
$: import("vue").ComponentInternalInstance;
|
1524
1530
|
$data: {};
|
1525
1531
|
$props: Partial<{
|
@@ -1566,13 +1572,13 @@ export declare const VDateInput: {
|
|
1566
1572
|
rounded?: string | number | boolean | undefined;
|
1567
1573
|
baseColor?: string | undefined;
|
1568
1574
|
bgColor?: string | undefined;
|
1575
|
+
iconColor?: string | boolean | undefined;
|
1569
1576
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1570
1577
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1571
1578
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1572
1579
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1573
1580
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1574
1581
|
centerAffix?: boolean | undefined;
|
1575
|
-
iconColor?: string | boolean | undefined;
|
1576
1582
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
1577
1583
|
$attrs: {
|
1578
1584
|
[x: string]: unknown;
|
@@ -1625,13 +1631,13 @@ export declare const VDateInput: {
|
|
1625
1631
|
rounded?: string | number | boolean | undefined;
|
1626
1632
|
baseColor?: string | undefined;
|
1627
1633
|
bgColor?: string | undefined;
|
1634
|
+
iconColor?: string | boolean | undefined;
|
1628
1635
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1629
1636
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1630
1637
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1631
1638
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1632
1639
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1633
1640
|
centerAffix?: boolean | undefined;
|
1634
|
-
iconColor?: string | boolean | undefined;
|
1635
1641
|
} & {
|
1636
1642
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1637
1643
|
}, {
|
@@ -1735,13 +1741,13 @@ export declare const VDateInput: {
|
|
1735
1741
|
rounded?: string | number | boolean | undefined;
|
1736
1742
|
baseColor?: string | undefined;
|
1737
1743
|
bgColor?: string | undefined;
|
1744
|
+
iconColor?: string | boolean | undefined;
|
1738
1745
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1739
1746
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1740
1747
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1741
1748
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1742
1749
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1743
1750
|
centerAffix?: boolean | undefined;
|
1744
|
-
iconColor?: string | boolean | undefined;
|
1745
1751
|
} & {
|
1746
1752
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1747
1753
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1750,7 +1756,7 @@ export declare const VDateInput: {
|
|
1750
1756
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1751
1757
|
modelValue?: unknown;
|
1752
1758
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1753
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
1759
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
1754
1760
|
_allExposed: {
|
1755
1761
|
reset: () => Promise<void>;
|
1756
1762
|
resetValidation: () => Promise<void>;
|
@@ -1918,6 +1924,7 @@ export declare const VDateInput: {
|
|
1918
1924
|
bgColor?: string | undefined;
|
1919
1925
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1920
1926
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1927
|
+
iconColor?: string | boolean | undefined;
|
1921
1928
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1922
1929
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1923
1930
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1926,7 +1933,6 @@ export declare const VDateInput: {
|
|
1926
1933
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1927
1934
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1928
1935
|
centerAffix?: boolean | undefined;
|
1929
|
-
iconColor?: string | boolean | undefined;
|
1930
1936
|
hint?: string | undefined;
|
1931
1937
|
hideDetails?: boolean | "auto" | undefined;
|
1932
1938
|
suffix?: string | undefined;
|
@@ -2041,9 +2047,9 @@ export declare const VDateInput: {
|
|
2041
2047
|
baseColor?: string | undefined;
|
2042
2048
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2043
2049
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2050
|
+
iconColor?: string | boolean | undefined;
|
2044
2051
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2045
2052
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2046
|
-
iconColor?: string | boolean | undefined;
|
2047
2053
|
hint?: string | undefined;
|
2048
2054
|
hideDetails?: boolean | "auto" | undefined;
|
2049
2055
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2097,9 +2103,9 @@ export declare const VDateInput: {
|
|
2097
2103
|
baseColor?: string | undefined;
|
2098
2104
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2099
2105
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2106
|
+
iconColor?: string | boolean | undefined;
|
2100
2107
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2101
2108
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2102
|
-
iconColor?: string | boolean | undefined;
|
2103
2109
|
hint?: string | undefined;
|
2104
2110
|
hideDetails?: boolean | "auto" | undefined;
|
2105
2111
|
} & {}, {
|
@@ -2200,9 +2206,9 @@ export declare const VDateInput: {
|
|
2200
2206
|
baseColor?: string | undefined;
|
2201
2207
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2202
2208
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2209
|
+
iconColor?: string | boolean | undefined;
|
2203
2210
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2204
2211
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2205
|
-
iconColor?: string | boolean | undefined;
|
2206
2212
|
hint?: string | undefined;
|
2207
2213
|
hideDetails?: boolean | "auto" | undefined;
|
2208
2214
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2214,7 +2220,7 @@ export declare const VDateInput: {
|
|
2214
2220
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2215
2221
|
modelValue?: unknown;
|
2216
2222
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2217
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
2223
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
2218
2224
|
$: import("vue").ComponentInternalInstance;
|
2219
2225
|
$data: {};
|
2220
2226
|
$props: Partial<{
|
@@ -2261,13 +2267,13 @@ export declare const VDateInput: {
|
|
2261
2267
|
rounded?: string | number | boolean | undefined;
|
2262
2268
|
baseColor?: string | undefined;
|
2263
2269
|
bgColor?: string | undefined;
|
2270
|
+
iconColor?: string | boolean | undefined;
|
2264
2271
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2265
2272
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2266
2273
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2267
2274
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2268
2275
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2269
2276
|
centerAffix?: boolean | undefined;
|
2270
|
-
iconColor?: string | boolean | undefined;
|
2271
2277
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
2272
2278
|
$attrs: {
|
2273
2279
|
[x: string]: unknown;
|
@@ -2320,13 +2326,13 @@ export declare const VDateInput: {
|
|
2320
2326
|
rounded?: string | number | boolean | undefined;
|
2321
2327
|
baseColor?: string | undefined;
|
2322
2328
|
bgColor?: string | undefined;
|
2329
|
+
iconColor?: string | boolean | undefined;
|
2323
2330
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2324
2331
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2325
2332
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2326
2333
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2327
2334
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2328
2335
|
centerAffix?: boolean | undefined;
|
2329
|
-
iconColor?: string | boolean | undefined;
|
2330
2336
|
} & {
|
2331
2337
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2332
2338
|
}, {
|
@@ -2430,13 +2436,13 @@ export declare const VDateInput: {
|
|
2430
2436
|
rounded?: string | number | boolean | undefined;
|
2431
2437
|
baseColor?: string | undefined;
|
2432
2438
|
bgColor?: string | undefined;
|
2439
|
+
iconColor?: string | boolean | undefined;
|
2433
2440
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2434
2441
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2435
2442
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2436
2443
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2437
2444
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2438
2445
|
centerAffix?: boolean | undefined;
|
2439
|
-
iconColor?: string | boolean | undefined;
|
2440
2446
|
} & {
|
2441
2447
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2442
2448
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2445,7 +2451,7 @@ export declare const VDateInput: {
|
|
2445
2451
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2446
2452
|
modelValue?: unknown;
|
2447
2453
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2448
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
2454
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
2449
2455
|
_allExposed: {
|
2450
2456
|
reset: () => Promise<void>;
|
2451
2457
|
resetValidation: () => Promise<void>;
|
@@ -2456,7 +2462,7 @@ export declare const VDateInput: {
|
|
2456
2462
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
2457
2463
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
2458
2464
|
} | {};
|
2459
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
2465
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
2460
2466
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
2461
2467
|
$: import("vue").ComponentInternalInstance;
|
2462
2468
|
$data: {};
|
@@ -2507,9 +2513,9 @@ export declare const VDateInput: {
|
|
2507
2513
|
baseColor?: string | undefined;
|
2508
2514
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2509
2515
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2516
|
+
iconColor?: string | boolean | undefined;
|
2510
2517
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2511
2518
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2512
|
-
iconColor?: string | boolean | undefined;
|
2513
2519
|
hint?: string | undefined;
|
2514
2520
|
hideDetails?: boolean | "auto" | undefined;
|
2515
2521
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2563,9 +2569,9 @@ export declare const VDateInput: {
|
|
2563
2569
|
baseColor?: string | undefined;
|
2564
2570
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2565
2571
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2572
|
+
iconColor?: string | boolean | undefined;
|
2566
2573
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2567
2574
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2568
|
-
iconColor?: string | boolean | undefined;
|
2569
2575
|
hint?: string | undefined;
|
2570
2576
|
hideDetails?: boolean | "auto" | undefined;
|
2571
2577
|
} & {}, {
|
@@ -2666,9 +2672,9 @@ export declare const VDateInput: {
|
|
2666
2672
|
baseColor?: string | undefined;
|
2667
2673
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2668
2674
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2675
|
+
iconColor?: string | boolean | undefined;
|
2669
2676
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2670
2677
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2671
|
-
iconColor?: string | boolean | undefined;
|
2672
2678
|
hint?: string | undefined;
|
2673
2679
|
hideDetails?: boolean | "auto" | undefined;
|
2674
2680
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2680,7 +2686,7 @@ export declare const VDateInput: {
|
|
2680
2686
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2681
2687
|
modelValue?: unknown;
|
2682
2688
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2683
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
2689
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
2684
2690
|
$: import("vue").ComponentInternalInstance;
|
2685
2691
|
$data: {};
|
2686
2692
|
$props: Partial<{
|
@@ -2727,13 +2733,13 @@ export declare const VDateInput: {
|
|
2727
2733
|
rounded?: string | number | boolean | undefined;
|
2728
2734
|
baseColor?: string | undefined;
|
2729
2735
|
bgColor?: string | undefined;
|
2736
|
+
iconColor?: string | boolean | undefined;
|
2730
2737
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2731
2738
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2732
2739
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2733
2740
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2734
2741
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2735
2742
|
centerAffix?: boolean | undefined;
|
2736
|
-
iconColor?: string | boolean | undefined;
|
2737
2743
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
2738
2744
|
$attrs: {
|
2739
2745
|
[x: string]: unknown;
|
@@ -2786,13 +2792,13 @@ export declare const VDateInput: {
|
|
2786
2792
|
rounded?: string | number | boolean | undefined;
|
2787
2793
|
baseColor?: string | undefined;
|
2788
2794
|
bgColor?: string | undefined;
|
2795
|
+
iconColor?: string | boolean | undefined;
|
2789
2796
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2790
2797
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2791
2798
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2792
2799
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2793
2800
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2794
2801
|
centerAffix?: boolean | undefined;
|
2795
|
-
iconColor?: string | boolean | undefined;
|
2796
2802
|
} & {
|
2797
2803
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2798
2804
|
}, {
|
@@ -2896,13 +2902,13 @@ export declare const VDateInput: {
|
|
2896
2902
|
rounded?: string | number | boolean | undefined;
|
2897
2903
|
baseColor?: string | undefined;
|
2898
2904
|
bgColor?: string | undefined;
|
2905
|
+
iconColor?: string | boolean | undefined;
|
2899
2906
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2900
2907
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2901
2908
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2902
2909
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2903
2910
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2904
2911
|
centerAffix?: boolean | undefined;
|
2905
|
-
iconColor?: string | boolean | undefined;
|
2906
2912
|
} & {
|
2907
2913
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2908
2914
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2911,7 +2917,7 @@ export declare const VDateInput: {
|
|
2911
2917
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2912
2918
|
modelValue?: unknown;
|
2913
2919
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2914
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
2920
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
2915
2921
|
_allExposed: {
|
2916
2922
|
reset: () => Promise<void>;
|
2917
2923
|
resetValidation: () => Promise<void>;
|
@@ -3103,6 +3109,7 @@ export declare const VDateInput: {
|
|
3103
3109
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3104
3110
|
controlHeight?: string | number | undefined;
|
3105
3111
|
headerColor?: string | undefined;
|
3112
|
+
iconColor?: string | boolean | undefined;
|
3106
3113
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3107
3114
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3108
3115
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3111,7 +3118,6 @@ export declare const VDateInput: {
|
|
3111
3118
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3112
3119
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3113
3120
|
centerAffix?: boolean | undefined;
|
3114
|
-
iconColor?: string | boolean | undefined;
|
3115
3121
|
hint?: string | undefined;
|
3116
3122
|
hideDetails?: boolean | "auto" | undefined;
|
3117
3123
|
suffix?: string | undefined;
|
@@ -3119,6 +3125,7 @@ export declare const VDateInput: {
|
|
3119
3125
|
modelModifiers?: Record<string, boolean> | undefined;
|
3120
3126
|
firstDayOfWeek?: string | number | undefined;
|
3121
3127
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
3128
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
3122
3129
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
3123
3130
|
allowedYears?: number[] | ((date: number) => boolean) | undefined;
|
3124
3131
|
inputFormat?: string | undefined;
|
@@ -3272,6 +3279,7 @@ export declare const VDateInput: {
|
|
3272
3279
|
bgColor?: string | undefined;
|
3273
3280
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3274
3281
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3282
|
+
iconColor?: string | boolean | undefined;
|
3275
3283
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3276
3284
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3277
3285
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3280,7 +3288,6 @@ export declare const VDateInput: {
|
|
3280
3288
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3281
3289
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3282
3290
|
centerAffix?: boolean | undefined;
|
3283
|
-
iconColor?: string | boolean | undefined;
|
3284
3291
|
hint?: string | undefined;
|
3285
3292
|
hideDetails?: boolean | "auto" | undefined;
|
3286
3293
|
suffix?: string | undefined;
|
@@ -3424,6 +3431,7 @@ export declare const VDateInput: {
|
|
3424
3431
|
bgColor?: string | undefined;
|
3425
3432
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3426
3433
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3434
|
+
iconColor?: string | boolean | undefined;
|
3427
3435
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3428
3436
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3429
3437
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3432,7 +3440,6 @@ export declare const VDateInput: {
|
|
3432
3440
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3433
3441
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3434
3442
|
centerAffix?: boolean | undefined;
|
3435
|
-
iconColor?: string | boolean | undefined;
|
3436
3443
|
hint?: string | undefined;
|
3437
3444
|
hideDetails?: boolean | "auto" | undefined;
|
3438
3445
|
suffix?: string | undefined;
|
@@ -3547,9 +3554,9 @@ export declare const VDateInput: {
|
|
3547
3554
|
baseColor?: string | undefined;
|
3548
3555
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3549
3556
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3557
|
+
iconColor?: string | boolean | undefined;
|
3550
3558
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3551
3559
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3552
|
-
iconColor?: string | boolean | undefined;
|
3553
3560
|
hint?: string | undefined;
|
3554
3561
|
hideDetails?: boolean | "auto" | undefined;
|
3555
3562
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3603,9 +3610,9 @@ export declare const VDateInput: {
|
|
3603
3610
|
baseColor?: string | undefined;
|
3604
3611
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3605
3612
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3613
|
+
iconColor?: string | boolean | undefined;
|
3606
3614
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3607
3615
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3608
|
-
iconColor?: string | boolean | undefined;
|
3609
3616
|
hint?: string | undefined;
|
3610
3617
|
hideDetails?: boolean | "auto" | undefined;
|
3611
3618
|
} & {}, {
|
@@ -3706,9 +3713,9 @@ export declare const VDateInput: {
|
|
3706
3713
|
baseColor?: string | undefined;
|
3707
3714
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3708
3715
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3716
|
+
iconColor?: string | boolean | undefined;
|
3709
3717
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3710
3718
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3711
|
-
iconColor?: string | boolean | undefined;
|
3712
3719
|
hint?: string | undefined;
|
3713
3720
|
hideDetails?: boolean | "auto" | undefined;
|
3714
3721
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3720,7 +3727,7 @@ export declare const VDateInput: {
|
|
3720
3727
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3721
3728
|
modelValue?: unknown;
|
3722
3729
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3723
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
3730
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
3724
3731
|
$: import("vue").ComponentInternalInstance;
|
3725
3732
|
$data: {};
|
3726
3733
|
$props: Partial<{
|
@@ -3767,13 +3774,13 @@ export declare const VDateInput: {
|
|
3767
3774
|
rounded?: string | number | boolean | undefined;
|
3768
3775
|
baseColor?: string | undefined;
|
3769
3776
|
bgColor?: string | undefined;
|
3777
|
+
iconColor?: string | boolean | undefined;
|
3770
3778
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3771
3779
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3772
3780
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3773
3781
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3774
3782
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3775
3783
|
centerAffix?: boolean | undefined;
|
3776
|
-
iconColor?: string | boolean | undefined;
|
3777
3784
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
3778
3785
|
$attrs: {
|
3779
3786
|
[x: string]: unknown;
|
@@ -3826,13 +3833,13 @@ export declare const VDateInput: {
|
|
3826
3833
|
rounded?: string | number | boolean | undefined;
|
3827
3834
|
baseColor?: string | undefined;
|
3828
3835
|
bgColor?: string | undefined;
|
3836
|
+
iconColor?: string | boolean | undefined;
|
3829
3837
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3830
3838
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3831
3839
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3832
3840
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3833
3841
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3834
3842
|
centerAffix?: boolean | undefined;
|
3835
|
-
iconColor?: string | boolean | undefined;
|
3836
3843
|
} & {
|
3837
3844
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3838
3845
|
}, {
|
@@ -3936,13 +3943,13 @@ export declare const VDateInput: {
|
|
3936
3943
|
rounded?: string | number | boolean | undefined;
|
3937
3944
|
baseColor?: string | undefined;
|
3938
3945
|
bgColor?: string | undefined;
|
3946
|
+
iconColor?: string | boolean | undefined;
|
3939
3947
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3940
3948
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3941
3949
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3942
3950
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3943
3951
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3944
3952
|
centerAffix?: boolean | undefined;
|
3945
|
-
iconColor?: string | boolean | undefined;
|
3946
3953
|
} & {
|
3947
3954
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3948
3955
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3951,7 +3958,7 @@ export declare const VDateInput: {
|
|
3951
3958
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3952
3959
|
modelValue?: unknown;
|
3953
3960
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3954
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
3961
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
3955
3962
|
_allExposed: {
|
3956
3963
|
reset: () => Promise<void>;
|
3957
3964
|
resetValidation: () => Promise<void>;
|
@@ -4119,6 +4126,7 @@ export declare const VDateInput: {
|
|
4119
4126
|
bgColor?: string | undefined;
|
4120
4127
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4121
4128
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4129
|
+
iconColor?: string | boolean | undefined;
|
4122
4130
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4123
4131
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4124
4132
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4127,7 +4135,6 @@ export declare const VDateInput: {
|
|
4127
4135
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4128
4136
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4129
4137
|
centerAffix?: boolean | undefined;
|
4130
|
-
iconColor?: string | boolean | undefined;
|
4131
4138
|
hint?: string | undefined;
|
4132
4139
|
hideDetails?: boolean | "auto" | undefined;
|
4133
4140
|
suffix?: string | undefined;
|
@@ -4242,9 +4249,9 @@ export declare const VDateInput: {
|
|
4242
4249
|
baseColor?: string | undefined;
|
4243
4250
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4244
4251
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4252
|
+
iconColor?: string | boolean | undefined;
|
4245
4253
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4246
4254
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4247
|
-
iconColor?: string | boolean | undefined;
|
4248
4255
|
hint?: string | undefined;
|
4249
4256
|
hideDetails?: boolean | "auto" | undefined;
|
4250
4257
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4298,9 +4305,9 @@ export declare const VDateInput: {
|
|
4298
4305
|
baseColor?: string | undefined;
|
4299
4306
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4300
4307
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4308
|
+
iconColor?: string | boolean | undefined;
|
4301
4309
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4302
4310
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4303
|
-
iconColor?: string | boolean | undefined;
|
4304
4311
|
hint?: string | undefined;
|
4305
4312
|
hideDetails?: boolean | "auto" | undefined;
|
4306
4313
|
} & {}, {
|
@@ -4401,9 +4408,9 @@ export declare const VDateInput: {
|
|
4401
4408
|
baseColor?: string | undefined;
|
4402
4409
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4403
4410
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4411
|
+
iconColor?: string | boolean | undefined;
|
4404
4412
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4405
4413
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4406
|
-
iconColor?: string | boolean | undefined;
|
4407
4414
|
hint?: string | undefined;
|
4408
4415
|
hideDetails?: boolean | "auto" | undefined;
|
4409
4416
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4415,7 +4422,7 @@ export declare const VDateInput: {
|
|
4415
4422
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4416
4423
|
modelValue?: unknown;
|
4417
4424
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4418
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
4425
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
4419
4426
|
$: import("vue").ComponentInternalInstance;
|
4420
4427
|
$data: {};
|
4421
4428
|
$props: Partial<{
|
@@ -4462,13 +4469,13 @@ export declare const VDateInput: {
|
|
4462
4469
|
rounded?: string | number | boolean | undefined;
|
4463
4470
|
baseColor?: string | undefined;
|
4464
4471
|
bgColor?: string | undefined;
|
4472
|
+
iconColor?: string | boolean | undefined;
|
4465
4473
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4466
4474
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4467
4475
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4468
4476
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4469
4477
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4470
4478
|
centerAffix?: boolean | undefined;
|
4471
|
-
iconColor?: string | boolean | undefined;
|
4472
4479
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
4473
4480
|
$attrs: {
|
4474
4481
|
[x: string]: unknown;
|
@@ -4521,13 +4528,13 @@ export declare const VDateInput: {
|
|
4521
4528
|
rounded?: string | number | boolean | undefined;
|
4522
4529
|
baseColor?: string | undefined;
|
4523
4530
|
bgColor?: string | undefined;
|
4531
|
+
iconColor?: string | boolean | undefined;
|
4524
4532
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4525
4533
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4526
4534
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4527
4535
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4528
4536
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4529
4537
|
centerAffix?: boolean | undefined;
|
4530
|
-
iconColor?: string | boolean | undefined;
|
4531
4538
|
} & {
|
4532
4539
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4533
4540
|
}, {
|
@@ -4631,13 +4638,13 @@ export declare const VDateInput: {
|
|
4631
4638
|
rounded?: string | number | boolean | undefined;
|
4632
4639
|
baseColor?: string | undefined;
|
4633
4640
|
bgColor?: string | undefined;
|
4641
|
+
iconColor?: string | boolean | undefined;
|
4634
4642
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4635
4643
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4636
4644
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4637
4645
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4638
4646
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4639
4647
|
centerAffix?: boolean | undefined;
|
4640
|
-
iconColor?: string | boolean | undefined;
|
4641
4648
|
} & {
|
4642
4649
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4643
4650
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4646,7 +4653,7 @@ export declare const VDateInput: {
|
|
4646
4653
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4647
4654
|
modelValue?: unknown;
|
4648
4655
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4649
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
4656
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
4650
4657
|
_allExposed: {
|
4651
4658
|
reset: () => Promise<void>;
|
4652
4659
|
resetValidation: () => Promise<void>;
|
@@ -4657,7 +4664,7 @@ export declare const VDateInput: {
|
|
4657
4664
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4658
4665
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4659
4666
|
} | {};
|
4660
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
4667
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
4661
4668
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4662
4669
|
$: import("vue").ComponentInternalInstance;
|
4663
4670
|
$data: {};
|
@@ -4708,9 +4715,9 @@ export declare const VDateInput: {
|
|
4708
4715
|
baseColor?: string | undefined;
|
4709
4716
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4710
4717
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4718
|
+
iconColor?: string | boolean | undefined;
|
4711
4719
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4712
4720
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4713
|
-
iconColor?: string | boolean | undefined;
|
4714
4721
|
hint?: string | undefined;
|
4715
4722
|
hideDetails?: boolean | "auto" | undefined;
|
4716
4723
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4764,9 +4771,9 @@ export declare const VDateInput: {
|
|
4764
4771
|
baseColor?: string | undefined;
|
4765
4772
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4766
4773
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4774
|
+
iconColor?: string | boolean | undefined;
|
4767
4775
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4768
4776
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4769
|
-
iconColor?: string | boolean | undefined;
|
4770
4777
|
hint?: string | undefined;
|
4771
4778
|
hideDetails?: boolean | "auto" | undefined;
|
4772
4779
|
} & {}, {
|
@@ -4867,9 +4874,9 @@ export declare const VDateInput: {
|
|
4867
4874
|
baseColor?: string | undefined;
|
4868
4875
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4869
4876
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4877
|
+
iconColor?: string | boolean | undefined;
|
4870
4878
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4871
4879
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4872
|
-
iconColor?: string | boolean | undefined;
|
4873
4880
|
hint?: string | undefined;
|
4874
4881
|
hideDetails?: boolean | "auto" | undefined;
|
4875
4882
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4881,7 +4888,7 @@ export declare const VDateInput: {
|
|
4881
4888
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4882
4889
|
modelValue?: unknown;
|
4883
4890
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4884
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
4891
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
4885
4892
|
$: import("vue").ComponentInternalInstance;
|
4886
4893
|
$data: {};
|
4887
4894
|
$props: Partial<{
|
@@ -4928,13 +4935,13 @@ export declare const VDateInput: {
|
|
4928
4935
|
rounded?: string | number | boolean | undefined;
|
4929
4936
|
baseColor?: string | undefined;
|
4930
4937
|
bgColor?: string | undefined;
|
4938
|
+
iconColor?: string | boolean | undefined;
|
4931
4939
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4932
4940
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4933
4941
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4934
4942
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4935
4943
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4936
4944
|
centerAffix?: boolean | undefined;
|
4937
|
-
iconColor?: string | boolean | undefined;
|
4938
4945
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
4939
4946
|
$attrs: {
|
4940
4947
|
[x: string]: unknown;
|
@@ -4987,13 +4994,13 @@ export declare const VDateInput: {
|
|
4987
4994
|
rounded?: string | number | boolean | undefined;
|
4988
4995
|
baseColor?: string | undefined;
|
4989
4996
|
bgColor?: string | undefined;
|
4997
|
+
iconColor?: string | boolean | undefined;
|
4990
4998
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4991
4999
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4992
5000
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4993
5001
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4994
5002
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4995
5003
|
centerAffix?: boolean | undefined;
|
4996
|
-
iconColor?: string | boolean | undefined;
|
4997
5004
|
} & {
|
4998
5005
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4999
5006
|
}, {
|
@@ -5097,13 +5104,13 @@ export declare const VDateInput: {
|
|
5097
5104
|
rounded?: string | number | boolean | undefined;
|
5098
5105
|
baseColor?: string | undefined;
|
5099
5106
|
bgColor?: string | undefined;
|
5107
|
+
iconColor?: string | boolean | undefined;
|
5100
5108
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5101
5109
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5102
5110
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5103
5111
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5104
5112
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5105
5113
|
centerAffix?: boolean | undefined;
|
5106
|
-
iconColor?: string | boolean | undefined;
|
5107
5114
|
} & {
|
5108
5115
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5109
5116
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5112,7 +5119,7 @@ export declare const VDateInput: {
|
|
5112
5119
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5113
5120
|
modelValue?: unknown;
|
5114
5121
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5115
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
5122
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
5116
5123
|
_allExposed: {
|
5117
5124
|
reset: () => Promise<void>;
|
5118
5125
|
resetValidation: () => Promise<void>;
|
@@ -5277,6 +5284,7 @@ export declare const VDateInput: {
|
|
5277
5284
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5278
5285
|
controlHeight?: string | number | undefined;
|
5279
5286
|
headerColor?: string | undefined;
|
5287
|
+
iconColor?: string | boolean | undefined;
|
5280
5288
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5281
5289
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5282
5290
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5285,7 +5293,6 @@ export declare const VDateInput: {
|
|
5285
5293
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5286
5294
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5287
5295
|
centerAffix?: boolean | undefined;
|
5288
|
-
iconColor?: string | boolean | undefined;
|
5289
5296
|
hint?: string | undefined;
|
5290
5297
|
hideDetails?: boolean | "auto" | undefined;
|
5291
5298
|
suffix?: string | undefined;
|
@@ -5293,6 +5300,7 @@ export declare const VDateInput: {
|
|
5293
5300
|
modelModifiers?: Record<string, boolean> | undefined;
|
5294
5301
|
firstDayOfWeek?: string | number | undefined;
|
5295
5302
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
5303
|
+
weekdayFormat?: "long" | "short" | "narrow" | undefined;
|
5296
5304
|
allowedMonths?: number[] | ((date: number) => boolean) | undefined;
|
5297
5305
|
allowedYears?: number[] | ((date: number) => boolean) | undefined;
|
5298
5306
|
inputFormat?: string | undefined;
|
@@ -5446,6 +5454,7 @@ export declare const VDateInput: {
|
|
5446
5454
|
bgColor?: string | undefined;
|
5447
5455
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5448
5456
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5457
|
+
iconColor?: string | boolean | undefined;
|
5449
5458
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5450
5459
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5451
5460
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5454,7 +5463,6 @@ export declare const VDateInput: {
|
|
5454
5463
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5455
5464
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5456
5465
|
centerAffix?: boolean | undefined;
|
5457
|
-
iconColor?: string | boolean | undefined;
|
5458
5466
|
hint?: string | undefined;
|
5459
5467
|
hideDetails?: boolean | "auto" | undefined;
|
5460
5468
|
suffix?: string | undefined;
|
@@ -5598,6 +5606,7 @@ export declare const VDateInput: {
|
|
5598
5606
|
bgColor?: string | undefined;
|
5599
5607
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5600
5608
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5609
|
+
iconColor?: string | boolean | undefined;
|
5601
5610
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5602
5611
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5603
5612
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5606,7 +5615,6 @@ export declare const VDateInput: {
|
|
5606
5615
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5607
5616
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5608
5617
|
centerAffix?: boolean | undefined;
|
5609
|
-
iconColor?: string | boolean | undefined;
|
5610
5618
|
hint?: string | undefined;
|
5611
5619
|
hideDetails?: boolean | "auto" | undefined;
|
5612
5620
|
suffix?: string | undefined;
|
@@ -5721,9 +5729,9 @@ export declare const VDateInput: {
|
|
5721
5729
|
baseColor?: string | undefined;
|
5722
5730
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5723
5731
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5732
|
+
iconColor?: string | boolean | undefined;
|
5724
5733
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5725
5734
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5726
|
-
iconColor?: string | boolean | undefined;
|
5727
5735
|
hint?: string | undefined;
|
5728
5736
|
hideDetails?: boolean | "auto" | undefined;
|
5729
5737
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5777,9 +5785,9 @@ export declare const VDateInput: {
|
|
5777
5785
|
baseColor?: string | undefined;
|
5778
5786
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5779
5787
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5788
|
+
iconColor?: string | boolean | undefined;
|
5780
5789
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5781
5790
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5782
|
-
iconColor?: string | boolean | undefined;
|
5783
5791
|
hint?: string | undefined;
|
5784
5792
|
hideDetails?: boolean | "auto" | undefined;
|
5785
5793
|
} & {}, {
|
@@ -5880,9 +5888,9 @@ export declare const VDateInput: {
|
|
5880
5888
|
baseColor?: string | undefined;
|
5881
5889
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5882
5890
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5891
|
+
iconColor?: string | boolean | undefined;
|
5883
5892
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5884
5893
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5885
|
-
iconColor?: string | boolean | undefined;
|
5886
5894
|
hint?: string | undefined;
|
5887
5895
|
hideDetails?: boolean | "auto" | undefined;
|
5888
5896
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5894,7 +5902,7 @@ export declare const VDateInput: {
|
|
5894
5902
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5895
5903
|
modelValue?: unknown;
|
5896
5904
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5897
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
5905
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
5898
5906
|
$: import("vue").ComponentInternalInstance;
|
5899
5907
|
$data: {};
|
5900
5908
|
$props: Partial<{
|
@@ -5941,13 +5949,13 @@ export declare const VDateInput: {
|
|
5941
5949
|
rounded?: string | number | boolean | undefined;
|
5942
5950
|
baseColor?: string | undefined;
|
5943
5951
|
bgColor?: string | undefined;
|
5952
|
+
iconColor?: string | boolean | undefined;
|
5944
5953
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5945
5954
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5946
5955
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5947
5956
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5948
5957
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5949
5958
|
centerAffix?: boolean | undefined;
|
5950
|
-
iconColor?: string | boolean | undefined;
|
5951
5959
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
5952
5960
|
$attrs: {
|
5953
5961
|
[x: string]: unknown;
|
@@ -6000,13 +6008,13 @@ export declare const VDateInput: {
|
|
6000
6008
|
rounded?: string | number | boolean | undefined;
|
6001
6009
|
baseColor?: string | undefined;
|
6002
6010
|
bgColor?: string | undefined;
|
6011
|
+
iconColor?: string | boolean | undefined;
|
6003
6012
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6004
6013
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6005
6014
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6006
6015
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6007
6016
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6008
6017
|
centerAffix?: boolean | undefined;
|
6009
|
-
iconColor?: string | boolean | undefined;
|
6010
6018
|
} & {
|
6011
6019
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6012
6020
|
}, {
|
@@ -6110,13 +6118,13 @@ export declare const VDateInput: {
|
|
6110
6118
|
rounded?: string | number | boolean | undefined;
|
6111
6119
|
baseColor?: string | undefined;
|
6112
6120
|
bgColor?: string | undefined;
|
6121
|
+
iconColor?: string | boolean | undefined;
|
6113
6122
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6114
6123
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6115
6124
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6116
6125
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6117
6126
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6118
6127
|
centerAffix?: boolean | undefined;
|
6119
|
-
iconColor?: string | boolean | undefined;
|
6120
6128
|
} & {
|
6121
6129
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6122
6130
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6125,7 +6133,7 @@ export declare const VDateInput: {
|
|
6125
6133
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6126
6134
|
modelValue?: unknown;
|
6127
6135
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6128
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
6136
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
6129
6137
|
_allExposed: {
|
6130
6138
|
reset: () => Promise<void>;
|
6131
6139
|
resetValidation: () => Promise<void>;
|
@@ -6293,6 +6301,7 @@ export declare const VDateInput: {
|
|
6293
6301
|
bgColor?: string | undefined;
|
6294
6302
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6295
6303
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6304
|
+
iconColor?: string | boolean | undefined;
|
6296
6305
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6297
6306
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6298
6307
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6301,7 +6310,6 @@ export declare const VDateInput: {
|
|
6301
6310
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6302
6311
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6303
6312
|
centerAffix?: boolean | undefined;
|
6304
|
-
iconColor?: string | boolean | undefined;
|
6305
6313
|
hint?: string | undefined;
|
6306
6314
|
hideDetails?: boolean | "auto" | undefined;
|
6307
6315
|
suffix?: string | undefined;
|
@@ -6416,9 +6424,9 @@ export declare const VDateInput: {
|
|
6416
6424
|
baseColor?: string | undefined;
|
6417
6425
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6418
6426
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6427
|
+
iconColor?: string | boolean | undefined;
|
6419
6428
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6420
6429
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6421
|
-
iconColor?: string | boolean | undefined;
|
6422
6430
|
hint?: string | undefined;
|
6423
6431
|
hideDetails?: boolean | "auto" | undefined;
|
6424
6432
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6472,9 +6480,9 @@ export declare const VDateInput: {
|
|
6472
6480
|
baseColor?: string | undefined;
|
6473
6481
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6474
6482
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6483
|
+
iconColor?: string | boolean | undefined;
|
6475
6484
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6476
6485
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6477
|
-
iconColor?: string | boolean | undefined;
|
6478
6486
|
hint?: string | undefined;
|
6479
6487
|
hideDetails?: boolean | "auto" | undefined;
|
6480
6488
|
} & {}, {
|
@@ -6575,9 +6583,9 @@ export declare const VDateInput: {
|
|
6575
6583
|
baseColor?: string | undefined;
|
6576
6584
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6577
6585
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6586
|
+
iconColor?: string | boolean | undefined;
|
6578
6587
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6579
6588
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6580
|
-
iconColor?: string | boolean | undefined;
|
6581
6589
|
hint?: string | undefined;
|
6582
6590
|
hideDetails?: boolean | "auto" | undefined;
|
6583
6591
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6589,7 +6597,7 @@ export declare const VDateInput: {
|
|
6589
6597
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6590
6598
|
modelValue?: unknown;
|
6591
6599
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6592
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
6600
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
6593
6601
|
$: import("vue").ComponentInternalInstance;
|
6594
6602
|
$data: {};
|
6595
6603
|
$props: Partial<{
|
@@ -6636,13 +6644,13 @@ export declare const VDateInput: {
|
|
6636
6644
|
rounded?: string | number | boolean | undefined;
|
6637
6645
|
baseColor?: string | undefined;
|
6638
6646
|
bgColor?: string | undefined;
|
6647
|
+
iconColor?: string | boolean | undefined;
|
6639
6648
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6640
6649
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6641
6650
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6642
6651
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6643
6652
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6644
6653
|
centerAffix?: boolean | undefined;
|
6645
|
-
iconColor?: string | boolean | undefined;
|
6646
6654
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
6647
6655
|
$attrs: {
|
6648
6656
|
[x: string]: unknown;
|
@@ -6695,13 +6703,13 @@ export declare const VDateInput: {
|
|
6695
6703
|
rounded?: string | number | boolean | undefined;
|
6696
6704
|
baseColor?: string | undefined;
|
6697
6705
|
bgColor?: string | undefined;
|
6706
|
+
iconColor?: string | boolean | undefined;
|
6698
6707
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6699
6708
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6700
6709
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6701
6710
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6702
6711
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6703
6712
|
centerAffix?: boolean | undefined;
|
6704
|
-
iconColor?: string | boolean | undefined;
|
6705
6713
|
} & {
|
6706
6714
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6707
6715
|
}, {
|
@@ -6805,13 +6813,13 @@ export declare const VDateInput: {
|
|
6805
6813
|
rounded?: string | number | boolean | undefined;
|
6806
6814
|
baseColor?: string | undefined;
|
6807
6815
|
bgColor?: string | undefined;
|
6816
|
+
iconColor?: string | boolean | undefined;
|
6808
6817
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6809
6818
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6810
6819
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6811
6820
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6812
6821
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6813
6822
|
centerAffix?: boolean | undefined;
|
6814
|
-
iconColor?: string | boolean | undefined;
|
6815
6823
|
} & {
|
6816
6824
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6817
6825
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6820,7 +6828,7 @@ export declare const VDateInput: {
|
|
6820
6828
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6821
6829
|
modelValue?: unknown;
|
6822
6830
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6823
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
6831
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
6824
6832
|
_allExposed: {
|
6825
6833
|
reset: () => Promise<void>;
|
6826
6834
|
resetValidation: () => Promise<void>;
|
@@ -6831,7 +6839,7 @@ export declare const VDateInput: {
|
|
6831
6839
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6832
6840
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6833
6841
|
} | {};
|
6834
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
6842
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
6835
6843
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6836
6844
|
$: import("vue").ComponentInternalInstance;
|
6837
6845
|
$data: {};
|
@@ -6882,9 +6890,9 @@ export declare const VDateInput: {
|
|
6882
6890
|
baseColor?: string | undefined;
|
6883
6891
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6884
6892
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6893
|
+
iconColor?: string | boolean | undefined;
|
6885
6894
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6886
6895
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6887
|
-
iconColor?: string | boolean | undefined;
|
6888
6896
|
hint?: string | undefined;
|
6889
6897
|
hideDetails?: boolean | "auto" | undefined;
|
6890
6898
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6938,9 +6946,9 @@ export declare const VDateInput: {
|
|
6938
6946
|
baseColor?: string | undefined;
|
6939
6947
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6940
6948
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6949
|
+
iconColor?: string | boolean | undefined;
|
6941
6950
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6942
6951
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6943
|
-
iconColor?: string | boolean | undefined;
|
6944
6952
|
hint?: string | undefined;
|
6945
6953
|
hideDetails?: boolean | "auto" | undefined;
|
6946
6954
|
} & {}, {
|
@@ -7041,9 +7049,9 @@ export declare const VDateInput: {
|
|
7041
7049
|
baseColor?: string | undefined;
|
7042
7050
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7043
7051
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7052
|
+
iconColor?: string | boolean | undefined;
|
7044
7053
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7045
7054
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7046
|
-
iconColor?: string | boolean | undefined;
|
7047
7055
|
hint?: string | undefined;
|
7048
7056
|
hideDetails?: boolean | "auto" | undefined;
|
7049
7057
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7055,7 +7063,7 @@ export declare const VDateInput: {
|
|
7055
7063
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7056
7064
|
modelValue?: unknown;
|
7057
7065
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7058
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
7066
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
7059
7067
|
$: import("vue").ComponentInternalInstance;
|
7060
7068
|
$data: {};
|
7061
7069
|
$props: Partial<{
|
@@ -7102,13 +7110,13 @@ export declare const VDateInput: {
|
|
7102
7110
|
rounded?: string | number | boolean | undefined;
|
7103
7111
|
baseColor?: string | undefined;
|
7104
7112
|
bgColor?: string | undefined;
|
7113
|
+
iconColor?: string | boolean | undefined;
|
7105
7114
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7106
7115
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7107
7116
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7108
7117
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7109
7118
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7110
7119
|
centerAffix?: boolean | undefined;
|
7111
|
-
iconColor?: string | boolean | undefined;
|
7112
7120
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
7113
7121
|
$attrs: {
|
7114
7122
|
[x: string]: unknown;
|
@@ -7161,13 +7169,13 @@ export declare const VDateInput: {
|
|
7161
7169
|
rounded?: string | number | boolean | undefined;
|
7162
7170
|
baseColor?: string | undefined;
|
7163
7171
|
bgColor?: string | undefined;
|
7172
|
+
iconColor?: string | boolean | undefined;
|
7164
7173
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7165
7174
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7166
7175
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7167
7176
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7168
7177
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7169
7178
|
centerAffix?: boolean | undefined;
|
7170
|
-
iconColor?: string | boolean | undefined;
|
7171
7179
|
} & {
|
7172
7180
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7173
7181
|
}, {
|
@@ -7271,13 +7279,13 @@ export declare const VDateInput: {
|
|
7271
7279
|
rounded?: string | number | boolean | undefined;
|
7272
7280
|
baseColor?: string | undefined;
|
7273
7281
|
bgColor?: string | undefined;
|
7282
|
+
iconColor?: string | boolean | undefined;
|
7274
7283
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7275
7284
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7276
7285
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7277
7286
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7278
7287
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7279
7288
|
centerAffix?: boolean | undefined;
|
7280
|
-
iconColor?: string | boolean | undefined;
|
7281
7289
|
} & {
|
7282
7290
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7283
7291
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7286,7 +7294,7 @@ export declare const VDateInput: {
|
|
7286
7294
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7287
7295
|
modelValue?: unknown;
|
7288
7296
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7289
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
7297
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
7290
7298
|
_allExposed: {
|
7291
7299
|
reset: () => Promise<void>;
|
7292
7300
|
resetValidation: () => Promise<void>;
|
@@ -7479,6 +7487,7 @@ export declare const VDateInput: {
|
|
7479
7487
|
default: undefined;
|
7480
7488
|
};
|
7481
7489
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
7490
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
7482
7491
|
hideWeekdays: BooleanConstructor;
|
7483
7492
|
showWeek: BooleanConstructor;
|
7484
7493
|
allowedMonths: PropType<number[] | ((date: number) => boolean)>;
|
@@ -7713,6 +7722,7 @@ export declare const VDateInput: {
|
|
7713
7722
|
default: undefined;
|
7714
7723
|
};
|
7715
7724
|
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
7725
|
+
weekdayFormat: PropType<"long" | "short" | "narrow" | undefined>;
|
7716
7726
|
hideWeekdays: BooleanConstructor;
|
7717
7727
|
showWeek: BooleanConstructor;
|
7718
7728
|
allowedMonths: PropType<number[] | ((date: number) => boolean)>;
|