@anzusystems/common-admin 1.47.0-beta.359 → 1.47.0-beta.360
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/{AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-DjYHyeck.mjs → AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-BNyX-8Ah.mjs} +1030 -1037
- package/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-BNyX-8Ah.mjs.map +1 -0
- package/dist/common-admin.css +1 -1
- package/dist/common-admin.d.ts +1326 -1114
- package/dist/common-admin.js +3980 -3896
- package/dist/common-admin.js.map +1 -1
- package/dist/{index-so4LUFja.mjs → index-CGpu1VTe.mjs} +6213 -5942
- package/dist/index-CGpu1VTe.mjs.map +1 -0
- package/dist/labs.d.ts +928 -0
- package/dist/labs.js +4911 -450
- package/dist/labs.js.map +1 -1
- package/dist/{webfontloader-CtCXi-3v.mjs → webfontloader-CHE2rJZS.mjs} +2 -2
- package/dist/{webfontloader-CtCXi-3v.mjs.map → webfontloader-CHE2rJZS.mjs.map} +1 -1
- package/package.json +24 -24
- package/dist/AFormRemoteAutocomplete.vue_vue_type_script_setup_true_lang-DjYHyeck.mjs.map +0 -1
- package/dist/index-so4LUFja.mjs.map +0 -1
package/dist/common-admin.d.ts
CHANGED
|
@@ -5818,6 +5818,255 @@ $data: {};
|
|
|
5818
5818
|
$props: Partial<{
|
|
5819
5819
|
style: StyleValue;
|
|
5820
5820
|
focused: boolean;
|
|
5821
|
+
disabled: boolean | null;
|
|
5822
|
+
error: boolean;
|
|
5823
|
+
errorMessages: string | readonly string[] | null;
|
|
5824
|
+
maxErrors: string | number;
|
|
5825
|
+
readonly: boolean | null;
|
|
5826
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
5827
|
+
density: Density;
|
|
5828
|
+
centerAffix: boolean;
|
|
5829
|
+
glow: boolean;
|
|
5830
|
+
hideSpinButtons: boolean;
|
|
5831
|
+
indentDetails: boolean;
|
|
5832
|
+
persistentHint: boolean;
|
|
5833
|
+
messages: string | readonly string[];
|
|
5834
|
+
direction: "horizontal" | "vertical";
|
|
5835
|
+
}> & Omit<{
|
|
5836
|
+
theme?: string | undefined;
|
|
5837
|
+
class?: any;
|
|
5838
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
5839
|
+
focused: boolean;
|
|
5840
|
+
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
5841
|
+
disabled: boolean | null;
|
|
5842
|
+
error: boolean;
|
|
5843
|
+
errorMessages: string | readonly string[] | null;
|
|
5844
|
+
maxErrors: string | number;
|
|
5845
|
+
name?: string | undefined;
|
|
5846
|
+
label?: string | undefined;
|
|
5847
|
+
readonly: boolean | null;
|
|
5848
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
5849
|
+
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
5850
|
+
validationValue?: any;
|
|
5851
|
+
density: Density;
|
|
5852
|
+
maxWidth?: string | number | undefined;
|
|
5853
|
+
minWidth?: string | number | undefined;
|
|
5854
|
+
width?: string | number | undefined;
|
|
5855
|
+
id?: string | undefined;
|
|
5856
|
+
appendIcon?: IconValue | undefined;
|
|
5857
|
+
baseColor?: string | undefined;
|
|
5858
|
+
centerAffix: boolean;
|
|
5859
|
+
color?: string | undefined;
|
|
5860
|
+
glow: boolean;
|
|
5861
|
+
iconColor?: string | boolean | undefined;
|
|
5862
|
+
prependIcon?: IconValue | undefined;
|
|
5863
|
+
hideDetails?: "auto" | boolean | undefined;
|
|
5864
|
+
hideSpinButtons: boolean;
|
|
5865
|
+
hint?: string | undefined;
|
|
5866
|
+
indentDetails: boolean;
|
|
5867
|
+
persistentHint: boolean;
|
|
5868
|
+
messages: string | readonly string[];
|
|
5869
|
+
direction: "horizontal" | "vertical";
|
|
5870
|
+
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5871
|
+
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5872
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
5873
|
+
$attrs: {
|
|
5874
|
+
[x: string]: unknown;
|
|
5875
|
+
};
|
|
5876
|
+
$refs: {
|
|
5877
|
+
[x: string]: unknown;
|
|
5878
|
+
};
|
|
5879
|
+
$slots: Readonly<{
|
|
5880
|
+
default?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5881
|
+
[key: string]: any;
|
|
5882
|
+
}>[]) | undefined;
|
|
5883
|
+
prepend?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5884
|
+
[key: string]: any;
|
|
5885
|
+
}>[]) | undefined;
|
|
5886
|
+
append?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5887
|
+
[key: string]: any;
|
|
5888
|
+
}>[]) | undefined;
|
|
5889
|
+
details?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5890
|
+
[key: string]: any;
|
|
5891
|
+
}>[]) | undefined;
|
|
5892
|
+
message?: ((arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
5893
|
+
[key: string]: any;
|
|
5894
|
+
}>[]) | undefined;
|
|
5895
|
+
}>;
|
|
5896
|
+
$root: ComponentPublicInstance | null;
|
|
5897
|
+
$parent: ComponentPublicInstance | null;
|
|
5898
|
+
$host: Element | null;
|
|
5899
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
5900
|
+
$el: any;
|
|
5901
|
+
$options: ComponentOptionsBase< {
|
|
5902
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
5903
|
+
focused: boolean;
|
|
5904
|
+
disabled: boolean | null;
|
|
5905
|
+
error: boolean;
|
|
5906
|
+
errorMessages: string | readonly string[] | null;
|
|
5907
|
+
maxErrors: string | number;
|
|
5908
|
+
readonly: boolean | null;
|
|
5909
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
5910
|
+
density: Density;
|
|
5911
|
+
centerAffix: boolean;
|
|
5912
|
+
glow: boolean;
|
|
5913
|
+
hideSpinButtons: boolean;
|
|
5914
|
+
indentDetails: boolean;
|
|
5915
|
+
persistentHint: boolean;
|
|
5916
|
+
messages: string | readonly string[];
|
|
5917
|
+
direction: "horizontal" | "vertical";
|
|
5918
|
+
} & {
|
|
5919
|
+
theme?: string | undefined;
|
|
5920
|
+
class?: any;
|
|
5921
|
+
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
5922
|
+
name?: string | undefined;
|
|
5923
|
+
label?: string | undefined;
|
|
5924
|
+
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
5925
|
+
validationValue?: any;
|
|
5926
|
+
maxWidth?: string | number | undefined;
|
|
5927
|
+
minWidth?: string | number | undefined;
|
|
5928
|
+
width?: string | number | undefined;
|
|
5929
|
+
id?: string | undefined;
|
|
5930
|
+
appendIcon?: IconValue | undefined;
|
|
5931
|
+
baseColor?: string | undefined;
|
|
5932
|
+
color?: string | undefined;
|
|
5933
|
+
iconColor?: string | boolean | undefined;
|
|
5934
|
+
prependIcon?: IconValue | undefined;
|
|
5935
|
+
hideDetails?: "auto" | boolean | undefined;
|
|
5936
|
+
hint?: string | undefined;
|
|
5937
|
+
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5938
|
+
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
5939
|
+
} & {}, {
|
|
5940
|
+
reset: () => Promise<void>;
|
|
5941
|
+
resetValidation: () => Promise<void>;
|
|
5942
|
+
validate: (silent?: boolean) => Promise<string[]>;
|
|
5943
|
+
isValid: ComputedRef<boolean | null>;
|
|
5944
|
+
errorMessages: ComputedRef<string[]>;
|
|
5945
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Omit<{
|
|
5946
|
+
"update:modelValue": (value: any) => true;
|
|
5947
|
+
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
5948
|
+
style: StyleValue;
|
|
5949
|
+
focused: boolean;
|
|
5950
|
+
disabled: boolean | null;
|
|
5951
|
+
error: boolean;
|
|
5952
|
+
errorMessages: string | readonly string[] | null;
|
|
5953
|
+
maxErrors: string | number;
|
|
5954
|
+
readonly: boolean | null;
|
|
5955
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
5956
|
+
density: Density;
|
|
5957
|
+
centerAffix: boolean;
|
|
5958
|
+
glow: boolean;
|
|
5959
|
+
hideSpinButtons: boolean;
|
|
5960
|
+
indentDetails: boolean;
|
|
5961
|
+
persistentHint: boolean;
|
|
5962
|
+
messages: string | readonly string[];
|
|
5963
|
+
direction: "horizontal" | "vertical";
|
|
5964
|
+
}, {}, string, SlotsType<Partial<{
|
|
5965
|
+
default: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5966
|
+
[key: string]: any;
|
|
5967
|
+
}>[];
|
|
5968
|
+
prepend: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5969
|
+
[key: string]: any;
|
|
5970
|
+
}>[];
|
|
5971
|
+
append: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5972
|
+
[key: string]: any;
|
|
5973
|
+
}>[];
|
|
5974
|
+
details: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
5975
|
+
[key: string]: any;
|
|
5976
|
+
}>[];
|
|
5977
|
+
message: (arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
5978
|
+
[key: string]: any;
|
|
5979
|
+
}>[];
|
|
5980
|
+
}>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
5981
|
+
beforeCreate?: (() => void)[] | (() => void);
|
|
5982
|
+
created?: (() => void)[] | (() => void);
|
|
5983
|
+
beforeMount?: (() => void)[] | (() => void);
|
|
5984
|
+
mounted?: (() => void)[] | (() => void);
|
|
5985
|
+
beforeUpdate?: (() => void)[] | (() => void);
|
|
5986
|
+
updated?: (() => void)[] | (() => void);
|
|
5987
|
+
activated?: (() => void)[] | (() => void);
|
|
5988
|
+
deactivated?: (() => void)[] | (() => void);
|
|
5989
|
+
beforeDestroy?: (() => void)[] | (() => void);
|
|
5990
|
+
beforeUnmount?: (() => void)[] | (() => void);
|
|
5991
|
+
destroyed?: (() => void)[] | (() => void);
|
|
5992
|
+
unmounted?: (() => void)[] | (() => void);
|
|
5993
|
+
renderTracked?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
5994
|
+
renderTriggered?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
5995
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void);
|
|
5996
|
+
};
|
|
5997
|
+
$forceUpdate: () => void;
|
|
5998
|
+
$nextTick: nextTick;
|
|
5999
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
6000
|
+
} & Readonly<{
|
|
6001
|
+
style: StyleValue;
|
|
6002
|
+
focused: boolean;
|
|
6003
|
+
disabled: boolean | null;
|
|
6004
|
+
error: boolean;
|
|
6005
|
+
errorMessages: string | readonly string[] | null;
|
|
6006
|
+
maxErrors: string | number;
|
|
6007
|
+
readonly: boolean | null;
|
|
6008
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6009
|
+
density: Density;
|
|
6010
|
+
centerAffix: boolean;
|
|
6011
|
+
glow: boolean;
|
|
6012
|
+
hideSpinButtons: boolean;
|
|
6013
|
+
indentDetails: boolean;
|
|
6014
|
+
persistentHint: boolean;
|
|
6015
|
+
messages: string | readonly string[];
|
|
6016
|
+
direction: "horizontal" | "vertical";
|
|
6017
|
+
}> & Omit<{
|
|
6018
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
6019
|
+
focused: boolean;
|
|
6020
|
+
disabled: boolean | null;
|
|
6021
|
+
error: boolean;
|
|
6022
|
+
errorMessages: string | readonly string[] | null;
|
|
6023
|
+
maxErrors: string | number;
|
|
6024
|
+
readonly: boolean | null;
|
|
6025
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6026
|
+
density: Density;
|
|
6027
|
+
centerAffix: boolean;
|
|
6028
|
+
glow: boolean;
|
|
6029
|
+
hideSpinButtons: boolean;
|
|
6030
|
+
indentDetails: boolean;
|
|
6031
|
+
persistentHint: boolean;
|
|
6032
|
+
messages: string | readonly string[];
|
|
6033
|
+
direction: "horizontal" | "vertical";
|
|
6034
|
+
} & {
|
|
6035
|
+
theme?: string | undefined;
|
|
6036
|
+
class?: any;
|
|
6037
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
6038
|
+
name?: string | undefined;
|
|
6039
|
+
label?: string | undefined;
|
|
6040
|
+
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
6041
|
+
validationValue?: any;
|
|
6042
|
+
maxWidth?: string | number | undefined;
|
|
6043
|
+
minWidth?: string | number | undefined;
|
|
6044
|
+
width?: string | number | undefined;
|
|
6045
|
+
id?: string | undefined;
|
|
6046
|
+
appendIcon?: IconValue | undefined;
|
|
6047
|
+
baseColor?: string | undefined;
|
|
6048
|
+
color?: string | undefined;
|
|
6049
|
+
iconColor?: string | boolean | undefined;
|
|
6050
|
+
prependIcon?: IconValue | undefined;
|
|
6051
|
+
hideDetails?: "auto" | boolean | undefined;
|
|
6052
|
+
hint?: string | undefined;
|
|
6053
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6054
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6055
|
+
}, "error" | "messages" | "disabled" | "style" | "density" | "reset" | "isValid" | "resetValidation" | "validate" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules"> & {
|
|
6056
|
+
reset: () => Promise<void>;
|
|
6057
|
+
resetValidation: () => Promise<void>;
|
|
6058
|
+
validate: (silent?: boolean) => Promise<string[]>;
|
|
6059
|
+
isValid: boolean | null;
|
|
6060
|
+
errorMessages: string[];
|
|
6061
|
+
} & ComponentCustomProperties & GenericProps< {
|
|
6062
|
+
modelValue?: unknown;
|
|
6063
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
6064
|
+
}, VInputSlots>, "error" | "messages" | "disabled" | "id" | "theme" | "color" | "width" | "name" | "class" | "style" | "density" | "appendIcon" | "baseColor" | "label" | "prependIcon" | "modelValue" | "$children" | "v-slots" | "v-slot:append" | "v-slot:default" | "v-slot:prepend" | "onUpdate:modelValue" | keyof VNodeProps | "maxWidth" | "minWidth" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules" | "onUpdate:focused" | "validateOn" | "validationValue" | "iconColor" | "hideDetails" | "hint" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
6065
|
+
$: ComponentInternalInstance;
|
|
6066
|
+
$data: {};
|
|
6067
|
+
$props: Partial<{
|
|
6068
|
+
style: StyleValue;
|
|
6069
|
+
focused: boolean;
|
|
5821
6070
|
rounded: string | number | boolean;
|
|
5822
6071
|
tile: boolean;
|
|
5823
6072
|
clearable: boolean;
|
|
@@ -6076,14 +6325,237 @@ fieldIconColor: string | undefined;
|
|
|
6076
6325
|
} & ComponentCustomProperties & GenericProps< {
|
|
6077
6326
|
modelValue?: unknown;
|
|
6078
6327
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
6079
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> &
|
|
6080
|
-
|
|
6081
|
-
|
|
6082
|
-
|
|
6083
|
-
|
|
6084
|
-
|
|
6085
|
-
|
|
6086
|
-
|
|
6328
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
6329
|
+
_allExposed: {
|
|
6330
|
+
reset: () => Promise<void>;
|
|
6331
|
+
resetValidation: () => Promise<void>;
|
|
6332
|
+
validate: (silent?: boolean) => Promise<string[]>;
|
|
6333
|
+
isValid: ComputedRef<boolean | null>;
|
|
6334
|
+
errorMessages: ComputedRef<string[]>;
|
|
6335
|
+
} | {
|
|
6336
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6337
|
+
fieldIconColor: ComputedRef<string | undefined>;
|
|
6338
|
+
} | {};
|
|
6339
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6340
|
+
'click:control': (e: MouseEvent) => true;
|
|
6341
|
+
'mousedown:control': (e: MouseEvent) => true;
|
|
6342
|
+
'update:focused': (focused: boolean) => true;
|
|
6343
|
+
'update:modelValue': (val: string) => true;
|
|
6344
|
+
'update:rows': (rows: number) => true;
|
|
6345
|
+
}, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
6346
|
+
style: StyleValue;
|
|
6347
|
+
focused: boolean;
|
|
6348
|
+
errorMessages: string | readonly string[] | null;
|
|
6349
|
+
maxErrors: string | number;
|
|
6350
|
+
readonly: boolean | null;
|
|
6351
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6352
|
+
density: Density;
|
|
6353
|
+
rounded: string | number | boolean;
|
|
6354
|
+
tile: boolean;
|
|
6355
|
+
hideSpinButtons: boolean;
|
|
6356
|
+
indentDetails: boolean;
|
|
6357
|
+
persistentHint: boolean;
|
|
6358
|
+
messages: string | readonly string[];
|
|
6359
|
+
clearable: boolean;
|
|
6360
|
+
clearIcon: IconValue;
|
|
6361
|
+
active: boolean;
|
|
6362
|
+
centerAffix: boolean;
|
|
6363
|
+
dirty: boolean;
|
|
6364
|
+
disabled: boolean;
|
|
6365
|
+
glow: boolean;
|
|
6366
|
+
error: boolean;
|
|
6367
|
+
flat: boolean;
|
|
6368
|
+
persistentClear: boolean;
|
|
6369
|
+
reverse: boolean;
|
|
6370
|
+
singleLine: boolean;
|
|
6371
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6372
|
+
autoGrow: boolean;
|
|
6373
|
+
autofocus: boolean;
|
|
6374
|
+
persistentPlaceholder: boolean;
|
|
6375
|
+
persistentCounter: boolean;
|
|
6376
|
+
noResize: boolean;
|
|
6377
|
+
rows: string | number;
|
|
6378
|
+
}, true, {}, SlotsType<Partial<{
|
|
6379
|
+
prepend: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6380
|
+
[key: string]: any;
|
|
6381
|
+
}>[];
|
|
6382
|
+
append: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6383
|
+
[key: string]: any;
|
|
6384
|
+
}>[];
|
|
6385
|
+
details: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6386
|
+
[key: string]: any;
|
|
6387
|
+
}>[];
|
|
6388
|
+
message: (arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
6389
|
+
[key: string]: any;
|
|
6390
|
+
}>[];
|
|
6391
|
+
clear: (arg: DefaultInputSlot & {
|
|
6392
|
+
props: Record<string, any>;
|
|
6393
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
6394
|
+
[key: string]: any;
|
|
6395
|
+
}>[];
|
|
6396
|
+
'prepend-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6397
|
+
[key: string]: any;
|
|
6398
|
+
}>[];
|
|
6399
|
+
'append-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6400
|
+
[key: string]: any;
|
|
6401
|
+
}>[];
|
|
6402
|
+
label: (arg: DefaultInputSlot & {
|
|
6403
|
+
label: string | undefined;
|
|
6404
|
+
props: Record<string, any>;
|
|
6405
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
6406
|
+
[key: string]: any;
|
|
6407
|
+
}>[];
|
|
6408
|
+
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
6409
|
+
[key: string]: any;
|
|
6410
|
+
}>[];
|
|
6411
|
+
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
6412
|
+
[key: string]: any;
|
|
6413
|
+
}>[];
|
|
6414
|
+
}>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6415
|
+
P: {};
|
|
6416
|
+
B: {};
|
|
6417
|
+
D: {};
|
|
6418
|
+
C: {};
|
|
6419
|
+
M: {};
|
|
6420
|
+
Defaults: {};
|
|
6421
|
+
}, {
|
|
6422
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
6423
|
+
focused: boolean;
|
|
6424
|
+
errorMessages: string | readonly string[] | null;
|
|
6425
|
+
maxErrors: string | number;
|
|
6426
|
+
readonly: boolean | null;
|
|
6427
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6428
|
+
density: Density;
|
|
6429
|
+
tile: boolean;
|
|
6430
|
+
hideSpinButtons: boolean;
|
|
6431
|
+
indentDetails: boolean;
|
|
6432
|
+
persistentHint: boolean;
|
|
6433
|
+
messages: string | readonly string[];
|
|
6434
|
+
clearable: boolean;
|
|
6435
|
+
clearIcon: IconValue;
|
|
6436
|
+
active: boolean;
|
|
6437
|
+
dirty: boolean;
|
|
6438
|
+
disabled: boolean;
|
|
6439
|
+
glow: boolean;
|
|
6440
|
+
error: boolean;
|
|
6441
|
+
flat: boolean;
|
|
6442
|
+
persistentClear: boolean;
|
|
6443
|
+
reverse: boolean;
|
|
6444
|
+
singleLine: boolean;
|
|
6445
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6446
|
+
autoGrow: boolean;
|
|
6447
|
+
autofocus: boolean;
|
|
6448
|
+
persistentPlaceholder: boolean;
|
|
6449
|
+
persistentCounter: boolean;
|
|
6450
|
+
noResize: boolean;
|
|
6451
|
+
rows: string | number;
|
|
6452
|
+
} & {
|
|
6453
|
+
theme?: string | undefined;
|
|
6454
|
+
class?: any;
|
|
6455
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
6456
|
+
name?: string | undefined;
|
|
6457
|
+
modelValue?: any;
|
|
6458
|
+
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
6459
|
+
validationValue?: any;
|
|
6460
|
+
rounded?: string | number | boolean | undefined;
|
|
6461
|
+
maxWidth?: string | number | undefined;
|
|
6462
|
+
minWidth?: string | number | undefined;
|
|
6463
|
+
width?: string | number | undefined;
|
|
6464
|
+
loading?: string | boolean | undefined;
|
|
6465
|
+
id?: string | undefined;
|
|
6466
|
+
appendIcon?: IconValue | undefined;
|
|
6467
|
+
prependIcon?: IconValue | undefined;
|
|
6468
|
+
hideDetails?: "auto" | boolean | undefined;
|
|
6469
|
+
hint?: string | undefined;
|
|
6470
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6471
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6472
|
+
appendInnerIcon?: IconValue | undefined;
|
|
6473
|
+
bgColor?: string | undefined;
|
|
6474
|
+
centerAffix?: boolean | undefined;
|
|
6475
|
+
color?: string | undefined;
|
|
6476
|
+
baseColor?: string | undefined;
|
|
6477
|
+
iconColor?: string | boolean | undefined;
|
|
6478
|
+
label?: string | undefined;
|
|
6479
|
+
prependInnerIcon?: IconValue | undefined;
|
|
6480
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6481
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6482
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6483
|
+
autocomplete?: string | undefined;
|
|
6484
|
+
counter?: string | number | true | undefined;
|
|
6485
|
+
counterValue?: ((value: any) => number) | undefined;
|
|
6486
|
+
prefix?: string | undefined;
|
|
6487
|
+
placeholder?: string | undefined;
|
|
6488
|
+
maxHeight?: string | number | undefined;
|
|
6489
|
+
maxRows?: string | number | undefined;
|
|
6490
|
+
suffix?: string | undefined;
|
|
6491
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
6492
|
+
} & {
|
|
6493
|
+
$children?: {
|
|
6494
|
+
prepend?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6495
|
+
append?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6496
|
+
details?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6497
|
+
message?: ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
6498
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
6499
|
+
props: Record<string, any>;
|
|
6500
|
+
}) => VNodeChild) | undefined;
|
|
6501
|
+
"prepend-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6502
|
+
"append-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6503
|
+
label?: ((arg: DefaultInputSlot & {
|
|
6504
|
+
label: string | undefined;
|
|
6505
|
+
props: Record<string, any>;
|
|
6506
|
+
}) => VNodeChild) | undefined;
|
|
6507
|
+
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6508
|
+
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6509
|
+
} | {
|
|
6510
|
+
$stable?: boolean;
|
|
6511
|
+
} | {} | VNodeChild;
|
|
6512
|
+
'v-slots'?: {
|
|
6513
|
+
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6514
|
+
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6515
|
+
details?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6516
|
+
message?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
6517
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
6518
|
+
props: Record<string, any>;
|
|
6519
|
+
}) => VNodeChild) | undefined;
|
|
6520
|
+
"prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6521
|
+
"append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6522
|
+
label?: false | ((arg: DefaultInputSlot & {
|
|
6523
|
+
label: string | undefined;
|
|
6524
|
+
props: Record<string, any>;
|
|
6525
|
+
}) => VNodeChild) | undefined;
|
|
6526
|
+
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6527
|
+
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6528
|
+
} | undefined;
|
|
6529
|
+
} & {
|
|
6530
|
+
"v-slot:append"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6531
|
+
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6532
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
6533
|
+
props: Record<string, any>;
|
|
6534
|
+
}) => VNodeChild) | undefined;
|
|
6535
|
+
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6536
|
+
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6537
|
+
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
6538
|
+
label: string | undefined;
|
|
6539
|
+
props: Record<string, any>;
|
|
6540
|
+
}) => VNodeChild) | undefined;
|
|
6541
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6542
|
+
"v-slot:message"?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
6543
|
+
"v-slot:prepend"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6544
|
+
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6545
|
+
} & {
|
|
6546
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
6547
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
6548
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
6549
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
6550
|
+
"onUpdate:rows"?: ((rows: number) => any) | undefined;
|
|
6551
|
+
}, HTMLTextAreaElement & Omit<Omit<{
|
|
6552
|
+
$: ComponentInternalInstance;
|
|
6553
|
+
$data: {};
|
|
6554
|
+
$props: Partial<{
|
|
6555
|
+
style: StyleValue;
|
|
6556
|
+
focused: boolean;
|
|
6557
|
+
disabled: boolean | null;
|
|
6558
|
+
error: boolean;
|
|
6087
6559
|
errorMessages: string | readonly string[] | null;
|
|
6088
6560
|
maxErrors: string | number;
|
|
6089
6561
|
readonly: boolean | null;
|
|
@@ -6325,233 +6797,10 @@ errorMessages: string[];
|
|
|
6325
6797
|
} & ComponentCustomProperties & GenericProps< {
|
|
6326
6798
|
modelValue?: unknown;
|
|
6327
6799
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
6328
|
-
}, VInputSlots>, "error" | "messages" | "disabled" | "id" | "theme" | "color" | "width" | "name" | "class" | "style" | "density" | "appendIcon" | "baseColor" | "label" | "prependIcon" | "modelValue" | "$children" | "v-slots" | "v-slot:append" | "v-slot:default" | "v-slot:prepend" | "onUpdate:modelValue" | keyof VNodeProps | "maxWidth" | "minWidth" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules" | "onUpdate:focused" | "validateOn" | "validationValue" | "iconColor" | "hideDetails" | "hint" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & {
|
|
6329
|
-
|
|
6330
|
-
|
|
6331
|
-
|
|
6332
|
-
validate: (silent?: boolean) => Promise<string[]>;
|
|
6333
|
-
isValid: ComputedRef<boolean | null>;
|
|
6334
|
-
errorMessages: ComputedRef<string[]>;
|
|
6335
|
-
} | {
|
|
6336
|
-
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
6337
|
-
fieldIconColor: ComputedRef<string | undefined>;
|
|
6338
|
-
} | {};
|
|
6339
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
6340
|
-
'click:control': (e: MouseEvent) => true;
|
|
6341
|
-
'mousedown:control': (e: MouseEvent) => true;
|
|
6342
|
-
'update:focused': (focused: boolean) => true;
|
|
6343
|
-
'update:modelValue': (val: string) => true;
|
|
6344
|
-
'update:rows': (rows: number) => true;
|
|
6345
|
-
}, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
6346
|
-
style: StyleValue;
|
|
6347
|
-
focused: boolean;
|
|
6348
|
-
errorMessages: string | readonly string[] | null;
|
|
6349
|
-
maxErrors: string | number;
|
|
6350
|
-
readonly: boolean | null;
|
|
6351
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6352
|
-
density: Density;
|
|
6353
|
-
rounded: string | number | boolean;
|
|
6354
|
-
tile: boolean;
|
|
6355
|
-
hideSpinButtons: boolean;
|
|
6356
|
-
indentDetails: boolean;
|
|
6357
|
-
persistentHint: boolean;
|
|
6358
|
-
messages: string | readonly string[];
|
|
6359
|
-
clearable: boolean;
|
|
6360
|
-
clearIcon: IconValue;
|
|
6361
|
-
active: boolean;
|
|
6362
|
-
centerAffix: boolean;
|
|
6363
|
-
dirty: boolean;
|
|
6364
|
-
disabled: boolean;
|
|
6365
|
-
glow: boolean;
|
|
6366
|
-
error: boolean;
|
|
6367
|
-
flat: boolean;
|
|
6368
|
-
persistentClear: boolean;
|
|
6369
|
-
reverse: boolean;
|
|
6370
|
-
singleLine: boolean;
|
|
6371
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6372
|
-
autoGrow: boolean;
|
|
6373
|
-
autofocus: boolean;
|
|
6374
|
-
persistentPlaceholder: boolean;
|
|
6375
|
-
persistentCounter: boolean;
|
|
6376
|
-
noResize: boolean;
|
|
6377
|
-
rows: string | number;
|
|
6378
|
-
}, true, {}, SlotsType<Partial<{
|
|
6379
|
-
prepend: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6380
|
-
[key: string]: any;
|
|
6381
|
-
}>[];
|
|
6382
|
-
append: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6383
|
-
[key: string]: any;
|
|
6384
|
-
}>[];
|
|
6385
|
-
details: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6386
|
-
[key: string]: any;
|
|
6387
|
-
}>[];
|
|
6388
|
-
message: (arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
6389
|
-
[key: string]: any;
|
|
6390
|
-
}>[];
|
|
6391
|
-
clear: (arg: DefaultInputSlot & {
|
|
6392
|
-
props: Record<string, any>;
|
|
6393
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
6394
|
-
[key: string]: any;
|
|
6395
|
-
}>[];
|
|
6396
|
-
'prepend-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6397
|
-
[key: string]: any;
|
|
6398
|
-
}>[];
|
|
6399
|
-
'append-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6400
|
-
[key: string]: any;
|
|
6401
|
-
}>[];
|
|
6402
|
-
label: (arg: DefaultInputSlot & {
|
|
6403
|
-
label: string | undefined;
|
|
6404
|
-
props: Record<string, any>;
|
|
6405
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
6406
|
-
[key: string]: any;
|
|
6407
|
-
}>[];
|
|
6408
|
-
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
6409
|
-
[key: string]: any;
|
|
6410
|
-
}>[];
|
|
6411
|
-
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
6412
|
-
[key: string]: any;
|
|
6413
|
-
}>[];
|
|
6414
|
-
}>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6415
|
-
P: {};
|
|
6416
|
-
B: {};
|
|
6417
|
-
D: {};
|
|
6418
|
-
C: {};
|
|
6419
|
-
M: {};
|
|
6420
|
-
Defaults: {};
|
|
6421
|
-
}, {
|
|
6422
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
6423
|
-
focused: boolean;
|
|
6424
|
-
errorMessages: string | readonly string[] | null;
|
|
6425
|
-
maxErrors: string | number;
|
|
6426
|
-
readonly: boolean | null;
|
|
6427
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6428
|
-
density: Density;
|
|
6429
|
-
tile: boolean;
|
|
6430
|
-
hideSpinButtons: boolean;
|
|
6431
|
-
indentDetails: boolean;
|
|
6432
|
-
persistentHint: boolean;
|
|
6433
|
-
messages: string | readonly string[];
|
|
6434
|
-
clearable: boolean;
|
|
6435
|
-
clearIcon: IconValue;
|
|
6436
|
-
active: boolean;
|
|
6437
|
-
dirty: boolean;
|
|
6438
|
-
disabled: boolean;
|
|
6439
|
-
glow: boolean;
|
|
6440
|
-
error: boolean;
|
|
6441
|
-
flat: boolean;
|
|
6442
|
-
persistentClear: boolean;
|
|
6443
|
-
reverse: boolean;
|
|
6444
|
-
singleLine: boolean;
|
|
6445
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
6446
|
-
autoGrow: boolean;
|
|
6447
|
-
autofocus: boolean;
|
|
6448
|
-
persistentPlaceholder: boolean;
|
|
6449
|
-
persistentCounter: boolean;
|
|
6450
|
-
noResize: boolean;
|
|
6451
|
-
rows: string | number;
|
|
6452
|
-
} & {
|
|
6453
|
-
theme?: string | undefined;
|
|
6454
|
-
class?: any;
|
|
6455
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
6456
|
-
name?: string | undefined;
|
|
6457
|
-
modelValue?: any;
|
|
6458
|
-
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
6459
|
-
validationValue?: any;
|
|
6460
|
-
rounded?: string | number | boolean | undefined;
|
|
6461
|
-
maxWidth?: string | number | undefined;
|
|
6462
|
-
minWidth?: string | number | undefined;
|
|
6463
|
-
width?: string | number | undefined;
|
|
6464
|
-
loading?: string | boolean | undefined;
|
|
6465
|
-
id?: string | undefined;
|
|
6466
|
-
appendIcon?: IconValue | undefined;
|
|
6467
|
-
prependIcon?: IconValue | undefined;
|
|
6468
|
-
hideDetails?: "auto" | boolean | undefined;
|
|
6469
|
-
hint?: string | undefined;
|
|
6470
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6471
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6472
|
-
appendInnerIcon?: IconValue | undefined;
|
|
6473
|
-
bgColor?: string | undefined;
|
|
6474
|
-
centerAffix?: boolean | undefined;
|
|
6475
|
-
color?: string | undefined;
|
|
6476
|
-
baseColor?: string | undefined;
|
|
6477
|
-
iconColor?: string | boolean | undefined;
|
|
6478
|
-
label?: string | undefined;
|
|
6479
|
-
prependInnerIcon?: IconValue | undefined;
|
|
6480
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6481
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6482
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
6483
|
-
autocomplete?: string | undefined;
|
|
6484
|
-
counter?: string | number | true | undefined;
|
|
6485
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
6486
|
-
prefix?: string | undefined;
|
|
6487
|
-
placeholder?: string | undefined;
|
|
6488
|
-
maxHeight?: string | number | undefined;
|
|
6489
|
-
maxRows?: string | number | undefined;
|
|
6490
|
-
suffix?: string | undefined;
|
|
6491
|
-
modelModifiers?: Record<string, boolean> | undefined;
|
|
6492
|
-
} & {
|
|
6493
|
-
$children?: {
|
|
6494
|
-
prepend?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6495
|
-
append?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6496
|
-
details?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6497
|
-
message?: ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
6498
|
-
clear?: ((arg: DefaultInputSlot & {
|
|
6499
|
-
props: Record<string, any>;
|
|
6500
|
-
}) => VNodeChild) | undefined;
|
|
6501
|
-
"prepend-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6502
|
-
"append-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6503
|
-
label?: ((arg: DefaultInputSlot & {
|
|
6504
|
-
label: string | undefined;
|
|
6505
|
-
props: Record<string, any>;
|
|
6506
|
-
}) => VNodeChild) | undefined;
|
|
6507
|
-
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6508
|
-
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6509
|
-
} | {
|
|
6510
|
-
$stable?: boolean;
|
|
6511
|
-
} | {} | VNodeChild;
|
|
6512
|
-
'v-slots'?: {
|
|
6513
|
-
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6514
|
-
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6515
|
-
details?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6516
|
-
message?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
6517
|
-
clear?: false | ((arg: DefaultInputSlot & {
|
|
6518
|
-
props: Record<string, any>;
|
|
6519
|
-
}) => VNodeChild) | undefined;
|
|
6520
|
-
"prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6521
|
-
"append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6522
|
-
label?: false | ((arg: DefaultInputSlot & {
|
|
6523
|
-
label: string | undefined;
|
|
6524
|
-
props: Record<string, any>;
|
|
6525
|
-
}) => VNodeChild) | undefined;
|
|
6526
|
-
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6527
|
-
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6528
|
-
} | undefined;
|
|
6529
|
-
} & {
|
|
6530
|
-
"v-slot:append"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6531
|
-
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6532
|
-
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
6533
|
-
props: Record<string, any>;
|
|
6534
|
-
}) => VNodeChild) | undefined;
|
|
6535
|
-
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
6536
|
-
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6537
|
-
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
6538
|
-
label: string | undefined;
|
|
6539
|
-
props: Record<string, any>;
|
|
6540
|
-
}) => VNodeChild) | undefined;
|
|
6541
|
-
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
6542
|
-
"v-slot:message"?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
6543
|
-
"v-slot:prepend"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
6544
|
-
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
6545
|
-
} & {
|
|
6546
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
6547
|
-
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
6548
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
6549
|
-
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
6550
|
-
"onUpdate:rows"?: ((rows: number) => any) | undefined;
|
|
6551
|
-
}, HTMLTextAreaElement & Omit<Omit<{
|
|
6552
|
-
$: ComponentInternalInstance;
|
|
6553
|
-
$data: {};
|
|
6554
|
-
$props: Partial<{
|
|
6800
|
+
}, VInputSlots>, "error" | "messages" | "disabled" | "id" | "theme" | "color" | "width" | "name" | "class" | "style" | "density" | "appendIcon" | "baseColor" | "label" | "prependIcon" | "modelValue" | "$children" | "v-slots" | "v-slot:append" | "v-slot:default" | "v-slot:prepend" | "onUpdate:modelValue" | keyof VNodeProps | "maxWidth" | "minWidth" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules" | "onUpdate:focused" | "validateOn" | "validationValue" | "iconColor" | "hideDetails" | "hint" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
6801
|
+
$: ComponentInternalInstance;
|
|
6802
|
+
$data: {};
|
|
6803
|
+
$props: Partial<{
|
|
6555
6804
|
style: StyleValue;
|
|
6556
6805
|
focused: boolean;
|
|
6557
6806
|
rounded: string | number | boolean;
|
|
@@ -6812,286 +7061,37 @@ fieldIconColor: string | undefined;
|
|
|
6812
7061
|
} & ComponentCustomProperties & GenericProps< {
|
|
6813
7062
|
modelValue?: unknown;
|
|
6814
7063
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
6815
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> &
|
|
6816
|
-
|
|
6817
|
-
|
|
6818
|
-
|
|
7064
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
7065
|
+
_allExposed: {
|
|
7066
|
+
reset: () => Promise<void>;
|
|
7067
|
+
resetValidation: () => Promise<void>;
|
|
7068
|
+
validate: (silent?: boolean) => Promise<string[]>;
|
|
7069
|
+
isValid: ComputedRef<boolean | null>;
|
|
7070
|
+
errorMessages: ComputedRef<string[]>;
|
|
7071
|
+
} | {
|
|
7072
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
7073
|
+
fieldIconColor: ComputedRef<string | undefined>;
|
|
7074
|
+
} | {};
|
|
7075
|
+
}, {}, {}, {}, {
|
|
6819
7076
|
style: StyleValue;
|
|
6820
7077
|
focused: boolean;
|
|
6821
|
-
disabled: boolean | null;
|
|
6822
|
-
error: boolean;
|
|
6823
7078
|
errorMessages: string | readonly string[] | null;
|
|
6824
7079
|
maxErrors: string | number;
|
|
6825
7080
|
readonly: boolean | null;
|
|
6826
7081
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6827
7082
|
density: Density;
|
|
6828
|
-
|
|
6829
|
-
|
|
7083
|
+
rounded: string | number | boolean;
|
|
7084
|
+
tile: boolean;
|
|
6830
7085
|
hideSpinButtons: boolean;
|
|
6831
7086
|
indentDetails: boolean;
|
|
6832
7087
|
persistentHint: boolean;
|
|
6833
7088
|
messages: string | readonly string[];
|
|
6834
|
-
|
|
6835
|
-
|
|
6836
|
-
|
|
6837
|
-
class?: any;
|
|
6838
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
6839
|
-
focused: boolean;
|
|
6840
|
-
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
6841
|
-
disabled: boolean | null;
|
|
6842
|
-
error: boolean;
|
|
6843
|
-
errorMessages: string | readonly string[] | null;
|
|
6844
|
-
maxErrors: string | number;
|
|
6845
|
-
name?: string | undefined;
|
|
6846
|
-
label?: string | undefined;
|
|
6847
|
-
readonly: boolean | null;
|
|
6848
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6849
|
-
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
6850
|
-
validationValue?: any;
|
|
6851
|
-
density: Density;
|
|
6852
|
-
maxWidth?: string | number | undefined;
|
|
6853
|
-
minWidth?: string | number | undefined;
|
|
6854
|
-
width?: string | number | undefined;
|
|
6855
|
-
id?: string | undefined;
|
|
6856
|
-
appendIcon?: IconValue | undefined;
|
|
6857
|
-
baseColor?: string | undefined;
|
|
7089
|
+
clearable: boolean;
|
|
7090
|
+
clearIcon: IconValue;
|
|
7091
|
+
active: boolean;
|
|
6858
7092
|
centerAffix: boolean;
|
|
6859
|
-
|
|
6860
|
-
|
|
6861
|
-
iconColor?: string | boolean | undefined;
|
|
6862
|
-
prependIcon?: IconValue | undefined;
|
|
6863
|
-
hideDetails?: "auto" | boolean | undefined;
|
|
6864
|
-
hideSpinButtons: boolean;
|
|
6865
|
-
hint?: string | undefined;
|
|
6866
|
-
indentDetails: boolean;
|
|
6867
|
-
persistentHint: boolean;
|
|
6868
|
-
messages: string | readonly string[];
|
|
6869
|
-
direction: "horizontal" | "vertical";
|
|
6870
|
-
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6871
|
-
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6872
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "centerAffix" | "density" | "direction" | "disabled" | "error" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "messages" | "persistentHint" | "readonly" | "rules" | "style">;
|
|
6873
|
-
$attrs: {
|
|
6874
|
-
[x: string]: unknown;
|
|
6875
|
-
};
|
|
6876
|
-
$refs: {
|
|
6877
|
-
[x: string]: unknown;
|
|
6878
|
-
};
|
|
6879
|
-
$slots: Readonly<{
|
|
6880
|
-
default?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6881
|
-
[key: string]: any;
|
|
6882
|
-
}>[]) | undefined;
|
|
6883
|
-
prepend?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6884
|
-
[key: string]: any;
|
|
6885
|
-
}>[]) | undefined;
|
|
6886
|
-
append?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6887
|
-
[key: string]: any;
|
|
6888
|
-
}>[]) | undefined;
|
|
6889
|
-
details?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6890
|
-
[key: string]: any;
|
|
6891
|
-
}>[]) | undefined;
|
|
6892
|
-
message?: ((arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
6893
|
-
[key: string]: any;
|
|
6894
|
-
}>[]) | undefined;
|
|
6895
|
-
}>;
|
|
6896
|
-
$root: ComponentPublicInstance | null;
|
|
6897
|
-
$parent: ComponentPublicInstance | null;
|
|
6898
|
-
$host: Element | null;
|
|
6899
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
6900
|
-
$el: any;
|
|
6901
|
-
$options: ComponentOptionsBase< {
|
|
6902
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
6903
|
-
focused: boolean;
|
|
6904
|
-
disabled: boolean | null;
|
|
6905
|
-
error: boolean;
|
|
6906
|
-
errorMessages: string | readonly string[] | null;
|
|
6907
|
-
maxErrors: string | number;
|
|
6908
|
-
readonly: boolean | null;
|
|
6909
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6910
|
-
density: Density;
|
|
6911
|
-
centerAffix: boolean;
|
|
6912
|
-
glow: boolean;
|
|
6913
|
-
hideSpinButtons: boolean;
|
|
6914
|
-
indentDetails: boolean;
|
|
6915
|
-
persistentHint: boolean;
|
|
6916
|
-
messages: string | readonly string[];
|
|
6917
|
-
direction: "horizontal" | "vertical";
|
|
6918
|
-
} & {
|
|
6919
|
-
theme?: string | undefined;
|
|
6920
|
-
class?: any;
|
|
6921
|
-
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
6922
|
-
name?: string | undefined;
|
|
6923
|
-
label?: string | undefined;
|
|
6924
|
-
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
6925
|
-
validationValue?: any;
|
|
6926
|
-
maxWidth?: string | number | undefined;
|
|
6927
|
-
minWidth?: string | number | undefined;
|
|
6928
|
-
width?: string | number | undefined;
|
|
6929
|
-
id?: string | undefined;
|
|
6930
|
-
appendIcon?: IconValue | undefined;
|
|
6931
|
-
baseColor?: string | undefined;
|
|
6932
|
-
color?: string | undefined;
|
|
6933
|
-
iconColor?: string | boolean | undefined;
|
|
6934
|
-
prependIcon?: IconValue | undefined;
|
|
6935
|
-
hideDetails?: "auto" | boolean | undefined;
|
|
6936
|
-
hint?: string | undefined;
|
|
6937
|
-
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6938
|
-
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
6939
|
-
} & {}, {
|
|
6940
|
-
reset: () => Promise<void>;
|
|
6941
|
-
resetValidation: () => Promise<void>;
|
|
6942
|
-
validate: (silent?: boolean) => Promise<string[]>;
|
|
6943
|
-
isValid: ComputedRef<boolean | null>;
|
|
6944
|
-
errorMessages: ComputedRef<string[]>;
|
|
6945
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Omit<{
|
|
6946
|
-
"update:modelValue": (value: any) => true;
|
|
6947
|
-
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
6948
|
-
style: StyleValue;
|
|
6949
|
-
focused: boolean;
|
|
6950
|
-
disabled: boolean | null;
|
|
6951
|
-
error: boolean;
|
|
6952
|
-
errorMessages: string | readonly string[] | null;
|
|
6953
|
-
maxErrors: string | number;
|
|
6954
|
-
readonly: boolean | null;
|
|
6955
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
6956
|
-
density: Density;
|
|
6957
|
-
centerAffix: boolean;
|
|
6958
|
-
glow: boolean;
|
|
6959
|
-
hideSpinButtons: boolean;
|
|
6960
|
-
indentDetails: boolean;
|
|
6961
|
-
persistentHint: boolean;
|
|
6962
|
-
messages: string | readonly string[];
|
|
6963
|
-
direction: "horizontal" | "vertical";
|
|
6964
|
-
}, {}, string, SlotsType<Partial<{
|
|
6965
|
-
default: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6966
|
-
[key: string]: any;
|
|
6967
|
-
}>[];
|
|
6968
|
-
prepend: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6969
|
-
[key: string]: any;
|
|
6970
|
-
}>[];
|
|
6971
|
-
append: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6972
|
-
[key: string]: any;
|
|
6973
|
-
}>[];
|
|
6974
|
-
details: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
6975
|
-
[key: string]: any;
|
|
6976
|
-
}>[];
|
|
6977
|
-
message: (arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
6978
|
-
[key: string]: any;
|
|
6979
|
-
}>[];
|
|
6980
|
-
}>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
6981
|
-
beforeCreate?: (() => void)[] | (() => void);
|
|
6982
|
-
created?: (() => void)[] | (() => void);
|
|
6983
|
-
beforeMount?: (() => void)[] | (() => void);
|
|
6984
|
-
mounted?: (() => void)[] | (() => void);
|
|
6985
|
-
beforeUpdate?: (() => void)[] | (() => void);
|
|
6986
|
-
updated?: (() => void)[] | (() => void);
|
|
6987
|
-
activated?: (() => void)[] | (() => void);
|
|
6988
|
-
deactivated?: (() => void)[] | (() => void);
|
|
6989
|
-
beforeDestroy?: (() => void)[] | (() => void);
|
|
6990
|
-
beforeUnmount?: (() => void)[] | (() => void);
|
|
6991
|
-
destroyed?: (() => void)[] | (() => void);
|
|
6992
|
-
unmounted?: (() => void)[] | (() => void);
|
|
6993
|
-
renderTracked?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
6994
|
-
renderTriggered?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
6995
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void);
|
|
6996
|
-
};
|
|
6997
|
-
$forceUpdate: () => void;
|
|
6998
|
-
$nextTick: nextTick;
|
|
6999
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
7000
|
-
} & Readonly<{
|
|
7001
|
-
style: StyleValue;
|
|
7002
|
-
focused: boolean;
|
|
7003
|
-
disabled: boolean | null;
|
|
7004
|
-
error: boolean;
|
|
7005
|
-
errorMessages: string | readonly string[] | null;
|
|
7006
|
-
maxErrors: string | number;
|
|
7007
|
-
readonly: boolean | null;
|
|
7008
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
7009
|
-
density: Density;
|
|
7010
|
-
centerAffix: boolean;
|
|
7011
|
-
glow: boolean;
|
|
7012
|
-
hideSpinButtons: boolean;
|
|
7013
|
-
indentDetails: boolean;
|
|
7014
|
-
persistentHint: boolean;
|
|
7015
|
-
messages: string | readonly string[];
|
|
7016
|
-
direction: "horizontal" | "vertical";
|
|
7017
|
-
}> & Omit<{
|
|
7018
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
7019
|
-
focused: boolean;
|
|
7020
|
-
disabled: boolean | null;
|
|
7021
|
-
error: boolean;
|
|
7022
|
-
errorMessages: string | readonly string[] | null;
|
|
7023
|
-
maxErrors: string | number;
|
|
7024
|
-
readonly: boolean | null;
|
|
7025
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
7026
|
-
density: Density;
|
|
7027
|
-
centerAffix: boolean;
|
|
7028
|
-
glow: boolean;
|
|
7029
|
-
hideSpinButtons: boolean;
|
|
7030
|
-
indentDetails: boolean;
|
|
7031
|
-
persistentHint: boolean;
|
|
7032
|
-
messages: string | readonly string[];
|
|
7033
|
-
direction: "horizontal" | "vertical";
|
|
7034
|
-
} & {
|
|
7035
|
-
theme?: string | undefined;
|
|
7036
|
-
class?: any;
|
|
7037
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
7038
|
-
name?: string | undefined;
|
|
7039
|
-
label?: string | undefined;
|
|
7040
|
-
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
7041
|
-
validationValue?: any;
|
|
7042
|
-
maxWidth?: string | number | undefined;
|
|
7043
|
-
minWidth?: string | number | undefined;
|
|
7044
|
-
width?: string | number | undefined;
|
|
7045
|
-
id?: string | undefined;
|
|
7046
|
-
appendIcon?: IconValue | undefined;
|
|
7047
|
-
baseColor?: string | undefined;
|
|
7048
|
-
color?: string | undefined;
|
|
7049
|
-
iconColor?: string | boolean | undefined;
|
|
7050
|
-
prependIcon?: IconValue | undefined;
|
|
7051
|
-
hideDetails?: "auto" | boolean | undefined;
|
|
7052
|
-
hint?: string | undefined;
|
|
7053
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
7054
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
7055
|
-
}, "error" | "messages" | "disabled" | "style" | "density" | "reset" | "isValid" | "resetValidation" | "validate" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules"> & {
|
|
7056
|
-
reset: () => Promise<void>;
|
|
7057
|
-
resetValidation: () => Promise<void>;
|
|
7058
|
-
validate: (silent?: boolean) => Promise<string[]>;
|
|
7059
|
-
isValid: boolean | null;
|
|
7060
|
-
errorMessages: string[];
|
|
7061
|
-
} & ComponentCustomProperties & GenericProps< {
|
|
7062
|
-
modelValue?: unknown;
|
|
7063
|
-
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
7064
|
-
}, VInputSlots>, "error" | "messages" | "disabled" | "id" | "theme" | "color" | "width" | "name" | "class" | "style" | "density" | "appendIcon" | "baseColor" | "label" | "prependIcon" | "modelValue" | "$children" | "v-slots" | "v-slot:append" | "v-slot:default" | "v-slot:prepend" | "onUpdate:modelValue" | keyof VNodeProps | "maxWidth" | "minWidth" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules" | "onUpdate:focused" | "validateOn" | "validationValue" | "iconColor" | "hideDetails" | "hint" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & {
|
|
7065
|
-
_allExposed: {
|
|
7066
|
-
reset: () => Promise<void>;
|
|
7067
|
-
resetValidation: () => Promise<void>;
|
|
7068
|
-
validate: (silent?: boolean) => Promise<string[]>;
|
|
7069
|
-
isValid: ComputedRef<boolean | null>;
|
|
7070
|
-
errorMessages: ComputedRef<string[]>;
|
|
7071
|
-
} | {
|
|
7072
|
-
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
7073
|
-
fieldIconColor: ComputedRef<string | undefined>;
|
|
7074
|
-
} | {};
|
|
7075
|
-
}, {}, {}, {}, {
|
|
7076
|
-
style: StyleValue;
|
|
7077
|
-
focused: boolean;
|
|
7078
|
-
errorMessages: string | readonly string[] | null;
|
|
7079
|
-
maxErrors: string | number;
|
|
7080
|
-
readonly: boolean | null;
|
|
7081
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
7082
|
-
density: Density;
|
|
7083
|
-
rounded: string | number | boolean;
|
|
7084
|
-
tile: boolean;
|
|
7085
|
-
hideSpinButtons: boolean;
|
|
7086
|
-
indentDetails: boolean;
|
|
7087
|
-
persistentHint: boolean;
|
|
7088
|
-
messages: string | readonly string[];
|
|
7089
|
-
clearable: boolean;
|
|
7090
|
-
clearIcon: IconValue;
|
|
7091
|
-
active: boolean;
|
|
7092
|
-
centerAffix: boolean;
|
|
7093
|
-
dirty: boolean;
|
|
7094
|
-
disabled: boolean;
|
|
7093
|
+
dirty: boolean;
|
|
7094
|
+
disabled: boolean;
|
|
7095
7095
|
glow: boolean;
|
|
7096
7096
|
error: boolean;
|
|
7097
7097
|
flat: boolean;
|
|
@@ -15859,277 +15859,13 @@ declare function __VLS_template_6(): {
|
|
|
15859
15859
|
$props: Partial<{
|
|
15860
15860
|
style: StyleValue;
|
|
15861
15861
|
focused: boolean;
|
|
15862
|
-
|
|
15863
|
-
|
|
15864
|
-
|
|
15865
|
-
|
|
15866
|
-
|
|
15867
|
-
|
|
15868
|
-
|
|
15869
|
-
disabled: boolean;
|
|
15870
|
-
glow: boolean;
|
|
15871
|
-
error: boolean;
|
|
15872
|
-
flat: boolean;
|
|
15873
|
-
persistentClear: boolean;
|
|
15874
|
-
reverse: boolean;
|
|
15875
|
-
singleLine: boolean;
|
|
15876
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
15877
|
-
details: boolean;
|
|
15878
|
-
}> & Omit<{
|
|
15879
|
-
theme?: string | undefined;
|
|
15880
|
-
class?: any;
|
|
15881
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
15882
|
-
focused: boolean;
|
|
15883
|
-
"onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
15884
|
-
rounded?: string | number | boolean | undefined;
|
|
15885
|
-
tile: boolean;
|
|
15886
|
-
loading?: string | boolean | undefined;
|
|
15887
|
-
appendInnerIcon?: IconValue | undefined;
|
|
15888
|
-
bgColor?: string | undefined;
|
|
15889
|
-
clearable: boolean;
|
|
15890
|
-
clearIcon: IconValue;
|
|
15891
|
-
active: boolean;
|
|
15892
|
-
centerAffix?: boolean | undefined;
|
|
15893
|
-
color?: string | undefined;
|
|
15894
|
-
baseColor?: string | undefined;
|
|
15895
|
-
dirty: boolean;
|
|
15896
|
-
disabled: boolean;
|
|
15897
|
-
glow: boolean;
|
|
15898
|
-
error: boolean;
|
|
15899
|
-
flat: boolean;
|
|
15900
|
-
iconColor?: string | boolean | undefined;
|
|
15901
|
-
label?: string | undefined;
|
|
15902
|
-
persistentClear: boolean;
|
|
15903
|
-
prependInnerIcon?: IconValue | undefined;
|
|
15904
|
-
reverse: boolean;
|
|
15905
|
-
singleLine: boolean;
|
|
15906
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
15907
|
-
"onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
|
|
15908
|
-
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
15909
|
-
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
15910
|
-
id?: string | undefined;
|
|
15911
|
-
details: boolean;
|
|
15912
|
-
labelId?: string | undefined;
|
|
15913
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
15914
|
-
$attrs: {
|
|
15915
|
-
[x: string]: unknown;
|
|
15916
|
-
};
|
|
15917
|
-
$refs: {
|
|
15918
|
-
[x: string]: unknown;
|
|
15919
|
-
};
|
|
15920
|
-
$slots: Readonly<{
|
|
15921
|
-
clear?: ((arg: DefaultInputSlot & {
|
|
15922
|
-
props: Record<string, any>;
|
|
15923
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
15924
|
-
[key: string]: any;
|
|
15925
|
-
}>[]) | undefined;
|
|
15926
|
-
"prepend-inner"?: ((arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
15927
|
-
[key: string]: any;
|
|
15928
|
-
}>[]) | undefined;
|
|
15929
|
-
"append-inner"?: ((arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
15930
|
-
[key: string]: any;
|
|
15931
|
-
}>[]) | undefined;
|
|
15932
|
-
label?: ((arg: DefaultInputSlot & {
|
|
15933
|
-
label: string | undefined;
|
|
15934
|
-
props: Record<string, any>;
|
|
15935
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
15936
|
-
[key: string]: any;
|
|
15937
|
-
}>[]) | undefined;
|
|
15938
|
-
loader?: ((arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
15939
|
-
[key: string]: any;
|
|
15940
|
-
}>[]) | undefined;
|
|
15941
|
-
default?: ((arg: VFieldSlot) => VNode<RendererNode, RendererElement, {
|
|
15942
|
-
[key: string]: any;
|
|
15943
|
-
}>[]) | undefined;
|
|
15944
|
-
}>;
|
|
15945
|
-
$root: ComponentPublicInstance | null;
|
|
15946
|
-
$parent: ComponentPublicInstance | null;
|
|
15947
|
-
$host: Element | null;
|
|
15948
|
-
$emit: (event: "update:focused", focused: boolean) => void;
|
|
15949
|
-
$el: any;
|
|
15950
|
-
$options: ComponentOptionsBase< {
|
|
15951
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
15952
|
-
focused: boolean;
|
|
15953
|
-
tile: boolean;
|
|
15954
|
-
clearable: boolean;
|
|
15955
|
-
clearIcon: IconValue;
|
|
15956
|
-
active: boolean;
|
|
15957
|
-
dirty: boolean;
|
|
15958
|
-
disabled: boolean;
|
|
15959
|
-
glow: boolean;
|
|
15960
|
-
error: boolean;
|
|
15961
|
-
flat: boolean;
|
|
15962
|
-
persistentClear: boolean;
|
|
15963
|
-
reverse: boolean;
|
|
15964
|
-
singleLine: boolean;
|
|
15965
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
15966
|
-
details: boolean;
|
|
15967
|
-
} & {
|
|
15968
|
-
theme?: string | undefined;
|
|
15969
|
-
class?: any;
|
|
15970
|
-
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
15971
|
-
rounded?: string | number | boolean | undefined;
|
|
15972
|
-
loading?: string | boolean | undefined;
|
|
15973
|
-
appendInnerIcon?: IconValue | undefined;
|
|
15974
|
-
bgColor?: string | undefined;
|
|
15975
|
-
centerAffix?: boolean | undefined;
|
|
15976
|
-
color?: string | undefined;
|
|
15977
|
-
baseColor?: string | undefined;
|
|
15978
|
-
iconColor?: string | boolean | undefined;
|
|
15979
|
-
label?: string | undefined;
|
|
15980
|
-
prependInnerIcon?: IconValue | undefined;
|
|
15981
|
-
"onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
|
|
15982
|
-
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
15983
|
-
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
15984
|
-
id?: string | undefined;
|
|
15985
|
-
labelId?: string | undefined;
|
|
15986
|
-
} & {
|
|
15987
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
15988
|
-
}, {
|
|
15989
|
-
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
15990
|
-
fieldIconColor: ComputedRef<string | undefined>;
|
|
15991
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Omit<{
|
|
15992
|
-
"update:focused": (focused: boolean) => true;
|
|
15993
|
-
"update:modelValue": (value: any) => true;
|
|
15994
|
-
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
15995
|
-
style: StyleValue;
|
|
15996
|
-
focused: boolean;
|
|
15997
|
-
rounded: string | number | boolean;
|
|
15998
|
-
tile: boolean;
|
|
15999
|
-
clearable: boolean;
|
|
16000
|
-
clearIcon: IconValue;
|
|
16001
|
-
active: boolean;
|
|
16002
|
-
centerAffix: boolean;
|
|
16003
|
-
dirty: boolean;
|
|
16004
|
-
disabled: boolean;
|
|
16005
|
-
glow: boolean;
|
|
16006
|
-
error: boolean;
|
|
16007
|
-
flat: boolean;
|
|
16008
|
-
persistentClear: boolean;
|
|
16009
|
-
reverse: boolean;
|
|
16010
|
-
singleLine: boolean;
|
|
16011
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16012
|
-
details: boolean;
|
|
16013
|
-
}, {}, string, SlotsType<Partial<{
|
|
16014
|
-
clear: (arg: DefaultInputSlot & {
|
|
16015
|
-
props: Record<string, any>;
|
|
16016
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
16017
|
-
[key: string]: any;
|
|
16018
|
-
}>[];
|
|
16019
|
-
"prepend-inner": (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16020
|
-
[key: string]: any;
|
|
16021
|
-
}>[];
|
|
16022
|
-
"append-inner": (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16023
|
-
[key: string]: any;
|
|
16024
|
-
}>[];
|
|
16025
|
-
label: (arg: DefaultInputSlot & {
|
|
16026
|
-
label: string | undefined;
|
|
16027
|
-
props: Record<string, any>;
|
|
16028
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
16029
|
-
[key: string]: any;
|
|
16030
|
-
}>[];
|
|
16031
|
-
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
16032
|
-
[key: string]: any;
|
|
16033
|
-
}>[];
|
|
16034
|
-
default: (arg: VFieldSlot) => VNode<RendererNode, RendererElement, {
|
|
16035
|
-
[key: string]: any;
|
|
16036
|
-
}>[];
|
|
16037
|
-
}>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
16038
|
-
beforeCreate?: (() => void)[] | (() => void);
|
|
16039
|
-
created?: (() => void)[] | (() => void);
|
|
16040
|
-
beforeMount?: (() => void)[] | (() => void);
|
|
16041
|
-
mounted?: (() => void)[] | (() => void);
|
|
16042
|
-
beforeUpdate?: (() => void)[] | (() => void);
|
|
16043
|
-
updated?: (() => void)[] | (() => void);
|
|
16044
|
-
activated?: (() => void)[] | (() => void);
|
|
16045
|
-
deactivated?: (() => void)[] | (() => void);
|
|
16046
|
-
beforeDestroy?: (() => void)[] | (() => void);
|
|
16047
|
-
beforeUnmount?: (() => void)[] | (() => void);
|
|
16048
|
-
destroyed?: (() => void)[] | (() => void);
|
|
16049
|
-
unmounted?: (() => void)[] | (() => void);
|
|
16050
|
-
renderTracked?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
16051
|
-
renderTriggered?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
16052
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void);
|
|
16053
|
-
};
|
|
16054
|
-
$forceUpdate: () => void;
|
|
16055
|
-
$nextTick: nextTick;
|
|
16056
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
16057
|
-
} & Readonly<{
|
|
16058
|
-
style: StyleValue;
|
|
16059
|
-
focused: boolean;
|
|
16060
|
-
rounded: string | number | boolean;
|
|
16061
|
-
tile: boolean;
|
|
16062
|
-
clearable: boolean;
|
|
16063
|
-
clearIcon: IconValue;
|
|
16064
|
-
active: boolean;
|
|
16065
|
-
centerAffix: boolean;
|
|
16066
|
-
dirty: boolean;
|
|
16067
|
-
disabled: boolean;
|
|
16068
|
-
glow: boolean;
|
|
16069
|
-
error: boolean;
|
|
16070
|
-
flat: boolean;
|
|
16071
|
-
persistentClear: boolean;
|
|
16072
|
-
reverse: boolean;
|
|
16073
|
-
singleLine: boolean;
|
|
16074
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16075
|
-
details: boolean;
|
|
16076
|
-
}> & Omit<{
|
|
16077
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16078
|
-
focused: boolean;
|
|
16079
|
-
tile: boolean;
|
|
16080
|
-
clearable: boolean;
|
|
16081
|
-
clearIcon: IconValue;
|
|
16082
|
-
active: boolean;
|
|
16083
|
-
dirty: boolean;
|
|
16084
|
-
disabled: boolean;
|
|
16085
|
-
glow: boolean;
|
|
16086
|
-
error: boolean;
|
|
16087
|
-
flat: boolean;
|
|
16088
|
-
persistentClear: boolean;
|
|
16089
|
-
reverse: boolean;
|
|
16090
|
-
singleLine: boolean;
|
|
16091
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16092
|
-
details: boolean;
|
|
16093
|
-
} & {
|
|
16094
|
-
theme?: string | undefined;
|
|
16095
|
-
class?: any;
|
|
16096
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
16097
|
-
rounded?: string | number | boolean | undefined;
|
|
16098
|
-
loading?: string | boolean | undefined;
|
|
16099
|
-
appendInnerIcon?: IconValue | undefined;
|
|
16100
|
-
bgColor?: string | undefined;
|
|
16101
|
-
centerAffix?: boolean | undefined;
|
|
16102
|
-
color?: string | undefined;
|
|
16103
|
-
baseColor?: string | undefined;
|
|
16104
|
-
iconColor?: string | boolean | undefined;
|
|
16105
|
-
label?: string | undefined;
|
|
16106
|
-
prependInnerIcon?: IconValue | undefined;
|
|
16107
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16108
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16109
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16110
|
-
id?: string | undefined;
|
|
16111
|
-
labelId?: string | undefined;
|
|
16112
|
-
} & {
|
|
16113
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
16114
|
-
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine"> & {
|
|
16115
|
-
controlRef: HTMLElement | undefined;
|
|
16116
|
-
fieldIconColor: string | undefined;
|
|
16117
|
-
} & ComponentCustomProperties & GenericProps< {
|
|
16118
|
-
modelValue?: unknown;
|
|
16119
|
-
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
16120
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & Omit<Omit<{
|
|
16121
|
-
$: ComponentInternalInstance;
|
|
16122
|
-
$data: {};
|
|
16123
|
-
$props: Partial<{
|
|
16124
|
-
style: StyleValue;
|
|
16125
|
-
focused: boolean;
|
|
16126
|
-
disabled: boolean | null;
|
|
16127
|
-
error: boolean;
|
|
16128
|
-
errorMessages: string | readonly string[] | null;
|
|
16129
|
-
maxErrors: string | number;
|
|
16130
|
-
readonly: boolean | null;
|
|
16131
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16132
|
-
density: Density;
|
|
15862
|
+
disabled: boolean | null;
|
|
15863
|
+
error: boolean;
|
|
15864
|
+
errorMessages: string | readonly string[] | null;
|
|
15865
|
+
maxErrors: string | number;
|
|
15866
|
+
readonly: boolean | null;
|
|
15867
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
15868
|
+
density: Density;
|
|
16133
15869
|
centerAffix: boolean;
|
|
16134
15870
|
glow: boolean;
|
|
16135
15871
|
hideSpinButtons: boolean;
|
|
@@ -16366,230 +16102,7 @@ declare function __VLS_template_6(): {
|
|
|
16366
16102
|
} & ComponentCustomProperties & GenericProps< {
|
|
16367
16103
|
modelValue?: unknown;
|
|
16368
16104
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
16369
|
-
}, VInputSlots>, "error" | "messages" | "disabled" | "id" | "theme" | "color" | "width" | "name" | "class" | "style" | "density" | "appendIcon" | "baseColor" | "label" | "prependIcon" | "modelValue" | "$children" | "v-slots" | "v-slot:append" | "v-slot:default" | "v-slot:prepend" | "onUpdate:modelValue" | keyof VNodeProps | "maxWidth" | "minWidth" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules" | "onUpdate:focused" | "validateOn" | "validationValue" | "iconColor" | "hideDetails" | "hint" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & {
|
|
16370
|
-
_allExposed: {
|
|
16371
|
-
reset: () => Promise<void>;
|
|
16372
|
-
resetValidation: () => Promise<void>;
|
|
16373
|
-
validate: (silent?: boolean) => Promise<string[]>;
|
|
16374
|
-
isValid: ComputedRef<boolean | null>;
|
|
16375
|
-
errorMessages: ComputedRef<string[]>;
|
|
16376
|
-
} | {
|
|
16377
|
-
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
16378
|
-
fieldIconColor: ComputedRef<string | undefined>;
|
|
16379
|
-
} | {};
|
|
16380
|
-
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16381
|
-
'click:control': (e: MouseEvent) => true;
|
|
16382
|
-
'mousedown:control': (e: MouseEvent) => true;
|
|
16383
|
-
'update:focused': (focused: boolean) => true;
|
|
16384
|
-
'update:modelValue': (val: string) => true;
|
|
16385
|
-
'update:rows': (rows: number) => true;
|
|
16386
|
-
}, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
16387
|
-
style: StyleValue;
|
|
16388
|
-
focused: boolean;
|
|
16389
|
-
errorMessages: string | readonly string[] | null;
|
|
16390
|
-
maxErrors: string | number;
|
|
16391
|
-
readonly: boolean | null;
|
|
16392
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16393
|
-
density: Density;
|
|
16394
|
-
rounded: string | number | boolean;
|
|
16395
|
-
tile: boolean;
|
|
16396
|
-
hideSpinButtons: boolean;
|
|
16397
|
-
indentDetails: boolean;
|
|
16398
|
-
persistentHint: boolean;
|
|
16399
|
-
messages: string | readonly string[];
|
|
16400
|
-
clearable: boolean;
|
|
16401
|
-
clearIcon: IconValue;
|
|
16402
|
-
active: boolean;
|
|
16403
|
-
centerAffix: boolean;
|
|
16404
|
-
dirty: boolean;
|
|
16405
|
-
disabled: boolean;
|
|
16406
|
-
glow: boolean;
|
|
16407
|
-
error: boolean;
|
|
16408
|
-
flat: boolean;
|
|
16409
|
-
persistentClear: boolean;
|
|
16410
|
-
reverse: boolean;
|
|
16411
|
-
singleLine: boolean;
|
|
16412
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16413
|
-
autoGrow: boolean;
|
|
16414
|
-
autofocus: boolean;
|
|
16415
|
-
persistentPlaceholder: boolean;
|
|
16416
|
-
persistentCounter: boolean;
|
|
16417
|
-
noResize: boolean;
|
|
16418
|
-
rows: string | number;
|
|
16419
|
-
}, true, {}, SlotsType<Partial<{
|
|
16420
|
-
prepend: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16421
|
-
[key: string]: any;
|
|
16422
|
-
}>[];
|
|
16423
|
-
append: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16424
|
-
[key: string]: any;
|
|
16425
|
-
}>[];
|
|
16426
|
-
details: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16427
|
-
[key: string]: any;
|
|
16428
|
-
}>[];
|
|
16429
|
-
message: (arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
16430
|
-
[key: string]: any;
|
|
16431
|
-
}>[];
|
|
16432
|
-
clear: (arg: DefaultInputSlot & {
|
|
16433
|
-
props: Record<string, any>;
|
|
16434
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
16435
|
-
[key: string]: any;
|
|
16436
|
-
}>[];
|
|
16437
|
-
'prepend-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16438
|
-
[key: string]: any;
|
|
16439
|
-
}>[];
|
|
16440
|
-
'append-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16441
|
-
[key: string]: any;
|
|
16442
|
-
}>[];
|
|
16443
|
-
label: (arg: DefaultInputSlot & {
|
|
16444
|
-
label: string | undefined;
|
|
16445
|
-
props: Record<string, any>;
|
|
16446
|
-
}) => VNode<RendererNode, RendererElement, {
|
|
16447
|
-
[key: string]: any;
|
|
16448
|
-
}>[];
|
|
16449
|
-
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
16450
|
-
[key: string]: any;
|
|
16451
|
-
}>[];
|
|
16452
|
-
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
16453
|
-
[key: string]: any;
|
|
16454
|
-
}>[];
|
|
16455
|
-
}>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
16456
|
-
P: {};
|
|
16457
|
-
B: {};
|
|
16458
|
-
D: {};
|
|
16459
|
-
C: {};
|
|
16460
|
-
M: {};
|
|
16461
|
-
Defaults: {};
|
|
16462
|
-
}, {
|
|
16463
|
-
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16464
|
-
focused: boolean;
|
|
16465
|
-
errorMessages: string | readonly string[] | null;
|
|
16466
|
-
maxErrors: string | number;
|
|
16467
|
-
readonly: boolean | null;
|
|
16468
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16469
|
-
density: Density;
|
|
16470
|
-
tile: boolean;
|
|
16471
|
-
hideSpinButtons: boolean;
|
|
16472
|
-
indentDetails: boolean;
|
|
16473
|
-
persistentHint: boolean;
|
|
16474
|
-
messages: string | readonly string[];
|
|
16475
|
-
clearable: boolean;
|
|
16476
|
-
clearIcon: IconValue;
|
|
16477
|
-
active: boolean;
|
|
16478
|
-
dirty: boolean;
|
|
16479
|
-
disabled: boolean;
|
|
16480
|
-
glow: boolean;
|
|
16481
|
-
error: boolean;
|
|
16482
|
-
flat: boolean;
|
|
16483
|
-
persistentClear: boolean;
|
|
16484
|
-
reverse: boolean;
|
|
16485
|
-
singleLine: boolean;
|
|
16486
|
-
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16487
|
-
autoGrow: boolean;
|
|
16488
|
-
autofocus: boolean;
|
|
16489
|
-
persistentPlaceholder: boolean;
|
|
16490
|
-
persistentCounter: boolean;
|
|
16491
|
-
noResize: boolean;
|
|
16492
|
-
rows: string | number;
|
|
16493
|
-
} & {
|
|
16494
|
-
theme?: string | undefined;
|
|
16495
|
-
class?: any;
|
|
16496
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
16497
|
-
name?: string | undefined;
|
|
16498
|
-
modelValue?: any;
|
|
16499
|
-
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
16500
|
-
validationValue?: any;
|
|
16501
|
-
rounded?: string | number | boolean | undefined;
|
|
16502
|
-
maxWidth?: string | number | undefined;
|
|
16503
|
-
minWidth?: string | number | undefined;
|
|
16504
|
-
width?: string | number | undefined;
|
|
16505
|
-
loading?: string | boolean | undefined;
|
|
16506
|
-
id?: string | undefined;
|
|
16507
|
-
appendIcon?: IconValue | undefined;
|
|
16508
|
-
prependIcon?: IconValue | undefined;
|
|
16509
|
-
hideDetails?: "auto" | boolean | undefined;
|
|
16510
|
-
hint?: string | undefined;
|
|
16511
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16512
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16513
|
-
appendInnerIcon?: IconValue | undefined;
|
|
16514
|
-
bgColor?: string | undefined;
|
|
16515
|
-
centerAffix?: boolean | undefined;
|
|
16516
|
-
color?: string | undefined;
|
|
16517
|
-
baseColor?: string | undefined;
|
|
16518
|
-
iconColor?: string | boolean | undefined;
|
|
16519
|
-
label?: string | undefined;
|
|
16520
|
-
prependInnerIcon?: IconValue | undefined;
|
|
16521
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16522
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16523
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16524
|
-
autocomplete?: string | undefined;
|
|
16525
|
-
counter?: string | number | true | undefined;
|
|
16526
|
-
counterValue?: ((value: any) => number) | undefined;
|
|
16527
|
-
prefix?: string | undefined;
|
|
16528
|
-
placeholder?: string | undefined;
|
|
16529
|
-
maxHeight?: string | number | undefined;
|
|
16530
|
-
maxRows?: string | number | undefined;
|
|
16531
|
-
suffix?: string | undefined;
|
|
16532
|
-
modelModifiers?: Record<string, boolean> | undefined;
|
|
16533
|
-
} & {
|
|
16534
|
-
$children?: {
|
|
16535
|
-
prepend?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16536
|
-
append?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16537
|
-
details?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16538
|
-
message?: ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
16539
|
-
clear?: ((arg: DefaultInputSlot & {
|
|
16540
|
-
props: Record<string, any>;
|
|
16541
|
-
}) => VNodeChild) | undefined;
|
|
16542
|
-
"prepend-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16543
|
-
"append-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16544
|
-
label?: ((arg: DefaultInputSlot & {
|
|
16545
|
-
label: string | undefined;
|
|
16546
|
-
props: Record<string, any>;
|
|
16547
|
-
}) => VNodeChild) | undefined;
|
|
16548
|
-
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
16549
|
-
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
16550
|
-
} | {
|
|
16551
|
-
$stable?: boolean;
|
|
16552
|
-
} | {} | VNodeChild;
|
|
16553
|
-
'v-slots'?: {
|
|
16554
|
-
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16555
|
-
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16556
|
-
details?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16557
|
-
message?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
16558
|
-
clear?: false | ((arg: DefaultInputSlot & {
|
|
16559
|
-
props: Record<string, any>;
|
|
16560
|
-
}) => VNodeChild) | undefined;
|
|
16561
|
-
"prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16562
|
-
"append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16563
|
-
label?: false | ((arg: DefaultInputSlot & {
|
|
16564
|
-
label: string | undefined;
|
|
16565
|
-
props: Record<string, any>;
|
|
16566
|
-
}) => VNodeChild) | undefined;
|
|
16567
|
-
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
16568
|
-
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
16569
|
-
} | undefined;
|
|
16570
|
-
} & {
|
|
16571
|
-
"v-slot:append"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16572
|
-
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16573
|
-
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
16574
|
-
props: Record<string, any>;
|
|
16575
|
-
}) => VNodeChild) | undefined;
|
|
16576
|
-
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
16577
|
-
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16578
|
-
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
16579
|
-
label: string | undefined;
|
|
16580
|
-
props: Record<string, any>;
|
|
16581
|
-
}) => VNodeChild) | undefined;
|
|
16582
|
-
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
16583
|
-
"v-slot:message"?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
16584
|
-
"v-slot:prepend"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16585
|
-
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16586
|
-
} & {
|
|
16587
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
16588
|
-
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
16589
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
16590
|
-
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
16591
|
-
"onUpdate:rows"?: ((rows: number) => any) | undefined;
|
|
16592
|
-
}, HTMLTextAreaElement & Omit<Omit<{
|
|
16105
|
+
}, VInputSlots>, "error" | "messages" | "disabled" | "id" | "theme" | "color" | "width" | "name" | "class" | "style" | "density" | "appendIcon" | "baseColor" | "label" | "prependIcon" | "modelValue" | "$children" | "v-slots" | "v-slot:append" | "v-slot:default" | "v-slot:prepend" | "onUpdate:modelValue" | keyof VNodeProps | "maxWidth" | "minWidth" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules" | "onUpdate:focused" | "validateOn" | "validationValue" | "iconColor" | "hideDetails" | "hint" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
16593
16106
|
$: ComponentInternalInstance;
|
|
16594
16107
|
$data: {};
|
|
16595
16108
|
$props: Partial<{
|
|
@@ -16853,31 +16366,254 @@ declare function __VLS_template_6(): {
|
|
|
16853
16366
|
} & ComponentCustomProperties & GenericProps< {
|
|
16854
16367
|
modelValue?: unknown;
|
|
16855
16368
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
16856
|
-
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> &
|
|
16857
|
-
|
|
16858
|
-
|
|
16859
|
-
|
|
16369
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
16370
|
+
_allExposed: {
|
|
16371
|
+
reset: () => Promise<void>;
|
|
16372
|
+
resetValidation: () => Promise<void>;
|
|
16373
|
+
validate: (silent?: boolean) => Promise<string[]>;
|
|
16374
|
+
isValid: ComputedRef<boolean | null>;
|
|
16375
|
+
errorMessages: ComputedRef<string[]>;
|
|
16376
|
+
} | {
|
|
16377
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
16378
|
+
fieldIconColor: ComputedRef<string | undefined>;
|
|
16379
|
+
} | {};
|
|
16380
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
16381
|
+
'click:control': (e: MouseEvent) => true;
|
|
16382
|
+
'mousedown:control': (e: MouseEvent) => true;
|
|
16383
|
+
'update:focused': (focused: boolean) => true;
|
|
16384
|
+
'update:modelValue': (val: string) => true;
|
|
16385
|
+
'update:rows': (rows: number) => true;
|
|
16386
|
+
}, VNodeProps & AllowedComponentProps & ComponentCustomProps, {
|
|
16860
16387
|
style: StyleValue;
|
|
16861
16388
|
focused: boolean;
|
|
16862
|
-
disabled: boolean | null;
|
|
16863
|
-
error: boolean;
|
|
16864
16389
|
errorMessages: string | readonly string[] | null;
|
|
16865
16390
|
maxErrors: string | number;
|
|
16866
16391
|
readonly: boolean | null;
|
|
16867
16392
|
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16868
16393
|
density: Density;
|
|
16869
|
-
|
|
16870
|
-
|
|
16394
|
+
rounded: string | number | boolean;
|
|
16395
|
+
tile: boolean;
|
|
16871
16396
|
hideSpinButtons: boolean;
|
|
16872
16397
|
indentDetails: boolean;
|
|
16873
16398
|
persistentHint: boolean;
|
|
16874
16399
|
messages: string | readonly string[];
|
|
16875
|
-
|
|
16876
|
-
|
|
16877
|
-
|
|
16878
|
-
|
|
16879
|
-
|
|
16880
|
-
|
|
16400
|
+
clearable: boolean;
|
|
16401
|
+
clearIcon: IconValue;
|
|
16402
|
+
active: boolean;
|
|
16403
|
+
centerAffix: boolean;
|
|
16404
|
+
dirty: boolean;
|
|
16405
|
+
disabled: boolean;
|
|
16406
|
+
glow: boolean;
|
|
16407
|
+
error: boolean;
|
|
16408
|
+
flat: boolean;
|
|
16409
|
+
persistentClear: boolean;
|
|
16410
|
+
reverse: boolean;
|
|
16411
|
+
singleLine: boolean;
|
|
16412
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16413
|
+
autoGrow: boolean;
|
|
16414
|
+
autofocus: boolean;
|
|
16415
|
+
persistentPlaceholder: boolean;
|
|
16416
|
+
persistentCounter: boolean;
|
|
16417
|
+
noResize: boolean;
|
|
16418
|
+
rows: string | number;
|
|
16419
|
+
}, true, {}, SlotsType<Partial<{
|
|
16420
|
+
prepend: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16421
|
+
[key: string]: any;
|
|
16422
|
+
}>[];
|
|
16423
|
+
append: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16424
|
+
[key: string]: any;
|
|
16425
|
+
}>[];
|
|
16426
|
+
details: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16427
|
+
[key: string]: any;
|
|
16428
|
+
}>[];
|
|
16429
|
+
message: (arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
16430
|
+
[key: string]: any;
|
|
16431
|
+
}>[];
|
|
16432
|
+
clear: (arg: DefaultInputSlot & {
|
|
16433
|
+
props: Record<string, any>;
|
|
16434
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
16435
|
+
[key: string]: any;
|
|
16436
|
+
}>[];
|
|
16437
|
+
'prepend-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16438
|
+
[key: string]: any;
|
|
16439
|
+
}>[];
|
|
16440
|
+
'append-inner': (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16441
|
+
[key: string]: any;
|
|
16442
|
+
}>[];
|
|
16443
|
+
label: (arg: DefaultInputSlot & {
|
|
16444
|
+
label: string | undefined;
|
|
16445
|
+
props: Record<string, any>;
|
|
16446
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
16447
|
+
[key: string]: any;
|
|
16448
|
+
}>[];
|
|
16449
|
+
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
16450
|
+
[key: string]: any;
|
|
16451
|
+
}>[];
|
|
16452
|
+
counter: (arg: VCounterSlot) => VNode<RendererNode, RendererElement, {
|
|
16453
|
+
[key: string]: any;
|
|
16454
|
+
}>[];
|
|
16455
|
+
}>>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
16456
|
+
P: {};
|
|
16457
|
+
B: {};
|
|
16458
|
+
D: {};
|
|
16459
|
+
C: {};
|
|
16460
|
+
M: {};
|
|
16461
|
+
Defaults: {};
|
|
16462
|
+
}, {
|
|
16463
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16464
|
+
focused: boolean;
|
|
16465
|
+
errorMessages: string | readonly string[] | null;
|
|
16466
|
+
maxErrors: string | number;
|
|
16467
|
+
readonly: boolean | null;
|
|
16468
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16469
|
+
density: Density;
|
|
16470
|
+
tile: boolean;
|
|
16471
|
+
hideSpinButtons: boolean;
|
|
16472
|
+
indentDetails: boolean;
|
|
16473
|
+
persistentHint: boolean;
|
|
16474
|
+
messages: string | readonly string[];
|
|
16475
|
+
clearable: boolean;
|
|
16476
|
+
clearIcon: IconValue;
|
|
16477
|
+
active: boolean;
|
|
16478
|
+
dirty: boolean;
|
|
16479
|
+
disabled: boolean;
|
|
16480
|
+
glow: boolean;
|
|
16481
|
+
error: boolean;
|
|
16482
|
+
flat: boolean;
|
|
16483
|
+
persistentClear: boolean;
|
|
16484
|
+
reverse: boolean;
|
|
16485
|
+
singleLine: boolean;
|
|
16486
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16487
|
+
autoGrow: boolean;
|
|
16488
|
+
autofocus: boolean;
|
|
16489
|
+
persistentPlaceholder: boolean;
|
|
16490
|
+
persistentCounter: boolean;
|
|
16491
|
+
noResize: boolean;
|
|
16492
|
+
rows: string | number;
|
|
16493
|
+
} & {
|
|
16494
|
+
theme?: string | undefined;
|
|
16495
|
+
class?: any;
|
|
16496
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
16497
|
+
name?: string | undefined;
|
|
16498
|
+
modelValue?: any;
|
|
16499
|
+
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
16500
|
+
validationValue?: any;
|
|
16501
|
+
rounded?: string | number | boolean | undefined;
|
|
16502
|
+
maxWidth?: string | number | undefined;
|
|
16503
|
+
minWidth?: string | number | undefined;
|
|
16504
|
+
width?: string | number | undefined;
|
|
16505
|
+
loading?: string | boolean | undefined;
|
|
16506
|
+
id?: string | undefined;
|
|
16507
|
+
appendIcon?: IconValue | undefined;
|
|
16508
|
+
prependIcon?: IconValue | undefined;
|
|
16509
|
+
hideDetails?: "auto" | boolean | undefined;
|
|
16510
|
+
hint?: string | undefined;
|
|
16511
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16512
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16513
|
+
appendInnerIcon?: IconValue | undefined;
|
|
16514
|
+
bgColor?: string | undefined;
|
|
16515
|
+
centerAffix?: boolean | undefined;
|
|
16516
|
+
color?: string | undefined;
|
|
16517
|
+
baseColor?: string | undefined;
|
|
16518
|
+
iconColor?: string | boolean | undefined;
|
|
16519
|
+
label?: string | undefined;
|
|
16520
|
+
prependInnerIcon?: IconValue | undefined;
|
|
16521
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16522
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16523
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16524
|
+
autocomplete?: string | undefined;
|
|
16525
|
+
counter?: string | number | true | undefined;
|
|
16526
|
+
counterValue?: ((value: any) => number) | undefined;
|
|
16527
|
+
prefix?: string | undefined;
|
|
16528
|
+
placeholder?: string | undefined;
|
|
16529
|
+
maxHeight?: string | number | undefined;
|
|
16530
|
+
maxRows?: string | number | undefined;
|
|
16531
|
+
suffix?: string | undefined;
|
|
16532
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
16533
|
+
} & {
|
|
16534
|
+
$children?: {
|
|
16535
|
+
prepend?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16536
|
+
append?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16537
|
+
details?: ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16538
|
+
message?: ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
16539
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
16540
|
+
props: Record<string, any>;
|
|
16541
|
+
}) => VNodeChild) | undefined;
|
|
16542
|
+
"prepend-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16543
|
+
"append-inner"?: ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16544
|
+
label?: ((arg: DefaultInputSlot & {
|
|
16545
|
+
label: string | undefined;
|
|
16546
|
+
props: Record<string, any>;
|
|
16547
|
+
}) => VNodeChild) | undefined;
|
|
16548
|
+
loader?: ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
16549
|
+
counter?: ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
16550
|
+
} | {
|
|
16551
|
+
$stable?: boolean;
|
|
16552
|
+
} | {} | VNodeChild;
|
|
16553
|
+
'v-slots'?: {
|
|
16554
|
+
prepend?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16555
|
+
append?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16556
|
+
details?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16557
|
+
message?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
16558
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
16559
|
+
props: Record<string, any>;
|
|
16560
|
+
}) => VNodeChild) | undefined;
|
|
16561
|
+
"prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16562
|
+
"append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16563
|
+
label?: false | ((arg: DefaultInputSlot & {
|
|
16564
|
+
label: string | undefined;
|
|
16565
|
+
props: Record<string, any>;
|
|
16566
|
+
}) => VNodeChild) | undefined;
|
|
16567
|
+
loader?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
16568
|
+
counter?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
16569
|
+
} | undefined;
|
|
16570
|
+
} & {
|
|
16571
|
+
"v-slot:append"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16572
|
+
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16573
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
16574
|
+
props: Record<string, any>;
|
|
16575
|
+
}) => VNodeChild) | undefined;
|
|
16576
|
+
"v-slot:counter"?: false | ((arg: VCounterSlot) => VNodeChild) | undefined;
|
|
16577
|
+
"v-slot:details"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16578
|
+
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
16579
|
+
label: string | undefined;
|
|
16580
|
+
props: Record<string, any>;
|
|
16581
|
+
}) => VNodeChild) | undefined;
|
|
16582
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => VNodeChild) | undefined;
|
|
16583
|
+
"v-slot:message"?: false | ((arg: VMessageSlot) => VNodeChild) | undefined;
|
|
16584
|
+
"v-slot:prepend"?: false | ((arg: VInputSlot) => VNodeChild) | undefined;
|
|
16585
|
+
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => VNodeChild) | undefined;
|
|
16586
|
+
} & {
|
|
16587
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
16588
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
16589
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
16590
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
16591
|
+
"onUpdate:rows"?: ((rows: number) => any) | undefined;
|
|
16592
|
+
}, HTMLTextAreaElement & Omit<Omit<{
|
|
16593
|
+
$: ComponentInternalInstance;
|
|
16594
|
+
$data: {};
|
|
16595
|
+
$props: Partial<{
|
|
16596
|
+
style: StyleValue;
|
|
16597
|
+
focused: boolean;
|
|
16598
|
+
disabled: boolean | null;
|
|
16599
|
+
error: boolean;
|
|
16600
|
+
errorMessages: string | readonly string[] | null;
|
|
16601
|
+
maxErrors: string | number;
|
|
16602
|
+
readonly: boolean | null;
|
|
16603
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16604
|
+
density: Density;
|
|
16605
|
+
centerAffix: boolean;
|
|
16606
|
+
glow: boolean;
|
|
16607
|
+
hideSpinButtons: boolean;
|
|
16608
|
+
indentDetails: boolean;
|
|
16609
|
+
persistentHint: boolean;
|
|
16610
|
+
messages: string | readonly string[];
|
|
16611
|
+
direction: "horizontal" | "vertical";
|
|
16612
|
+
}> & Omit<{
|
|
16613
|
+
theme?: string | undefined;
|
|
16614
|
+
class?: any;
|
|
16615
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16616
|
+
focused: boolean;
|
|
16881
16617
|
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
16882
16618
|
disabled: boolean | null;
|
|
16883
16619
|
error: boolean;
|
|
@@ -16927,95 +16663,360 @@ declare function __VLS_template_6(): {
|
|
|
16927
16663
|
append?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16928
16664
|
[key: string]: any;
|
|
16929
16665
|
}>[]) | undefined;
|
|
16930
|
-
details?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16666
|
+
details?: ((arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16667
|
+
[key: string]: any;
|
|
16668
|
+
}>[]) | undefined;
|
|
16669
|
+
message?: ((arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
16670
|
+
[key: string]: any;
|
|
16671
|
+
}>[]) | undefined;
|
|
16672
|
+
}>;
|
|
16673
|
+
$root: ComponentPublicInstance | null;
|
|
16674
|
+
$parent: ComponentPublicInstance | null;
|
|
16675
|
+
$host: Element | null;
|
|
16676
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
16677
|
+
$el: any;
|
|
16678
|
+
$options: ComponentOptionsBase< {
|
|
16679
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16680
|
+
focused: boolean;
|
|
16681
|
+
disabled: boolean | null;
|
|
16682
|
+
error: boolean;
|
|
16683
|
+
errorMessages: string | readonly string[] | null;
|
|
16684
|
+
maxErrors: string | number;
|
|
16685
|
+
readonly: boolean | null;
|
|
16686
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16687
|
+
density: Density;
|
|
16688
|
+
centerAffix: boolean;
|
|
16689
|
+
glow: boolean;
|
|
16690
|
+
hideSpinButtons: boolean;
|
|
16691
|
+
indentDetails: boolean;
|
|
16692
|
+
persistentHint: boolean;
|
|
16693
|
+
messages: string | readonly string[];
|
|
16694
|
+
direction: "horizontal" | "vertical";
|
|
16695
|
+
} & {
|
|
16696
|
+
theme?: string | undefined;
|
|
16697
|
+
class?: any;
|
|
16698
|
+
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
16699
|
+
name?: string | undefined;
|
|
16700
|
+
label?: string | undefined;
|
|
16701
|
+
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
16702
|
+
validationValue?: any;
|
|
16703
|
+
maxWidth?: string | number | undefined;
|
|
16704
|
+
minWidth?: string | number | undefined;
|
|
16705
|
+
width?: string | number | undefined;
|
|
16706
|
+
id?: string | undefined;
|
|
16707
|
+
appendIcon?: IconValue | undefined;
|
|
16708
|
+
baseColor?: string | undefined;
|
|
16709
|
+
color?: string | undefined;
|
|
16710
|
+
iconColor?: string | boolean | undefined;
|
|
16711
|
+
prependIcon?: IconValue | undefined;
|
|
16712
|
+
hideDetails?: "auto" | boolean | undefined;
|
|
16713
|
+
hint?: string | undefined;
|
|
16714
|
+
"onClick:prepend"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16715
|
+
"onClick:append"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16716
|
+
} & {}, {
|
|
16717
|
+
reset: () => Promise<void>;
|
|
16718
|
+
resetValidation: () => Promise<void>;
|
|
16719
|
+
validate: (silent?: boolean) => Promise<string[]>;
|
|
16720
|
+
isValid: ComputedRef<boolean | null>;
|
|
16721
|
+
errorMessages: ComputedRef<string[]>;
|
|
16722
|
+
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Omit<{
|
|
16723
|
+
"update:modelValue": (value: any) => true;
|
|
16724
|
+
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:details" | "v-slot:message" | "v-slot:prepend" | "v-slots">, string, {
|
|
16725
|
+
style: StyleValue;
|
|
16726
|
+
focused: boolean;
|
|
16727
|
+
disabled: boolean | null;
|
|
16728
|
+
error: boolean;
|
|
16729
|
+
errorMessages: string | readonly string[] | null;
|
|
16730
|
+
maxErrors: string | number;
|
|
16731
|
+
readonly: boolean | null;
|
|
16732
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16733
|
+
density: Density;
|
|
16734
|
+
centerAffix: boolean;
|
|
16735
|
+
glow: boolean;
|
|
16736
|
+
hideSpinButtons: boolean;
|
|
16737
|
+
indentDetails: boolean;
|
|
16738
|
+
persistentHint: boolean;
|
|
16739
|
+
messages: string | readonly string[];
|
|
16740
|
+
direction: "horizontal" | "vertical";
|
|
16741
|
+
}, {}, string, SlotsType<Partial<{
|
|
16742
|
+
default: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16743
|
+
[key: string]: any;
|
|
16744
|
+
}>[];
|
|
16745
|
+
prepend: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16746
|
+
[key: string]: any;
|
|
16747
|
+
}>[];
|
|
16748
|
+
append: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16749
|
+
[key: string]: any;
|
|
16750
|
+
}>[];
|
|
16751
|
+
details: (arg: VInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16752
|
+
[key: string]: any;
|
|
16753
|
+
}>[];
|
|
16754
|
+
message: (arg: VMessageSlot) => VNode<RendererNode, RendererElement, {
|
|
16755
|
+
[key: string]: any;
|
|
16756
|
+
}>[];
|
|
16757
|
+
}>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
16758
|
+
beforeCreate?: (() => void)[] | (() => void);
|
|
16759
|
+
created?: (() => void)[] | (() => void);
|
|
16760
|
+
beforeMount?: (() => void)[] | (() => void);
|
|
16761
|
+
mounted?: (() => void)[] | (() => void);
|
|
16762
|
+
beforeUpdate?: (() => void)[] | (() => void);
|
|
16763
|
+
updated?: (() => void)[] | (() => void);
|
|
16764
|
+
activated?: (() => void)[] | (() => void);
|
|
16765
|
+
deactivated?: (() => void)[] | (() => void);
|
|
16766
|
+
beforeDestroy?: (() => void)[] | (() => void);
|
|
16767
|
+
beforeUnmount?: (() => void)[] | (() => void);
|
|
16768
|
+
destroyed?: (() => void)[] | (() => void);
|
|
16769
|
+
unmounted?: (() => void)[] | (() => void);
|
|
16770
|
+
renderTracked?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
16771
|
+
renderTriggered?: ((e: DebuggerEvent) => void)[] | ((e: DebuggerEvent) => void);
|
|
16772
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[] | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void);
|
|
16773
|
+
};
|
|
16774
|
+
$forceUpdate: () => void;
|
|
16775
|
+
$nextTick: nextTick;
|
|
16776
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
16777
|
+
} & Readonly<{
|
|
16778
|
+
style: StyleValue;
|
|
16779
|
+
focused: boolean;
|
|
16780
|
+
disabled: boolean | null;
|
|
16781
|
+
error: boolean;
|
|
16782
|
+
errorMessages: string | readonly string[] | null;
|
|
16783
|
+
maxErrors: string | number;
|
|
16784
|
+
readonly: boolean | null;
|
|
16785
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16786
|
+
density: Density;
|
|
16787
|
+
centerAffix: boolean;
|
|
16788
|
+
glow: boolean;
|
|
16789
|
+
hideSpinButtons: boolean;
|
|
16790
|
+
indentDetails: boolean;
|
|
16791
|
+
persistentHint: boolean;
|
|
16792
|
+
messages: string | readonly string[];
|
|
16793
|
+
direction: "horizontal" | "vertical";
|
|
16794
|
+
}> & Omit<{
|
|
16795
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16796
|
+
focused: boolean;
|
|
16797
|
+
disabled: boolean | null;
|
|
16798
|
+
error: boolean;
|
|
16799
|
+
errorMessages: string | readonly string[] | null;
|
|
16800
|
+
maxErrors: string | number;
|
|
16801
|
+
readonly: boolean | null;
|
|
16802
|
+
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16803
|
+
density: Density;
|
|
16804
|
+
centerAffix: boolean;
|
|
16805
|
+
glow: boolean;
|
|
16806
|
+
hideSpinButtons: boolean;
|
|
16807
|
+
indentDetails: boolean;
|
|
16808
|
+
persistentHint: boolean;
|
|
16809
|
+
messages: string | readonly string[];
|
|
16810
|
+
direction: "horizontal" | "vertical";
|
|
16811
|
+
} & {
|
|
16812
|
+
theme?: string | undefined;
|
|
16813
|
+
class?: any;
|
|
16814
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
16815
|
+
name?: string | undefined;
|
|
16816
|
+
label?: string | undefined;
|
|
16817
|
+
validateOn?: ("blur eager" | "blur lazy" | "eager" | "eager blur" | "eager input" | "eager invalid-input" | "eager submit" | "input eager" | "input lazy" | "invalid-input eager" | "invalid-input lazy" | "lazy" | "lazy blur" | "lazy input" | "lazy invalid-input" | "lazy submit" | "submit eager" | "submit lazy" | ("blur" | "input" | "invalid-input" | "submit")) | undefined;
|
|
16818
|
+
validationValue?: any;
|
|
16819
|
+
maxWidth?: string | number | undefined;
|
|
16820
|
+
minWidth?: string | number | undefined;
|
|
16821
|
+
width?: string | number | undefined;
|
|
16822
|
+
id?: string | undefined;
|
|
16823
|
+
appendIcon?: IconValue | undefined;
|
|
16824
|
+
baseColor?: string | undefined;
|
|
16825
|
+
color?: string | undefined;
|
|
16826
|
+
iconColor?: string | boolean | undefined;
|
|
16827
|
+
prependIcon?: IconValue | undefined;
|
|
16828
|
+
hideDetails?: "auto" | boolean | undefined;
|
|
16829
|
+
hint?: string | undefined;
|
|
16830
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16831
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
16832
|
+
}, "error" | "messages" | "disabled" | "style" | "density" | "reset" | "isValid" | "resetValidation" | "validate" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules"> & {
|
|
16833
|
+
reset: () => Promise<void>;
|
|
16834
|
+
resetValidation: () => Promise<void>;
|
|
16835
|
+
validate: (silent?: boolean) => Promise<string[]>;
|
|
16836
|
+
isValid: boolean | null;
|
|
16837
|
+
errorMessages: string[];
|
|
16838
|
+
} & ComponentCustomProperties & GenericProps< {
|
|
16839
|
+
modelValue?: unknown;
|
|
16840
|
+
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
16841
|
+
}, VInputSlots>, "error" | "messages" | "disabled" | "id" | "theme" | "color" | "width" | "name" | "class" | "style" | "density" | "appendIcon" | "baseColor" | "label" | "prependIcon" | "modelValue" | "$children" | "v-slots" | "v-slot:append" | "v-slot:default" | "v-slot:prepend" | "onUpdate:modelValue" | keyof VNodeProps | "maxWidth" | "minWidth" | "centerAffix" | "direction" | "errorMessages" | "focused" | "glow" | "hideSpinButtons" | "indentDetails" | "maxErrors" | "persistentHint" | "readonly" | "rules" | "onUpdate:focused" | "validateOn" | "validationValue" | "iconColor" | "hideDetails" | "hint" | "onClick:prepend" | "onClick:append" | "v-slot:details" | "v-slot:message">, `$${any}`> & Omit<Omit<{
|
|
16842
|
+
$: ComponentInternalInstance;
|
|
16843
|
+
$data: {};
|
|
16844
|
+
$props: Partial<{
|
|
16845
|
+
style: StyleValue;
|
|
16846
|
+
focused: boolean;
|
|
16847
|
+
rounded: string | number | boolean;
|
|
16848
|
+
tile: boolean;
|
|
16849
|
+
clearable: boolean;
|
|
16850
|
+
clearIcon: IconValue;
|
|
16851
|
+
active: boolean;
|
|
16852
|
+
centerAffix: boolean;
|
|
16853
|
+
dirty: boolean;
|
|
16854
|
+
disabled: boolean;
|
|
16855
|
+
glow: boolean;
|
|
16856
|
+
error: boolean;
|
|
16857
|
+
flat: boolean;
|
|
16858
|
+
persistentClear: boolean;
|
|
16859
|
+
reverse: boolean;
|
|
16860
|
+
singleLine: boolean;
|
|
16861
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16862
|
+
details: boolean;
|
|
16863
|
+
}> & Omit<{
|
|
16864
|
+
theme?: string | undefined;
|
|
16865
|
+
class?: any;
|
|
16866
|
+
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16867
|
+
focused: boolean;
|
|
16868
|
+
"onUpdate:focused"?: (((args_0: boolean) => void) & ((focused: boolean) => any)) | undefined;
|
|
16869
|
+
rounded?: string | number | boolean | undefined;
|
|
16870
|
+
tile: boolean;
|
|
16871
|
+
loading?: string | boolean | undefined;
|
|
16872
|
+
appendInnerIcon?: IconValue | undefined;
|
|
16873
|
+
bgColor?: string | undefined;
|
|
16874
|
+
clearable: boolean;
|
|
16875
|
+
clearIcon: IconValue;
|
|
16876
|
+
active: boolean;
|
|
16877
|
+
centerAffix?: boolean | undefined;
|
|
16878
|
+
color?: string | undefined;
|
|
16879
|
+
baseColor?: string | undefined;
|
|
16880
|
+
dirty: boolean;
|
|
16881
|
+
disabled: boolean;
|
|
16882
|
+
glow: boolean;
|
|
16883
|
+
error: boolean;
|
|
16884
|
+
flat: boolean;
|
|
16885
|
+
iconColor?: string | boolean | undefined;
|
|
16886
|
+
label?: string | undefined;
|
|
16887
|
+
persistentClear: boolean;
|
|
16888
|
+
prependInnerIcon?: IconValue | undefined;
|
|
16889
|
+
reverse: boolean;
|
|
16890
|
+
singleLine: boolean;
|
|
16891
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16892
|
+
"onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16893
|
+
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16894
|
+
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16895
|
+
id?: string | undefined;
|
|
16896
|
+
details: boolean;
|
|
16897
|
+
labelId?: string | undefined;
|
|
16898
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "active" | "centerAffix" | "clearIcon" | "clearable" | "details" | "dirty" | "disabled" | "error" | "flat" | "focused" | "glow" | "persistentClear" | "reverse" | "rounded" | "singleLine" | "style" | "tile" | "variant">;
|
|
16899
|
+
$attrs: {
|
|
16900
|
+
[x: string]: unknown;
|
|
16901
|
+
};
|
|
16902
|
+
$refs: {
|
|
16903
|
+
[x: string]: unknown;
|
|
16904
|
+
};
|
|
16905
|
+
$slots: Readonly<{
|
|
16906
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
16907
|
+
props: Record<string, any>;
|
|
16908
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
16909
|
+
[key: string]: any;
|
|
16910
|
+
}>[]) | undefined;
|
|
16911
|
+
"prepend-inner"?: ((arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16912
|
+
[key: string]: any;
|
|
16913
|
+
}>[]) | undefined;
|
|
16914
|
+
"append-inner"?: ((arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
16915
|
+
[key: string]: any;
|
|
16916
|
+
}>[]) | undefined;
|
|
16917
|
+
label?: ((arg: DefaultInputSlot & {
|
|
16918
|
+
label: string | undefined;
|
|
16919
|
+
props: Record<string, any>;
|
|
16920
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
16921
|
+
[key: string]: any;
|
|
16922
|
+
}>[]) | undefined;
|
|
16923
|
+
loader?: ((arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
16931
16924
|
[key: string]: any;
|
|
16932
16925
|
}>[]) | undefined;
|
|
16933
|
-
|
|
16926
|
+
default?: ((arg: VFieldSlot) => VNode<RendererNode, RendererElement, {
|
|
16934
16927
|
[key: string]: any;
|
|
16935
16928
|
}>[]) | undefined;
|
|
16936
16929
|
}>;
|
|
16937
16930
|
$root: ComponentPublicInstance | null;
|
|
16938
16931
|
$parent: ComponentPublicInstance | null;
|
|
16939
16932
|
$host: Element | null;
|
|
16940
|
-
$emit: (event:
|
|
16933
|
+
$emit: (event: "update:focused", focused: boolean) => void;
|
|
16941
16934
|
$el: any;
|
|
16942
16935
|
$options: ComponentOptionsBase< {
|
|
16943
16936
|
style: string | false | StyleValue[] | CSSProperties | null;
|
|
16944
16937
|
focused: boolean;
|
|
16945
|
-
|
|
16946
|
-
|
|
16947
|
-
|
|
16948
|
-
|
|
16949
|
-
|
|
16950
|
-
|
|
16951
|
-
density: Density;
|
|
16952
|
-
centerAffix: boolean;
|
|
16938
|
+
tile: boolean;
|
|
16939
|
+
clearable: boolean;
|
|
16940
|
+
clearIcon: IconValue;
|
|
16941
|
+
active: boolean;
|
|
16942
|
+
dirty: boolean;
|
|
16943
|
+
disabled: boolean;
|
|
16953
16944
|
glow: boolean;
|
|
16954
|
-
|
|
16955
|
-
|
|
16956
|
-
|
|
16957
|
-
|
|
16958
|
-
|
|
16945
|
+
error: boolean;
|
|
16946
|
+
flat: boolean;
|
|
16947
|
+
persistentClear: boolean;
|
|
16948
|
+
reverse: boolean;
|
|
16949
|
+
singleLine: boolean;
|
|
16950
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16951
|
+
details: boolean;
|
|
16959
16952
|
} & {
|
|
16960
16953
|
theme?: string | undefined;
|
|
16961
16954
|
class?: any;
|
|
16962
16955
|
"onUpdate:focused"?: ((args_0: boolean) => void) | undefined;
|
|
16963
|
-
|
|
16964
|
-
|
|
16965
|
-
|
|
16966
|
-
|
|
16967
|
-
|
|
16968
|
-
minWidth?: string | number | undefined;
|
|
16969
|
-
width?: string | number | undefined;
|
|
16970
|
-
id?: string | undefined;
|
|
16971
|
-
appendIcon?: IconValue | undefined;
|
|
16972
|
-
baseColor?: string | undefined;
|
|
16956
|
+
rounded?: string | number | boolean | undefined;
|
|
16957
|
+
loading?: string | boolean | undefined;
|
|
16958
|
+
appendInnerIcon?: IconValue | undefined;
|
|
16959
|
+
bgColor?: string | undefined;
|
|
16960
|
+
centerAffix?: boolean | undefined;
|
|
16973
16961
|
color?: string | undefined;
|
|
16962
|
+
baseColor?: string | undefined;
|
|
16974
16963
|
iconColor?: string | boolean | undefined;
|
|
16975
|
-
|
|
16976
|
-
|
|
16977
|
-
|
|
16978
|
-
"onClick:
|
|
16979
|
-
"onClick:
|
|
16980
|
-
|
|
16981
|
-
|
|
16982
|
-
|
|
16983
|
-
|
|
16984
|
-
|
|
16985
|
-
|
|
16964
|
+
label?: string | undefined;
|
|
16965
|
+
prependInnerIcon?: IconValue | undefined;
|
|
16966
|
+
"onClick:clear"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16967
|
+
"onClick:appendInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16968
|
+
"onClick:prependInner"?: ((args_0: MouseEvent) => void) | undefined;
|
|
16969
|
+
id?: string | undefined;
|
|
16970
|
+
labelId?: string | undefined;
|
|
16971
|
+
} & {
|
|
16972
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
16973
|
+
}, {
|
|
16974
|
+
controlRef: Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
16975
|
+
fieldIconColor: ComputedRef<string | undefined>;
|
|
16986
16976
|
}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, Omit<{
|
|
16977
|
+
"update:focused": (focused: boolean) => true;
|
|
16987
16978
|
"update:modelValue": (value: any) => true;
|
|
16988
|
-
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append" | "v-slot:default" | "v-slot:
|
|
16979
|
+
}, "$children" | "modelValue" | "update:modelValue" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:default" | "v-slot:label" | "v-slot:loader" | "v-slot:prepend-inner" | "v-slots">, string, {
|
|
16989
16980
|
style: StyleValue;
|
|
16990
16981
|
focused: boolean;
|
|
16991
|
-
|
|
16992
|
-
|
|
16993
|
-
|
|
16994
|
-
|
|
16995
|
-
|
|
16996
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
16997
|
-
density: Density;
|
|
16982
|
+
rounded: string | number | boolean;
|
|
16983
|
+
tile: boolean;
|
|
16984
|
+
clearable: boolean;
|
|
16985
|
+
clearIcon: IconValue;
|
|
16986
|
+
active: boolean;
|
|
16998
16987
|
centerAffix: boolean;
|
|
16988
|
+
dirty: boolean;
|
|
16989
|
+
disabled: boolean;
|
|
16999
16990
|
glow: boolean;
|
|
17000
|
-
|
|
17001
|
-
|
|
17002
|
-
|
|
17003
|
-
|
|
17004
|
-
|
|
16991
|
+
error: boolean;
|
|
16992
|
+
flat: boolean;
|
|
16993
|
+
persistentClear: boolean;
|
|
16994
|
+
reverse: boolean;
|
|
16995
|
+
singleLine: boolean;
|
|
16996
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
16997
|
+
details: boolean;
|
|
17005
16998
|
}, {}, string, SlotsType<Partial<{
|
|
17006
|
-
|
|
16999
|
+
clear: (arg: DefaultInputSlot & {
|
|
17000
|
+
props: Record<string, any>;
|
|
17001
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
17007
17002
|
[key: string]: any;
|
|
17008
17003
|
}>[];
|
|
17009
|
-
prepend: (arg:
|
|
17004
|
+
"prepend-inner": (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
17010
17005
|
[key: string]: any;
|
|
17011
17006
|
}>[];
|
|
17012
|
-
append: (arg:
|
|
17007
|
+
"append-inner": (arg: DefaultInputSlot) => VNode<RendererNode, RendererElement, {
|
|
17013
17008
|
[key: string]: any;
|
|
17014
17009
|
}>[];
|
|
17015
|
-
|
|
17010
|
+
label: (arg: DefaultInputSlot & {
|
|
17011
|
+
label: string | undefined;
|
|
17012
|
+
props: Record<string, any>;
|
|
17013
|
+
}) => VNode<RendererNode, RendererElement, {
|
|
17016
17014
|
[key: string]: any;
|
|
17017
17015
|
}>[];
|
|
17018
|
-
|
|
17016
|
+
loader: (arg: LoaderSlotProps) => VNode<RendererNode, RendererElement, {
|
|
17017
|
+
[key: string]: any;
|
|
17018
|
+
}>[];
|
|
17019
|
+
default: (arg: VFieldSlot) => VNode<RendererNode, RendererElement, {
|
|
17019
17020
|
[key: string]: any;
|
|
17020
17021
|
}>[];
|
|
17021
17022
|
}>>, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
@@ -17041,68 +17042,67 @@ declare function __VLS_template_6(): {
|
|
|
17041
17042
|
} & Readonly<{
|
|
17042
17043
|
style: StyleValue;
|
|
17043
17044
|
focused: boolean;
|
|
17044
|
-
|
|
17045
|
-
|
|
17046
|
-
|
|
17047
|
-
|
|
17048
|
-
|
|
17049
|
-
rules: readonly (string | boolean | PromiseLike<ValidationResult> | ((value: any) => ValidationResult) | ((value: any) => PromiseLike<ValidationResult>) | [string, any, (string | undefined)?])[];
|
|
17050
|
-
density: Density;
|
|
17045
|
+
rounded: string | number | boolean;
|
|
17046
|
+
tile: boolean;
|
|
17047
|
+
clearable: boolean;
|
|
17048
|
+
clearIcon: IconValue;
|
|
17049
|
+
active: boolean;
|
|
17051
17050
|
centerAffix: boolean;
|
|
17051
|
+
dirty: boolean;
|
|
17052
|
+
disabled: boolean;
|
|
17052
17053
|
glow: boolean;
|
|
17053
|
-
|
|
17054
|
-
|
|
17055
|
-
|
|
17056
|
-
|
|
17057
|
-
|
|
17054
|
+
error: boolean;
|
|
17055
|
+
flat: boolean;
|
|
17056
|
+
persistentClear: boolean;
|
|
17057
|
+
reverse: boolean;
|
|
17058
|
+
singleLine: boolean;
|
|
17059
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
17060
|
+
details: boolean;
|
|
17058
17061
|
}> & Omit<{
|
|
17059
17062
|
style: string | false | StyleValue[] | CSSProperties | null;
|
|
17060
17063
|
focused: boolean;
|
|
17061
|
-
|
|
17062
|
-
|
|
17063
|
-
|
|
17064
|
-
|
|
17065
|
-
|
|
17066
|
-
|
|
17067
|
-
density: Density;
|
|
17068
|
-
centerAffix: boolean;
|
|
17064
|
+
tile: boolean;
|
|
17065
|
+
clearable: boolean;
|
|
17066
|
+
clearIcon: IconValue;
|
|
17067
|
+
active: boolean;
|
|
17068
|
+
dirty: boolean;
|
|
17069
|
+
disabled: boolean;
|
|
17069
17070
|
glow: boolean;
|
|
17070
|
-
|
|
17071
|
-
|
|
17072
|
-
|
|
17073
|
-
|
|
17074
|
-
|
|
17071
|
+
error: boolean;
|
|
17072
|
+
flat: boolean;
|
|
17073
|
+
persistentClear: boolean;
|
|
17074
|
+
reverse: boolean;
|
|
17075
|
+
singleLine: boolean;
|
|
17076
|
+
variant: "filled" | "outlined" | "plain" | "solo" | "solo-filled" | "solo-inverted" | "underlined";
|
|
17077
|
+
details: boolean;
|
|
17075
17078
|
} & {
|
|
17076
17079
|
theme?: string | undefined;
|
|
17077
17080
|
class?: any;
|
|
17078
17081
|
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
17079
|
-
|
|
17080
|
-
|
|
17081
|
-
|
|
17082
|
-
|
|
17083
|
-
|
|
17084
|
-
minWidth?: string | number | undefined;
|
|
17085
|
-
width?: string | number | undefined;
|
|
17086
|
-
id?: string | undefined;
|
|
17087
|
-
appendIcon?: IconValue | undefined;
|
|
17088
|
-
baseColor?: string | undefined;
|
|
17082
|
+
rounded?: string | number | boolean | undefined;
|
|
17083
|
+
loading?: string | boolean | undefined;
|
|
17084
|
+
appendInnerIcon?: IconValue | undefined;
|
|
17085
|
+
bgColor?: string | undefined;
|
|
17086
|
+
centerAffix?: boolean | undefined;
|
|
17089
17087
|
color?: string | undefined;
|
|
17088
|
+
baseColor?: string | undefined;
|
|
17090
17089
|
iconColor?: string | boolean | undefined;
|
|
17091
|
-
|
|
17092
|
-
|
|
17093
|
-
|
|
17094
|
-
'onClick:
|
|
17095
|
-
'onClick:
|
|
17096
|
-
|
|
17097
|
-
|
|
17098
|
-
|
|
17099
|
-
|
|
17100
|
-
|
|
17101
|
-
|
|
17090
|
+
label?: string | undefined;
|
|
17091
|
+
prependInnerIcon?: IconValue | undefined;
|
|
17092
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
17093
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
17094
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
17095
|
+
id?: string | undefined;
|
|
17096
|
+
labelId?: string | undefined;
|
|
17097
|
+
} & {
|
|
17098
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
17099
|
+
}, "error" | "disabled" | "reverse" | "flat" | "style" | "rounded" | "tile" | "variant" | "details" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "controlRef" | "fieldIconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine"> & {
|
|
17100
|
+
controlRef: HTMLElement | undefined;
|
|
17101
|
+
fieldIconColor: string | undefined;
|
|
17102
17102
|
} & ComponentCustomProperties & GenericProps< {
|
|
17103
17103
|
modelValue?: unknown;
|
|
17104
17104
|
'onUpdate:modelValue'?: ((value: unknown) => void) | undefined;
|
|
17105
|
-
},
|
|
17105
|
+
}, VFieldSlots>, "error" | "disabled" | "id" | "theme" | "color" | "loading" | "reverse" | "flat" | "class" | "style" | "rounded" | "tile" | "variant" | "baseColor" | "label" | "modelValue" | "$children" | "v-slots" | "v-slot:default" | "v-slot:label" | "onUpdate:modelValue" | keyof VNodeProps | "details" | "bgColor" | "v-slot:loader" | "active" | "clearable" | "centerAffix" | "focused" | "glow" | "onUpdate:focused" | "iconColor" | "clearIcon" | "dirty" | "persistentClear" | "singleLine" | "appendInnerIcon" | "prependInnerIcon" | "onClick:clear" | "onClick:appendInner" | "onClick:prependInner" | "labelId" | "v-slot:append-inner" | "v-slot:clear" | "v-slot:prepend-inner">, `$${any}`> & {
|
|
17106
17106
|
_allExposed: {
|
|
17107
17107
|
reset: () => Promise<void>;
|
|
17108
17108
|
resetValidation: () => Promise<void>;
|
|
@@ -21075,11 +21075,64 @@ now: string;
|
|
|
21075
21075
|
};
|
|
21076
21076
|
sortable: {
|
|
21077
21077
|
addNewAtEnd: string;
|
|
21078
|
+
add: string;
|
|
21079
|
+
addFirst: string;
|
|
21078
21080
|
edit: string;
|
|
21081
|
+
close: string;
|
|
21082
|
+
delete: string;
|
|
21083
|
+
deleteConfirmTitle: string;
|
|
21084
|
+
deleteConfirmText: string;
|
|
21079
21085
|
remove: string;
|
|
21080
21086
|
addAfter: string;
|
|
21081
21087
|
addChild: string;
|
|
21082
21088
|
more: string;
|
|
21089
|
+
emptyTitle: string;
|
|
21090
|
+
emptyText: string;
|
|
21091
|
+
itemFallback: string;
|
|
21092
|
+
reorder: string;
|
|
21093
|
+
reorderModeLabel: string;
|
|
21094
|
+
expandAll: string;
|
|
21095
|
+
collapseAll: string;
|
|
21096
|
+
reorderApply: string;
|
|
21097
|
+
reorderCancel: string;
|
|
21098
|
+
moveUp: string;
|
|
21099
|
+
moveDown: string;
|
|
21100
|
+
moveToTop: string;
|
|
21101
|
+
moveToBottom: string;
|
|
21102
|
+
moveToPosition: {
|
|
21103
|
+
action: string;
|
|
21104
|
+
title: string;
|
|
21105
|
+
itemDescription: string;
|
|
21106
|
+
positionLabel: string;
|
|
21107
|
+
positionHint: string;
|
|
21108
|
+
confirm: string;
|
|
21109
|
+
};
|
|
21110
|
+
changeParent: {
|
|
21111
|
+
action: string;
|
|
21112
|
+
title: string;
|
|
21113
|
+
rootLabel: string;
|
|
21114
|
+
placementHeading: string;
|
|
21115
|
+
placeFirst: string;
|
|
21116
|
+
placeLast: string;
|
|
21117
|
+
confirm: string;
|
|
21118
|
+
noTargetsTitle: string;
|
|
21119
|
+
noTargetsText: string;
|
|
21120
|
+
errorMaxDepth: string;
|
|
21121
|
+
};
|
|
21122
|
+
unsavedChanges: {
|
|
21123
|
+
title: string;
|
|
21124
|
+
body: string;
|
|
21125
|
+
stay: string;
|
|
21126
|
+
discard: string;
|
|
21127
|
+
};
|
|
21128
|
+
keyboardGrab: {
|
|
21129
|
+
status: string;
|
|
21130
|
+
};
|
|
21131
|
+
indent: string;
|
|
21132
|
+
outdent: string;
|
|
21133
|
+
unsaved: string;
|
|
21134
|
+
pendingChanges: string;
|
|
21135
|
+
noPendingChanges: string;
|
|
21083
21136
|
error: {
|
|
21084
21137
|
maxDeepExceed: string;
|
|
21085
21138
|
unableToAdd: string;
|
|
@@ -22160,11 +22213,64 @@ export declare const messagesCs: {
|
|
|
22160
22213
|
};
|
|
22161
22214
|
sortable: {
|
|
22162
22215
|
addNewAtEnd: string;
|
|
22216
|
+
add: string;
|
|
22217
|
+
addFirst: string;
|
|
22163
22218
|
edit: string;
|
|
22219
|
+
close: string;
|
|
22220
|
+
delete: string;
|
|
22221
|
+
deleteConfirmTitle: string;
|
|
22222
|
+
deleteConfirmText: string;
|
|
22164
22223
|
remove: string;
|
|
22165
22224
|
addAfter: string;
|
|
22166
22225
|
addChild: string;
|
|
22167
22226
|
more: string;
|
|
22227
|
+
emptyTitle: string;
|
|
22228
|
+
emptyText: string;
|
|
22229
|
+
itemFallback: string;
|
|
22230
|
+
reorder: string;
|
|
22231
|
+
reorderModeLabel: string;
|
|
22232
|
+
expandAll: string;
|
|
22233
|
+
collapseAll: string;
|
|
22234
|
+
reorderApply: string;
|
|
22235
|
+
reorderCancel: string;
|
|
22236
|
+
moveUp: string;
|
|
22237
|
+
moveDown: string;
|
|
22238
|
+
moveToTop: string;
|
|
22239
|
+
moveToBottom: string;
|
|
22240
|
+
moveToPosition: {
|
|
22241
|
+
action: string;
|
|
22242
|
+
title: string;
|
|
22243
|
+
itemDescription: string;
|
|
22244
|
+
positionLabel: string;
|
|
22245
|
+
positionHint: string;
|
|
22246
|
+
confirm: string;
|
|
22247
|
+
};
|
|
22248
|
+
changeParent: {
|
|
22249
|
+
action: string;
|
|
22250
|
+
title: string;
|
|
22251
|
+
rootLabel: string;
|
|
22252
|
+
placementHeading: string;
|
|
22253
|
+
placeFirst: string;
|
|
22254
|
+
placeLast: string;
|
|
22255
|
+
confirm: string;
|
|
22256
|
+
noTargetsTitle: string;
|
|
22257
|
+
noTargetsText: string;
|
|
22258
|
+
errorMaxDepth: string;
|
|
22259
|
+
};
|
|
22260
|
+
unsavedChanges: {
|
|
22261
|
+
title: string;
|
|
22262
|
+
body: string;
|
|
22263
|
+
stay: string;
|
|
22264
|
+
discard: string;
|
|
22265
|
+
};
|
|
22266
|
+
keyboardGrab: {
|
|
22267
|
+
status: string;
|
|
22268
|
+
};
|
|
22269
|
+
indent: string;
|
|
22270
|
+
outdent: string;
|
|
22271
|
+
unsaved: string;
|
|
22272
|
+
pendingChanges: string;
|
|
22273
|
+
noPendingChanges: string;
|
|
22168
22274
|
error: {
|
|
22169
22275
|
maxDeepExceed: string;
|
|
22170
22276
|
unableToAdd: string;
|
|
@@ -22964,11 +23070,64 @@ export declare const messagesEn: {
|
|
|
22964
23070
|
};
|
|
22965
23071
|
sortable: {
|
|
22966
23072
|
addNewAtEnd: string;
|
|
23073
|
+
add: string;
|
|
23074
|
+
addFirst: string;
|
|
22967
23075
|
edit: string;
|
|
23076
|
+
close: string;
|
|
23077
|
+
delete: string;
|
|
23078
|
+
deleteConfirmTitle: string;
|
|
23079
|
+
deleteConfirmText: string;
|
|
22968
23080
|
remove: string;
|
|
22969
23081
|
addAfter: string;
|
|
22970
23082
|
addChild: string;
|
|
22971
23083
|
more: string;
|
|
23084
|
+
emptyTitle: string;
|
|
23085
|
+
emptyText: string;
|
|
23086
|
+
itemFallback: string;
|
|
23087
|
+
reorder: string;
|
|
23088
|
+
reorderModeLabel: string;
|
|
23089
|
+
expandAll: string;
|
|
23090
|
+
collapseAll: string;
|
|
23091
|
+
reorderApply: string;
|
|
23092
|
+
reorderCancel: string;
|
|
23093
|
+
moveUp: string;
|
|
23094
|
+
moveDown: string;
|
|
23095
|
+
moveToTop: string;
|
|
23096
|
+
moveToBottom: string;
|
|
23097
|
+
moveToPosition: {
|
|
23098
|
+
action: string;
|
|
23099
|
+
title: string;
|
|
23100
|
+
itemDescription: string;
|
|
23101
|
+
positionLabel: string;
|
|
23102
|
+
positionHint: string;
|
|
23103
|
+
confirm: string;
|
|
23104
|
+
};
|
|
23105
|
+
changeParent: {
|
|
23106
|
+
action: string;
|
|
23107
|
+
title: string;
|
|
23108
|
+
rootLabel: string;
|
|
23109
|
+
placementHeading: string;
|
|
23110
|
+
placeFirst: string;
|
|
23111
|
+
placeLast: string;
|
|
23112
|
+
confirm: string;
|
|
23113
|
+
noTargetsTitle: string;
|
|
23114
|
+
noTargetsText: string;
|
|
23115
|
+
errorMaxDepth: string;
|
|
23116
|
+
};
|
|
23117
|
+
unsavedChanges: {
|
|
23118
|
+
title: string;
|
|
23119
|
+
body: string;
|
|
23120
|
+
stay: string;
|
|
23121
|
+
discard: string;
|
|
23122
|
+
};
|
|
23123
|
+
keyboardGrab: {
|
|
23124
|
+
status: string;
|
|
23125
|
+
};
|
|
23126
|
+
indent: string;
|
|
23127
|
+
outdent: string;
|
|
23128
|
+
unsaved: string;
|
|
23129
|
+
pendingChanges: string;
|
|
23130
|
+
noPendingChanges: string;
|
|
22972
23131
|
error: {
|
|
22973
23132
|
maxDeepExceed: string;
|
|
22974
23133
|
unableToAdd: string;
|
|
@@ -23776,11 +23935,64 @@ export declare const messagesSk: {
|
|
|
23776
23935
|
};
|
|
23777
23936
|
sortable: {
|
|
23778
23937
|
addNewAtEnd: string;
|
|
23938
|
+
add: string;
|
|
23939
|
+
addFirst: string;
|
|
23779
23940
|
edit: string;
|
|
23941
|
+
close: string;
|
|
23942
|
+
delete: string;
|
|
23943
|
+
deleteConfirmTitle: string;
|
|
23944
|
+
deleteConfirmText: string;
|
|
23780
23945
|
remove: string;
|
|
23781
23946
|
addAfter: string;
|
|
23782
23947
|
addChild: string;
|
|
23783
23948
|
more: string;
|
|
23949
|
+
emptyTitle: string;
|
|
23950
|
+
emptyText: string;
|
|
23951
|
+
itemFallback: string;
|
|
23952
|
+
reorder: string;
|
|
23953
|
+
reorderModeLabel: string;
|
|
23954
|
+
expandAll: string;
|
|
23955
|
+
collapseAll: string;
|
|
23956
|
+
reorderApply: string;
|
|
23957
|
+
reorderCancel: string;
|
|
23958
|
+
moveUp: string;
|
|
23959
|
+
moveDown: string;
|
|
23960
|
+
moveToTop: string;
|
|
23961
|
+
moveToBottom: string;
|
|
23962
|
+
moveToPosition: {
|
|
23963
|
+
action: string;
|
|
23964
|
+
title: string;
|
|
23965
|
+
itemDescription: string;
|
|
23966
|
+
positionLabel: string;
|
|
23967
|
+
positionHint: string;
|
|
23968
|
+
confirm: string;
|
|
23969
|
+
};
|
|
23970
|
+
changeParent: {
|
|
23971
|
+
action: string;
|
|
23972
|
+
title: string;
|
|
23973
|
+
rootLabel: string;
|
|
23974
|
+
placementHeading: string;
|
|
23975
|
+
placeFirst: string;
|
|
23976
|
+
placeLast: string;
|
|
23977
|
+
confirm: string;
|
|
23978
|
+
noTargetsTitle: string;
|
|
23979
|
+
noTargetsText: string;
|
|
23980
|
+
errorMaxDepth: string;
|
|
23981
|
+
};
|
|
23982
|
+
unsavedChanges: {
|
|
23983
|
+
title: string;
|
|
23984
|
+
body: string;
|
|
23985
|
+
stay: string;
|
|
23986
|
+
discard: string;
|
|
23987
|
+
};
|
|
23988
|
+
keyboardGrab: {
|
|
23989
|
+
status: string;
|
|
23990
|
+
};
|
|
23991
|
+
indent: string;
|
|
23992
|
+
outdent: string;
|
|
23993
|
+
unsaved: string;
|
|
23994
|
+
pendingChanges: string;
|
|
23995
|
+
noPendingChanges: string;
|
|
23784
23996
|
error: {
|
|
23785
23997
|
maxDeepExceed: string;
|
|
23786
23998
|
unableToAdd: string;
|