@vuetify/nightly 3.8.5-dev.2025-05-14 → 3.8.5-master.2025-05-15
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 +6 -19
- package/dist/json/attributes.json +3205 -3221
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +136 -136
- package/dist/json/tags.json +0 -4
- package/dist/json/web-types.json +6164 -6203
- package/dist/vuetify-labs.cjs +61 -183
- package/dist/vuetify-labs.css +3924 -3952
- package/dist/vuetify-labs.d.ts +1479 -1528
- package/dist/vuetify-labs.esm.js +62 -184
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +61 -183
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +50 -177
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4149 -4177
- package/dist/vuetify.d.ts +947 -998
- package/dist/vuetify.esm.js +51 -178
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +50 -177
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1178 -1184
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +1 -6
- package/lib/components/VAlert/VAlert.d.ts +0 -35
- package/lib/components/VAlert/VAlert.js +9 -14
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +1 -7
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +178 -178
- package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
- package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
- package/lib/components/VCheckbox/VCheckbox.d.ts +15 -15
- package/lib/components/VCombobox/VCombobox.d.ts +178 -178
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +45 -45
- package/lib/components/VInput/VInput.d.ts +16 -16
- package/lib/components/VNumberInput/VNumberInput.d.ts +169 -169
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +15 -15
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +15 -15
- package/lib/components/VSelect/VSelect.d.ts +178 -178
- package/lib/components/VSlider/VSlider.d.ts +15 -15
- package/lib/components/VSwitch/VSwitch.d.ts +15 -15
- package/lib/components/VTextField/VTextField.d.ts +57 -57
- package/lib/components/VTextarea/VTextarea.d.ts +45 -45
- package/lib/components/VValidation/VValidation.d.ts +8 -8
- package/lib/composables/calendar.d.ts +0 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.d.ts +1 -6
- package/lib/composables/theme.js +26 -94
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/validation.d.ts +6 -5
- package/lib/composables/validation.js +4 -29
- package/lib/composables/validation.js.map +1 -1
- package/lib/composables/virtual.js +1 -6
- 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 +45 -50
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +15 -15
- package/lib/labs/VDateInput/VDateInput.d.ts +171 -171
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +11 -7
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/rules/rules.d.ts +9 -5
- package/lib/labs/rules/rules.js +73 -51
- package/lib/labs/rules/rules.js.map +1 -1
- package/lib/util/globals.d.ts +0 -1
- package/lib/util/globals.js +0 -1
- package/lib/util/globals.js.map +1 -1
- package/package.json +1 -2
- package/lib/composables/iconSizes.d.ts +0 -28
- package/lib/composables/iconSizes.js +0 -23
- package/lib/composables/iconSizes.js.map +0 -1
@@ -567,14 +567,14 @@ export declare const makeVDateInputProps: <Defaults extends {
|
|
567
567
|
default: unknown extends Defaults["readonly"] ? boolean | null : NonNullable<boolean | null> | Defaults["readonly"];
|
568
568
|
};
|
569
569
|
rules: unknown extends Defaults["rules"] ? {
|
570
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
570
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
571
571
|
default: () => never[];
|
572
572
|
} : Omit<{
|
573
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
573
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
574
574
|
default: () => never[];
|
575
575
|
}, "type" | "default"> & {
|
576
|
-
type: PropType<unknown extends Defaults["rules"] ? readonly import("../../
|
577
|
-
default: unknown extends Defaults["rules"] ? readonly import("../../
|
576
|
+
type: PropType<unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"]>;
|
577
|
+
default: unknown extends Defaults["rules"] ? readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] : readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[] | Defaults["rules"];
|
578
578
|
};
|
579
579
|
validateOn: unknown extends Defaults["validateOn"] ? PropType<("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined> : {
|
580
580
|
type: PropType<unknown extends Defaults["validateOn"] ? ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined : ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | Defaults["validateOn"] | undefined>;
|
@@ -821,7 +821,7 @@ export declare const VDateInput: {
|
|
821
821
|
tag: string | import("../../util/index.js").JSXComponent;
|
822
822
|
landscape: boolean;
|
823
823
|
messages: string | readonly string[];
|
824
|
-
rules: readonly import("../../
|
824
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
825
825
|
focused: boolean;
|
826
826
|
errorMessages: string | readonly string[] | null;
|
827
827
|
maxErrors: string | number;
|
@@ -892,7 +892,6 @@ export declare const VDateInput: {
|
|
892
892
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
893
893
|
controlHeight?: string | number | undefined;
|
894
894
|
headerColor?: string | undefined;
|
895
|
-
iconColor?: string | boolean | undefined;
|
896
895
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
897
896
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
898
897
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -901,6 +900,7 @@ export declare const VDateInput: {
|
|
901
900
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
902
901
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
903
902
|
centerAffix?: boolean | undefined;
|
903
|
+
iconColor?: string | boolean | undefined;
|
904
904
|
hint?: string | undefined;
|
905
905
|
hideDetails?: boolean | "auto" | undefined;
|
906
906
|
suffix?: string | undefined;
|
@@ -988,7 +988,7 @@ export declare const VDateInput: {
|
|
988
988
|
disabled: boolean;
|
989
989
|
readonly: boolean | null;
|
990
990
|
messages: string | readonly string[];
|
991
|
-
rules: readonly import("../../
|
991
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
992
992
|
focused: boolean;
|
993
993
|
errorMessages: string | readonly string[] | null;
|
994
994
|
maxErrors: string | number;
|
@@ -1019,7 +1019,7 @@ export declare const VDateInput: {
|
|
1019
1019
|
disabled: boolean;
|
1020
1020
|
readonly: boolean | null;
|
1021
1021
|
messages: string | readonly string[];
|
1022
|
-
rules: readonly import("../../
|
1022
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1023
1023
|
focused: boolean;
|
1024
1024
|
errorMessages: string | readonly string[] | null;
|
1025
1025
|
maxErrors: string | number;
|
@@ -1058,7 +1058,6 @@ export declare const VDateInput: {
|
|
1058
1058
|
bgColor?: string | undefined;
|
1059
1059
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1060
1060
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1061
|
-
iconColor?: string | boolean | undefined;
|
1062
1061
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1063
1062
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1064
1063
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1067,6 +1066,7 @@ export declare const VDateInput: {
|
|
1067
1066
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1068
1067
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1069
1068
|
centerAffix?: boolean | undefined;
|
1069
|
+
iconColor?: string | boolean | undefined;
|
1070
1070
|
hint?: string | undefined;
|
1071
1071
|
hideDetails?: boolean | "auto" | undefined;
|
1072
1072
|
suffix?: string | undefined;
|
@@ -1170,7 +1170,7 @@ export declare const VDateInput: {
|
|
1170
1170
|
disabled: boolean;
|
1171
1171
|
readonly: boolean | null;
|
1172
1172
|
messages: string | readonly string[];
|
1173
|
-
rules: readonly import("../../
|
1173
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1174
1174
|
focused: boolean;
|
1175
1175
|
errorMessages: string | readonly string[] | null;
|
1176
1176
|
maxErrors: string | number;
|
@@ -1210,7 +1210,6 @@ export declare const VDateInput: {
|
|
1210
1210
|
bgColor?: string | undefined;
|
1211
1211
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1212
1212
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1213
|
-
iconColor?: string | boolean | undefined;
|
1214
1213
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1215
1214
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1216
1215
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1219,6 +1218,7 @@ export declare const VDateInput: {
|
|
1219
1218
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1220
1219
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1221
1220
|
centerAffix?: boolean | undefined;
|
1221
|
+
iconColor?: string | boolean | undefined;
|
1222
1222
|
hint?: string | undefined;
|
1223
1223
|
hideDetails?: boolean | "auto" | undefined;
|
1224
1224
|
suffix?: string | undefined;
|
@@ -1293,7 +1293,7 @@ export declare const VDateInput: {
|
|
1293
1293
|
disabled: boolean | null;
|
1294
1294
|
readonly: boolean | null;
|
1295
1295
|
messages: string | readonly string[];
|
1296
|
-
rules: readonly import("../../
|
1296
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1297
1297
|
focused: boolean;
|
1298
1298
|
errorMessages: string | readonly string[] | null;
|
1299
1299
|
maxErrors: string | number;
|
@@ -1309,7 +1309,7 @@ export declare const VDateInput: {
|
|
1309
1309
|
disabled: boolean | null;
|
1310
1310
|
readonly: boolean | null;
|
1311
1311
|
messages: string | readonly string[];
|
1312
|
-
rules: readonly import("../../
|
1312
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1313
1313
|
focused: boolean;
|
1314
1314
|
errorMessages: string | readonly string[] | null;
|
1315
1315
|
maxErrors: string | number;
|
@@ -1333,9 +1333,9 @@ export declare const VDateInput: {
|
|
1333
1333
|
baseColor?: string | undefined;
|
1334
1334
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1335
1335
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1336
|
-
iconColor?: string | boolean | undefined;
|
1337
1336
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1338
1337
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1338
|
+
iconColor?: string | boolean | undefined;
|
1339
1339
|
hint?: string | undefined;
|
1340
1340
|
hideDetails?: boolean | "auto" | undefined;
|
1341
1341
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1364,7 +1364,7 @@ export declare const VDateInput: {
|
|
1364
1364
|
disabled: boolean | null;
|
1365
1365
|
readonly: boolean | null;
|
1366
1366
|
messages: string | readonly string[];
|
1367
|
-
rules: readonly import("../../
|
1367
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1368
1368
|
focused: boolean;
|
1369
1369
|
errorMessages: string | readonly string[] | null;
|
1370
1370
|
maxErrors: string | number;
|
@@ -1389,9 +1389,9 @@ export declare const VDateInput: {
|
|
1389
1389
|
baseColor?: string | undefined;
|
1390
1390
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1391
1391
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1392
|
-
iconColor?: string | boolean | undefined;
|
1393
1392
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1394
1393
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1394
|
+
iconColor?: string | boolean | undefined;
|
1395
1395
|
hint?: string | undefined;
|
1396
1396
|
hideDetails?: boolean | "auto" | undefined;
|
1397
1397
|
} & {}, {
|
@@ -1409,7 +1409,7 @@ export declare const VDateInput: {
|
|
1409
1409
|
disabled: boolean | null;
|
1410
1410
|
readonly: boolean | null;
|
1411
1411
|
messages: string | readonly string[];
|
1412
|
-
rules: readonly import("../../
|
1412
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1413
1413
|
focused: boolean;
|
1414
1414
|
errorMessages: string | readonly string[] | null;
|
1415
1415
|
maxErrors: string | number;
|
@@ -1451,7 +1451,7 @@ export declare const VDateInput: {
|
|
1451
1451
|
disabled: boolean | null;
|
1452
1452
|
readonly: boolean | null;
|
1453
1453
|
messages: string | readonly string[];
|
1454
|
-
rules: readonly import("../../
|
1454
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1455
1455
|
focused: boolean;
|
1456
1456
|
errorMessages: string | readonly string[] | null;
|
1457
1457
|
maxErrors: string | number;
|
@@ -1467,7 +1467,7 @@ export declare const VDateInput: {
|
|
1467
1467
|
disabled: boolean | null;
|
1468
1468
|
readonly: boolean | null;
|
1469
1469
|
messages: string | readonly string[];
|
1470
|
-
rules: readonly import("../../
|
1470
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1471
1471
|
focused: boolean;
|
1472
1472
|
errorMessages: string | readonly string[] | null;
|
1473
1473
|
maxErrors: string | number;
|
@@ -1492,9 +1492,9 @@ export declare const VDateInput: {
|
|
1492
1492
|
baseColor?: string | undefined;
|
1493
1493
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1494
1494
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1495
|
-
iconColor?: string | boolean | undefined;
|
1496
1495
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1497
1496
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1497
|
+
iconColor?: string | boolean | undefined;
|
1498
1498
|
hint?: string | undefined;
|
1499
1499
|
hideDetails?: boolean | "auto" | undefined;
|
1500
1500
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1506,7 +1506,7 @@ export declare const VDateInput: {
|
|
1506
1506
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1507
1507
|
modelValue?: unknown;
|
1508
1508
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1509
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "
|
1509
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
1510
1510
|
$: import("vue").ComponentInternalInstance;
|
1511
1511
|
$data: {};
|
1512
1512
|
$props: Partial<{
|
@@ -1553,13 +1553,13 @@ export declare const VDateInput: {
|
|
1553
1553
|
rounded?: string | number | boolean | undefined;
|
1554
1554
|
baseColor?: string | undefined;
|
1555
1555
|
bgColor?: string | undefined;
|
1556
|
-
iconColor?: string | boolean | undefined;
|
1557
1556
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1558
1557
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1559
1558
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1560
1559
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1561
1560
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1562
1561
|
centerAffix?: boolean | undefined;
|
1562
|
+
iconColor?: string | boolean | undefined;
|
1563
1563
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
1564
1564
|
$attrs: {
|
1565
1565
|
[x: string]: unknown;
|
@@ -1612,13 +1612,13 @@ export declare const VDateInput: {
|
|
1612
1612
|
rounded?: string | number | boolean | undefined;
|
1613
1613
|
baseColor?: string | undefined;
|
1614
1614
|
bgColor?: string | undefined;
|
1615
|
-
iconColor?: string | boolean | undefined;
|
1616
1615
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1617
1616
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1618
1617
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1619
1618
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1620
1619
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1621
1620
|
centerAffix?: boolean | undefined;
|
1621
|
+
iconColor?: string | boolean | undefined;
|
1622
1622
|
} & {
|
1623
1623
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1624
1624
|
}, {
|
@@ -1722,13 +1722,13 @@ export declare const VDateInput: {
|
|
1722
1722
|
rounded?: string | number | boolean | undefined;
|
1723
1723
|
baseColor?: string | undefined;
|
1724
1724
|
bgColor?: string | undefined;
|
1725
|
-
iconColor?: string | boolean | undefined;
|
1726
1725
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1727
1726
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1728
1727
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1729
1728
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1730
1729
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1731
1730
|
centerAffix?: boolean | undefined;
|
1731
|
+
iconColor?: string | boolean | undefined;
|
1732
1732
|
} & {
|
1733
1733
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1734
1734
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1737,7 +1737,7 @@ export declare const VDateInput: {
|
|
1737
1737
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1738
1738
|
modelValue?: unknown;
|
1739
1739
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1740
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "
|
1740
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
1741
1741
|
_allExposed: {
|
1742
1742
|
reset: () => Promise<void>;
|
1743
1743
|
resetValidation: () => Promise<void>;
|
@@ -1766,7 +1766,7 @@ export declare const VDateInput: {
|
|
1766
1766
|
disabled: boolean;
|
1767
1767
|
readonly: boolean | null;
|
1768
1768
|
messages: string | readonly string[];
|
1769
|
-
rules: readonly import("../../
|
1769
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1770
1770
|
focused: boolean;
|
1771
1771
|
errorMessages: string | readonly string[] | null;
|
1772
1772
|
maxErrors: string | number;
|
@@ -1834,7 +1834,7 @@ export declare const VDateInput: {
|
|
1834
1834
|
disabled: boolean;
|
1835
1835
|
readonly: boolean | null;
|
1836
1836
|
messages: string | readonly string[];
|
1837
|
-
rules: readonly import("../../
|
1837
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1838
1838
|
focused: boolean;
|
1839
1839
|
errorMessages: string | readonly string[] | null;
|
1840
1840
|
maxErrors: string | number;
|
@@ -1865,7 +1865,7 @@ export declare const VDateInput: {
|
|
1865
1865
|
disabled: boolean;
|
1866
1866
|
readonly: boolean | null;
|
1867
1867
|
messages: string | readonly string[];
|
1868
|
-
rules: readonly import("../../
|
1868
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1869
1869
|
focused: boolean;
|
1870
1870
|
errorMessages: string | readonly string[] | null;
|
1871
1871
|
maxErrors: string | number;
|
@@ -1905,7 +1905,6 @@ export declare const VDateInput: {
|
|
1905
1905
|
bgColor?: string | undefined;
|
1906
1906
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1907
1907
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1908
|
-
iconColor?: string | boolean | undefined;
|
1909
1908
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1910
1909
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1911
1910
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1914,6 +1913,7 @@ export declare const VDateInput: {
|
|
1914
1913
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1915
1914
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1916
1915
|
centerAffix?: boolean | undefined;
|
1916
|
+
iconColor?: string | boolean | undefined;
|
1917
1917
|
hint?: string | undefined;
|
1918
1918
|
hideDetails?: boolean | "auto" | undefined;
|
1919
1919
|
suffix?: string | undefined;
|
@@ -1988,7 +1988,7 @@ export declare const VDateInput: {
|
|
1988
1988
|
disabled: boolean | null;
|
1989
1989
|
readonly: boolean | null;
|
1990
1990
|
messages: string | readonly string[];
|
1991
|
-
rules: readonly import("../../
|
1991
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
1992
1992
|
focused: boolean;
|
1993
1993
|
errorMessages: string | readonly string[] | null;
|
1994
1994
|
maxErrors: string | number;
|
@@ -2004,7 +2004,7 @@ export declare const VDateInput: {
|
|
2004
2004
|
disabled: boolean | null;
|
2005
2005
|
readonly: boolean | null;
|
2006
2006
|
messages: string | readonly string[];
|
2007
|
-
rules: readonly import("../../
|
2007
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2008
2008
|
focused: boolean;
|
2009
2009
|
errorMessages: string | readonly string[] | null;
|
2010
2010
|
maxErrors: string | number;
|
@@ -2028,9 +2028,9 @@ export declare const VDateInput: {
|
|
2028
2028
|
baseColor?: string | undefined;
|
2029
2029
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2030
2030
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2031
|
-
iconColor?: string | boolean | undefined;
|
2032
2031
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2033
2032
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2033
|
+
iconColor?: string | boolean | undefined;
|
2034
2034
|
hint?: string | undefined;
|
2035
2035
|
hideDetails?: boolean | "auto" | undefined;
|
2036
2036
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2059,7 +2059,7 @@ export declare const VDateInput: {
|
|
2059
2059
|
disabled: boolean | null;
|
2060
2060
|
readonly: boolean | null;
|
2061
2061
|
messages: string | readonly string[];
|
2062
|
-
rules: readonly import("../../
|
2062
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2063
2063
|
focused: boolean;
|
2064
2064
|
errorMessages: string | readonly string[] | null;
|
2065
2065
|
maxErrors: string | number;
|
@@ -2084,9 +2084,9 @@ export declare const VDateInput: {
|
|
2084
2084
|
baseColor?: string | undefined;
|
2085
2085
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2086
2086
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2087
|
-
iconColor?: string | boolean | undefined;
|
2088
2087
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2089
2088
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2089
|
+
iconColor?: string | boolean | undefined;
|
2090
2090
|
hint?: string | undefined;
|
2091
2091
|
hideDetails?: boolean | "auto" | undefined;
|
2092
2092
|
} & {}, {
|
@@ -2104,7 +2104,7 @@ export declare const VDateInput: {
|
|
2104
2104
|
disabled: boolean | null;
|
2105
2105
|
readonly: boolean | null;
|
2106
2106
|
messages: string | readonly string[];
|
2107
|
-
rules: readonly import("../../
|
2107
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2108
2108
|
focused: boolean;
|
2109
2109
|
errorMessages: string | readonly string[] | null;
|
2110
2110
|
maxErrors: string | number;
|
@@ -2146,7 +2146,7 @@ export declare const VDateInput: {
|
|
2146
2146
|
disabled: boolean | null;
|
2147
2147
|
readonly: boolean | null;
|
2148
2148
|
messages: string | readonly string[];
|
2149
|
-
rules: readonly import("../../
|
2149
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2150
2150
|
focused: boolean;
|
2151
2151
|
errorMessages: string | readonly string[] | null;
|
2152
2152
|
maxErrors: string | number;
|
@@ -2162,7 +2162,7 @@ export declare const VDateInput: {
|
|
2162
2162
|
disabled: boolean | null;
|
2163
2163
|
readonly: boolean | null;
|
2164
2164
|
messages: string | readonly string[];
|
2165
|
-
rules: readonly import("../../
|
2165
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2166
2166
|
focused: boolean;
|
2167
2167
|
errorMessages: string | readonly string[] | null;
|
2168
2168
|
maxErrors: string | number;
|
@@ -2187,9 +2187,9 @@ export declare const VDateInput: {
|
|
2187
2187
|
baseColor?: string | undefined;
|
2188
2188
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2189
2189
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2190
|
-
iconColor?: string | boolean | undefined;
|
2191
2190
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2192
2191
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2192
|
+
iconColor?: string | boolean | undefined;
|
2193
2193
|
hint?: string | undefined;
|
2194
2194
|
hideDetails?: boolean | "auto" | undefined;
|
2195
2195
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2201,7 +2201,7 @@ export declare const VDateInput: {
|
|
2201
2201
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2202
2202
|
modelValue?: unknown;
|
2203
2203
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2204
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "
|
2204
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
2205
2205
|
$: import("vue").ComponentInternalInstance;
|
2206
2206
|
$data: {};
|
2207
2207
|
$props: Partial<{
|
@@ -2248,13 +2248,13 @@ export declare const VDateInput: {
|
|
2248
2248
|
rounded?: string | number | boolean | undefined;
|
2249
2249
|
baseColor?: string | undefined;
|
2250
2250
|
bgColor?: string | undefined;
|
2251
|
-
iconColor?: string | boolean | undefined;
|
2252
2251
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2253
2252
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2254
2253
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2255
2254
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2256
2255
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2257
2256
|
centerAffix?: boolean | undefined;
|
2257
|
+
iconColor?: string | boolean | undefined;
|
2258
2258
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
2259
2259
|
$attrs: {
|
2260
2260
|
[x: string]: unknown;
|
@@ -2307,13 +2307,13 @@ export declare const VDateInput: {
|
|
2307
2307
|
rounded?: string | number | boolean | undefined;
|
2308
2308
|
baseColor?: string | undefined;
|
2309
2309
|
bgColor?: string | undefined;
|
2310
|
-
iconColor?: string | boolean | undefined;
|
2311
2310
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2312
2311
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2313
2312
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2314
2313
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2315
2314
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2316
2315
|
centerAffix?: boolean | undefined;
|
2316
|
+
iconColor?: string | boolean | undefined;
|
2317
2317
|
} & {
|
2318
2318
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2319
2319
|
}, {
|
@@ -2417,13 +2417,13 @@ export declare const VDateInput: {
|
|
2417
2417
|
rounded?: string | number | boolean | undefined;
|
2418
2418
|
baseColor?: string | undefined;
|
2419
2419
|
bgColor?: string | undefined;
|
2420
|
-
iconColor?: string | boolean | undefined;
|
2421
2420
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2422
2421
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2423
2422
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2424
2423
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2425
2424
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2426
2425
|
centerAffix?: boolean | undefined;
|
2426
|
+
iconColor?: string | boolean | undefined;
|
2427
2427
|
} & {
|
2428
2428
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2429
2429
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2432,7 +2432,7 @@ export declare const VDateInput: {
|
|
2432
2432
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2433
2433
|
modelValue?: unknown;
|
2434
2434
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2435
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "
|
2435
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
2436
2436
|
_allExposed: {
|
2437
2437
|
reset: () => Promise<void>;
|
2438
2438
|
resetValidation: () => Promise<void>;
|
@@ -2443,7 +2443,7 @@ export declare const VDateInput: {
|
|
2443
2443
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
2444
2444
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
2445
2445
|
} | {};
|
2446
|
-
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "
|
2446
|
+
}> & {} & import("vue").ComponentCustomProperties & {}, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "loading" | "label" | "prefix" | "role" | "class" | "theme" | "placeholder" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "counter" | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
2447
2447
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
2448
2448
|
$: import("vue").ComponentInternalInstance;
|
2449
2449
|
$data: {};
|
@@ -2454,7 +2454,7 @@ export declare const VDateInput: {
|
|
2454
2454
|
disabled: boolean | null;
|
2455
2455
|
readonly: boolean | null;
|
2456
2456
|
messages: string | readonly string[];
|
2457
|
-
rules: readonly import("../../
|
2457
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2458
2458
|
focused: boolean;
|
2459
2459
|
errorMessages: string | readonly string[] | null;
|
2460
2460
|
maxErrors: string | number;
|
@@ -2470,7 +2470,7 @@ export declare const VDateInput: {
|
|
2470
2470
|
disabled: boolean | null;
|
2471
2471
|
readonly: boolean | null;
|
2472
2472
|
messages: string | readonly string[];
|
2473
|
-
rules: readonly import("../../
|
2473
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2474
2474
|
focused: boolean;
|
2475
2475
|
errorMessages: string | readonly string[] | null;
|
2476
2476
|
maxErrors: string | number;
|
@@ -2494,9 +2494,9 @@ export declare const VDateInput: {
|
|
2494
2494
|
baseColor?: string | undefined;
|
2495
2495
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2496
2496
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2497
|
-
iconColor?: string | boolean | undefined;
|
2498
2497
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2499
2498
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2499
|
+
iconColor?: string | boolean | undefined;
|
2500
2500
|
hint?: string | undefined;
|
2501
2501
|
hideDetails?: boolean | "auto" | undefined;
|
2502
2502
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2525,7 +2525,7 @@ export declare const VDateInput: {
|
|
2525
2525
|
disabled: boolean | null;
|
2526
2526
|
readonly: boolean | null;
|
2527
2527
|
messages: string | readonly string[];
|
2528
|
-
rules: readonly import("../../
|
2528
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2529
2529
|
focused: boolean;
|
2530
2530
|
errorMessages: string | readonly string[] | null;
|
2531
2531
|
maxErrors: string | number;
|
@@ -2550,9 +2550,9 @@ export declare const VDateInput: {
|
|
2550
2550
|
baseColor?: string | undefined;
|
2551
2551
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2552
2552
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2553
|
-
iconColor?: string | boolean | undefined;
|
2554
2553
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2555
2554
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2555
|
+
iconColor?: string | boolean | undefined;
|
2556
2556
|
hint?: string | undefined;
|
2557
2557
|
hideDetails?: boolean | "auto" | undefined;
|
2558
2558
|
} & {}, {
|
@@ -2570,7 +2570,7 @@ export declare const VDateInput: {
|
|
2570
2570
|
disabled: boolean | null;
|
2571
2571
|
readonly: boolean | null;
|
2572
2572
|
messages: string | readonly string[];
|
2573
|
-
rules: readonly import("../../
|
2573
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2574
2574
|
focused: boolean;
|
2575
2575
|
errorMessages: string | readonly string[] | null;
|
2576
2576
|
maxErrors: string | number;
|
@@ -2612,7 +2612,7 @@ export declare const VDateInput: {
|
|
2612
2612
|
disabled: boolean | null;
|
2613
2613
|
readonly: boolean | null;
|
2614
2614
|
messages: string | readonly string[];
|
2615
|
-
rules: readonly import("../../
|
2615
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2616
2616
|
focused: boolean;
|
2617
2617
|
errorMessages: string | readonly string[] | null;
|
2618
2618
|
maxErrors: string | number;
|
@@ -2628,7 +2628,7 @@ export declare const VDateInput: {
|
|
2628
2628
|
disabled: boolean | null;
|
2629
2629
|
readonly: boolean | null;
|
2630
2630
|
messages: string | readonly string[];
|
2631
|
-
rules: readonly import("../../
|
2631
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2632
2632
|
focused: boolean;
|
2633
2633
|
errorMessages: string | readonly string[] | null;
|
2634
2634
|
maxErrors: string | number;
|
@@ -2653,9 +2653,9 @@ export declare const VDateInput: {
|
|
2653
2653
|
baseColor?: string | undefined;
|
2654
2654
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2655
2655
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2656
|
-
iconColor?: string | boolean | undefined;
|
2657
2656
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2658
2657
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2658
|
+
iconColor?: string | boolean | undefined;
|
2659
2659
|
hint?: string | undefined;
|
2660
2660
|
hideDetails?: boolean | "auto" | undefined;
|
2661
2661
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2667,7 +2667,7 @@ export declare const VDateInput: {
|
|
2667
2667
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2668
2668
|
modelValue?: unknown;
|
2669
2669
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2670
|
-
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "
|
2670
|
+
}, import("../../components/VInput/VInput.js").VInputSlots>, "name" | "id" | "width" | "color" | "maxWidth" | "minWidth" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "validateOn" | "validationValue" | "onUpdate:modelValue" | "baseColor" | "prependIcon" | "appendIcon" | "v-slot:prepend" | "v-slot:append" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
2671
2671
|
$: import("vue").ComponentInternalInstance;
|
2672
2672
|
$data: {};
|
2673
2673
|
$props: Partial<{
|
@@ -2714,13 +2714,13 @@ export declare const VDateInput: {
|
|
2714
2714
|
rounded?: string | number | boolean | undefined;
|
2715
2715
|
baseColor?: string | undefined;
|
2716
2716
|
bgColor?: string | undefined;
|
2717
|
-
iconColor?: string | boolean | undefined;
|
2718
2717
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2719
2718
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2720
2719
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2721
2720
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2722
2721
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2723
2722
|
centerAffix?: boolean | undefined;
|
2723
|
+
iconColor?: string | boolean | undefined;
|
2724
2724
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine">;
|
2725
2725
|
$attrs: {
|
2726
2726
|
[x: string]: unknown;
|
@@ -2773,13 +2773,13 @@ export declare const VDateInput: {
|
|
2773
2773
|
rounded?: string | number | boolean | undefined;
|
2774
2774
|
baseColor?: string | undefined;
|
2775
2775
|
bgColor?: string | undefined;
|
2776
|
-
iconColor?: string | boolean | undefined;
|
2777
2776
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2778
2777
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2779
2778
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2780
2779
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2781
2780
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2782
2781
|
centerAffix?: boolean | undefined;
|
2782
|
+
iconColor?: string | boolean | undefined;
|
2783
2783
|
} & {
|
2784
2784
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2785
2785
|
}, {
|
@@ -2883,13 +2883,13 @@ export declare const VDateInput: {
|
|
2883
2883
|
rounded?: string | number | boolean | undefined;
|
2884
2884
|
baseColor?: string | undefined;
|
2885
2885
|
bgColor?: string | undefined;
|
2886
|
-
iconColor?: string | boolean | undefined;
|
2887
2886
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2888
2887
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2889
2888
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2890
2889
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2891
2890
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2892
2891
|
centerAffix?: boolean | undefined;
|
2892
|
+
iconColor?: string | boolean | undefined;
|
2893
2893
|
} & {
|
2894
2894
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2895
2895
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2898,7 +2898,7 @@ export declare const VDateInput: {
|
|
2898
2898
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2899
2899
|
modelValue?: unknown;
|
2900
2900
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2901
|
-
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "
|
2901
|
+
}, import("../../components/VField/VField.js").VFieldSlots>, "id" | "color" | "loading" | "label" | "class" | "theme" | "$children" | "v-slots" | "v-slot:default" | keyof import("vue").VNodeProps | "onUpdate:focused" | "modelValue" | "onUpdate:modelValue" | "baseColor" | "bgColor" | "v-slot:loader" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
2902
2902
|
_allExposed: {
|
2903
2903
|
reset: () => Promise<void>;
|
2904
2904
|
resetValidation: () => Promise<void>;
|
@@ -2936,7 +2936,7 @@ export declare const VDateInput: {
|
|
2936
2936
|
tag: string | import("../../util/index.js").JSXComponent;
|
2937
2937
|
landscape: boolean;
|
2938
2938
|
messages: string | readonly string[];
|
2939
|
-
rules: readonly import("../../
|
2939
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
2940
2940
|
focused: boolean;
|
2941
2941
|
errorMessages: string | readonly string[] | null;
|
2942
2942
|
maxErrors: string | number;
|
@@ -3018,7 +3018,7 @@ export declare const VDateInput: {
|
|
3018
3018
|
tag: string | import("../../util/index.js").JSXComponent;
|
3019
3019
|
landscape: boolean;
|
3020
3020
|
messages: string | readonly string[];
|
3021
|
-
rules: readonly import("../../
|
3021
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3022
3022
|
focused: boolean;
|
3023
3023
|
errorMessages: string | readonly string[] | null;
|
3024
3024
|
maxErrors: string | number;
|
@@ -3089,7 +3089,6 @@ export declare const VDateInput: {
|
|
3089
3089
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3090
3090
|
controlHeight?: string | number | undefined;
|
3091
3091
|
headerColor?: string | undefined;
|
3092
|
-
iconColor?: string | boolean | undefined;
|
3093
3092
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3094
3093
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3095
3094
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3098,6 +3097,7 @@ export declare const VDateInput: {
|
|
3098
3097
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3099
3098
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3100
3099
|
centerAffix?: boolean | undefined;
|
3100
|
+
iconColor?: string | boolean | undefined;
|
3101
3101
|
hint?: string | undefined;
|
3102
3102
|
hideDetails?: boolean | "auto" | undefined;
|
3103
3103
|
suffix?: string | undefined;
|
@@ -3185,7 +3185,7 @@ export declare const VDateInput: {
|
|
3185
3185
|
disabled: boolean;
|
3186
3186
|
readonly: boolean | null;
|
3187
3187
|
messages: string | readonly string[];
|
3188
|
-
rules: readonly import("../../
|
3188
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3189
3189
|
focused: boolean;
|
3190
3190
|
errorMessages: string | readonly string[] | null;
|
3191
3191
|
maxErrors: string | number;
|
@@ -3216,7 +3216,7 @@ export declare const VDateInput: {
|
|
3216
3216
|
disabled: boolean;
|
3217
3217
|
readonly: boolean | null;
|
3218
3218
|
messages: string | readonly string[];
|
3219
|
-
rules: readonly import("../../
|
3219
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3220
3220
|
focused: boolean;
|
3221
3221
|
errorMessages: string | readonly string[] | null;
|
3222
3222
|
maxErrors: string | number;
|
@@ -3255,7 +3255,6 @@ export declare const VDateInput: {
|
|
3255
3255
|
bgColor?: string | undefined;
|
3256
3256
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3257
3257
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3258
|
-
iconColor?: string | boolean | undefined;
|
3259
3258
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3260
3259
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3261
3260
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3264,6 +3263,7 @@ export declare const VDateInput: {
|
|
3264
3263
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3265
3264
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3266
3265
|
centerAffix?: boolean | undefined;
|
3266
|
+
iconColor?: string | boolean | undefined;
|
3267
3267
|
hint?: string | undefined;
|
3268
3268
|
hideDetails?: boolean | "auto" | undefined;
|
3269
3269
|
suffix?: string | undefined;
|
@@ -3367,7 +3367,7 @@ export declare const VDateInput: {
|
|
3367
3367
|
disabled: boolean;
|
3368
3368
|
readonly: boolean | null;
|
3369
3369
|
messages: string | readonly string[];
|
3370
|
-
rules: readonly import("../../
|
3370
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3371
3371
|
focused: boolean;
|
3372
3372
|
errorMessages: string | readonly string[] | null;
|
3373
3373
|
maxErrors: string | number;
|
@@ -3407,7 +3407,6 @@ export declare const VDateInput: {
|
|
3407
3407
|
bgColor?: string | undefined;
|
3408
3408
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3409
3409
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3410
|
-
iconColor?: string | boolean | undefined;
|
3411
3410
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3412
3411
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3413
3412
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3416,6 +3415,7 @@ export declare const VDateInput: {
|
|
3416
3415
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3417
3416
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3418
3417
|
centerAffix?: boolean | undefined;
|
3418
|
+
iconColor?: string | boolean | undefined;
|
3419
3419
|
hint?: string | undefined;
|
3420
3420
|
hideDetails?: boolean | "auto" | undefined;
|
3421
3421
|
suffix?: string | undefined;
|
@@ -3490,7 +3490,7 @@ export declare const VDateInput: {
|
|
3490
3490
|
disabled: boolean | null;
|
3491
3491
|
readonly: boolean | null;
|
3492
3492
|
messages: string | readonly string[];
|
3493
|
-
rules: readonly import("../../
|
3493
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3494
3494
|
focused: boolean;
|
3495
3495
|
errorMessages: string | readonly string[] | null;
|
3496
3496
|
maxErrors: string | number;
|
@@ -3506,7 +3506,7 @@ export declare const VDateInput: {
|
|
3506
3506
|
disabled: boolean | null;
|
3507
3507
|
readonly: boolean | null;
|
3508
3508
|
messages: string | readonly string[];
|
3509
|
-
rules: readonly import("../../
|
3509
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3510
3510
|
focused: boolean;
|
3511
3511
|
errorMessages: string | readonly string[] | null;
|
3512
3512
|
maxErrors: string | number;
|
@@ -3530,9 +3530,9 @@ export declare const VDateInput: {
|
|
3530
3530
|
baseColor?: string | undefined;
|
3531
3531
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3532
3532
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3533
|
-
iconColor?: string | boolean | undefined;
|
3534
3533
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3535
3534
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3535
|
+
iconColor?: string | boolean | undefined;
|
3536
3536
|
hint?: string | undefined;
|
3537
3537
|
hideDetails?: boolean | "auto" | undefined;
|
3538
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">;
|
@@ -3561,7 +3561,7 @@ export declare const VDateInput: {
|
|
3561
3561
|
disabled: boolean | null;
|
3562
3562
|
readonly: boolean | null;
|
3563
3563
|
messages: string | readonly string[];
|
3564
|
-
rules: readonly import("../../
|
3564
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3565
3565
|
focused: boolean;
|
3566
3566
|
errorMessages: string | readonly string[] | null;
|
3567
3567
|
maxErrors: string | number;
|
@@ -3586,9 +3586,9 @@ export declare const VDateInput: {
|
|
3586
3586
|
baseColor?: string | undefined;
|
3587
3587
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3588
3588
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3589
|
-
iconColor?: string | boolean | undefined;
|
3590
3589
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3591
3590
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3591
|
+
iconColor?: string | boolean | undefined;
|
3592
3592
|
hint?: string | undefined;
|
3593
3593
|
hideDetails?: boolean | "auto" | undefined;
|
3594
3594
|
} & {}, {
|
@@ -3606,7 +3606,7 @@ export declare const VDateInput: {
|
|
3606
3606
|
disabled: boolean | null;
|
3607
3607
|
readonly: boolean | null;
|
3608
3608
|
messages: string | readonly string[];
|
3609
|
-
rules: readonly import("../../
|
3609
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3610
3610
|
focused: boolean;
|
3611
3611
|
errorMessages: string | readonly string[] | null;
|
3612
3612
|
maxErrors: string | number;
|
@@ -3648,7 +3648,7 @@ export declare const VDateInput: {
|
|
3648
3648
|
disabled: boolean | null;
|
3649
3649
|
readonly: boolean | null;
|
3650
3650
|
messages: string | readonly string[];
|
3651
|
-
rules: readonly import("../../
|
3651
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3652
3652
|
focused: boolean;
|
3653
3653
|
errorMessages: string | readonly string[] | null;
|
3654
3654
|
maxErrors: string | number;
|
@@ -3664,7 +3664,7 @@ export declare const VDateInput: {
|
|
3664
3664
|
disabled: boolean | null;
|
3665
3665
|
readonly: boolean | null;
|
3666
3666
|
messages: string | readonly string[];
|
3667
|
-
rules: readonly import("../../
|
3667
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3668
3668
|
focused: boolean;
|
3669
3669
|
errorMessages: string | readonly string[] | null;
|
3670
3670
|
maxErrors: string | number;
|
@@ -3689,9 +3689,9 @@ export declare const VDateInput: {
|
|
3689
3689
|
baseColor?: string | undefined;
|
3690
3690
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3691
3691
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3692
|
-
iconColor?: string | boolean | undefined;
|
3693
3692
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3694
3693
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3694
|
+
iconColor?: string | boolean | undefined;
|
3695
3695
|
hint?: string | undefined;
|
3696
3696
|
hideDetails?: boolean | "auto" | undefined;
|
3697
3697
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3703,7 +3703,7 @@ export declare const VDateInput: {
|
|
3703
3703
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3704
3704
|
modelValue?: unknown;
|
3705
3705
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
3707
3707
|
$: import("vue").ComponentInternalInstance;
|
3708
3708
|
$data: {};
|
3709
3709
|
$props: Partial<{
|
@@ -3750,13 +3750,13 @@ export declare const VDateInput: {
|
|
3750
3750
|
rounded?: string | number | boolean | undefined;
|
3751
3751
|
baseColor?: string | undefined;
|
3752
3752
|
bgColor?: string | undefined;
|
3753
|
-
iconColor?: string | boolean | undefined;
|
3754
3753
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3755
3754
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3756
3755
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3757
3756
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3758
3757
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3759
3758
|
centerAffix?: boolean | undefined;
|
3759
|
+
iconColor?: string | boolean | undefined;
|
3760
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">;
|
3761
3761
|
$attrs: {
|
3762
3762
|
[x: string]: unknown;
|
@@ -3809,13 +3809,13 @@ export declare const VDateInput: {
|
|
3809
3809
|
rounded?: string | number | boolean | undefined;
|
3810
3810
|
baseColor?: string | undefined;
|
3811
3811
|
bgColor?: string | undefined;
|
3812
|
-
iconColor?: string | boolean | undefined;
|
3813
3812
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3814
3813
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3815
3814
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3816
3815
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3817
3816
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3818
3817
|
centerAffix?: boolean | undefined;
|
3818
|
+
iconColor?: string | boolean | undefined;
|
3819
3819
|
} & {
|
3820
3820
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3821
3821
|
}, {
|
@@ -3919,13 +3919,13 @@ export declare const VDateInput: {
|
|
3919
3919
|
rounded?: string | number | boolean | undefined;
|
3920
3920
|
baseColor?: string | undefined;
|
3921
3921
|
bgColor?: string | undefined;
|
3922
|
-
iconColor?: string | boolean | undefined;
|
3923
3922
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3924
3923
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3925
3924
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3926
3925
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3927
3926
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3928
3927
|
centerAffix?: boolean | undefined;
|
3928
|
+
iconColor?: string | boolean | undefined;
|
3929
3929
|
} & {
|
3930
3930
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3931
3931
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3934,7 +3934,7 @@ export declare const VDateInput: {
|
|
3934
3934
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3935
3935
|
modelValue?: unknown;
|
3936
3936
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "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}`> & {
|
3938
3938
|
_allExposed: {
|
3939
3939
|
reset: () => Promise<void>;
|
3940
3940
|
resetValidation: () => Promise<void>;
|
@@ -3963,7 +3963,7 @@ export declare const VDateInput: {
|
|
3963
3963
|
disabled: boolean;
|
3964
3964
|
readonly: boolean | null;
|
3965
3965
|
messages: string | readonly string[];
|
3966
|
-
rules: readonly import("../../
|
3966
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
3967
3967
|
focused: boolean;
|
3968
3968
|
errorMessages: string | readonly string[] | null;
|
3969
3969
|
maxErrors: string | number;
|
@@ -4031,7 +4031,7 @@ export declare const VDateInput: {
|
|
4031
4031
|
disabled: boolean;
|
4032
4032
|
readonly: boolean | null;
|
4033
4033
|
messages: string | readonly string[];
|
4034
|
-
rules: readonly import("../../
|
4034
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4035
4035
|
focused: boolean;
|
4036
4036
|
errorMessages: string | readonly string[] | null;
|
4037
4037
|
maxErrors: string | number;
|
@@ -4062,7 +4062,7 @@ export declare const VDateInput: {
|
|
4062
4062
|
disabled: boolean;
|
4063
4063
|
readonly: boolean | null;
|
4064
4064
|
messages: string | readonly string[];
|
4065
|
-
rules: readonly import("../../
|
4065
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4066
4066
|
focused: boolean;
|
4067
4067
|
errorMessages: string | readonly string[] | null;
|
4068
4068
|
maxErrors: string | number;
|
@@ -4102,7 +4102,6 @@ export declare const VDateInput: {
|
|
4102
4102
|
bgColor?: string | undefined;
|
4103
4103
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4104
4104
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4105
|
-
iconColor?: string | boolean | undefined;
|
4106
4105
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4107
4106
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4108
4107
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4111,6 +4110,7 @@ export declare const VDateInput: {
|
|
4111
4110
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4112
4111
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4113
4112
|
centerAffix?: boolean | undefined;
|
4113
|
+
iconColor?: string | boolean | undefined;
|
4114
4114
|
hint?: string | undefined;
|
4115
4115
|
hideDetails?: boolean | "auto" | undefined;
|
4116
4116
|
suffix?: string | undefined;
|
@@ -4185,7 +4185,7 @@ export declare const VDateInput: {
|
|
4185
4185
|
disabled: boolean | null;
|
4186
4186
|
readonly: boolean | null;
|
4187
4187
|
messages: string | readonly string[];
|
4188
|
-
rules: readonly import("../../
|
4188
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4189
4189
|
focused: boolean;
|
4190
4190
|
errorMessages: string | readonly string[] | null;
|
4191
4191
|
maxErrors: string | number;
|
@@ -4201,7 +4201,7 @@ export declare const VDateInput: {
|
|
4201
4201
|
disabled: boolean | null;
|
4202
4202
|
readonly: boolean | null;
|
4203
4203
|
messages: string | readonly string[];
|
4204
|
-
rules: readonly import("../../
|
4204
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4205
4205
|
focused: boolean;
|
4206
4206
|
errorMessages: string | readonly string[] | null;
|
4207
4207
|
maxErrors: string | number;
|
@@ -4225,9 +4225,9 @@ export declare const VDateInput: {
|
|
4225
4225
|
baseColor?: string | undefined;
|
4226
4226
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4227
4227
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4228
|
-
iconColor?: string | boolean | undefined;
|
4229
4228
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4230
4229
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4230
|
+
iconColor?: string | boolean | undefined;
|
4231
4231
|
hint?: string | undefined;
|
4232
4232
|
hideDetails?: boolean | "auto" | undefined;
|
4233
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">;
|
@@ -4256,7 +4256,7 @@ export declare const VDateInput: {
|
|
4256
4256
|
disabled: boolean | null;
|
4257
4257
|
readonly: boolean | null;
|
4258
4258
|
messages: string | readonly string[];
|
4259
|
-
rules: readonly import("../../
|
4259
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4260
4260
|
focused: boolean;
|
4261
4261
|
errorMessages: string | readonly string[] | null;
|
4262
4262
|
maxErrors: string | number;
|
@@ -4281,9 +4281,9 @@ export declare const VDateInput: {
|
|
4281
4281
|
baseColor?: string | undefined;
|
4282
4282
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4283
4283
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4284
|
-
iconColor?: string | boolean | undefined;
|
4285
4284
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4286
4285
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4286
|
+
iconColor?: string | boolean | undefined;
|
4287
4287
|
hint?: string | undefined;
|
4288
4288
|
hideDetails?: boolean | "auto" | undefined;
|
4289
4289
|
} & {}, {
|
@@ -4301,7 +4301,7 @@ export declare const VDateInput: {
|
|
4301
4301
|
disabled: boolean | null;
|
4302
4302
|
readonly: boolean | null;
|
4303
4303
|
messages: string | readonly string[];
|
4304
|
-
rules: readonly import("../../
|
4304
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4305
4305
|
focused: boolean;
|
4306
4306
|
errorMessages: string | readonly string[] | null;
|
4307
4307
|
maxErrors: string | number;
|
@@ -4343,7 +4343,7 @@ export declare const VDateInput: {
|
|
4343
4343
|
disabled: boolean | null;
|
4344
4344
|
readonly: boolean | null;
|
4345
4345
|
messages: string | readonly string[];
|
4346
|
-
rules: readonly import("../../
|
4346
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4347
4347
|
focused: boolean;
|
4348
4348
|
errorMessages: string | readonly string[] | null;
|
4349
4349
|
maxErrors: string | number;
|
@@ -4359,7 +4359,7 @@ export declare const VDateInput: {
|
|
4359
4359
|
disabled: boolean | null;
|
4360
4360
|
readonly: boolean | null;
|
4361
4361
|
messages: string | readonly string[];
|
4362
|
-
rules: readonly import("../../
|
4362
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4363
4363
|
focused: boolean;
|
4364
4364
|
errorMessages: string | readonly string[] | null;
|
4365
4365
|
maxErrors: string | number;
|
@@ -4384,9 +4384,9 @@ export declare const VDateInput: {
|
|
4384
4384
|
baseColor?: string | undefined;
|
4385
4385
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4386
4386
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4387
|
-
iconColor?: string | boolean | undefined;
|
4388
4387
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4389
4388
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4389
|
+
iconColor?: string | boolean | undefined;
|
4390
4390
|
hint?: string | undefined;
|
4391
4391
|
hideDetails?: boolean | "auto" | undefined;
|
4392
4392
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4398,7 +4398,7 @@ export declare const VDateInput: {
|
|
4398
4398
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4399
4399
|
modelValue?: unknown;
|
4400
4400
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
4402
4402
|
$: import("vue").ComponentInternalInstance;
|
4403
4403
|
$data: {};
|
4404
4404
|
$props: Partial<{
|
@@ -4445,13 +4445,13 @@ export declare const VDateInput: {
|
|
4445
4445
|
rounded?: string | number | boolean | undefined;
|
4446
4446
|
baseColor?: string | undefined;
|
4447
4447
|
bgColor?: string | undefined;
|
4448
|
-
iconColor?: string | boolean | undefined;
|
4449
4448
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4450
4449
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4451
4450
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4452
4451
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4453
4452
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4454
4453
|
centerAffix?: boolean | undefined;
|
4454
|
+
iconColor?: string | boolean | undefined;
|
4455
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">;
|
4456
4456
|
$attrs: {
|
4457
4457
|
[x: string]: unknown;
|
@@ -4504,13 +4504,13 @@ export declare const VDateInput: {
|
|
4504
4504
|
rounded?: string | number | boolean | undefined;
|
4505
4505
|
baseColor?: string | undefined;
|
4506
4506
|
bgColor?: string | undefined;
|
4507
|
-
iconColor?: string | boolean | undefined;
|
4508
4507
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4509
4508
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4510
4509
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4511
4510
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4512
4511
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4513
4512
|
centerAffix?: boolean | undefined;
|
4513
|
+
iconColor?: string | boolean | undefined;
|
4514
4514
|
} & {
|
4515
4515
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4516
4516
|
}, {
|
@@ -4614,13 +4614,13 @@ export declare const VDateInput: {
|
|
4614
4614
|
rounded?: string | number | boolean | undefined;
|
4615
4615
|
baseColor?: string | undefined;
|
4616
4616
|
bgColor?: string | undefined;
|
4617
|
-
iconColor?: string | boolean | undefined;
|
4618
4617
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4619
4618
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4620
4619
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4621
4620
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4622
4621
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4623
4622
|
centerAffix?: boolean | undefined;
|
4623
|
+
iconColor?: string | boolean | undefined;
|
4624
4624
|
} & {
|
4625
4625
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4626
4626
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4629,7 +4629,7 @@ export declare const VDateInput: {
|
|
4629
4629
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4630
4630
|
modelValue?: unknown;
|
4631
4631
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "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}`> & {
|
4633
4633
|
_allExposed: {
|
4634
4634
|
reset: () => Promise<void>;
|
4635
4635
|
resetValidation: () => Promise<void>;
|
@@ -4640,7 +4640,7 @@ export declare const VDateInput: {
|
|
4640
4640
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
4641
4641
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
4642
4642
|
} | {};
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "iconColor" | "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}`> & {
|
4644
4644
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
4645
4645
|
$: import("vue").ComponentInternalInstance;
|
4646
4646
|
$data: {};
|
@@ -4651,7 +4651,7 @@ export declare const VDateInput: {
|
|
4651
4651
|
disabled: boolean | null;
|
4652
4652
|
readonly: boolean | null;
|
4653
4653
|
messages: string | readonly string[];
|
4654
|
-
rules: readonly import("../../
|
4654
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4655
4655
|
focused: boolean;
|
4656
4656
|
errorMessages: string | readonly string[] | null;
|
4657
4657
|
maxErrors: string | number;
|
@@ -4667,7 +4667,7 @@ export declare const VDateInput: {
|
|
4667
4667
|
disabled: boolean | null;
|
4668
4668
|
readonly: boolean | null;
|
4669
4669
|
messages: string | readonly string[];
|
4670
|
-
rules: readonly import("../../
|
4670
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4671
4671
|
focused: boolean;
|
4672
4672
|
errorMessages: string | readonly string[] | null;
|
4673
4673
|
maxErrors: string | number;
|
@@ -4691,9 +4691,9 @@ export declare const VDateInput: {
|
|
4691
4691
|
baseColor?: string | undefined;
|
4692
4692
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4693
4693
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4694
|
-
iconColor?: string | boolean | undefined;
|
4695
4694
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4696
4695
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4696
|
+
iconColor?: string | boolean | undefined;
|
4697
4697
|
hint?: string | undefined;
|
4698
4698
|
hideDetails?: boolean | "auto" | undefined;
|
4699
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">;
|
@@ -4722,7 +4722,7 @@ export declare const VDateInput: {
|
|
4722
4722
|
disabled: boolean | null;
|
4723
4723
|
readonly: boolean | null;
|
4724
4724
|
messages: string | readonly string[];
|
4725
|
-
rules: readonly import("../../
|
4725
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4726
4726
|
focused: boolean;
|
4727
4727
|
errorMessages: string | readonly string[] | null;
|
4728
4728
|
maxErrors: string | number;
|
@@ -4747,9 +4747,9 @@ export declare const VDateInput: {
|
|
4747
4747
|
baseColor?: string | undefined;
|
4748
4748
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4749
4749
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4750
|
-
iconColor?: string | boolean | undefined;
|
4751
4750
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4752
4751
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4752
|
+
iconColor?: string | boolean | undefined;
|
4753
4753
|
hint?: string | undefined;
|
4754
4754
|
hideDetails?: boolean | "auto" | undefined;
|
4755
4755
|
} & {}, {
|
@@ -4767,7 +4767,7 @@ export declare const VDateInput: {
|
|
4767
4767
|
disabled: boolean | null;
|
4768
4768
|
readonly: boolean | null;
|
4769
4769
|
messages: string | readonly string[];
|
4770
|
-
rules: readonly import("../../
|
4770
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4771
4771
|
focused: boolean;
|
4772
4772
|
errorMessages: string | readonly string[] | null;
|
4773
4773
|
maxErrors: string | number;
|
@@ -4809,7 +4809,7 @@ export declare const VDateInput: {
|
|
4809
4809
|
disabled: boolean | null;
|
4810
4810
|
readonly: boolean | null;
|
4811
4811
|
messages: string | readonly string[];
|
4812
|
-
rules: readonly import("../../
|
4812
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4813
4813
|
focused: boolean;
|
4814
4814
|
errorMessages: string | readonly string[] | null;
|
4815
4815
|
maxErrors: string | number;
|
@@ -4825,7 +4825,7 @@ export declare const VDateInput: {
|
|
4825
4825
|
disabled: boolean | null;
|
4826
4826
|
readonly: boolean | null;
|
4827
4827
|
messages: string | readonly string[];
|
4828
|
-
rules: readonly import("../../
|
4828
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
4829
4829
|
focused: boolean;
|
4830
4830
|
errorMessages: string | readonly string[] | null;
|
4831
4831
|
maxErrors: string | number;
|
@@ -4850,9 +4850,9 @@ export declare const VDateInput: {
|
|
4850
4850
|
baseColor?: string | undefined;
|
4851
4851
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4852
4852
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4853
|
-
iconColor?: string | boolean | undefined;
|
4854
4853
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4855
4854
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4855
|
+
iconColor?: string | boolean | undefined;
|
4856
4856
|
hint?: string | undefined;
|
4857
4857
|
hideDetails?: boolean | "auto" | undefined;
|
4858
4858
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4864,7 +4864,7 @@ export declare const VDateInput: {
|
|
4864
4864
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4865
4865
|
modelValue?: unknown;
|
4866
4866
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
4868
4868
|
$: import("vue").ComponentInternalInstance;
|
4869
4869
|
$data: {};
|
4870
4870
|
$props: Partial<{
|
@@ -4911,13 +4911,13 @@ export declare const VDateInput: {
|
|
4911
4911
|
rounded?: string | number | boolean | undefined;
|
4912
4912
|
baseColor?: string | undefined;
|
4913
4913
|
bgColor?: string | undefined;
|
4914
|
-
iconColor?: string | boolean | undefined;
|
4915
4914
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4916
4915
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4917
4916
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4918
4917
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4919
4918
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4920
4919
|
centerAffix?: boolean | undefined;
|
4920
|
+
iconColor?: string | boolean | undefined;
|
4921
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">;
|
4922
4922
|
$attrs: {
|
4923
4923
|
[x: string]: unknown;
|
@@ -4970,13 +4970,13 @@ export declare const VDateInput: {
|
|
4970
4970
|
rounded?: string | number | boolean | undefined;
|
4971
4971
|
baseColor?: string | undefined;
|
4972
4972
|
bgColor?: string | undefined;
|
4973
|
-
iconColor?: string | boolean | undefined;
|
4974
4973
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4975
4974
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4976
4975
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4977
4976
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4978
4977
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4979
4978
|
centerAffix?: boolean | undefined;
|
4979
|
+
iconColor?: string | boolean | undefined;
|
4980
4980
|
} & {
|
4981
4981
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4982
4982
|
}, {
|
@@ -5080,13 +5080,13 @@ export declare const VDateInput: {
|
|
5080
5080
|
rounded?: string | number | boolean | undefined;
|
5081
5081
|
baseColor?: string | undefined;
|
5082
5082
|
bgColor?: string | undefined;
|
5083
|
-
iconColor?: string | boolean | undefined;
|
5084
5083
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5085
5084
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5086
5085
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5087
5086
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5088
5087
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5089
5088
|
centerAffix?: boolean | undefined;
|
5089
|
+
iconColor?: string | boolean | undefined;
|
5090
5090
|
} & {
|
5091
5091
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5092
5092
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5095,7 +5095,7 @@ export declare const VDateInput: {
|
|
5095
5095
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5096
5096
|
modelValue?: unknown;
|
5097
5097
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "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}`> & {
|
5099
5099
|
_allExposed: {
|
5100
5100
|
reset: () => Promise<void>;
|
5101
5101
|
resetValidation: () => Promise<void>;
|
@@ -5128,7 +5128,7 @@ export declare const VDateInput: {
|
|
5128
5128
|
tag: string | import("../../util/index.js").JSXComponent;
|
5129
5129
|
landscape: boolean;
|
5130
5130
|
messages: string | readonly string[];
|
5131
|
-
rules: readonly import("../../
|
5131
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5132
5132
|
focused: boolean;
|
5133
5133
|
errorMessages: string | readonly string[] | null;
|
5134
5134
|
maxErrors: string | number;
|
@@ -5189,7 +5189,7 @@ export declare const VDateInput: {
|
|
5189
5189
|
tag: string | import("../../util/index.js").JSXComponent;
|
5190
5190
|
landscape: boolean;
|
5191
5191
|
messages: string | readonly string[];
|
5192
|
-
rules: readonly import("../../
|
5192
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5193
5193
|
focused: boolean;
|
5194
5194
|
errorMessages: string | readonly string[] | null;
|
5195
5195
|
maxErrors: string | number;
|
@@ -5260,7 +5260,6 @@ export declare const VDateInput: {
|
|
5260
5260
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5261
5261
|
controlHeight?: string | number | undefined;
|
5262
5262
|
headerColor?: string | undefined;
|
5263
|
-
iconColor?: string | boolean | undefined;
|
5264
5263
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5265
5264
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5266
5265
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5269,6 +5268,7 @@ export declare const VDateInput: {
|
|
5269
5268
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5270
5269
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5271
5270
|
centerAffix?: boolean | undefined;
|
5271
|
+
iconColor?: string | boolean | undefined;
|
5272
5272
|
hint?: string | undefined;
|
5273
5273
|
hideDetails?: boolean | "auto" | undefined;
|
5274
5274
|
suffix?: string | undefined;
|
@@ -5356,7 +5356,7 @@ export declare const VDateInput: {
|
|
5356
5356
|
disabled: boolean;
|
5357
5357
|
readonly: boolean | null;
|
5358
5358
|
messages: string | readonly string[];
|
5359
|
-
rules: readonly import("../../
|
5359
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5360
5360
|
focused: boolean;
|
5361
5361
|
errorMessages: string | readonly string[] | null;
|
5362
5362
|
maxErrors: string | number;
|
@@ -5387,7 +5387,7 @@ export declare const VDateInput: {
|
|
5387
5387
|
disabled: boolean;
|
5388
5388
|
readonly: boolean | null;
|
5389
5389
|
messages: string | readonly string[];
|
5390
|
-
rules: readonly import("../../
|
5390
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5391
5391
|
focused: boolean;
|
5392
5392
|
errorMessages: string | readonly string[] | null;
|
5393
5393
|
maxErrors: string | number;
|
@@ -5426,7 +5426,6 @@ export declare const VDateInput: {
|
|
5426
5426
|
bgColor?: string | undefined;
|
5427
5427
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5428
5428
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5429
|
-
iconColor?: string | boolean | undefined;
|
5430
5429
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5431
5430
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5432
5431
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5435,6 +5434,7 @@ export declare const VDateInput: {
|
|
5435
5434
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5436
5435
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5437
5436
|
centerAffix?: boolean | undefined;
|
5437
|
+
iconColor?: string | boolean | undefined;
|
5438
5438
|
hint?: string | undefined;
|
5439
5439
|
hideDetails?: boolean | "auto" | undefined;
|
5440
5440
|
suffix?: string | undefined;
|
@@ -5538,7 +5538,7 @@ export declare const VDateInput: {
|
|
5538
5538
|
disabled: boolean;
|
5539
5539
|
readonly: boolean | null;
|
5540
5540
|
messages: string | readonly string[];
|
5541
|
-
rules: readonly import("../../
|
5541
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5542
5542
|
focused: boolean;
|
5543
5543
|
errorMessages: string | readonly string[] | null;
|
5544
5544
|
maxErrors: string | number;
|
@@ -5578,7 +5578,6 @@ export declare const VDateInput: {
|
|
5578
5578
|
bgColor?: string | undefined;
|
5579
5579
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5580
5580
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5581
|
-
iconColor?: string | boolean | undefined;
|
5582
5581
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5583
5582
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5584
5583
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5587,6 +5586,7 @@ export declare const VDateInput: {
|
|
5587
5586
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5588
5587
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5589
5588
|
centerAffix?: boolean | undefined;
|
5589
|
+
iconColor?: string | boolean | undefined;
|
5590
5590
|
hint?: string | undefined;
|
5591
5591
|
hideDetails?: boolean | "auto" | undefined;
|
5592
5592
|
suffix?: string | undefined;
|
@@ -5661,7 +5661,7 @@ export declare const VDateInput: {
|
|
5661
5661
|
disabled: boolean | null;
|
5662
5662
|
readonly: boolean | null;
|
5663
5663
|
messages: string | readonly string[];
|
5664
|
-
rules: readonly import("../../
|
5664
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5665
5665
|
focused: boolean;
|
5666
5666
|
errorMessages: string | readonly string[] | null;
|
5667
5667
|
maxErrors: string | number;
|
@@ -5677,7 +5677,7 @@ export declare const VDateInput: {
|
|
5677
5677
|
disabled: boolean | null;
|
5678
5678
|
readonly: boolean | null;
|
5679
5679
|
messages: string | readonly string[];
|
5680
|
-
rules: readonly import("../../
|
5680
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5681
5681
|
focused: boolean;
|
5682
5682
|
errorMessages: string | readonly string[] | null;
|
5683
5683
|
maxErrors: string | number;
|
@@ -5701,9 +5701,9 @@ export declare const VDateInput: {
|
|
5701
5701
|
baseColor?: string | undefined;
|
5702
5702
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5703
5703
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5704
|
-
iconColor?: string | boolean | undefined;
|
5705
5704
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5706
5705
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5706
|
+
iconColor?: string | boolean | undefined;
|
5707
5707
|
hint?: string | undefined;
|
5708
5708
|
hideDetails?: boolean | "auto" | undefined;
|
5709
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">;
|
@@ -5732,7 +5732,7 @@ export declare const VDateInput: {
|
|
5732
5732
|
disabled: boolean | null;
|
5733
5733
|
readonly: boolean | null;
|
5734
5734
|
messages: string | readonly string[];
|
5735
|
-
rules: readonly import("../../
|
5735
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5736
5736
|
focused: boolean;
|
5737
5737
|
errorMessages: string | readonly string[] | null;
|
5738
5738
|
maxErrors: string | number;
|
@@ -5757,9 +5757,9 @@ export declare const VDateInput: {
|
|
5757
5757
|
baseColor?: string | undefined;
|
5758
5758
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5759
5759
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5760
|
-
iconColor?: string | boolean | undefined;
|
5761
5760
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5762
5761
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5762
|
+
iconColor?: string | boolean | undefined;
|
5763
5763
|
hint?: string | undefined;
|
5764
5764
|
hideDetails?: boolean | "auto" | undefined;
|
5765
5765
|
} & {}, {
|
@@ -5777,7 +5777,7 @@ export declare const VDateInput: {
|
|
5777
5777
|
disabled: boolean | null;
|
5778
5778
|
readonly: boolean | null;
|
5779
5779
|
messages: string | readonly string[];
|
5780
|
-
rules: readonly import("../../
|
5780
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5781
5781
|
focused: boolean;
|
5782
5782
|
errorMessages: string | readonly string[] | null;
|
5783
5783
|
maxErrors: string | number;
|
@@ -5819,7 +5819,7 @@ export declare const VDateInput: {
|
|
5819
5819
|
disabled: boolean | null;
|
5820
5820
|
readonly: boolean | null;
|
5821
5821
|
messages: string | readonly string[];
|
5822
|
-
rules: readonly import("../../
|
5822
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5823
5823
|
focused: boolean;
|
5824
5824
|
errorMessages: string | readonly string[] | null;
|
5825
5825
|
maxErrors: string | number;
|
@@ -5835,7 +5835,7 @@ export declare const VDateInput: {
|
|
5835
5835
|
disabled: boolean | null;
|
5836
5836
|
readonly: boolean | null;
|
5837
5837
|
messages: string | readonly string[];
|
5838
|
-
rules: readonly import("../../
|
5838
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
5839
5839
|
focused: boolean;
|
5840
5840
|
errorMessages: string | readonly string[] | null;
|
5841
5841
|
maxErrors: string | number;
|
@@ -5860,9 +5860,9 @@ export declare const VDateInput: {
|
|
5860
5860
|
baseColor?: string | undefined;
|
5861
5861
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5862
5862
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5863
|
-
iconColor?: string | boolean | undefined;
|
5864
5863
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5865
5864
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5865
|
+
iconColor?: string | boolean | undefined;
|
5866
5866
|
hint?: string | undefined;
|
5867
5867
|
hideDetails?: boolean | "auto" | undefined;
|
5868
5868
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5874,7 +5874,7 @@ export declare const VDateInput: {
|
|
5874
5874
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5875
5875
|
modelValue?: unknown;
|
5876
5876
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
5878
5878
|
$: import("vue").ComponentInternalInstance;
|
5879
5879
|
$data: {};
|
5880
5880
|
$props: Partial<{
|
@@ -5921,13 +5921,13 @@ export declare const VDateInput: {
|
|
5921
5921
|
rounded?: string | number | boolean | undefined;
|
5922
5922
|
baseColor?: string | undefined;
|
5923
5923
|
bgColor?: string | undefined;
|
5924
|
-
iconColor?: string | boolean | undefined;
|
5925
5924
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5926
5925
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5927
5926
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5928
5927
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5929
5928
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5930
5929
|
centerAffix?: boolean | undefined;
|
5930
|
+
iconColor?: string | boolean | undefined;
|
5931
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">;
|
5932
5932
|
$attrs: {
|
5933
5933
|
[x: string]: unknown;
|
@@ -5980,13 +5980,13 @@ export declare const VDateInput: {
|
|
5980
5980
|
rounded?: string | number | boolean | undefined;
|
5981
5981
|
baseColor?: string | undefined;
|
5982
5982
|
bgColor?: string | undefined;
|
5983
|
-
iconColor?: string | boolean | undefined;
|
5984
5983
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5985
5984
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5986
5985
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5987
5986
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5988
5987
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5989
5988
|
centerAffix?: boolean | undefined;
|
5989
|
+
iconColor?: string | boolean | undefined;
|
5990
5990
|
} & {
|
5991
5991
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5992
5992
|
}, {
|
@@ -6090,13 +6090,13 @@ export declare const VDateInput: {
|
|
6090
6090
|
rounded?: string | number | boolean | undefined;
|
6091
6091
|
baseColor?: string | undefined;
|
6092
6092
|
bgColor?: string | undefined;
|
6093
|
-
iconColor?: string | boolean | undefined;
|
6094
6093
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6095
6094
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6096
6095
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6097
6096
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6098
6097
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6099
6098
|
centerAffix?: boolean | undefined;
|
6099
|
+
iconColor?: string | boolean | undefined;
|
6100
6100
|
} & {
|
6101
6101
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6102
6102
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6105,7 +6105,7 @@ export declare const VDateInput: {
|
|
6105
6105
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6106
6106
|
modelValue?: unknown;
|
6107
6107
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "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}`> & {
|
6109
6109
|
_allExposed: {
|
6110
6110
|
reset: () => Promise<void>;
|
6111
6111
|
resetValidation: () => Promise<void>;
|
@@ -6134,7 +6134,7 @@ export declare const VDateInput: {
|
|
6134
6134
|
disabled: boolean;
|
6135
6135
|
readonly: boolean | null;
|
6136
6136
|
messages: string | readonly string[];
|
6137
|
-
rules: readonly import("../../
|
6137
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6138
6138
|
focused: boolean;
|
6139
6139
|
errorMessages: string | readonly string[] | null;
|
6140
6140
|
maxErrors: string | number;
|
@@ -6202,7 +6202,7 @@ export declare const VDateInput: {
|
|
6202
6202
|
disabled: boolean;
|
6203
6203
|
readonly: boolean | null;
|
6204
6204
|
messages: string | readonly string[];
|
6205
|
-
rules: readonly import("../../
|
6205
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6206
6206
|
focused: boolean;
|
6207
6207
|
errorMessages: string | readonly string[] | null;
|
6208
6208
|
maxErrors: string | number;
|
@@ -6233,7 +6233,7 @@ export declare const VDateInput: {
|
|
6233
6233
|
disabled: boolean;
|
6234
6234
|
readonly: boolean | null;
|
6235
6235
|
messages: string | readonly string[];
|
6236
|
-
rules: readonly import("../../
|
6236
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6237
6237
|
focused: boolean;
|
6238
6238
|
errorMessages: string | readonly string[] | null;
|
6239
6239
|
maxErrors: string | number;
|
@@ -6273,7 +6273,6 @@ export declare const VDateInput: {
|
|
6273
6273
|
bgColor?: string | undefined;
|
6274
6274
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6275
6275
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6276
|
-
iconColor?: string | boolean | undefined;
|
6277
6276
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6278
6277
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6279
6278
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -6282,6 +6281,7 @@ export declare const VDateInput: {
|
|
6282
6281
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6283
6282
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6284
6283
|
centerAffix?: boolean | undefined;
|
6284
|
+
iconColor?: string | boolean | undefined;
|
6285
6285
|
hint?: string | undefined;
|
6286
6286
|
hideDetails?: boolean | "auto" | undefined;
|
6287
6287
|
suffix?: string | undefined;
|
@@ -6356,7 +6356,7 @@ export declare const VDateInput: {
|
|
6356
6356
|
disabled: boolean | null;
|
6357
6357
|
readonly: boolean | null;
|
6358
6358
|
messages: string | readonly string[];
|
6359
|
-
rules: readonly import("../../
|
6359
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6360
6360
|
focused: boolean;
|
6361
6361
|
errorMessages: string | readonly string[] | null;
|
6362
6362
|
maxErrors: string | number;
|
@@ -6372,7 +6372,7 @@ export declare const VDateInput: {
|
|
6372
6372
|
disabled: boolean | null;
|
6373
6373
|
readonly: boolean | null;
|
6374
6374
|
messages: string | readonly string[];
|
6375
|
-
rules: readonly import("../../
|
6375
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6376
6376
|
focused: boolean;
|
6377
6377
|
errorMessages: string | readonly string[] | null;
|
6378
6378
|
maxErrors: string | number;
|
@@ -6396,9 +6396,9 @@ export declare const VDateInput: {
|
|
6396
6396
|
baseColor?: string | undefined;
|
6397
6397
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6398
6398
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6399
|
-
iconColor?: string | boolean | undefined;
|
6400
6399
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6401
6400
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6401
|
+
iconColor?: string | boolean | undefined;
|
6402
6402
|
hint?: string | undefined;
|
6403
6403
|
hideDetails?: boolean | "auto" | undefined;
|
6404
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">;
|
@@ -6427,7 +6427,7 @@ export declare const VDateInput: {
|
|
6427
6427
|
disabled: boolean | null;
|
6428
6428
|
readonly: boolean | null;
|
6429
6429
|
messages: string | readonly string[];
|
6430
|
-
rules: readonly import("../../
|
6430
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6431
6431
|
focused: boolean;
|
6432
6432
|
errorMessages: string | readonly string[] | null;
|
6433
6433
|
maxErrors: string | number;
|
@@ -6452,9 +6452,9 @@ export declare const VDateInput: {
|
|
6452
6452
|
baseColor?: string | undefined;
|
6453
6453
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6454
6454
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6455
|
-
iconColor?: string | boolean | undefined;
|
6456
6455
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6457
6456
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6457
|
+
iconColor?: string | boolean | undefined;
|
6458
6458
|
hint?: string | undefined;
|
6459
6459
|
hideDetails?: boolean | "auto" | undefined;
|
6460
6460
|
} & {}, {
|
@@ -6472,7 +6472,7 @@ export declare const VDateInput: {
|
|
6472
6472
|
disabled: boolean | null;
|
6473
6473
|
readonly: boolean | null;
|
6474
6474
|
messages: string | readonly string[];
|
6475
|
-
rules: readonly import("../../
|
6475
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6476
6476
|
focused: boolean;
|
6477
6477
|
errorMessages: string | readonly string[] | null;
|
6478
6478
|
maxErrors: string | number;
|
@@ -6514,7 +6514,7 @@ export declare const VDateInput: {
|
|
6514
6514
|
disabled: boolean | null;
|
6515
6515
|
readonly: boolean | null;
|
6516
6516
|
messages: string | readonly string[];
|
6517
|
-
rules: readonly import("../../
|
6517
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6518
6518
|
focused: boolean;
|
6519
6519
|
errorMessages: string | readonly string[] | null;
|
6520
6520
|
maxErrors: string | number;
|
@@ -6530,7 +6530,7 @@ export declare const VDateInput: {
|
|
6530
6530
|
disabled: boolean | null;
|
6531
6531
|
readonly: boolean | null;
|
6532
6532
|
messages: string | readonly string[];
|
6533
|
-
rules: readonly import("../../
|
6533
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6534
6534
|
focused: boolean;
|
6535
6535
|
errorMessages: string | readonly string[] | null;
|
6536
6536
|
maxErrors: string | number;
|
@@ -6555,9 +6555,9 @@ export declare const VDateInput: {
|
|
6555
6555
|
baseColor?: string | undefined;
|
6556
6556
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6557
6557
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6558
|
-
iconColor?: string | boolean | undefined;
|
6559
6558
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6560
6559
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6560
|
+
iconColor?: string | boolean | undefined;
|
6561
6561
|
hint?: string | undefined;
|
6562
6562
|
hideDetails?: boolean | "auto" | undefined;
|
6563
6563
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6569,7 +6569,7 @@ export declare const VDateInput: {
|
|
6569
6569
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6570
6570
|
modelValue?: unknown;
|
6571
6571
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
6573
6573
|
$: import("vue").ComponentInternalInstance;
|
6574
6574
|
$data: {};
|
6575
6575
|
$props: Partial<{
|
@@ -6616,13 +6616,13 @@ export declare const VDateInput: {
|
|
6616
6616
|
rounded?: string | number | boolean | undefined;
|
6617
6617
|
baseColor?: string | undefined;
|
6618
6618
|
bgColor?: string | undefined;
|
6619
|
-
iconColor?: string | boolean | undefined;
|
6620
6619
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6621
6620
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6622
6621
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6623
6622
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6624
6623
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6625
6624
|
centerAffix?: boolean | undefined;
|
6625
|
+
iconColor?: string | boolean | undefined;
|
6626
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">;
|
6627
6627
|
$attrs: {
|
6628
6628
|
[x: string]: unknown;
|
@@ -6675,13 +6675,13 @@ export declare const VDateInput: {
|
|
6675
6675
|
rounded?: string | number | boolean | undefined;
|
6676
6676
|
baseColor?: string | undefined;
|
6677
6677
|
bgColor?: string | undefined;
|
6678
|
-
iconColor?: string | boolean | undefined;
|
6679
6678
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6680
6679
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6681
6680
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6682
6681
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6683
6682
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6684
6683
|
centerAffix?: boolean | undefined;
|
6684
|
+
iconColor?: string | boolean | undefined;
|
6685
6685
|
} & {
|
6686
6686
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6687
6687
|
}, {
|
@@ -6785,13 +6785,13 @@ export declare const VDateInput: {
|
|
6785
6785
|
rounded?: string | number | boolean | undefined;
|
6786
6786
|
baseColor?: string | undefined;
|
6787
6787
|
bgColor?: string | undefined;
|
6788
|
-
iconColor?: string | boolean | undefined;
|
6789
6788
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6790
6789
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6791
6790
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6792
6791
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6793
6792
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6794
6793
|
centerAffix?: boolean | undefined;
|
6794
|
+
iconColor?: string | boolean | undefined;
|
6795
6795
|
} & {
|
6796
6796
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6797
6797
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6800,7 +6800,7 @@ export declare const VDateInput: {
|
|
6800
6800
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6801
6801
|
modelValue?: unknown;
|
6802
6802
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "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}`> & {
|
6804
6804
|
_allExposed: {
|
6805
6805
|
reset: () => Promise<void>;
|
6806
6806
|
resetValidation: () => Promise<void>;
|
@@ -6811,7 +6811,7 @@ export declare const VDateInput: {
|
|
6811
6811
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
6812
6812
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
6813
6813
|
} | {};
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "iconColor" | "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}`> & {
|
6815
6815
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
6816
6816
|
$: import("vue").ComponentInternalInstance;
|
6817
6817
|
$data: {};
|
@@ -6822,7 +6822,7 @@ export declare const VDateInput: {
|
|
6822
6822
|
disabled: boolean | null;
|
6823
6823
|
readonly: boolean | null;
|
6824
6824
|
messages: string | readonly string[];
|
6825
|
-
rules: readonly import("../../
|
6825
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6826
6826
|
focused: boolean;
|
6827
6827
|
errorMessages: string | readonly string[] | null;
|
6828
6828
|
maxErrors: string | number;
|
@@ -6838,7 +6838,7 @@ export declare const VDateInput: {
|
|
6838
6838
|
disabled: boolean | null;
|
6839
6839
|
readonly: boolean | null;
|
6840
6840
|
messages: string | readonly string[];
|
6841
|
-
rules: readonly import("../../
|
6841
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6842
6842
|
focused: boolean;
|
6843
6843
|
errorMessages: string | readonly string[] | null;
|
6844
6844
|
maxErrors: string | number;
|
@@ -6862,9 +6862,9 @@ export declare const VDateInput: {
|
|
6862
6862
|
baseColor?: string | undefined;
|
6863
6863
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6864
6864
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6865
|
-
iconColor?: string | boolean | undefined;
|
6866
6865
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6867
6866
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6867
|
+
iconColor?: string | boolean | undefined;
|
6868
6868
|
hint?: string | undefined;
|
6869
6869
|
hideDetails?: boolean | "auto" | undefined;
|
6870
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">;
|
@@ -6893,7 +6893,7 @@ export declare const VDateInput: {
|
|
6893
6893
|
disabled: boolean | null;
|
6894
6894
|
readonly: boolean | null;
|
6895
6895
|
messages: string | readonly string[];
|
6896
|
-
rules: readonly import("../../
|
6896
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6897
6897
|
focused: boolean;
|
6898
6898
|
errorMessages: string | readonly string[] | null;
|
6899
6899
|
maxErrors: string | number;
|
@@ -6918,9 +6918,9 @@ export declare const VDateInput: {
|
|
6918
6918
|
baseColor?: string | undefined;
|
6919
6919
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6920
6920
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6921
|
-
iconColor?: string | boolean | undefined;
|
6922
6921
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6923
6922
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6923
|
+
iconColor?: string | boolean | undefined;
|
6924
6924
|
hint?: string | undefined;
|
6925
6925
|
hideDetails?: boolean | "auto" | undefined;
|
6926
6926
|
} & {}, {
|
@@ -6938,7 +6938,7 @@ export declare const VDateInput: {
|
|
6938
6938
|
disabled: boolean | null;
|
6939
6939
|
readonly: boolean | null;
|
6940
6940
|
messages: string | readonly string[];
|
6941
|
-
rules: readonly import("../../
|
6941
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6942
6942
|
focused: boolean;
|
6943
6943
|
errorMessages: string | readonly string[] | null;
|
6944
6944
|
maxErrors: string | number;
|
@@ -6980,7 +6980,7 @@ export declare const VDateInput: {
|
|
6980
6980
|
disabled: boolean | null;
|
6981
6981
|
readonly: boolean | null;
|
6982
6982
|
messages: string | readonly string[];
|
6983
|
-
rules: readonly import("../../
|
6983
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
6984
6984
|
focused: boolean;
|
6985
6985
|
errorMessages: string | readonly string[] | null;
|
6986
6986
|
maxErrors: string | number;
|
@@ -6996,7 +6996,7 @@ export declare const VDateInput: {
|
|
6996
6996
|
disabled: boolean | null;
|
6997
6997
|
readonly: boolean | null;
|
6998
6998
|
messages: string | readonly string[];
|
6999
|
-
rules: readonly import("../../
|
6999
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7000
7000
|
focused: boolean;
|
7001
7001
|
errorMessages: string | readonly string[] | null;
|
7002
7002
|
maxErrors: string | number;
|
@@ -7021,9 +7021,9 @@ export declare const VDateInput: {
|
|
7021
7021
|
baseColor?: string | undefined;
|
7022
7022
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7023
7023
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7024
|
-
iconColor?: string | boolean | undefined;
|
7025
7024
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
7026
7025
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
7026
|
+
iconColor?: string | boolean | undefined;
|
7027
7027
|
hint?: string | undefined;
|
7028
7028
|
hideDetails?: boolean | "auto" | undefined;
|
7029
7029
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -7035,7 +7035,7 @@ export declare const VDateInput: {
|
|
7035
7035
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7036
7036
|
modelValue?: unknown;
|
7037
7037
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "iconColor" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
7039
7039
|
$: import("vue").ComponentInternalInstance;
|
7040
7040
|
$data: {};
|
7041
7041
|
$props: Partial<{
|
@@ -7082,13 +7082,13 @@ export declare const VDateInput: {
|
|
7082
7082
|
rounded?: string | number | boolean | undefined;
|
7083
7083
|
baseColor?: string | undefined;
|
7084
7084
|
bgColor?: string | undefined;
|
7085
|
-
iconColor?: string | boolean | undefined;
|
7086
7085
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7087
7086
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7088
7087
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7089
7088
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7090
7089
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7091
7090
|
centerAffix?: boolean | undefined;
|
7091
|
+
iconColor?: string | boolean | undefined;
|
7092
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">;
|
7093
7093
|
$attrs: {
|
7094
7094
|
[x: string]: unknown;
|
@@ -7141,13 +7141,13 @@ export declare const VDateInput: {
|
|
7141
7141
|
rounded?: string | number | boolean | undefined;
|
7142
7142
|
baseColor?: string | undefined;
|
7143
7143
|
bgColor?: string | undefined;
|
7144
|
-
iconColor?: string | boolean | undefined;
|
7145
7144
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7146
7145
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7147
7146
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7148
7147
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7149
7148
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7150
7149
|
centerAffix?: boolean | undefined;
|
7150
|
+
iconColor?: string | boolean | undefined;
|
7151
7151
|
} & {
|
7152
7152
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7153
7153
|
}, {
|
@@ -7251,13 +7251,13 @@ export declare const VDateInput: {
|
|
7251
7251
|
rounded?: string | number | boolean | undefined;
|
7252
7252
|
baseColor?: string | undefined;
|
7253
7253
|
bgColor?: string | undefined;
|
7254
|
-
iconColor?: string | boolean | undefined;
|
7255
7254
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7256
7255
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
7257
7256
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
7258
7257
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7259
7258
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
7260
7259
|
centerAffix?: boolean | undefined;
|
7260
|
+
iconColor?: string | boolean | undefined;
|
7261
7261
|
} & {
|
7262
7262
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
7263
7263
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -7266,7 +7266,7 @@ export declare const VDateInput: {
|
|
7266
7266
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
7267
7267
|
modelValue?: unknown;
|
7268
7268
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
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" | "
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "iconColor" | "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}`> & {
|
7270
7270
|
_allExposed: {
|
7271
7271
|
reset: () => Promise<void>;
|
7272
7272
|
resetValidation: () => Promise<void>;
|
@@ -7304,7 +7304,7 @@ export declare const VDateInput: {
|
|
7304
7304
|
tag: string | import("../../util/index.js").JSXComponent;
|
7305
7305
|
landscape: boolean;
|
7306
7306
|
messages: string | readonly string[];
|
7307
|
-
rules: readonly import("../../
|
7307
|
+
rules: readonly (string | boolean | PromiseLike<import("../../composables/validation.js").ValidationResult> | ((value: any) => import("../../composables/validation.js").ValidationResult) | ((value: any) => PromiseLike<import("../../composables/validation.js").ValidationResult>) | [string, any, (string | undefined)?])[];
|
7308
7308
|
focused: boolean;
|
7309
7309
|
errorMessages: string | readonly string[] | null;
|
7310
7310
|
maxErrors: string | number;
|
@@ -7511,7 +7511,7 @@ export declare const VDateInput: {
|
|
7511
7511
|
default: null;
|
7512
7512
|
};
|
7513
7513
|
rules: {
|
7514
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
7514
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
7515
7515
|
default: () => never[];
|
7516
7516
|
};
|
7517
7517
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|
@@ -7743,7 +7743,7 @@ export declare const VDateInput: {
|
|
7743
7743
|
default: null;
|
7744
7744
|
};
|
7745
7745
|
rules: {
|
7746
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
7746
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../rules/index.js").ValidationAlias)[]>;
|
7747
7747
|
default: () => never[];
|
7748
7748
|
};
|
7749
7749
|
validateOn: PropType<import("../../composables/validation.js").ValidationProps["validateOn"]>;
|