@vuetify/nightly 3.8.8-master.2025-06-10 → 3.8.9-dev.2025-06-12
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 +44 -19
- package/dist/json/attributes.json +2771 -2411
- package/dist/json/importMap-labs.json +32 -28
- package/dist/json/importMap.json +128 -128
- package/dist/json/tags.json +96 -1
- package/dist/json/web-types.json +5703 -4391
- package/dist/vuetify-labs.cjs +635 -146
- package/dist/vuetify-labs.css +4248 -4214
- package/dist/vuetify-labs.d.ts +9097 -1977
- package/dist/vuetify-labs.esm.js +636 -147
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +635 -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 +5999 -5965
- package/dist/vuetify.d.ts +1586 -1085
- 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/mask.d.ts +38 -0
- package/lib/composables/mask.js +183 -0
- package/lib/composables/mask.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 +72 -56
- 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/VMaskInput/VMaskInput.d.ts +6993 -0
- package/lib/labs/VMaskInput/VMaskInput.js +67 -0
- package/lib/labs/VMaskInput/VMaskInput.js.map +1 -0
- package/lib/labs/VMaskInput/index.d.ts +1 -0
- package/lib/labs/VMaskInput/index.js +2 -0
- package/lib/labs/VMaskInput/index.js.map +1 -0
- 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/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- 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
@@ -479,6 +479,7 @@ export declare const VTextField: {
|
|
479
479
|
bgColor?: string | undefined;
|
480
480
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
481
481
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
482
|
+
iconColor?: string | boolean | undefined;
|
482
483
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
483
484
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
484
485
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -487,7 +488,6 @@ export declare const VTextField: {
|
|
487
488
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
488
489
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
489
490
|
centerAffix?: boolean | undefined;
|
490
|
-
iconColor?: string | boolean | undefined;
|
491
491
|
hint?: string | undefined;
|
492
492
|
hideDetails?: boolean | "auto" | undefined;
|
493
493
|
suffix?: string | undefined;
|
@@ -602,9 +602,9 @@ export declare const VTextField: {
|
|
602
602
|
baseColor?: string | undefined;
|
603
603
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
604
604
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
605
|
+
iconColor?: string | boolean | undefined;
|
605
606
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
606
607
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
607
|
-
iconColor?: string | boolean | undefined;
|
608
608
|
hint?: string | undefined;
|
609
609
|
hideDetails?: boolean | "auto" | undefined;
|
610
610
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -658,9 +658,9 @@ export declare const VTextField: {
|
|
658
658
|
baseColor?: string | undefined;
|
659
659
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
660
660
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
661
|
+
iconColor?: string | boolean | undefined;
|
661
662
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
662
663
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
663
|
-
iconColor?: string | boolean | undefined;
|
664
664
|
hint?: string | undefined;
|
665
665
|
hideDetails?: boolean | "auto" | undefined;
|
666
666
|
} & {}, {
|
@@ -761,9 +761,9 @@ export declare const VTextField: {
|
|
761
761
|
baseColor?: string | undefined;
|
762
762
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
763
763
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
764
|
+
iconColor?: string | boolean | undefined;
|
764
765
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
765
766
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
766
|
-
iconColor?: string | boolean | undefined;
|
767
767
|
hint?: string | undefined;
|
768
768
|
hideDetails?: boolean | "auto" | undefined;
|
769
769
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -775,7 +775,7 @@ export declare const VTextField: {
|
|
775
775
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
776
776
|
modelValue?: unknown;
|
777
777
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
778
|
-
}, 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" | "
|
778
|
+
}, 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<{
|
779
779
|
$: import("vue").ComponentInternalInstance;
|
780
780
|
$data: {};
|
781
781
|
$props: Partial<{
|
@@ -822,13 +822,13 @@ export declare const VTextField: {
|
|
822
822
|
rounded?: string | number | boolean | undefined;
|
823
823
|
baseColor?: string | undefined;
|
824
824
|
bgColor?: string | undefined;
|
825
|
+
iconColor?: string | boolean | undefined;
|
825
826
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
826
827
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
827
828
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
828
829
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
829
830
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
830
831
|
centerAffix?: boolean | undefined;
|
831
|
-
iconColor?: string | boolean | undefined;
|
832
832
|
} & 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">;
|
833
833
|
$attrs: {
|
834
834
|
[x: string]: unknown;
|
@@ -881,13 +881,13 @@ export declare const VTextField: {
|
|
881
881
|
rounded?: string | number | boolean | undefined;
|
882
882
|
baseColor?: string | undefined;
|
883
883
|
bgColor?: string | undefined;
|
884
|
+
iconColor?: string | boolean | undefined;
|
884
885
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
885
886
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
886
887
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
887
888
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
888
889
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
889
890
|
centerAffix?: boolean | undefined;
|
890
|
-
iconColor?: string | boolean | undefined;
|
891
891
|
} & {
|
892
892
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
893
893
|
}, {
|
@@ -991,13 +991,13 @@ export declare const VTextField: {
|
|
991
991
|
rounded?: string | number | boolean | undefined;
|
992
992
|
baseColor?: string | undefined;
|
993
993
|
bgColor?: string | undefined;
|
994
|
+
iconColor?: string | boolean | undefined;
|
994
995
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
995
996
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
996
997
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
997
998
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
998
999
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
999
1000
|
centerAffix?: boolean | undefined;
|
1000
|
-
iconColor?: string | boolean | undefined;
|
1001
1001
|
} & {
|
1002
1002
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1003
1003
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1006,7 +1006,7 @@ export declare const VTextField: {
|
|
1006
1006
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1007
1007
|
modelValue?: unknown;
|
1008
1008
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1009
|
-
}, 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" | "
|
1009
|
+
}, 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}`> & {
|
1010
1010
|
_allExposed: {
|
1011
1011
|
reset: () => Promise<void>;
|
1012
1012
|
resetValidation: () => Promise<void>;
|
@@ -1130,6 +1130,7 @@ export declare const VTextField: {
|
|
1130
1130
|
bgColor?: string | undefined;
|
1131
1131
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1132
1132
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1133
|
+
iconColor?: string | boolean | undefined;
|
1133
1134
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1134
1135
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1135
1136
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1138,7 +1139,6 @@ export declare const VTextField: {
|
|
1138
1139
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1139
1140
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1140
1141
|
centerAffix?: boolean | undefined;
|
1141
|
-
iconColor?: string | boolean | undefined;
|
1142
1142
|
hint?: string | undefined;
|
1143
1143
|
hideDetails?: boolean | "auto" | undefined;
|
1144
1144
|
suffix?: string | undefined;
|
@@ -1253,9 +1253,9 @@ export declare const VTextField: {
|
|
1253
1253
|
baseColor?: string | undefined;
|
1254
1254
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1255
1255
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1256
|
+
iconColor?: string | boolean | undefined;
|
1256
1257
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1257
1258
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1258
|
-
iconColor?: string | boolean | undefined;
|
1259
1259
|
hint?: string | undefined;
|
1260
1260
|
hideDetails?: boolean | "auto" | undefined;
|
1261
1261
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1309,9 +1309,9 @@ export declare const VTextField: {
|
|
1309
1309
|
baseColor?: string | undefined;
|
1310
1310
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1311
1311
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1312
|
+
iconColor?: string | boolean | undefined;
|
1312
1313
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1313
1314
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1314
|
-
iconColor?: string | boolean | undefined;
|
1315
1315
|
hint?: string | undefined;
|
1316
1316
|
hideDetails?: boolean | "auto" | undefined;
|
1317
1317
|
} & {}, {
|
@@ -1412,9 +1412,9 @@ export declare const VTextField: {
|
|
1412
1412
|
baseColor?: string | undefined;
|
1413
1413
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1414
1414
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1415
|
+
iconColor?: string | boolean | undefined;
|
1415
1416
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1416
1417
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1417
|
-
iconColor?: string | boolean | undefined;
|
1418
1418
|
hint?: string | undefined;
|
1419
1419
|
hideDetails?: boolean | "auto" | undefined;
|
1420
1420
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1426,7 +1426,7 @@ export declare const VTextField: {
|
|
1426
1426
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1427
1427
|
modelValue?: unknown;
|
1428
1428
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1429
|
-
}, 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" | "
|
1429
|
+
}, 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<{
|
1430
1430
|
$: import("vue").ComponentInternalInstance;
|
1431
1431
|
$data: {};
|
1432
1432
|
$props: Partial<{
|
@@ -1473,13 +1473,13 @@ export declare const VTextField: {
|
|
1473
1473
|
rounded?: string | number | boolean | undefined;
|
1474
1474
|
baseColor?: string | undefined;
|
1475
1475
|
bgColor?: string | undefined;
|
1476
|
+
iconColor?: string | boolean | undefined;
|
1476
1477
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1477
1478
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1478
1479
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1479
1480
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1480
1481
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1481
1482
|
centerAffix?: boolean | undefined;
|
1482
|
-
iconColor?: string | boolean | undefined;
|
1483
1483
|
} & 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">;
|
1484
1484
|
$attrs: {
|
1485
1485
|
[x: string]: unknown;
|
@@ -1532,13 +1532,13 @@ export declare const VTextField: {
|
|
1532
1532
|
rounded?: string | number | boolean | undefined;
|
1533
1533
|
baseColor?: string | undefined;
|
1534
1534
|
bgColor?: string | undefined;
|
1535
|
+
iconColor?: string | boolean | undefined;
|
1535
1536
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1536
1537
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1537
1538
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1538
1539
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1539
1540
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1540
1541
|
centerAffix?: boolean | undefined;
|
1541
|
-
iconColor?: string | boolean | undefined;
|
1542
1542
|
} & {
|
1543
1543
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1544
1544
|
}, {
|
@@ -1642,13 +1642,13 @@ export declare const VTextField: {
|
|
1642
1642
|
rounded?: string | number | boolean | undefined;
|
1643
1643
|
baseColor?: string | undefined;
|
1644
1644
|
bgColor?: string | undefined;
|
1645
|
+
iconColor?: string | boolean | undefined;
|
1645
1646
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1646
1647
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1647
1648
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
1648
1649
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1649
1650
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1650
1651
|
centerAffix?: boolean | undefined;
|
1651
|
-
iconColor?: string | boolean | undefined;
|
1652
1652
|
} & {
|
1653
1653
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
1654
1654
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -1657,7 +1657,7 @@ export declare const VTextField: {
|
|
1657
1657
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1658
1658
|
modelValue?: unknown;
|
1659
1659
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1660
|
-
}, 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" | "
|
1660
|
+
}, 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}`> & {
|
1661
1661
|
_allExposed: {
|
1662
1662
|
reset: () => Promise<void>;
|
1663
1663
|
resetValidation: () => Promise<void>;
|
@@ -1756,6 +1756,7 @@ export declare const VTextField: {
|
|
1756
1756
|
bgColor?: string | undefined;
|
1757
1757
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1758
1758
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1759
|
+
iconColor?: string | boolean | undefined;
|
1759
1760
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1760
1761
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1761
1762
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1764,7 +1765,6 @@ export declare const VTextField: {
|
|
1764
1765
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1765
1766
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1766
1767
|
centerAffix?: boolean | undefined;
|
1767
|
-
iconColor?: string | boolean | undefined;
|
1768
1768
|
hint?: string | undefined;
|
1769
1769
|
hideDetails?: boolean | "auto" | undefined;
|
1770
1770
|
suffix?: string | undefined;
|
@@ -1879,9 +1879,9 @@ export declare const VTextField: {
|
|
1879
1879
|
baseColor?: string | undefined;
|
1880
1880
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1881
1881
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1882
|
+
iconColor?: string | boolean | undefined;
|
1882
1883
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1883
1884
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1884
|
-
iconColor?: string | boolean | undefined;
|
1885
1885
|
hint?: string | undefined;
|
1886
1886
|
hideDetails?: boolean | "auto" | undefined;
|
1887
1887
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1935,9 +1935,9 @@ export declare const VTextField: {
|
|
1935
1935
|
baseColor?: string | undefined;
|
1936
1936
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1937
1937
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1938
|
+
iconColor?: string | boolean | undefined;
|
1938
1939
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1939
1940
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1940
|
-
iconColor?: string | boolean | undefined;
|
1941
1941
|
hint?: string | undefined;
|
1942
1942
|
hideDetails?: boolean | "auto" | undefined;
|
1943
1943
|
} & {}, {
|
@@ -2038,9 +2038,9 @@ export declare const VTextField: {
|
|
2038
2038
|
baseColor?: string | undefined;
|
2039
2039
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2040
2040
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2041
|
+
iconColor?: string | boolean | undefined;
|
2041
2042
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
2042
2043
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
2043
|
-
iconColor?: string | boolean | undefined;
|
2044
2044
|
hint?: string | undefined;
|
2045
2045
|
hideDetails?: boolean | "auto" | undefined;
|
2046
2046
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -2052,7 +2052,7 @@ export declare const VTextField: {
|
|
2052
2052
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2053
2053
|
modelValue?: unknown;
|
2054
2054
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2055
|
-
}, 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" | "
|
2055
|
+
}, 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<{
|
2056
2056
|
$: import("vue").ComponentInternalInstance;
|
2057
2057
|
$data: {};
|
2058
2058
|
$props: Partial<{
|
@@ -2099,13 +2099,13 @@ export declare const VTextField: {
|
|
2099
2099
|
rounded?: string | number | boolean | undefined;
|
2100
2100
|
baseColor?: string | undefined;
|
2101
2101
|
bgColor?: string | undefined;
|
2102
|
+
iconColor?: string | boolean | undefined;
|
2102
2103
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2103
2104
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2104
2105
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2105
2106
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2106
2107
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2107
2108
|
centerAffix?: boolean | undefined;
|
2108
|
-
iconColor?: string | boolean | undefined;
|
2109
2109
|
} & 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">;
|
2110
2110
|
$attrs: {
|
2111
2111
|
[x: string]: unknown;
|
@@ -2158,13 +2158,13 @@ export declare const VTextField: {
|
|
2158
2158
|
rounded?: string | number | boolean | undefined;
|
2159
2159
|
baseColor?: string | undefined;
|
2160
2160
|
bgColor?: string | undefined;
|
2161
|
+
iconColor?: string | boolean | undefined;
|
2161
2162
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2162
2163
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2163
2164
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2164
2165
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2165
2166
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2166
2167
|
centerAffix?: boolean | undefined;
|
2167
|
-
iconColor?: string | boolean | undefined;
|
2168
2168
|
} & {
|
2169
2169
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2170
2170
|
}, {
|
@@ -2268,13 +2268,13 @@ export declare const VTextField: {
|
|
2268
2268
|
rounded?: string | number | boolean | undefined;
|
2269
2269
|
baseColor?: string | undefined;
|
2270
2270
|
bgColor?: string | undefined;
|
2271
|
+
iconColor?: string | boolean | undefined;
|
2271
2272
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2272
2273
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
2273
2274
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
2274
2275
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2275
2276
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
2276
2277
|
centerAffix?: boolean | undefined;
|
2277
|
-
iconColor?: string | boolean | undefined;
|
2278
2278
|
} & {
|
2279
2279
|
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
2280
2280
|
}, ("flat" | "reverse" | "variant" | "error" | "active" | "style" | "disabled" | "focused" | "rounded" | "tile" | "clearIcon" | "centerAffix" | "glow" | "clearable" | "dirty" | "persistentClear" | "singleLine") | "controlRef" | "fieldIconColor"> & import("vue").ShallowUnwrapRef<{
|
@@ -2283,7 +2283,7 @@ export declare const VTextField: {
|
|
2283
2283
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
2284
2284
|
modelValue?: unknown;
|
2285
2285
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
2286
|
-
}, 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" | "
|
2286
|
+
}, 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}`> & {
|
2287
2287
|
_allExposed: {
|
2288
2288
|
reset: () => Promise<void>;
|
2289
2289
|
resetValidation: () => Promise<void>;
|
@@ -493,6 +493,7 @@ export declare const VTextarea: {
|
|
493
493
|
bgColor?: string | undefined;
|
494
494
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
495
495
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
496
|
+
iconColor?: string | boolean | undefined;
|
496
497
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
497
498
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
498
499
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -501,7 +502,6 @@ export declare const VTextarea: {
|
|
501
502
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
502
503
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
503
504
|
centerAffix?: boolean | undefined;
|
504
|
-
iconColor?: string | boolean | undefined;
|
505
505
|
hint?: string | undefined;
|
506
506
|
hideDetails?: boolean | "auto" | undefined;
|
507
507
|
suffix?: string | undefined;
|
@@ -614,9 +614,9 @@ export declare const VTextarea: {
|
|
614
614
|
baseColor?: string | undefined;
|
615
615
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
616
616
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
617
|
+
iconColor?: string | boolean | undefined;
|
617
618
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
618
619
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
619
|
-
iconColor?: string | boolean | undefined;
|
620
620
|
hint?: string | undefined;
|
621
621
|
hideDetails?: boolean | "auto" | undefined;
|
622
622
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -670,9 +670,9 @@ export declare const VTextarea: {
|
|
670
670
|
baseColor?: string | undefined;
|
671
671
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
672
672
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
673
|
+
iconColor?: string | boolean | undefined;
|
673
674
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
674
675
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
675
|
-
iconColor?: string | boolean | undefined;
|
676
676
|
hint?: string | undefined;
|
677
677
|
hideDetails?: boolean | "auto" | undefined;
|
678
678
|
} & {}, {
|
@@ -773,9 +773,9 @@ export declare const VTextarea: {
|
|
773
773
|
baseColor?: string | undefined;
|
774
774
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
775
775
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
776
|
+
iconColor?: string | boolean | undefined;
|
776
777
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
777
778
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
778
|
-
iconColor?: string | boolean | undefined;
|
779
779
|
hint?: string | undefined;
|
780
780
|
hideDetails?: boolean | "auto" | undefined;
|
781
781
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -787,7 +787,7 @@ export declare const VTextarea: {
|
|
787
787
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
788
788
|
modelValue?: unknown;
|
789
789
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
790
|
-
}, 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" | "
|
790
|
+
}, 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}`> & {
|
791
791
|
_allExposed: {
|
792
792
|
reset: () => Promise<void>;
|
793
793
|
resetValidation: () => Promise<void>;
|
@@ -910,6 +910,7 @@ export declare const VTextarea: {
|
|
910
910
|
bgColor?: string | undefined;
|
911
911
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
912
912
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
913
|
+
iconColor?: string | boolean | undefined;
|
913
914
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
914
915
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
915
916
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -918,7 +919,6 @@ export declare const VTextarea: {
|
|
918
919
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
919
920
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
920
921
|
centerAffix?: boolean | undefined;
|
921
|
-
iconColor?: string | boolean | undefined;
|
922
922
|
hint?: string | undefined;
|
923
923
|
hideDetails?: boolean | "auto" | undefined;
|
924
924
|
suffix?: string | undefined;
|
@@ -1031,9 +1031,9 @@ export declare const VTextarea: {
|
|
1031
1031
|
baseColor?: string | undefined;
|
1032
1032
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1033
1033
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1034
|
+
iconColor?: string | boolean | undefined;
|
1034
1035
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1035
1036
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1036
|
-
iconColor?: string | boolean | undefined;
|
1037
1037
|
hint?: string | undefined;
|
1038
1038
|
hideDetails?: boolean | "auto" | undefined;
|
1039
1039
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1087,9 +1087,9 @@ export declare const VTextarea: {
|
|
1087
1087
|
baseColor?: string | undefined;
|
1088
1088
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1089
1089
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1090
|
+
iconColor?: string | boolean | undefined;
|
1090
1091
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1091
1092
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1092
|
-
iconColor?: string | boolean | undefined;
|
1093
1093
|
hint?: string | undefined;
|
1094
1094
|
hideDetails?: boolean | "auto" | undefined;
|
1095
1095
|
} & {}, {
|
@@ -1190,9 +1190,9 @@ export declare const VTextarea: {
|
|
1190
1190
|
baseColor?: string | undefined;
|
1191
1191
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1192
1192
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1193
|
+
iconColor?: string | boolean | undefined;
|
1193
1194
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1194
1195
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1195
|
-
iconColor?: string | boolean | undefined;
|
1196
1196
|
hint?: string | undefined;
|
1197
1197
|
hideDetails?: boolean | "auto" | undefined;
|
1198
1198
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1204,7 +1204,7 @@ export declare const VTextarea: {
|
|
1204
1204
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1205
1205
|
modelValue?: unknown;
|
1206
1206
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1207
|
-
}, 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" | "
|
1207
|
+
}, 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}`> & {
|
1208
1208
|
_allExposed: {
|
1209
1209
|
reset: () => Promise<void>;
|
1210
1210
|
resetValidation: () => Promise<void>;
|
@@ -1303,6 +1303,7 @@ export declare const VTextarea: {
|
|
1303
1303
|
bgColor?: string | undefined;
|
1304
1304
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1305
1305
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1306
|
+
iconColor?: string | boolean | undefined;
|
1306
1307
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1307
1308
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1308
1309
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1311,7 +1312,6 @@ export declare const VTextarea: {
|
|
1311
1312
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1312
1313
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1313
1314
|
centerAffix?: boolean | undefined;
|
1314
|
-
iconColor?: string | boolean | undefined;
|
1315
1315
|
hint?: string | undefined;
|
1316
1316
|
hideDetails?: boolean | "auto" | undefined;
|
1317
1317
|
suffix?: string | undefined;
|
@@ -1424,9 +1424,9 @@ export declare const VTextarea: {
|
|
1424
1424
|
baseColor?: string | undefined;
|
1425
1425
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1426
1426
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1427
|
+
iconColor?: string | boolean | undefined;
|
1427
1428
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1428
1429
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1429
|
-
iconColor?: string | boolean | undefined;
|
1430
1430
|
hint?: string | undefined;
|
1431
1431
|
hideDetails?: boolean | "auto" | undefined;
|
1432
1432
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint">;
|
@@ -1480,9 +1480,9 @@ export declare const VTextarea: {
|
|
1480
1480
|
baseColor?: string | undefined;
|
1481
1481
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1482
1482
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1483
|
+
iconColor?: string | boolean | undefined;
|
1483
1484
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1484
1485
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1485
|
-
iconColor?: string | boolean | undefined;
|
1486
1486
|
hint?: string | undefined;
|
1487
1487
|
hideDetails?: boolean | "auto" | undefined;
|
1488
1488
|
} & {}, {
|
@@ -1583,9 +1583,9 @@ export declare const VTextarea: {
|
|
1583
1583
|
baseColor?: string | undefined;
|
1584
1584
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1585
1585
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1586
|
+
iconColor?: string | boolean | undefined;
|
1586
1587
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
1587
1588
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
1588
|
-
iconColor?: string | boolean | undefined;
|
1589
1589
|
hint?: string | undefined;
|
1590
1590
|
hideDetails?: boolean | "auto" | undefined;
|
1591
1591
|
} & {}, "reset" | "isValid" | "validate" | "resetValidation" | ("error" | "direction" | "style" | "disabled" | "readonly" | "messages" | "rules" | "focused" | "errorMessages" | "maxErrors" | "density" | "centerAffix" | "glow" | "hideSpinButtons" | "persistentHint")> & import("vue").ShallowUnwrapRef<{
|
@@ -1597,7 +1597,7 @@ export declare const VTextarea: {
|
|
1597
1597
|
}> & {} & import("vue").ComponentCustomProperties & {} & import("../../util/index.js").GenericProps<{
|
1598
1598
|
modelValue?: unknown;
|
1599
1599
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
1600
|
-
}, 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" | "
|
1600
|
+
}, 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}`> & {
|
1601
1601
|
_allExposed: {
|
1602
1602
|
reset: () => Promise<void>;
|
1603
1603
|
resetValidation: () => Promise<void>;
|
@@ -107,7 +107,13 @@ export declare const makeVToolbarProps: <Defaults extends {
|
|
107
107
|
type: PropType<unknown extends Defaults["density"] ? Density : Density | Defaults["density"]>;
|
108
108
|
default: unknown extends Defaults["density"] ? Density : Defaults["density"] | NonNullable<Density>;
|
109
109
|
};
|
110
|
-
extended: unknown extends Defaults["extended"] ?
|
110
|
+
extended: unknown extends Defaults["extended"] ? {
|
111
|
+
type: BooleanConstructor;
|
112
|
+
default: null;
|
113
|
+
} : Omit<{
|
114
|
+
type: BooleanConstructor;
|
115
|
+
default: null;
|
116
|
+
}, "type" | "default"> & {
|
111
117
|
type: PropType<unknown extends Defaults["extended"] ? boolean : boolean | Defaults["extended"]>;
|
112
118
|
default: unknown extends Defaults["extended"] ? boolean : boolean | Defaults["extended"];
|
113
119
|
};
|
@@ -397,7 +403,10 @@ export declare const VToolbar: {
|
|
397
403
|
default: string;
|
398
404
|
validator: (v: any) => boolean;
|
399
405
|
};
|
400
|
-
extended:
|
406
|
+
extended: {
|
407
|
+
type: BooleanConstructor;
|
408
|
+
default: null;
|
409
|
+
};
|
401
410
|
extensionHeight: {
|
402
411
|
type: (StringConstructor | NumberConstructor)[];
|
403
412
|
default: number;
|
@@ -442,7 +451,10 @@ export declare const VToolbar: {
|
|
442
451
|
default: string;
|
443
452
|
validator: (v: any) => boolean;
|
444
453
|
};
|
445
|
-
extended:
|
454
|
+
extended: {
|
455
|
+
type: BooleanConstructor;
|
456
|
+
default: null;
|
457
|
+
};
|
446
458
|
extensionHeight: {
|
447
459
|
type: (StringConstructor | NumberConstructor)[];
|
448
460
|
default: number;
|
@@ -28,7 +28,10 @@ export const makeVToolbarProps = propsFactory({
|
|
28
28
|
default: 'default',
|
29
29
|
validator: v => allowedDensities.includes(v)
|
30
30
|
},
|
31
|
-
extended:
|
31
|
+
extended: {
|
32
|
+
type: Boolean,
|
33
|
+
default: null
|
34
|
+
},
|
32
35
|
extensionHeight: {
|
33
36
|
type: [Number, String],
|
34
37
|
default: 48
|
@@ -76,7 +79,7 @@ export const VToolbar = genericComponent()({
|
|
76
79
|
const {
|
77
80
|
rtlClasses
|
78
81
|
} = useRtl();
|
79
|
-
const isExtended = shallowRef(
|
82
|
+
const isExtended = shallowRef(props.extended === null ? !!slots.extension?.() : props.extended);
|
80
83
|
const contentHeight = computed(() => parseInt(Number(props.height) + (props.density === 'prominent' ? Number(props.height) : 0) - (props.density === 'comfortable' ? 8 : 0) - (props.density === 'compact' ? 16 : 0), 10));
|
81
84
|
const extensionHeight = computed(() => isExtended.value ? parseInt(Number(props.extensionHeight) + (props.density === 'prominent' ? Number(props.extensionHeight) : 0) - (props.density === 'comfortable' ? 4 : 0) - (props.density === 'compact' ? 8 : 0), 10) : 0);
|
82
85
|
provideDefaults({
|
@@ -88,7 +91,7 @@ export const VToolbar = genericComponent()({
|
|
88
91
|
const hasTitle = !!(props.title || slots.title);
|
89
92
|
const hasImage = !!(slots.image || props.image);
|
90
93
|
const extension = slots.extension?.();
|
91
|
-
isExtended.value =
|
94
|
+
isExtended.value = props.extended === null ? !!extension : props.extended;
|
92
95
|
return _createVNode(props.tag, {
|
93
96
|
"class": _normalizeClass(['v-toolbar', {
|
94
97
|
'v-toolbar--absolute': props.absolute,
|