vuetify 3.5.12 → 3.5.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/dist/json/attributes.json +160 -160
- package/dist/json/importMap-labs.json +10 -10
- package/dist/json/importMap.json +124 -124
- package/dist/json/web-types.json +161 -161
- package/dist/vuetify-labs.css +2164 -2150
- package/dist/vuetify-labs.d.ts +993 -845
- package/dist/vuetify-labs.esm.js +91 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +91 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +745 -736
- package/dist/vuetify.d.ts +789 -669
- package/dist/vuetify.esm.js +86 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +86 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +122 -120
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +2 -0
- package/lib/blueprints/md1.d.mts +2 -0
- package/lib/blueprints/md2.d.mts +2 -0
- package/lib/blueprints/md3.d.mts +2 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +34 -28
- package/lib/components/VBtn/VBtn.mjs +2 -0
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VChip/VChip.mjs +1 -0
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +6 -0
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +34 -28
- package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +9 -2
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VField/VField.mjs +29 -3
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/index.d.mts +9 -3
- package/lib/components/VFileInput/VFileInput.mjs +2 -2
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +51 -23
- package/lib/components/VList/VListItem.css +3 -0
- package/lib/components/VList/VListItem.sass +4 -0
- package/lib/components/VOtpInput/VOtpInput.mjs +1 -1
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -3
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +6 -0
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +34 -28
- package/lib/components/VSwitch/VSwitch.css +6 -0
- package/lib/components/VSwitch/VSwitch.sass +7 -0
- package/lib/components/VSwitch/_variables.scss +1 -0
- package/lib/components/VTextField/index.d.mts +88 -46
- package/lib/components/VTextarea/index.d.mts +54 -26
- package/lib/components/index.d.mts +764 -650
- package/lib/composables/date/DateAdapter.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +14 -0
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/router.mjs +2 -2
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +44 -38
- package/lib/labs/VEmptyState/VEmptyState.css +4 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs +6 -1
- package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -1
- package/lib/labs/VEmptyState/VEmptyState.sass +4 -0
- package/lib/labs/VEmptyState/_variables.scss +1 -0
- package/lib/labs/VNumberInput/VNumberInput.css +1 -0
- package/lib/labs/VNumberInput/VNumberInput.mjs +0 -4
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/VNumberInput.sass +1 -0
- package/lib/labs/VNumberInput/index.d.mts +51 -23
- package/lib/labs/components.d.mts +50 -22
- package/package.json +2 -2
|
@@ -2727,391 +2727,6 @@ interface LoaderSlotProps {
|
|
|
2727
2727
|
isActive: boolean;
|
|
2728
2728
|
}
|
|
2729
2729
|
|
|
2730
|
-
interface DefaultInputSlot {
|
|
2731
|
-
isActive: Ref<boolean>;
|
|
2732
|
-
isFocused: Ref<boolean>;
|
|
2733
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
2734
|
-
focus: () => void;
|
|
2735
|
-
blur: () => void;
|
|
2736
|
-
}
|
|
2737
|
-
interface VFieldSlot extends DefaultInputSlot {
|
|
2738
|
-
props: Record<string, unknown>;
|
|
2739
|
-
}
|
|
2740
|
-
type VFieldSlots = {
|
|
2741
|
-
clear: never;
|
|
2742
|
-
'prepend-inner': DefaultInputSlot;
|
|
2743
|
-
'append-inner': DefaultInputSlot;
|
|
2744
|
-
label: DefaultInputSlot & {
|
|
2745
|
-
label: string | undefined;
|
|
2746
|
-
props: Record<string, any>;
|
|
2747
|
-
};
|
|
2748
|
-
loader: LoaderSlotProps;
|
|
2749
|
-
default: VFieldSlot;
|
|
2750
|
-
};
|
|
2751
|
-
declare const VField: {
|
|
2752
|
-
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
2753
|
-
flat: boolean;
|
|
2754
|
-
reverse: boolean;
|
|
2755
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
2756
|
-
error: boolean;
|
|
2757
|
-
active: boolean;
|
|
2758
|
-
style: vue.StyleValue;
|
|
2759
|
-
disabled: boolean;
|
|
2760
|
-
focused: boolean;
|
|
2761
|
-
tile: boolean;
|
|
2762
|
-
clearIcon: IconValue;
|
|
2763
|
-
clearable: boolean;
|
|
2764
|
-
dirty: boolean;
|
|
2765
|
-
persistentClear: boolean;
|
|
2766
|
-
singleLine: boolean;
|
|
2767
|
-
} & {
|
|
2768
|
-
id?: string | undefined;
|
|
2769
|
-
color?: string | undefined;
|
|
2770
|
-
loading?: string | boolean | undefined;
|
|
2771
|
-
label?: string | undefined;
|
|
2772
|
-
class?: any;
|
|
2773
|
-
theme?: string | undefined;
|
|
2774
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2775
|
-
rounded?: string | number | boolean | undefined;
|
|
2776
|
-
bgColor?: string | undefined;
|
|
2777
|
-
baseColor?: string | undefined;
|
|
2778
|
-
appendInnerIcon?: IconValue | undefined;
|
|
2779
|
-
prependInnerIcon?: IconValue | undefined;
|
|
2780
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2781
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2782
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2783
|
-
centerAffix?: boolean | undefined;
|
|
2784
|
-
} & {
|
|
2785
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2786
|
-
}, {
|
|
2787
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
2788
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
2789
|
-
'update:focused': (focused: boolean) => true;
|
|
2790
|
-
'update:modelValue': (value: any) => true;
|
|
2791
|
-
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
2792
|
-
flat: boolean;
|
|
2793
|
-
reverse: boolean;
|
|
2794
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
2795
|
-
error: boolean;
|
|
2796
|
-
active: boolean;
|
|
2797
|
-
style: vue.StyleValue;
|
|
2798
|
-
disabled: boolean;
|
|
2799
|
-
focused: boolean;
|
|
2800
|
-
tile: boolean;
|
|
2801
|
-
clearIcon: IconValue;
|
|
2802
|
-
clearable: boolean;
|
|
2803
|
-
dirty: boolean;
|
|
2804
|
-
persistentClear: boolean;
|
|
2805
|
-
singleLine: boolean;
|
|
2806
|
-
} & {
|
|
2807
|
-
id?: string | undefined;
|
|
2808
|
-
color?: string | undefined;
|
|
2809
|
-
loading?: string | boolean | undefined;
|
|
2810
|
-
label?: string | undefined;
|
|
2811
|
-
class?: any;
|
|
2812
|
-
theme?: string | undefined;
|
|
2813
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2814
|
-
rounded?: string | number | boolean | undefined;
|
|
2815
|
-
bgColor?: string | undefined;
|
|
2816
|
-
baseColor?: string | undefined;
|
|
2817
|
-
appendInnerIcon?: IconValue | undefined;
|
|
2818
|
-
prependInnerIcon?: IconValue | undefined;
|
|
2819
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2820
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2821
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2822
|
-
centerAffix?: boolean | undefined;
|
|
2823
|
-
} & {
|
|
2824
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2825
|
-
}, {
|
|
2826
|
-
flat: boolean;
|
|
2827
|
-
reverse: boolean;
|
|
2828
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
2829
|
-
error: boolean;
|
|
2830
|
-
active: boolean;
|
|
2831
|
-
style: vue.StyleValue;
|
|
2832
|
-
disabled: boolean;
|
|
2833
|
-
focused: boolean;
|
|
2834
|
-
rounded: string | number | boolean;
|
|
2835
|
-
tile: boolean;
|
|
2836
|
-
clearIcon: IconValue;
|
|
2837
|
-
centerAffix: boolean;
|
|
2838
|
-
clearable: boolean;
|
|
2839
|
-
dirty: boolean;
|
|
2840
|
-
persistentClear: boolean;
|
|
2841
|
-
singleLine: boolean;
|
|
2842
|
-
}, true, {}, vue.SlotsType<Partial<{
|
|
2843
|
-
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2844
|
-
[key: string]: any;
|
|
2845
|
-
}>[];
|
|
2846
|
-
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2847
|
-
[key: string]: any;
|
|
2848
|
-
}>[];
|
|
2849
|
-
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2850
|
-
[key: string]: any;
|
|
2851
|
-
}>[];
|
|
2852
|
-
label: (arg: DefaultInputSlot & {
|
|
2853
|
-
label: string | undefined;
|
|
2854
|
-
props: Record<string, any>;
|
|
2855
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2856
|
-
[key: string]: any;
|
|
2857
|
-
}>[];
|
|
2858
|
-
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2859
|
-
[key: string]: any;
|
|
2860
|
-
}>[];
|
|
2861
|
-
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2862
|
-
[key: string]: any;
|
|
2863
|
-
}>[];
|
|
2864
|
-
}>>, {
|
|
2865
|
-
P: {};
|
|
2866
|
-
B: {};
|
|
2867
|
-
D: {};
|
|
2868
|
-
C: {};
|
|
2869
|
-
M: {};
|
|
2870
|
-
Defaults: {};
|
|
2871
|
-
}, {
|
|
2872
|
-
flat: boolean;
|
|
2873
|
-
reverse: boolean;
|
|
2874
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
2875
|
-
error: boolean;
|
|
2876
|
-
active: boolean;
|
|
2877
|
-
style: vue.StyleValue;
|
|
2878
|
-
disabled: boolean;
|
|
2879
|
-
focused: boolean;
|
|
2880
|
-
tile: boolean;
|
|
2881
|
-
clearIcon: IconValue;
|
|
2882
|
-
clearable: boolean;
|
|
2883
|
-
dirty: boolean;
|
|
2884
|
-
persistentClear: boolean;
|
|
2885
|
-
singleLine: boolean;
|
|
2886
|
-
} & {
|
|
2887
|
-
id?: string | undefined;
|
|
2888
|
-
color?: string | undefined;
|
|
2889
|
-
loading?: string | boolean | undefined;
|
|
2890
|
-
label?: string | undefined;
|
|
2891
|
-
class?: any;
|
|
2892
|
-
theme?: string | undefined;
|
|
2893
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2894
|
-
rounded?: string | number | boolean | undefined;
|
|
2895
|
-
bgColor?: string | undefined;
|
|
2896
|
-
baseColor?: string | undefined;
|
|
2897
|
-
appendInnerIcon?: IconValue | undefined;
|
|
2898
|
-
prependInnerIcon?: IconValue | undefined;
|
|
2899
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2900
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2901
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2902
|
-
centerAffix?: boolean | undefined;
|
|
2903
|
-
} & {
|
|
2904
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2905
|
-
}, {
|
|
2906
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
2907
|
-
}, {}, {}, {}, {
|
|
2908
|
-
flat: boolean;
|
|
2909
|
-
reverse: boolean;
|
|
2910
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
2911
|
-
error: boolean;
|
|
2912
|
-
active: boolean;
|
|
2913
|
-
style: vue.StyleValue;
|
|
2914
|
-
disabled: boolean;
|
|
2915
|
-
focused: boolean;
|
|
2916
|
-
rounded: string | number | boolean;
|
|
2917
|
-
tile: boolean;
|
|
2918
|
-
clearIcon: IconValue;
|
|
2919
|
-
centerAffix: boolean;
|
|
2920
|
-
clearable: boolean;
|
|
2921
|
-
dirty: boolean;
|
|
2922
|
-
persistentClear: boolean;
|
|
2923
|
-
singleLine: boolean;
|
|
2924
|
-
}>;
|
|
2925
|
-
__isFragment?: undefined;
|
|
2926
|
-
__isTeleport?: undefined;
|
|
2927
|
-
__isSuspense?: undefined;
|
|
2928
|
-
} & vue.ComponentOptionsBase<{
|
|
2929
|
-
flat: boolean;
|
|
2930
|
-
reverse: boolean;
|
|
2931
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
2932
|
-
error: boolean;
|
|
2933
|
-
active: boolean;
|
|
2934
|
-
style: vue.StyleValue;
|
|
2935
|
-
disabled: boolean;
|
|
2936
|
-
focused: boolean;
|
|
2937
|
-
tile: boolean;
|
|
2938
|
-
clearIcon: IconValue;
|
|
2939
|
-
clearable: boolean;
|
|
2940
|
-
dirty: boolean;
|
|
2941
|
-
persistentClear: boolean;
|
|
2942
|
-
singleLine: boolean;
|
|
2943
|
-
} & {
|
|
2944
|
-
id?: string | undefined;
|
|
2945
|
-
color?: string | undefined;
|
|
2946
|
-
loading?: string | boolean | undefined;
|
|
2947
|
-
label?: string | undefined;
|
|
2948
|
-
class?: any;
|
|
2949
|
-
theme?: string | undefined;
|
|
2950
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
2951
|
-
rounded?: string | number | boolean | undefined;
|
|
2952
|
-
bgColor?: string | undefined;
|
|
2953
|
-
baseColor?: string | undefined;
|
|
2954
|
-
appendInnerIcon?: IconValue | undefined;
|
|
2955
|
-
prependInnerIcon?: IconValue | undefined;
|
|
2956
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2957
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2958
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
2959
|
-
centerAffix?: boolean | undefined;
|
|
2960
|
-
} & {
|
|
2961
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
2962
|
-
}, {
|
|
2963
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
2964
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
2965
|
-
'update:focused': (focused: boolean) => true;
|
|
2966
|
-
'update:modelValue': (value: any) => true;
|
|
2967
|
-
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
2968
|
-
flat: boolean;
|
|
2969
|
-
reverse: boolean;
|
|
2970
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
2971
|
-
error: boolean;
|
|
2972
|
-
active: boolean;
|
|
2973
|
-
style: vue.StyleValue;
|
|
2974
|
-
disabled: boolean;
|
|
2975
|
-
focused: boolean;
|
|
2976
|
-
rounded: string | number | boolean;
|
|
2977
|
-
tile: boolean;
|
|
2978
|
-
clearIcon: IconValue;
|
|
2979
|
-
centerAffix: boolean;
|
|
2980
|
-
clearable: boolean;
|
|
2981
|
-
dirty: boolean;
|
|
2982
|
-
persistentClear: boolean;
|
|
2983
|
-
singleLine: boolean;
|
|
2984
|
-
}, {}, string, vue.SlotsType<Partial<{
|
|
2985
|
-
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2986
|
-
[key: string]: any;
|
|
2987
|
-
}>[];
|
|
2988
|
-
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2989
|
-
[key: string]: any;
|
|
2990
|
-
}>[];
|
|
2991
|
-
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2992
|
-
[key: string]: any;
|
|
2993
|
-
}>[];
|
|
2994
|
-
label: (arg: DefaultInputSlot & {
|
|
2995
|
-
label: string | undefined;
|
|
2996
|
-
props: Record<string, any>;
|
|
2997
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
2998
|
-
[key: string]: any;
|
|
2999
|
-
}>[];
|
|
3000
|
-
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3001
|
-
[key: string]: any;
|
|
3002
|
-
}>[];
|
|
3003
|
-
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3004
|
-
[key: string]: any;
|
|
3005
|
-
}>[];
|
|
3006
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
3007
|
-
modelValue?: T | undefined;
|
|
3008
|
-
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
3009
|
-
}, slots: VFieldSlots) => GenericProps<{
|
|
3010
|
-
modelValue?: T | undefined;
|
|
3011
|
-
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
3012
|
-
}, VFieldSlots>) & FilterPropsOptions<{
|
|
3013
|
-
theme: StringConstructor;
|
|
3014
|
-
rounded: {
|
|
3015
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3016
|
-
default: undefined;
|
|
3017
|
-
};
|
|
3018
|
-
tile: BooleanConstructor;
|
|
3019
|
-
loading: (StringConstructor | BooleanConstructor)[];
|
|
3020
|
-
class: PropType<any>;
|
|
3021
|
-
style: {
|
|
3022
|
-
type: PropType<vue.StyleValue>;
|
|
3023
|
-
default: null;
|
|
3024
|
-
};
|
|
3025
|
-
appendInnerIcon: PropType<IconValue>;
|
|
3026
|
-
bgColor: StringConstructor;
|
|
3027
|
-
clearable: BooleanConstructor;
|
|
3028
|
-
clearIcon: {
|
|
3029
|
-
type: PropType<IconValue>;
|
|
3030
|
-
default: string;
|
|
3031
|
-
};
|
|
3032
|
-
active: BooleanConstructor;
|
|
3033
|
-
centerAffix: {
|
|
3034
|
-
type: BooleanConstructor;
|
|
3035
|
-
default: undefined;
|
|
3036
|
-
};
|
|
3037
|
-
color: StringConstructor;
|
|
3038
|
-
baseColor: StringConstructor;
|
|
3039
|
-
dirty: BooleanConstructor;
|
|
3040
|
-
disabled: {
|
|
3041
|
-
type: BooleanConstructor;
|
|
3042
|
-
default: null;
|
|
3043
|
-
};
|
|
3044
|
-
error: BooleanConstructor;
|
|
3045
|
-
flat: BooleanConstructor;
|
|
3046
|
-
label: StringConstructor;
|
|
3047
|
-
persistentClear: BooleanConstructor;
|
|
3048
|
-
prependInnerIcon: PropType<IconValue>;
|
|
3049
|
-
reverse: BooleanConstructor;
|
|
3050
|
-
singleLine: BooleanConstructor;
|
|
3051
|
-
variant: {
|
|
3052
|
-
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
3053
|
-
default: string;
|
|
3054
|
-
validator: (v: any) => boolean;
|
|
3055
|
-
};
|
|
3056
|
-
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
3057
|
-
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
3058
|
-
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
3059
|
-
focused: BooleanConstructor;
|
|
3060
|
-
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
3061
|
-
id: StringConstructor;
|
|
3062
|
-
}, vue.ExtractPropTypes<{
|
|
3063
|
-
theme: StringConstructor;
|
|
3064
|
-
rounded: {
|
|
3065
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3066
|
-
default: undefined;
|
|
3067
|
-
};
|
|
3068
|
-
tile: BooleanConstructor;
|
|
3069
|
-
loading: (StringConstructor | BooleanConstructor)[];
|
|
3070
|
-
class: PropType<any>;
|
|
3071
|
-
style: {
|
|
3072
|
-
type: PropType<vue.StyleValue>;
|
|
3073
|
-
default: null;
|
|
3074
|
-
};
|
|
3075
|
-
appendInnerIcon: PropType<IconValue>;
|
|
3076
|
-
bgColor: StringConstructor;
|
|
3077
|
-
clearable: BooleanConstructor;
|
|
3078
|
-
clearIcon: {
|
|
3079
|
-
type: PropType<IconValue>;
|
|
3080
|
-
default: string;
|
|
3081
|
-
};
|
|
3082
|
-
active: BooleanConstructor;
|
|
3083
|
-
centerAffix: {
|
|
3084
|
-
type: BooleanConstructor;
|
|
3085
|
-
default: undefined;
|
|
3086
|
-
};
|
|
3087
|
-
color: StringConstructor;
|
|
3088
|
-
baseColor: StringConstructor;
|
|
3089
|
-
dirty: BooleanConstructor;
|
|
3090
|
-
disabled: {
|
|
3091
|
-
type: BooleanConstructor;
|
|
3092
|
-
default: null;
|
|
3093
|
-
};
|
|
3094
|
-
error: BooleanConstructor;
|
|
3095
|
-
flat: BooleanConstructor;
|
|
3096
|
-
label: StringConstructor;
|
|
3097
|
-
persistentClear: BooleanConstructor;
|
|
3098
|
-
prependInnerIcon: PropType<IconValue>;
|
|
3099
|
-
reverse: BooleanConstructor;
|
|
3100
|
-
singleLine: BooleanConstructor;
|
|
3101
|
-
variant: {
|
|
3102
|
-
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
3103
|
-
default: string;
|
|
3104
|
-
validator: (v: any) => boolean;
|
|
3105
|
-
};
|
|
3106
|
-
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
3107
|
-
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
3108
|
-
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
3109
|
-
focused: BooleanConstructor;
|
|
3110
|
-
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
3111
|
-
id: StringConstructor;
|
|
3112
|
-
}>>;
|
|
3113
|
-
type VField = InstanceType<typeof VField>;
|
|
3114
|
-
|
|
3115
2730
|
type ValidationResult = string | boolean;
|
|
3116
2731
|
type ValidationRule$1 = ValidationResult | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>);
|
|
3117
2732
|
type ValidateOnValue = 'blur' | 'input' | 'submit';
|
|
@@ -3743,6 +3358,397 @@ declare const VInput: {
|
|
|
3743
3358
|
}>>;
|
|
3744
3359
|
type VInput = InstanceType<typeof VInput>;
|
|
3745
3360
|
|
|
3361
|
+
interface DefaultInputSlot {
|
|
3362
|
+
isActive: Ref<boolean>;
|
|
3363
|
+
isFocused: Ref<boolean>;
|
|
3364
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3365
|
+
focus: () => void;
|
|
3366
|
+
blur: () => void;
|
|
3367
|
+
}
|
|
3368
|
+
interface VFieldSlot extends DefaultInputSlot {
|
|
3369
|
+
props: Record<string, unknown>;
|
|
3370
|
+
}
|
|
3371
|
+
type VFieldSlots = {
|
|
3372
|
+
clear: DefaultInputSlot & {
|
|
3373
|
+
props: Record<string, any>;
|
|
3374
|
+
};
|
|
3375
|
+
'prepend-inner': DefaultInputSlot;
|
|
3376
|
+
'append-inner': DefaultInputSlot;
|
|
3377
|
+
label: DefaultInputSlot & {
|
|
3378
|
+
label: string | undefined;
|
|
3379
|
+
props: Record<string, any>;
|
|
3380
|
+
};
|
|
3381
|
+
loader: LoaderSlotProps;
|
|
3382
|
+
default: VFieldSlot;
|
|
3383
|
+
};
|
|
3384
|
+
declare const VField: {
|
|
3385
|
+
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
3386
|
+
flat: boolean;
|
|
3387
|
+
reverse: boolean;
|
|
3388
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3389
|
+
error: boolean;
|
|
3390
|
+
active: boolean;
|
|
3391
|
+
style: vue.StyleValue;
|
|
3392
|
+
disabled: boolean;
|
|
3393
|
+
focused: boolean;
|
|
3394
|
+
tile: boolean;
|
|
3395
|
+
clearIcon: IconValue;
|
|
3396
|
+
clearable: boolean;
|
|
3397
|
+
dirty: boolean;
|
|
3398
|
+
persistentClear: boolean;
|
|
3399
|
+
singleLine: boolean;
|
|
3400
|
+
} & {
|
|
3401
|
+
id?: string | undefined;
|
|
3402
|
+
color?: string | undefined;
|
|
3403
|
+
loading?: string | boolean | undefined;
|
|
3404
|
+
label?: string | undefined;
|
|
3405
|
+
class?: any;
|
|
3406
|
+
theme?: string | undefined;
|
|
3407
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3408
|
+
rounded?: string | number | boolean | undefined;
|
|
3409
|
+
bgColor?: string | undefined;
|
|
3410
|
+
baseColor?: string | undefined;
|
|
3411
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3412
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3413
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3414
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3415
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3416
|
+
centerAffix?: boolean | undefined;
|
|
3417
|
+
} & {
|
|
3418
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3419
|
+
}, {
|
|
3420
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3421
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
3422
|
+
'update:focused': (focused: boolean) => true;
|
|
3423
|
+
'update:modelValue': (value: any) => true;
|
|
3424
|
+
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
3425
|
+
flat: boolean;
|
|
3426
|
+
reverse: boolean;
|
|
3427
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3428
|
+
error: boolean;
|
|
3429
|
+
active: boolean;
|
|
3430
|
+
style: vue.StyleValue;
|
|
3431
|
+
disabled: boolean;
|
|
3432
|
+
focused: boolean;
|
|
3433
|
+
tile: boolean;
|
|
3434
|
+
clearIcon: IconValue;
|
|
3435
|
+
clearable: boolean;
|
|
3436
|
+
dirty: boolean;
|
|
3437
|
+
persistentClear: boolean;
|
|
3438
|
+
singleLine: boolean;
|
|
3439
|
+
} & {
|
|
3440
|
+
id?: string | undefined;
|
|
3441
|
+
color?: string | undefined;
|
|
3442
|
+
loading?: string | boolean | undefined;
|
|
3443
|
+
label?: string | undefined;
|
|
3444
|
+
class?: any;
|
|
3445
|
+
theme?: string | undefined;
|
|
3446
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3447
|
+
rounded?: string | number | boolean | undefined;
|
|
3448
|
+
bgColor?: string | undefined;
|
|
3449
|
+
baseColor?: string | undefined;
|
|
3450
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3451
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3452
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3453
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3454
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3455
|
+
centerAffix?: boolean | undefined;
|
|
3456
|
+
} & {
|
|
3457
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3458
|
+
}, {
|
|
3459
|
+
flat: boolean;
|
|
3460
|
+
reverse: boolean;
|
|
3461
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3462
|
+
error: boolean;
|
|
3463
|
+
active: boolean;
|
|
3464
|
+
style: vue.StyleValue;
|
|
3465
|
+
disabled: boolean;
|
|
3466
|
+
focused: boolean;
|
|
3467
|
+
rounded: string | number | boolean;
|
|
3468
|
+
tile: boolean;
|
|
3469
|
+
clearIcon: IconValue;
|
|
3470
|
+
centerAffix: boolean;
|
|
3471
|
+
clearable: boolean;
|
|
3472
|
+
dirty: boolean;
|
|
3473
|
+
persistentClear: boolean;
|
|
3474
|
+
singleLine: boolean;
|
|
3475
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
3476
|
+
clear: (arg: DefaultInputSlot & {
|
|
3477
|
+
props: Record<string, any>;
|
|
3478
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3479
|
+
[key: string]: any;
|
|
3480
|
+
}>[];
|
|
3481
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3482
|
+
[key: string]: any;
|
|
3483
|
+
}>[];
|
|
3484
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3485
|
+
[key: string]: any;
|
|
3486
|
+
}>[];
|
|
3487
|
+
label: (arg: DefaultInputSlot & {
|
|
3488
|
+
label: string | undefined;
|
|
3489
|
+
props: Record<string, any>;
|
|
3490
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3491
|
+
[key: string]: any;
|
|
3492
|
+
}>[];
|
|
3493
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3494
|
+
[key: string]: any;
|
|
3495
|
+
}>[];
|
|
3496
|
+
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3497
|
+
[key: string]: any;
|
|
3498
|
+
}>[];
|
|
3499
|
+
}>>, {
|
|
3500
|
+
P: {};
|
|
3501
|
+
B: {};
|
|
3502
|
+
D: {};
|
|
3503
|
+
C: {};
|
|
3504
|
+
M: {};
|
|
3505
|
+
Defaults: {};
|
|
3506
|
+
}, {
|
|
3507
|
+
flat: boolean;
|
|
3508
|
+
reverse: boolean;
|
|
3509
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3510
|
+
error: boolean;
|
|
3511
|
+
active: boolean;
|
|
3512
|
+
style: vue.StyleValue;
|
|
3513
|
+
disabled: boolean;
|
|
3514
|
+
focused: boolean;
|
|
3515
|
+
tile: boolean;
|
|
3516
|
+
clearIcon: IconValue;
|
|
3517
|
+
clearable: boolean;
|
|
3518
|
+
dirty: boolean;
|
|
3519
|
+
persistentClear: boolean;
|
|
3520
|
+
singleLine: boolean;
|
|
3521
|
+
} & {
|
|
3522
|
+
id?: string | undefined;
|
|
3523
|
+
color?: string | undefined;
|
|
3524
|
+
loading?: string | boolean | undefined;
|
|
3525
|
+
label?: string | undefined;
|
|
3526
|
+
class?: any;
|
|
3527
|
+
theme?: string | undefined;
|
|
3528
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3529
|
+
rounded?: string | number | boolean | undefined;
|
|
3530
|
+
bgColor?: string | undefined;
|
|
3531
|
+
baseColor?: string | undefined;
|
|
3532
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3533
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3534
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3535
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3536
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3537
|
+
centerAffix?: boolean | undefined;
|
|
3538
|
+
} & {
|
|
3539
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3540
|
+
}, {
|
|
3541
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3542
|
+
}, {}, {}, {}, {
|
|
3543
|
+
flat: boolean;
|
|
3544
|
+
reverse: boolean;
|
|
3545
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3546
|
+
error: boolean;
|
|
3547
|
+
active: boolean;
|
|
3548
|
+
style: vue.StyleValue;
|
|
3549
|
+
disabled: boolean;
|
|
3550
|
+
focused: boolean;
|
|
3551
|
+
rounded: string | number | boolean;
|
|
3552
|
+
tile: boolean;
|
|
3553
|
+
clearIcon: IconValue;
|
|
3554
|
+
centerAffix: boolean;
|
|
3555
|
+
clearable: boolean;
|
|
3556
|
+
dirty: boolean;
|
|
3557
|
+
persistentClear: boolean;
|
|
3558
|
+
singleLine: boolean;
|
|
3559
|
+
}>;
|
|
3560
|
+
__isFragment?: undefined;
|
|
3561
|
+
__isTeleport?: undefined;
|
|
3562
|
+
__isSuspense?: undefined;
|
|
3563
|
+
} & vue.ComponentOptionsBase<{
|
|
3564
|
+
flat: boolean;
|
|
3565
|
+
reverse: boolean;
|
|
3566
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3567
|
+
error: boolean;
|
|
3568
|
+
active: boolean;
|
|
3569
|
+
style: vue.StyleValue;
|
|
3570
|
+
disabled: boolean;
|
|
3571
|
+
focused: boolean;
|
|
3572
|
+
tile: boolean;
|
|
3573
|
+
clearIcon: IconValue;
|
|
3574
|
+
clearable: boolean;
|
|
3575
|
+
dirty: boolean;
|
|
3576
|
+
persistentClear: boolean;
|
|
3577
|
+
singleLine: boolean;
|
|
3578
|
+
} & {
|
|
3579
|
+
id?: string | undefined;
|
|
3580
|
+
color?: string | undefined;
|
|
3581
|
+
loading?: string | boolean | undefined;
|
|
3582
|
+
label?: string | undefined;
|
|
3583
|
+
class?: any;
|
|
3584
|
+
theme?: string | undefined;
|
|
3585
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3586
|
+
rounded?: string | number | boolean | undefined;
|
|
3587
|
+
bgColor?: string | undefined;
|
|
3588
|
+
baseColor?: string | undefined;
|
|
3589
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3590
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3591
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3592
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3593
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3594
|
+
centerAffix?: boolean | undefined;
|
|
3595
|
+
} & {
|
|
3596
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3597
|
+
}, {
|
|
3598
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3599
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
3600
|
+
'update:focused': (focused: boolean) => true;
|
|
3601
|
+
'update:modelValue': (value: any) => true;
|
|
3602
|
+
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
3603
|
+
flat: boolean;
|
|
3604
|
+
reverse: boolean;
|
|
3605
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3606
|
+
error: boolean;
|
|
3607
|
+
active: boolean;
|
|
3608
|
+
style: vue.StyleValue;
|
|
3609
|
+
disabled: boolean;
|
|
3610
|
+
focused: boolean;
|
|
3611
|
+
rounded: string | number | boolean;
|
|
3612
|
+
tile: boolean;
|
|
3613
|
+
clearIcon: IconValue;
|
|
3614
|
+
centerAffix: boolean;
|
|
3615
|
+
clearable: boolean;
|
|
3616
|
+
dirty: boolean;
|
|
3617
|
+
persistentClear: boolean;
|
|
3618
|
+
singleLine: boolean;
|
|
3619
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
3620
|
+
clear: (arg: DefaultInputSlot & {
|
|
3621
|
+
props: Record<string, any>;
|
|
3622
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3623
|
+
[key: string]: any;
|
|
3624
|
+
}>[];
|
|
3625
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3626
|
+
[key: string]: any;
|
|
3627
|
+
}>[];
|
|
3628
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3629
|
+
[key: string]: any;
|
|
3630
|
+
}>[];
|
|
3631
|
+
label: (arg: DefaultInputSlot & {
|
|
3632
|
+
label: string | undefined;
|
|
3633
|
+
props: Record<string, any>;
|
|
3634
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3635
|
+
[key: string]: any;
|
|
3636
|
+
}>[];
|
|
3637
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3638
|
+
[key: string]: any;
|
|
3639
|
+
}>[];
|
|
3640
|
+
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3641
|
+
[key: string]: any;
|
|
3642
|
+
}>[];
|
|
3643
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
3644
|
+
modelValue?: T | undefined;
|
|
3645
|
+
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
3646
|
+
}, slots: VFieldSlots) => GenericProps<{
|
|
3647
|
+
modelValue?: T | undefined;
|
|
3648
|
+
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
3649
|
+
}, VFieldSlots>) & FilterPropsOptions<{
|
|
3650
|
+
theme: StringConstructor;
|
|
3651
|
+
rounded: {
|
|
3652
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3653
|
+
default: undefined;
|
|
3654
|
+
};
|
|
3655
|
+
tile: BooleanConstructor;
|
|
3656
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
3657
|
+
class: PropType<any>;
|
|
3658
|
+
style: {
|
|
3659
|
+
type: PropType<vue.StyleValue>;
|
|
3660
|
+
default: null;
|
|
3661
|
+
};
|
|
3662
|
+
appendInnerIcon: PropType<IconValue>;
|
|
3663
|
+
bgColor: StringConstructor;
|
|
3664
|
+
clearable: BooleanConstructor;
|
|
3665
|
+
clearIcon: {
|
|
3666
|
+
type: PropType<IconValue>;
|
|
3667
|
+
default: string;
|
|
3668
|
+
};
|
|
3669
|
+
active: BooleanConstructor;
|
|
3670
|
+
centerAffix: {
|
|
3671
|
+
type: BooleanConstructor;
|
|
3672
|
+
default: undefined;
|
|
3673
|
+
};
|
|
3674
|
+
color: StringConstructor;
|
|
3675
|
+
baseColor: StringConstructor;
|
|
3676
|
+
dirty: BooleanConstructor;
|
|
3677
|
+
disabled: {
|
|
3678
|
+
type: BooleanConstructor;
|
|
3679
|
+
default: null;
|
|
3680
|
+
};
|
|
3681
|
+
error: BooleanConstructor;
|
|
3682
|
+
flat: BooleanConstructor;
|
|
3683
|
+
label: StringConstructor;
|
|
3684
|
+
persistentClear: BooleanConstructor;
|
|
3685
|
+
prependInnerIcon: PropType<IconValue>;
|
|
3686
|
+
reverse: BooleanConstructor;
|
|
3687
|
+
singleLine: BooleanConstructor;
|
|
3688
|
+
variant: {
|
|
3689
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
3690
|
+
default: string;
|
|
3691
|
+
validator: (v: any) => boolean;
|
|
3692
|
+
};
|
|
3693
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
3694
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
3695
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
3696
|
+
focused: BooleanConstructor;
|
|
3697
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
3698
|
+
id: StringConstructor;
|
|
3699
|
+
}, vue.ExtractPropTypes<{
|
|
3700
|
+
theme: StringConstructor;
|
|
3701
|
+
rounded: {
|
|
3702
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3703
|
+
default: undefined;
|
|
3704
|
+
};
|
|
3705
|
+
tile: BooleanConstructor;
|
|
3706
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
3707
|
+
class: PropType<any>;
|
|
3708
|
+
style: {
|
|
3709
|
+
type: PropType<vue.StyleValue>;
|
|
3710
|
+
default: null;
|
|
3711
|
+
};
|
|
3712
|
+
appendInnerIcon: PropType<IconValue>;
|
|
3713
|
+
bgColor: StringConstructor;
|
|
3714
|
+
clearable: BooleanConstructor;
|
|
3715
|
+
clearIcon: {
|
|
3716
|
+
type: PropType<IconValue>;
|
|
3717
|
+
default: string;
|
|
3718
|
+
};
|
|
3719
|
+
active: BooleanConstructor;
|
|
3720
|
+
centerAffix: {
|
|
3721
|
+
type: BooleanConstructor;
|
|
3722
|
+
default: undefined;
|
|
3723
|
+
};
|
|
3724
|
+
color: StringConstructor;
|
|
3725
|
+
baseColor: StringConstructor;
|
|
3726
|
+
dirty: BooleanConstructor;
|
|
3727
|
+
disabled: {
|
|
3728
|
+
type: BooleanConstructor;
|
|
3729
|
+
default: null;
|
|
3730
|
+
};
|
|
3731
|
+
error: BooleanConstructor;
|
|
3732
|
+
flat: BooleanConstructor;
|
|
3733
|
+
label: StringConstructor;
|
|
3734
|
+
persistentClear: BooleanConstructor;
|
|
3735
|
+
prependInnerIcon: PropType<IconValue>;
|
|
3736
|
+
reverse: BooleanConstructor;
|
|
3737
|
+
singleLine: BooleanConstructor;
|
|
3738
|
+
variant: {
|
|
3739
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
3740
|
+
default: string;
|
|
3741
|
+
validator: (v: any) => boolean;
|
|
3742
|
+
};
|
|
3743
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
3744
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
3745
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
3746
|
+
focused: BooleanConstructor;
|
|
3747
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
3748
|
+
id: StringConstructor;
|
|
3749
|
+
}>>;
|
|
3750
|
+
type VField = InstanceType<typeof VField>;
|
|
3751
|
+
|
|
3746
3752
|
/**
|
|
3747
3753
|
* - match without highlight
|
|
3748
3754
|
* - single match (index), length already known
|
|
@@ -5618,7 +5624,9 @@ declare const VAutocomplete: {
|
|
|
5618
5624
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
5619
5625
|
[key: string]: any;
|
|
5620
5626
|
}>[];
|
|
5621
|
-
clear: (
|
|
5627
|
+
clear: (arg: DefaultInputSlot & {
|
|
5628
|
+
props: Record<string, any>;
|
|
5629
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
5622
5630
|
[key: string]: any;
|
|
5623
5631
|
}>[];
|
|
5624
5632
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -6926,7 +6934,9 @@ declare const VAutocomplete: {
|
|
|
6926
6934
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6927
6935
|
[key: string]: any;
|
|
6928
6936
|
}>[];
|
|
6929
|
-
clear: (
|
|
6937
|
+
clear: (arg: DefaultInputSlot & {
|
|
6938
|
+
props: Record<string, any>;
|
|
6939
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
6930
6940
|
[key: string]: any;
|
|
6931
6941
|
}>[];
|
|
6932
6942
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -19309,7 +19319,9 @@ declare const VCombobox: {
|
|
|
19309
19319
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
19310
19320
|
[key: string]: any;
|
|
19311
19321
|
}>[];
|
|
19312
|
-
clear: (
|
|
19322
|
+
clear: (arg: DefaultInputSlot & {
|
|
19323
|
+
props: Record<string, any>;
|
|
19324
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
19313
19325
|
[key: string]: any;
|
|
19314
19326
|
}>[];
|
|
19315
19327
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -20617,7 +20629,9 @@ declare const VCombobox: {
|
|
|
20617
20629
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
20618
20630
|
[key: string]: any;
|
|
20619
20631
|
}>[];
|
|
20620
|
-
clear: (
|
|
20632
|
+
clear: (arg: DefaultInputSlot & {
|
|
20633
|
+
props: Record<string, any>;
|
|
20634
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
20621
20635
|
[key: string]: any;
|
|
20622
20636
|
}>[];
|
|
20623
20637
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -32073,7 +32087,7 @@ declare const VFileInput: {
|
|
|
32073
32087
|
errorMessages: string | readonly string[] | null;
|
|
32074
32088
|
maxErrors: string | number;
|
|
32075
32089
|
rules: readonly ValidationRule$1[];
|
|
32076
|
-
modelValue: File[];
|
|
32090
|
+
modelValue: File | File[];
|
|
32077
32091
|
tile: boolean;
|
|
32078
32092
|
density: Density;
|
|
32079
32093
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32120,7 +32134,9 @@ declare const VFileInput: {
|
|
|
32120
32134
|
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32121
32135
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32122
32136
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32123
|
-
clear?: ((
|
|
32137
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
32138
|
+
props: Record<string, any>;
|
|
32139
|
+
}) => vue.VNodeChild) | undefined;
|
|
32124
32140
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32125
32141
|
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32126
32142
|
label?: ((arg: DefaultInputSlot & {
|
|
@@ -32141,7 +32157,9 @@ declare const VFileInput: {
|
|
|
32141
32157
|
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32142
32158
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32143
32159
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32144
|
-
clear?: false | ((
|
|
32160
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
32161
|
+
props: Record<string, any>;
|
|
32162
|
+
}) => vue.VNodeChild) | undefined;
|
|
32145
32163
|
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32146
32164
|
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32147
32165
|
label?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32162,7 +32180,9 @@ declare const VFileInput: {
|
|
|
32162
32180
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32163
32181
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32164
32182
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32165
|
-
"v-slot:clear"?: false | ((
|
|
32183
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
32184
|
+
props: Record<string, any>;
|
|
32185
|
+
}) => vue.VNodeChild) | undefined;
|
|
32166
32186
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32167
32187
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32168
32188
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32432,7 +32452,225 @@ declare const VFileInput: {
|
|
|
32432
32452
|
errorMessages: string | readonly string[] | null;
|
|
32433
32453
|
maxErrors: string | number;
|
|
32434
32454
|
rules: readonly ValidationRule$1[];
|
|
32435
|
-
modelValue: File[];
|
|
32455
|
+
modelValue: File | File[];
|
|
32456
|
+
tile: boolean;
|
|
32457
|
+
density: Density;
|
|
32458
|
+
prependIcon: NonNullable<IconValue>;
|
|
32459
|
+
clearIcon: IconValue;
|
|
32460
|
+
hideSpinButtons: boolean;
|
|
32461
|
+
persistentHint: boolean;
|
|
32462
|
+
clearable: boolean;
|
|
32463
|
+
dirty: boolean;
|
|
32464
|
+
persistentClear: boolean;
|
|
32465
|
+
singleLine: boolean;
|
|
32466
|
+
chips: boolean;
|
|
32467
|
+
counterSizeString: string;
|
|
32468
|
+
counterString: string;
|
|
32469
|
+
showSize: boolean | 1024 | 1000;
|
|
32470
|
+
} & {
|
|
32471
|
+
id?: string | undefined;
|
|
32472
|
+
name?: string | undefined;
|
|
32473
|
+
color?: string | undefined;
|
|
32474
|
+
loading?: string | boolean | undefined;
|
|
32475
|
+
label?: string | undefined;
|
|
32476
|
+
class?: any;
|
|
32477
|
+
theme?: string | undefined;
|
|
32478
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32479
|
+
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
32480
|
+
validationValue?: any;
|
|
32481
|
+
rounded?: string | number | boolean | undefined;
|
|
32482
|
+
bgColor?: string | undefined;
|
|
32483
|
+
appendIcon?: IconValue | undefined;
|
|
32484
|
+
baseColor?: string | undefined;
|
|
32485
|
+
appendInnerIcon?: IconValue | undefined;
|
|
32486
|
+
prependInnerIcon?: IconValue | undefined;
|
|
32487
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32488
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32489
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32490
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32491
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32492
|
+
centerAffix?: boolean | undefined;
|
|
32493
|
+
hint?: string | undefined;
|
|
32494
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
32495
|
+
} & {
|
|
32496
|
+
$children?: vue.VNodeChild | {
|
|
32497
|
+
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
32498
|
+
prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32499
|
+
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32500
|
+
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32501
|
+
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32502
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
32503
|
+
props: Record<string, any>;
|
|
32504
|
+
}) => vue.VNodeChild) | undefined;
|
|
32505
|
+
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32506
|
+
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32507
|
+
label?: ((arg: DefaultInputSlot & {
|
|
32508
|
+
label: string | undefined;
|
|
32509
|
+
props: Record<string, any>;
|
|
32510
|
+
}) => vue.VNodeChild) | undefined;
|
|
32511
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
32512
|
+
counter?: (() => vue.VNodeChild) | undefined;
|
|
32513
|
+
selection?: ((arg: {
|
|
32514
|
+
fileNames: string[];
|
|
32515
|
+
totalBytes: number;
|
|
32516
|
+
totalBytesReadable: string;
|
|
32517
|
+
}) => vue.VNodeChild) | undefined;
|
|
32518
|
+
} | ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild);
|
|
32519
|
+
'v-slots'?: {
|
|
32520
|
+
default?: false | ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
32521
|
+
prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32522
|
+
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32523
|
+
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32524
|
+
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32525
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
32526
|
+
props: Record<string, any>;
|
|
32527
|
+
}) => vue.VNodeChild) | undefined;
|
|
32528
|
+
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32529
|
+
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32530
|
+
label?: false | ((arg: DefaultInputSlot & {
|
|
32531
|
+
label: string | undefined;
|
|
32532
|
+
props: Record<string, any>;
|
|
32533
|
+
}) => vue.VNodeChild) | undefined;
|
|
32534
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
32535
|
+
counter?: false | (() => vue.VNodeChild) | undefined;
|
|
32536
|
+
selection?: false | ((arg: {
|
|
32537
|
+
fileNames: string[];
|
|
32538
|
+
totalBytes: number;
|
|
32539
|
+
totalBytesReadable: string;
|
|
32540
|
+
}) => vue.VNodeChild) | undefined;
|
|
32541
|
+
} | undefined;
|
|
32542
|
+
} & {
|
|
32543
|
+
"v-slot:default"?: false | ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
32544
|
+
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32545
|
+
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32546
|
+
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32547
|
+
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32548
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
32549
|
+
props: Record<string, any>;
|
|
32550
|
+
}) => vue.VNodeChild) | undefined;
|
|
32551
|
+
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32552
|
+
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32553
|
+
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
32554
|
+
label: string | undefined;
|
|
32555
|
+
props: Record<string, any>;
|
|
32556
|
+
}) => vue.VNodeChild) | undefined;
|
|
32557
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
32558
|
+
"v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
|
|
32559
|
+
"v-slot:selection"?: false | ((arg: {
|
|
32560
|
+
fileNames: string[];
|
|
32561
|
+
totalBytes: number;
|
|
32562
|
+
totalBytesReadable: string;
|
|
32563
|
+
}) => vue.VNodeChild) | undefined;
|
|
32564
|
+
} & {
|
|
32565
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
32566
|
+
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
|
32567
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
32568
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
32569
|
+
}, {
|
|
32570
|
+
flat: boolean;
|
|
32571
|
+
reverse: boolean;
|
|
32572
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
32573
|
+
error: boolean;
|
|
32574
|
+
active: boolean;
|
|
32575
|
+
direction: "horizontal" | "vertical";
|
|
32576
|
+
style: vue.StyleValue;
|
|
32577
|
+
disabled: boolean;
|
|
32578
|
+
multiple: boolean;
|
|
32579
|
+
readonly: boolean | null;
|
|
32580
|
+
messages: string | readonly string[];
|
|
32581
|
+
counter: boolean;
|
|
32582
|
+
focused: boolean;
|
|
32583
|
+
errorMessages: string | readonly string[] | null;
|
|
32584
|
+
maxErrors: string | number;
|
|
32585
|
+
rules: readonly ValidationRule$1[];
|
|
32586
|
+
modelValue: File | File[];
|
|
32587
|
+
rounded: string | number | boolean;
|
|
32588
|
+
tile: boolean;
|
|
32589
|
+
density: Density;
|
|
32590
|
+
prependIcon: NonNullable<IconValue>;
|
|
32591
|
+
clearIcon: IconValue;
|
|
32592
|
+
centerAffix: boolean;
|
|
32593
|
+
hideSpinButtons: boolean;
|
|
32594
|
+
persistentHint: boolean;
|
|
32595
|
+
clearable: boolean;
|
|
32596
|
+
dirty: boolean;
|
|
32597
|
+
persistentClear: boolean;
|
|
32598
|
+
singleLine: boolean;
|
|
32599
|
+
chips: boolean;
|
|
32600
|
+
counterSizeString: string;
|
|
32601
|
+
counterString: string;
|
|
32602
|
+
showSize: boolean | 1024 | 1000;
|
|
32603
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
32604
|
+
default: (arg: VInputSlot & VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32605
|
+
[key: string]: any;
|
|
32606
|
+
}>[];
|
|
32607
|
+
prepend: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32608
|
+
[key: string]: any;
|
|
32609
|
+
}>[];
|
|
32610
|
+
append: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32611
|
+
[key: string]: any;
|
|
32612
|
+
}>[];
|
|
32613
|
+
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32614
|
+
[key: string]: any;
|
|
32615
|
+
}>[];
|
|
32616
|
+
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32617
|
+
[key: string]: any;
|
|
32618
|
+
}>[];
|
|
32619
|
+
clear: (arg: DefaultInputSlot & {
|
|
32620
|
+
props: Record<string, any>;
|
|
32621
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32622
|
+
[key: string]: any;
|
|
32623
|
+
}>[];
|
|
32624
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32625
|
+
[key: string]: any;
|
|
32626
|
+
}>[];
|
|
32627
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32628
|
+
[key: string]: any;
|
|
32629
|
+
}>[];
|
|
32630
|
+
label: (arg: DefaultInputSlot & {
|
|
32631
|
+
label: string | undefined;
|
|
32632
|
+
props: Record<string, any>;
|
|
32633
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32634
|
+
[key: string]: any;
|
|
32635
|
+
}>[];
|
|
32636
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32637
|
+
[key: string]: any;
|
|
32638
|
+
}>[];
|
|
32639
|
+
counter: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32640
|
+
[key: string]: any;
|
|
32641
|
+
}>[];
|
|
32642
|
+
selection: (arg: {
|
|
32643
|
+
fileNames: string[];
|
|
32644
|
+
totalBytes: number;
|
|
32645
|
+
totalBytesReadable: string;
|
|
32646
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32647
|
+
[key: string]: any;
|
|
32648
|
+
}>[];
|
|
32649
|
+
}>>, {
|
|
32650
|
+
P: {};
|
|
32651
|
+
B: {};
|
|
32652
|
+
D: {};
|
|
32653
|
+
C: {};
|
|
32654
|
+
M: {};
|
|
32655
|
+
Defaults: {};
|
|
32656
|
+
}, {
|
|
32657
|
+
flat: boolean;
|
|
32658
|
+
reverse: boolean;
|
|
32659
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
32660
|
+
error: boolean;
|
|
32661
|
+
active: boolean;
|
|
32662
|
+
direction: "horizontal" | "vertical";
|
|
32663
|
+
style: vue.StyleValue;
|
|
32664
|
+
disabled: boolean;
|
|
32665
|
+
multiple: boolean;
|
|
32666
|
+
readonly: boolean | null;
|
|
32667
|
+
messages: string | readonly string[];
|
|
32668
|
+
counter: boolean;
|
|
32669
|
+
focused: boolean;
|
|
32670
|
+
errorMessages: string | readonly string[] | null;
|
|
32671
|
+
maxErrors: string | number;
|
|
32672
|
+
rules: readonly ValidationRule$1[];
|
|
32673
|
+
modelValue: File | File[];
|
|
32436
32674
|
tile: boolean;
|
|
32437
32675
|
density: Density;
|
|
32438
32676
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32479,217 +32717,9 @@ declare const VFileInput: {
|
|
|
32479
32717
|
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32480
32718
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32481
32719
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32482
|
-
clear?: ((
|
|
32483
|
-
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32484
|
-
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32485
|
-
label?: ((arg: DefaultInputSlot & {
|
|
32486
|
-
label: string | undefined;
|
|
32487
|
-
props: Record<string, any>;
|
|
32488
|
-
}) => vue.VNodeChild) | undefined;
|
|
32489
|
-
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
32490
|
-
counter?: (() => vue.VNodeChild) | undefined;
|
|
32491
|
-
selection?: ((arg: {
|
|
32492
|
-
fileNames: string[];
|
|
32493
|
-
totalBytes: number;
|
|
32494
|
-
totalBytesReadable: string;
|
|
32495
|
-
}) => vue.VNodeChild) | undefined;
|
|
32496
|
-
} | ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild);
|
|
32497
|
-
'v-slots'?: {
|
|
32498
|
-
default?: false | ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
32499
|
-
prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32500
|
-
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32501
|
-
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32502
|
-
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32503
|
-
clear?: false | (() => vue.VNodeChild) | undefined;
|
|
32504
|
-
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32505
|
-
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32506
|
-
label?: false | ((arg: DefaultInputSlot & {
|
|
32507
|
-
label: string | undefined;
|
|
32720
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
32508
32721
|
props: Record<string, any>;
|
|
32509
32722
|
}) => vue.VNodeChild) | undefined;
|
|
32510
|
-
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
32511
|
-
counter?: false | (() => vue.VNodeChild) | undefined;
|
|
32512
|
-
selection?: false | ((arg: {
|
|
32513
|
-
fileNames: string[];
|
|
32514
|
-
totalBytes: number;
|
|
32515
|
-
totalBytesReadable: string;
|
|
32516
|
-
}) => vue.VNodeChild) | undefined;
|
|
32517
|
-
} | undefined;
|
|
32518
|
-
} & {
|
|
32519
|
-
"v-slot:default"?: false | ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
32520
|
-
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32521
|
-
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32522
|
-
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32523
|
-
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32524
|
-
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
32525
|
-
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32526
|
-
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32527
|
-
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
32528
|
-
label: string | undefined;
|
|
32529
|
-
props: Record<string, any>;
|
|
32530
|
-
}) => vue.VNodeChild) | undefined;
|
|
32531
|
-
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
32532
|
-
"v-slot:counter"?: false | (() => vue.VNodeChild) | undefined;
|
|
32533
|
-
"v-slot:selection"?: false | ((arg: {
|
|
32534
|
-
fileNames: string[];
|
|
32535
|
-
totalBytes: number;
|
|
32536
|
-
totalBytesReadable: string;
|
|
32537
|
-
}) => vue.VNodeChild) | undefined;
|
|
32538
|
-
} & {
|
|
32539
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
32540
|
-
"onUpdate:modelValue"?: ((files: File[]) => any) | undefined;
|
|
32541
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
32542
|
-
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
32543
|
-
}, {
|
|
32544
|
-
flat: boolean;
|
|
32545
|
-
reverse: boolean;
|
|
32546
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
32547
|
-
error: boolean;
|
|
32548
|
-
active: boolean;
|
|
32549
|
-
direction: "horizontal" | "vertical";
|
|
32550
|
-
style: vue.StyleValue;
|
|
32551
|
-
disabled: boolean;
|
|
32552
|
-
multiple: boolean;
|
|
32553
|
-
readonly: boolean | null;
|
|
32554
|
-
messages: string | readonly string[];
|
|
32555
|
-
counter: boolean;
|
|
32556
|
-
focused: boolean;
|
|
32557
|
-
errorMessages: string | readonly string[] | null;
|
|
32558
|
-
maxErrors: string | number;
|
|
32559
|
-
rules: readonly ValidationRule$1[];
|
|
32560
|
-
modelValue: File[];
|
|
32561
|
-
rounded: string | number | boolean;
|
|
32562
|
-
tile: boolean;
|
|
32563
|
-
density: Density;
|
|
32564
|
-
prependIcon: NonNullable<IconValue>;
|
|
32565
|
-
clearIcon: IconValue;
|
|
32566
|
-
centerAffix: boolean;
|
|
32567
|
-
hideSpinButtons: boolean;
|
|
32568
|
-
persistentHint: boolean;
|
|
32569
|
-
clearable: boolean;
|
|
32570
|
-
dirty: boolean;
|
|
32571
|
-
persistentClear: boolean;
|
|
32572
|
-
singleLine: boolean;
|
|
32573
|
-
chips: boolean;
|
|
32574
|
-
counterSizeString: string;
|
|
32575
|
-
counterString: string;
|
|
32576
|
-
showSize: boolean | 1024 | 1000;
|
|
32577
|
-
}, true, {}, vue.SlotsType<Partial<{
|
|
32578
|
-
default: (arg: VInputSlot & VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32579
|
-
[key: string]: any;
|
|
32580
|
-
}>[];
|
|
32581
|
-
prepend: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32582
|
-
[key: string]: any;
|
|
32583
|
-
}>[];
|
|
32584
|
-
append: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32585
|
-
[key: string]: any;
|
|
32586
|
-
}>[];
|
|
32587
|
-
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32588
|
-
[key: string]: any;
|
|
32589
|
-
}>[];
|
|
32590
|
-
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32591
|
-
[key: string]: any;
|
|
32592
|
-
}>[];
|
|
32593
|
-
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32594
|
-
[key: string]: any;
|
|
32595
|
-
}>[];
|
|
32596
|
-
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32597
|
-
[key: string]: any;
|
|
32598
|
-
}>[];
|
|
32599
|
-
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32600
|
-
[key: string]: any;
|
|
32601
|
-
}>[];
|
|
32602
|
-
label: (arg: DefaultInputSlot & {
|
|
32603
|
-
label: string | undefined;
|
|
32604
|
-
props: Record<string, any>;
|
|
32605
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32606
|
-
[key: string]: any;
|
|
32607
|
-
}>[];
|
|
32608
|
-
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32609
|
-
[key: string]: any;
|
|
32610
|
-
}>[];
|
|
32611
|
-
counter: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32612
|
-
[key: string]: any;
|
|
32613
|
-
}>[];
|
|
32614
|
-
selection: (arg: {
|
|
32615
|
-
fileNames: string[];
|
|
32616
|
-
totalBytes: number;
|
|
32617
|
-
totalBytesReadable: string;
|
|
32618
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32619
|
-
[key: string]: any;
|
|
32620
|
-
}>[];
|
|
32621
|
-
}>>, {
|
|
32622
|
-
P: {};
|
|
32623
|
-
B: {};
|
|
32624
|
-
D: {};
|
|
32625
|
-
C: {};
|
|
32626
|
-
M: {};
|
|
32627
|
-
Defaults: {};
|
|
32628
|
-
}, {
|
|
32629
|
-
flat: boolean;
|
|
32630
|
-
reverse: boolean;
|
|
32631
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
32632
|
-
error: boolean;
|
|
32633
|
-
active: boolean;
|
|
32634
|
-
direction: "horizontal" | "vertical";
|
|
32635
|
-
style: vue.StyleValue;
|
|
32636
|
-
disabled: boolean;
|
|
32637
|
-
multiple: boolean;
|
|
32638
|
-
readonly: boolean | null;
|
|
32639
|
-
messages: string | readonly string[];
|
|
32640
|
-
counter: boolean;
|
|
32641
|
-
focused: boolean;
|
|
32642
|
-
errorMessages: string | readonly string[] | null;
|
|
32643
|
-
maxErrors: string | number;
|
|
32644
|
-
rules: readonly ValidationRule$1[];
|
|
32645
|
-
modelValue: File[];
|
|
32646
|
-
tile: boolean;
|
|
32647
|
-
density: Density;
|
|
32648
|
-
prependIcon: NonNullable<IconValue>;
|
|
32649
|
-
clearIcon: IconValue;
|
|
32650
|
-
hideSpinButtons: boolean;
|
|
32651
|
-
persistentHint: boolean;
|
|
32652
|
-
clearable: boolean;
|
|
32653
|
-
dirty: boolean;
|
|
32654
|
-
persistentClear: boolean;
|
|
32655
|
-
singleLine: boolean;
|
|
32656
|
-
chips: boolean;
|
|
32657
|
-
counterSizeString: string;
|
|
32658
|
-
counterString: string;
|
|
32659
|
-
showSize: boolean | 1024 | 1000;
|
|
32660
|
-
} & {
|
|
32661
|
-
id?: string | undefined;
|
|
32662
|
-
name?: string | undefined;
|
|
32663
|
-
color?: string | undefined;
|
|
32664
|
-
loading?: string | boolean | undefined;
|
|
32665
|
-
label?: string | undefined;
|
|
32666
|
-
class?: any;
|
|
32667
|
-
theme?: string | undefined;
|
|
32668
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
32669
|
-
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
32670
|
-
validationValue?: any;
|
|
32671
|
-
rounded?: string | number | boolean | undefined;
|
|
32672
|
-
bgColor?: string | undefined;
|
|
32673
|
-
appendIcon?: IconValue | undefined;
|
|
32674
|
-
baseColor?: string | undefined;
|
|
32675
|
-
appendInnerIcon?: IconValue | undefined;
|
|
32676
|
-
prependInnerIcon?: IconValue | undefined;
|
|
32677
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32678
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32679
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32680
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32681
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
32682
|
-
centerAffix?: boolean | undefined;
|
|
32683
|
-
hint?: string | undefined;
|
|
32684
|
-
hideDetails?: boolean | "auto" | undefined;
|
|
32685
|
-
} & {
|
|
32686
|
-
$children?: vue.VNodeChild | {
|
|
32687
|
-
default?: ((arg: VInputSlot & VFieldSlot) => vue.VNodeChild) | undefined;
|
|
32688
|
-
prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32689
|
-
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32690
|
-
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32691
|
-
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32692
|
-
clear?: (() => vue.VNodeChild) | undefined;
|
|
32693
32723
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32694
32724
|
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32695
32725
|
label?: ((arg: DefaultInputSlot & {
|
|
@@ -32710,7 +32740,9 @@ declare const VFileInput: {
|
|
|
32710
32740
|
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32711
32741
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32712
32742
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32713
|
-
clear?: false | ((
|
|
32743
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
32744
|
+
props: Record<string, any>;
|
|
32745
|
+
}) => vue.VNodeChild) | undefined;
|
|
32714
32746
|
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32715
32747
|
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32716
32748
|
label?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32731,7 +32763,9 @@ declare const VFileInput: {
|
|
|
32731
32763
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32732
32764
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32733
32765
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32734
|
-
"v-slot:clear"?: false | ((
|
|
32766
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
32767
|
+
props: Record<string, any>;
|
|
32768
|
+
}) => vue.VNodeChild) | undefined;
|
|
32735
32769
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32736
32770
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32737
32771
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32996,7 +33030,7 @@ declare const VFileInput: {
|
|
|
32996
33030
|
errorMessages: string | readonly string[] | null;
|
|
32997
33031
|
maxErrors: string | number;
|
|
32998
33032
|
rules: readonly ValidationRule$1[];
|
|
32999
|
-
modelValue: File[];
|
|
33033
|
+
modelValue: File | File[];
|
|
33000
33034
|
rounded: string | number | boolean;
|
|
33001
33035
|
tile: boolean;
|
|
33002
33036
|
density: Density;
|
|
@@ -33034,7 +33068,7 @@ declare const VFileInput: {
|
|
|
33034
33068
|
errorMessages: string | readonly string[] | null;
|
|
33035
33069
|
maxErrors: string | number;
|
|
33036
33070
|
rules: readonly ValidationRule$1[];
|
|
33037
|
-
modelValue: File[];
|
|
33071
|
+
modelValue: File | File[];
|
|
33038
33072
|
tile: boolean;
|
|
33039
33073
|
density: Density;
|
|
33040
33074
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -33081,7 +33115,9 @@ declare const VFileInput: {
|
|
|
33081
33115
|
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33082
33116
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33083
33117
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33084
|
-
clear?: ((
|
|
33118
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
33119
|
+
props: Record<string, any>;
|
|
33120
|
+
}) => vue.VNodeChild) | undefined;
|
|
33085
33121
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33086
33122
|
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33087
33123
|
label?: ((arg: DefaultInputSlot & {
|
|
@@ -33102,7 +33138,9 @@ declare const VFileInput: {
|
|
|
33102
33138
|
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33103
33139
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33104
33140
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33105
|
-
clear?: false | ((
|
|
33141
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
33142
|
+
props: Record<string, any>;
|
|
33143
|
+
}) => vue.VNodeChild) | undefined;
|
|
33106
33144
|
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33107
33145
|
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33108
33146
|
label?: false | ((arg: DefaultInputSlot & {
|
|
@@ -33123,7 +33161,9 @@ declare const VFileInput: {
|
|
|
33123
33161
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33124
33162
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33125
33163
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33126
|
-
"v-slot:clear"?: false | ((
|
|
33164
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
33165
|
+
props: Record<string, any>;
|
|
33166
|
+
}) => vue.VNodeChild) | undefined;
|
|
33127
33167
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33128
33168
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33129
33169
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
@@ -33393,7 +33433,7 @@ declare const VFileInput: {
|
|
|
33393
33433
|
errorMessages: string | readonly string[] | null;
|
|
33394
33434
|
maxErrors: string | number;
|
|
33395
33435
|
rules: readonly ValidationRule$1[];
|
|
33396
|
-
modelValue: File[];
|
|
33436
|
+
modelValue: File | File[];
|
|
33397
33437
|
rounded: string | number | boolean;
|
|
33398
33438
|
tile: boolean;
|
|
33399
33439
|
density: Density;
|
|
@@ -33426,7 +33466,9 @@ declare const VFileInput: {
|
|
|
33426
33466
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
33427
33467
|
[key: string]: any;
|
|
33428
33468
|
}>[];
|
|
33429
|
-
clear: (
|
|
33469
|
+
clear: (arg: DefaultInputSlot & {
|
|
33470
|
+
props: Record<string, any>;
|
|
33471
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
33430
33472
|
[key: string]: any;
|
|
33431
33473
|
}>[];
|
|
33432
33474
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -33505,7 +33547,7 @@ declare const VFileInput: {
|
|
|
33505
33547
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
33506
33548
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
33507
33549
|
modelValue: {
|
|
33508
|
-
type: PropType<File[]>;
|
|
33550
|
+
type: PropType<File | File[]>;
|
|
33509
33551
|
default: () => never[];
|
|
33510
33552
|
validator: (val: any) => boolean;
|
|
33511
33553
|
};
|
|
@@ -33623,7 +33665,7 @@ declare const VFileInput: {
|
|
|
33623
33665
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
33624
33666
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
33625
33667
|
modelValue: {
|
|
33626
|
-
type: PropType<File[]>;
|
|
33668
|
+
type: PropType<File | File[]>;
|
|
33627
33669
|
default: () => never[];
|
|
33628
33670
|
validator: (val: any) => boolean;
|
|
33629
33671
|
};
|
|
@@ -47651,7 +47693,9 @@ declare const VSelect: {
|
|
|
47651
47693
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
47652
47694
|
[key: string]: any;
|
|
47653
47695
|
}>[];
|
|
47654
|
-
clear: (
|
|
47696
|
+
clear: (arg: DefaultInputSlot & {
|
|
47697
|
+
props: Record<string, any>;
|
|
47698
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
47655
47699
|
[key: string]: any;
|
|
47656
47700
|
}>[];
|
|
47657
47701
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -48940,7 +48984,9 @@ declare const VSelect: {
|
|
|
48940
48984
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
48941
48985
|
[key: string]: any;
|
|
48942
48986
|
}>[];
|
|
48943
|
-
clear: (
|
|
48987
|
+
clear: (arg: DefaultInputSlot & {
|
|
48988
|
+
props: Record<string, any>;
|
|
48989
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
48944
48990
|
[key: string]: any;
|
|
48945
48991
|
}>[];
|
|
48946
48992
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -58802,7 +58848,9 @@ declare const VTextarea: {
|
|
|
58802
58848
|
} & {
|
|
58803
58849
|
$children?: {} | vue.VNodeChild | {
|
|
58804
58850
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
58805
|
-
clear?: ((
|
|
58851
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
58852
|
+
props: Record<string, any>;
|
|
58853
|
+
}) => vue.VNodeChild) | undefined;
|
|
58806
58854
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
58807
58855
|
label?: ((arg: DefaultInputSlot & {
|
|
58808
58856
|
label: string | undefined;
|
|
@@ -58817,7 +58865,9 @@ declare const VTextarea: {
|
|
|
58817
58865
|
};
|
|
58818
58866
|
'v-slots'?: {
|
|
58819
58867
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
58820
|
-
clear?: false | ((
|
|
58868
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
58869
|
+
props: Record<string, any>;
|
|
58870
|
+
}) => vue.VNodeChild) | undefined;
|
|
58821
58871
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
58822
58872
|
label?: false | ((arg: DefaultInputSlot & {
|
|
58823
58873
|
label: string | undefined;
|
|
@@ -58832,7 +58882,9 @@ declare const VTextarea: {
|
|
|
58832
58882
|
} | undefined;
|
|
58833
58883
|
} & {
|
|
58834
58884
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
58835
|
-
"v-slot:clear"?: false | ((
|
|
58885
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
58886
|
+
props: Record<string, any>;
|
|
58887
|
+
}) => vue.VNodeChild) | undefined;
|
|
58836
58888
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
58837
58889
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
58838
58890
|
label: string | undefined;
|
|
@@ -59150,7 +59202,9 @@ declare const VTextarea: {
|
|
|
59150
59202
|
} & {
|
|
59151
59203
|
$children?: {} | vue.VNodeChild | {
|
|
59152
59204
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59153
|
-
clear?: ((
|
|
59205
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
59206
|
+
props: Record<string, any>;
|
|
59207
|
+
}) => vue.VNodeChild) | undefined;
|
|
59154
59208
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59155
59209
|
label?: ((arg: DefaultInputSlot & {
|
|
59156
59210
|
label: string | undefined;
|
|
@@ -59165,7 +59219,9 @@ declare const VTextarea: {
|
|
|
59165
59219
|
};
|
|
59166
59220
|
'v-slots'?: {
|
|
59167
59221
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59168
|
-
clear?: false | ((
|
|
59222
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
59223
|
+
props: Record<string, any>;
|
|
59224
|
+
}) => vue.VNodeChild) | undefined;
|
|
59169
59225
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59170
59226
|
label?: false | ((arg: DefaultInputSlot & {
|
|
59171
59227
|
label: string | undefined;
|
|
@@ -59180,7 +59236,9 @@ declare const VTextarea: {
|
|
|
59180
59236
|
} | undefined;
|
|
59181
59237
|
} & {
|
|
59182
59238
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59183
|
-
"v-slot:clear"?: false | ((
|
|
59239
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
59240
|
+
props: Record<string, any>;
|
|
59241
|
+
}) => vue.VNodeChild) | undefined;
|
|
59184
59242
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59185
59243
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
59186
59244
|
label: string | undefined;
|
|
@@ -59233,7 +59291,9 @@ declare const VTextarea: {
|
|
|
59233
59291
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
59234
59292
|
[key: string]: any;
|
|
59235
59293
|
}>[];
|
|
59236
|
-
clear: (
|
|
59294
|
+
clear: (arg: DefaultInputSlot & {
|
|
59295
|
+
props: Record<string, any>;
|
|
59296
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
59237
59297
|
[key: string]: any;
|
|
59238
59298
|
}>[];
|
|
59239
59299
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -59337,7 +59397,9 @@ declare const VTextarea: {
|
|
|
59337
59397
|
} & {
|
|
59338
59398
|
$children?: {} | vue.VNodeChild | {
|
|
59339
59399
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59340
|
-
clear?: ((
|
|
59400
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
59401
|
+
props: Record<string, any>;
|
|
59402
|
+
}) => vue.VNodeChild) | undefined;
|
|
59341
59403
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59342
59404
|
label?: ((arg: DefaultInputSlot & {
|
|
59343
59405
|
label: string | undefined;
|
|
@@ -59352,7 +59414,9 @@ declare const VTextarea: {
|
|
|
59352
59414
|
};
|
|
59353
59415
|
'v-slots'?: {
|
|
59354
59416
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59355
|
-
clear?: false | ((
|
|
59417
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
59418
|
+
props: Record<string, any>;
|
|
59419
|
+
}) => vue.VNodeChild) | undefined;
|
|
59356
59420
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59357
59421
|
label?: false | ((arg: DefaultInputSlot & {
|
|
59358
59422
|
label: string | undefined;
|
|
@@ -59367,7 +59431,9 @@ declare const VTextarea: {
|
|
|
59367
59431
|
} | undefined;
|
|
59368
59432
|
} & {
|
|
59369
59433
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59370
|
-
"v-slot:clear"?: false | ((
|
|
59434
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
59435
|
+
props: Record<string, any>;
|
|
59436
|
+
}) => vue.VNodeChild) | undefined;
|
|
59371
59437
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59372
59438
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
59373
59439
|
label: string | undefined;
|
|
@@ -59716,7 +59782,9 @@ declare const VTextarea: {
|
|
|
59716
59782
|
} & {
|
|
59717
59783
|
$children?: {} | vue.VNodeChild | {
|
|
59718
59784
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59719
|
-
clear?: ((
|
|
59785
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
59786
|
+
props: Record<string, any>;
|
|
59787
|
+
}) => vue.VNodeChild) | undefined;
|
|
59720
59788
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59721
59789
|
label?: ((arg: DefaultInputSlot & {
|
|
59722
59790
|
label: string | undefined;
|
|
@@ -59731,7 +59799,9 @@ declare const VTextarea: {
|
|
|
59731
59799
|
};
|
|
59732
59800
|
'v-slots'?: {
|
|
59733
59801
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59734
|
-
clear?: false | ((
|
|
59802
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
59803
|
+
props: Record<string, any>;
|
|
59804
|
+
}) => vue.VNodeChild) | undefined;
|
|
59735
59805
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59736
59806
|
label?: false | ((arg: DefaultInputSlot & {
|
|
59737
59807
|
label: string | undefined;
|
|
@@ -59746,7 +59816,9 @@ declare const VTextarea: {
|
|
|
59746
59816
|
} | undefined;
|
|
59747
59817
|
} & {
|
|
59748
59818
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59749
|
-
"v-slot:clear"?: false | ((
|
|
59819
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
59820
|
+
props: Record<string, any>;
|
|
59821
|
+
}) => vue.VNodeChild) | undefined;
|
|
59750
59822
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59751
59823
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
59752
59824
|
label: string | undefined;
|
|
@@ -60033,7 +60105,9 @@ declare const VTextarea: {
|
|
|
60033
60105
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
60034
60106
|
[key: string]: any;
|
|
60035
60107
|
}>[];
|
|
60036
|
-
clear: (
|
|
60108
|
+
clear: (arg: DefaultInputSlot & {
|
|
60109
|
+
props: Record<string, any>;
|
|
60110
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
60037
60111
|
[key: string]: any;
|
|
60038
60112
|
}>[];
|
|
60039
60113
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -60356,7 +60430,9 @@ declare const VTextField: {
|
|
|
60356
60430
|
} & {
|
|
60357
60431
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
60358
60432
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60359
|
-
clear?: ((
|
|
60433
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
60434
|
+
props: Record<string, any>;
|
|
60435
|
+
}) => vue.VNodeChild) | undefined;
|
|
60360
60436
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60361
60437
|
label?: ((arg: DefaultInputSlot & {
|
|
60362
60438
|
label: string | undefined;
|
|
@@ -60372,7 +60448,9 @@ declare const VTextField: {
|
|
|
60372
60448
|
};
|
|
60373
60449
|
'v-slots'?: {
|
|
60374
60450
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60375
|
-
clear?: false | ((
|
|
60451
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
60452
|
+
props: Record<string, any>;
|
|
60453
|
+
}) => vue.VNodeChild) | undefined;
|
|
60376
60454
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60377
60455
|
label?: false | ((arg: DefaultInputSlot & {
|
|
60378
60456
|
label: string | undefined;
|
|
@@ -60388,7 +60466,9 @@ declare const VTextField: {
|
|
|
60388
60466
|
} | undefined;
|
|
60389
60467
|
} & {
|
|
60390
60468
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60391
|
-
"v-slot:clear"?: false | ((
|
|
60469
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
60470
|
+
props: Record<string, any>;
|
|
60471
|
+
}) => vue.VNodeChild) | undefined;
|
|
60392
60472
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60393
60473
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
60394
60474
|
label: string | undefined;
|
|
@@ -60728,7 +60808,9 @@ declare const VTextField: {
|
|
|
60728
60808
|
[x: string]: unknown;
|
|
60729
60809
|
};
|
|
60730
60810
|
$slots: Readonly<{
|
|
60731
|
-
clear?: ((
|
|
60811
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
60812
|
+
props: Record<string, any>;
|
|
60813
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
60732
60814
|
[key: string]: any;
|
|
60733
60815
|
}>[]) | undefined;
|
|
60734
60816
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -60811,7 +60893,9 @@ declare const VTextField: {
|
|
|
60811
60893
|
persistentClear: boolean;
|
|
60812
60894
|
singleLine: boolean;
|
|
60813
60895
|
}, {}, string, vue.SlotsType<Partial<{
|
|
60814
|
-
clear: (
|
|
60896
|
+
clear: (arg: DefaultInputSlot & {
|
|
60897
|
+
props: Record<string, any>;
|
|
60898
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
60815
60899
|
[key: string]: any;
|
|
60816
60900
|
}>[];
|
|
60817
60901
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -60961,7 +61045,9 @@ declare const VTextField: {
|
|
|
60961
61045
|
} & {
|
|
60962
61046
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
60963
61047
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60964
|
-
clear?: ((
|
|
61048
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61049
|
+
props: Record<string, any>;
|
|
61050
|
+
}) => vue.VNodeChild) | undefined;
|
|
60965
61051
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60966
61052
|
label?: ((arg: DefaultInputSlot & {
|
|
60967
61053
|
label: string | undefined;
|
|
@@ -60977,7 +61063,9 @@ declare const VTextField: {
|
|
|
60977
61063
|
};
|
|
60978
61064
|
'v-slots'?: {
|
|
60979
61065
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60980
|
-
clear?: false | ((
|
|
61066
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
61067
|
+
props: Record<string, any>;
|
|
61068
|
+
}) => vue.VNodeChild) | undefined;
|
|
60981
61069
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60982
61070
|
label?: false | ((arg: DefaultInputSlot & {
|
|
60983
61071
|
label: string | undefined;
|
|
@@ -60993,7 +61081,9 @@ declare const VTextField: {
|
|
|
60993
61081
|
} | undefined;
|
|
60994
61082
|
} & {
|
|
60995
61083
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60996
|
-
"v-slot:clear"?: false | ((
|
|
61084
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
61085
|
+
props: Record<string, any>;
|
|
61086
|
+
}) => vue.VNodeChild) | undefined;
|
|
60997
61087
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60998
61088
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
60999
61089
|
label: string | undefined;
|
|
@@ -61045,7 +61135,9 @@ declare const VTextField: {
|
|
|
61045
61135
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61046
61136
|
[key: string]: any;
|
|
61047
61137
|
}>[];
|
|
61048
|
-
clear: (
|
|
61138
|
+
clear: (arg: DefaultInputSlot & {
|
|
61139
|
+
props: Record<string, any>;
|
|
61140
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61049
61141
|
[key: string]: any;
|
|
61050
61142
|
}>[];
|
|
61051
61143
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -61150,7 +61242,9 @@ declare const VTextField: {
|
|
|
61150
61242
|
} & {
|
|
61151
61243
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61152
61244
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61153
|
-
clear?: ((
|
|
61245
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61246
|
+
props: Record<string, any>;
|
|
61247
|
+
}) => vue.VNodeChild) | undefined;
|
|
61154
61248
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61155
61249
|
label?: ((arg: DefaultInputSlot & {
|
|
61156
61250
|
label: string | undefined;
|
|
@@ -61166,7 +61260,9 @@ declare const VTextField: {
|
|
|
61166
61260
|
};
|
|
61167
61261
|
'v-slots'?: {
|
|
61168
61262
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61169
|
-
clear?: false | ((
|
|
61263
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
61264
|
+
props: Record<string, any>;
|
|
61265
|
+
}) => vue.VNodeChild) | undefined;
|
|
61170
61266
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61171
61267
|
label?: false | ((arg: DefaultInputSlot & {
|
|
61172
61268
|
label: string | undefined;
|
|
@@ -61182,7 +61278,9 @@ declare const VTextField: {
|
|
|
61182
61278
|
} | undefined;
|
|
61183
61279
|
} & {
|
|
61184
61280
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61185
|
-
"v-slot:clear"?: false | ((
|
|
61281
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
61282
|
+
props: Record<string, any>;
|
|
61283
|
+
}) => vue.VNodeChild) | undefined;
|
|
61186
61284
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61187
61285
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
61188
61286
|
label: string | undefined;
|
|
@@ -61522,7 +61620,9 @@ declare const VTextField: {
|
|
|
61522
61620
|
[x: string]: unknown;
|
|
61523
61621
|
};
|
|
61524
61622
|
$slots: Readonly<{
|
|
61525
|
-
clear?: ((
|
|
61623
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61624
|
+
props: Record<string, any>;
|
|
61625
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61526
61626
|
[key: string]: any;
|
|
61527
61627
|
}>[]) | undefined;
|
|
61528
61628
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -61605,7 +61705,9 @@ declare const VTextField: {
|
|
|
61605
61705
|
persistentClear: boolean;
|
|
61606
61706
|
singleLine: boolean;
|
|
61607
61707
|
}, {}, string, vue.SlotsType<Partial<{
|
|
61608
|
-
clear: (
|
|
61708
|
+
clear: (arg: DefaultInputSlot & {
|
|
61709
|
+
props: Record<string, any>;
|
|
61710
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61609
61711
|
[key: string]: any;
|
|
61610
61712
|
}>[];
|
|
61611
61713
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -61784,7 +61886,9 @@ declare const VTextField: {
|
|
|
61784
61886
|
} & {
|
|
61785
61887
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61786
61888
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61787
|
-
clear?: ((
|
|
61889
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61890
|
+
props: Record<string, any>;
|
|
61891
|
+
}) => vue.VNodeChild) | undefined;
|
|
61788
61892
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61789
61893
|
label?: ((arg: DefaultInputSlot & {
|
|
61790
61894
|
label: string | undefined;
|
|
@@ -61800,7 +61904,9 @@ declare const VTextField: {
|
|
|
61800
61904
|
};
|
|
61801
61905
|
'v-slots'?: {
|
|
61802
61906
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61803
|
-
clear?: false | ((
|
|
61907
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
61908
|
+
props: Record<string, any>;
|
|
61909
|
+
}) => vue.VNodeChild) | undefined;
|
|
61804
61910
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61805
61911
|
label?: false | ((arg: DefaultInputSlot & {
|
|
61806
61912
|
label: string | undefined;
|
|
@@ -61816,7 +61922,9 @@ declare const VTextField: {
|
|
|
61816
61922
|
} | undefined;
|
|
61817
61923
|
} & {
|
|
61818
61924
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61819
|
-
"v-slot:clear"?: false | ((
|
|
61925
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
61926
|
+
props: Record<string, any>;
|
|
61927
|
+
}) => vue.VNodeChild) | undefined;
|
|
61820
61928
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61821
61929
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
61822
61930
|
label: string | undefined;
|
|
@@ -62156,7 +62264,9 @@ declare const VTextField: {
|
|
|
62156
62264
|
[x: string]: unknown;
|
|
62157
62265
|
};
|
|
62158
62266
|
$slots: Readonly<{
|
|
62159
|
-
clear?: ((
|
|
62267
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
62268
|
+
props: Record<string, any>;
|
|
62269
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62160
62270
|
[key: string]: any;
|
|
62161
62271
|
}>[]) | undefined;
|
|
62162
62272
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -62239,7 +62349,9 @@ declare const VTextField: {
|
|
|
62239
62349
|
persistentClear: boolean;
|
|
62240
62350
|
singleLine: boolean;
|
|
62241
62351
|
}, {}, string, vue.SlotsType<Partial<{
|
|
62242
|
-
clear: (
|
|
62352
|
+
clear: (arg: DefaultInputSlot & {
|
|
62353
|
+
props: Record<string, any>;
|
|
62354
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62243
62355
|
[key: string]: any;
|
|
62244
62356
|
}>[];
|
|
62245
62357
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -62358,7 +62470,9 @@ declare const VTextField: {
|
|
|
62358
62470
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62359
62471
|
[key: string]: any;
|
|
62360
62472
|
}>[];
|
|
62361
|
-
clear: (
|
|
62473
|
+
clear: (arg: DefaultInputSlot & {
|
|
62474
|
+
props: Record<string, any>;
|
|
62475
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62362
62476
|
[key: string]: any;
|
|
62363
62477
|
}>[];
|
|
62364
62478
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|