@vuetify/nightly 3.8.4-master.2025-05-12 → 3.8.5-dev.2025-05-14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -12
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +2152 -1792
- package/dist/json/importMap-labs.json +40 -36
- package/dist/json/importMap.json +106 -106
- package/dist/json/tags.json +95 -0
- package/dist/json/web-types.json +5016 -3760
- package/dist/vuetify-labs.cjs +429 -61
- package/dist/vuetify-labs.css +4205 -4149
- package/dist/vuetify-labs.d.ts +2274 -1142
- package/dist/vuetify-labs.esm.js +430 -62
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +429 -61
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4725 -4672
- package/dist/vuetify.d.ts +544 -487
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +51 -43
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +133 -108
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +2 -1
@@ -468,9 +468,9 @@ export declare const VSlider: {
|
|
468
468
|
baseColor?: string | undefined;
|
469
469
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
470
470
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
471
|
+
iconColor?: string | boolean | undefined;
|
471
472
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
472
473
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
473
|
-
iconColor?: string | boolean | undefined;
|
474
474
|
hint?: string | undefined;
|
475
475
|
hideDetails?: boolean | "auto" | undefined;
|
476
476
|
trackColor?: string | undefined;
|
@@ -629,9 +629,9 @@ export declare const VSlider: {
|
|
629
629
|
baseColor?: string | undefined;
|
630
630
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
631
631
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
632
|
+
iconColor?: string | boolean | undefined;
|
632
633
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
633
634
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
634
|
-
iconColor?: string | boolean | undefined;
|
635
635
|
hint?: string | undefined;
|
636
636
|
hideDetails?: boolean | "auto" | undefined;
|
637
637
|
trackColor?: string | undefined;
|
@@ -768,9 +768,9 @@ export declare const VSlider: {
|
|
768
768
|
baseColor?: string | undefined;
|
769
769
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
770
770
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
771
|
+
iconColor?: string | boolean | undefined;
|
771
772
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
772
773
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
773
|
-
iconColor?: string | boolean | undefined;
|
774
774
|
hint?: string | undefined;
|
775
775
|
hideDetails?: boolean | "auto" | undefined;
|
776
776
|
trackColor?: string | undefined;
|
@@ -15,7 +15,9 @@ export type VSnackbarQueueSlots<T extends string | SnackbarMessage> = {
|
|
15
15
|
};
|
16
16
|
};
|
17
17
|
};
|
18
|
-
export type SnackbarMessage = string | Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps
|
18
|
+
export type SnackbarMessage = string | (Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | 'style' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps> & {
|
19
|
+
style?: any;
|
20
|
+
});
|
19
21
|
export declare const makeVSnackbarQueueProps: <Defaults extends {
|
20
22
|
variant?: unknown;
|
21
23
|
offset?: unknown;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VSnackbarQueue.js","names":["VBtn","VDefaultsProvider","makeVSnackbarProps","VSnackbar","useLocale","computed","nextTick","shallowRef","watch","genericComponent","omit","propsFactory","useRender","makeVSnackbarQueueProps","closable","Boolean","String","closeText","type","default","modelValue","Array","VSnackbarQueue","name","props","emits","val","setup","_ref","emit","slots","t","isActive","isVisible","current","length","oldVal","value","showNext","onAfterLeave","undefined","next","rest","text","onClickClose","btnProps","color","hasActions","actions","_","snackbarProps","filterProps","_createVNode","_Fragment","item","_mergeProps","$event","onClick"],"sources":["../../../src/components/VSnackbarQueue/VSnackbarQueue.tsx"],"sourcesContent":["// Components\nimport { VBtn } from '@/components/VBtn'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { makeVSnackbarProps, VSnackbar } from '@/components/VSnackbar/VSnackbar'\n\n// Composables\nimport { useLocale } from '@/composables/locale'\n\n// Utilities\nimport { computed, nextTick, shallowRef, watch } from 'vue'\nimport { genericComponent, omit, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType, VNodeProps } from 'vue'\nimport type { GenericProps } from '@/util'\n\nexport type VSnackbarQueueSlots<T extends string | SnackbarMessage> = {\n default: { item: T }\n text: { item: T }\n actions: {\n item: T\n props: {\n onClick: () => void\n }\n }\n}\n\nexport type SnackbarMessage
|
1
|
+
{"version":3,"file":"VSnackbarQueue.js","names":["VBtn","VDefaultsProvider","makeVSnackbarProps","VSnackbar","useLocale","computed","nextTick","shallowRef","watch","genericComponent","omit","propsFactory","useRender","makeVSnackbarQueueProps","closable","Boolean","String","closeText","type","default","modelValue","Array","VSnackbarQueue","name","props","emits","val","setup","_ref","emit","slots","t","isActive","isVisible","current","length","oldVal","value","showNext","onAfterLeave","undefined","next","rest","text","onClickClose","btnProps","color","hasActions","actions","_","snackbarProps","filterProps","_createVNode","_Fragment","item","_mergeProps","$event","onClick"],"sources":["../../../src/components/VSnackbarQueue/VSnackbarQueue.tsx"],"sourcesContent":["// Components\nimport { VBtn } from '@/components/VBtn'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { makeVSnackbarProps, VSnackbar } from '@/components/VSnackbar/VSnackbar'\n\n// Composables\nimport { useLocale } from '@/composables/locale'\n\n// Utilities\nimport { computed, nextTick, shallowRef, watch } from 'vue'\nimport { genericComponent, omit, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType, VNodeProps } from 'vue'\nimport type { GenericProps } from '@/util'\n\nexport type VSnackbarQueueSlots<T extends string | SnackbarMessage> = {\n default: { item: T }\n text: { item: T }\n actions: {\n item: T\n props: {\n onClick: () => void\n }\n }\n}\n\nexport type SnackbarMessage =\n | string\n | (Omit<\n VSnackbar['$props'],\n | 'modelValue'\n | 'onUpdate:modelValue'\n | 'activator'\n | 'activatorProps'\n | 'closeDelay'\n | 'openDelay'\n | 'openOnClick'\n | 'openOnFocus'\n | 'openOnHover'\n | 'style'\n | '$children'\n | 'v-slots'\n | `v-slot:${string}`\n | keyof VNodeProps\n > & { style?: any })\n\nexport const makeVSnackbarQueueProps = propsFactory({\n // TODO: Port this to Snackbar on dev\n closable: [Boolean, String],\n closeText: {\n type: String,\n default: '$vuetify.dismiss',\n },\n modelValue: {\n type: Array as PropType<readonly SnackbarMessage[]>,\n default: () => [],\n },\n\n ...omit(makeVSnackbarProps(), ['modelValue']),\n}, 'VSnackbarQueue')\n\nexport const VSnackbarQueue = genericComponent<new <T extends readonly SnackbarMessage[]> (\n props: {\n modelValue?: T\n 'onUpdate:modelValue'?: (val: T) => void\n },\n slots: VSnackbarQueueSlots<T[number]>,\n) => GenericProps<typeof props, typeof slots>>()({\n name: 'VSnackbarQueue',\n\n props: makeVSnackbarQueueProps(),\n\n emits: {\n 'update:modelValue': (val: SnackbarMessage[]) => true,\n },\n\n setup (props, { emit, slots }) {\n const { t } = useLocale()\n\n const isActive = shallowRef(false)\n const isVisible = shallowRef(false)\n const current = shallowRef<Exclude<SnackbarMessage, string>>()\n\n watch(() => props.modelValue.length, (val, oldVal) => {\n if (!isVisible.value && val > oldVal) {\n showNext()\n }\n })\n watch(isActive, val => {\n if (val) isVisible.value = true\n })\n\n function onAfterLeave () {\n if (props.modelValue.length) {\n showNext()\n } else {\n current.value = undefined\n isVisible.value = false\n }\n }\n function showNext () {\n const [next, ...rest] = props.modelValue\n emit('update:modelValue', rest)\n current.value = typeof next === 'string' ? { text: next } : next\n nextTick(() => {\n isActive.value = true\n })\n }\n function onClickClose () {\n isActive.value = false\n }\n\n const btnProps = computed(() => ({\n color: typeof props.closable === 'string' ? props.closable : undefined,\n text: t(props.closeText),\n }))\n\n useRender(() => {\n const hasActions = !!(props.closable || slots.actions)\n const { modelValue: _, ...snackbarProps } = VSnackbar.filterProps(props as any)\n\n return (\n <>\n { isVisible.value && !!current.value && (\n slots.default\n ? (\n <VDefaultsProvider defaults={{ VSnackbar: current.value }}>\n { slots.default({ item: current.value }) }\n </VDefaultsProvider>\n ) : (\n <VSnackbar\n { ...snackbarProps }\n { ...current.value }\n v-model={ isActive.value }\n onAfterLeave={ onAfterLeave }\n >\n {{\n text: slots.text ? () => slots.text?.({ item: current.value! }) : undefined,\n actions: hasActions ? () => (\n <>\n { !slots.actions ? (\n <VBtn\n { ...btnProps.value }\n onClick={ onClickClose }\n />\n ) : (\n <VDefaultsProvider\n defaults={{\n VBtn: btnProps.value,\n }}\n >\n { slots.actions({\n item: current.value!,\n props: { onClick: onClickClose },\n })}\n </VDefaultsProvider>\n )}\n </>\n ) : undefined,\n }}\n </VSnackbar>\n )\n )}\n </>\n )\n })\n },\n})\n\nexport type VSnackbarQueue = InstanceType<typeof VSnackbarQueue>\n"],"mappings":"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","ignoreList":[]}
|
@@ -415,6 +415,7 @@ export declare const VSwitch: {
|
|
415
415
|
baseColor?: string | undefined;
|
416
416
|
prependIcon?: IconValue | undefined;
|
417
417
|
appendIcon?: IconValue | undefined;
|
418
|
+
iconColor?: string | boolean | undefined;
|
418
419
|
defaultsTarget?: string | undefined;
|
419
420
|
falseIcon?: IconValue | undefined;
|
420
421
|
trueIcon?: IconValue | undefined;
|
@@ -422,7 +423,6 @@ export declare const VSwitch: {
|
|
422
423
|
falseValue?: any;
|
423
424
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
424
425
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
425
|
-
iconColor?: string | boolean | undefined;
|
426
426
|
hint?: string | undefined;
|
427
427
|
hideDetails?: boolean | "auto" | undefined;
|
428
428
|
} & {
|
@@ -529,6 +529,7 @@ export declare const VSwitch: {
|
|
529
529
|
baseColor?: string | undefined;
|
530
530
|
prependIcon?: IconValue | undefined;
|
531
531
|
appendIcon?: IconValue | undefined;
|
532
|
+
iconColor?: string | boolean | undefined;
|
532
533
|
defaultsTarget?: string | undefined;
|
533
534
|
falseIcon?: IconValue | undefined;
|
534
535
|
trueIcon?: IconValue | undefined;
|
@@ -536,7 +537,6 @@ export declare const VSwitch: {
|
|
536
537
|
falseValue?: any;
|
537
538
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
538
539
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
539
|
-
iconColor?: string | boolean | undefined;
|
540
540
|
hint?: string | undefined;
|
541
541
|
hideDetails?: boolean | "auto" | undefined;
|
542
542
|
} & {
|
@@ -616,6 +616,7 @@ export declare const VSwitch: {
|
|
616
616
|
baseColor?: string | undefined;
|
617
617
|
prependIcon?: IconValue | undefined;
|
618
618
|
appendIcon?: IconValue | undefined;
|
619
|
+
iconColor?: string | boolean | undefined;
|
619
620
|
defaultsTarget?: string | undefined;
|
620
621
|
falseIcon?: IconValue | undefined;
|
621
622
|
trueIcon?: IconValue | undefined;
|
@@ -623,7 +624,6 @@ export declare const VSwitch: {
|
|
623
624
|
falseValue?: any;
|
624
625
|
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
625
626
|
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
626
|
-
iconColor?: string | boolean | undefined;
|
627
627
|
hint?: string | undefined;
|
628
628
|
hideDetails?: boolean | "auto" | undefined;
|
629
629
|
} & {
|
@@ -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>;
|