@vuetify/nightly 3.8.4-master.2025-05-12 → 3.8.5-dev.2025-05-14
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 +20 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2152 -1792
- package/dist/json/importMap-labs.json +40 -36
- package/dist/json/importMap.json +106 -106
- package/dist/json/tags.json +95 -0
- package/dist/json/web-types.json +5016 -3760
- package/dist/vuetify-labs.cjs +429 -61
- package/dist/vuetify-labs.css +4205 -4149
- package/dist/vuetify-labs.d.ts +2274 -1142
- package/dist/vuetify-labs.esm.js +430 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +429 -61
- 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 +4725 -4672
- package/dist/vuetify.d.ts +544 -487
- 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/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 +51 -43
- 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 +133 -108
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- 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 +2 -1
@@ -114,8 +114,10 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
114
114
|
hideActions?: unknown;
|
115
115
|
mobile?: unknown;
|
116
116
|
mobileBreakpoint?: unknown;
|
117
|
+
inputFormat?: unknown;
|
117
118
|
displayFormat?: unknown;
|
118
119
|
location?: unknown;
|
120
|
+
menu?: unknown;
|
119
121
|
updateOn?: unknown;
|
120
122
|
} = {}>(defaults?: Defaults | undefined) => {
|
121
123
|
max: unknown extends Defaults["max"] ? PropType<unknown> : {
|
@@ -674,13 +676,7 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
674
676
|
type: PropType<unknown extends Defaults["prefix"] ? string : string | Defaults["prefix"]>;
|
675
677
|
default: unknown extends Defaults["prefix"] ? string : string | Defaults["prefix"];
|
676
678
|
};
|
677
|
-
placeholder: unknown extends Defaults["placeholder"] ? {
|
678
|
-
type: PropType<string>;
|
679
|
-
default: string;
|
680
|
-
} : Omit<{
|
681
|
-
type: PropType<string>;
|
682
|
-
default: string;
|
683
|
-
}, "type" | "default"> & {
|
679
|
+
placeholder: unknown extends Defaults["placeholder"] ? StringConstructor : {
|
684
680
|
type: PropType<unknown extends Defaults["placeholder"] ? string : string | Defaults["placeholder"]>;
|
685
681
|
default: unknown extends Defaults["placeholder"] ? string : string | Defaults["placeholder"];
|
686
682
|
};
|
@@ -764,6 +760,16 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
764
760
|
type: PropType<unknown extends Defaults["mobileBreakpoint"] ? number | import("../../composables/display.js").DisplayBreakpoint : number | import("../../composables/display.js").DisplayBreakpoint | Defaults["mobileBreakpoint"]>;
|
765
761
|
default: unknown extends Defaults["mobileBreakpoint"] ? number | import("../../composables/display.js").DisplayBreakpoint : NonNullable<number | import("../../composables/display.js").DisplayBreakpoint> | Defaults["mobileBreakpoint"];
|
766
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
|
+
};
|
767
773
|
displayFormat: unknown extends Defaults["displayFormat"] ? (FunctionConstructor | StringConstructor)[] : {
|
768
774
|
type: PropType<unknown extends Defaults["displayFormat"] ? string | Function : string | Function | Defaults["displayFormat"]>;
|
769
775
|
default: unknown extends Defaults["displayFormat"] ? string | Function : NonNullable<string | Function> | Defaults["displayFormat"];
|
@@ -778,6 +784,10 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
778
784
|
type: PropType<unknown extends Defaults["location"] ? import("../../util/index.js").Anchor : import("../../util/index.js").Anchor | Defaults["location"]>;
|
779
785
|
default: unknown extends Defaults["location"] ? import("../../util/index.js").Anchor : NonNullable<import("../../util/index.js").Anchor> | Defaults["location"];
|
780
786
|
};
|
787
|
+
menu: unknown extends Defaults["menu"] ? BooleanConstructor : {
|
788
|
+
type: PropType<unknown extends Defaults["menu"] ? boolean : boolean | Defaults["menu"]>;
|
789
|
+
default: unknown extends Defaults["menu"] ? boolean : boolean | Defaults["menu"];
|
790
|
+
};
|
781
791
|
updateOn: unknown extends Defaults["updateOn"] ? {
|
782
792
|
type: PropType<("blur" | "enter")[]>;
|
783
793
|
default: () => string[];
|
@@ -801,6 +811,7 @@ export declare const VDateInput: {
|
|
801
811
|
direction: "horizontal" | "vertical";
|
802
812
|
transition: string;
|
803
813
|
header: string;
|
814
|
+
menu: boolean;
|
804
815
|
style: import("vue").StyleValue;
|
805
816
|
title: string;
|
806
817
|
autofocus: boolean;
|
@@ -809,7 +820,6 @@ export declare const VDateInput: {
|
|
809
820
|
readonly: boolean | null;
|
810
821
|
tag: string | import("../../util/index.js").JSXComponent;
|
811
822
|
landscape: boolean;
|
812
|
-
placeholder: string;
|
813
823
|
messages: string | readonly string[];
|
814
824
|
rules: readonly import("../../types.js").ValidationRule[];
|
815
825
|
focused: boolean;
|
@@ -868,6 +878,7 @@ export declare const VDateInput: {
|
|
868
878
|
year?: number | undefined;
|
869
879
|
class?: any;
|
870
880
|
theme?: string | undefined;
|
881
|
+
placeholder?: string | undefined;
|
871
882
|
elevation?: string | number | undefined;
|
872
883
|
counter?: string | number | boolean | undefined;
|
873
884
|
mobileBreakpoint?: number | import("../../composables/display.js").DisplayBreakpoint | undefined;
|
@@ -881,6 +892,7 @@ export declare const VDateInput: {
|
|
881
892
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
882
893
|
controlHeight?: string | number | undefined;
|
883
894
|
headerColor?: string | undefined;
|
895
|
+
iconColor?: string | boolean | undefined;
|
884
896
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
885
897
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
886
898
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -889,7 +901,6 @@ export declare const VDateInput: {
|
|
889
901
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
890
902
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
891
903
|
centerAffix?: boolean | undefined;
|
892
|
-
iconColor?: string | boolean | undefined;
|
893
904
|
hint?: string | undefined;
|
894
905
|
hideDetails?: boolean | "auto" | undefined;
|
895
906
|
suffix?: string | undefined;
|
@@ -897,6 +908,7 @@ export declare const VDateInput: {
|
|
897
908
|
modelModifiers?: Record<string, boolean> | undefined;
|
898
909
|
firstDayOfWeek?: string | number | undefined;
|
899
910
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
911
|
+
inputFormat?: string | undefined;
|
900
912
|
displayFormat?: string | Function | undefined;
|
901
913
|
} & {
|
902
914
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
@@ -958,6 +970,7 @@ export declare const VDateInput: {
|
|
958
970
|
} & {
|
959
971
|
onCancel?: (() => any) | undefined;
|
960
972
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
973
|
+
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
961
974
|
onSave?: ((value: string) => any) | undefined;
|
962
975
|
}, Omit<Omit<{
|
963
976
|
$: import("vue").ComponentInternalInstance;
|
@@ -1045,6 +1058,7 @@ export declare const VDateInput: {
|
|
1045
1058
|
bgColor?: string | undefined;
|
1046
1059
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1047
1060
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1061
|
+
iconColor?: string | boolean | undefined;
|
1048
1062
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1049
1063
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1050
1064
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1053,7 +1067,6 @@ export declare const VDateInput: {
|
|
1053
1067
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1054
1068
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1055
1069
|
centerAffix?: boolean | undefined;
|
1056
|
-
iconColor?: string | boolean | undefined;
|
1057
1070
|
hint?: string | undefined;
|
1058
1071
|
hideDetails?: boolean | "auto" | undefined;
|
1059
1072
|
suffix?: string | undefined;
|
@@ -1197,6 +1210,7 @@ export declare const VDateInput: {
|
|
1197
1210
|
bgColor?: string | undefined;
|
1198
1211
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1199
1212
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1213
|
+
iconColor?: string | boolean | undefined;
|
1200
1214
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1201
1215
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1202
1216
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1205,7 +1219,6 @@ export declare const VDateInput: {
|
|
1205
1219
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1206
1220
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1207
1221
|
centerAffix?: boolean | undefined;
|
1208
|
-
iconColor?: string | boolean | undefined;
|
1209
1222
|
hint?: string | undefined;
|
1210
1223
|
hideDetails?: boolean | "auto" | undefined;
|
1211
1224
|
suffix?: string | undefined;
|
@@ -1320,9 +1333,9 @@ export declare const VDateInput: {
|
|
1320
1333
|
baseColor?: string | undefined;
|
1321
1334
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1322
1335
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1336
|
+
iconColor?: string | boolean | undefined;
|
1323
1337
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1324
1338
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1325
|
-
iconColor?: string | boolean | undefined;
|
1326
1339
|
hint?: string | undefined;
|
1327
1340
|
hideDetails?: boolean | "auto" | undefined;
|
1328
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">;
|
@@ -1376,9 +1389,9 @@ export declare const VDateInput: {
|
|
1376
1389
|
baseColor?: string | undefined;
|
1377
1390
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1378
1391
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1392
|
+
iconColor?: string | boolean | undefined;
|
1379
1393
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1380
1394
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1381
|
-
iconColor?: string | boolean | undefined;
|
1382
1395
|
hint?: string | undefined;
|
1383
1396
|
hideDetails?: boolean | "auto" | undefined;
|
1384
1397
|
} & {}, {
|
@@ -1479,9 +1492,9 @@ export declare const VDateInput: {
|
|
1479
1492
|
baseColor?: string | undefined;
|
1480
1493
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1481
1494
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1495
|
+
iconColor?: string | boolean | undefined;
|
1482
1496
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1483
1497
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1484
|
-
iconColor?: string | boolean | undefined;
|
1485
1498
|
hint?: string | undefined;
|
1486
1499
|
hideDetails?: boolean | "auto" | undefined;
|
1487
1500
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1493,7 +1506,7 @@ export declare const VDateInput: {
|
|
1493
1506
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1494
1507
|
modelValue?: unknown;
|
1495
1508
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1496
|
-
}, 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<{
|
1497
1510
|
$: import("vue").ComponentInternalInstance;
|
1498
1511
|
$data: {};
|
1499
1512
|
$props: Partial<{
|
@@ -1540,13 +1553,13 @@ export declare const VDateInput: {
|
|
1540
1553
|
rounded?: string | number | boolean | undefined;
|
1541
1554
|
baseColor?: string | undefined;
|
1542
1555
|
bgColor?: string | undefined;
|
1556
|
+
iconColor?: string | boolean | undefined;
|
1543
1557
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1544
1558
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1545
1559
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1546
1560
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1547
1561
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1548
1562
|
centerAffix?: boolean | undefined;
|
1549
|
-
iconColor?: string | boolean | undefined;
|
1550
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">;
|
1551
1564
|
$attrs: {
|
1552
1565
|
[x: string]: unknown;
|
@@ -1599,13 +1612,13 @@ export declare const VDateInput: {
|
|
1599
1612
|
rounded?: string | number | boolean | undefined;
|
1600
1613
|
baseColor?: string | undefined;
|
1601
1614
|
bgColor?: string | undefined;
|
1615
|
+
iconColor?: string | boolean | undefined;
|
1602
1616
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1603
1617
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1604
1618
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1605
1619
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1606
1620
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1607
1621
|
centerAffix?: boolean | undefined;
|
1608
|
-
iconColor?: string | boolean | undefined;
|
1609
1622
|
} & {
|
1610
1623
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1611
1624
|
}, {
|
@@ -1709,13 +1722,13 @@ export declare const VDateInput: {
|
|
1709
1722
|
rounded?: string | number | boolean | undefined;
|
1710
1723
|
baseColor?: string | undefined;
|
1711
1724
|
bgColor?: string | undefined;
|
1725
|
+
iconColor?: string | boolean | undefined;
|
1712
1726
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1713
1727
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1714
1728
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1715
1729
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1716
1730
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1717
1731
|
centerAffix?: boolean | undefined;
|
1718
|
-
iconColor?: string | boolean | undefined;
|
1719
1732
|
} & {
|
1720
1733
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1721
1734
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1724,7 +1737,7 @@ export declare const VDateInput: {
|
|
1724
1737
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1725
1738
|
modelValue?: unknown;
|
1726
1739
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1727
|
-
}, 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}`> & {
|
1728
1741
|
_allExposed: {
|
1729
1742
|
reset: () => Promise<void>;
|
1730
1743
|
resetValidation: () => Promise<void>;
|
@@ -1892,6 +1905,7 @@ export declare const VDateInput: {
|
|
1892
1905
|
bgColor?: string | undefined;
|
1893
1906
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1894
1907
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1908
|
+
iconColor?: string | boolean | undefined;
|
1895
1909
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1896
1910
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1897
1911
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1900,7 +1914,6 @@ export declare const VDateInput: {
|
|
1900
1914
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1901
1915
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1902
1916
|
centerAffix?: boolean | undefined;
|
1903
|
-
iconColor?: string | boolean | undefined;
|
1904
1917
|
hint?: string | undefined;
|
1905
1918
|
hideDetails?: boolean | "auto" | undefined;
|
1906
1919
|
suffix?: string | undefined;
|
@@ -2015,9 +2028,9 @@ export declare const VDateInput: {
|
|
2015
2028
|
baseColor?: string | undefined;
|
2016
2029
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2017
2030
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2031
|
+
iconColor?: string | boolean | undefined;
|
2018
2032
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2019
2033
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2020
|
-
iconColor?: string | boolean | undefined;
|
2021
2034
|
hint?: string | undefined;
|
2022
2035
|
hideDetails?: boolean | "auto" | undefined;
|
2023
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">;
|
@@ -2071,9 +2084,9 @@ export declare const VDateInput: {
|
|
2071
2084
|
baseColor?: string | undefined;
|
2072
2085
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2073
2086
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2087
|
+
iconColor?: string | boolean | undefined;
|
2074
2088
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2075
2089
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2076
|
-
iconColor?: string | boolean | undefined;
|
2077
2090
|
hint?: string | undefined;
|
2078
2091
|
hideDetails?: boolean | "auto" | undefined;
|
2079
2092
|
} & {}, {
|
@@ -2174,9 +2187,9 @@ export declare const VDateInput: {
|
|
2174
2187
|
baseColor?: string | undefined;
|
2175
2188
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2176
2189
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2190
|
+
iconColor?: string | boolean | undefined;
|
2177
2191
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2178
2192
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2179
|
-
iconColor?: string | boolean | undefined;
|
2180
2193
|
hint?: string | undefined;
|
2181
2194
|
hideDetails?: boolean | "auto" | undefined;
|
2182
2195
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2188,7 +2201,7 @@ export declare const VDateInput: {
|
|
2188
2201
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2189
2202
|
modelValue?: unknown;
|
2190
2203
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2191
|
-
}, 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<{
|
2192
2205
|
$: import("vue").ComponentInternalInstance;
|
2193
2206
|
$data: {};
|
2194
2207
|
$props: Partial<{
|
@@ -2235,13 +2248,13 @@ export declare const VDateInput: {
|
|
2235
2248
|
rounded?: string | number | boolean | undefined;
|
2236
2249
|
baseColor?: string | undefined;
|
2237
2250
|
bgColor?: string | undefined;
|
2251
|
+
iconColor?: string | boolean | undefined;
|
2238
2252
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2239
2253
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2240
2254
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2241
2255
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2242
2256
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2243
2257
|
centerAffix?: boolean | undefined;
|
2244
|
-
iconColor?: string | boolean | undefined;
|
2245
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">;
|
2246
2259
|
$attrs: {
|
2247
2260
|
[x: string]: unknown;
|
@@ -2294,13 +2307,13 @@ export declare const VDateInput: {
|
|
2294
2307
|
rounded?: string | number | boolean | undefined;
|
2295
2308
|
baseColor?: string | undefined;
|
2296
2309
|
bgColor?: string | undefined;
|
2310
|
+
iconColor?: string | boolean | undefined;
|
2297
2311
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2298
2312
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2299
2313
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2300
2314
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2301
2315
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2302
2316
|
centerAffix?: boolean | undefined;
|
2303
|
-
iconColor?: string | boolean | undefined;
|
2304
2317
|
} & {
|
2305
2318
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2306
2319
|
}, {
|
@@ -2404,13 +2417,13 @@ export declare const VDateInput: {
|
|
2404
2417
|
rounded?: string | number | boolean | undefined;
|
2405
2418
|
baseColor?: string | undefined;
|
2406
2419
|
bgColor?: string | undefined;
|
2420
|
+
iconColor?: string | boolean | undefined;
|
2407
2421
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2408
2422
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2409
2423
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2410
2424
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2411
2425
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2412
2426
|
centerAffix?: boolean | undefined;
|
2413
|
-
iconColor?: string | boolean | undefined;
|
2414
2427
|
} & {
|
2415
2428
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2416
2429
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2419,7 +2432,7 @@ export declare const VDateInput: {
|
|
2419
2432
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2420
2433
|
modelValue?: unknown;
|
2421
2434
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2422
|
-
}, 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}`> & {
|
2423
2436
|
_allExposed: {
|
2424
2437
|
reset: () => Promise<void>;
|
2425
2438
|
resetValidation: () => Promise<void>;
|
@@ -2430,7 +2443,7 @@ export declare const VDateInput: {
|
|
2430
2443
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
2431
2444
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
2432
2445
|
} | {};
|
2433
|
-
}> & {} & 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}`> & {
|
2434
2447
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
2435
2448
|
$: import("vue").ComponentInternalInstance;
|
2436
2449
|
$data: {};
|
@@ -2481,9 +2494,9 @@ export declare const VDateInput: {
|
|
2481
2494
|
baseColor?: string | undefined;
|
2482
2495
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2483
2496
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2497
|
+
iconColor?: string | boolean | undefined;
|
2484
2498
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2485
2499
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2486
|
-
iconColor?: string | boolean | undefined;
|
2487
2500
|
hint?: string | undefined;
|
2488
2501
|
hideDetails?: boolean | "auto" | undefined;
|
2489
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">;
|
@@ -2537,9 +2550,9 @@ export declare const VDateInput: {
|
|
2537
2550
|
baseColor?: string | undefined;
|
2538
2551
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2539
2552
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2553
|
+
iconColor?: string | boolean | undefined;
|
2540
2554
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2541
2555
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2542
|
-
iconColor?: string | boolean | undefined;
|
2543
2556
|
hint?: string | undefined;
|
2544
2557
|
hideDetails?: boolean | "auto" | undefined;
|
2545
2558
|
} & {}, {
|
@@ -2640,9 +2653,9 @@ export declare const VDateInput: {
|
|
2640
2653
|
baseColor?: string | undefined;
|
2641
2654
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2642
2655
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2656
|
+
iconColor?: string | boolean | undefined;
|
2643
2657
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2644
2658
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2645
|
-
iconColor?: string | boolean | undefined;
|
2646
2659
|
hint?: string | undefined;
|
2647
2660
|
hideDetails?: boolean | "auto" | undefined;
|
2648
2661
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2654,7 +2667,7 @@ export declare const VDateInput: {
|
|
2654
2667
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2655
2668
|
modelValue?: unknown;
|
2656
2669
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2657
|
-
}, 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<{
|
2658
2671
|
$: import("vue").ComponentInternalInstance;
|
2659
2672
|
$data: {};
|
2660
2673
|
$props: Partial<{
|
@@ -2701,13 +2714,13 @@ export declare const VDateInput: {
|
|
2701
2714
|
rounded?: string | number | boolean | undefined;
|
2702
2715
|
baseColor?: string | undefined;
|
2703
2716
|
bgColor?: string | undefined;
|
2717
|
+
iconColor?: string | boolean | undefined;
|
2704
2718
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2705
2719
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2706
2720
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2707
2721
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2708
2722
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2709
2723
|
centerAffix?: boolean | undefined;
|
2710
|
-
iconColor?: string | boolean | undefined;
|
2711
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">;
|
2712
2725
|
$attrs: {
|
2713
2726
|
[x: string]: unknown;
|
@@ -2760,13 +2773,13 @@ export declare const VDateInput: {
|
|
2760
2773
|
rounded?: string | number | boolean | undefined;
|
2761
2774
|
baseColor?: string | undefined;
|
2762
2775
|
bgColor?: string | undefined;
|
2776
|
+
iconColor?: string | boolean | undefined;
|
2763
2777
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2764
2778
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2765
2779
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2766
2780
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2767
2781
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2768
2782
|
centerAffix?: boolean | undefined;
|
2769
|
-
iconColor?: string | boolean | undefined;
|
2770
2783
|
} & {
|
2771
2784
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2772
2785
|
}, {
|
@@ -2870,13 +2883,13 @@ export declare const VDateInput: {
|
|
2870
2883
|
rounded?: string | number | boolean | undefined;
|
2871
2884
|
baseColor?: string | undefined;
|
2872
2885
|
bgColor?: string | undefined;
|
2886
|
+
iconColor?: string | boolean | undefined;
|
2873
2887
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2874
2888
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2875
2889
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2876
2890
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2877
2891
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2878
2892
|
centerAffix?: boolean | undefined;
|
2879
|
-
iconColor?: string | boolean | undefined;
|
2880
2893
|
} & {
|
2881
2894
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2882
2895
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2885,7 +2898,7 @@ export declare const VDateInput: {
|
|
2885
2898
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2886
2899
|
modelValue?: unknown;
|
2887
2900
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2888
|
-
}, 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}`> & {
|
2889
2902
|
_allExposed: {
|
2890
2903
|
reset: () => Promise<void>;
|
2891
2904
|
resetValidation: () => Promise<void>;
|
@@ -2901,6 +2914,7 @@ export declare const VDateInput: {
|
|
2901
2914
|
save: (value: string) => true;
|
2902
2915
|
cancel: () => true;
|
2903
2916
|
'update:modelValue': (val: string) => true;
|
2917
|
+
'update:menu': (val: boolean) => true;
|
2904
2918
|
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
|
2905
2919
|
flat: boolean;
|
2906
2920
|
reverse: boolean;
|
@@ -2912,6 +2926,7 @@ export declare const VDateInput: {
|
|
2912
2926
|
direction: "horizontal" | "vertical";
|
2913
2927
|
transition: string;
|
2914
2928
|
header: string;
|
2929
|
+
menu: boolean;
|
2915
2930
|
style: import("vue").StyleValue;
|
2916
2931
|
title: string;
|
2917
2932
|
autofocus: boolean;
|
@@ -2920,7 +2935,6 @@ export declare const VDateInput: {
|
|
2920
2935
|
readonly: boolean | null;
|
2921
2936
|
tag: string | import("../../util/index.js").JSXComponent;
|
2922
2937
|
landscape: boolean;
|
2923
|
-
placeholder: string;
|
2924
2938
|
messages: string | readonly string[];
|
2925
2939
|
rules: readonly import("../../types.js").ValidationRule[];
|
2926
2940
|
focused: boolean;
|
@@ -2994,6 +3008,7 @@ export declare const VDateInput: {
|
|
2994
3008
|
direction: "horizontal" | "vertical";
|
2995
3009
|
transition: string;
|
2996
3010
|
header: string;
|
3011
|
+
menu: boolean;
|
2997
3012
|
style: import("vue").StyleValue;
|
2998
3013
|
title: string;
|
2999
3014
|
autofocus: boolean;
|
@@ -3002,7 +3017,6 @@ export declare const VDateInput: {
|
|
3002
3017
|
readonly: boolean | null;
|
3003
3018
|
tag: string | import("../../util/index.js").JSXComponent;
|
3004
3019
|
landscape: boolean;
|
3005
|
-
placeholder: string;
|
3006
3020
|
messages: string | readonly string[];
|
3007
3021
|
rules: readonly import("../../types.js").ValidationRule[];
|
3008
3022
|
focused: boolean;
|
@@ -3061,6 +3075,7 @@ export declare const VDateInput: {
|
|
3061
3075
|
year?: number | undefined;
|
3062
3076
|
class?: any;
|
3063
3077
|
theme?: string | undefined;
|
3078
|
+
placeholder?: string | undefined;
|
3064
3079
|
elevation?: string | number | undefined;
|
3065
3080
|
counter?: string | number | boolean | undefined;
|
3066
3081
|
mobileBreakpoint?: number | import("../../composables/display.js").DisplayBreakpoint | undefined;
|
@@ -3074,6 +3089,7 @@ export declare const VDateInput: {
|
|
3074
3089
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3075
3090
|
controlHeight?: string | number | undefined;
|
3076
3091
|
headerColor?: string | undefined;
|
3092
|
+
iconColor?: string | boolean | undefined;
|
3077
3093
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3078
3094
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3079
3095
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3082,7 +3098,6 @@ export declare const VDateInput: {
|
|
3082
3098
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3083
3099
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3084
3100
|
centerAffix?: boolean | undefined;
|
3085
|
-
iconColor?: string | boolean | undefined;
|
3086
3101
|
hint?: string | undefined;
|
3087
3102
|
hideDetails?: boolean | "auto" | undefined;
|
3088
3103
|
suffix?: string | undefined;
|
@@ -3090,6 +3105,7 @@ export declare const VDateInput: {
|
|
3090
3105
|
modelModifiers?: Record<string, boolean> | undefined;
|
3091
3106
|
firstDayOfWeek?: string | number | undefined;
|
3092
3107
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
3108
|
+
inputFormat?: string | undefined;
|
3093
3109
|
displayFormat?: string | Function | undefined;
|
3094
3110
|
} & {
|
3095
3111
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
@@ -3151,6 +3167,7 @@ export declare const VDateInput: {
|
|
3151
3167
|
} & {
|
3152
3168
|
onCancel?: (() => any) | undefined;
|
3153
3169
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
3170
|
+
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
3154
3171
|
onSave?: ((value: string) => any) | undefined;
|
3155
3172
|
}, Omit<Omit<{
|
3156
3173
|
$: import("vue").ComponentInternalInstance;
|
@@ -3238,6 +3255,7 @@ export declare const VDateInput: {
|
|
3238
3255
|
bgColor?: string | undefined;
|
3239
3256
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3240
3257
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3258
|
+
iconColor?: string | boolean | undefined;
|
3241
3259
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3242
3260
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3243
3261
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3246,7 +3264,6 @@ export declare const VDateInput: {
|
|
3246
3264
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3247
3265
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3248
3266
|
centerAffix?: boolean | undefined;
|
3249
|
-
iconColor?: string | boolean | undefined;
|
3250
3267
|
hint?: string | undefined;
|
3251
3268
|
hideDetails?: boolean | "auto" | undefined;
|
3252
3269
|
suffix?: string | undefined;
|
@@ -3390,6 +3407,7 @@ export declare const VDateInput: {
|
|
3390
3407
|
bgColor?: string | undefined;
|
3391
3408
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3392
3409
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3410
|
+
iconColor?: string | boolean | undefined;
|
3393
3411
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3394
3412
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3395
3413
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3398,7 +3416,6 @@ export declare const VDateInput: {
|
|
3398
3416
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3399
3417
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3400
3418
|
centerAffix?: boolean | undefined;
|
3401
|
-
iconColor?: string | boolean | undefined;
|
3402
3419
|
hint?: string | undefined;
|
3403
3420
|
hideDetails?: boolean | "auto" | undefined;
|
3404
3421
|
suffix?: string | undefined;
|
@@ -3513,9 +3530,9 @@ export declare const VDateInput: {
|
|
3513
3530
|
baseColor?: string | undefined;
|
3514
3531
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3515
3532
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3533
|
+
iconColor?: string | boolean | undefined;
|
3516
3534
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3517
3535
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3518
|
-
iconColor?: string | boolean | undefined;
|
3519
3536
|
hint?: string | undefined;
|
3520
3537
|
hideDetails?: boolean | "auto" | undefined;
|
3521
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">;
|
@@ -3569,9 +3586,9 @@ export declare const VDateInput: {
|
|
3569
3586
|
baseColor?: string | undefined;
|
3570
3587
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3571
3588
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3589
|
+
iconColor?: string | boolean | undefined;
|
3572
3590
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3573
3591
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3574
|
-
iconColor?: string | boolean | undefined;
|
3575
3592
|
hint?: string | undefined;
|
3576
3593
|
hideDetails?: boolean | "auto" | undefined;
|
3577
3594
|
} & {}, {
|
@@ -3672,9 +3689,9 @@ export declare const VDateInput: {
|
|
3672
3689
|
baseColor?: string | undefined;
|
3673
3690
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3674
3691
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3692
|
+
iconColor?: string | boolean | undefined;
|
3675
3693
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3676
3694
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3677
|
-
iconColor?: string | boolean | undefined;
|
3678
3695
|
hint?: string | undefined;
|
3679
3696
|
hideDetails?: boolean | "auto" | undefined;
|
3680
3697
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3686,7 +3703,7 @@ export declare const VDateInput: {
|
|
3686
3703
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3687
3704
|
modelValue?: unknown;
|
3688
3705
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3689
|
-
}, 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<{
|
3690
3707
|
$: import("vue").ComponentInternalInstance;
|
3691
3708
|
$data: {};
|
3692
3709
|
$props: Partial<{
|
@@ -3733,13 +3750,13 @@ export declare const VDateInput: {
|
|
3733
3750
|
rounded?: string | number | boolean | undefined;
|
3734
3751
|
baseColor?: string | undefined;
|
3735
3752
|
bgColor?: string | undefined;
|
3753
|
+
iconColor?: string | boolean | undefined;
|
3736
3754
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3737
3755
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3738
3756
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3739
3757
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3740
3758
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3741
3759
|
centerAffix?: boolean | undefined;
|
3742
|
-
iconColor?: string | boolean | undefined;
|
3743
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">;
|
3744
3761
|
$attrs: {
|
3745
3762
|
[x: string]: unknown;
|
@@ -3792,13 +3809,13 @@ export declare const VDateInput: {
|
|
3792
3809
|
rounded?: string | number | boolean | undefined;
|
3793
3810
|
baseColor?: string | undefined;
|
3794
3811
|
bgColor?: string | undefined;
|
3812
|
+
iconColor?: string | boolean | undefined;
|
3795
3813
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3796
3814
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3797
3815
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3798
3816
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3799
3817
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3800
3818
|
centerAffix?: boolean | undefined;
|
3801
|
-
iconColor?: string | boolean | undefined;
|
3802
3819
|
} & {
|
3803
3820
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3804
3821
|
}, {
|
@@ -3902,13 +3919,13 @@ export declare const VDateInput: {
|
|
3902
3919
|
rounded?: string | number | boolean | undefined;
|
3903
3920
|
baseColor?: string | undefined;
|
3904
3921
|
bgColor?: string | undefined;
|
3922
|
+
iconColor?: string | boolean | undefined;
|
3905
3923
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3906
3924
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3907
3925
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3908
3926
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3909
3927
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3910
3928
|
centerAffix?: boolean | undefined;
|
3911
|
-
iconColor?: string | boolean | undefined;
|
3912
3929
|
} & {
|
3913
3930
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3914
3931
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3917,7 +3934,7 @@ export declare const VDateInput: {
|
|
3917
3934
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3918
3935
|
modelValue?: unknown;
|
3919
3936
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3920
|
-
}, 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}`> & {
|
3921
3938
|
_allExposed: {
|
3922
3939
|
reset: () => Promise<void>;
|
3923
3940
|
resetValidation: () => Promise<void>;
|
@@ -4085,6 +4102,7 @@ export declare const VDateInput: {
|
|
4085
4102
|
bgColor?: string | undefined;
|
4086
4103
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4087
4104
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4105
|
+
iconColor?: string | boolean | undefined;
|
4088
4106
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4089
4107
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4090
4108
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4093,7 +4111,6 @@ export declare const VDateInput: {
|
|
4093
4111
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4094
4112
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4095
4113
|
centerAffix?: boolean | undefined;
|
4096
|
-
iconColor?: string | boolean | undefined;
|
4097
4114
|
hint?: string | undefined;
|
4098
4115
|
hideDetails?: boolean | "auto" | undefined;
|
4099
4116
|
suffix?: string | undefined;
|
@@ -4208,9 +4225,9 @@ export declare const VDateInput: {
|
|
4208
4225
|
baseColor?: string | undefined;
|
4209
4226
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4210
4227
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4228
|
+
iconColor?: string | boolean | undefined;
|
4211
4229
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4212
4230
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4213
|
-
iconColor?: string | boolean | undefined;
|
4214
4231
|
hint?: string | undefined;
|
4215
4232
|
hideDetails?: boolean | "auto" | undefined;
|
4216
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">;
|
@@ -4264,9 +4281,9 @@ export declare const VDateInput: {
|
|
4264
4281
|
baseColor?: string | undefined;
|
4265
4282
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4266
4283
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4284
|
+
iconColor?: string | boolean | undefined;
|
4267
4285
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4268
4286
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4269
|
-
iconColor?: string | boolean | undefined;
|
4270
4287
|
hint?: string | undefined;
|
4271
4288
|
hideDetails?: boolean | "auto" | undefined;
|
4272
4289
|
} & {}, {
|
@@ -4367,9 +4384,9 @@ export declare const VDateInput: {
|
|
4367
4384
|
baseColor?: string | undefined;
|
4368
4385
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4369
4386
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4387
|
+
iconColor?: string | boolean | undefined;
|
4370
4388
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4371
4389
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4372
|
-
iconColor?: string | boolean | undefined;
|
4373
4390
|
hint?: string | undefined;
|
4374
4391
|
hideDetails?: boolean | "auto" | undefined;
|
4375
4392
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4381,7 +4398,7 @@ export declare const VDateInput: {
|
|
4381
4398
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4382
4399
|
modelValue?: unknown;
|
4383
4400
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4384
|
-
}, 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<{
|
4385
4402
|
$: import("vue").ComponentInternalInstance;
|
4386
4403
|
$data: {};
|
4387
4404
|
$props: Partial<{
|
@@ -4428,13 +4445,13 @@ export declare const VDateInput: {
|
|
4428
4445
|
rounded?: string | number | boolean | undefined;
|
4429
4446
|
baseColor?: string | undefined;
|
4430
4447
|
bgColor?: string | undefined;
|
4448
|
+
iconColor?: string | boolean | undefined;
|
4431
4449
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4432
4450
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4433
4451
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4434
4452
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4435
4453
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4436
4454
|
centerAffix?: boolean | undefined;
|
4437
|
-
iconColor?: string | boolean | undefined;
|
4438
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">;
|
4439
4456
|
$attrs: {
|
4440
4457
|
[x: string]: unknown;
|
@@ -4487,13 +4504,13 @@ export declare const VDateInput: {
|
|
4487
4504
|
rounded?: string | number | boolean | undefined;
|
4488
4505
|
baseColor?: string | undefined;
|
4489
4506
|
bgColor?: string | undefined;
|
4507
|
+
iconColor?: string | boolean | undefined;
|
4490
4508
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4491
4509
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4492
4510
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4493
4511
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4494
4512
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4495
4513
|
centerAffix?: boolean | undefined;
|
4496
|
-
iconColor?: string | boolean | undefined;
|
4497
4514
|
} & {
|
4498
4515
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4499
4516
|
}, {
|
@@ -4597,13 +4614,13 @@ export declare const VDateInput: {
|
|
4597
4614
|
rounded?: string | number | boolean | undefined;
|
4598
4615
|
baseColor?: string | undefined;
|
4599
4616
|
bgColor?: string | undefined;
|
4617
|
+
iconColor?: string | boolean | undefined;
|
4600
4618
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4601
4619
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4602
4620
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4603
4621
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4604
4622
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4605
4623
|
centerAffix?: boolean | undefined;
|
4606
|
-
iconColor?: string | boolean | undefined;
|
4607
4624
|
} & {
|
4608
4625
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4609
4626
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4612,7 +4629,7 @@ export declare const VDateInput: {
|
|
4612
4629
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4613
4630
|
modelValue?: unknown;
|
4614
4631
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4615
|
-
}, 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}`> & {
|
4616
4633
|
_allExposed: {
|
4617
4634
|
reset: () => Promise<void>;
|
4618
4635
|
resetValidation: () => Promise<void>;
|
@@ -4623,7 +4640,7 @@ export declare const VDateInput: {
|
|
4623
4640
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4624
4641
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4625
4642
|
} | {};
|
4626
|
-
}> & {} & 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}`> & {
|
4627
4644
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4628
4645
|
$: import("vue").ComponentInternalInstance;
|
4629
4646
|
$data: {};
|
@@ -4674,9 +4691,9 @@ export declare const VDateInput: {
|
|
4674
4691
|
baseColor?: string | undefined;
|
4675
4692
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4676
4693
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4694
|
+
iconColor?: string | boolean | undefined;
|
4677
4695
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4678
4696
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4679
|
-
iconColor?: string | boolean | undefined;
|
4680
4697
|
hint?: string | undefined;
|
4681
4698
|
hideDetails?: boolean | "auto" | undefined;
|
4682
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">;
|
@@ -4730,9 +4747,9 @@ export declare const VDateInput: {
|
|
4730
4747
|
baseColor?: string | undefined;
|
4731
4748
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4732
4749
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4750
|
+
iconColor?: string | boolean | undefined;
|
4733
4751
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4734
4752
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4735
|
-
iconColor?: string | boolean | undefined;
|
4736
4753
|
hint?: string | undefined;
|
4737
4754
|
hideDetails?: boolean | "auto" | undefined;
|
4738
4755
|
} & {}, {
|
@@ -4833,9 +4850,9 @@ export declare const VDateInput: {
|
|
4833
4850
|
baseColor?: string | undefined;
|
4834
4851
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4835
4852
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4853
|
+
iconColor?: string | boolean | undefined;
|
4836
4854
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4837
4855
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4838
|
-
iconColor?: string | boolean | undefined;
|
4839
4856
|
hint?: string | undefined;
|
4840
4857
|
hideDetails?: boolean | "auto" | undefined;
|
4841
4858
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4847,7 +4864,7 @@ export declare const VDateInput: {
|
|
4847
4864
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4848
4865
|
modelValue?: unknown;
|
4849
4866
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4850
|
-
}, 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<{
|
4851
4868
|
$: import("vue").ComponentInternalInstance;
|
4852
4869
|
$data: {};
|
4853
4870
|
$props: Partial<{
|
@@ -4894,13 +4911,13 @@ export declare const VDateInput: {
|
|
4894
4911
|
rounded?: string | number | boolean | undefined;
|
4895
4912
|
baseColor?: string | undefined;
|
4896
4913
|
bgColor?: string | undefined;
|
4914
|
+
iconColor?: string | boolean | undefined;
|
4897
4915
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4898
4916
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4899
4917
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4900
4918
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4901
4919
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4902
4920
|
centerAffix?: boolean | undefined;
|
4903
|
-
iconColor?: string | boolean | undefined;
|
4904
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">;
|
4905
4922
|
$attrs: {
|
4906
4923
|
[x: string]: unknown;
|
@@ -4953,13 +4970,13 @@ export declare const VDateInput: {
|
|
4953
4970
|
rounded?: string | number | boolean | undefined;
|
4954
4971
|
baseColor?: string | undefined;
|
4955
4972
|
bgColor?: string | undefined;
|
4973
|
+
iconColor?: string | boolean | undefined;
|
4956
4974
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4957
4975
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4958
4976
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4959
4977
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4960
4978
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4961
4979
|
centerAffix?: boolean | undefined;
|
4962
|
-
iconColor?: string | boolean | undefined;
|
4963
4980
|
} & {
|
4964
4981
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4965
4982
|
}, {
|
@@ -5063,13 +5080,13 @@ export declare const VDateInput: {
|
|
5063
5080
|
rounded?: string | number | boolean | undefined;
|
5064
5081
|
baseColor?: string | undefined;
|
5065
5082
|
bgColor?: string | undefined;
|
5083
|
+
iconColor?: string | boolean | undefined;
|
5066
5084
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5067
5085
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5068
5086
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5069
5087
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5070
5088
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5071
5089
|
centerAffix?: boolean | undefined;
|
5072
|
-
iconColor?: string | boolean | undefined;
|
5073
5090
|
} & {
|
5074
5091
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5075
5092
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5078,7 +5095,7 @@ export declare const VDateInput: {
|
|
5078
5095
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5079
5096
|
modelValue?: unknown;
|
5080
5097
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5081
|
-
}, 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}`> & {
|
5082
5099
|
_allExposed: {
|
5083
5100
|
reset: () => Promise<void>;
|
5084
5101
|
resetValidation: () => Promise<void>;
|
@@ -5101,6 +5118,7 @@ export declare const VDateInput: {
|
|
5101
5118
|
direction: "horizontal" | "vertical";
|
5102
5119
|
transition: string;
|
5103
5120
|
header: string;
|
5121
|
+
menu: boolean;
|
5104
5122
|
style: import("vue").StyleValue;
|
5105
5123
|
title: string;
|
5106
5124
|
autofocus: boolean;
|
@@ -5109,7 +5127,6 @@ export declare const VDateInput: {
|
|
5109
5127
|
readonly: boolean | null;
|
5110
5128
|
tag: string | import("../../util/index.js").JSXComponent;
|
5111
5129
|
landscape: boolean;
|
5112
|
-
placeholder: string;
|
5113
5130
|
messages: string | readonly string[];
|
5114
5131
|
rules: readonly import("../../types.js").ValidationRule[];
|
5115
5132
|
focused: boolean;
|
@@ -5162,6 +5179,7 @@ export declare const VDateInput: {
|
|
5162
5179
|
direction: "horizontal" | "vertical";
|
5163
5180
|
transition: string;
|
5164
5181
|
header: string;
|
5182
|
+
menu: boolean;
|
5165
5183
|
style: import("vue").StyleValue;
|
5166
5184
|
title: string;
|
5167
5185
|
autofocus: boolean;
|
@@ -5170,7 +5188,6 @@ export declare const VDateInput: {
|
|
5170
5188
|
readonly: boolean | null;
|
5171
5189
|
tag: string | import("../../util/index.js").JSXComponent;
|
5172
5190
|
landscape: boolean;
|
5173
|
-
placeholder: string;
|
5174
5191
|
messages: string | readonly string[];
|
5175
5192
|
rules: readonly import("../../types.js").ValidationRule[];
|
5176
5193
|
focused: boolean;
|
@@ -5229,6 +5246,7 @@ export declare const VDateInput: {
|
|
5229
5246
|
year?: number | undefined;
|
5230
5247
|
class?: any;
|
5231
5248
|
theme?: string | undefined;
|
5249
|
+
placeholder?: string | undefined;
|
5232
5250
|
elevation?: string | number | undefined;
|
5233
5251
|
counter?: string | number | boolean | undefined;
|
5234
5252
|
mobileBreakpoint?: number | import("../../composables/display.js").DisplayBreakpoint | undefined;
|
@@ -5242,6 +5260,7 @@ export declare const VDateInput: {
|
|
5242
5260
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5243
5261
|
controlHeight?: string | number | undefined;
|
5244
5262
|
headerColor?: string | undefined;
|
5263
|
+
iconColor?: string | boolean | undefined;
|
5245
5264
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5246
5265
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5247
5266
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5250,7 +5269,6 @@ export declare const VDateInput: {
|
|
5250
5269
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5251
5270
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5252
5271
|
centerAffix?: boolean | undefined;
|
5253
|
-
iconColor?: string | boolean | undefined;
|
5254
5272
|
hint?: string | undefined;
|
5255
5273
|
hideDetails?: boolean | "auto" | undefined;
|
5256
5274
|
suffix?: string | undefined;
|
@@ -5258,6 +5276,7 @@ export declare const VDateInput: {
|
|
5258
5276
|
modelModifiers?: Record<string, boolean> | undefined;
|
5259
5277
|
firstDayOfWeek?: string | number | undefined;
|
5260
5278
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
5279
|
+
inputFormat?: string | undefined;
|
5261
5280
|
displayFormat?: string | Function | undefined;
|
5262
5281
|
} & {
|
5263
5282
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
@@ -5319,6 +5338,7 @@ export declare const VDateInput: {
|
|
5319
5338
|
} & {
|
5320
5339
|
onCancel?: (() => any) | undefined;
|
5321
5340
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
5341
|
+
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
5322
5342
|
onSave?: ((value: string) => any) | undefined;
|
5323
5343
|
}, Omit<Omit<{
|
5324
5344
|
$: import("vue").ComponentInternalInstance;
|
@@ -5406,6 +5426,7 @@ export declare const VDateInput: {
|
|
5406
5426
|
bgColor?: string | undefined;
|
5407
5427
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5408
5428
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5429
|
+
iconColor?: string | boolean | undefined;
|
5409
5430
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5410
5431
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5411
5432
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5414,7 +5435,6 @@ export declare const VDateInput: {
|
|
5414
5435
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5415
5436
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5416
5437
|
centerAffix?: boolean | undefined;
|
5417
|
-
iconColor?: string | boolean | undefined;
|
5418
5438
|
hint?: string | undefined;
|
5419
5439
|
hideDetails?: boolean | "auto" | undefined;
|
5420
5440
|
suffix?: string | undefined;
|
@@ -5558,6 +5578,7 @@ export declare const VDateInput: {
|
|
5558
5578
|
bgColor?: string | undefined;
|
5559
5579
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5560
5580
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5581
|
+
iconColor?: string | boolean | undefined;
|
5561
5582
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5562
5583
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5563
5584
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5566,7 +5587,6 @@ export declare const VDateInput: {
|
|
5566
5587
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5567
5588
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5568
5589
|
centerAffix?: boolean | undefined;
|
5569
|
-
iconColor?: string | boolean | undefined;
|
5570
5590
|
hint?: string | undefined;
|
5571
5591
|
hideDetails?: boolean | "auto" | undefined;
|
5572
5592
|
suffix?: string | undefined;
|
@@ -5681,9 +5701,9 @@ export declare const VDateInput: {
|
|
5681
5701
|
baseColor?: string | undefined;
|
5682
5702
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5683
5703
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5704
|
+
iconColor?: string | boolean | undefined;
|
5684
5705
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5685
5706
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5686
|
-
iconColor?: string | boolean | undefined;
|
5687
5707
|
hint?: string | undefined;
|
5688
5708
|
hideDetails?: boolean | "auto" | undefined;
|
5689
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">;
|
@@ -5737,9 +5757,9 @@ export declare const VDateInput: {
|
|
5737
5757
|
baseColor?: string | undefined;
|
5738
5758
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5739
5759
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5760
|
+
iconColor?: string | boolean | undefined;
|
5740
5761
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5741
5762
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5742
|
-
iconColor?: string | boolean | undefined;
|
5743
5763
|
hint?: string | undefined;
|
5744
5764
|
hideDetails?: boolean | "auto" | undefined;
|
5745
5765
|
} & {}, {
|
@@ -5840,9 +5860,9 @@ export declare const VDateInput: {
|
|
5840
5860
|
baseColor?: string | undefined;
|
5841
5861
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5842
5862
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5863
|
+
iconColor?: string | boolean | undefined;
|
5843
5864
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5844
5865
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5845
|
-
iconColor?: string | boolean | undefined;
|
5846
5866
|
hint?: string | undefined;
|
5847
5867
|
hideDetails?: boolean | "auto" | undefined;
|
5848
5868
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5854,7 +5874,7 @@ export declare const VDateInput: {
|
|
5854
5874
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5855
5875
|
modelValue?: unknown;
|
5856
5876
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5857
|
-
}, 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<{
|
5858
5878
|
$: import("vue").ComponentInternalInstance;
|
5859
5879
|
$data: {};
|
5860
5880
|
$props: Partial<{
|
@@ -5901,13 +5921,13 @@ export declare const VDateInput: {
|
|
5901
5921
|
rounded?: string | number | boolean | undefined;
|
5902
5922
|
baseColor?: string | undefined;
|
5903
5923
|
bgColor?: string | undefined;
|
5924
|
+
iconColor?: string | boolean | undefined;
|
5904
5925
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5905
5926
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5906
5927
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5907
5928
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5908
5929
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5909
5930
|
centerAffix?: boolean | undefined;
|
5910
|
-
iconColor?: string | boolean | undefined;
|
5911
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">;
|
5912
5932
|
$attrs: {
|
5913
5933
|
[x: string]: unknown;
|
@@ -5960,13 +5980,13 @@ export declare const VDateInput: {
|
|
5960
5980
|
rounded?: string | number | boolean | undefined;
|
5961
5981
|
baseColor?: string | undefined;
|
5962
5982
|
bgColor?: string | undefined;
|
5983
|
+
iconColor?: string | boolean | undefined;
|
5963
5984
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5964
5985
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5965
5986
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5966
5987
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5967
5988
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5968
5989
|
centerAffix?: boolean | undefined;
|
5969
|
-
iconColor?: string | boolean | undefined;
|
5970
5990
|
} & {
|
5971
5991
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5972
5992
|
}, {
|
@@ -6070,13 +6090,13 @@ export declare const VDateInput: {
|
|
6070
6090
|
rounded?: string | number | boolean | undefined;
|
6071
6091
|
baseColor?: string | undefined;
|
6072
6092
|
bgColor?: string | undefined;
|
6093
|
+
iconColor?: string | boolean | undefined;
|
6073
6094
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6074
6095
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6075
6096
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6076
6097
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6077
6098
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6078
6099
|
centerAffix?: boolean | undefined;
|
6079
|
-
iconColor?: string | boolean | undefined;
|
6080
6100
|
} & {
|
6081
6101
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6082
6102
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6085,7 +6105,7 @@ export declare const VDateInput: {
|
|
6085
6105
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6086
6106
|
modelValue?: unknown;
|
6087
6107
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6088
|
-
}, 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}`> & {
|
6089
6109
|
_allExposed: {
|
6090
6110
|
reset: () => Promise<void>;
|
6091
6111
|
resetValidation: () => Promise<void>;
|
@@ -6253,6 +6273,7 @@ export declare const VDateInput: {
|
|
6253
6273
|
bgColor?: string | undefined;
|
6254
6274
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6255
6275
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6276
|
+
iconColor?: string | boolean | undefined;
|
6256
6277
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6257
6278
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6258
6279
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6261,7 +6282,6 @@ export declare const VDateInput: {
|
|
6261
6282
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6262
6283
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6263
6284
|
centerAffix?: boolean | undefined;
|
6264
|
-
iconColor?: string | boolean | undefined;
|
6265
6285
|
hint?: string | undefined;
|
6266
6286
|
hideDetails?: boolean | "auto" | undefined;
|
6267
6287
|
suffix?: string | undefined;
|
@@ -6376,9 +6396,9 @@ export declare const VDateInput: {
|
|
6376
6396
|
baseColor?: string | undefined;
|
6377
6397
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6378
6398
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6399
|
+
iconColor?: string | boolean | undefined;
|
6379
6400
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6380
6401
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6381
|
-
iconColor?: string | boolean | undefined;
|
6382
6402
|
hint?: string | undefined;
|
6383
6403
|
hideDetails?: boolean | "auto" | undefined;
|
6384
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">;
|
@@ -6432,9 +6452,9 @@ export declare const VDateInput: {
|
|
6432
6452
|
baseColor?: string | undefined;
|
6433
6453
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6434
6454
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6455
|
+
iconColor?: string | boolean | undefined;
|
6435
6456
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6436
6457
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6437
|
-
iconColor?: string | boolean | undefined;
|
6438
6458
|
hint?: string | undefined;
|
6439
6459
|
hideDetails?: boolean | "auto" | undefined;
|
6440
6460
|
} & {}, {
|
@@ -6535,9 +6555,9 @@ export declare const VDateInput: {
|
|
6535
6555
|
baseColor?: string | undefined;
|
6536
6556
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6537
6557
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6558
|
+
iconColor?: string | boolean | undefined;
|
6538
6559
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6539
6560
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6540
|
-
iconColor?: string | boolean | undefined;
|
6541
6561
|
hint?: string | undefined;
|
6542
6562
|
hideDetails?: boolean | "auto" | undefined;
|
6543
6563
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6549,7 +6569,7 @@ export declare const VDateInput: {
|
|
6549
6569
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6550
6570
|
modelValue?: unknown;
|
6551
6571
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6552
|
-
}, 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<{
|
6553
6573
|
$: import("vue").ComponentInternalInstance;
|
6554
6574
|
$data: {};
|
6555
6575
|
$props: Partial<{
|
@@ -6596,13 +6616,13 @@ export declare const VDateInput: {
|
|
6596
6616
|
rounded?: string | number | boolean | undefined;
|
6597
6617
|
baseColor?: string | undefined;
|
6598
6618
|
bgColor?: string | undefined;
|
6619
|
+
iconColor?: string | boolean | undefined;
|
6599
6620
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6600
6621
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6601
6622
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6602
6623
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6603
6624
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6604
6625
|
centerAffix?: boolean | undefined;
|
6605
|
-
iconColor?: string | boolean | undefined;
|
6606
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">;
|
6607
6627
|
$attrs: {
|
6608
6628
|
[x: string]: unknown;
|
@@ -6655,13 +6675,13 @@ export declare const VDateInput: {
|
|
6655
6675
|
rounded?: string | number | boolean | undefined;
|
6656
6676
|
baseColor?: string | undefined;
|
6657
6677
|
bgColor?: string | undefined;
|
6678
|
+
iconColor?: string | boolean | undefined;
|
6658
6679
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6659
6680
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6660
6681
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6661
6682
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6662
6683
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6663
6684
|
centerAffix?: boolean | undefined;
|
6664
|
-
iconColor?: string | boolean | undefined;
|
6665
6685
|
} & {
|
6666
6686
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6667
6687
|
}, {
|
@@ -6765,13 +6785,13 @@ export declare const VDateInput: {
|
|
6765
6785
|
rounded?: string | number | boolean | undefined;
|
6766
6786
|
baseColor?: string | undefined;
|
6767
6787
|
bgColor?: string | undefined;
|
6788
|
+
iconColor?: string | boolean | undefined;
|
6768
6789
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6769
6790
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6770
6791
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6771
6792
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6772
6793
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6773
6794
|
centerAffix?: boolean | undefined;
|
6774
|
-
iconColor?: string | boolean | undefined;
|
6775
6795
|
} & {
|
6776
6796
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6777
6797
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6780,7 +6800,7 @@ export declare const VDateInput: {
|
|
6780
6800
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6781
6801
|
modelValue?: unknown;
|
6782
6802
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6783
|
-
}, 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}`> & {
|
6784
6804
|
_allExposed: {
|
6785
6805
|
reset: () => Promise<void>;
|
6786
6806
|
resetValidation: () => Promise<void>;
|
@@ -6791,7 +6811,7 @@ export declare const VDateInput: {
|
|
6791
6811
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6792
6812
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6793
6813
|
} | {};
|
6794
|
-
}> & {} & 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}`> & {
|
6795
6815
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6796
6816
|
$: import("vue").ComponentInternalInstance;
|
6797
6817
|
$data: {};
|
@@ -6842,9 +6862,9 @@ export declare const VDateInput: {
|
|
6842
6862
|
baseColor?: string | undefined;
|
6843
6863
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6844
6864
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6865
|
+
iconColor?: string | boolean | undefined;
|
6845
6866
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6846
6867
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6847
|
-
iconColor?: string | boolean | undefined;
|
6848
6868
|
hint?: string | undefined;
|
6849
6869
|
hideDetails?: boolean | "auto" | undefined;
|
6850
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">;
|
@@ -6898,9 +6918,9 @@ export declare const VDateInput: {
|
|
6898
6918
|
baseColor?: string | undefined;
|
6899
6919
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6900
6920
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6921
|
+
iconColor?: string | boolean | undefined;
|
6901
6922
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6902
6923
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6903
|
-
iconColor?: string | boolean | undefined;
|
6904
6924
|
hint?: string | undefined;
|
6905
6925
|
hideDetails?: boolean | "auto" | undefined;
|
6906
6926
|
} & {}, {
|
@@ -7001,9 +7021,9 @@ export declare const VDateInput: {
|
|
7001
7021
|
baseColor?: string | undefined;
|
7002
7022
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7003
7023
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7024
|
+
iconColor?: string | boolean | undefined;
|
7004
7025
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7005
7026
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7006
|
-
iconColor?: string | boolean | undefined;
|
7007
7027
|
hint?: string | undefined;
|
7008
7028
|
hideDetails?: boolean | "auto" | undefined;
|
7009
7029
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7015,7 +7035,7 @@ export declare const VDateInput: {
|
|
7015
7035
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7016
7036
|
modelValue?: unknown;
|
7017
7037
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7018
|
-
}, 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<{
|
7019
7039
|
$: import("vue").ComponentInternalInstance;
|
7020
7040
|
$data: {};
|
7021
7041
|
$props: Partial<{
|
@@ -7062,13 +7082,13 @@ export declare const VDateInput: {
|
|
7062
7082
|
rounded?: string | number | boolean | undefined;
|
7063
7083
|
baseColor?: string | undefined;
|
7064
7084
|
bgColor?: string | undefined;
|
7085
|
+
iconColor?: string | boolean | undefined;
|
7065
7086
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7066
7087
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7067
7088
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7068
7089
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7069
7090
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7070
7091
|
centerAffix?: boolean | undefined;
|
7071
|
-
iconColor?: string | boolean | undefined;
|
7072
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">;
|
7073
7093
|
$attrs: {
|
7074
7094
|
[x: string]: unknown;
|
@@ -7121,13 +7141,13 @@ export declare const VDateInput: {
|
|
7121
7141
|
rounded?: string | number | boolean | undefined;
|
7122
7142
|
baseColor?: string | undefined;
|
7123
7143
|
bgColor?: string | undefined;
|
7144
|
+
iconColor?: string | boolean | undefined;
|
7124
7145
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7125
7146
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7126
7147
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7127
7148
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7128
7149
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7129
7150
|
centerAffix?: boolean | undefined;
|
7130
|
-
iconColor?: string | boolean | undefined;
|
7131
7151
|
} & {
|
7132
7152
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7133
7153
|
}, {
|
@@ -7231,13 +7251,13 @@ export declare const VDateInput: {
|
|
7231
7251
|
rounded?: string | number | boolean | undefined;
|
7232
7252
|
baseColor?: string | undefined;
|
7233
7253
|
bgColor?: string | undefined;
|
7254
|
+
iconColor?: string | boolean | undefined;
|
7234
7255
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7235
7256
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7236
7257
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7237
7258
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7238
7259
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7239
7260
|
centerAffix?: boolean | undefined;
|
7240
|
-
iconColor?: string | boolean | undefined;
|
7241
7261
|
} & {
|
7242
7262
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7243
7263
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7246,7 +7266,7 @@ export declare const VDateInput: {
|
|
7246
7266
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7247
7267
|
modelValue?: unknown;
|
7248
7268
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
7249
|
-
}, 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}`> & {
|
7250
7270
|
_allExposed: {
|
7251
7271
|
reset: () => Promise<void>;
|
7252
7272
|
resetValidation: () => Promise<void>;
|
@@ -7262,6 +7282,7 @@ export declare const VDateInput: {
|
|
7262
7282
|
save: (value: string) => true;
|
7263
7283
|
cancel: () => true;
|
7264
7284
|
'update:modelValue': (val: string) => true;
|
7285
|
+
'update:menu': (val: boolean) => true;
|
7265
7286
|
}, string, {
|
7266
7287
|
flat: boolean;
|
7267
7288
|
reverse: boolean;
|
@@ -7273,6 +7294,7 @@ export declare const VDateInput: {
|
|
7273
7294
|
direction: "horizontal" | "vertical";
|
7274
7295
|
transition: string;
|
7275
7296
|
header: string;
|
7297
|
+
menu: boolean;
|
7276
7298
|
style: import("vue").StyleValue;
|
7277
7299
|
title: string;
|
7278
7300
|
autofocus: boolean;
|
@@ -7281,7 +7303,6 @@ export declare const VDateInput: {
|
|
7281
7303
|
readonly: boolean | null;
|
7282
7304
|
tag: string | import("../../util/index.js").JSXComponent;
|
7283
7305
|
landscape: boolean;
|
7284
|
-
placeholder: string;
|
7285
7306
|
messages: string | readonly string[];
|
7286
7307
|
rules: readonly import("../../types.js").ValidationRule[];
|
7287
7308
|
focused: boolean;
|
@@ -7525,10 +7546,7 @@ export declare const VDateInput: {
|
|
7525
7546
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
7526
7547
|
counterValue: PropType<number | ((value: any) => number)>;
|
7527
7548
|
prefix: StringConstructor;
|
7528
|
-
placeholder:
|
7529
|
-
type: PropType<string>;
|
7530
|
-
default: string;
|
7531
|
-
};
|
7549
|
+
placeholder: StringConstructor;
|
7532
7550
|
persistentPlaceholder: BooleanConstructor;
|
7533
7551
|
persistentCounter: BooleanConstructor;
|
7534
7552
|
suffix: StringConstructor;
|
@@ -7558,11 +7576,16 @@ export declare const VDateInput: {
|
|
7558
7576
|
default: NonNullable<boolean | null> | null;
|
7559
7577
|
};
|
7560
7578
|
mobileBreakpoint: PropType<number | import("../../composables/display.js").DisplayBreakpoint>;
|
7579
|
+
inputFormat: {
|
7580
|
+
type: StringConstructor;
|
7581
|
+
validator: (v: string) => boolean;
|
7582
|
+
};
|
7561
7583
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
7562
7584
|
location: {
|
7563
7585
|
type: PropType<StrategyProps["location"]>;
|
7564
7586
|
default: string;
|
7565
7587
|
};
|
7588
|
+
menu: BooleanConstructor;
|
7566
7589
|
updateOn: {
|
7567
7590
|
type: PropType<("blur" | "enter")[]>;
|
7568
7591
|
default: () => string[];
|
@@ -7755,10 +7778,7 @@ export declare const VDateInput: {
|
|
7755
7778
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
7756
7779
|
counterValue: PropType<number | ((value: any) => number)>;
|
7757
7780
|
prefix: StringConstructor;
|
7758
|
-
placeholder:
|
7759
|
-
type: PropType<string>;
|
7760
|
-
default: string;
|
7761
|
-
};
|
7781
|
+
placeholder: StringConstructor;
|
7762
7782
|
persistentPlaceholder: BooleanConstructor;
|
7763
7783
|
persistentCounter: BooleanConstructor;
|
7764
7784
|
suffix: StringConstructor;
|
@@ -7788,11 +7808,16 @@ export declare const VDateInput: {
|
|
7788
7808
|
default: NonNullable<boolean | null> | null;
|
7789
7809
|
};
|
7790
7810
|
mobileBreakpoint: PropType<number | import("../../composables/display.js").DisplayBreakpoint>;
|
7811
|
+
inputFormat: {
|
7812
|
+
type: StringConstructor;
|
7813
|
+
validator: (v: string) => boolean;
|
7814
|
+
};
|
7791
7815
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
7792
7816
|
location: {
|
7793
7817
|
type: PropType<StrategyProps["location"]>;
|
7794
7818
|
default: string;
|
7795
7819
|
};
|
7820
|
+
menu: BooleanConstructor;
|
7796
7821
|
updateOn: {
|
7797
7822
|
type: PropType<("blur" | "enter")[]>;
|
7798
7823
|
default: () => string[];
|