@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
@@ -22,7 +22,7 @@ export declare const VNumberInput: {
|
|
22
22
|
readonly: boolean | null;
|
23
23
|
step: number;
|
24
24
|
messages: string | readonly string[];
|
25
|
-
rules: readonly import("../../
|
25
|
+
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)?])[];
|
26
26
|
focused: boolean;
|
27
27
|
errorMessages: string | readonly string[] | null;
|
28
28
|
maxErrors: string | number;
|
@@ -64,7 +64,6 @@ export declare const VNumberInput: {
|
|
64
64
|
bgColor?: string | undefined;
|
65
65
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
66
66
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
67
|
-
iconColor?: string | boolean | undefined;
|
68
67
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
69
68
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
70
69
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -73,6 +72,7 @@ export declare const VNumberInput: {
|
|
73
72
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
74
73
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
75
74
|
centerAffix?: boolean | undefined;
|
75
|
+
iconColor?: string | boolean | undefined;
|
76
76
|
hint?: string | undefined;
|
77
77
|
hideDetails?: boolean | "auto" | undefined;
|
78
78
|
suffix?: string | undefined;
|
@@ -153,7 +153,7 @@ export declare const VNumberInput: {
|
|
153
153
|
disabled: boolean;
|
154
154
|
readonly: boolean | null;
|
155
155
|
messages: string | readonly string[];
|
156
|
-
rules: readonly import("../../
|
156
|
+
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)?])[];
|
157
157
|
focused: boolean;
|
158
158
|
errorMessages: string | readonly string[] | null;
|
159
159
|
maxErrors: string | number;
|
@@ -184,7 +184,7 @@ export declare const VNumberInput: {
|
|
184
184
|
disabled: boolean;
|
185
185
|
readonly: boolean | null;
|
186
186
|
messages: string | readonly string[];
|
187
|
-
rules: readonly import("../../
|
187
|
+
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)?])[];
|
188
188
|
focused: boolean;
|
189
189
|
errorMessages: string | readonly string[] | null;
|
190
190
|
maxErrors: string | number;
|
@@ -223,7 +223,6 @@ export declare const VNumberInput: {
|
|
223
223
|
bgColor?: string | undefined;
|
224
224
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
225
225
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
226
|
-
iconColor?: string | boolean | undefined;
|
227
226
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
228
227
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
229
228
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -232,6 +231,7 @@ export declare const VNumberInput: {
|
|
232
231
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
233
232
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
234
233
|
centerAffix?: boolean | undefined;
|
234
|
+
iconColor?: string | boolean | undefined;
|
235
235
|
hint?: string | undefined;
|
236
236
|
hideDetails?: boolean | "auto" | undefined;
|
237
237
|
suffix?: string | undefined;
|
@@ -335,7 +335,7 @@ export declare const VNumberInput: {
|
|
335
335
|
disabled: boolean;
|
336
336
|
readonly: boolean | null;
|
337
337
|
messages: string | readonly string[];
|
338
|
-
rules: readonly import("../../
|
338
|
+
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)?])[];
|
339
339
|
focused: boolean;
|
340
340
|
errorMessages: string | readonly string[] | null;
|
341
341
|
maxErrors: string | number;
|
@@ -375,7 +375,6 @@ export declare const VNumberInput: {
|
|
375
375
|
bgColor?: string | undefined;
|
376
376
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
377
377
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
378
|
-
iconColor?: string | boolean | undefined;
|
379
378
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
380
379
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
381
380
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -384,6 +383,7 @@ export declare const VNumberInput: {
|
|
384
383
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
385
384
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
386
385
|
centerAffix?: boolean | undefined;
|
386
|
+
iconColor?: string | boolean | undefined;
|
387
387
|
hint?: string | undefined;
|
388
388
|
hideDetails?: boolean | "auto" | undefined;
|
389
389
|
suffix?: string | undefined;
|
@@ -458,7 +458,7 @@ export declare const VNumberInput: {
|
|
458
458
|
disabled: boolean | null;
|
459
459
|
readonly: boolean | null;
|
460
460
|
messages: string | readonly string[];
|
461
|
-
rules: readonly import("../../
|
461
|
+
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)?])[];
|
462
462
|
focused: boolean;
|
463
463
|
errorMessages: string | readonly string[] | null;
|
464
464
|
maxErrors: string | number;
|
@@ -474,7 +474,7 @@ export declare const VNumberInput: {
|
|
474
474
|
disabled: boolean | null;
|
475
475
|
readonly: boolean | null;
|
476
476
|
messages: string | readonly string[];
|
477
|
-
rules: readonly import("../../
|
477
|
+
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)?])[];
|
478
478
|
focused: boolean;
|
479
479
|
errorMessages: string | readonly string[] | null;
|
480
480
|
maxErrors: string | number;
|
@@ -498,9 +498,9 @@ export declare const VNumberInput: {
|
|
498
498
|
baseColor?: string | undefined;
|
499
499
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
500
500
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
501
|
-
iconColor?: string | boolean | undefined;
|
502
501
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
503
502
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
503
|
+
iconColor?: string | boolean | undefined;
|
504
504
|
hint?: string | undefined;
|
505
505
|
hideDetails?: boolean | "auto" | undefined;
|
506
506
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -529,7 +529,7 @@ export declare const VNumberInput: {
|
|
529
529
|
disabled: boolean | null;
|
530
530
|
readonly: boolean | null;
|
531
531
|
messages: string | readonly string[];
|
532
|
-
rules: readonly import("../../
|
532
|
+
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)?])[];
|
533
533
|
focused: boolean;
|
534
534
|
errorMessages: string | readonly string[] | null;
|
535
535
|
maxErrors: string | number;
|
@@ -554,9 +554,9 @@ export declare const VNumberInput: {
|
|
554
554
|
baseColor?: string | undefined;
|
555
555
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
556
556
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
557
|
-
iconColor?: string | boolean | undefined;
|
558
557
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
559
558
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
559
|
+
iconColor?: string | boolean | undefined;
|
560
560
|
hint?: string | undefined;
|
561
561
|
hideDetails?: boolean | "auto" | undefined;
|
562
562
|
} & {}, {
|
@@ -574,7 +574,7 @@ export declare const VNumberInput: {
|
|
574
574
|
disabled: boolean | null;
|
575
575
|
readonly: boolean | null;
|
576
576
|
messages: string | readonly string[];
|
577
|
-
rules: readonly import("../../
|
577
|
+
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)?])[];
|
578
578
|
focused: boolean;
|
579
579
|
errorMessages: string | readonly string[] | null;
|
580
580
|
maxErrors: string | number;
|
@@ -616,7 +616,7 @@ export declare const VNumberInput: {
|
|
616
616
|
disabled: boolean | null;
|
617
617
|
readonly: boolean | null;
|
618
618
|
messages: string | readonly string[];
|
619
|
-
rules: readonly import("../../
|
619
|
+
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)?])[];
|
620
620
|
focused: boolean;
|
621
621
|
errorMessages: string | readonly string[] | null;
|
622
622
|
maxErrors: string | number;
|
@@ -632,7 +632,7 @@ export declare const VNumberInput: {
|
|
632
632
|
disabled: boolean | null;
|
633
633
|
readonly: boolean | null;
|
634
634
|
messages: string | readonly string[];
|
635
|
-
rules: readonly import("../../
|
635
|
+
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)?])[];
|
636
636
|
focused: boolean;
|
637
637
|
errorMessages: string | readonly string[] | null;
|
638
638
|
maxErrors: string | number;
|
@@ -657,9 +657,9 @@ export declare const VNumberInput: {
|
|
657
657
|
baseColor?: string | undefined;
|
658
658
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
659
659
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
660
|
-
iconColor?: string | boolean | undefined;
|
661
660
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
662
661
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
662
|
+
iconColor?: string | boolean | undefined;
|
663
663
|
hint?: string | undefined;
|
664
664
|
hideDetails?: boolean | "auto" | undefined;
|
665
665
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -671,7 +671,7 @@ export declare const VNumberInput: {
|
|
671
671
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
672
672
|
modelValue?: unknown;
|
673
673
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
674
|
-
}, import("../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" | "
|
674
|
+
}, import("../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<{
|
675
675
|
$: import("vue").ComponentInternalInstance;
|
676
676
|
$data: {};
|
677
677
|
$props: Partial<{
|
@@ -718,13 +718,13 @@ export declare const VNumberInput: {
|
|
718
718
|
rounded?: string | number | boolean | undefined;
|
719
719
|
baseColor?: string | undefined;
|
720
720
|
bgColor?: string | undefined;
|
721
|
-
iconColor?: string | boolean | undefined;
|
722
721
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
723
722
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
724
723
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
725
724
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
726
725
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
727
726
|
centerAffix?: boolean | undefined;
|
727
|
+
iconColor?: string | boolean | undefined;
|
728
728
|
} & 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">;
|
729
729
|
$attrs: {
|
730
730
|
[x: string]: unknown;
|
@@ -777,13 +777,13 @@ export declare const VNumberInput: {
|
|
777
777
|
rounded?: string | number | boolean | undefined;
|
778
778
|
baseColor?: string | undefined;
|
779
779
|
bgColor?: string | undefined;
|
780
|
-
iconColor?: string | boolean | undefined;
|
781
780
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
782
781
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
783
782
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
784
783
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
785
784
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
786
785
|
centerAffix?: boolean | undefined;
|
786
|
+
iconColor?: string | boolean | undefined;
|
787
787
|
} & {
|
788
788
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
789
789
|
}, {
|
@@ -887,13 +887,13 @@ export declare const VNumberInput: {
|
|
887
887
|
rounded?: string | number | boolean | undefined;
|
888
888
|
baseColor?: string | undefined;
|
889
889
|
bgColor?: string | undefined;
|
890
|
-
iconColor?: string | boolean | undefined;
|
891
890
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
892
891
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
893
892
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
894
893
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
895
894
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
896
895
|
centerAffix?: boolean | undefined;
|
896
|
+
iconColor?: string | boolean | undefined;
|
897
897
|
} & {
|
898
898
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
899
899
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -902,7 +902,7 @@ export declare const VNumberInput: {
|
|
902
902
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
903
903
|
modelValue?: unknown;
|
904
904
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
905
|
-
}, import("../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" | "
|
905
|
+
}, import("../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}`> & {
|
906
906
|
_allExposed: {
|
907
907
|
reset: () => Promise<void>;
|
908
908
|
resetValidation: () => Promise<void>;
|
@@ -931,7 +931,7 @@ export declare const VNumberInput: {
|
|
931
931
|
disabled: boolean;
|
932
932
|
readonly: boolean | null;
|
933
933
|
messages: string | readonly string[];
|
934
|
-
rules: readonly import("../../
|
934
|
+
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)?])[];
|
935
935
|
focused: boolean;
|
936
936
|
errorMessages: string | readonly string[] | null;
|
937
937
|
maxErrors: string | number;
|
@@ -999,7 +999,7 @@ export declare const VNumberInput: {
|
|
999
999
|
disabled: boolean;
|
1000
1000
|
readonly: boolean | null;
|
1001
1001
|
messages: string | readonly string[];
|
1002
|
-
rules: readonly import("../../
|
1002
|
+
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)?])[];
|
1003
1003
|
focused: boolean;
|
1004
1004
|
errorMessages: string | readonly string[] | null;
|
1005
1005
|
maxErrors: string | number;
|
@@ -1030,7 +1030,7 @@ export declare const VNumberInput: {
|
|
1030
1030
|
disabled: boolean;
|
1031
1031
|
readonly: boolean | null;
|
1032
1032
|
messages: string | readonly string[];
|
1033
|
-
rules: readonly import("../../
|
1033
|
+
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)?])[];
|
1034
1034
|
focused: boolean;
|
1035
1035
|
errorMessages: string | readonly string[] | null;
|
1036
1036
|
maxErrors: string | number;
|
@@ -1070,7 +1070,6 @@ export declare const VNumberInput: {
|
|
1070
1070
|
bgColor?: string | undefined;
|
1071
1071
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1072
1072
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1073
|
-
iconColor?: string | boolean | undefined;
|
1074
1073
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1075
1074
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1076
1075
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1079,6 +1078,7 @@ export declare const VNumberInput: {
|
|
1079
1078
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1080
1079
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1081
1080
|
centerAffix?: boolean | undefined;
|
1081
|
+
iconColor?: string | boolean | undefined;
|
1082
1082
|
hint?: string | undefined;
|
1083
1083
|
hideDetails?: boolean | "auto" | undefined;
|
1084
1084
|
suffix?: string | undefined;
|
@@ -1153,7 +1153,7 @@ export declare const VNumberInput: {
|
|
1153
1153
|
disabled: boolean | null;
|
1154
1154
|
readonly: boolean | null;
|
1155
1155
|
messages: string | readonly string[];
|
1156
|
-
rules: readonly import("../../
|
1156
|
+
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)?])[];
|
1157
1157
|
focused: boolean;
|
1158
1158
|
errorMessages: string | readonly string[] | null;
|
1159
1159
|
maxErrors: string | number;
|
@@ -1169,7 +1169,7 @@ export declare const VNumberInput: {
|
|
1169
1169
|
disabled: boolean | null;
|
1170
1170
|
readonly: boolean | null;
|
1171
1171
|
messages: string | readonly string[];
|
1172
|
-
rules: readonly import("../../
|
1172
|
+
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)?])[];
|
1173
1173
|
focused: boolean;
|
1174
1174
|
errorMessages: string | readonly string[] | null;
|
1175
1175
|
maxErrors: string | number;
|
@@ -1193,9 +1193,9 @@ export declare const VNumberInput: {
|
|
1193
1193
|
baseColor?: string | undefined;
|
1194
1194
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1195
1195
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1196
|
-
iconColor?: string | boolean | undefined;
|
1197
1196
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1198
1197
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1198
|
+
iconColor?: string | boolean | undefined;
|
1199
1199
|
hint?: string | undefined;
|
1200
1200
|
hideDetails?: boolean | "auto" | undefined;
|
1201
1201
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1224,7 +1224,7 @@ export declare const VNumberInput: {
|
|
1224
1224
|
disabled: boolean | null;
|
1225
1225
|
readonly: boolean | null;
|
1226
1226
|
messages: string | readonly string[];
|
1227
|
-
rules: readonly import("../../
|
1227
|
+
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)?])[];
|
1228
1228
|
focused: boolean;
|
1229
1229
|
errorMessages: string | readonly string[] | null;
|
1230
1230
|
maxErrors: string | number;
|
@@ -1249,9 +1249,9 @@ export declare const VNumberInput: {
|
|
1249
1249
|
baseColor?: string | undefined;
|
1250
1250
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1251
1251
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1252
|
-
iconColor?: string | boolean | undefined;
|
1253
1252
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1254
1253
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1254
|
+
iconColor?: string | boolean | undefined;
|
1255
1255
|
hint?: string | undefined;
|
1256
1256
|
hideDetails?: boolean | "auto" | undefined;
|
1257
1257
|
} & {}, {
|
@@ -1269,7 +1269,7 @@ export declare const VNumberInput: {
|
|
1269
1269
|
disabled: boolean | null;
|
1270
1270
|
readonly: boolean | null;
|
1271
1271
|
messages: string | readonly string[];
|
1272
|
-
rules: readonly import("../../
|
1272
|
+
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)?])[];
|
1273
1273
|
focused: boolean;
|
1274
1274
|
errorMessages: string | readonly string[] | null;
|
1275
1275
|
maxErrors: string | number;
|
@@ -1311,7 +1311,7 @@ export declare const VNumberInput: {
|
|
1311
1311
|
disabled: boolean | null;
|
1312
1312
|
readonly: boolean | null;
|
1313
1313
|
messages: string | readonly string[];
|
1314
|
-
rules: readonly import("../../
|
1314
|
+
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)?])[];
|
1315
1315
|
focused: boolean;
|
1316
1316
|
errorMessages: string | readonly string[] | null;
|
1317
1317
|
maxErrors: string | number;
|
@@ -1327,7 +1327,7 @@ export declare const VNumberInput: {
|
|
1327
1327
|
disabled: boolean | null;
|
1328
1328
|
readonly: boolean | null;
|
1329
1329
|
messages: string | readonly string[];
|
1330
|
-
rules: readonly import("../../
|
1330
|
+
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)?])[];
|
1331
1331
|
focused: boolean;
|
1332
1332
|
errorMessages: string | readonly string[] | null;
|
1333
1333
|
maxErrors: string | number;
|
@@ -1352,9 +1352,9 @@ export declare const VNumberInput: {
|
|
1352
1352
|
baseColor?: string | undefined;
|
1353
1353
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1354
1354
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1355
|
-
iconColor?: string | boolean | undefined;
|
1356
1355
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1357
1356
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1357
|
+
iconColor?: string | boolean | undefined;
|
1358
1358
|
hint?: string | undefined;
|
1359
1359
|
hideDetails?: boolean | "auto" | undefined;
|
1360
1360
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1366,7 +1366,7 @@ export declare const VNumberInput: {
|
|
1366
1366
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1367
1367
|
modelValue?: unknown;
|
1368
1368
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1369
|
-
}, import("../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" | "
|
1369
|
+
}, import("../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<{
|
1370
1370
|
$: import("vue").ComponentInternalInstance;
|
1371
1371
|
$data: {};
|
1372
1372
|
$props: Partial<{
|
@@ -1413,13 +1413,13 @@ export declare const VNumberInput: {
|
|
1413
1413
|
rounded?: string | number | boolean | undefined;
|
1414
1414
|
baseColor?: string | undefined;
|
1415
1415
|
bgColor?: string | undefined;
|
1416
|
-
iconColor?: string | boolean | undefined;
|
1417
1416
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1418
1417
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1419
1418
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1420
1419
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1421
1420
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1422
1421
|
centerAffix?: boolean | undefined;
|
1422
|
+
iconColor?: string | boolean | undefined;
|
1423
1423
|
} & 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">;
|
1424
1424
|
$attrs: {
|
1425
1425
|
[x: string]: unknown;
|
@@ -1472,13 +1472,13 @@ export declare const VNumberInput: {
|
|
1472
1472
|
rounded?: string | number | boolean | undefined;
|
1473
1473
|
baseColor?: string | undefined;
|
1474
1474
|
bgColor?: string | undefined;
|
1475
|
-
iconColor?: string | boolean | undefined;
|
1476
1475
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1477
1476
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1478
1477
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1479
1478
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1480
1479
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1481
1480
|
centerAffix?: boolean | undefined;
|
1481
|
+
iconColor?: string | boolean | undefined;
|
1482
1482
|
} & {
|
1483
1483
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1484
1484
|
}, {
|
@@ -1582,13 +1582,13 @@ export declare const VNumberInput: {
|
|
1582
1582
|
rounded?: string | number | boolean | undefined;
|
1583
1583
|
baseColor?: string | undefined;
|
1584
1584
|
bgColor?: string | undefined;
|
1585
|
-
iconColor?: string | boolean | undefined;
|
1586
1585
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1587
1586
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1588
1587
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1589
1588
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1590
1589
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1591
1590
|
centerAffix?: boolean | undefined;
|
1591
|
+
iconColor?: string | boolean | undefined;
|
1592
1592
|
} & {
|
1593
1593
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1594
1594
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1597,7 +1597,7 @@ export declare const VNumberInput: {
|
|
1597
1597
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1598
1598
|
modelValue?: unknown;
|
1599
1599
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1600
|
-
}, import("../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" | "
|
1600
|
+
}, import("../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}`> & {
|
1601
1601
|
_allExposed: {
|
1602
1602
|
reset: () => Promise<void>;
|
1603
1603
|
resetValidation: () => Promise<void>;
|
@@ -1608,7 +1608,7 @@ export declare const VNumberInput: {
|
|
1608
1608
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1609
1609
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
1610
1610
|
} | {};
|
1611
|
-
}> & {} & 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" | "
|
1611
|
+
}> & {} & 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}`> & {
|
1612
1612
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
1613
1613
|
$: import("vue").ComponentInternalInstance;
|
1614
1614
|
$data: {};
|
@@ -1619,7 +1619,7 @@ export declare const VNumberInput: {
|
|
1619
1619
|
disabled: boolean | null;
|
1620
1620
|
readonly: boolean | null;
|
1621
1621
|
messages: string | readonly string[];
|
1622
|
-
rules: readonly import("../../
|
1622
|
+
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)?])[];
|
1623
1623
|
focused: boolean;
|
1624
1624
|
errorMessages: string | readonly string[] | null;
|
1625
1625
|
maxErrors: string | number;
|
@@ -1635,7 +1635,7 @@ export declare const VNumberInput: {
|
|
1635
1635
|
disabled: boolean | null;
|
1636
1636
|
readonly: boolean | null;
|
1637
1637
|
messages: string | readonly string[];
|
1638
|
-
rules: readonly import("../../
|
1638
|
+
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)?])[];
|
1639
1639
|
focused: boolean;
|
1640
1640
|
errorMessages: string | readonly string[] | null;
|
1641
1641
|
maxErrors: string | number;
|
@@ -1659,9 +1659,9 @@ export declare const VNumberInput: {
|
|
1659
1659
|
baseColor?: string | undefined;
|
1660
1660
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1661
1661
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1662
|
-
iconColor?: string | boolean | undefined;
|
1663
1662
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1664
1663
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1664
|
+
iconColor?: string | boolean | undefined;
|
1665
1665
|
hint?: string | undefined;
|
1666
1666
|
hideDetails?: boolean | "auto" | undefined;
|
1667
1667
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1690,7 +1690,7 @@ export declare const VNumberInput: {
|
|
1690
1690
|
disabled: boolean | null;
|
1691
1691
|
readonly: boolean | null;
|
1692
1692
|
messages: string | readonly string[];
|
1693
|
-
rules: readonly import("../../
|
1693
|
+
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)?])[];
|
1694
1694
|
focused: boolean;
|
1695
1695
|
errorMessages: string | readonly string[] | null;
|
1696
1696
|
maxErrors: string | number;
|
@@ -1715,9 +1715,9 @@ export declare const VNumberInput: {
|
|
1715
1715
|
baseColor?: string | undefined;
|
1716
1716
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1717
1717
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1718
|
-
iconColor?: string | boolean | undefined;
|
1719
1718
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1720
1719
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1720
|
+
iconColor?: string | boolean | undefined;
|
1721
1721
|
hint?: string | undefined;
|
1722
1722
|
hideDetails?: boolean | "auto" | undefined;
|
1723
1723
|
} & {}, {
|
@@ -1735,7 +1735,7 @@ export declare const VNumberInput: {
|
|
1735
1735
|
disabled: boolean | null;
|
1736
1736
|
readonly: boolean | null;
|
1737
1737
|
messages: string | readonly string[];
|
1738
|
-
rules: readonly import("../../
|
1738
|
+
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)?])[];
|
1739
1739
|
focused: boolean;
|
1740
1740
|
errorMessages: string | readonly string[] | null;
|
1741
1741
|
maxErrors: string | number;
|
@@ -1777,7 +1777,7 @@ export declare const VNumberInput: {
|
|
1777
1777
|
disabled: boolean | null;
|
1778
1778
|
readonly: boolean | null;
|
1779
1779
|
messages: string | readonly string[];
|
1780
|
-
rules: readonly import("../../
|
1780
|
+
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)?])[];
|
1781
1781
|
focused: boolean;
|
1782
1782
|
errorMessages: string | readonly string[] | null;
|
1783
1783
|
maxErrors: string | number;
|
@@ -1793,7 +1793,7 @@ export declare const VNumberInput: {
|
|
1793
1793
|
disabled: boolean | null;
|
1794
1794
|
readonly: boolean | null;
|
1795
1795
|
messages: string | readonly string[];
|
1796
|
-
rules: readonly import("../../
|
1796
|
+
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)?])[];
|
1797
1797
|
focused: boolean;
|
1798
1798
|
errorMessages: string | readonly string[] | null;
|
1799
1799
|
maxErrors: string | number;
|
@@ -1818,9 +1818,9 @@ export declare const VNumberInput: {
|
|
1818
1818
|
baseColor?: string | undefined;
|
1819
1819
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1820
1820
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1821
|
-
iconColor?: string | boolean | undefined;
|
1822
1821
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1823
1822
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1823
|
+
iconColor?: string | boolean | undefined;
|
1824
1824
|
hint?: string | undefined;
|
1825
1825
|
hideDetails?: boolean | "auto" | undefined;
|
1826
1826
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1832,7 +1832,7 @@ export declare const VNumberInput: {
|
|
1832
1832
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1833
1833
|
modelValue?: unknown;
|
1834
1834
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1835
|
-
}, import("../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" | "
|
1835
|
+
}, import("../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<{
|
1836
1836
|
$: import("vue").ComponentInternalInstance;
|
1837
1837
|
$data: {};
|
1838
1838
|
$props: Partial<{
|
@@ -1879,13 +1879,13 @@ export declare const VNumberInput: {
|
|
1879
1879
|
rounded?: string | number | boolean | undefined;
|
1880
1880
|
baseColor?: string | undefined;
|
1881
1881
|
bgColor?: string | undefined;
|
1882
|
-
iconColor?: string | boolean | undefined;
|
1883
1882
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1884
1883
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1885
1884
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1886
1885
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1887
1886
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1888
1887
|
centerAffix?: boolean | undefined;
|
1888
|
+
iconColor?: string | boolean | undefined;
|
1889
1889
|
} & 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">;
|
1890
1890
|
$attrs: {
|
1891
1891
|
[x: string]: unknown;
|
@@ -1938,13 +1938,13 @@ export declare const VNumberInput: {
|
|
1938
1938
|
rounded?: string | number | boolean | undefined;
|
1939
1939
|
baseColor?: string | undefined;
|
1940
1940
|
bgColor?: string | undefined;
|
1941
|
-
iconColor?: string | boolean | undefined;
|
1942
1941
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1943
1942
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1944
1943
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1945
1944
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1946
1945
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1947
1946
|
centerAffix?: boolean | undefined;
|
1947
|
+
iconColor?: string | boolean | undefined;
|
1948
1948
|
} & {
|
1949
1949
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1950
1950
|
}, {
|
@@ -2048,13 +2048,13 @@ export declare const VNumberInput: {
|
|
2048
2048
|
rounded?: string | number | boolean | undefined;
|
2049
2049
|
baseColor?: string | undefined;
|
2050
2050
|
bgColor?: string | undefined;
|
2051
|
-
iconColor?: string | boolean | undefined;
|
2052
2051
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2053
2052
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2054
2053
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2055
2054
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2056
2055
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2057
2056
|
centerAffix?: boolean | undefined;
|
2057
|
+
iconColor?: string | boolean | undefined;
|
2058
2058
|
} & {
|
2059
2059
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2060
2060
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2063,7 +2063,7 @@ export declare const VNumberInput: {
|
|
2063
2063
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2064
2064
|
modelValue?: unknown;
|
2065
2065
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2066
|
-
}, import("../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" | "
|
2066
|
+
}, import("../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}`> & {
|
2067
2067
|
_allExposed: {
|
2068
2068
|
reset: () => Promise<void>;
|
2069
2069
|
resetValidation: () => Promise<void>;
|
@@ -2094,7 +2094,7 @@ export declare const VNumberInput: {
|
|
2094
2094
|
readonly: boolean | null;
|
2095
2095
|
step: number;
|
2096
2096
|
messages: string | readonly string[];
|
2097
|
-
rules: readonly import("../../
|
2097
|
+
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)?])[];
|
2098
2098
|
focused: boolean;
|
2099
2099
|
errorMessages: string | readonly string[] | null;
|
2100
2100
|
maxErrors: string | number;
|
@@ -2158,7 +2158,7 @@ export declare const VNumberInput: {
|
|
2158
2158
|
readonly: boolean | null;
|
2159
2159
|
step: number;
|
2160
2160
|
messages: string | readonly string[];
|
2161
|
-
rules: readonly import("../../
|
2161
|
+
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)?])[];
|
2162
2162
|
focused: boolean;
|
2163
2163
|
errorMessages: string | readonly string[] | null;
|
2164
2164
|
maxErrors: string | number;
|
@@ -2200,7 +2200,6 @@ export declare const VNumberInput: {
|
|
2200
2200
|
bgColor?: string | undefined;
|
2201
2201
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2202
2202
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2203
|
-
iconColor?: string | boolean | undefined;
|
2204
2203
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2205
2204
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2206
2205
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2209,6 +2208,7 @@ export declare const VNumberInput: {
|
|
2209
2208
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2210
2209
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2211
2210
|
centerAffix?: boolean | undefined;
|
2211
|
+
iconColor?: string | boolean | undefined;
|
2212
2212
|
hint?: string | undefined;
|
2213
2213
|
hideDetails?: boolean | "auto" | undefined;
|
2214
2214
|
suffix?: string | undefined;
|
@@ -2289,7 +2289,7 @@ export declare const VNumberInput: {
|
|
2289
2289
|
disabled: boolean;
|
2290
2290
|
readonly: boolean | null;
|
2291
2291
|
messages: string | readonly string[];
|
2292
|
-
rules: readonly import("../../
|
2292
|
+
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)?])[];
|
2293
2293
|
focused: boolean;
|
2294
2294
|
errorMessages: string | readonly string[] | null;
|
2295
2295
|
maxErrors: string | number;
|
@@ -2320,7 +2320,7 @@ export declare const VNumberInput: {
|
|
2320
2320
|
disabled: boolean;
|
2321
2321
|
readonly: boolean | null;
|
2322
2322
|
messages: string | readonly string[];
|
2323
|
-
rules: readonly import("../../
|
2323
|
+
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)?])[];
|
2324
2324
|
focused: boolean;
|
2325
2325
|
errorMessages: string | readonly string[] | null;
|
2326
2326
|
maxErrors: string | number;
|
@@ -2359,7 +2359,6 @@ export declare const VNumberInput: {
|
|
2359
2359
|
bgColor?: string | undefined;
|
2360
2360
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2361
2361
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2362
|
-
iconColor?: string | boolean | undefined;
|
2363
2362
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2364
2363
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2365
2364
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2368,6 +2367,7 @@ export declare const VNumberInput: {
|
|
2368
2367
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2369
2368
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2370
2369
|
centerAffix?: boolean | undefined;
|
2370
|
+
iconColor?: string | boolean | undefined;
|
2371
2371
|
hint?: string | undefined;
|
2372
2372
|
hideDetails?: boolean | "auto" | undefined;
|
2373
2373
|
suffix?: string | undefined;
|
@@ -2471,7 +2471,7 @@ export declare const VNumberInput: {
|
|
2471
2471
|
disabled: boolean;
|
2472
2472
|
readonly: boolean | null;
|
2473
2473
|
messages: string | readonly string[];
|
2474
|
-
rules: readonly import("../../
|
2474
|
+
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)?])[];
|
2475
2475
|
focused: boolean;
|
2476
2476
|
errorMessages: string | readonly string[] | null;
|
2477
2477
|
maxErrors: string | number;
|
@@ -2511,7 +2511,6 @@ export declare const VNumberInput: {
|
|
2511
2511
|
bgColor?: string | undefined;
|
2512
2512
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2513
2513
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2514
|
-
iconColor?: string | boolean | undefined;
|
2515
2514
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2516
2515
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2517
2516
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2520,6 +2519,7 @@ export declare const VNumberInput: {
|
|
2520
2519
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2521
2520
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2522
2521
|
centerAffix?: boolean | undefined;
|
2522
|
+
iconColor?: string | boolean | undefined;
|
2523
2523
|
hint?: string | undefined;
|
2524
2524
|
hideDetails?: boolean | "auto" | undefined;
|
2525
2525
|
suffix?: string | undefined;
|
@@ -2594,7 +2594,7 @@ export declare const VNumberInput: {
|
|
2594
2594
|
disabled: boolean | null;
|
2595
2595
|
readonly: boolean | null;
|
2596
2596
|
messages: string | readonly string[];
|
2597
|
-
rules: readonly import("../../
|
2597
|
+
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)?])[];
|
2598
2598
|
focused: boolean;
|
2599
2599
|
errorMessages: string | readonly string[] | null;
|
2600
2600
|
maxErrors: string | number;
|
@@ -2610,7 +2610,7 @@ export declare const VNumberInput: {
|
|
2610
2610
|
disabled: boolean | null;
|
2611
2611
|
readonly: boolean | null;
|
2612
2612
|
messages: string | readonly string[];
|
2613
|
-
rules: readonly import("../../
|
2613
|
+
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)?])[];
|
2614
2614
|
focused: boolean;
|
2615
2615
|
errorMessages: string | readonly string[] | null;
|
2616
2616
|
maxErrors: string | number;
|
@@ -2634,9 +2634,9 @@ export declare const VNumberInput: {
|
|
2634
2634
|
baseColor?: string | undefined;
|
2635
2635
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2636
2636
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2637
|
-
iconColor?: string | boolean | undefined;
|
2638
2637
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2639
2638
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2639
|
+
iconColor?: string | boolean | undefined;
|
2640
2640
|
hint?: string | undefined;
|
2641
2641
|
hideDetails?: boolean | "auto" | undefined;
|
2642
2642
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2665,7 +2665,7 @@ export declare const VNumberInput: {
|
|
2665
2665
|
disabled: boolean | null;
|
2666
2666
|
readonly: boolean | null;
|
2667
2667
|
messages: string | readonly string[];
|
2668
|
-
rules: readonly import("../../
|
2668
|
+
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)?])[];
|
2669
2669
|
focused: boolean;
|
2670
2670
|
errorMessages: string | readonly string[] | null;
|
2671
2671
|
maxErrors: string | number;
|
@@ -2690,9 +2690,9 @@ export declare const VNumberInput: {
|
|
2690
2690
|
baseColor?: string | undefined;
|
2691
2691
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2692
2692
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2693
|
-
iconColor?: string | boolean | undefined;
|
2694
2693
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2695
2694
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2695
|
+
iconColor?: string | boolean | undefined;
|
2696
2696
|
hint?: string | undefined;
|
2697
2697
|
hideDetails?: boolean | "auto" | undefined;
|
2698
2698
|
} & {}, {
|
@@ -2710,7 +2710,7 @@ export declare const VNumberInput: {
|
|
2710
2710
|
disabled: boolean | null;
|
2711
2711
|
readonly: boolean | null;
|
2712
2712
|
messages: string | readonly string[];
|
2713
|
-
rules: readonly import("../../
|
2713
|
+
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)?])[];
|
2714
2714
|
focused: boolean;
|
2715
2715
|
errorMessages: string | readonly string[] | null;
|
2716
2716
|
maxErrors: string | number;
|
@@ -2752,7 +2752,7 @@ export declare const VNumberInput: {
|
|
2752
2752
|
disabled: boolean | null;
|
2753
2753
|
readonly: boolean | null;
|
2754
2754
|
messages: string | readonly string[];
|
2755
|
-
rules: readonly import("../../
|
2755
|
+
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)?])[];
|
2756
2756
|
focused: boolean;
|
2757
2757
|
errorMessages: string | readonly string[] | null;
|
2758
2758
|
maxErrors: string | number;
|
@@ -2768,7 +2768,7 @@ export declare const VNumberInput: {
|
|
2768
2768
|
disabled: boolean | null;
|
2769
2769
|
readonly: boolean | null;
|
2770
2770
|
messages: string | readonly string[];
|
2771
|
-
rules: readonly import("../../
|
2771
|
+
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)?])[];
|
2772
2772
|
focused: boolean;
|
2773
2773
|
errorMessages: string | readonly string[] | null;
|
2774
2774
|
maxErrors: string | number;
|
@@ -2793,9 +2793,9 @@ export declare const VNumberInput: {
|
|
2793
2793
|
baseColor?: string | undefined;
|
2794
2794
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2795
2795
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2796
|
-
iconColor?: string | boolean | undefined;
|
2797
2796
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2798
2797
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2798
|
+
iconColor?: string | boolean | undefined;
|
2799
2799
|
hint?: string | undefined;
|
2800
2800
|
hideDetails?: boolean | "auto" | undefined;
|
2801
2801
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2807,7 +2807,7 @@ export declare const VNumberInput: {
|
|
2807
2807
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2808
2808
|
modelValue?: unknown;
|
2809
2809
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2810
|
-
}, import("../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" | "
|
2810
|
+
}, import("../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<{
|
2811
2811
|
$: import("vue").ComponentInternalInstance;
|
2812
2812
|
$data: {};
|
2813
2813
|
$props: Partial<{
|
@@ -2854,13 +2854,13 @@ export declare const VNumberInput: {
|
|
2854
2854
|
rounded?: string | number | boolean | undefined;
|
2855
2855
|
baseColor?: string | undefined;
|
2856
2856
|
bgColor?: string | undefined;
|
2857
|
-
iconColor?: string | boolean | undefined;
|
2858
2857
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2859
2858
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2860
2859
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2861
2860
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2862
2861
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2863
2862
|
centerAffix?: boolean | undefined;
|
2863
|
+
iconColor?: string | boolean | undefined;
|
2864
2864
|
} & 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">;
|
2865
2865
|
$attrs: {
|
2866
2866
|
[x: string]: unknown;
|
@@ -2913,13 +2913,13 @@ export declare const VNumberInput: {
|
|
2913
2913
|
rounded?: string | number | boolean | undefined;
|
2914
2914
|
baseColor?: string | undefined;
|
2915
2915
|
bgColor?: string | undefined;
|
2916
|
-
iconColor?: string | boolean | undefined;
|
2917
2916
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2918
2917
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2919
2918
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2920
2919
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2921
2920
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2922
2921
|
centerAffix?: boolean | undefined;
|
2922
|
+
iconColor?: string | boolean | undefined;
|
2923
2923
|
} & {
|
2924
2924
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2925
2925
|
}, {
|
@@ -3023,13 +3023,13 @@ export declare const VNumberInput: {
|
|
3023
3023
|
rounded?: string | number | boolean | undefined;
|
3024
3024
|
baseColor?: string | undefined;
|
3025
3025
|
bgColor?: string | undefined;
|
3026
|
-
iconColor?: string | boolean | undefined;
|
3027
3026
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3028
3027
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3029
3028
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3030
3029
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3031
3030
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3032
3031
|
centerAffix?: boolean | undefined;
|
3032
|
+
iconColor?: string | boolean | undefined;
|
3033
3033
|
} & {
|
3034
3034
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3035
3035
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3038,7 +3038,7 @@ export declare const VNumberInput: {
|
|
3038
3038
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3039
3039
|
modelValue?: unknown;
|
3040
3040
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3041
|
-
}, import("../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" | "
|
3041
|
+
}, import("../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}`> & {
|
3042
3042
|
_allExposed: {
|
3043
3043
|
reset: () => Promise<void>;
|
3044
3044
|
resetValidation: () => Promise<void>;
|
@@ -3067,7 +3067,7 @@ export declare const VNumberInput: {
|
|
3067
3067
|
disabled: boolean;
|
3068
3068
|
readonly: boolean | null;
|
3069
3069
|
messages: string | readonly string[];
|
3070
|
-
rules: readonly import("../../
|
3070
|
+
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)?])[];
|
3071
3071
|
focused: boolean;
|
3072
3072
|
errorMessages: string | readonly string[] | null;
|
3073
3073
|
maxErrors: string | number;
|
@@ -3135,7 +3135,7 @@ export declare const VNumberInput: {
|
|
3135
3135
|
disabled: boolean;
|
3136
3136
|
readonly: boolean | null;
|
3137
3137
|
messages: string | readonly string[];
|
3138
|
-
rules: readonly import("../../
|
3138
|
+
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)?])[];
|
3139
3139
|
focused: boolean;
|
3140
3140
|
errorMessages: string | readonly string[] | null;
|
3141
3141
|
maxErrors: string | number;
|
@@ -3166,7 +3166,7 @@ export declare const VNumberInput: {
|
|
3166
3166
|
disabled: boolean;
|
3167
3167
|
readonly: boolean | null;
|
3168
3168
|
messages: string | readonly string[];
|
3169
|
-
rules: readonly import("../../
|
3169
|
+
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)?])[];
|
3170
3170
|
focused: boolean;
|
3171
3171
|
errorMessages: string | readonly string[] | null;
|
3172
3172
|
maxErrors: string | number;
|
@@ -3206,7 +3206,6 @@ export declare const VNumberInput: {
|
|
3206
3206
|
bgColor?: string | undefined;
|
3207
3207
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3208
3208
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3209
|
-
iconColor?: string | boolean | undefined;
|
3210
3209
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3211
3210
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3212
3211
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3215,6 +3214,7 @@ export declare const VNumberInput: {
|
|
3215
3214
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3216
3215
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3217
3216
|
centerAffix?: boolean | undefined;
|
3217
|
+
iconColor?: string | boolean | undefined;
|
3218
3218
|
hint?: string | undefined;
|
3219
3219
|
hideDetails?: boolean | "auto" | undefined;
|
3220
3220
|
suffix?: string | undefined;
|
@@ -3289,7 +3289,7 @@ export declare const VNumberInput: {
|
|
3289
3289
|
disabled: boolean | null;
|
3290
3290
|
readonly: boolean | null;
|
3291
3291
|
messages: string | readonly string[];
|
3292
|
-
rules: readonly import("../../
|
3292
|
+
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)?])[];
|
3293
3293
|
focused: boolean;
|
3294
3294
|
errorMessages: string | readonly string[] | null;
|
3295
3295
|
maxErrors: string | number;
|
@@ -3305,7 +3305,7 @@ export declare const VNumberInput: {
|
|
3305
3305
|
disabled: boolean | null;
|
3306
3306
|
readonly: boolean | null;
|
3307
3307
|
messages: string | readonly string[];
|
3308
|
-
rules: readonly import("../../
|
3308
|
+
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)?])[];
|
3309
3309
|
focused: boolean;
|
3310
3310
|
errorMessages: string | readonly string[] | null;
|
3311
3311
|
maxErrors: string | number;
|
@@ -3329,9 +3329,9 @@ export declare const VNumberInput: {
|
|
3329
3329
|
baseColor?: string | undefined;
|
3330
3330
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3331
3331
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3332
|
-
iconColor?: string | boolean | undefined;
|
3333
3332
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3334
3333
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3334
|
+
iconColor?: string | boolean | undefined;
|
3335
3335
|
hint?: string | undefined;
|
3336
3336
|
hideDetails?: boolean | "auto" | undefined;
|
3337
3337
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3360,7 +3360,7 @@ export declare const VNumberInput: {
|
|
3360
3360
|
disabled: boolean | null;
|
3361
3361
|
readonly: boolean | null;
|
3362
3362
|
messages: string | readonly string[];
|
3363
|
-
rules: readonly import("../../
|
3363
|
+
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)?])[];
|
3364
3364
|
focused: boolean;
|
3365
3365
|
errorMessages: string | readonly string[] | null;
|
3366
3366
|
maxErrors: string | number;
|
@@ -3385,9 +3385,9 @@ export declare const VNumberInput: {
|
|
3385
3385
|
baseColor?: string | undefined;
|
3386
3386
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3387
3387
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3388
|
-
iconColor?: string | boolean | undefined;
|
3389
3388
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3390
3389
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3390
|
+
iconColor?: string | boolean | undefined;
|
3391
3391
|
hint?: string | undefined;
|
3392
3392
|
hideDetails?: boolean | "auto" | undefined;
|
3393
3393
|
} & {}, {
|
@@ -3405,7 +3405,7 @@ export declare const VNumberInput: {
|
|
3405
3405
|
disabled: boolean | null;
|
3406
3406
|
readonly: boolean | null;
|
3407
3407
|
messages: string | readonly string[];
|
3408
|
-
rules: readonly import("../../
|
3408
|
+
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)?])[];
|
3409
3409
|
focused: boolean;
|
3410
3410
|
errorMessages: string | readonly string[] | null;
|
3411
3411
|
maxErrors: string | number;
|
@@ -3447,7 +3447,7 @@ export declare const VNumberInput: {
|
|
3447
3447
|
disabled: boolean | null;
|
3448
3448
|
readonly: boolean | null;
|
3449
3449
|
messages: string | readonly string[];
|
3450
|
-
rules: readonly import("../../
|
3450
|
+
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)?])[];
|
3451
3451
|
focused: boolean;
|
3452
3452
|
errorMessages: string | readonly string[] | null;
|
3453
3453
|
maxErrors: string | number;
|
@@ -3463,7 +3463,7 @@ export declare const VNumberInput: {
|
|
3463
3463
|
disabled: boolean | null;
|
3464
3464
|
readonly: boolean | null;
|
3465
3465
|
messages: string | readonly string[];
|
3466
|
-
rules: readonly import("../../
|
3466
|
+
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)?])[];
|
3467
3467
|
focused: boolean;
|
3468
3468
|
errorMessages: string | readonly string[] | null;
|
3469
3469
|
maxErrors: string | number;
|
@@ -3488,9 +3488,9 @@ export declare const VNumberInput: {
|
|
3488
3488
|
baseColor?: string | undefined;
|
3489
3489
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3490
3490
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3491
|
-
iconColor?: string | boolean | undefined;
|
3492
3491
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3493
3492
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3493
|
+
iconColor?: string | boolean | undefined;
|
3494
3494
|
hint?: string | undefined;
|
3495
3495
|
hideDetails?: boolean | "auto" | undefined;
|
3496
3496
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3502,7 +3502,7 @@ export declare const VNumberInput: {
|
|
3502
3502
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3503
3503
|
modelValue?: unknown;
|
3504
3504
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3505
|
-
}, import("../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" | "
|
3505
|
+
}, import("../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<{
|
3506
3506
|
$: import("vue").ComponentInternalInstance;
|
3507
3507
|
$data: {};
|
3508
3508
|
$props: Partial<{
|
@@ -3549,13 +3549,13 @@ export declare const VNumberInput: {
|
|
3549
3549
|
rounded?: string | number | boolean | undefined;
|
3550
3550
|
baseColor?: string | undefined;
|
3551
3551
|
bgColor?: string | undefined;
|
3552
|
-
iconColor?: string | boolean | undefined;
|
3553
3552
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3554
3553
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3555
3554
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3556
3555
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3557
3556
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3558
3557
|
centerAffix?: boolean | undefined;
|
3558
|
+
iconColor?: string | boolean | undefined;
|
3559
3559
|
} & 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">;
|
3560
3560
|
$attrs: {
|
3561
3561
|
[x: string]: unknown;
|
@@ -3608,13 +3608,13 @@ export declare const VNumberInput: {
|
|
3608
3608
|
rounded?: string | number | boolean | undefined;
|
3609
3609
|
baseColor?: string | undefined;
|
3610
3610
|
bgColor?: string | undefined;
|
3611
|
-
iconColor?: string | boolean | undefined;
|
3612
3611
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3613
3612
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3614
3613
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3615
3614
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3616
3615
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3617
3616
|
centerAffix?: boolean | undefined;
|
3617
|
+
iconColor?: string | boolean | undefined;
|
3618
3618
|
} & {
|
3619
3619
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3620
3620
|
}, {
|
@@ -3718,13 +3718,13 @@ export declare const VNumberInput: {
|
|
3718
3718
|
rounded?: string | number | boolean | undefined;
|
3719
3719
|
baseColor?: string | undefined;
|
3720
3720
|
bgColor?: string | undefined;
|
3721
|
-
iconColor?: string | boolean | undefined;
|
3722
3721
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3723
3722
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3724
3723
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3725
3724
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3726
3725
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3727
3726
|
centerAffix?: boolean | undefined;
|
3727
|
+
iconColor?: string | boolean | undefined;
|
3728
3728
|
} & {
|
3729
3729
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3730
3730
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3733,7 +3733,7 @@ export declare const VNumberInput: {
|
|
3733
3733
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3734
3734
|
modelValue?: unknown;
|
3735
3735
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3736
|
-
}, import("../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" | "
|
3736
|
+
}, import("../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}`> & {
|
3737
3737
|
_allExposed: {
|
3738
3738
|
reset: () => Promise<void>;
|
3739
3739
|
resetValidation: () => Promise<void>;
|
@@ -3744,7 +3744,7 @@ export declare const VNumberInput: {
|
|
3744
3744
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
3745
3745
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
3746
3746
|
} | {};
|
3747
|
-
}> & {} & 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" | "
|
3747
|
+
}> & {} & 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}`> & {
|
3748
3748
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
3749
3749
|
$: import("vue").ComponentInternalInstance;
|
3750
3750
|
$data: {};
|
@@ -3755,7 +3755,7 @@ export declare const VNumberInput: {
|
|
3755
3755
|
disabled: boolean | null;
|
3756
3756
|
readonly: boolean | null;
|
3757
3757
|
messages: string | readonly string[];
|
3758
|
-
rules: readonly import("../../
|
3758
|
+
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)?])[];
|
3759
3759
|
focused: boolean;
|
3760
3760
|
errorMessages: string | readonly string[] | null;
|
3761
3761
|
maxErrors: string | number;
|
@@ -3771,7 +3771,7 @@ export declare const VNumberInput: {
|
|
3771
3771
|
disabled: boolean | null;
|
3772
3772
|
readonly: boolean | null;
|
3773
3773
|
messages: string | readonly string[];
|
3774
|
-
rules: readonly import("../../
|
3774
|
+
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)?])[];
|
3775
3775
|
focused: boolean;
|
3776
3776
|
errorMessages: string | readonly string[] | null;
|
3777
3777
|
maxErrors: string | number;
|
@@ -3795,9 +3795,9 @@ export declare const VNumberInput: {
|
|
3795
3795
|
baseColor?: string | undefined;
|
3796
3796
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3797
3797
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3798
|
-
iconColor?: string | boolean | undefined;
|
3799
3798
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3800
3799
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3800
|
+
iconColor?: string | boolean | undefined;
|
3801
3801
|
hint?: string | undefined;
|
3802
3802
|
hideDetails?: boolean | "auto" | undefined;
|
3803
3803
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3826,7 +3826,7 @@ export declare const VNumberInput: {
|
|
3826
3826
|
disabled: boolean | null;
|
3827
3827
|
readonly: boolean | null;
|
3828
3828
|
messages: string | readonly string[];
|
3829
|
-
rules: readonly import("../../
|
3829
|
+
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)?])[];
|
3830
3830
|
focused: boolean;
|
3831
3831
|
errorMessages: string | readonly string[] | null;
|
3832
3832
|
maxErrors: string | number;
|
@@ -3851,9 +3851,9 @@ export declare const VNumberInput: {
|
|
3851
3851
|
baseColor?: string | undefined;
|
3852
3852
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3853
3853
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3854
|
-
iconColor?: string | boolean | undefined;
|
3855
3854
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3856
3855
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3856
|
+
iconColor?: string | boolean | undefined;
|
3857
3857
|
hint?: string | undefined;
|
3858
3858
|
hideDetails?: boolean | "auto" | undefined;
|
3859
3859
|
} & {}, {
|
@@ -3871,7 +3871,7 @@ export declare const VNumberInput: {
|
|
3871
3871
|
disabled: boolean | null;
|
3872
3872
|
readonly: boolean | null;
|
3873
3873
|
messages: string | readonly string[];
|
3874
|
-
rules: readonly import("../../
|
3874
|
+
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)?])[];
|
3875
3875
|
focused: boolean;
|
3876
3876
|
errorMessages: string | readonly string[] | null;
|
3877
3877
|
maxErrors: string | number;
|
@@ -3913,7 +3913,7 @@ export declare const VNumberInput: {
|
|
3913
3913
|
disabled: boolean | null;
|
3914
3914
|
readonly: boolean | null;
|
3915
3915
|
messages: string | readonly string[];
|
3916
|
-
rules: readonly import("../../
|
3916
|
+
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)?])[];
|
3917
3917
|
focused: boolean;
|
3918
3918
|
errorMessages: string | readonly string[] | null;
|
3919
3919
|
maxErrors: string | number;
|
@@ -3929,7 +3929,7 @@ export declare const VNumberInput: {
|
|
3929
3929
|
disabled: boolean | null;
|
3930
3930
|
readonly: boolean | null;
|
3931
3931
|
messages: string | readonly string[];
|
3932
|
-
rules: readonly import("../../
|
3932
|
+
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)?])[];
|
3933
3933
|
focused: boolean;
|
3934
3934
|
errorMessages: string | readonly string[] | null;
|
3935
3935
|
maxErrors: string | number;
|
@@ -3954,9 +3954,9 @@ export declare const VNumberInput: {
|
|
3954
3954
|
baseColor?: string | undefined;
|
3955
3955
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3956
3956
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3957
|
-
iconColor?: string | boolean | undefined;
|
3958
3957
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3959
3958
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3959
|
+
iconColor?: string | boolean | undefined;
|
3960
3960
|
hint?: string | undefined;
|
3961
3961
|
hideDetails?: boolean | "auto" | undefined;
|
3962
3962
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3968,7 +3968,7 @@ export declare const VNumberInput: {
|
|
3968
3968
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3969
3969
|
modelValue?: unknown;
|
3970
3970
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3971
|
-
}, import("../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" | "
|
3971
|
+
}, import("../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<{
|
3972
3972
|
$: import("vue").ComponentInternalInstance;
|
3973
3973
|
$data: {};
|
3974
3974
|
$props: Partial<{
|
@@ -4015,13 +4015,13 @@ export declare const VNumberInput: {
|
|
4015
4015
|
rounded?: string | number | boolean | undefined;
|
4016
4016
|
baseColor?: string | undefined;
|
4017
4017
|
bgColor?: string | undefined;
|
4018
|
-
iconColor?: string | boolean | undefined;
|
4019
4018
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4020
4019
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4021
4020
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4022
4021
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4023
4022
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4024
4023
|
centerAffix?: boolean | undefined;
|
4024
|
+
iconColor?: string | boolean | undefined;
|
4025
4025
|
} & 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">;
|
4026
4026
|
$attrs: {
|
4027
4027
|
[x: string]: unknown;
|
@@ -4074,13 +4074,13 @@ export declare const VNumberInput: {
|
|
4074
4074
|
rounded?: string | number | boolean | undefined;
|
4075
4075
|
baseColor?: string | undefined;
|
4076
4076
|
bgColor?: string | undefined;
|
4077
|
-
iconColor?: string | boolean | undefined;
|
4078
4077
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4079
4078
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4080
4079
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4081
4080
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4082
4081
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4083
4082
|
centerAffix?: boolean | undefined;
|
4083
|
+
iconColor?: string | boolean | undefined;
|
4084
4084
|
} & {
|
4085
4085
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4086
4086
|
}, {
|
@@ -4184,13 +4184,13 @@ export declare const VNumberInput: {
|
|
4184
4184
|
rounded?: string | number | boolean | undefined;
|
4185
4185
|
baseColor?: string | undefined;
|
4186
4186
|
bgColor?: string | undefined;
|
4187
|
-
iconColor?: string | boolean | undefined;
|
4188
4187
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4189
4188
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4190
4189
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4191
4190
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4192
4191
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4193
4192
|
centerAffix?: boolean | undefined;
|
4193
|
+
iconColor?: string | boolean | undefined;
|
4194
4194
|
} & {
|
4195
4195
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4196
4196
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4199,7 +4199,7 @@ export declare const VNumberInput: {
|
|
4199
4199
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4200
4200
|
modelValue?: unknown;
|
4201
4201
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4202
|
-
}, import("../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" | "
|
4202
|
+
}, import("../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}`> & {
|
4203
4203
|
_allExposed: {
|
4204
4204
|
reset: () => Promise<void>;
|
4205
4205
|
resetValidation: () => Promise<void>;
|
@@ -4228,7 +4228,7 @@ export declare const VNumberInput: {
|
|
4228
4228
|
readonly: boolean | null;
|
4229
4229
|
step: number;
|
4230
4230
|
messages: string | readonly string[];
|
4231
|
-
rules: readonly import("../../
|
4231
|
+
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)?])[];
|
4232
4232
|
focused: boolean;
|
4233
4233
|
errorMessages: string | readonly string[] | null;
|
4234
4234
|
maxErrors: string | number;
|
@@ -4271,7 +4271,7 @@ export declare const VNumberInput: {
|
|
4271
4271
|
readonly: boolean | null;
|
4272
4272
|
step: number;
|
4273
4273
|
messages: string | readonly string[];
|
4274
|
-
rules: readonly import("../../
|
4274
|
+
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)?])[];
|
4275
4275
|
focused: boolean;
|
4276
4276
|
errorMessages: string | readonly string[] | null;
|
4277
4277
|
maxErrors: string | number;
|
@@ -4313,7 +4313,6 @@ export declare const VNumberInput: {
|
|
4313
4313
|
bgColor?: string | undefined;
|
4314
4314
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4315
4315
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4316
|
-
iconColor?: string | boolean | undefined;
|
4317
4316
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4318
4317
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4319
4318
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4322,6 +4321,7 @@ export declare const VNumberInput: {
|
|
4322
4321
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4323
4322
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4324
4323
|
centerAffix?: boolean | undefined;
|
4324
|
+
iconColor?: string | boolean | undefined;
|
4325
4325
|
hint?: string | undefined;
|
4326
4326
|
hideDetails?: boolean | "auto" | undefined;
|
4327
4327
|
suffix?: string | undefined;
|
@@ -4402,7 +4402,7 @@ export declare const VNumberInput: {
|
|
4402
4402
|
disabled: boolean;
|
4403
4403
|
readonly: boolean | null;
|
4404
4404
|
messages: string | readonly string[];
|
4405
|
-
rules: readonly import("../../
|
4405
|
+
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)?])[];
|
4406
4406
|
focused: boolean;
|
4407
4407
|
errorMessages: string | readonly string[] | null;
|
4408
4408
|
maxErrors: string | number;
|
@@ -4433,7 +4433,7 @@ export declare const VNumberInput: {
|
|
4433
4433
|
disabled: boolean;
|
4434
4434
|
readonly: boolean | null;
|
4435
4435
|
messages: string | readonly string[];
|
4436
|
-
rules: readonly import("../../
|
4436
|
+
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)?])[];
|
4437
4437
|
focused: boolean;
|
4438
4438
|
errorMessages: string | readonly string[] | null;
|
4439
4439
|
maxErrors: string | number;
|
@@ -4472,7 +4472,6 @@ export declare const VNumberInput: {
|
|
4472
4472
|
bgColor?: string | undefined;
|
4473
4473
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4474
4474
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4475
|
-
iconColor?: string | boolean | undefined;
|
4476
4475
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4477
4476
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4478
4477
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4481,6 +4480,7 @@ export declare const VNumberInput: {
|
|
4481
4480
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4482
4481
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4483
4482
|
centerAffix?: boolean | undefined;
|
4483
|
+
iconColor?: string | boolean | undefined;
|
4484
4484
|
hint?: string | undefined;
|
4485
4485
|
hideDetails?: boolean | "auto" | undefined;
|
4486
4486
|
suffix?: string | undefined;
|
@@ -4584,7 +4584,7 @@ export declare const VNumberInput: {
|
|
4584
4584
|
disabled: boolean;
|
4585
4585
|
readonly: boolean | null;
|
4586
4586
|
messages: string | readonly string[];
|
4587
|
-
rules: readonly import("../../
|
4587
|
+
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)?])[];
|
4588
4588
|
focused: boolean;
|
4589
4589
|
errorMessages: string | readonly string[] | null;
|
4590
4590
|
maxErrors: string | number;
|
@@ -4624,7 +4624,6 @@ export declare const VNumberInput: {
|
|
4624
4624
|
bgColor?: string | undefined;
|
4625
4625
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4626
4626
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4627
|
-
iconColor?: string | boolean | undefined;
|
4628
4627
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4629
4628
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4630
4629
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4633,6 +4632,7 @@ export declare const VNumberInput: {
|
|
4633
4632
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4634
4633
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4635
4634
|
centerAffix?: boolean | undefined;
|
4635
|
+
iconColor?: string | boolean | undefined;
|
4636
4636
|
hint?: string | undefined;
|
4637
4637
|
hideDetails?: boolean | "auto" | undefined;
|
4638
4638
|
suffix?: string | undefined;
|
@@ -4707,7 +4707,7 @@ export declare const VNumberInput: {
|
|
4707
4707
|
disabled: boolean | null;
|
4708
4708
|
readonly: boolean | null;
|
4709
4709
|
messages: string | readonly string[];
|
4710
|
-
rules: readonly import("../../
|
4710
|
+
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)?])[];
|
4711
4711
|
focused: boolean;
|
4712
4712
|
errorMessages: string | readonly string[] | null;
|
4713
4713
|
maxErrors: string | number;
|
@@ -4723,7 +4723,7 @@ export declare const VNumberInput: {
|
|
4723
4723
|
disabled: boolean | null;
|
4724
4724
|
readonly: boolean | null;
|
4725
4725
|
messages: string | readonly string[];
|
4726
|
-
rules: readonly import("../../
|
4726
|
+
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)?])[];
|
4727
4727
|
focused: boolean;
|
4728
4728
|
errorMessages: string | readonly string[] | null;
|
4729
4729
|
maxErrors: string | number;
|
@@ -4747,9 +4747,9 @@ export declare const VNumberInput: {
|
|
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
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4778,7 +4778,7 @@ export declare const VNumberInput: {
|
|
4778
4778
|
disabled: boolean | null;
|
4779
4779
|
readonly: boolean | null;
|
4780
4780
|
messages: string | readonly string[];
|
4781
|
-
rules: readonly import("../../
|
4781
|
+
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)?])[];
|
4782
4782
|
focused: boolean;
|
4783
4783
|
errorMessages: string | readonly string[] | null;
|
4784
4784
|
maxErrors: string | number;
|
@@ -4803,9 +4803,9 @@ export declare const VNumberInput: {
|
|
4803
4803
|
baseColor?: string | undefined;
|
4804
4804
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4805
4805
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4806
|
-
iconColor?: string | boolean | undefined;
|
4807
4806
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4808
4807
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4808
|
+
iconColor?: string | boolean | undefined;
|
4809
4809
|
hint?: string | undefined;
|
4810
4810
|
hideDetails?: boolean | "auto" | undefined;
|
4811
4811
|
} & {}, {
|
@@ -4823,7 +4823,7 @@ export declare const VNumberInput: {
|
|
4823
4823
|
disabled: boolean | null;
|
4824
4824
|
readonly: boolean | null;
|
4825
4825
|
messages: string | readonly string[];
|
4826
|
-
rules: readonly import("../../
|
4826
|
+
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)?])[];
|
4827
4827
|
focused: boolean;
|
4828
4828
|
errorMessages: string | readonly string[] | null;
|
4829
4829
|
maxErrors: string | number;
|
@@ -4865,7 +4865,7 @@ export declare const VNumberInput: {
|
|
4865
4865
|
disabled: boolean | null;
|
4866
4866
|
readonly: boolean | null;
|
4867
4867
|
messages: string | readonly string[];
|
4868
|
-
rules: readonly import("../../
|
4868
|
+
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)?])[];
|
4869
4869
|
focused: boolean;
|
4870
4870
|
errorMessages: string | readonly string[] | null;
|
4871
4871
|
maxErrors: string | number;
|
@@ -4881,7 +4881,7 @@ export declare const VNumberInput: {
|
|
4881
4881
|
disabled: boolean | null;
|
4882
4882
|
readonly: boolean | null;
|
4883
4883
|
messages: string | readonly string[];
|
4884
|
-
rules: readonly import("../../
|
4884
|
+
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)?])[];
|
4885
4885
|
focused: boolean;
|
4886
4886
|
errorMessages: string | readonly string[] | null;
|
4887
4887
|
maxErrors: string | number;
|
@@ -4906,9 +4906,9 @@ export declare const VNumberInput: {
|
|
4906
4906
|
baseColor?: string | undefined;
|
4907
4907
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4908
4908
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4909
|
-
iconColor?: string | boolean | undefined;
|
4910
4909
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4911
4910
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4911
|
+
iconColor?: string | boolean | undefined;
|
4912
4912
|
hint?: string | undefined;
|
4913
4913
|
hideDetails?: boolean | "auto" | undefined;
|
4914
4914
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4920,7 +4920,7 @@ export declare const VNumberInput: {
|
|
4920
4920
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4921
4921
|
modelValue?: unknown;
|
4922
4922
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4923
|
-
}, import("../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" | "
|
4923
|
+
}, import("../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<{
|
4924
4924
|
$: import("vue").ComponentInternalInstance;
|
4925
4925
|
$data: {};
|
4926
4926
|
$props: Partial<{
|
@@ -4967,13 +4967,13 @@ export declare const VNumberInput: {
|
|
4967
4967
|
rounded?: string | number | boolean | undefined;
|
4968
4968
|
baseColor?: string | undefined;
|
4969
4969
|
bgColor?: string | undefined;
|
4970
|
-
iconColor?: string | boolean | undefined;
|
4971
4970
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4972
4971
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4973
4972
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4974
4973
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4975
4974
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4976
4975
|
centerAffix?: boolean | undefined;
|
4976
|
+
iconColor?: string | boolean | undefined;
|
4977
4977
|
} & 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">;
|
4978
4978
|
$attrs: {
|
4979
4979
|
[x: string]: unknown;
|
@@ -5026,13 +5026,13 @@ export declare const VNumberInput: {
|
|
5026
5026
|
rounded?: string | number | boolean | undefined;
|
5027
5027
|
baseColor?: string | undefined;
|
5028
5028
|
bgColor?: string | undefined;
|
5029
|
-
iconColor?: string | boolean | undefined;
|
5030
5029
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5031
5030
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5032
5031
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5033
5032
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5034
5033
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5035
5034
|
centerAffix?: boolean | undefined;
|
5035
|
+
iconColor?: string | boolean | undefined;
|
5036
5036
|
} & {
|
5037
5037
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5038
5038
|
}, {
|
@@ -5136,13 +5136,13 @@ export declare const VNumberInput: {
|
|
5136
5136
|
rounded?: string | number | boolean | undefined;
|
5137
5137
|
baseColor?: string | undefined;
|
5138
5138
|
bgColor?: string | undefined;
|
5139
|
-
iconColor?: string | boolean | undefined;
|
5140
5139
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5141
5140
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5142
5141
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5143
5142
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5144
5143
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5145
5144
|
centerAffix?: boolean | undefined;
|
5145
|
+
iconColor?: string | boolean | undefined;
|
5146
5146
|
} & {
|
5147
5147
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5148
5148
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5151,7 +5151,7 @@ export declare const VNumberInput: {
|
|
5151
5151
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5152
5152
|
modelValue?: unknown;
|
5153
5153
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5154
|
-
}, import("../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" | "
|
5154
|
+
}, import("../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}`> & {
|
5155
5155
|
_allExposed: {
|
5156
5156
|
reset: () => Promise<void>;
|
5157
5157
|
resetValidation: () => Promise<void>;
|
@@ -5180,7 +5180,7 @@ export declare const VNumberInput: {
|
|
5180
5180
|
disabled: boolean;
|
5181
5181
|
readonly: boolean | null;
|
5182
5182
|
messages: string | readonly string[];
|
5183
|
-
rules: readonly import("../../
|
5183
|
+
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)?])[];
|
5184
5184
|
focused: boolean;
|
5185
5185
|
errorMessages: string | readonly string[] | null;
|
5186
5186
|
maxErrors: string | number;
|
@@ -5248,7 +5248,7 @@ export declare const VNumberInput: {
|
|
5248
5248
|
disabled: boolean;
|
5249
5249
|
readonly: boolean | null;
|
5250
5250
|
messages: string | readonly string[];
|
5251
|
-
rules: readonly import("../../
|
5251
|
+
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)?])[];
|
5252
5252
|
focused: boolean;
|
5253
5253
|
errorMessages: string | readonly string[] | null;
|
5254
5254
|
maxErrors: string | number;
|
@@ -5279,7 +5279,7 @@ export declare const VNumberInput: {
|
|
5279
5279
|
disabled: boolean;
|
5280
5280
|
readonly: boolean | null;
|
5281
5281
|
messages: string | readonly string[];
|
5282
|
-
rules: readonly import("../../
|
5282
|
+
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)?])[];
|
5283
5283
|
focused: boolean;
|
5284
5284
|
errorMessages: string | readonly string[] | null;
|
5285
5285
|
maxErrors: string | number;
|
@@ -5319,7 +5319,6 @@ export declare const VNumberInput: {
|
|
5319
5319
|
bgColor?: string | undefined;
|
5320
5320
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5321
5321
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5322
|
-
iconColor?: string | boolean | undefined;
|
5323
5322
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5324
5323
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5325
5324
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5328,6 +5327,7 @@ export declare const VNumberInput: {
|
|
5328
5327
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5329
5328
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5330
5329
|
centerAffix?: boolean | undefined;
|
5330
|
+
iconColor?: string | boolean | undefined;
|
5331
5331
|
hint?: string | undefined;
|
5332
5332
|
hideDetails?: boolean | "auto" | undefined;
|
5333
5333
|
suffix?: string | undefined;
|
@@ -5402,7 +5402,7 @@ export declare const VNumberInput: {
|
|
5402
5402
|
disabled: boolean | null;
|
5403
5403
|
readonly: boolean | null;
|
5404
5404
|
messages: string | readonly string[];
|
5405
|
-
rules: readonly import("../../
|
5405
|
+
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)?])[];
|
5406
5406
|
focused: boolean;
|
5407
5407
|
errorMessages: string | readonly string[] | null;
|
5408
5408
|
maxErrors: string | number;
|
@@ -5418,7 +5418,7 @@ export declare const VNumberInput: {
|
|
5418
5418
|
disabled: boolean | null;
|
5419
5419
|
readonly: boolean | null;
|
5420
5420
|
messages: string | readonly string[];
|
5421
|
-
rules: readonly import("../../
|
5421
|
+
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)?])[];
|
5422
5422
|
focused: boolean;
|
5423
5423
|
errorMessages: string | readonly string[] | null;
|
5424
5424
|
maxErrors: string | number;
|
@@ -5442,9 +5442,9 @@ export declare const VNumberInput: {
|
|
5442
5442
|
baseColor?: string | undefined;
|
5443
5443
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5444
5444
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5445
|
-
iconColor?: string | boolean | undefined;
|
5446
5445
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5447
5446
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5447
|
+
iconColor?: string | boolean | undefined;
|
5448
5448
|
hint?: string | undefined;
|
5449
5449
|
hideDetails?: boolean | "auto" | undefined;
|
5450
5450
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5473,7 +5473,7 @@ export declare const VNumberInput: {
|
|
5473
5473
|
disabled: boolean | null;
|
5474
5474
|
readonly: boolean | null;
|
5475
5475
|
messages: string | readonly string[];
|
5476
|
-
rules: readonly import("../../
|
5476
|
+
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)?])[];
|
5477
5477
|
focused: boolean;
|
5478
5478
|
errorMessages: string | readonly string[] | null;
|
5479
5479
|
maxErrors: string | number;
|
@@ -5498,9 +5498,9 @@ export declare const VNumberInput: {
|
|
5498
5498
|
baseColor?: string | undefined;
|
5499
5499
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5500
5500
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5501
|
-
iconColor?: string | boolean | undefined;
|
5502
5501
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5503
5502
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5503
|
+
iconColor?: string | boolean | undefined;
|
5504
5504
|
hint?: string | undefined;
|
5505
5505
|
hideDetails?: boolean | "auto" | undefined;
|
5506
5506
|
} & {}, {
|
@@ -5518,7 +5518,7 @@ export declare const VNumberInput: {
|
|
5518
5518
|
disabled: boolean | null;
|
5519
5519
|
readonly: boolean | null;
|
5520
5520
|
messages: string | readonly string[];
|
5521
|
-
rules: readonly import("../../
|
5521
|
+
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)?])[];
|
5522
5522
|
focused: boolean;
|
5523
5523
|
errorMessages: string | readonly string[] | null;
|
5524
5524
|
maxErrors: string | number;
|
@@ -5560,7 +5560,7 @@ export declare const VNumberInput: {
|
|
5560
5560
|
disabled: boolean | null;
|
5561
5561
|
readonly: boolean | null;
|
5562
5562
|
messages: string | readonly string[];
|
5563
|
-
rules: readonly import("../../
|
5563
|
+
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)?])[];
|
5564
5564
|
focused: boolean;
|
5565
5565
|
errorMessages: string | readonly string[] | null;
|
5566
5566
|
maxErrors: string | number;
|
@@ -5576,7 +5576,7 @@ export declare const VNumberInput: {
|
|
5576
5576
|
disabled: boolean | null;
|
5577
5577
|
readonly: boolean | null;
|
5578
5578
|
messages: string | readonly string[];
|
5579
|
-
rules: readonly import("../../
|
5579
|
+
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)?])[];
|
5580
5580
|
focused: boolean;
|
5581
5581
|
errorMessages: string | readonly string[] | null;
|
5582
5582
|
maxErrors: string | number;
|
@@ -5601,9 +5601,9 @@ export declare const VNumberInput: {
|
|
5601
5601
|
baseColor?: string | undefined;
|
5602
5602
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5603
5603
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5604
|
-
iconColor?: string | boolean | undefined;
|
5605
5604
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5606
5605
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5606
|
+
iconColor?: string | boolean | undefined;
|
5607
5607
|
hint?: string | undefined;
|
5608
5608
|
hideDetails?: boolean | "auto" | undefined;
|
5609
5609
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5615,7 +5615,7 @@ export declare const VNumberInput: {
|
|
5615
5615
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5616
5616
|
modelValue?: unknown;
|
5617
5617
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5618
|
-
}, import("../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" | "
|
5618
|
+
}, import("../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<{
|
5619
5619
|
$: import("vue").ComponentInternalInstance;
|
5620
5620
|
$data: {};
|
5621
5621
|
$props: Partial<{
|
@@ -5662,13 +5662,13 @@ export declare const VNumberInput: {
|
|
5662
5662
|
rounded?: string | number | boolean | undefined;
|
5663
5663
|
baseColor?: string | undefined;
|
5664
5664
|
bgColor?: string | undefined;
|
5665
|
-
iconColor?: string | boolean | undefined;
|
5666
5665
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5667
5666
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5668
5667
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5669
5668
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5670
5669
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5671
5670
|
centerAffix?: boolean | undefined;
|
5671
|
+
iconColor?: string | boolean | undefined;
|
5672
5672
|
} & 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">;
|
5673
5673
|
$attrs: {
|
5674
5674
|
[x: string]: unknown;
|
@@ -5721,13 +5721,13 @@ export declare const VNumberInput: {
|
|
5721
5721
|
rounded?: string | number | boolean | undefined;
|
5722
5722
|
baseColor?: string | undefined;
|
5723
5723
|
bgColor?: string | undefined;
|
5724
|
-
iconColor?: string | boolean | undefined;
|
5725
5724
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5726
5725
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5727
5726
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5728
5727
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5729
5728
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5730
5729
|
centerAffix?: boolean | undefined;
|
5730
|
+
iconColor?: string | boolean | undefined;
|
5731
5731
|
} & {
|
5732
5732
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5733
5733
|
}, {
|
@@ -5831,13 +5831,13 @@ export declare const VNumberInput: {
|
|
5831
5831
|
rounded?: string | number | boolean | undefined;
|
5832
5832
|
baseColor?: string | undefined;
|
5833
5833
|
bgColor?: string | undefined;
|
5834
|
-
iconColor?: string | boolean | undefined;
|
5835
5834
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5836
5835
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5837
5836
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5838
5837
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5839
5838
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5840
5839
|
centerAffix?: boolean | undefined;
|
5840
|
+
iconColor?: string | boolean | undefined;
|
5841
5841
|
} & {
|
5842
5842
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5843
5843
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5846,7 +5846,7 @@ export declare const VNumberInput: {
|
|
5846
5846
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5847
5847
|
modelValue?: unknown;
|
5848
5848
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5849
|
-
}, import("../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" | "
|
5849
|
+
}, import("../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}`> & {
|
5850
5850
|
_allExposed: {
|
5851
5851
|
reset: () => Promise<void>;
|
5852
5852
|
resetValidation: () => Promise<void>;
|
@@ -5857,7 +5857,7 @@ export declare const VNumberInput: {
|
|
5857
5857
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
5858
5858
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
5859
5859
|
} | {};
|
5860
|
-
}> & {} & 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" | "
|
5860
|
+
}> & {} & 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}`> & {
|
5861
5861
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
5862
5862
|
$: import("vue").ComponentInternalInstance;
|
5863
5863
|
$data: {};
|
@@ -5868,7 +5868,7 @@ export declare const VNumberInput: {
|
|
5868
5868
|
disabled: boolean | null;
|
5869
5869
|
readonly: boolean | null;
|
5870
5870
|
messages: string | readonly string[];
|
5871
|
-
rules: readonly import("../../
|
5871
|
+
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)?])[];
|
5872
5872
|
focused: boolean;
|
5873
5873
|
errorMessages: string | readonly string[] | null;
|
5874
5874
|
maxErrors: string | number;
|
@@ -5884,7 +5884,7 @@ export declare const VNumberInput: {
|
|
5884
5884
|
disabled: boolean | null;
|
5885
5885
|
readonly: boolean | null;
|
5886
5886
|
messages: string | readonly string[];
|
5887
|
-
rules: readonly import("../../
|
5887
|
+
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)?])[];
|
5888
5888
|
focused: boolean;
|
5889
5889
|
errorMessages: string | readonly string[] | null;
|
5890
5890
|
maxErrors: string | number;
|
@@ -5908,9 +5908,9 @@ export declare const VNumberInput: {
|
|
5908
5908
|
baseColor?: string | undefined;
|
5909
5909
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5910
5910
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5911
|
-
iconColor?: string | boolean | undefined;
|
5912
5911
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5913
5912
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5913
|
+
iconColor?: string | boolean | undefined;
|
5914
5914
|
hint?: string | undefined;
|
5915
5915
|
hideDetails?: boolean | "auto" | undefined;
|
5916
5916
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5939,7 +5939,7 @@ export declare const VNumberInput: {
|
|
5939
5939
|
disabled: boolean | null;
|
5940
5940
|
readonly: boolean | null;
|
5941
5941
|
messages: string | readonly string[];
|
5942
|
-
rules: readonly import("../../
|
5942
|
+
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)?])[];
|
5943
5943
|
focused: boolean;
|
5944
5944
|
errorMessages: string | readonly string[] | null;
|
5945
5945
|
maxErrors: string | number;
|
@@ -5964,9 +5964,9 @@ export declare const VNumberInput: {
|
|
5964
5964
|
baseColor?: string | undefined;
|
5965
5965
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5966
5966
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5967
|
-
iconColor?: string | boolean | undefined;
|
5968
5967
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5969
5968
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5969
|
+
iconColor?: string | boolean | undefined;
|
5970
5970
|
hint?: string | undefined;
|
5971
5971
|
hideDetails?: boolean | "auto" | undefined;
|
5972
5972
|
} & {}, {
|
@@ -5984,7 +5984,7 @@ export declare const VNumberInput: {
|
|
5984
5984
|
disabled: boolean | null;
|
5985
5985
|
readonly: boolean | null;
|
5986
5986
|
messages: string | readonly string[];
|
5987
|
-
rules: readonly import("../../
|
5987
|
+
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)?])[];
|
5988
5988
|
focused: boolean;
|
5989
5989
|
errorMessages: string | readonly string[] | null;
|
5990
5990
|
maxErrors: string | number;
|
@@ -6026,7 +6026,7 @@ export declare const VNumberInput: {
|
|
6026
6026
|
disabled: boolean | null;
|
6027
6027
|
readonly: boolean | null;
|
6028
6028
|
messages: string | readonly string[];
|
6029
|
-
rules: readonly import("../../
|
6029
|
+
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)?])[];
|
6030
6030
|
focused: boolean;
|
6031
6031
|
errorMessages: string | readonly string[] | null;
|
6032
6032
|
maxErrors: string | number;
|
@@ -6042,7 +6042,7 @@ export declare const VNumberInput: {
|
|
6042
6042
|
disabled: boolean | null;
|
6043
6043
|
readonly: boolean | null;
|
6044
6044
|
messages: string | readonly string[];
|
6045
|
-
rules: readonly import("../../
|
6045
|
+
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)?])[];
|
6046
6046
|
focused: boolean;
|
6047
6047
|
errorMessages: string | readonly string[] | null;
|
6048
6048
|
maxErrors: string | number;
|
@@ -6067,9 +6067,9 @@ export declare const VNumberInput: {
|
|
6067
6067
|
baseColor?: string | undefined;
|
6068
6068
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6069
6069
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6070
|
-
iconColor?: string | boolean | undefined;
|
6071
6070
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6072
6071
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6072
|
+
iconColor?: string | boolean | undefined;
|
6073
6073
|
hint?: string | undefined;
|
6074
6074
|
hideDetails?: boolean | "auto" | undefined;
|
6075
6075
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6081,7 +6081,7 @@ export declare const VNumberInput: {
|
|
6081
6081
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6082
6082
|
modelValue?: unknown;
|
6083
6083
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6084
|
-
}, import("../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" | "
|
6084
|
+
}, import("../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<{
|
6085
6085
|
$: import("vue").ComponentInternalInstance;
|
6086
6086
|
$data: {};
|
6087
6087
|
$props: Partial<{
|
@@ -6128,13 +6128,13 @@ export declare const VNumberInput: {
|
|
6128
6128
|
rounded?: string | number | boolean | undefined;
|
6129
6129
|
baseColor?: string | undefined;
|
6130
6130
|
bgColor?: string | undefined;
|
6131
|
-
iconColor?: string | boolean | undefined;
|
6132
6131
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6133
6132
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6134
6133
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6135
6134
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6136
6135
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6137
6136
|
centerAffix?: boolean | undefined;
|
6137
|
+
iconColor?: string | boolean | undefined;
|
6138
6138
|
} & 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">;
|
6139
6139
|
$attrs: {
|
6140
6140
|
[x: string]: unknown;
|
@@ -6187,13 +6187,13 @@ export declare const VNumberInput: {
|
|
6187
6187
|
rounded?: string | number | boolean | undefined;
|
6188
6188
|
baseColor?: string | undefined;
|
6189
6189
|
bgColor?: string | undefined;
|
6190
|
-
iconColor?: string | boolean | undefined;
|
6191
6190
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6192
6191
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6193
6192
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6194
6193
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6195
6194
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6196
6195
|
centerAffix?: boolean | undefined;
|
6196
|
+
iconColor?: string | boolean | undefined;
|
6197
6197
|
} & {
|
6198
6198
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6199
6199
|
}, {
|
@@ -6297,13 +6297,13 @@ export declare const VNumberInput: {
|
|
6297
6297
|
rounded?: string | number | boolean | undefined;
|
6298
6298
|
baseColor?: string | undefined;
|
6299
6299
|
bgColor?: string | undefined;
|
6300
|
-
iconColor?: string | boolean | undefined;
|
6301
6300
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6302
6301
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6303
6302
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6304
6303
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6305
6304
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6306
6305
|
centerAffix?: boolean | undefined;
|
6306
|
+
iconColor?: string | boolean | undefined;
|
6307
6307
|
} & {
|
6308
6308
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6309
6309
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6312,7 +6312,7 @@ export declare const VNumberInput: {
|
|
6312
6312
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6313
6313
|
modelValue?: unknown;
|
6314
6314
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6315
|
-
}, import("../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" | "
|
6315
|
+
}, import("../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}`> & {
|
6316
6316
|
_allExposed: {
|
6317
6317
|
reset: () => Promise<void>;
|
6318
6318
|
resetValidation: () => Promise<void>;
|
@@ -6343,7 +6343,7 @@ export declare const VNumberInput: {
|
|
6343
6343
|
readonly: boolean | null;
|
6344
6344
|
step: number;
|
6345
6345
|
messages: string | readonly string[];
|
6346
|
-
rules: readonly import("../../
|
6346
|
+
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)?])[];
|
6347
6347
|
focused: boolean;
|
6348
6348
|
errorMessages: string | readonly string[] | null;
|
6349
6349
|
maxErrors: string | number;
|
@@ -6433,7 +6433,7 @@ export declare const VNumberInput: {
|
|
6433
6433
|
default: () => never[];
|
6434
6434
|
};
|
6435
6435
|
rules: {
|
6436
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
6436
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
6437
6437
|
default: () => never[];
|
6438
6438
|
};
|
6439
6439
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -6462,7 +6462,6 @@ export declare const VNumberInput: {
|
|
6462
6462
|
bgColor: StringConstructor;
|
6463
6463
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6464
6464
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6465
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
6466
6465
|
clearIcon: {
|
6467
6466
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
6468
6467
|
default: string;
|
@@ -6479,6 +6478,7 @@ export declare const VNumberInput: {
|
|
6479
6478
|
default: undefined;
|
6480
6479
|
};
|
6481
6480
|
glow: BooleanConstructor;
|
6481
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
6482
6482
|
hideSpinButtons: BooleanConstructor;
|
6483
6483
|
hint: StringConstructor;
|
6484
6484
|
persistentHint: BooleanConstructor;
|
@@ -6568,7 +6568,7 @@ export declare const VNumberInput: {
|
|
6568
6568
|
default: () => never[];
|
6569
6569
|
};
|
6570
6570
|
rules: {
|
6571
|
-
type: PropType<readonly import("../../types.js").ValidationRule[]>;
|
6571
|
+
type: PropType<readonly (import("../../types.js").ValidationRule | import("../../labs/rules/index.js").ValidationAlias)[]>;
|
6572
6572
|
default: () => never[];
|
6573
6573
|
};
|
6574
6574
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
@@ -6597,7 +6597,6 @@ export declare const VNumberInput: {
|
|
6597
6597
|
bgColor: StringConstructor;
|
6598
6598
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6599
6599
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6600
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
6601
6600
|
clearIcon: {
|
6602
6601
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
6603
6602
|
default: string;
|
@@ -6614,6 +6613,7 @@ export declare const VNumberInput: {
|
|
6614
6613
|
default: undefined;
|
6615
6614
|
};
|
6616
6615
|
glow: BooleanConstructor;
|
6616
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
6617
6617
|
hideSpinButtons: BooleanConstructor;
|
6618
6618
|
hint: StringConstructor;
|
6619
6619
|
persistentHint: BooleanConstructor;
|