@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-dev.2025-05-17
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 +18 -21
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2187 -1835
- package/dist/json/importMap-labs.json +36 -32
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +4575 -3349
- package/dist/vuetify-labs.cjs +424 -130
- package/dist/vuetify-labs.css +3917 -3861
- package/dist/vuetify-labs.d.ts +2287 -1173
- package/dist/vuetify-labs.esm.js +425 -131
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +424 -130
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3736 -3683
- package/dist/vuetify.d.ts +570 -513
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- 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 +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- 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/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- 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/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- 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/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +77 -69
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +115 -118
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- 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/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- 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
@@ -114,8 +114,8 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
114
114
|
hideActions?: unknown;
|
115
115
|
mobile?: unknown;
|
116
116
|
mobileBreakpoint?: unknown;
|
117
|
-
displayFormat?: unknown;
|
118
117
|
inputFormat?: unknown;
|
118
|
+
displayFormat?: unknown;
|
119
119
|
location?: unknown;
|
120
120
|
menu?: unknown;
|
121
121
|
updateOn?: unknown;
|
@@ -676,13 +676,7 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
676
676
|
type: PropType<unknown extends Defaults["prefix"] ? string : string | Defaults["prefix"]>;
|
677
677
|
default: unknown extends Defaults["prefix"] ? string : string | Defaults["prefix"];
|
678
678
|
};
|
679
|
-
placeholder: unknown extends Defaults["placeholder"] ? {
|
680
|
-
type: PropType<string>;
|
681
|
-
default: string;
|
682
|
-
} : Omit<{
|
683
|
-
type: PropType<string>;
|
684
|
-
default: string;
|
685
|
-
}, "type" | "default"> & {
|
679
|
+
placeholder: unknown extends Defaults["placeholder"] ? StringConstructor : {
|
686
680
|
type: PropType<unknown extends Defaults["placeholder"] ? string : string | Defaults["placeholder"]>;
|
687
681
|
default: unknown extends Defaults["placeholder"] ? string : string | Defaults["placeholder"];
|
688
682
|
};
|
@@ -766,14 +760,20 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
766
760
|
type: PropType<unknown extends Defaults["mobileBreakpoint"] ? number | import("../../composables/display.js").DisplayBreakpoint : number | import("../../composables/display.js").DisplayBreakpoint | Defaults["mobileBreakpoint"]>;
|
767
761
|
default: unknown extends Defaults["mobileBreakpoint"] ? number | import("../../composables/display.js").DisplayBreakpoint : NonNullable<number | import("../../composables/display.js").DisplayBreakpoint> | Defaults["mobileBreakpoint"];
|
768
762
|
};
|
763
|
+
inputFormat: unknown extends Defaults["inputFormat"] ? {
|
764
|
+
type: StringConstructor;
|
765
|
+
validator: (v: string) => boolean;
|
766
|
+
} : Omit<{
|
767
|
+
type: StringConstructor;
|
768
|
+
validator: (v: string) => boolean;
|
769
|
+
}, "type" | "default"> & {
|
770
|
+
type: PropType<unknown extends Defaults["inputFormat"] ? string : string | Defaults["inputFormat"]>;
|
771
|
+
default: unknown extends Defaults["inputFormat"] ? string : string | Defaults["inputFormat"];
|
772
|
+
};
|
769
773
|
displayFormat: unknown extends Defaults["displayFormat"] ? (FunctionConstructor | StringConstructor)[] : {
|
770
774
|
type: PropType<unknown extends Defaults["displayFormat"] ? string | Function : string | Function | Defaults["displayFormat"]>;
|
771
775
|
default: unknown extends Defaults["displayFormat"] ? string | Function : NonNullable<string | Function> | Defaults["displayFormat"];
|
772
776
|
};
|
773
|
-
inputFormat: unknown extends Defaults["inputFormat"] ? (FunctionConstructor | StringConstructor)[] : {
|
774
|
-
type: PropType<unknown extends Defaults["inputFormat"] ? string | Function : string | Function | Defaults["inputFormat"]>;
|
775
|
-
default: unknown extends Defaults["inputFormat"] ? string | Function : NonNullable<string | Function> | Defaults["inputFormat"];
|
776
|
-
};
|
777
777
|
location: unknown extends Defaults["location"] ? {
|
778
778
|
type: PropType<StrategyProps["location"]>;
|
779
779
|
default: string;
|
@@ -820,7 +820,6 @@ export declare const VDateInput: {
|
|
820
820
|
readonly: boolean | null;
|
821
821
|
tag: string | import("../../util/index.js").JSXComponent;
|
822
822
|
landscape: boolean;
|
823
|
-
placeholder: string;
|
824
823
|
messages: string | readonly string[];
|
825
824
|
rules: readonly import("../../types.js").ValidationRule[];
|
826
825
|
focused: boolean;
|
@@ -879,6 +878,7 @@ export declare const VDateInput: {
|
|
879
878
|
year?: number | undefined;
|
880
879
|
class?: any;
|
881
880
|
theme?: string | undefined;
|
881
|
+
placeholder?: string | undefined;
|
882
882
|
elevation?: string | number | undefined;
|
883
883
|
counter?: string | number | boolean | undefined;
|
884
884
|
mobileBreakpoint?: number | import("../../composables/display.js").DisplayBreakpoint | undefined;
|
@@ -892,6 +892,7 @@ export declare const VDateInput: {
|
|
892
892
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
893
893
|
controlHeight?: string | number | undefined;
|
894
894
|
headerColor?: string | undefined;
|
895
|
+
iconColor?: string | boolean | undefined;
|
895
896
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
896
897
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
897
898
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -900,7 +901,6 @@ export declare const VDateInput: {
|
|
900
901
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
901
902
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
902
903
|
centerAffix?: boolean | undefined;
|
903
|
-
iconColor?: string | boolean | undefined;
|
904
904
|
hint?: string | undefined;
|
905
905
|
hideDetails?: boolean | "auto" | undefined;
|
906
906
|
suffix?: string | undefined;
|
@@ -908,8 +908,8 @@ export declare const VDateInput: {
|
|
908
908
|
modelModifiers?: Record<string, boolean> | undefined;
|
909
909
|
firstDayOfWeek?: string | number | undefined;
|
910
910
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
911
|
+
inputFormat?: string | undefined;
|
911
912
|
displayFormat?: string | Function | undefined;
|
912
|
-
inputFormat?: string | Function | undefined;
|
913
913
|
} & {
|
914
914
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
915
915
|
message?: ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
@@ -1058,6 +1058,7 @@ export declare const VDateInput: {
|
|
1058
1058
|
bgColor?: string | undefined;
|
1059
1059
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1060
1060
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1061
|
+
iconColor?: string | boolean | undefined;
|
1061
1062
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1062
1063
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1063
1064
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1066,7 +1067,6 @@ export declare const VDateInput: {
|
|
1066
1067
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1067
1068
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1068
1069
|
centerAffix?: boolean | undefined;
|
1069
|
-
iconColor?: string | boolean | undefined;
|
1070
1070
|
hint?: string | undefined;
|
1071
1071
|
hideDetails?: boolean | "auto" | undefined;
|
1072
1072
|
suffix?: string | undefined;
|
@@ -1210,6 +1210,7 @@ export declare const VDateInput: {
|
|
1210
1210
|
bgColor?: string | undefined;
|
1211
1211
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1212
1212
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1213
|
+
iconColor?: string | boolean | undefined;
|
1213
1214
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1214
1215
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1215
1216
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1218,7 +1219,6 @@ export declare const VDateInput: {
|
|
1218
1219
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1219
1220
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1220
1221
|
centerAffix?: boolean | undefined;
|
1221
|
-
iconColor?: string | boolean | undefined;
|
1222
1222
|
hint?: string | undefined;
|
1223
1223
|
hideDetails?: boolean | "auto" | undefined;
|
1224
1224
|
suffix?: string | undefined;
|
@@ -1333,9 +1333,9 @@ export declare const VDateInput: {
|
|
1333
1333
|
baseColor?: string | undefined;
|
1334
1334
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1335
1335
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1336
|
+
iconColor?: string | boolean | undefined;
|
1336
1337
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1337
1338
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1338
|
-
iconColor?: string | boolean | undefined;
|
1339
1339
|
hint?: string | undefined;
|
1340
1340
|
hideDetails?: boolean | "auto" | undefined;
|
1341
1341
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1389,9 +1389,9 @@ export declare const VDateInput: {
|
|
1389
1389
|
baseColor?: string | undefined;
|
1390
1390
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1391
1391
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1392
|
+
iconColor?: string | boolean | undefined;
|
1392
1393
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1393
1394
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1394
|
-
iconColor?: string | boolean | undefined;
|
1395
1395
|
hint?: string | undefined;
|
1396
1396
|
hideDetails?: boolean | "auto" | undefined;
|
1397
1397
|
} & {}, {
|
@@ -1492,9 +1492,9 @@ export declare const VDateInput: {
|
|
1492
1492
|
baseColor?: string | undefined;
|
1493
1493
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1494
1494
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1495
|
+
iconColor?: string | boolean | undefined;
|
1495
1496
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1496
1497
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1497
|
-
iconColor?: string | boolean | undefined;
|
1498
1498
|
hint?: string | undefined;
|
1499
1499
|
hideDetails?: boolean | "auto" | undefined;
|
1500
1500
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1506,7 +1506,7 @@ export declare const VDateInput: {
|
|
1506
1506
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1507
1507
|
modelValue?: unknown;
|
1508
1508
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1509
|
-
}, 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" | "
|
1509
|
+
}, 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<{
|
1510
1510
|
$: import("vue").ComponentInternalInstance;
|
1511
1511
|
$data: {};
|
1512
1512
|
$props: Partial<{
|
@@ -1553,13 +1553,13 @@ export declare const VDateInput: {
|
|
1553
1553
|
rounded?: string | number | boolean | undefined;
|
1554
1554
|
baseColor?: string | undefined;
|
1555
1555
|
bgColor?: string | undefined;
|
1556
|
+
iconColor?: string | boolean | undefined;
|
1556
1557
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1557
1558
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1558
1559
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1559
1560
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1560
1561
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1561
1562
|
centerAffix?: boolean | undefined;
|
1562
|
-
iconColor?: string | boolean | undefined;
|
1563
1563
|
} & 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">;
|
1564
1564
|
$attrs: {
|
1565
1565
|
[x: string]: unknown;
|
@@ -1612,13 +1612,13 @@ export declare const VDateInput: {
|
|
1612
1612
|
rounded?: string | number | boolean | undefined;
|
1613
1613
|
baseColor?: string | undefined;
|
1614
1614
|
bgColor?: string | undefined;
|
1615
|
+
iconColor?: string | boolean | undefined;
|
1615
1616
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1616
1617
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1617
1618
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1618
1619
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1619
1620
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1620
1621
|
centerAffix?: boolean | undefined;
|
1621
|
-
iconColor?: string | boolean | undefined;
|
1622
1622
|
} & {
|
1623
1623
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1624
1624
|
}, {
|
@@ -1722,13 +1722,13 @@ export declare const VDateInput: {
|
|
1722
1722
|
rounded?: string | number | boolean | undefined;
|
1723
1723
|
baseColor?: string | undefined;
|
1724
1724
|
bgColor?: string | undefined;
|
1725
|
+
iconColor?: string | boolean | undefined;
|
1725
1726
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1726
1727
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1727
1728
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1728
1729
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1729
1730
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1730
1731
|
centerAffix?: boolean | undefined;
|
1731
|
-
iconColor?: string | boolean | undefined;
|
1732
1732
|
} & {
|
1733
1733
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1734
1734
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1737,7 +1737,7 @@ export declare const VDateInput: {
|
|
1737
1737
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1738
1738
|
modelValue?: unknown;
|
1739
1739
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1740
|
-
}, 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" | "
|
1740
|
+
}, 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}`> & {
|
1741
1741
|
_allExposed: {
|
1742
1742
|
reset: () => Promise<void>;
|
1743
1743
|
resetValidation: () => Promise<void>;
|
@@ -1905,6 +1905,7 @@ export declare const VDateInput: {
|
|
1905
1905
|
bgColor?: string | undefined;
|
1906
1906
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1907
1907
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1908
|
+
iconColor?: string | boolean | undefined;
|
1908
1909
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1909
1910
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1910
1911
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1913,7 +1914,6 @@ export declare const VDateInput: {
|
|
1913
1914
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1914
1915
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1915
1916
|
centerAffix?: boolean | undefined;
|
1916
|
-
iconColor?: string | boolean | undefined;
|
1917
1917
|
hint?: string | undefined;
|
1918
1918
|
hideDetails?: boolean | "auto" | undefined;
|
1919
1919
|
suffix?: string | undefined;
|
@@ -2028,9 +2028,9 @@ export declare const VDateInput: {
|
|
2028
2028
|
baseColor?: string | undefined;
|
2029
2029
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2030
2030
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2031
|
+
iconColor?: string | boolean | undefined;
|
2031
2032
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2032
2033
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2033
|
-
iconColor?: string | boolean | undefined;
|
2034
2034
|
hint?: string | undefined;
|
2035
2035
|
hideDetails?: boolean | "auto" | undefined;
|
2036
2036
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2084,9 +2084,9 @@ export declare const VDateInput: {
|
|
2084
2084
|
baseColor?: string | undefined;
|
2085
2085
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2086
2086
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2087
|
+
iconColor?: string | boolean | undefined;
|
2087
2088
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2088
2089
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2089
|
-
iconColor?: string | boolean | undefined;
|
2090
2090
|
hint?: string | undefined;
|
2091
2091
|
hideDetails?: boolean | "auto" | undefined;
|
2092
2092
|
} & {}, {
|
@@ -2187,9 +2187,9 @@ export declare const VDateInput: {
|
|
2187
2187
|
baseColor?: string | undefined;
|
2188
2188
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2189
2189
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2190
|
+
iconColor?: string | boolean | undefined;
|
2190
2191
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2191
2192
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2192
|
-
iconColor?: string | boolean | undefined;
|
2193
2193
|
hint?: string | undefined;
|
2194
2194
|
hideDetails?: boolean | "auto" | undefined;
|
2195
2195
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2201,7 +2201,7 @@ export declare const VDateInput: {
|
|
2201
2201
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2202
2202
|
modelValue?: unknown;
|
2203
2203
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2204
|
-
}, 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" | "
|
2204
|
+
}, 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<{
|
2205
2205
|
$: import("vue").ComponentInternalInstance;
|
2206
2206
|
$data: {};
|
2207
2207
|
$props: Partial<{
|
@@ -2248,13 +2248,13 @@ export declare const VDateInput: {
|
|
2248
2248
|
rounded?: string | number | boolean | undefined;
|
2249
2249
|
baseColor?: string | undefined;
|
2250
2250
|
bgColor?: string | undefined;
|
2251
|
+
iconColor?: string | boolean | undefined;
|
2251
2252
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2252
2253
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2253
2254
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2254
2255
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2255
2256
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2256
2257
|
centerAffix?: boolean | undefined;
|
2257
|
-
iconColor?: string | boolean | undefined;
|
2258
2258
|
} & 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">;
|
2259
2259
|
$attrs: {
|
2260
2260
|
[x: string]: unknown;
|
@@ -2307,13 +2307,13 @@ export declare const VDateInput: {
|
|
2307
2307
|
rounded?: string | number | boolean | undefined;
|
2308
2308
|
baseColor?: string | undefined;
|
2309
2309
|
bgColor?: string | undefined;
|
2310
|
+
iconColor?: string | boolean | undefined;
|
2310
2311
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2311
2312
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2312
2313
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2313
2314
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2314
2315
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2315
2316
|
centerAffix?: boolean | undefined;
|
2316
|
-
iconColor?: string | boolean | undefined;
|
2317
2317
|
} & {
|
2318
2318
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2319
2319
|
}, {
|
@@ -2417,13 +2417,13 @@ export declare const VDateInput: {
|
|
2417
2417
|
rounded?: string | number | boolean | undefined;
|
2418
2418
|
baseColor?: string | undefined;
|
2419
2419
|
bgColor?: string | undefined;
|
2420
|
+
iconColor?: string | boolean | undefined;
|
2420
2421
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2421
2422
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2422
2423
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2423
2424
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2424
2425
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2425
2426
|
centerAffix?: boolean | undefined;
|
2426
|
-
iconColor?: string | boolean | undefined;
|
2427
2427
|
} & {
|
2428
2428
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2429
2429
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2432,7 +2432,7 @@ export declare const VDateInput: {
|
|
2432
2432
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2433
2433
|
modelValue?: unknown;
|
2434
2434
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2435
|
-
}, 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" | "
|
2435
|
+
}, 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}`> & {
|
2436
2436
|
_allExposed: {
|
2437
2437
|
reset: () => Promise<void>;
|
2438
2438
|
resetValidation: () => Promise<void>;
|
@@ -2443,7 +2443,7 @@ export declare const VDateInput: {
|
|
2443
2443
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
2444
2444
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
2445
2445
|
} | {};
|
2446
|
-
}> & {} & 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" | "
|
2446
|
+
}> & {} & 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}`> & {
|
2447
2447
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
2448
2448
|
$: import("vue").ComponentInternalInstance;
|
2449
2449
|
$data: {};
|
@@ -2494,9 +2494,9 @@ export declare const VDateInput: {
|
|
2494
2494
|
baseColor?: string | undefined;
|
2495
2495
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2496
2496
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2497
|
+
iconColor?: string | boolean | undefined;
|
2497
2498
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2498
2499
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2499
|
-
iconColor?: string | boolean | undefined;
|
2500
2500
|
hint?: string | undefined;
|
2501
2501
|
hideDetails?: boolean | "auto" | undefined;
|
2502
2502
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2550,9 +2550,9 @@ export declare const VDateInput: {
|
|
2550
2550
|
baseColor?: string | undefined;
|
2551
2551
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2552
2552
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2553
|
+
iconColor?: string | boolean | undefined;
|
2553
2554
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2554
2555
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2555
|
-
iconColor?: string | boolean | undefined;
|
2556
2556
|
hint?: string | undefined;
|
2557
2557
|
hideDetails?: boolean | "auto" | undefined;
|
2558
2558
|
} & {}, {
|
@@ -2653,9 +2653,9 @@ export declare const VDateInput: {
|
|
2653
2653
|
baseColor?: string | undefined;
|
2654
2654
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2655
2655
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2656
|
+
iconColor?: string | boolean | undefined;
|
2656
2657
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2657
2658
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2658
|
-
iconColor?: string | boolean | undefined;
|
2659
2659
|
hint?: string | undefined;
|
2660
2660
|
hideDetails?: boolean | "auto" | undefined;
|
2661
2661
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2667,7 +2667,7 @@ export declare const VDateInput: {
|
|
2667
2667
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2668
2668
|
modelValue?: unknown;
|
2669
2669
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2670
|
-
}, 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" | "
|
2670
|
+
}, 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<{
|
2671
2671
|
$: import("vue").ComponentInternalInstance;
|
2672
2672
|
$data: {};
|
2673
2673
|
$props: Partial<{
|
@@ -2714,13 +2714,13 @@ export declare const VDateInput: {
|
|
2714
2714
|
rounded?: string | number | boolean | undefined;
|
2715
2715
|
baseColor?: string | undefined;
|
2716
2716
|
bgColor?: string | undefined;
|
2717
|
+
iconColor?: string | boolean | undefined;
|
2717
2718
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2718
2719
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2719
2720
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2720
2721
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2721
2722
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2722
2723
|
centerAffix?: boolean | undefined;
|
2723
|
-
iconColor?: string | boolean | undefined;
|
2724
2724
|
} & 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">;
|
2725
2725
|
$attrs: {
|
2726
2726
|
[x: string]: unknown;
|
@@ -2773,13 +2773,13 @@ export declare const VDateInput: {
|
|
2773
2773
|
rounded?: string | number | boolean | undefined;
|
2774
2774
|
baseColor?: string | undefined;
|
2775
2775
|
bgColor?: string | undefined;
|
2776
|
+
iconColor?: string | boolean | undefined;
|
2776
2777
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2777
2778
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2778
2779
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2779
2780
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2780
2781
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2781
2782
|
centerAffix?: boolean | undefined;
|
2782
|
-
iconColor?: string | boolean | undefined;
|
2783
2783
|
} & {
|
2784
2784
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2785
2785
|
}, {
|
@@ -2883,13 +2883,13 @@ export declare const VDateInput: {
|
|
2883
2883
|
rounded?: string | number | boolean | undefined;
|
2884
2884
|
baseColor?: string | undefined;
|
2885
2885
|
bgColor?: string | undefined;
|
2886
|
+
iconColor?: string | boolean | undefined;
|
2886
2887
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2887
2888
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2888
2889
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2889
2890
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2890
2891
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2891
2892
|
centerAffix?: boolean | undefined;
|
2892
|
-
iconColor?: string | boolean | undefined;
|
2893
2893
|
} & {
|
2894
2894
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2895
2895
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2898,7 +2898,7 @@ export declare const VDateInput: {
|
|
2898
2898
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2899
2899
|
modelValue?: unknown;
|
2900
2900
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2901
|
-
}, 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" | "
|
2901
|
+
}, 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}`> & {
|
2902
2902
|
_allExposed: {
|
2903
2903
|
reset: () => Promise<void>;
|
2904
2904
|
resetValidation: () => Promise<void>;
|
@@ -2935,7 +2935,6 @@ export declare const VDateInput: {
|
|
2935
2935
|
readonly: boolean | null;
|
2936
2936
|
tag: string | import("../../util/index.js").JSXComponent;
|
2937
2937
|
landscape: boolean;
|
2938
|
-
placeholder: string;
|
2939
2938
|
messages: string | readonly string[];
|
2940
2939
|
rules: readonly import("../../types.js").ValidationRule[];
|
2941
2940
|
focused: boolean;
|
@@ -3018,7 +3017,6 @@ export declare const VDateInput: {
|
|
3018
3017
|
readonly: boolean | null;
|
3019
3018
|
tag: string | import("../../util/index.js").JSXComponent;
|
3020
3019
|
landscape: boolean;
|
3021
|
-
placeholder: string;
|
3022
3020
|
messages: string | readonly string[];
|
3023
3021
|
rules: readonly import("../../types.js").ValidationRule[];
|
3024
3022
|
focused: boolean;
|
@@ -3077,6 +3075,7 @@ export declare const VDateInput: {
|
|
3077
3075
|
year?: number | undefined;
|
3078
3076
|
class?: any;
|
3079
3077
|
theme?: string | undefined;
|
3078
|
+
placeholder?: string | undefined;
|
3080
3079
|
elevation?: string | number | undefined;
|
3081
3080
|
counter?: string | number | boolean | undefined;
|
3082
3081
|
mobileBreakpoint?: number | import("../../composables/display.js").DisplayBreakpoint | undefined;
|
@@ -3090,6 +3089,7 @@ export declare const VDateInput: {
|
|
3090
3089
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3091
3090
|
controlHeight?: string | number | undefined;
|
3092
3091
|
headerColor?: string | undefined;
|
3092
|
+
iconColor?: string | boolean | undefined;
|
3093
3093
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3094
3094
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3095
3095
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3098,7 +3098,6 @@ export declare const VDateInput: {
|
|
3098
3098
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3099
3099
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3100
3100
|
centerAffix?: boolean | undefined;
|
3101
|
-
iconColor?: string | boolean | undefined;
|
3102
3101
|
hint?: string | undefined;
|
3103
3102
|
hideDetails?: boolean | "auto" | undefined;
|
3104
3103
|
suffix?: string | undefined;
|
@@ -3106,8 +3105,8 @@ export declare const VDateInput: {
|
|
3106
3105
|
modelModifiers?: Record<string, boolean> | undefined;
|
3107
3106
|
firstDayOfWeek?: string | number | undefined;
|
3108
3107
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
3108
|
+
inputFormat?: string | undefined;
|
3109
3109
|
displayFormat?: string | Function | undefined;
|
3110
|
-
inputFormat?: string | Function | undefined;
|
3111
3110
|
} & {
|
3112
3111
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
3113
3112
|
message?: ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
@@ -3256,6 +3255,7 @@ export declare const VDateInput: {
|
|
3256
3255
|
bgColor?: string | undefined;
|
3257
3256
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3258
3257
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3258
|
+
iconColor?: string | boolean | undefined;
|
3259
3259
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3260
3260
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3261
3261
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3264,7 +3264,6 @@ export declare const VDateInput: {
|
|
3264
3264
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3265
3265
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3266
3266
|
centerAffix?: boolean | undefined;
|
3267
|
-
iconColor?: string | boolean | undefined;
|
3268
3267
|
hint?: string | undefined;
|
3269
3268
|
hideDetails?: boolean | "auto" | undefined;
|
3270
3269
|
suffix?: string | undefined;
|
@@ -3408,6 +3407,7 @@ export declare const VDateInput: {
|
|
3408
3407
|
bgColor?: string | undefined;
|
3409
3408
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3410
3409
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3410
|
+
iconColor?: string | boolean | undefined;
|
3411
3411
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3412
3412
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3413
3413
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3416,7 +3416,6 @@ export declare const VDateInput: {
|
|
3416
3416
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3417
3417
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3418
3418
|
centerAffix?: boolean | undefined;
|
3419
|
-
iconColor?: string | boolean | undefined;
|
3420
3419
|
hint?: string | undefined;
|
3421
3420
|
hideDetails?: boolean | "auto" | undefined;
|
3422
3421
|
suffix?: string | undefined;
|
@@ -3531,9 +3530,9 @@ export declare const VDateInput: {
|
|
3531
3530
|
baseColor?: string | undefined;
|
3532
3531
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3533
3532
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3533
|
+
iconColor?: string | boolean | undefined;
|
3534
3534
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3535
3535
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3536
|
-
iconColor?: string | boolean | undefined;
|
3537
3536
|
hint?: string | undefined;
|
3538
3537
|
hideDetails?: boolean | "auto" | undefined;
|
3539
3538
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3587,9 +3586,9 @@ export declare const VDateInput: {
|
|
3587
3586
|
baseColor?: string | undefined;
|
3588
3587
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3589
3588
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3589
|
+
iconColor?: string | boolean | undefined;
|
3590
3590
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3591
3591
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3592
|
-
iconColor?: string | boolean | undefined;
|
3593
3592
|
hint?: string | undefined;
|
3594
3593
|
hideDetails?: boolean | "auto" | undefined;
|
3595
3594
|
} & {}, {
|
@@ -3690,9 +3689,9 @@ export declare const VDateInput: {
|
|
3690
3689
|
baseColor?: string | undefined;
|
3691
3690
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3692
3691
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3692
|
+
iconColor?: string | boolean | undefined;
|
3693
3693
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3694
3694
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3695
|
-
iconColor?: string | boolean | undefined;
|
3696
3695
|
hint?: string | undefined;
|
3697
3696
|
hideDetails?: boolean | "auto" | undefined;
|
3698
3697
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3704,7 +3703,7 @@ export declare const VDateInput: {
|
|
3704
3703
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3705
3704
|
modelValue?: unknown;
|
3706
3705
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3707
|
-
}, 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" | "
|
3706
|
+
}, 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<{
|
3708
3707
|
$: import("vue").ComponentInternalInstance;
|
3709
3708
|
$data: {};
|
3710
3709
|
$props: Partial<{
|
@@ -3751,13 +3750,13 @@ export declare const VDateInput: {
|
|
3751
3750
|
rounded?: string | number | boolean | undefined;
|
3752
3751
|
baseColor?: string | undefined;
|
3753
3752
|
bgColor?: string | undefined;
|
3753
|
+
iconColor?: string | boolean | undefined;
|
3754
3754
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3755
3755
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3756
3756
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3757
3757
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3758
3758
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3759
3759
|
centerAffix?: boolean | undefined;
|
3760
|
-
iconColor?: string | boolean | undefined;
|
3761
3760
|
} & 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">;
|
3762
3761
|
$attrs: {
|
3763
3762
|
[x: string]: unknown;
|
@@ -3810,13 +3809,13 @@ export declare const VDateInput: {
|
|
3810
3809
|
rounded?: string | number | boolean | undefined;
|
3811
3810
|
baseColor?: string | undefined;
|
3812
3811
|
bgColor?: string | undefined;
|
3812
|
+
iconColor?: string | boolean | undefined;
|
3813
3813
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3814
3814
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3815
3815
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3816
3816
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3817
3817
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3818
3818
|
centerAffix?: boolean | undefined;
|
3819
|
-
iconColor?: string | boolean | undefined;
|
3820
3819
|
} & {
|
3821
3820
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3822
3821
|
}, {
|
@@ -3920,13 +3919,13 @@ export declare const VDateInput: {
|
|
3920
3919
|
rounded?: string | number | boolean | undefined;
|
3921
3920
|
baseColor?: string | undefined;
|
3922
3921
|
bgColor?: string | undefined;
|
3922
|
+
iconColor?: string | boolean | undefined;
|
3923
3923
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3924
3924
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3925
3925
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3926
3926
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3927
3927
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3928
3928
|
centerAffix?: boolean | undefined;
|
3929
|
-
iconColor?: string | boolean | undefined;
|
3930
3929
|
} & {
|
3931
3930
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3932
3931
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3935,7 +3934,7 @@ export declare const VDateInput: {
|
|
3935
3934
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3936
3935
|
modelValue?: unknown;
|
3937
3936
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3938
|
-
}, 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" | "
|
3937
|
+
}, 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}`> & {
|
3939
3938
|
_allExposed: {
|
3940
3939
|
reset: () => Promise<void>;
|
3941
3940
|
resetValidation: () => Promise<void>;
|
@@ -4103,6 +4102,7 @@ export declare const VDateInput: {
|
|
4103
4102
|
bgColor?: string | undefined;
|
4104
4103
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4105
4104
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4105
|
+
iconColor?: string | boolean | undefined;
|
4106
4106
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4107
4107
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4108
4108
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4111,7 +4111,6 @@ export declare const VDateInput: {
|
|
4111
4111
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4112
4112
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4113
4113
|
centerAffix?: boolean | undefined;
|
4114
|
-
iconColor?: string | boolean | undefined;
|
4115
4114
|
hint?: string | undefined;
|
4116
4115
|
hideDetails?: boolean | "auto" | undefined;
|
4117
4116
|
suffix?: string | undefined;
|
@@ -4226,9 +4225,9 @@ export declare const VDateInput: {
|
|
4226
4225
|
baseColor?: string | undefined;
|
4227
4226
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4228
4227
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4228
|
+
iconColor?: string | boolean | undefined;
|
4229
4229
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4230
4230
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4231
|
-
iconColor?: string | boolean | undefined;
|
4232
4231
|
hint?: string | undefined;
|
4233
4232
|
hideDetails?: boolean | "auto" | undefined;
|
4234
4233
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4282,9 +4281,9 @@ export declare const VDateInput: {
|
|
4282
4281
|
baseColor?: string | undefined;
|
4283
4282
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4284
4283
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4284
|
+
iconColor?: string | boolean | undefined;
|
4285
4285
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4286
4286
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4287
|
-
iconColor?: string | boolean | undefined;
|
4288
4287
|
hint?: string | undefined;
|
4289
4288
|
hideDetails?: boolean | "auto" | undefined;
|
4290
4289
|
} & {}, {
|
@@ -4385,9 +4384,9 @@ export declare const VDateInput: {
|
|
4385
4384
|
baseColor?: string | undefined;
|
4386
4385
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4387
4386
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4387
|
+
iconColor?: string | boolean | undefined;
|
4388
4388
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4389
4389
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4390
|
-
iconColor?: string | boolean | undefined;
|
4391
4390
|
hint?: string | undefined;
|
4392
4391
|
hideDetails?: boolean | "auto" | undefined;
|
4393
4392
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4399,7 +4398,7 @@ export declare const VDateInput: {
|
|
4399
4398
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4400
4399
|
modelValue?: unknown;
|
4401
4400
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4402
|
-
}, 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" | "
|
4401
|
+
}, 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<{
|
4403
4402
|
$: import("vue").ComponentInternalInstance;
|
4404
4403
|
$data: {};
|
4405
4404
|
$props: Partial<{
|
@@ -4446,13 +4445,13 @@ export declare const VDateInput: {
|
|
4446
4445
|
rounded?: string | number | boolean | undefined;
|
4447
4446
|
baseColor?: string | undefined;
|
4448
4447
|
bgColor?: string | undefined;
|
4448
|
+
iconColor?: string | boolean | undefined;
|
4449
4449
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4450
4450
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4451
4451
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4452
4452
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4453
4453
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4454
4454
|
centerAffix?: boolean | undefined;
|
4455
|
-
iconColor?: string | boolean | undefined;
|
4456
4455
|
} & 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">;
|
4457
4456
|
$attrs: {
|
4458
4457
|
[x: string]: unknown;
|
@@ -4505,13 +4504,13 @@ export declare const VDateInput: {
|
|
4505
4504
|
rounded?: string | number | boolean | undefined;
|
4506
4505
|
baseColor?: string | undefined;
|
4507
4506
|
bgColor?: string | undefined;
|
4507
|
+
iconColor?: string | boolean | undefined;
|
4508
4508
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4509
4509
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4510
4510
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4511
4511
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4512
4512
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4513
4513
|
centerAffix?: boolean | undefined;
|
4514
|
-
iconColor?: string | boolean | undefined;
|
4515
4514
|
} & {
|
4516
4515
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4517
4516
|
}, {
|
@@ -4615,13 +4614,13 @@ export declare const VDateInput: {
|
|
4615
4614
|
rounded?: string | number | boolean | undefined;
|
4616
4615
|
baseColor?: string | undefined;
|
4617
4616
|
bgColor?: string | undefined;
|
4617
|
+
iconColor?: string | boolean | undefined;
|
4618
4618
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4619
4619
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4620
4620
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4621
4621
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4622
4622
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4623
4623
|
centerAffix?: boolean | undefined;
|
4624
|
-
iconColor?: string | boolean | undefined;
|
4625
4624
|
} & {
|
4626
4625
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4627
4626
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4630,7 +4629,7 @@ export declare const VDateInput: {
|
|
4630
4629
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4631
4630
|
modelValue?: unknown;
|
4632
4631
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4633
|
-
}, 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" | "
|
4632
|
+
}, 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}`> & {
|
4634
4633
|
_allExposed: {
|
4635
4634
|
reset: () => Promise<void>;
|
4636
4635
|
resetValidation: () => Promise<void>;
|
@@ -4641,7 +4640,7 @@ export declare const VDateInput: {
|
|
4641
4640
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4642
4641
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4643
4642
|
} | {};
|
4644
|
-
}> & {} & 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" | "
|
4643
|
+
}> & {} & 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}`> & {
|
4645
4644
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4646
4645
|
$: import("vue").ComponentInternalInstance;
|
4647
4646
|
$data: {};
|
@@ -4692,9 +4691,9 @@ export declare const VDateInput: {
|
|
4692
4691
|
baseColor?: string | undefined;
|
4693
4692
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4694
4693
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4694
|
+
iconColor?: string | boolean | undefined;
|
4695
4695
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4696
4696
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4697
|
-
iconColor?: string | boolean | undefined;
|
4698
4697
|
hint?: string | undefined;
|
4699
4698
|
hideDetails?: boolean | "auto" | undefined;
|
4700
4699
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4748,9 +4747,9 @@ export declare const VDateInput: {
|
|
4748
4747
|
baseColor?: string | undefined;
|
4749
4748
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4750
4749
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4750
|
+
iconColor?: string | boolean | undefined;
|
4751
4751
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4752
4752
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4753
|
-
iconColor?: string | boolean | undefined;
|
4754
4753
|
hint?: string | undefined;
|
4755
4754
|
hideDetails?: boolean | "auto" | undefined;
|
4756
4755
|
} & {}, {
|
@@ -4851,9 +4850,9 @@ export declare const VDateInput: {
|
|
4851
4850
|
baseColor?: string | undefined;
|
4852
4851
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4853
4852
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4853
|
+
iconColor?: string | boolean | undefined;
|
4854
4854
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4855
4855
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4856
|
-
iconColor?: string | boolean | undefined;
|
4857
4856
|
hint?: string | undefined;
|
4858
4857
|
hideDetails?: boolean | "auto" | undefined;
|
4859
4858
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4865,7 +4864,7 @@ export declare const VDateInput: {
|
|
4865
4864
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4866
4865
|
modelValue?: unknown;
|
4867
4866
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4868
|
-
}, 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" | "
|
4867
|
+
}, 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<{
|
4869
4868
|
$: import("vue").ComponentInternalInstance;
|
4870
4869
|
$data: {};
|
4871
4870
|
$props: Partial<{
|
@@ -4912,13 +4911,13 @@ export declare const VDateInput: {
|
|
4912
4911
|
rounded?: string | number | boolean | undefined;
|
4913
4912
|
baseColor?: string | undefined;
|
4914
4913
|
bgColor?: string | undefined;
|
4914
|
+
iconColor?: string | boolean | undefined;
|
4915
4915
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4916
4916
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4917
4917
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4918
4918
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4919
4919
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4920
4920
|
centerAffix?: boolean | undefined;
|
4921
|
-
iconColor?: string | boolean | undefined;
|
4922
4921
|
} & 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">;
|
4923
4922
|
$attrs: {
|
4924
4923
|
[x: string]: unknown;
|
@@ -4971,13 +4970,13 @@ export declare const VDateInput: {
|
|
4971
4970
|
rounded?: string | number | boolean | undefined;
|
4972
4971
|
baseColor?: string | undefined;
|
4973
4972
|
bgColor?: string | undefined;
|
4973
|
+
iconColor?: string | boolean | undefined;
|
4974
4974
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4975
4975
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4976
4976
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4977
4977
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4978
4978
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4979
4979
|
centerAffix?: boolean | undefined;
|
4980
|
-
iconColor?: string | boolean | undefined;
|
4981
4980
|
} & {
|
4982
4981
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4983
4982
|
}, {
|
@@ -5081,13 +5080,13 @@ export declare const VDateInput: {
|
|
5081
5080
|
rounded?: string | number | boolean | undefined;
|
5082
5081
|
baseColor?: string | undefined;
|
5083
5082
|
bgColor?: string | undefined;
|
5083
|
+
iconColor?: string | boolean | undefined;
|
5084
5084
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5085
5085
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5086
5086
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5087
5087
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5088
5088
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5089
5089
|
centerAffix?: boolean | undefined;
|
5090
|
-
iconColor?: string | boolean | undefined;
|
5091
5090
|
} & {
|
5092
5091
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5093
5092
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5096,7 +5095,7 @@ export declare const VDateInput: {
|
|
5096
5095
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5097
5096
|
modelValue?: unknown;
|
5098
5097
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5099
|
-
}, 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" | "
|
5098
|
+
}, 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}`> & {
|
5100
5099
|
_allExposed: {
|
5101
5100
|
reset: () => Promise<void>;
|
5102
5101
|
resetValidation: () => Promise<void>;
|
@@ -5128,7 +5127,6 @@ export declare const VDateInput: {
|
|
5128
5127
|
readonly: boolean | null;
|
5129
5128
|
tag: string | import("../../util/index.js").JSXComponent;
|
5130
5129
|
landscape: boolean;
|
5131
|
-
placeholder: string;
|
5132
5130
|
messages: string | readonly string[];
|
5133
5131
|
rules: readonly import("../../types.js").ValidationRule[];
|
5134
5132
|
focused: boolean;
|
@@ -5190,7 +5188,6 @@ export declare const VDateInput: {
|
|
5190
5188
|
readonly: boolean | null;
|
5191
5189
|
tag: string | import("../../util/index.js").JSXComponent;
|
5192
5190
|
landscape: boolean;
|
5193
|
-
placeholder: string;
|
5194
5191
|
messages: string | readonly string[];
|
5195
5192
|
rules: readonly import("../../types.js").ValidationRule[];
|
5196
5193
|
focused: boolean;
|
@@ -5249,6 +5246,7 @@ export declare const VDateInput: {
|
|
5249
5246
|
year?: number | undefined;
|
5250
5247
|
class?: any;
|
5251
5248
|
theme?: string | undefined;
|
5249
|
+
placeholder?: string | undefined;
|
5252
5250
|
elevation?: string | number | undefined;
|
5253
5251
|
counter?: string | number | boolean | undefined;
|
5254
5252
|
mobileBreakpoint?: number | import("../../composables/display.js").DisplayBreakpoint | undefined;
|
@@ -5262,6 +5260,7 @@ export declare const VDateInput: {
|
|
5262
5260
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5263
5261
|
controlHeight?: string | number | undefined;
|
5264
5262
|
headerColor?: string | undefined;
|
5263
|
+
iconColor?: string | boolean | undefined;
|
5265
5264
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5266
5265
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5267
5266
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5270,7 +5269,6 @@ export declare const VDateInput: {
|
|
5270
5269
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5271
5270
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5272
5271
|
centerAffix?: boolean | undefined;
|
5273
|
-
iconColor?: string | boolean | undefined;
|
5274
5272
|
hint?: string | undefined;
|
5275
5273
|
hideDetails?: boolean | "auto" | undefined;
|
5276
5274
|
suffix?: string | undefined;
|
@@ -5278,8 +5276,8 @@ export declare const VDateInput: {
|
|
5278
5276
|
modelModifiers?: Record<string, boolean> | undefined;
|
5279
5277
|
firstDayOfWeek?: string | number | undefined;
|
5280
5278
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
5279
|
+
inputFormat?: string | undefined;
|
5281
5280
|
displayFormat?: string | Function | undefined;
|
5282
|
-
inputFormat?: string | Function | undefined;
|
5283
5281
|
} & {
|
5284
5282
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
5285
5283
|
message?: ((arg: import("../../components/VMessages/VMessages.js").VMessageSlot) => import("vue").VNodeChild) | undefined;
|
@@ -5428,6 +5426,7 @@ export declare const VDateInput: {
|
|
5428
5426
|
bgColor?: string | undefined;
|
5429
5427
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5430
5428
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5429
|
+
iconColor?: string | boolean | undefined;
|
5431
5430
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5432
5431
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5433
5432
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5436,7 +5435,6 @@ export declare const VDateInput: {
|
|
5436
5435
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5437
5436
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5438
5437
|
centerAffix?: boolean | undefined;
|
5439
|
-
iconColor?: string | boolean | undefined;
|
5440
5438
|
hint?: string | undefined;
|
5441
5439
|
hideDetails?: boolean | "auto" | undefined;
|
5442
5440
|
suffix?: string | undefined;
|
@@ -5580,6 +5578,7 @@ export declare const VDateInput: {
|
|
5580
5578
|
bgColor?: string | undefined;
|
5581
5579
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5582
5580
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5581
|
+
iconColor?: string | boolean | undefined;
|
5583
5582
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5584
5583
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5585
5584
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5588,7 +5587,6 @@ export declare const VDateInput: {
|
|
5588
5587
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5589
5588
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5590
5589
|
centerAffix?: boolean | undefined;
|
5591
|
-
iconColor?: string | boolean | undefined;
|
5592
5590
|
hint?: string | undefined;
|
5593
5591
|
hideDetails?: boolean | "auto" | undefined;
|
5594
5592
|
suffix?: string | undefined;
|
@@ -5703,9 +5701,9 @@ export declare const VDateInput: {
|
|
5703
5701
|
baseColor?: string | undefined;
|
5704
5702
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5705
5703
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5704
|
+
iconColor?: string | boolean | undefined;
|
5706
5705
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5707
5706
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5708
|
-
iconColor?: string | boolean | undefined;
|
5709
5707
|
hint?: string | undefined;
|
5710
5708
|
hideDetails?: boolean | "auto" | undefined;
|
5711
5709
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5759,9 +5757,9 @@ export declare const VDateInput: {
|
|
5759
5757
|
baseColor?: string | undefined;
|
5760
5758
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5761
5759
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5760
|
+
iconColor?: string | boolean | undefined;
|
5762
5761
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5763
5762
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5764
|
-
iconColor?: string | boolean | undefined;
|
5765
5763
|
hint?: string | undefined;
|
5766
5764
|
hideDetails?: boolean | "auto" | undefined;
|
5767
5765
|
} & {}, {
|
@@ -5862,9 +5860,9 @@ export declare const VDateInput: {
|
|
5862
5860
|
baseColor?: string | undefined;
|
5863
5861
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5864
5862
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5863
|
+
iconColor?: string | boolean | undefined;
|
5865
5864
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5866
5865
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5867
|
-
iconColor?: string | boolean | undefined;
|
5868
5866
|
hint?: string | undefined;
|
5869
5867
|
hideDetails?: boolean | "auto" | undefined;
|
5870
5868
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5876,7 +5874,7 @@ export declare const VDateInput: {
|
|
5876
5874
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5877
5875
|
modelValue?: unknown;
|
5878
5876
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5879
|
-
}, 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" | "
|
5877
|
+
}, 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<{
|
5880
5878
|
$: import("vue").ComponentInternalInstance;
|
5881
5879
|
$data: {};
|
5882
5880
|
$props: Partial<{
|
@@ -5923,13 +5921,13 @@ export declare const VDateInput: {
|
|
5923
5921
|
rounded?: string | number | boolean | undefined;
|
5924
5922
|
baseColor?: string | undefined;
|
5925
5923
|
bgColor?: string | undefined;
|
5924
|
+
iconColor?: string | boolean | undefined;
|
5926
5925
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5927
5926
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5928
5927
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5929
5928
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5930
5929
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5931
5930
|
centerAffix?: boolean | undefined;
|
5932
|
-
iconColor?: string | boolean | undefined;
|
5933
5931
|
} & 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">;
|
5934
5932
|
$attrs: {
|
5935
5933
|
[x: string]: unknown;
|
@@ -5982,13 +5980,13 @@ export declare const VDateInput: {
|
|
5982
5980
|
rounded?: string | number | boolean | undefined;
|
5983
5981
|
baseColor?: string | undefined;
|
5984
5982
|
bgColor?: string | undefined;
|
5983
|
+
iconColor?: string | boolean | undefined;
|
5985
5984
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5986
5985
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5987
5986
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5988
5987
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5989
5988
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5990
5989
|
centerAffix?: boolean | undefined;
|
5991
|
-
iconColor?: string | boolean | undefined;
|
5992
5990
|
} & {
|
5993
5991
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5994
5992
|
}, {
|
@@ -6092,13 +6090,13 @@ export declare const VDateInput: {
|
|
6092
6090
|
rounded?: string | number | boolean | undefined;
|
6093
6091
|
baseColor?: string | undefined;
|
6094
6092
|
bgColor?: string | undefined;
|
6093
|
+
iconColor?: string | boolean | undefined;
|
6095
6094
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6096
6095
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6097
6096
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6098
6097
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6099
6098
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6100
6099
|
centerAffix?: boolean | undefined;
|
6101
|
-
iconColor?: string | boolean | undefined;
|
6102
6100
|
} & {
|
6103
6101
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6104
6102
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6107,7 +6105,7 @@ export declare const VDateInput: {
|
|
6107
6105
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6108
6106
|
modelValue?: unknown;
|
6109
6107
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6110
|
-
}, 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" | "
|
6108
|
+
}, 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}`> & {
|
6111
6109
|
_allExposed: {
|
6112
6110
|
reset: () => Promise<void>;
|
6113
6111
|
resetValidation: () => Promise<void>;
|
@@ -6275,6 +6273,7 @@ export declare const VDateInput: {
|
|
6275
6273
|
bgColor?: string | undefined;
|
6276
6274
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6277
6275
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6276
|
+
iconColor?: string | boolean | undefined;
|
6278
6277
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6279
6278
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6280
6279
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6283,7 +6282,6 @@ export declare const VDateInput: {
|
|
6283
6282
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6284
6283
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6285
6284
|
centerAffix?: boolean | undefined;
|
6286
|
-
iconColor?: string | boolean | undefined;
|
6287
6285
|
hint?: string | undefined;
|
6288
6286
|
hideDetails?: boolean | "auto" | undefined;
|
6289
6287
|
suffix?: string | undefined;
|
@@ -6398,9 +6396,9 @@ export declare const VDateInput: {
|
|
6398
6396
|
baseColor?: string | undefined;
|
6399
6397
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6400
6398
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6399
|
+
iconColor?: string | boolean | undefined;
|
6401
6400
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6402
6401
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6403
|
-
iconColor?: string | boolean | undefined;
|
6404
6402
|
hint?: string | undefined;
|
6405
6403
|
hideDetails?: boolean | "auto" | undefined;
|
6406
6404
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6454,9 +6452,9 @@ export declare const VDateInput: {
|
|
6454
6452
|
baseColor?: string | undefined;
|
6455
6453
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6456
6454
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6455
|
+
iconColor?: string | boolean | undefined;
|
6457
6456
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6458
6457
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6459
|
-
iconColor?: string | boolean | undefined;
|
6460
6458
|
hint?: string | undefined;
|
6461
6459
|
hideDetails?: boolean | "auto" | undefined;
|
6462
6460
|
} & {}, {
|
@@ -6557,9 +6555,9 @@ export declare const VDateInput: {
|
|
6557
6555
|
baseColor?: string | undefined;
|
6558
6556
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6559
6557
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6558
|
+
iconColor?: string | boolean | undefined;
|
6560
6559
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6561
6560
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6562
|
-
iconColor?: string | boolean | undefined;
|
6563
6561
|
hint?: string | undefined;
|
6564
6562
|
hideDetails?: boolean | "auto" | undefined;
|
6565
6563
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6571,7 +6569,7 @@ export declare const VDateInput: {
|
|
6571
6569
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6572
6570
|
modelValue?: unknown;
|
6573
6571
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6574
|
-
}, 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" | "
|
6572
|
+
}, 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<{
|
6575
6573
|
$: import("vue").ComponentInternalInstance;
|
6576
6574
|
$data: {};
|
6577
6575
|
$props: Partial<{
|
@@ -6618,13 +6616,13 @@ export declare const VDateInput: {
|
|
6618
6616
|
rounded?: string | number | boolean | undefined;
|
6619
6617
|
baseColor?: string | undefined;
|
6620
6618
|
bgColor?: string | undefined;
|
6619
|
+
iconColor?: string | boolean | undefined;
|
6621
6620
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6622
6621
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6623
6622
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6624
6623
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6625
6624
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6626
6625
|
centerAffix?: boolean | undefined;
|
6627
|
-
iconColor?: string | boolean | undefined;
|
6628
6626
|
} & 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">;
|
6629
6627
|
$attrs: {
|
6630
6628
|
[x: string]: unknown;
|
@@ -6677,13 +6675,13 @@ export declare const VDateInput: {
|
|
6677
6675
|
rounded?: string | number | boolean | undefined;
|
6678
6676
|
baseColor?: string | undefined;
|
6679
6677
|
bgColor?: string | undefined;
|
6678
|
+
iconColor?: string | boolean | undefined;
|
6680
6679
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6681
6680
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6682
6681
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6683
6682
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6684
6683
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6685
6684
|
centerAffix?: boolean | undefined;
|
6686
|
-
iconColor?: string | boolean | undefined;
|
6687
6685
|
} & {
|
6688
6686
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6689
6687
|
}, {
|
@@ -6787,13 +6785,13 @@ export declare const VDateInput: {
|
|
6787
6785
|
rounded?: string | number | boolean | undefined;
|
6788
6786
|
baseColor?: string | undefined;
|
6789
6787
|
bgColor?: string | undefined;
|
6788
|
+
iconColor?: string | boolean | undefined;
|
6790
6789
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6791
6790
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6792
6791
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6793
6792
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6794
6793
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6795
6794
|
centerAffix?: boolean | undefined;
|
6796
|
-
iconColor?: string | boolean | undefined;
|
6797
6795
|
} & {
|
6798
6796
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6799
6797
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6802,7 +6800,7 @@ export declare const VDateInput: {
|
|
6802
6800
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6803
6801
|
modelValue?: unknown;
|
6804
6802
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6805
|
-
}, 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" | "
|
6803
|
+
}, 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}`> & {
|
6806
6804
|
_allExposed: {
|
6807
6805
|
reset: () => Promise<void>;
|
6808
6806
|
resetValidation: () => Promise<void>;
|
@@ -6813,7 +6811,7 @@ export declare const VDateInput: {
|
|
6813
6811
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6814
6812
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6815
6813
|
} | {};
|
6816
|
-
}> & {} & 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" | "
|
6814
|
+
}> & {} & 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}`> & {
|
6817
6815
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6818
6816
|
$: import("vue").ComponentInternalInstance;
|
6819
6817
|
$data: {};
|
@@ -6864,9 +6862,9 @@ export declare const VDateInput: {
|
|
6864
6862
|
baseColor?: string | undefined;
|
6865
6863
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6866
6864
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6865
|
+
iconColor?: string | boolean | undefined;
|
6867
6866
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6868
6867
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6869
|
-
iconColor?: string | boolean | undefined;
|
6870
6868
|
hint?: string | undefined;
|
6871
6869
|
hideDetails?: boolean | "auto" | undefined;
|
6872
6870
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -6920,9 +6918,9 @@ export declare const VDateInput: {
|
|
6920
6918
|
baseColor?: string | undefined;
|
6921
6919
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6922
6920
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6921
|
+
iconColor?: string | boolean | undefined;
|
6923
6922
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6924
6923
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6925
|
-
iconColor?: string | boolean | undefined;
|
6926
6924
|
hint?: string | undefined;
|
6927
6925
|
hideDetails?: boolean | "auto" | undefined;
|
6928
6926
|
} & {}, {
|
@@ -7023,9 +7021,9 @@ export declare const VDateInput: {
|
|
7023
7021
|
baseColor?: string | undefined;
|
7024
7022
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7025
7023
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7024
|
+
iconColor?: string | boolean | undefined;
|
7026
7025
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7027
7026
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7028
|
-
iconColor?: string | boolean | undefined;
|
7029
7027
|
hint?: string | undefined;
|
7030
7028
|
hideDetails?: boolean | "auto" | undefined;
|
7031
7029
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7037,7 +7035,7 @@ export declare const VDateInput: {
|
|
7037
7035
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7038
7036
|
modelValue?: unknown;
|
7039
7037
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7040
|
-
}, 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" | "
|
7038
|
+
}, 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<{
|
7041
7039
|
$: import("vue").ComponentInternalInstance;
|
7042
7040
|
$data: {};
|
7043
7041
|
$props: Partial<{
|
@@ -7084,13 +7082,13 @@ export declare const VDateInput: {
|
|
7084
7082
|
rounded?: string | number | boolean | undefined;
|
7085
7083
|
baseColor?: string | undefined;
|
7086
7084
|
bgColor?: string | undefined;
|
7085
|
+
iconColor?: string | boolean | undefined;
|
7087
7086
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7088
7087
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7089
7088
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7090
7089
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7091
7090
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7092
7091
|
centerAffix?: boolean | undefined;
|
7093
|
-
iconColor?: string | boolean | undefined;
|
7094
7092
|
} & 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">;
|
7095
7093
|
$attrs: {
|
7096
7094
|
[x: string]: unknown;
|
@@ -7143,13 +7141,13 @@ export declare const VDateInput: {
|
|
7143
7141
|
rounded?: string | number | boolean | undefined;
|
7144
7142
|
baseColor?: string | undefined;
|
7145
7143
|
bgColor?: string | undefined;
|
7144
|
+
iconColor?: string | boolean | undefined;
|
7146
7145
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7147
7146
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7148
7147
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7149
7148
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7150
7149
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7151
7150
|
centerAffix?: boolean | undefined;
|
7152
|
-
iconColor?: string | boolean | undefined;
|
7153
7151
|
} & {
|
7154
7152
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7155
7153
|
}, {
|
@@ -7253,13 +7251,13 @@ export declare const VDateInput: {
|
|
7253
7251
|
rounded?: string | number | boolean | undefined;
|
7254
7252
|
baseColor?: string | undefined;
|
7255
7253
|
bgColor?: string | undefined;
|
7254
|
+
iconColor?: string | boolean | undefined;
|
7256
7255
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7257
7256
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7258
7257
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7259
7258
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7260
7259
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7261
7260
|
centerAffix?: boolean | undefined;
|
7262
|
-
iconColor?: string | boolean | undefined;
|
7263
7261
|
} & {
|
7264
7262
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7265
7263
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7268,7 +7266,7 @@ export declare const VDateInput: {
|
|
7268
7266
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7269
7267
|
modelValue?: unknown;
|
7270
7268
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7271
|
-
}, 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" | "
|
7269
|
+
}, 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}`> & {
|
7272
7270
|
_allExposed: {
|
7273
7271
|
reset: () => Promise<void>;
|
7274
7272
|
resetValidation: () => Promise<void>;
|
@@ -7305,7 +7303,6 @@ export declare const VDateInput: {
|
|
7305
7303
|
readonly: boolean | null;
|
7306
7304
|
tag: string | import("../../util/index.js").JSXComponent;
|
7307
7305
|
landscape: boolean;
|
7308
|
-
placeholder: string;
|
7309
7306
|
messages: string | readonly string[];
|
7310
7307
|
rules: readonly import("../../types.js").ValidationRule[];
|
7311
7308
|
focused: boolean;
|
@@ -7549,10 +7546,7 @@ export declare const VDateInput: {
|
|
7549
7546
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
7550
7547
|
counterValue: PropType<number | ((value: any) => number)>;
|
7551
7548
|
prefix: StringConstructor;
|
7552
|
-
placeholder:
|
7553
|
-
type: PropType<string>;
|
7554
|
-
default: string;
|
7555
|
-
};
|
7549
|
+
placeholder: StringConstructor;
|
7556
7550
|
persistentPlaceholder: BooleanConstructor;
|
7557
7551
|
persistentCounter: BooleanConstructor;
|
7558
7552
|
suffix: StringConstructor;
|
@@ -7582,8 +7576,11 @@ export declare const VDateInput: {
|
|
7582
7576
|
default: NonNullable<boolean | null> | null;
|
7583
7577
|
};
|
7584
7578
|
mobileBreakpoint: PropType<number | import("../../composables/display.js").DisplayBreakpoint>;
|
7579
|
+
inputFormat: {
|
7580
|
+
type: StringConstructor;
|
7581
|
+
validator: (v: string) => boolean;
|
7582
|
+
};
|
7585
7583
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
7586
|
-
inputFormat: (FunctionConstructor | StringConstructor)[];
|
7587
7584
|
location: {
|
7588
7585
|
type: PropType<StrategyProps["location"]>;
|
7589
7586
|
default: string;
|
@@ -7781,10 +7778,7 @@ export declare const VDateInput: {
|
|
7781
7778
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
7782
7779
|
counterValue: PropType<number | ((value: any) => number)>;
|
7783
7780
|
prefix: StringConstructor;
|
7784
|
-
placeholder:
|
7785
|
-
type: PropType<string>;
|
7786
|
-
default: string;
|
7787
|
-
};
|
7781
|
+
placeholder: StringConstructor;
|
7788
7782
|
persistentPlaceholder: BooleanConstructor;
|
7789
7783
|
persistentCounter: BooleanConstructor;
|
7790
7784
|
suffix: StringConstructor;
|
@@ -7814,8 +7808,11 @@ export declare const VDateInput: {
|
|
7814
7808
|
default: NonNullable<boolean | null> | null;
|
7815
7809
|
};
|
7816
7810
|
mobileBreakpoint: PropType<number | import("../../composables/display.js").DisplayBreakpoint>;
|
7811
|
+
inputFormat: {
|
7812
|
+
type: StringConstructor;
|
7813
|
+
validator: (v: string) => boolean;
|
7814
|
+
};
|
7817
7815
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
7818
|
-
inputFormat: (FunctionConstructor | StringConstructor)[];
|
7819
7816
|
location: {
|
7820
7817
|
type: PropType<StrategyProps["location"]>;
|
7821
7818
|
default: string;
|