@vuetify/nightly 3.8.4-master.2025-05-12 → 3.8.5-dev.2025-05-14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2152 -1792
- package/dist/json/importMap-labs.json +40 -36
- package/dist/json/importMap.json +106 -106
- package/dist/json/tags.json +95 -0
- package/dist/json/web-types.json +5016 -3760
- package/dist/vuetify-labs.cjs +429 -61
- package/dist/vuetify-labs.css +4205 -4149
- package/dist/vuetify-labs.d.ts +2274 -1142
- package/dist/vuetify-labs.esm.js +430 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +429 -61
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4725 -4672
- package/dist/vuetify.d.ts +544 -487
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +51 -43
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +133 -108
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +2 -1
@@ -64,6 +64,7 @@ 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;
|
67
68
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
68
69
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
69
70
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -72,7 +73,6 @@ export declare const VNumberInput: {
|
|
72
73
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
73
74
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
74
75
|
centerAffix?: boolean | undefined;
|
75
|
-
iconColor?: string | boolean | undefined;
|
76
76
|
hint?: string | undefined;
|
77
77
|
hideDetails?: boolean | "auto" | undefined;
|
78
78
|
suffix?: string | undefined;
|
@@ -223,6 +223,7 @@ 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;
|
226
227
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
227
228
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
228
229
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -231,7 +232,6 @@ export declare const VNumberInput: {
|
|
231
232
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
232
233
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
233
234
|
centerAffix?: boolean | undefined;
|
234
|
-
iconColor?: string | boolean | undefined;
|
235
235
|
hint?: string | undefined;
|
236
236
|
hideDetails?: boolean | "auto" | undefined;
|
237
237
|
suffix?: string | undefined;
|
@@ -375,6 +375,7 @@ 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;
|
378
379
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
379
380
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
380
381
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -383,7 +384,6 @@ export declare const VNumberInput: {
|
|
383
384
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
384
385
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
385
386
|
centerAffix?: boolean | undefined;
|
386
|
-
iconColor?: string | boolean | undefined;
|
387
387
|
hint?: string | undefined;
|
388
388
|
hideDetails?: boolean | "auto" | undefined;
|
389
389
|
suffix?: string | undefined;
|
@@ -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;
|
501
502
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
502
503
|
'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">;
|
@@ -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;
|
557
558
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
558
559
|
'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
|
} & {}, {
|
@@ -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;
|
660
661
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
661
662
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
721
722
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
722
723
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
723
724
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
724
725
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
725
726
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
726
727
|
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;
|
780
781
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
781
782
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
782
783
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
783
784
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
784
785
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
785
786
|
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;
|
890
891
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
891
892
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
892
893
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
893
894
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
894
895
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
895
896
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
906
906
|
_allExposed: {
|
907
907
|
reset: () => Promise<void>;
|
908
908
|
resetValidation: () => Promise<void>;
|
@@ -1070,6 +1070,7 @@ 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;
|
1073
1074
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1074
1075
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1075
1076
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1078,7 +1079,6 @@ export declare const VNumberInput: {
|
|
1078
1079
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1079
1080
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1080
1081
|
centerAffix?: boolean | undefined;
|
1081
|
-
iconColor?: string | boolean | undefined;
|
1082
1082
|
hint?: string | undefined;
|
1083
1083
|
hideDetails?: boolean | "auto" | undefined;
|
1084
1084
|
suffix?: string | undefined;
|
@@ -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;
|
1196
1197
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1197
1198
|
'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">;
|
@@ -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;
|
1252
1253
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1253
1254
|
'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
|
} & {}, {
|
@@ -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;
|
1355
1356
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1356
1357
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
1416
1417
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1417
1418
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1418
1419
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1419
1420
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1420
1421
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1421
1422
|
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;
|
1475
1476
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1476
1477
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1477
1478
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1478
1479
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1479
1480
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1480
1481
|
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;
|
1585
1586
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1586
1587
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1587
1588
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1588
1589
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1589
1590
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1590
1591
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
1612
1612
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
1613
1613
|
$: import("vue").ComponentInternalInstance;
|
1614
1614
|
$data: {};
|
@@ -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;
|
1662
1663
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1663
1664
|
'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">;
|
@@ -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;
|
1718
1719
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1719
1720
|
'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
|
} & {}, {
|
@@ -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;
|
1821
1822
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1822
1823
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
1882
1883
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1883
1884
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1884
1885
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1885
1886
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1886
1887
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1887
1888
|
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;
|
1941
1942
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1942
1943
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1943
1944
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1944
1945
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1945
1946
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1946
1947
|
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;
|
2051
2052
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2052
2053
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2053
2054
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2054
2055
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2055
2056
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2056
2057
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
2067
2067
|
_allExposed: {
|
2068
2068
|
reset: () => Promise<void>;
|
2069
2069
|
resetValidation: () => Promise<void>;
|
@@ -2200,6 +2200,7 @@ 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;
|
2203
2204
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2204
2205
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2205
2206
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2208,7 +2209,6 @@ export declare const VNumberInput: {
|
|
2208
2209
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2209
2210
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2210
2211
|
centerAffix?: boolean | undefined;
|
2211
|
-
iconColor?: string | boolean | undefined;
|
2212
2212
|
hint?: string | undefined;
|
2213
2213
|
hideDetails?: boolean | "auto" | undefined;
|
2214
2214
|
suffix?: string | undefined;
|
@@ -2359,6 +2359,7 @@ 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;
|
2362
2363
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2363
2364
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2364
2365
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2367,7 +2368,6 @@ export declare const VNumberInput: {
|
|
2367
2368
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2368
2369
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2369
2370
|
centerAffix?: boolean | undefined;
|
2370
|
-
iconColor?: string | boolean | undefined;
|
2371
2371
|
hint?: string | undefined;
|
2372
2372
|
hideDetails?: boolean | "auto" | undefined;
|
2373
2373
|
suffix?: string | undefined;
|
@@ -2511,6 +2511,7 @@ 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;
|
2514
2515
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2515
2516
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2516
2517
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2519,7 +2520,6 @@ export declare const VNumberInput: {
|
|
2519
2520
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2520
2521
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2521
2522
|
centerAffix?: boolean | undefined;
|
2522
|
-
iconColor?: string | boolean | undefined;
|
2523
2523
|
hint?: string | undefined;
|
2524
2524
|
hideDetails?: boolean | "auto" | undefined;
|
2525
2525
|
suffix?: string | undefined;
|
@@ -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;
|
2637
2638
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2638
2639
|
'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">;
|
@@ -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;
|
2693
2694
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2694
2695
|
'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
|
} & {}, {
|
@@ -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;
|
2796
2797
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2797
2798
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
2857
2858
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2858
2859
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2859
2860
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2860
2861
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2861
2862
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2862
2863
|
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;
|
2916
2917
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2917
2918
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2918
2919
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2919
2920
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2920
2921
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2921
2922
|
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;
|
3026
3027
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3027
3028
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3028
3029
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3029
3030
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3030
3031
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3031
3032
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
3042
3042
|
_allExposed: {
|
3043
3043
|
reset: () => Promise<void>;
|
3044
3044
|
resetValidation: () => Promise<void>;
|
@@ -3206,6 +3206,7 @@ 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;
|
3209
3210
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3210
3211
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3211
3212
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3214,7 +3215,6 @@ export declare const VNumberInput: {
|
|
3214
3215
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3215
3216
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3216
3217
|
centerAffix?: boolean | undefined;
|
3217
|
-
iconColor?: string | boolean | undefined;
|
3218
3218
|
hint?: string | undefined;
|
3219
3219
|
hideDetails?: boolean | "auto" | undefined;
|
3220
3220
|
suffix?: string | undefined;
|
@@ -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;
|
3332
3333
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3333
3334
|
'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">;
|
@@ -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;
|
3388
3389
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3389
3390
|
'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
|
} & {}, {
|
@@ -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;
|
3491
3492
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3492
3493
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
3552
3553
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3553
3554
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3554
3555
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3555
3556
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3556
3557
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3557
3558
|
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;
|
3611
3612
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3612
3613
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3613
3614
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3614
3615
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3615
3616
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3616
3617
|
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;
|
3721
3722
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3722
3723
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3723
3724
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3724
3725
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3725
3726
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3726
3727
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
3748
3748
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
3749
3749
|
$: import("vue").ComponentInternalInstance;
|
3750
3750
|
$data: {};
|
@@ -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;
|
3798
3799
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3799
3800
|
'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">;
|
@@ -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;
|
3854
3855
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3855
3856
|
'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
|
} & {}, {
|
@@ -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;
|
3957
3958
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3958
3959
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
4018
4019
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4019
4020
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4020
4021
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4021
4022
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4022
4023
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4023
4024
|
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;
|
4077
4078
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4078
4079
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4079
4080
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4080
4081
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4081
4082
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4082
4083
|
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;
|
4187
4188
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4188
4189
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4189
4190
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4190
4191
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4191
4192
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4192
4193
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
4203
4203
|
_allExposed: {
|
4204
4204
|
reset: () => Promise<void>;
|
4205
4205
|
resetValidation: () => Promise<void>;
|
@@ -4313,6 +4313,7 @@ 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;
|
4316
4317
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4317
4318
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4318
4319
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4321,7 +4322,6 @@ export declare const VNumberInput: {
|
|
4321
4322
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4322
4323
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4323
4324
|
centerAffix?: boolean | undefined;
|
4324
|
-
iconColor?: string | boolean | undefined;
|
4325
4325
|
hint?: string | undefined;
|
4326
4326
|
hideDetails?: boolean | "auto" | undefined;
|
4327
4327
|
suffix?: string | undefined;
|
@@ -4472,6 +4472,7 @@ 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;
|
4475
4476
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4476
4477
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4477
4478
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4480,7 +4481,6 @@ export declare const VNumberInput: {
|
|
4480
4481
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4481
4482
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4482
4483
|
centerAffix?: boolean | undefined;
|
4483
|
-
iconColor?: string | boolean | undefined;
|
4484
4484
|
hint?: string | undefined;
|
4485
4485
|
hideDetails?: boolean | "auto" | undefined;
|
4486
4486
|
suffix?: string | undefined;
|
@@ -4624,6 +4624,7 @@ 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;
|
4627
4628
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4628
4629
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4629
4630
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4632,7 +4633,6 @@ export declare const VNumberInput: {
|
|
4632
4633
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4633
4634
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4634
4635
|
centerAffix?: boolean | undefined;
|
4635
|
-
iconColor?: string | boolean | undefined;
|
4636
4636
|
hint?: string | undefined;
|
4637
4637
|
hideDetails?: boolean | "auto" | undefined;
|
4638
4638
|
suffix?: string | undefined;
|
@@ -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;
|
4750
4751
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4751
4752
|
'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">;
|
@@ -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;
|
4806
4807
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4807
4808
|
'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
|
} & {}, {
|
@@ -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;
|
4909
4910
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4910
4911
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
4970
4971
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4971
4972
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4972
4973
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4973
4974
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4974
4975
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4975
4976
|
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;
|
5029
5030
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5030
5031
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5031
5032
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5032
5033
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5033
5034
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5034
5035
|
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;
|
5139
5140
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5140
5141
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5141
5142
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5142
5143
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5143
5144
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5144
5145
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
5155
5155
|
_allExposed: {
|
5156
5156
|
reset: () => Promise<void>;
|
5157
5157
|
resetValidation: () => Promise<void>;
|
@@ -5319,6 +5319,7 @@ 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;
|
5322
5323
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5323
5324
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5324
5325
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5327,7 +5328,6 @@ export declare const VNumberInput: {
|
|
5327
5328
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5328
5329
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5329
5330
|
centerAffix?: boolean | undefined;
|
5330
|
-
iconColor?: string | boolean | undefined;
|
5331
5331
|
hint?: string | undefined;
|
5332
5332
|
hideDetails?: boolean | "auto" | undefined;
|
5333
5333
|
suffix?: string | undefined;
|
@@ -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;
|
5445
5446
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5446
5447
|
'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">;
|
@@ -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;
|
5501
5502
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5502
5503
|
'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
|
} & {}, {
|
@@ -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;
|
5604
5605
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5605
5606
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
5665
5666
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5666
5667
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5667
5668
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5668
5669
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5669
5670
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5670
5671
|
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;
|
5724
5725
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5725
5726
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5726
5727
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5727
5728
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5728
5729
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5729
5730
|
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;
|
5834
5835
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5835
5836
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5836
5837
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5837
5838
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5838
5839
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5839
5840
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:append" | "onClick:prepend" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | "suffix" | "counterValue" | "modelModifiers" | "onClick:control" | "onMousedown:control" | ("flat" | "reverse" | "variant" | "type" | "error" | "active" | "direction" | "style" | "autofocus" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint" | "clearable" | "dirty" | "persistentClear" | "singleLine" | "persistentPlaceholder" | "persistentCounter") | "v-slot:counter">, `$${any}`> & {
|
5861
5861
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
5862
5862
|
$: import("vue").ComponentInternalInstance;
|
5863
5863
|
$data: {};
|
@@ -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;
|
5911
5912
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5912
5913
|
'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">;
|
@@ -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;
|
5967
5968
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5968
5969
|
'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
|
} & {}, {
|
@@ -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;
|
6070
6071
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6071
6072
|
'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" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "
|
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" | "iconColor" | "onClick:append" | "onClick:prepend" | "v-slot:message" | "hint" | "hideDetails" | "v-slot:details" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")>, `$${any}`> & Omit<Omit<{
|
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;
|
6131
6132
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6132
6133
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6133
6134
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6134
6135
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6135
6136
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6136
6137
|
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;
|
6190
6191
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6191
6192
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6192
6193
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6193
6194
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6194
6195
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6195
6196
|
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;
|
6300
6301
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6301
6302
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6302
6303
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6303
6304
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6304
6305
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6305
6306
|
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" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "
|
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" | "iconColor" | "v-slot:label" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner" | ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine")>, `$${any}`> & {
|
6316
6316
|
_allExposed: {
|
6317
6317
|
reset: () => Promise<void>;
|
6318
6318
|
resetValidation: () => Promise<void>;
|
@@ -6462,6 +6462,7 @@ 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)[];
|
6465
6466
|
clearIcon: {
|
6466
6467
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
6467
6468
|
default: string;
|
@@ -6478,7 +6479,6 @@ export declare const VNumberInput: {
|
|
6478
6479
|
default: undefined;
|
6479
6480
|
};
|
6480
6481
|
glow: BooleanConstructor;
|
6481
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
6482
6482
|
hideSpinButtons: BooleanConstructor;
|
6483
6483
|
hint: StringConstructor;
|
6484
6484
|
persistentHint: BooleanConstructor;
|
@@ -6597,6 +6597,7 @@ 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)[];
|
6600
6601
|
clearIcon: {
|
6601
6602
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
6602
6603
|
default: string;
|
@@ -6613,7 +6614,6 @@ export declare const VNumberInput: {
|
|
6613
6614
|
default: undefined;
|
6614
6615
|
};
|
6615
6616
|
glow: BooleanConstructor;
|
6616
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
6617
6617
|
hideSpinButtons: BooleanConstructor;
|
6618
6618
|
hint: StringConstructor;
|
6619
6619
|
persistentHint: BooleanConstructor;
|