@vuetify/nightly 3.8.8-master.2025-06-10 → 3.8.9-dev.2025-06-11
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 +39 -19
- package/dist/json/attributes.json +1662 -1538
- package/dist/json/importMap-labs.json +36 -36
- package/dist/json/importMap.json +164 -164
- package/dist/json/tags.json +32 -1
- package/dist/json/web-types.json +3166 -2780
- package/dist/vuetify-labs.cjs +389 -146
- package/dist/vuetify-labs.css +3499 -3465
- package/dist/vuetify-labs.d.ts +2602 -2062
- package/dist/vuetify-labs.esm.js +390 -147
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +389 -146
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +383 -135
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5561 -5527
- package/dist/vuetify.d.ts +1598 -1098
- package/dist/vuetify.esm.js +384 -136
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +383 -135
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1219 -1203
- 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 +15 -10
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAppBar/VAppBar.d.ts +15 -3
- package/lib/components/VAppBar/VAppBarNavIcon.d.ts +20 -10
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +154 -103
- package/lib/components/VAutocomplete/VAutocomplete.js +21 -3
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VBadge/VBadge.d.ts +60 -0
- package/lib/components/VBadge/VBadge.js +7 -2
- package/lib/components/VBadge/VBadge.js.map +1 -1
- package/lib/components/VBtn/VBtn.d.ts +20 -10
- 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/VCard/VCard.d.ts +20 -10
- package/lib/components/VCheckbox/VCheckbox.d.ts +23 -13
- package/lib/components/VCheckbox/VCheckboxBtn.d.ts +20 -10
- package/lib/components/VChip/VChip.d.ts +20 -10
- package/lib/components/VChipGroup/VChipGroup.d.ts +10 -0
- package/lib/components/VCombobox/VCombobox.d.ts +154 -103
- package/lib/components/VCombobox/VCombobox.js +22 -3
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VDataTable/VDataTable.d.ts +60 -0
- package/lib/components/VDataTable/VDataTableHeaders.d.ts +13 -0
- package/lib/components/VDataTable/VDataTableHeaders.js +4 -2
- package/lib/components/VDataTable/VDataTableHeaders.js.map +1 -1
- package/lib/components/VDataTable/VDataTableServer.d.ts +42 -0
- package/lib/components/VDataTable/VDataTableVirtual.d.ts +42 -0
- package/lib/components/VDatePicker/VDatePicker.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.d.ts +20 -10
- package/lib/components/VExpansionPanel/VExpansionPanels.d.ts +20 -10
- package/lib/components/VFab/VFab.d.ts +20 -10
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInfiniteScroll/VInfiniteScroll.d.ts +9 -3
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js +29 -0
- package/lib/components/VInfiniteScroll/VInfiniteScroll.js.map +1 -1
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VList/VList.d.ts +13 -0
- package/lib/components/VList/VList.js +4 -1
- package/lib/components/VList/VList.js.map +1 -1
- package/lib/components/VList/VListChildren.js.map +1 -1
- package/lib/components/VList/VListItem.d.ts +23 -10
- package/lib/components/VList/VListItem.js +7 -3
- package/lib/components/VList/VListItem.js.map +1 -1
- package/lib/components/VList/list.d.ts +9 -2
- package/lib/components/VList/list.js +7 -0
- package/lib/components/VList/list.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +103 -89
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VOtpInput/VOtpInput.js +2 -1
- package/lib/components/VOtpInput/VOtpInput.js.map +1 -1
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadio/VRadio.d.ts +20 -10
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +23 -13
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +171 -107
- package/lib/components/VSelect/VSelect.js +21 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.d.ts +20 -10
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.d.ts +28 -14
- package/lib/components/VSlideGroup/VSlideGroup.d.ts +10 -0
- package/lib/components/VSlideGroup/VSlideGroup.js +2 -1
- package/lib/components/VSlideGroup/VSlideGroup.js.map +1 -1
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSlider/VSliderThumb.d.ts +20 -10
- package/lib/components/VStepper/VStepperItem.d.ts +28 -14
- package/lib/components/VSwitch/VSwitch.d.ts +23 -13
- package/lib/components/VTable/VTable.css +6 -0
- package/lib/components/VTable/VTable.d.ts +55 -24
- package/lib/components/VTable/VTable.js +9 -2
- package/lib/components/VTable/VTable.js.map +1 -1
- package/lib/components/VTable/VTable.sass +14 -0
- package/lib/components/VTable/_variables.scss +1 -0
- package/lib/components/VTabs/VTab.d.ts +56 -28
- package/lib/components/VTabs/VTabs.d.ts +10 -0
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/components/VToolbar/VToolbar.d.ts +15 -3
- package/lib/components/VToolbar/VToolbar.js +6 -3
- package/lib/components/VToolbar/VToolbar.js.map +1 -1
- package/lib/composables/calendar.d.ts +6 -0
- package/lib/composables/calendar.js +2 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/date/DateAdapter.d.ts +3 -3
- package/lib/composables/date/DateAdapter.js.map +1 -1
- package/lib/composables/date/adapters/string.d.ts +54 -0
- package/lib/composables/date/adapters/string.js +153 -0
- package/lib/composables/date/adapters/string.js.map +1 -0
- package/lib/composables/date/adapters/vuetify.d.ts +1 -1
- package/lib/composables/date/adapters/vuetify.js +4 -4
- package/lib/composables/date/adapters/vuetify.js.map +1 -1
- package/lib/composables/date/date.d.ts +3 -3
- package/lib/composables/date/index.d.ts +1 -0
- package/lib/composables/date/index.js +1 -0
- package/lib/composables/date/index.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- 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/directives/ripple/index.d.ts +2 -1
- package/lib/directives/ripple/index.js +12 -7
- package/lib/directives/ripple/index.js.map +1 -1
- package/lib/entry-bundler.d.ts +3 -3
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +84 -69
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VCalendar/VCalendar.d.ts +10 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +97 -87
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- package/lib/labs/VFileUpload/VFileUploadItem.d.ts +20 -10
- 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/VStepperVertical/VStepperVertical.d.ts +20 -10
- package/lib/labs/VStepperVertical/VStepperVerticalItem.d.ts +20 -10
- package/lib/labs/VTreeview/VTreeview.d.ts +13 -0
- package/lib/labs/VTreeview/VTreeviewItem.d.ts +20 -10
- package/lib/labs/entry-bundler.d.ts +3 -3
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +3 -1
@@ -42,6 +42,7 @@ export declare const VNumberInput: {
|
|
42
42
|
hideInput: boolean;
|
43
43
|
controlVariant: ControlVariant;
|
44
44
|
precision: number | null;
|
45
|
+
minFractionDigits: number | null;
|
45
46
|
} & {
|
46
47
|
name?: string | undefined;
|
47
48
|
id?: string | undefined;
|
@@ -64,6 +65,7 @@ export declare const VNumberInput: {
|
|
64
65
|
bgColor?: string | undefined;
|
65
66
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
66
67
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
68
|
+
iconColor?: string | boolean | undefined;
|
67
69
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
68
70
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
69
71
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -72,7 +74,6 @@ export declare const VNumberInput: {
|
|
72
74
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
73
75
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
74
76
|
centerAffix?: boolean | undefined;
|
75
|
-
iconColor?: string | boolean | undefined;
|
76
77
|
hint?: string | undefined;
|
77
78
|
hideDetails?: boolean | "auto" | undefined;
|
78
79
|
suffix?: string | undefined;
|
@@ -224,6 +225,7 @@ export declare const VNumberInput: {
|
|
224
225
|
bgColor?: string | undefined;
|
225
226
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
226
227
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
228
|
+
iconColor?: string | boolean | undefined;
|
227
229
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
228
230
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
229
231
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -232,7 +234,6 @@ export declare const VNumberInput: {
|
|
232
234
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
233
235
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
234
236
|
centerAffix?: boolean | undefined;
|
235
|
-
iconColor?: string | boolean | undefined;
|
236
237
|
hint?: string | undefined;
|
237
238
|
hideDetails?: boolean | "auto" | undefined;
|
238
239
|
suffix?: string | undefined;
|
@@ -376,6 +377,7 @@ export declare const VNumberInput: {
|
|
376
377
|
bgColor?: string | undefined;
|
377
378
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
378
379
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
380
|
+
iconColor?: string | boolean | undefined;
|
379
381
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
380
382
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
381
383
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -384,7 +386,6 @@ export declare const VNumberInput: {
|
|
384
386
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
385
387
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
386
388
|
centerAffix?: boolean | undefined;
|
387
|
-
iconColor?: string | boolean | undefined;
|
388
389
|
hint?: string | undefined;
|
389
390
|
hideDetails?: boolean | "auto" | undefined;
|
390
391
|
suffix?: string | undefined;
|
@@ -499,9 +500,9 @@ export declare const VNumberInput: {
|
|
499
500
|
baseColor?: string | undefined;
|
500
501
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
501
502
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
503
|
+
iconColor?: string | boolean | undefined;
|
502
504
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
503
505
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
504
|
-
iconColor?: string | boolean | undefined;
|
505
506
|
hint?: string | undefined;
|
506
507
|
hideDetails?: boolean | "auto" | undefined;
|
507
508
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -555,9 +556,9 @@ export declare const VNumberInput: {
|
|
555
556
|
baseColor?: string | undefined;
|
556
557
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
557
558
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
559
|
+
iconColor?: string | boolean | undefined;
|
558
560
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
559
561
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
560
|
-
iconColor?: string | boolean | undefined;
|
561
562
|
hint?: string | undefined;
|
562
563
|
hideDetails?: boolean | "auto" | undefined;
|
563
564
|
} & {}, {
|
@@ -658,9 +659,9 @@ export declare const VNumberInput: {
|
|
658
659
|
baseColor?: string | undefined;
|
659
660
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
660
661
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
662
|
+
iconColor?: string | boolean | undefined;
|
661
663
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
662
664
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
663
|
-
iconColor?: string | boolean | undefined;
|
664
665
|
hint?: string | undefined;
|
665
666
|
hideDetails?: boolean | "auto" | undefined;
|
666
667
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -672,7 +673,7 @@ export declare const VNumberInput: {
|
|
672
673
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
673
674
|
modelValue?: unknown;
|
674
675
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
675
|
-
}, 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" | "
|
676
|
+
}, 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<{
|
676
677
|
$: import("vue").ComponentInternalInstance;
|
677
678
|
$data: {};
|
678
679
|
$props: Partial<{
|
@@ -719,13 +720,13 @@ export declare const VNumberInput: {
|
|
719
720
|
rounded?: string | number | boolean | undefined;
|
720
721
|
baseColor?: string | undefined;
|
721
722
|
bgColor?: string | undefined;
|
723
|
+
iconColor?: string | boolean | undefined;
|
722
724
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
723
725
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
724
726
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
725
727
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
726
728
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
727
729
|
centerAffix?: boolean | undefined;
|
728
|
-
iconColor?: string | boolean | undefined;
|
729
730
|
} & 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">;
|
730
731
|
$attrs: {
|
731
732
|
[x: string]: unknown;
|
@@ -778,13 +779,13 @@ export declare const VNumberInput: {
|
|
778
779
|
rounded?: string | number | boolean | undefined;
|
779
780
|
baseColor?: string | undefined;
|
780
781
|
bgColor?: string | undefined;
|
782
|
+
iconColor?: string | boolean | undefined;
|
781
783
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
782
784
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
783
785
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
784
786
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
785
787
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
786
788
|
centerAffix?: boolean | undefined;
|
787
|
-
iconColor?: string | boolean | undefined;
|
788
789
|
} & {
|
789
790
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
790
791
|
}, {
|
@@ -888,13 +889,13 @@ export declare const VNumberInput: {
|
|
888
889
|
rounded?: string | number | boolean | undefined;
|
889
890
|
baseColor?: string | undefined;
|
890
891
|
bgColor?: string | undefined;
|
892
|
+
iconColor?: string | boolean | undefined;
|
891
893
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
892
894
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
893
895
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
894
896
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
895
897
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
896
898
|
centerAffix?: boolean | undefined;
|
897
|
-
iconColor?: string | boolean | undefined;
|
898
899
|
} & {
|
899
900
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
900
901
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -903,7 +904,7 @@ export declare const VNumberInput: {
|
|
903
904
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
904
905
|
modelValue?: unknown;
|
905
906
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
906
|
-
}, 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" | "
|
907
|
+
}, 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}`> & {
|
907
908
|
_allExposed: {
|
908
909
|
reset: () => Promise<void>;
|
909
910
|
resetValidation: () => Promise<void>;
|
@@ -1071,6 +1072,7 @@ export declare const VNumberInput: {
|
|
1071
1072
|
bgColor?: string | undefined;
|
1072
1073
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1073
1074
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1075
|
+
iconColor?: string | boolean | undefined;
|
1074
1076
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1075
1077
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1076
1078
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1079,7 +1081,6 @@ export declare const VNumberInput: {
|
|
1079
1081
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1080
1082
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1081
1083
|
centerAffix?: boolean | undefined;
|
1082
|
-
iconColor?: string | boolean | undefined;
|
1083
1084
|
hint?: string | undefined;
|
1084
1085
|
hideDetails?: boolean | "auto" | undefined;
|
1085
1086
|
suffix?: string | undefined;
|
@@ -1194,9 +1195,9 @@ export declare const VNumberInput: {
|
|
1194
1195
|
baseColor?: string | undefined;
|
1195
1196
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1196
1197
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1198
|
+
iconColor?: string | boolean | undefined;
|
1197
1199
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1198
1200
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1199
|
-
iconColor?: string | boolean | undefined;
|
1200
1201
|
hint?: string | undefined;
|
1201
1202
|
hideDetails?: boolean | "auto" | undefined;
|
1202
1203
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1250,9 +1251,9 @@ export declare const VNumberInput: {
|
|
1250
1251
|
baseColor?: string | undefined;
|
1251
1252
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1252
1253
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1254
|
+
iconColor?: string | boolean | undefined;
|
1253
1255
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1254
1256
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1255
|
-
iconColor?: string | boolean | undefined;
|
1256
1257
|
hint?: string | undefined;
|
1257
1258
|
hideDetails?: boolean | "auto" | undefined;
|
1258
1259
|
} & {}, {
|
@@ -1353,9 +1354,9 @@ export declare const VNumberInput: {
|
|
1353
1354
|
baseColor?: string | undefined;
|
1354
1355
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1355
1356
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1357
|
+
iconColor?: string | boolean | undefined;
|
1356
1358
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1357
1359
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1358
|
-
iconColor?: string | boolean | undefined;
|
1359
1360
|
hint?: string | undefined;
|
1360
1361
|
hideDetails?: boolean | "auto" | undefined;
|
1361
1362
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1367,7 +1368,7 @@ export declare const VNumberInput: {
|
|
1367
1368
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1368
1369
|
modelValue?: unknown;
|
1369
1370
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1370
|
-
}, 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" | "
|
1371
|
+
}, 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<{
|
1371
1372
|
$: import("vue").ComponentInternalInstance;
|
1372
1373
|
$data: {};
|
1373
1374
|
$props: Partial<{
|
@@ -1414,13 +1415,13 @@ export declare const VNumberInput: {
|
|
1414
1415
|
rounded?: string | number | boolean | undefined;
|
1415
1416
|
baseColor?: string | undefined;
|
1416
1417
|
bgColor?: string | undefined;
|
1418
|
+
iconColor?: string | boolean | undefined;
|
1417
1419
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1418
1420
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1419
1421
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1420
1422
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1421
1423
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1422
1424
|
centerAffix?: boolean | undefined;
|
1423
|
-
iconColor?: string | boolean | undefined;
|
1424
1425
|
} & 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">;
|
1425
1426
|
$attrs: {
|
1426
1427
|
[x: string]: unknown;
|
@@ -1473,13 +1474,13 @@ export declare const VNumberInput: {
|
|
1473
1474
|
rounded?: string | number | boolean | undefined;
|
1474
1475
|
baseColor?: string | undefined;
|
1475
1476
|
bgColor?: string | undefined;
|
1477
|
+
iconColor?: string | boolean | undefined;
|
1476
1478
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1477
1479
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1478
1480
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1479
1481
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1480
1482
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1481
1483
|
centerAffix?: boolean | undefined;
|
1482
|
-
iconColor?: string | boolean | undefined;
|
1483
1484
|
} & {
|
1484
1485
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1485
1486
|
}, {
|
@@ -1583,13 +1584,13 @@ export declare const VNumberInput: {
|
|
1583
1584
|
rounded?: string | number | boolean | undefined;
|
1584
1585
|
baseColor?: string | undefined;
|
1585
1586
|
bgColor?: string | undefined;
|
1587
|
+
iconColor?: string | boolean | undefined;
|
1586
1588
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1587
1589
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1588
1590
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1589
1591
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1590
1592
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1591
1593
|
centerAffix?: boolean | undefined;
|
1592
|
-
iconColor?: string | boolean | undefined;
|
1593
1594
|
} & {
|
1594
1595
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1595
1596
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1598,7 +1599,7 @@ export declare const VNumberInput: {
|
|
1598
1599
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1599
1600
|
modelValue?: unknown;
|
1600
1601
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1601
|
-
}, 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" | "
|
1602
|
+
}, 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}`> & {
|
1602
1603
|
_allExposed: {
|
1603
1604
|
reset: () => Promise<void>;
|
1604
1605
|
resetValidation: () => Promise<void>;
|
@@ -1609,7 +1610,7 @@ export declare const VNumberInput: {
|
|
1609
1610
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
1610
1611
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
1611
1612
|
} | {};
|
1612
|
-
}> & {} & 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" | "
|
1613
|
+
}> & {} & 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}`> & {
|
1613
1614
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
1614
1615
|
$: import("vue").ComponentInternalInstance;
|
1615
1616
|
$data: {};
|
@@ -1660,9 +1661,9 @@ export declare const VNumberInput: {
|
|
1660
1661
|
baseColor?: string | undefined;
|
1661
1662
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1662
1663
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1664
|
+
iconColor?: string | boolean | undefined;
|
1663
1665
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1664
1666
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1665
|
-
iconColor?: string | boolean | undefined;
|
1666
1667
|
hint?: string | undefined;
|
1667
1668
|
hideDetails?: boolean | "auto" | undefined;
|
1668
1669
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1716,9 +1717,9 @@ export declare const VNumberInput: {
|
|
1716
1717
|
baseColor?: string | undefined;
|
1717
1718
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1718
1719
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1720
|
+
iconColor?: string | boolean | undefined;
|
1719
1721
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1720
1722
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1721
|
-
iconColor?: string | boolean | undefined;
|
1722
1723
|
hint?: string | undefined;
|
1723
1724
|
hideDetails?: boolean | "auto" | undefined;
|
1724
1725
|
} & {}, {
|
@@ -1819,9 +1820,9 @@ export declare const VNumberInput: {
|
|
1819
1820
|
baseColor?: string | undefined;
|
1820
1821
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1821
1822
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1823
|
+
iconColor?: string | boolean | undefined;
|
1822
1824
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1823
1825
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1824
|
-
iconColor?: string | boolean | undefined;
|
1825
1826
|
hint?: string | undefined;
|
1826
1827
|
hideDetails?: boolean | "auto" | undefined;
|
1827
1828
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1833,7 +1834,7 @@ export declare const VNumberInput: {
|
|
1833
1834
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1834
1835
|
modelValue?: unknown;
|
1835
1836
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1836
|
-
}, 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" | "
|
1837
|
+
}, 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<{
|
1837
1838
|
$: import("vue").ComponentInternalInstance;
|
1838
1839
|
$data: {};
|
1839
1840
|
$props: Partial<{
|
@@ -1880,13 +1881,13 @@ export declare const VNumberInput: {
|
|
1880
1881
|
rounded?: string | number | boolean | undefined;
|
1881
1882
|
baseColor?: string | undefined;
|
1882
1883
|
bgColor?: string | undefined;
|
1884
|
+
iconColor?: string | boolean | undefined;
|
1883
1885
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1884
1886
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1885
1887
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1886
1888
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1887
1889
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1888
1890
|
centerAffix?: boolean | undefined;
|
1889
|
-
iconColor?: string | boolean | undefined;
|
1890
1891
|
} & 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">;
|
1891
1892
|
$attrs: {
|
1892
1893
|
[x: string]: unknown;
|
@@ -1939,13 +1940,13 @@ export declare const VNumberInput: {
|
|
1939
1940
|
rounded?: string | number | boolean | undefined;
|
1940
1941
|
baseColor?: string | undefined;
|
1941
1942
|
bgColor?: string | undefined;
|
1943
|
+
iconColor?: string | boolean | undefined;
|
1942
1944
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1943
1945
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1944
1946
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1945
1947
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1946
1948
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1947
1949
|
centerAffix?: boolean | undefined;
|
1948
|
-
iconColor?: string | boolean | undefined;
|
1949
1950
|
} & {
|
1950
1951
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1951
1952
|
}, {
|
@@ -2049,13 +2050,13 @@ export declare const VNumberInput: {
|
|
2049
2050
|
rounded?: string | number | boolean | undefined;
|
2050
2051
|
baseColor?: string | undefined;
|
2051
2052
|
bgColor?: string | undefined;
|
2053
|
+
iconColor?: string | boolean | undefined;
|
2052
2054
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2053
2055
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2054
2056
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2055
2057
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2056
2058
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2057
2059
|
centerAffix?: boolean | undefined;
|
2058
|
-
iconColor?: string | boolean | undefined;
|
2059
2060
|
} & {
|
2060
2061
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2061
2062
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2064,7 +2065,7 @@ export declare const VNumberInput: {
|
|
2064
2065
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2065
2066
|
modelValue?: unknown;
|
2066
2067
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2067
|
-
}, 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" | "
|
2068
|
+
}, 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}`> & {
|
2068
2069
|
_allExposed: {
|
2069
2070
|
reset: () => Promise<void>;
|
2070
2071
|
resetValidation: () => Promise<void>;
|
@@ -2118,6 +2119,7 @@ export declare const VNumberInput: {
|
|
2118
2119
|
hideInput: boolean;
|
2119
2120
|
controlVariant: ControlVariant;
|
2120
2121
|
precision: number | null;
|
2122
|
+
minFractionDigits: number | null;
|
2121
2123
|
}, true, {}, import("vue").SlotsType<Partial<{
|
2122
2124
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
2123
2125
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
@@ -2180,6 +2182,7 @@ export declare const VNumberInput: {
|
|
2180
2182
|
hideInput: boolean;
|
2181
2183
|
controlVariant: ControlVariant;
|
2182
2184
|
precision: number | null;
|
2185
|
+
minFractionDigits: number | null;
|
2183
2186
|
} & {
|
2184
2187
|
name?: string | undefined;
|
2185
2188
|
id?: string | undefined;
|
@@ -2202,6 +2205,7 @@ export declare const VNumberInput: {
|
|
2202
2205
|
bgColor?: string | undefined;
|
2203
2206
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2204
2207
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2208
|
+
iconColor?: string | boolean | undefined;
|
2205
2209
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2206
2210
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2207
2211
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2210,7 +2214,6 @@ export declare const VNumberInput: {
|
|
2210
2214
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2211
2215
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2212
2216
|
centerAffix?: boolean | undefined;
|
2213
|
-
iconColor?: string | boolean | undefined;
|
2214
2217
|
hint?: string | undefined;
|
2215
2218
|
hideDetails?: boolean | "auto" | undefined;
|
2216
2219
|
suffix?: string | undefined;
|
@@ -2362,6 +2365,7 @@ export declare const VNumberInput: {
|
|
2362
2365
|
bgColor?: string | undefined;
|
2363
2366
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2364
2367
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2368
|
+
iconColor?: string | boolean | undefined;
|
2365
2369
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2366
2370
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2367
2371
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2370,7 +2374,6 @@ export declare const VNumberInput: {
|
|
2370
2374
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2371
2375
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2372
2376
|
centerAffix?: boolean | undefined;
|
2373
|
-
iconColor?: string | boolean | undefined;
|
2374
2377
|
hint?: string | undefined;
|
2375
2378
|
hideDetails?: boolean | "auto" | undefined;
|
2376
2379
|
suffix?: string | undefined;
|
@@ -2514,6 +2517,7 @@ export declare const VNumberInput: {
|
|
2514
2517
|
bgColor?: string | undefined;
|
2515
2518
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2516
2519
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2520
|
+
iconColor?: string | boolean | undefined;
|
2517
2521
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2518
2522
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2519
2523
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -2522,7 +2526,6 @@ export declare const VNumberInput: {
|
|
2522
2526
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2523
2527
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2524
2528
|
centerAffix?: boolean | undefined;
|
2525
|
-
iconColor?: string | boolean | undefined;
|
2526
2529
|
hint?: string | undefined;
|
2527
2530
|
hideDetails?: boolean | "auto" | undefined;
|
2528
2531
|
suffix?: string | undefined;
|
@@ -2637,9 +2640,9 @@ export declare const VNumberInput: {
|
|
2637
2640
|
baseColor?: string | undefined;
|
2638
2641
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2639
2642
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2643
|
+
iconColor?: string | boolean | undefined;
|
2640
2644
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2641
2645
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2642
|
-
iconColor?: string | boolean | undefined;
|
2643
2646
|
hint?: string | undefined;
|
2644
2647
|
hideDetails?: boolean | "auto" | undefined;
|
2645
2648
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -2693,9 +2696,9 @@ export declare const VNumberInput: {
|
|
2693
2696
|
baseColor?: string | undefined;
|
2694
2697
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2695
2698
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2699
|
+
iconColor?: string | boolean | undefined;
|
2696
2700
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2697
2701
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2698
|
-
iconColor?: string | boolean | undefined;
|
2699
2702
|
hint?: string | undefined;
|
2700
2703
|
hideDetails?: boolean | "auto" | undefined;
|
2701
2704
|
} & {}, {
|
@@ -2796,9 +2799,9 @@ export declare const VNumberInput: {
|
|
2796
2799
|
baseColor?: string | undefined;
|
2797
2800
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2798
2801
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2802
|
+
iconColor?: string | boolean | undefined;
|
2799
2803
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2800
2804
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2801
|
-
iconColor?: string | boolean | undefined;
|
2802
2805
|
hint?: string | undefined;
|
2803
2806
|
hideDetails?: boolean | "auto" | undefined;
|
2804
2807
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2810,7 +2813,7 @@ export declare const VNumberInput: {
|
|
2810
2813
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2811
2814
|
modelValue?: unknown;
|
2812
2815
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2813
|
-
}, 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" | "
|
2816
|
+
}, 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<{
|
2814
2817
|
$: import("vue").ComponentInternalInstance;
|
2815
2818
|
$data: {};
|
2816
2819
|
$props: Partial<{
|
@@ -2857,13 +2860,13 @@ export declare const VNumberInput: {
|
|
2857
2860
|
rounded?: string | number | boolean | undefined;
|
2858
2861
|
baseColor?: string | undefined;
|
2859
2862
|
bgColor?: string | undefined;
|
2863
|
+
iconColor?: string | boolean | undefined;
|
2860
2864
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2861
2865
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2862
2866
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2863
2867
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2864
2868
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2865
2869
|
centerAffix?: boolean | undefined;
|
2866
|
-
iconColor?: string | boolean | undefined;
|
2867
2870
|
} & 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">;
|
2868
2871
|
$attrs: {
|
2869
2872
|
[x: string]: unknown;
|
@@ -2916,13 +2919,13 @@ export declare const VNumberInput: {
|
|
2916
2919
|
rounded?: string | number | boolean | undefined;
|
2917
2920
|
baseColor?: string | undefined;
|
2918
2921
|
bgColor?: string | undefined;
|
2922
|
+
iconColor?: string | boolean | undefined;
|
2919
2923
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2920
2924
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2921
2925
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2922
2926
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2923
2927
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2924
2928
|
centerAffix?: boolean | undefined;
|
2925
|
-
iconColor?: string | boolean | undefined;
|
2926
2929
|
} & {
|
2927
2930
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2928
2931
|
}, {
|
@@ -3026,13 +3029,13 @@ export declare const VNumberInput: {
|
|
3026
3029
|
rounded?: string | number | boolean | undefined;
|
3027
3030
|
baseColor?: string | undefined;
|
3028
3031
|
bgColor?: string | undefined;
|
3032
|
+
iconColor?: string | boolean | undefined;
|
3029
3033
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3030
3034
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3031
3035
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3032
3036
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3033
3037
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3034
3038
|
centerAffix?: boolean | undefined;
|
3035
|
-
iconColor?: string | boolean | undefined;
|
3036
3039
|
} & {
|
3037
3040
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3038
3041
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3041,7 +3044,7 @@ export declare const VNumberInput: {
|
|
3041
3044
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3042
3045
|
modelValue?: unknown;
|
3043
3046
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3044
|
-
}, 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" | "
|
3047
|
+
}, 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}`> & {
|
3045
3048
|
_allExposed: {
|
3046
3049
|
reset: () => Promise<void>;
|
3047
3050
|
resetValidation: () => Promise<void>;
|
@@ -3209,6 +3212,7 @@ export declare const VNumberInput: {
|
|
3209
3212
|
bgColor?: string | undefined;
|
3210
3213
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3211
3214
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3215
|
+
iconColor?: string | boolean | undefined;
|
3212
3216
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3213
3217
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3214
3218
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -3217,7 +3221,6 @@ export declare const VNumberInput: {
|
|
3217
3221
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3218
3222
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3219
3223
|
centerAffix?: boolean | undefined;
|
3220
|
-
iconColor?: string | boolean | undefined;
|
3221
3224
|
hint?: string | undefined;
|
3222
3225
|
hideDetails?: boolean | "auto" | undefined;
|
3223
3226
|
suffix?: string | undefined;
|
@@ -3332,9 +3335,9 @@ export declare const VNumberInput: {
|
|
3332
3335
|
baseColor?: string | undefined;
|
3333
3336
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3334
3337
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3338
|
+
iconColor?: string | boolean | undefined;
|
3335
3339
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3336
3340
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3337
|
-
iconColor?: string | boolean | undefined;
|
3338
3341
|
hint?: string | undefined;
|
3339
3342
|
hideDetails?: boolean | "auto" | undefined;
|
3340
3343
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3388,9 +3391,9 @@ export declare const VNumberInput: {
|
|
3388
3391
|
baseColor?: string | undefined;
|
3389
3392
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3390
3393
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3394
|
+
iconColor?: string | boolean | undefined;
|
3391
3395
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3392
3396
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3393
|
-
iconColor?: string | boolean | undefined;
|
3394
3397
|
hint?: string | undefined;
|
3395
3398
|
hideDetails?: boolean | "auto" | undefined;
|
3396
3399
|
} & {}, {
|
@@ -3491,9 +3494,9 @@ export declare const VNumberInput: {
|
|
3491
3494
|
baseColor?: string | undefined;
|
3492
3495
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3493
3496
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3497
|
+
iconColor?: string | boolean | undefined;
|
3494
3498
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3495
3499
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3496
|
-
iconColor?: string | boolean | undefined;
|
3497
3500
|
hint?: string | undefined;
|
3498
3501
|
hideDetails?: boolean | "auto" | undefined;
|
3499
3502
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3505,7 +3508,7 @@ export declare const VNumberInput: {
|
|
3505
3508
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3506
3509
|
modelValue?: unknown;
|
3507
3510
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3508
|
-
}, 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" | "
|
3511
|
+
}, 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<{
|
3509
3512
|
$: import("vue").ComponentInternalInstance;
|
3510
3513
|
$data: {};
|
3511
3514
|
$props: Partial<{
|
@@ -3552,13 +3555,13 @@ export declare const VNumberInput: {
|
|
3552
3555
|
rounded?: string | number | boolean | undefined;
|
3553
3556
|
baseColor?: string | undefined;
|
3554
3557
|
bgColor?: string | undefined;
|
3558
|
+
iconColor?: string | boolean | undefined;
|
3555
3559
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3556
3560
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3557
3561
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3558
3562
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3559
3563
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3560
3564
|
centerAffix?: boolean | undefined;
|
3561
|
-
iconColor?: string | boolean | undefined;
|
3562
3565
|
} & 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">;
|
3563
3566
|
$attrs: {
|
3564
3567
|
[x: string]: unknown;
|
@@ -3611,13 +3614,13 @@ export declare const VNumberInput: {
|
|
3611
3614
|
rounded?: string | number | boolean | undefined;
|
3612
3615
|
baseColor?: string | undefined;
|
3613
3616
|
bgColor?: string | undefined;
|
3617
|
+
iconColor?: string | boolean | undefined;
|
3614
3618
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3615
3619
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3616
3620
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3617
3621
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3618
3622
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3619
3623
|
centerAffix?: boolean | undefined;
|
3620
|
-
iconColor?: string | boolean | undefined;
|
3621
3624
|
} & {
|
3622
3625
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3623
3626
|
}, {
|
@@ -3721,13 +3724,13 @@ export declare const VNumberInput: {
|
|
3721
3724
|
rounded?: string | number | boolean | undefined;
|
3722
3725
|
baseColor?: string | undefined;
|
3723
3726
|
bgColor?: string | undefined;
|
3727
|
+
iconColor?: string | boolean | undefined;
|
3724
3728
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3725
3729
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3726
3730
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
3727
3731
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3728
3732
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
3729
3733
|
centerAffix?: boolean | undefined;
|
3730
|
-
iconColor?: string | boolean | undefined;
|
3731
3734
|
} & {
|
3732
3735
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
3733
3736
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -3736,7 +3739,7 @@ export declare const VNumberInput: {
|
|
3736
3739
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3737
3740
|
modelValue?: unknown;
|
3738
3741
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3739
|
-
}, 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" | "
|
3742
|
+
}, 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}`> & {
|
3740
3743
|
_allExposed: {
|
3741
3744
|
reset: () => Promise<void>;
|
3742
3745
|
resetValidation: () => Promise<void>;
|
@@ -3747,7 +3750,7 @@ export declare const VNumberInput: {
|
|
3747
3750
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
3748
3751
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
3749
3752
|
} | {};
|
3750
|
-
}> & {} & 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" | "
|
3753
|
+
}> & {} & 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}`> & {
|
3751
3754
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
3752
3755
|
$: import("vue").ComponentInternalInstance;
|
3753
3756
|
$data: {};
|
@@ -3798,9 +3801,9 @@ export declare const VNumberInput: {
|
|
3798
3801
|
baseColor?: string | undefined;
|
3799
3802
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3800
3803
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3804
|
+
iconColor?: string | boolean | undefined;
|
3801
3805
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3802
3806
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3803
|
-
iconColor?: string | boolean | undefined;
|
3804
3807
|
hint?: string | undefined;
|
3805
3808
|
hideDetails?: boolean | "auto" | undefined;
|
3806
3809
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -3854,9 +3857,9 @@ export declare const VNumberInput: {
|
|
3854
3857
|
baseColor?: string | undefined;
|
3855
3858
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3856
3859
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3860
|
+
iconColor?: string | boolean | undefined;
|
3857
3861
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3858
3862
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3859
|
-
iconColor?: string | boolean | undefined;
|
3860
3863
|
hint?: string | undefined;
|
3861
3864
|
hideDetails?: boolean | "auto" | undefined;
|
3862
3865
|
} & {}, {
|
@@ -3957,9 +3960,9 @@ export declare const VNumberInput: {
|
|
3957
3960
|
baseColor?: string | undefined;
|
3958
3961
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3959
3962
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
3963
|
+
iconColor?: string | boolean | undefined;
|
3960
3964
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
3961
3965
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
3962
|
-
iconColor?: string | boolean | undefined;
|
3963
3966
|
hint?: string | undefined;
|
3964
3967
|
hideDetails?: boolean | "auto" | undefined;
|
3965
3968
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -3971,7 +3974,7 @@ export declare const VNumberInput: {
|
|
3971
3974
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
3972
3975
|
modelValue?: unknown;
|
3973
3976
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
3974
|
-
}, 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" | "
|
3977
|
+
}, 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<{
|
3975
3978
|
$: import("vue").ComponentInternalInstance;
|
3976
3979
|
$data: {};
|
3977
3980
|
$props: Partial<{
|
@@ -4018,13 +4021,13 @@ export declare const VNumberInput: {
|
|
4018
4021
|
rounded?: string | number | boolean | undefined;
|
4019
4022
|
baseColor?: string | undefined;
|
4020
4023
|
bgColor?: string | undefined;
|
4024
|
+
iconColor?: string | boolean | undefined;
|
4021
4025
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4022
4026
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4023
4027
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4024
4028
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4025
4029
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4026
4030
|
centerAffix?: boolean | undefined;
|
4027
|
-
iconColor?: string | boolean | undefined;
|
4028
4031
|
} & 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">;
|
4029
4032
|
$attrs: {
|
4030
4033
|
[x: string]: unknown;
|
@@ -4077,13 +4080,13 @@ export declare const VNumberInput: {
|
|
4077
4080
|
rounded?: string | number | boolean | undefined;
|
4078
4081
|
baseColor?: string | undefined;
|
4079
4082
|
bgColor?: string | undefined;
|
4083
|
+
iconColor?: string | boolean | undefined;
|
4080
4084
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4081
4085
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4082
4086
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4083
4087
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4084
4088
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4085
4089
|
centerAffix?: boolean | undefined;
|
4086
|
-
iconColor?: string | boolean | undefined;
|
4087
4090
|
} & {
|
4088
4091
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4089
4092
|
}, {
|
@@ -4187,13 +4190,13 @@ export declare const VNumberInput: {
|
|
4187
4190
|
rounded?: string | number | boolean | undefined;
|
4188
4191
|
baseColor?: string | undefined;
|
4189
4192
|
bgColor?: string | undefined;
|
4193
|
+
iconColor?: string | boolean | undefined;
|
4190
4194
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4191
4195
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4192
4196
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4193
4197
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4194
4198
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4195
4199
|
centerAffix?: boolean | undefined;
|
4196
|
-
iconColor?: string | boolean | undefined;
|
4197
4200
|
} & {
|
4198
4201
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
4199
4202
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -4202,7 +4205,7 @@ export declare const VNumberInput: {
|
|
4202
4205
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4203
4206
|
modelValue?: unknown;
|
4204
4207
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4205
|
-
}, 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" | "
|
4208
|
+
}, 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}`> & {
|
4206
4209
|
_allExposed: {
|
4207
4210
|
reset: () => Promise<void>;
|
4208
4211
|
resetValidation: () => Promise<void>;
|
@@ -4253,6 +4256,7 @@ export declare const VNumberInput: {
|
|
4253
4256
|
hideInput: boolean;
|
4254
4257
|
controlVariant: ControlVariant;
|
4255
4258
|
precision: number | null;
|
4259
|
+
minFractionDigits: number | null;
|
4256
4260
|
}>;
|
4257
4261
|
__isFragment?: never;
|
4258
4262
|
__isTeleport?: never;
|
@@ -4294,6 +4298,7 @@ export declare const VNumberInput: {
|
|
4294
4298
|
hideInput: boolean;
|
4295
4299
|
controlVariant: ControlVariant;
|
4296
4300
|
precision: number | null;
|
4301
|
+
minFractionDigits: number | null;
|
4297
4302
|
} & {
|
4298
4303
|
name?: string | undefined;
|
4299
4304
|
id?: string | undefined;
|
@@ -4316,6 +4321,7 @@ export declare const VNumberInput: {
|
|
4316
4321
|
bgColor?: string | undefined;
|
4317
4322
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4318
4323
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4324
|
+
iconColor?: string | boolean | undefined;
|
4319
4325
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4320
4326
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4321
4327
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4324,7 +4330,6 @@ export declare const VNumberInput: {
|
|
4324
4330
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4325
4331
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4326
4332
|
centerAffix?: boolean | undefined;
|
4327
|
-
iconColor?: string | boolean | undefined;
|
4328
4333
|
hint?: string | undefined;
|
4329
4334
|
hideDetails?: boolean | "auto" | undefined;
|
4330
4335
|
suffix?: string | undefined;
|
@@ -4476,6 +4481,7 @@ export declare const VNumberInput: {
|
|
4476
4481
|
bgColor?: string | undefined;
|
4477
4482
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4478
4483
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4484
|
+
iconColor?: string | boolean | undefined;
|
4479
4485
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4480
4486
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4481
4487
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4484,7 +4490,6 @@ export declare const VNumberInput: {
|
|
4484
4490
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4485
4491
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4486
4492
|
centerAffix?: boolean | undefined;
|
4487
|
-
iconColor?: string | boolean | undefined;
|
4488
4493
|
hint?: string | undefined;
|
4489
4494
|
hideDetails?: boolean | "auto" | undefined;
|
4490
4495
|
suffix?: string | undefined;
|
@@ -4628,6 +4633,7 @@ export declare const VNumberInput: {
|
|
4628
4633
|
bgColor?: string | undefined;
|
4629
4634
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4630
4635
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4636
|
+
iconColor?: string | boolean | undefined;
|
4631
4637
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4632
4638
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4633
4639
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -4636,7 +4642,6 @@ export declare const VNumberInput: {
|
|
4636
4642
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4637
4643
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4638
4644
|
centerAffix?: boolean | undefined;
|
4639
|
-
iconColor?: string | boolean | undefined;
|
4640
4645
|
hint?: string | undefined;
|
4641
4646
|
hideDetails?: boolean | "auto" | undefined;
|
4642
4647
|
suffix?: string | undefined;
|
@@ -4751,9 +4756,9 @@ export declare const VNumberInput: {
|
|
4751
4756
|
baseColor?: string | undefined;
|
4752
4757
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4753
4758
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4759
|
+
iconColor?: string | boolean | undefined;
|
4754
4760
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4755
4761
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4756
|
-
iconColor?: string | boolean | undefined;
|
4757
4762
|
hint?: string | undefined;
|
4758
4763
|
hideDetails?: boolean | "auto" | undefined;
|
4759
4764
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -4807,9 +4812,9 @@ export declare const VNumberInput: {
|
|
4807
4812
|
baseColor?: string | undefined;
|
4808
4813
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4809
4814
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4815
|
+
iconColor?: string | boolean | undefined;
|
4810
4816
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4811
4817
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4812
|
-
iconColor?: string | boolean | undefined;
|
4813
4818
|
hint?: string | undefined;
|
4814
4819
|
hideDetails?: boolean | "auto" | undefined;
|
4815
4820
|
} & {}, {
|
@@ -4910,9 +4915,9 @@ export declare const VNumberInput: {
|
|
4910
4915
|
baseColor?: string | undefined;
|
4911
4916
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4912
4917
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4918
|
+
iconColor?: string | boolean | undefined;
|
4913
4919
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
4914
4920
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
4915
|
-
iconColor?: string | boolean | undefined;
|
4916
4921
|
hint?: string | undefined;
|
4917
4922
|
hideDetails?: boolean | "auto" | undefined;
|
4918
4923
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -4924,7 +4929,7 @@ export declare const VNumberInput: {
|
|
4924
4929
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
4925
4930
|
modelValue?: unknown;
|
4926
4931
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
4927
|
-
}, 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" | "
|
4932
|
+
}, 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<{
|
4928
4933
|
$: import("vue").ComponentInternalInstance;
|
4929
4934
|
$data: {};
|
4930
4935
|
$props: Partial<{
|
@@ -4971,13 +4976,13 @@ export declare const VNumberInput: {
|
|
4971
4976
|
rounded?: string | number | boolean | undefined;
|
4972
4977
|
baseColor?: string | undefined;
|
4973
4978
|
bgColor?: string | undefined;
|
4979
|
+
iconColor?: string | boolean | undefined;
|
4974
4980
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4975
4981
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
4976
4982
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
4977
4983
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4978
4984
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
4979
4985
|
centerAffix?: boolean | undefined;
|
4980
|
-
iconColor?: string | boolean | undefined;
|
4981
4986
|
} & 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">;
|
4982
4987
|
$attrs: {
|
4983
4988
|
[x: string]: unknown;
|
@@ -5030,13 +5035,13 @@ export declare const VNumberInput: {
|
|
5030
5035
|
rounded?: string | number | boolean | undefined;
|
5031
5036
|
baseColor?: string | undefined;
|
5032
5037
|
bgColor?: string | undefined;
|
5038
|
+
iconColor?: string | boolean | undefined;
|
5033
5039
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5034
5040
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5035
5041
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5036
5042
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5037
5043
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5038
5044
|
centerAffix?: boolean | undefined;
|
5039
|
-
iconColor?: string | boolean | undefined;
|
5040
5045
|
} & {
|
5041
5046
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5042
5047
|
}, {
|
@@ -5140,13 +5145,13 @@ export declare const VNumberInput: {
|
|
5140
5145
|
rounded?: string | number | boolean | undefined;
|
5141
5146
|
baseColor?: string | undefined;
|
5142
5147
|
bgColor?: string | undefined;
|
5148
|
+
iconColor?: string | boolean | undefined;
|
5143
5149
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5144
5150
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5145
5151
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5146
5152
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5147
5153
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5148
5154
|
centerAffix?: boolean | undefined;
|
5149
|
-
iconColor?: string | boolean | undefined;
|
5150
5155
|
} & {
|
5151
5156
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5152
5157
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5155,7 +5160,7 @@ export declare const VNumberInput: {
|
|
5155
5160
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5156
5161
|
modelValue?: unknown;
|
5157
5162
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5158
|
-
}, 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" | "
|
5163
|
+
}, 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}`> & {
|
5159
5164
|
_allExposed: {
|
5160
5165
|
reset: () => Promise<void>;
|
5161
5166
|
resetValidation: () => Promise<void>;
|
@@ -5323,6 +5328,7 @@ export declare const VNumberInput: {
|
|
5323
5328
|
bgColor?: string | undefined;
|
5324
5329
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5325
5330
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5331
|
+
iconColor?: string | boolean | undefined;
|
5326
5332
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5327
5333
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5328
5334
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -5331,7 +5337,6 @@ export declare const VNumberInput: {
|
|
5331
5337
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5332
5338
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5333
5339
|
centerAffix?: boolean | undefined;
|
5334
|
-
iconColor?: string | boolean | undefined;
|
5335
5340
|
hint?: string | undefined;
|
5336
5341
|
hideDetails?: boolean | "auto" | undefined;
|
5337
5342
|
suffix?: string | undefined;
|
@@ -5446,9 +5451,9 @@ export declare const VNumberInput: {
|
|
5446
5451
|
baseColor?: string | undefined;
|
5447
5452
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5448
5453
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5454
|
+
iconColor?: string | boolean | undefined;
|
5449
5455
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5450
5456
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5451
|
-
iconColor?: string | boolean | undefined;
|
5452
5457
|
hint?: string | undefined;
|
5453
5458
|
hideDetails?: boolean | "auto" | undefined;
|
5454
5459
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5502,9 +5507,9 @@ export declare const VNumberInput: {
|
|
5502
5507
|
baseColor?: string | undefined;
|
5503
5508
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5504
5509
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5510
|
+
iconColor?: string | boolean | undefined;
|
5505
5511
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5506
5512
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5507
|
-
iconColor?: string | boolean | undefined;
|
5508
5513
|
hint?: string | undefined;
|
5509
5514
|
hideDetails?: boolean | "auto" | undefined;
|
5510
5515
|
} & {}, {
|
@@ -5605,9 +5610,9 @@ export declare const VNumberInput: {
|
|
5605
5610
|
baseColor?: string | undefined;
|
5606
5611
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5607
5612
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5613
|
+
iconColor?: string | boolean | undefined;
|
5608
5614
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5609
5615
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5610
|
-
iconColor?: string | boolean | undefined;
|
5611
5616
|
hint?: string | undefined;
|
5612
5617
|
hideDetails?: boolean | "auto" | undefined;
|
5613
5618
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -5619,7 +5624,7 @@ export declare const VNumberInput: {
|
|
5619
5624
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5620
5625
|
modelValue?: unknown;
|
5621
5626
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5622
|
-
}, 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" | "
|
5627
|
+
}, 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<{
|
5623
5628
|
$: import("vue").ComponentInternalInstance;
|
5624
5629
|
$data: {};
|
5625
5630
|
$props: Partial<{
|
@@ -5666,13 +5671,13 @@ export declare const VNumberInput: {
|
|
5666
5671
|
rounded?: string | number | boolean | undefined;
|
5667
5672
|
baseColor?: string | undefined;
|
5668
5673
|
bgColor?: string | undefined;
|
5674
|
+
iconColor?: string | boolean | undefined;
|
5669
5675
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5670
5676
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5671
5677
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5672
5678
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5673
5679
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5674
5680
|
centerAffix?: boolean | undefined;
|
5675
|
-
iconColor?: string | boolean | undefined;
|
5676
5681
|
} & 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">;
|
5677
5682
|
$attrs: {
|
5678
5683
|
[x: string]: unknown;
|
@@ -5725,13 +5730,13 @@ export declare const VNumberInput: {
|
|
5725
5730
|
rounded?: string | number | boolean | undefined;
|
5726
5731
|
baseColor?: string | undefined;
|
5727
5732
|
bgColor?: string | undefined;
|
5733
|
+
iconColor?: string | boolean | undefined;
|
5728
5734
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5729
5735
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5730
5736
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5731
5737
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5732
5738
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5733
5739
|
centerAffix?: boolean | undefined;
|
5734
|
-
iconColor?: string | boolean | undefined;
|
5735
5740
|
} & {
|
5736
5741
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5737
5742
|
}, {
|
@@ -5835,13 +5840,13 @@ export declare const VNumberInput: {
|
|
5835
5840
|
rounded?: string | number | boolean | undefined;
|
5836
5841
|
baseColor?: string | undefined;
|
5837
5842
|
bgColor?: string | undefined;
|
5843
|
+
iconColor?: string | boolean | undefined;
|
5838
5844
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5839
5845
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5840
5846
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
5841
5847
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5842
5848
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
5843
5849
|
centerAffix?: boolean | undefined;
|
5844
|
-
iconColor?: string | boolean | undefined;
|
5845
5850
|
} & {
|
5846
5851
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
5847
5852
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -5850,7 +5855,7 @@ export declare const VNumberInput: {
|
|
5850
5855
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
5851
5856
|
modelValue?: unknown;
|
5852
5857
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
5853
|
-
}, 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" | "
|
5858
|
+
}, 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}`> & {
|
5854
5859
|
_allExposed: {
|
5855
5860
|
reset: () => Promise<void>;
|
5856
5861
|
resetValidation: () => Promise<void>;
|
@@ -5861,7 +5866,7 @@ export declare const VNumberInput: {
|
|
5861
5866
|
controlRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
5862
5867
|
fieldIconColor: import("vue").ComputedRef<string | undefined>;
|
5863
5868
|
} | {};
|
5864
|
-
}> & {} & 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" | "
|
5869
|
+
}> & {} & 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}`> & {
|
5865
5870
|
_allExposed: (HTMLInputElement & Omit<Omit<{
|
5866
5871
|
$: import("vue").ComponentInternalInstance;
|
5867
5872
|
$data: {};
|
@@ -5912,9 +5917,9 @@ export declare const VNumberInput: {
|
|
5912
5917
|
baseColor?: string | undefined;
|
5913
5918
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5914
5919
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5920
|
+
iconColor?: string | boolean | undefined;
|
5915
5921
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5916
5922
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5917
|
-
iconColor?: string | boolean | undefined;
|
5918
5923
|
hint?: string | undefined;
|
5919
5924
|
hideDetails?: boolean | "auto" | undefined;
|
5920
5925
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -5968,9 +5973,9 @@ export declare const VNumberInput: {
|
|
5968
5973
|
baseColor?: string | undefined;
|
5969
5974
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5970
5975
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
5976
|
+
iconColor?: string | boolean | undefined;
|
5971
5977
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
5972
5978
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
5973
|
-
iconColor?: string | boolean | undefined;
|
5974
5979
|
hint?: string | undefined;
|
5975
5980
|
hideDetails?: boolean | "auto" | undefined;
|
5976
5981
|
} & {}, {
|
@@ -6071,9 +6076,9 @@ export declare const VNumberInput: {
|
|
6071
6076
|
baseColor?: string | undefined;
|
6072
6077
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6073
6078
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6079
|
+
iconColor?: string | boolean | undefined;
|
6074
6080
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
6075
6081
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
6076
|
-
iconColor?: string | boolean | undefined;
|
6077
6082
|
hint?: string | undefined;
|
6078
6083
|
hideDetails?: boolean | "auto" | undefined;
|
6079
6084
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -6085,7 +6090,7 @@ export declare const VNumberInput: {
|
|
6085
6090
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6086
6091
|
modelValue?: unknown;
|
6087
6092
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6088
|
-
}, 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" | "
|
6093
|
+
}, 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<{
|
6089
6094
|
$: import("vue").ComponentInternalInstance;
|
6090
6095
|
$data: {};
|
6091
6096
|
$props: Partial<{
|
@@ -6132,13 +6137,13 @@ export declare const VNumberInput: {
|
|
6132
6137
|
rounded?: string | number | boolean | undefined;
|
6133
6138
|
baseColor?: string | undefined;
|
6134
6139
|
bgColor?: string | undefined;
|
6140
|
+
iconColor?: string | boolean | undefined;
|
6135
6141
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6136
6142
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6137
6143
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6138
6144
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6139
6145
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6140
6146
|
centerAffix?: boolean | undefined;
|
6141
|
-
iconColor?: string | boolean | undefined;
|
6142
6147
|
} & 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">;
|
6143
6148
|
$attrs: {
|
6144
6149
|
[x: string]: unknown;
|
@@ -6191,13 +6196,13 @@ export declare const VNumberInput: {
|
|
6191
6196
|
rounded?: string | number | boolean | undefined;
|
6192
6197
|
baseColor?: string | undefined;
|
6193
6198
|
bgColor?: string | undefined;
|
6199
|
+
iconColor?: string | boolean | undefined;
|
6194
6200
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6195
6201
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6196
6202
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6197
6203
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6198
6204
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6199
6205
|
centerAffix?: boolean | undefined;
|
6200
|
-
iconColor?: string | boolean | undefined;
|
6201
6206
|
} & {
|
6202
6207
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6203
6208
|
}, {
|
@@ -6301,13 +6306,13 @@ export declare const VNumberInput: {
|
|
6301
6306
|
rounded?: string | number | boolean | undefined;
|
6302
6307
|
baseColor?: string | undefined;
|
6303
6308
|
bgColor?: string | undefined;
|
6309
|
+
iconColor?: string | boolean | undefined;
|
6304
6310
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6305
6311
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
6306
6312
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
6307
6313
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6308
6314
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
6309
6315
|
centerAffix?: boolean | undefined;
|
6310
|
-
iconColor?: string | boolean | undefined;
|
6311
6316
|
} & {
|
6312
6317
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
6313
6318
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -6316,7 +6321,7 @@ export declare const VNumberInput: {
|
|
6316
6321
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
6317
6322
|
modelValue?: unknown;
|
6318
6323
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
6319
|
-
}, 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" | "
|
6324
|
+
}, 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}`> & {
|
6320
6325
|
_allExposed: {
|
6321
6326
|
reset: () => Promise<void>;
|
6322
6327
|
resetValidation: () => Promise<void>;
|
@@ -6370,6 +6375,7 @@ export declare const VNumberInput: {
|
|
6370
6375
|
hideInput: boolean;
|
6371
6376
|
controlVariant: ControlVariant;
|
6372
6377
|
precision: number | null;
|
6378
|
+
minFractionDigits: number | null;
|
6373
6379
|
}, {}, string, import("vue").SlotsType<Partial<{
|
6374
6380
|
message: (arg: import("../VMessages/VMessages.js").VMessageSlot) => import("vue").VNode[];
|
6375
6381
|
clear: (arg: import("../VField/VField.js").DefaultInputSlot & {
|
@@ -6467,6 +6473,7 @@ export declare const VNumberInput: {
|
|
6467
6473
|
bgColor: StringConstructor;
|
6468
6474
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6469
6475
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6476
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
6470
6477
|
clearIcon: {
|
6471
6478
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
6472
6479
|
default: string;
|
@@ -6483,7 +6490,6 @@ export declare const VNumberInput: {
|
|
6483
6490
|
default: undefined;
|
6484
6491
|
};
|
6485
6492
|
glow: BooleanConstructor;
|
6486
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
6487
6493
|
hideSpinButtons: BooleanConstructor;
|
6488
6494
|
hint: StringConstructor;
|
6489
6495
|
persistentHint: BooleanConstructor;
|
@@ -6523,6 +6529,10 @@ export declare const VNumberInput: {
|
|
6523
6529
|
type: PropType<number | null>;
|
6524
6530
|
default: number;
|
6525
6531
|
};
|
6532
|
+
minFractionDigits: {
|
6533
|
+
type: PropType<number | null>;
|
6534
|
+
default: null;
|
6535
|
+
};
|
6526
6536
|
}, import("vue").ExtractPropTypes<{
|
6527
6537
|
flat: BooleanConstructor;
|
6528
6538
|
reverse: BooleanConstructor;
|
@@ -6602,6 +6612,7 @@ export declare const VNumberInput: {
|
|
6602
6612
|
bgColor: StringConstructor;
|
6603
6613
|
prependIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6604
6614
|
appendIcon: PropType<import("../../composables/icons.js").IconValue>;
|
6615
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
6605
6616
|
clearIcon: {
|
6606
6617
|
type: PropType<import("../../composables/icons.js").IconValue>;
|
6607
6618
|
default: string;
|
@@ -6618,7 +6629,6 @@ export declare const VNumberInput: {
|
|
6618
6629
|
default: undefined;
|
6619
6630
|
};
|
6620
6631
|
glow: BooleanConstructor;
|
6621
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
6622
6632
|
hideSpinButtons: BooleanConstructor;
|
6623
6633
|
hint: StringConstructor;
|
6624
6634
|
persistentHint: BooleanConstructor;
|
@@ -6658,6 +6668,10 @@ export declare const VNumberInput: {
|
|
6658
6668
|
type: PropType<number | null>;
|
6659
6669
|
default: number;
|
6660
6670
|
};
|
6671
|
+
minFractionDigits: {
|
6672
|
+
type: PropType<number | null>;
|
6673
|
+
default: null;
|
6674
|
+
};
|
6661
6675
|
}>>;
|
6662
6676
|
export type VNumberInput = InstanceType<typeof VNumberInput>;
|
6663
6677
|
|