@vuetify/nightly 3.7.10-next.2025-02-04 → 3.7.10-next.2025-02-05
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -3
- package/dist/json/attributes.json +1607 -1607
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +168 -168
- package/dist/json/web-types.json +3006 -2970
- package/dist/vuetify-labs.css +3416 -3417
- package/dist/vuetify-labs.d.ts +258 -651
- package/dist/vuetify-labs.esm.js +32 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +32 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3986 -3987
- package/dist/vuetify.d.ts +347 -740
- package/dist/vuetify.esm.js +32 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +32 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +18 -9
- package/lib/components/VAutocomplete/VAutocomplete.js +6 -3
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +18 -9
- package/lib/components/VCombobox/VCombobox.js +6 -3
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VForm/VForm.d.ts +111 -531
- package/lib/components/VForm/VForm.js +11 -1
- package/lib/components/VForm/VForm.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +18 -9
- package/lib/components/VSelect/VSelect.js +6 -3
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +58 -58
- package/lib/framework.js +1 -1
- package/lib/styles/generic/_reset.scss +0 -1
- package/lib/styles/main.css +0 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -8027,17 +8027,20 @@ declare const VAutocomplete: {
|
|
8027
8027
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8028
8028
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8029
8029
|
item: (arg: {
|
8030
|
-
item:
|
8030
|
+
item: unknown;
|
8031
|
+
internalItem: ListItem<unknown>;
|
8031
8032
|
index: number;
|
8032
8033
|
props: Record<string, unknown>;
|
8033
8034
|
}) => vue.VNode[];
|
8034
8035
|
chip: (arg: {
|
8035
|
-
item:
|
8036
|
+
item: unknown;
|
8037
|
+
internalItem: ListItem<unknown>;
|
8036
8038
|
index: number;
|
8037
8039
|
props: Record<string, unknown>;
|
8038
8040
|
}) => vue.VNode[];
|
8039
8041
|
selection: (arg: {
|
8040
|
-
item:
|
8042
|
+
item: unknown;
|
8043
|
+
internalItem: ListItem<unknown>;
|
8041
8044
|
index: number;
|
8042
8045
|
}) => vue.VNode[];
|
8043
8046
|
'prepend-item': () => vue.VNode[];
|
@@ -8901,17 +8904,20 @@ declare const VAutocomplete: {
|
|
8901
8904
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8902
8905
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8903
8906
|
item: (arg: {
|
8904
|
-
item:
|
8907
|
+
item: unknown;
|
8908
|
+
internalItem: ListItem<unknown>;
|
8905
8909
|
index: number;
|
8906
8910
|
props: Record<string, unknown>;
|
8907
8911
|
}) => vue.VNode[];
|
8908
8912
|
chip: (arg: {
|
8909
|
-
item:
|
8913
|
+
item: unknown;
|
8914
|
+
internalItem: ListItem<unknown>;
|
8910
8915
|
index: number;
|
8911
8916
|
props: Record<string, unknown>;
|
8912
8917
|
}) => vue.VNode[];
|
8913
8918
|
selection: (arg: {
|
8914
|
-
item:
|
8919
|
+
item: unknown;
|
8920
|
+
internalItem: ListItem<unknown>;
|
8915
8921
|
index: number;
|
8916
8922
|
}) => vue.VNode[];
|
8917
8923
|
'prepend-item': () => vue.VNode[];
|
@@ -8928,17 +8934,20 @@ declare const VAutocomplete: {
|
|
8928
8934
|
"onUpdate:modelValue"?: (value: V) => void;
|
8929
8935
|
}, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
|
8930
8936
|
item: {
|
8931
|
-
item:
|
8937
|
+
item: Item;
|
8938
|
+
internalItem: ListItem<Item>;
|
8932
8939
|
index: number;
|
8933
8940
|
props: Record<string, unknown>;
|
8934
8941
|
};
|
8935
8942
|
chip: {
|
8936
|
-
item:
|
8943
|
+
item: Item;
|
8944
|
+
internalItem: ListItem<Item>;
|
8937
8945
|
index: number;
|
8938
8946
|
props: Record<string, unknown>;
|
8939
8947
|
};
|
8940
8948
|
selection: {
|
8941
|
-
item:
|
8949
|
+
item: Item;
|
8950
|
+
internalItem: ListItem<Item>;
|
8942
8951
|
index: number;
|
8943
8952
|
};
|
8944
8953
|
"prepend-item": never;
|
@@ -18087,17 +18096,20 @@ declare const VCombobox: {
|
|
18087
18096
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18088
18097
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18089
18098
|
item: (arg: {
|
18090
|
-
item:
|
18099
|
+
item: unknown;
|
18100
|
+
internalItem: ListItem<unknown>;
|
18091
18101
|
index: number;
|
18092
18102
|
props: Record<string, unknown>;
|
18093
18103
|
}) => vue.VNode[];
|
18094
18104
|
chip: (arg: {
|
18095
|
-
item:
|
18105
|
+
item: unknown;
|
18106
|
+
internalItem: ListItem<unknown>;
|
18096
18107
|
index: number;
|
18097
18108
|
props: Record<string, unknown>;
|
18098
18109
|
}) => vue.VNode[];
|
18099
18110
|
selection: (arg: {
|
18100
|
-
item:
|
18111
|
+
item: unknown;
|
18112
|
+
internalItem: ListItem<unknown>;
|
18101
18113
|
index: number;
|
18102
18114
|
}) => vue.VNode[];
|
18103
18115
|
'prepend-item': () => vue.VNode[];
|
@@ -18961,17 +18973,20 @@ declare const VCombobox: {
|
|
18961
18973
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18962
18974
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18963
18975
|
item: (arg: {
|
18964
|
-
item:
|
18976
|
+
item: unknown;
|
18977
|
+
internalItem: ListItem<unknown>;
|
18965
18978
|
index: number;
|
18966
18979
|
props: Record<string, unknown>;
|
18967
18980
|
}) => vue.VNode[];
|
18968
18981
|
chip: (arg: {
|
18969
|
-
item:
|
18982
|
+
item: unknown;
|
18983
|
+
internalItem: ListItem<unknown>;
|
18970
18984
|
index: number;
|
18971
18985
|
props: Record<string, unknown>;
|
18972
18986
|
}) => vue.VNode[];
|
18973
18987
|
selection: (arg: {
|
18974
|
-
item:
|
18988
|
+
item: unknown;
|
18989
|
+
internalItem: ListItem<unknown>;
|
18975
18990
|
index: number;
|
18976
18991
|
}) => vue.VNode[];
|
18977
18992
|
'prepend-item': () => vue.VNode[];
|
@@ -18988,17 +19003,20 @@ declare const VCombobox: {
|
|
18988
19003
|
"onUpdate:modelValue"?: (value: V) => void;
|
18989
19004
|
}, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
|
18990
19005
|
item: {
|
18991
|
-
item:
|
19006
|
+
item: Item;
|
19007
|
+
internalItem: ListItem<Item>;
|
18992
19008
|
index: number;
|
18993
19009
|
props: Record<string, unknown>;
|
18994
19010
|
};
|
18995
19011
|
chip: {
|
18996
|
-
item:
|
19012
|
+
item: Item;
|
19013
|
+
internalItem: ListItem<Item>;
|
18997
19014
|
index: number;
|
18998
19015
|
props: Record<string, unknown>;
|
18999
19016
|
};
|
19000
19017
|
selection: {
|
19001
|
-
item:
|
19018
|
+
item: Item;
|
19019
|
+
internalItem: ListItem<Item>;
|
19002
19020
|
index: number;
|
19003
19021
|
};
|
19004
19022
|
"prepend-item": never;
|
@@ -30847,169 +30865,49 @@ declare const VForm: {
|
|
30847
30865
|
} & {
|
30848
30866
|
$children?: vue.VNodeChild | {
|
30849
30867
|
default?: ((arg: {
|
30850
|
-
errors:
|
30851
|
-
|
30852
|
-
|
30853
|
-
|
30854
|
-
|
30855
|
-
|
30856
|
-
|
30857
|
-
isDisabled: vue.ComputedRef<boolean>;
|
30858
|
-
isReadonly: vue.ComputedRef<boolean>;
|
30859
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
30860
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
30861
|
-
readonly externalValue: boolean | null;
|
30862
|
-
};
|
30863
|
-
items: vue.Ref<{
|
30864
|
-
id: number | string;
|
30865
|
-
validate: () => Promise<string[]>;
|
30866
|
-
reset: () => Promise<void>;
|
30867
|
-
resetValidation: () => Promise<void>;
|
30868
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
30869
|
-
isValid: boolean | null;
|
30870
|
-
errorMessages: string[];
|
30871
|
-
}[], FormField[] | {
|
30872
|
-
id: number | string;
|
30873
|
-
validate: () => Promise<string[]>;
|
30874
|
-
reset: () => Promise<void>;
|
30875
|
-
resetValidation: () => Promise<void>;
|
30876
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
30877
|
-
isValid: boolean | null;
|
30878
|
-
errorMessages: string[];
|
30879
|
-
}[]>;
|
30880
|
-
validate: () => Promise<{
|
30881
|
-
valid: boolean;
|
30882
|
-
errors: {
|
30883
|
-
id: number | string;
|
30884
|
-
errorMessages: string[];
|
30885
|
-
}[];
|
30886
|
-
}>;
|
30868
|
+
errors: FieldValidationResult[];
|
30869
|
+
isDisabled: boolean;
|
30870
|
+
isReadonly: boolean;
|
30871
|
+
isValidating: boolean;
|
30872
|
+
isValid: boolean | null;
|
30873
|
+
items: FormField[];
|
30874
|
+
validate: () => Promise<FormValidationResult>;
|
30887
30875
|
reset: () => void;
|
30888
30876
|
resetValidation: () => void;
|
30889
30877
|
}) => vue.VNodeChild) | undefined;
|
30890
30878
|
} | ((arg: {
|
30891
|
-
errors:
|
30892
|
-
|
30893
|
-
|
30894
|
-
|
30895
|
-
|
30896
|
-
|
30897
|
-
|
30898
|
-
isDisabled: vue.ComputedRef<boolean>;
|
30899
|
-
isReadonly: vue.ComputedRef<boolean>;
|
30900
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
30901
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
30902
|
-
readonly externalValue: boolean | null;
|
30903
|
-
};
|
30904
|
-
items: vue.Ref<{
|
30905
|
-
id: number | string;
|
30906
|
-
validate: () => Promise<string[]>;
|
30907
|
-
reset: () => Promise<void>;
|
30908
|
-
resetValidation: () => Promise<void>;
|
30909
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
30910
|
-
isValid: boolean | null;
|
30911
|
-
errorMessages: string[];
|
30912
|
-
}[], FormField[] | {
|
30913
|
-
id: number | string;
|
30914
|
-
validate: () => Promise<string[]>;
|
30915
|
-
reset: () => Promise<void>;
|
30916
|
-
resetValidation: () => Promise<void>;
|
30917
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
30918
|
-
isValid: boolean | null;
|
30919
|
-
errorMessages: string[];
|
30920
|
-
}[]>;
|
30921
|
-
validate: () => Promise<{
|
30922
|
-
valid: boolean;
|
30923
|
-
errors: {
|
30924
|
-
id: number | string;
|
30925
|
-
errorMessages: string[];
|
30926
|
-
}[];
|
30927
|
-
}>;
|
30879
|
+
errors: FieldValidationResult[];
|
30880
|
+
isDisabled: boolean;
|
30881
|
+
isReadonly: boolean;
|
30882
|
+
isValidating: boolean;
|
30883
|
+
isValid: boolean | null;
|
30884
|
+
items: FormField[];
|
30885
|
+
validate: () => Promise<FormValidationResult>;
|
30928
30886
|
reset: () => void;
|
30929
30887
|
resetValidation: () => void;
|
30930
30888
|
}) => vue.VNodeChild);
|
30931
30889
|
'v-slots'?: {
|
30932
30890
|
default?: false | ((arg: {
|
30933
|
-
errors:
|
30934
|
-
|
30935
|
-
|
30936
|
-
|
30937
|
-
|
30938
|
-
|
30939
|
-
|
30940
|
-
isDisabled: vue.ComputedRef<boolean>;
|
30941
|
-
isReadonly: vue.ComputedRef<boolean>;
|
30942
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
30943
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
30944
|
-
readonly externalValue: boolean | null;
|
30945
|
-
};
|
30946
|
-
items: vue.Ref<{
|
30947
|
-
id: number | string;
|
30948
|
-
validate: () => Promise<string[]>;
|
30949
|
-
reset: () => Promise<void>;
|
30950
|
-
resetValidation: () => Promise<void>;
|
30951
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
30952
|
-
isValid: boolean | null;
|
30953
|
-
errorMessages: string[];
|
30954
|
-
}[], FormField[] | {
|
30955
|
-
id: number | string;
|
30956
|
-
validate: () => Promise<string[]>;
|
30957
|
-
reset: () => Promise<void>;
|
30958
|
-
resetValidation: () => Promise<void>;
|
30959
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
30960
|
-
isValid: boolean | null;
|
30961
|
-
errorMessages: string[];
|
30962
|
-
}[]>;
|
30963
|
-
validate: () => Promise<{
|
30964
|
-
valid: boolean;
|
30965
|
-
errors: {
|
30966
|
-
id: number | string;
|
30967
|
-
errorMessages: string[];
|
30968
|
-
}[];
|
30969
|
-
}>;
|
30891
|
+
errors: FieldValidationResult[];
|
30892
|
+
isDisabled: boolean;
|
30893
|
+
isReadonly: boolean;
|
30894
|
+
isValidating: boolean;
|
30895
|
+
isValid: boolean | null;
|
30896
|
+
items: FormField[];
|
30897
|
+
validate: () => Promise<FormValidationResult>;
|
30970
30898
|
reset: () => void;
|
30971
30899
|
resetValidation: () => void;
|
30972
30900
|
}) => vue.VNodeChild) | undefined;
|
30973
30901
|
} | undefined;
|
30974
30902
|
} & {
|
30975
30903
|
"v-slot:default"?: false | ((arg: {
|
30976
|
-
errors:
|
30977
|
-
|
30978
|
-
|
30979
|
-
|
30980
|
-
|
30981
|
-
|
30982
|
-
|
30983
|
-
isDisabled: vue.ComputedRef<boolean>;
|
30984
|
-
isReadonly: vue.ComputedRef<boolean>;
|
30985
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
30986
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
30987
|
-
readonly externalValue: boolean | null;
|
30988
|
-
};
|
30989
|
-
items: vue.Ref<{
|
30990
|
-
id: number | string;
|
30991
|
-
validate: () => Promise<string[]>;
|
30992
|
-
reset: () => Promise<void>;
|
30993
|
-
resetValidation: () => Promise<void>;
|
30994
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
30995
|
-
isValid: boolean | null;
|
30996
|
-
errorMessages: string[];
|
30997
|
-
}[], FormField[] | {
|
30998
|
-
id: number | string;
|
30999
|
-
validate: () => Promise<string[]>;
|
31000
|
-
reset: () => Promise<void>;
|
31001
|
-
resetValidation: () => Promise<void>;
|
31002
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31003
|
-
isValid: boolean | null;
|
31004
|
-
errorMessages: string[];
|
31005
|
-
}[]>;
|
31006
|
-
validate: () => Promise<{
|
31007
|
-
valid: boolean;
|
31008
|
-
errors: {
|
31009
|
-
id: number | string;
|
31010
|
-
errorMessages: string[];
|
31011
|
-
}[];
|
31012
|
-
}>;
|
30904
|
+
errors: FieldValidationResult[];
|
30905
|
+
isDisabled: boolean;
|
30906
|
+
isReadonly: boolean;
|
30907
|
+
isValidating: boolean;
|
30908
|
+
isValid: boolean | null;
|
30909
|
+
items: FormField[];
|
30910
|
+
validate: () => Promise<FormValidationResult>;
|
31013
30911
|
reset: () => void;
|
31014
30912
|
resetValidation: () => void;
|
31015
30913
|
}) => vue.VNodeChild) | undefined;
|
@@ -31110,43 +31008,13 @@ declare const VForm: {
|
|
31110
31008
|
fastFail: boolean;
|
31111
31009
|
}, true, {}, vue.SlotsType<Partial<{
|
31112
31010
|
default: (arg: {
|
31113
|
-
errors:
|
31114
|
-
|
31115
|
-
|
31116
|
-
|
31117
|
-
|
31118
|
-
|
31119
|
-
|
31120
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31121
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31122
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31123
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31124
|
-
readonly externalValue: boolean | null;
|
31125
|
-
};
|
31126
|
-
items: vue.Ref<{
|
31127
|
-
id: number | string;
|
31128
|
-
validate: () => Promise<string[]>;
|
31129
|
-
reset: () => Promise<void>;
|
31130
|
-
resetValidation: () => Promise<void>;
|
31131
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31132
|
-
isValid: boolean | null;
|
31133
|
-
errorMessages: string[];
|
31134
|
-
}[], FormField[] | {
|
31135
|
-
id: number | string;
|
31136
|
-
validate: () => Promise<string[]>;
|
31137
|
-
reset: () => Promise<void>;
|
31138
|
-
resetValidation: () => Promise<void>;
|
31139
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31140
|
-
isValid: boolean | null;
|
31141
|
-
errorMessages: string[];
|
31142
|
-
}[]>;
|
31143
|
-
validate: () => Promise<{
|
31144
|
-
valid: boolean;
|
31145
|
-
errors: {
|
31146
|
-
id: number | string;
|
31147
|
-
errorMessages: string[];
|
31148
|
-
}[];
|
31149
|
-
}>;
|
31011
|
+
errors: FieldValidationResult[];
|
31012
|
+
isDisabled: boolean;
|
31013
|
+
isReadonly: boolean;
|
31014
|
+
isValidating: boolean;
|
31015
|
+
isValid: boolean | null;
|
31016
|
+
items: FormField[];
|
31017
|
+
validate: () => Promise<FormValidationResult>;
|
31150
31018
|
reset: () => void;
|
31151
31019
|
resetValidation: () => void;
|
31152
31020
|
}) => vue.VNode[];
|
@@ -31169,169 +31037,49 @@ declare const VForm: {
|
|
31169
31037
|
} & {
|
31170
31038
|
$children?: vue.VNodeChild | {
|
31171
31039
|
default?: ((arg: {
|
31172
|
-
errors:
|
31173
|
-
|
31174
|
-
|
31175
|
-
|
31176
|
-
|
31177
|
-
|
31178
|
-
|
31179
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31180
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31181
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31182
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31183
|
-
readonly externalValue: boolean | null;
|
31184
|
-
};
|
31185
|
-
items: vue.Ref<{
|
31186
|
-
id: number | string;
|
31187
|
-
validate: () => Promise<string[]>;
|
31188
|
-
reset: () => Promise<void>;
|
31189
|
-
resetValidation: () => Promise<void>;
|
31190
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31191
|
-
isValid: boolean | null;
|
31192
|
-
errorMessages: string[];
|
31193
|
-
}[], FormField[] | {
|
31194
|
-
id: number | string;
|
31195
|
-
validate: () => Promise<string[]>;
|
31196
|
-
reset: () => Promise<void>;
|
31197
|
-
resetValidation: () => Promise<void>;
|
31198
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31199
|
-
isValid: boolean | null;
|
31200
|
-
errorMessages: string[];
|
31201
|
-
}[]>;
|
31202
|
-
validate: () => Promise<{
|
31203
|
-
valid: boolean;
|
31204
|
-
errors: {
|
31205
|
-
id: number | string;
|
31206
|
-
errorMessages: string[];
|
31207
|
-
}[];
|
31208
|
-
}>;
|
31040
|
+
errors: FieldValidationResult[];
|
31041
|
+
isDisabled: boolean;
|
31042
|
+
isReadonly: boolean;
|
31043
|
+
isValidating: boolean;
|
31044
|
+
isValid: boolean | null;
|
31045
|
+
items: FormField[];
|
31046
|
+
validate: () => Promise<FormValidationResult>;
|
31209
31047
|
reset: () => void;
|
31210
31048
|
resetValidation: () => void;
|
31211
31049
|
}) => vue.VNodeChild) | undefined;
|
31212
31050
|
} | ((arg: {
|
31213
|
-
errors:
|
31214
|
-
|
31215
|
-
|
31216
|
-
|
31217
|
-
|
31218
|
-
|
31219
|
-
|
31220
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31221
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31222
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31223
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31224
|
-
readonly externalValue: boolean | null;
|
31225
|
-
};
|
31226
|
-
items: vue.Ref<{
|
31227
|
-
id: number | string;
|
31228
|
-
validate: () => Promise<string[]>;
|
31229
|
-
reset: () => Promise<void>;
|
31230
|
-
resetValidation: () => Promise<void>;
|
31231
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31232
|
-
isValid: boolean | null;
|
31233
|
-
errorMessages: string[];
|
31234
|
-
}[], FormField[] | {
|
31235
|
-
id: number | string;
|
31236
|
-
validate: () => Promise<string[]>;
|
31237
|
-
reset: () => Promise<void>;
|
31238
|
-
resetValidation: () => Promise<void>;
|
31239
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31240
|
-
isValid: boolean | null;
|
31241
|
-
errorMessages: string[];
|
31242
|
-
}[]>;
|
31243
|
-
validate: () => Promise<{
|
31244
|
-
valid: boolean;
|
31245
|
-
errors: {
|
31246
|
-
id: number | string;
|
31247
|
-
errorMessages: string[];
|
31248
|
-
}[];
|
31249
|
-
}>;
|
31051
|
+
errors: FieldValidationResult[];
|
31052
|
+
isDisabled: boolean;
|
31053
|
+
isReadonly: boolean;
|
31054
|
+
isValidating: boolean;
|
31055
|
+
isValid: boolean | null;
|
31056
|
+
items: FormField[];
|
31057
|
+
validate: () => Promise<FormValidationResult>;
|
31250
31058
|
reset: () => void;
|
31251
31059
|
resetValidation: () => void;
|
31252
31060
|
}) => vue.VNodeChild);
|
31253
31061
|
'v-slots'?: {
|
31254
31062
|
default?: false | ((arg: {
|
31255
|
-
errors:
|
31256
|
-
|
31257
|
-
|
31258
|
-
|
31259
|
-
|
31260
|
-
|
31261
|
-
|
31262
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31263
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31264
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31265
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31266
|
-
readonly externalValue: boolean | null;
|
31267
|
-
};
|
31268
|
-
items: vue.Ref<{
|
31269
|
-
id: number | string;
|
31270
|
-
validate: () => Promise<string[]>;
|
31271
|
-
reset: () => Promise<void>;
|
31272
|
-
resetValidation: () => Promise<void>;
|
31273
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31274
|
-
isValid: boolean | null;
|
31275
|
-
errorMessages: string[];
|
31276
|
-
}[], FormField[] | {
|
31277
|
-
id: number | string;
|
31278
|
-
validate: () => Promise<string[]>;
|
31279
|
-
reset: () => Promise<void>;
|
31280
|
-
resetValidation: () => Promise<void>;
|
31281
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31282
|
-
isValid: boolean | null;
|
31283
|
-
errorMessages: string[];
|
31284
|
-
}[]>;
|
31285
|
-
validate: () => Promise<{
|
31286
|
-
valid: boolean;
|
31287
|
-
errors: {
|
31288
|
-
id: number | string;
|
31289
|
-
errorMessages: string[];
|
31290
|
-
}[];
|
31291
|
-
}>;
|
31063
|
+
errors: FieldValidationResult[];
|
31064
|
+
isDisabled: boolean;
|
31065
|
+
isReadonly: boolean;
|
31066
|
+
isValidating: boolean;
|
31067
|
+
isValid: boolean | null;
|
31068
|
+
items: FormField[];
|
31069
|
+
validate: () => Promise<FormValidationResult>;
|
31292
31070
|
reset: () => void;
|
31293
31071
|
resetValidation: () => void;
|
31294
31072
|
}) => vue.VNodeChild) | undefined;
|
31295
31073
|
} | undefined;
|
31296
31074
|
} & {
|
31297
31075
|
"v-slot:default"?: false | ((arg: {
|
31298
|
-
errors:
|
31299
|
-
|
31300
|
-
|
31301
|
-
|
31302
|
-
|
31303
|
-
|
31304
|
-
|
31305
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31306
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31307
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31308
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31309
|
-
readonly externalValue: boolean | null;
|
31310
|
-
};
|
31311
|
-
items: vue.Ref<{
|
31312
|
-
id: number | string;
|
31313
|
-
validate: () => Promise<string[]>;
|
31314
|
-
reset: () => Promise<void>;
|
31315
|
-
resetValidation: () => Promise<void>;
|
31316
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31317
|
-
isValid: boolean | null;
|
31318
|
-
errorMessages: string[];
|
31319
|
-
}[], FormField[] | {
|
31320
|
-
id: number | string;
|
31321
|
-
validate: () => Promise<string[]>;
|
31322
|
-
reset: () => Promise<void>;
|
31323
|
-
resetValidation: () => Promise<void>;
|
31324
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31325
|
-
isValid: boolean | null;
|
31326
|
-
errorMessages: string[];
|
31327
|
-
}[]>;
|
31328
|
-
validate: () => Promise<{
|
31329
|
-
valid: boolean;
|
31330
|
-
errors: {
|
31331
|
-
id: number | string;
|
31332
|
-
errorMessages: string[];
|
31333
|
-
}[];
|
31334
|
-
}>;
|
31076
|
+
errors: FieldValidationResult[];
|
31077
|
+
isDisabled: boolean;
|
31078
|
+
isReadonly: boolean;
|
31079
|
+
isValidating: boolean;
|
31080
|
+
isValid: boolean | null;
|
31081
|
+
items: FormField[];
|
31082
|
+
validate: () => Promise<FormValidationResult>;
|
31335
31083
|
reset: () => void;
|
31336
31084
|
resetValidation: () => void;
|
31337
31085
|
}) => vue.VNodeChild) | undefined;
|
@@ -31378,334 +31126,162 @@ declare const VForm: {
|
|
31378
31126
|
}>;
|
31379
31127
|
reset: () => void;
|
31380
31128
|
resetValidation: () => void;
|
31381
|
-
} & HTMLFormElement & {
|
31382
|
-
_allExposed: {
|
31383
|
-
errors: vue.Ref<{
|
31384
|
-
id: number | string;
|
31385
|
-
errorMessages: string[];
|
31386
|
-
}[], FieldValidationResult[] | {
|
31387
|
-
id: number | string;
|
31388
|
-
errorMessages: string[];
|
31389
|
-
}[]>;
|
31390
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31391
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31392
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31393
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31394
|
-
readonly externalValue: boolean | null;
|
31395
|
-
};
|
31396
|
-
items: vue.Ref<{
|
31397
|
-
id: number | string;
|
31398
|
-
validate: () => Promise<string[]>;
|
31399
|
-
reset: () => Promise<void>;
|
31400
|
-
resetValidation: () => Promise<void>;
|
31401
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31402
|
-
isValid: boolean | null;
|
31403
|
-
errorMessages: string[];
|
31404
|
-
}[], FormField[] | {
|
31405
|
-
id: number | string;
|
31406
|
-
validate: () => Promise<string[]>;
|
31407
|
-
reset: () => Promise<void>;
|
31408
|
-
resetValidation: () => Promise<void>;
|
31409
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31410
|
-
isValid: boolean | null;
|
31411
|
-
errorMessages: string[];
|
31412
|
-
}[]>;
|
31413
|
-
validate: () => Promise<{
|
31414
|
-
valid: boolean;
|
31415
|
-
errors: {
|
31416
|
-
id: number | string;
|
31417
|
-
errorMessages: string[];
|
31418
|
-
}[];
|
31419
|
-
}>;
|
31420
|
-
reset: () => void;
|
31421
|
-
resetValidation: () => void;
|
31422
|
-
};
|
31423
|
-
}, {}, {}, {}, {
|
31424
|
-
style: vue.StyleValue;
|
31425
|
-
disabled: boolean;
|
31426
|
-
readonly: boolean;
|
31427
|
-
modelValue: boolean | null;
|
31428
|
-
validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
31429
|
-
fastFail: boolean;
|
31430
|
-
}>;
|
31431
|
-
__isFragment?: never;
|
31432
|
-
__isTeleport?: never;
|
31433
|
-
__isSuspense?: never;
|
31434
|
-
} & vue.ComponentOptionsBase<{
|
31435
|
-
style: vue.StyleValue;
|
31436
|
-
disabled: boolean;
|
31437
|
-
readonly: boolean;
|
31438
|
-
modelValue: boolean | null;
|
31439
|
-
validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
31440
|
-
fastFail: boolean;
|
31441
|
-
} & {
|
31442
|
-
class?: any;
|
31443
|
-
} & {
|
31444
|
-
$children?: vue.VNodeChild | {
|
31445
|
-
default?: ((arg: {
|
31446
|
-
errors: vue.Ref<{
|
31447
|
-
id: number | string;
|
31448
|
-
errorMessages: string[];
|
31449
|
-
}[], FieldValidationResult[] | {
|
31450
|
-
id: number | string;
|
31451
|
-
errorMessages: string[];
|
31452
|
-
}[]>;
|
31453
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31454
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31455
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31456
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31457
|
-
readonly externalValue: boolean | null;
|
31458
|
-
};
|
31459
|
-
items: vue.Ref<{
|
31460
|
-
id: number | string;
|
31461
|
-
validate: () => Promise<string[]>;
|
31462
|
-
reset: () => Promise<void>;
|
31463
|
-
resetValidation: () => Promise<void>;
|
31464
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31465
|
-
isValid: boolean | null;
|
31466
|
-
errorMessages: string[];
|
31467
|
-
}[], FormField[] | {
|
31468
|
-
id: number | string;
|
31469
|
-
validate: () => Promise<string[]>;
|
31470
|
-
reset: () => Promise<void>;
|
31471
|
-
resetValidation: () => Promise<void>;
|
31472
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31473
|
-
isValid: boolean | null;
|
31474
|
-
errorMessages: string[];
|
31475
|
-
}[]>;
|
31476
|
-
validate: () => Promise<{
|
31477
|
-
valid: boolean;
|
31478
|
-
errors: {
|
31479
|
-
id: number | string;
|
31480
|
-
errorMessages: string[];
|
31481
|
-
}[];
|
31482
|
-
}>;
|
31483
|
-
reset: () => void;
|
31484
|
-
resetValidation: () => void;
|
31485
|
-
}) => vue.VNodeChild) | undefined;
|
31486
|
-
} | ((arg: {
|
31487
|
-
errors: vue.Ref<{
|
31488
|
-
id: number | string;
|
31489
|
-
errorMessages: string[];
|
31490
|
-
}[], FieldValidationResult[] | {
|
31491
|
-
id: number | string;
|
31492
|
-
errorMessages: string[];
|
31493
|
-
}[]>;
|
31494
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31495
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31496
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31497
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31498
|
-
readonly externalValue: boolean | null;
|
31499
|
-
};
|
31500
|
-
items: vue.Ref<{
|
31501
|
-
id: number | string;
|
31502
|
-
validate: () => Promise<string[]>;
|
31503
|
-
reset: () => Promise<void>;
|
31504
|
-
resetValidation: () => Promise<void>;
|
31505
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31506
|
-
isValid: boolean | null;
|
31507
|
-
errorMessages: string[];
|
31508
|
-
}[], FormField[] | {
|
31509
|
-
id: number | string;
|
31510
|
-
validate: () => Promise<string[]>;
|
31511
|
-
reset: () => Promise<void>;
|
31512
|
-
resetValidation: () => Promise<void>;
|
31513
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31514
|
-
isValid: boolean | null;
|
31515
|
-
errorMessages: string[];
|
31516
|
-
}[]>;
|
31517
|
-
validate: () => Promise<{
|
31518
|
-
valid: boolean;
|
31519
|
-
errors: {
|
31520
|
-
id: number | string;
|
31521
|
-
errorMessages: string[];
|
31522
|
-
}[];
|
31523
|
-
}>;
|
31524
|
-
reset: () => void;
|
31525
|
-
resetValidation: () => void;
|
31526
|
-
}) => vue.VNodeChild);
|
31527
|
-
'v-slots'?: {
|
31528
|
-
default?: false | ((arg: {
|
31529
|
-
errors: vue.Ref<{
|
31530
|
-
id: number | string;
|
31531
|
-
errorMessages: string[];
|
31532
|
-
}[], FieldValidationResult[] | {
|
31533
|
-
id: number | string;
|
31534
|
-
errorMessages: string[];
|
31535
|
-
}[]>;
|
31536
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31537
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31538
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31539
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31540
|
-
readonly externalValue: boolean | null;
|
31541
|
-
};
|
31542
|
-
items: vue.Ref<{
|
31543
|
-
id: number | string;
|
31544
|
-
validate: () => Promise<string[]>;
|
31545
|
-
reset: () => Promise<void>;
|
31546
|
-
resetValidation: () => Promise<void>;
|
31547
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31548
|
-
isValid: boolean | null;
|
31549
|
-
errorMessages: string[];
|
31550
|
-
}[], FormField[] | {
|
31551
|
-
id: number | string;
|
31552
|
-
validate: () => Promise<string[]>;
|
31553
|
-
reset: () => Promise<void>;
|
31554
|
-
resetValidation: () => Promise<void>;
|
31555
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31556
|
-
isValid: boolean | null;
|
31557
|
-
errorMessages: string[];
|
31558
|
-
}[]>;
|
31559
|
-
validate: () => Promise<{
|
31560
|
-
valid: boolean;
|
31561
|
-
errors: {
|
31562
|
-
id: number | string;
|
31563
|
-
errorMessages: string[];
|
31564
|
-
}[];
|
31565
|
-
}>;
|
31566
|
-
reset: () => void;
|
31567
|
-
resetValidation: () => void;
|
31568
|
-
}) => vue.VNodeChild) | undefined;
|
31569
|
-
} | undefined;
|
31570
|
-
} & {
|
31571
|
-
"v-slot:default"?: false | ((arg: {
|
31572
|
-
errors: vue.Ref<{
|
31573
|
-
id: number | string;
|
31574
|
-
errorMessages: string[];
|
31575
|
-
}[], FieldValidationResult[] | {
|
31576
|
-
id: number | string;
|
31577
|
-
errorMessages: string[];
|
31578
|
-
}[]>;
|
31579
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31580
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31581
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31582
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31583
|
-
readonly externalValue: boolean | null;
|
31584
|
-
};
|
31585
|
-
items: vue.Ref<{
|
31586
|
-
id: number | string;
|
31587
|
-
validate: () => Promise<string[]>;
|
31588
|
-
reset: () => Promise<void>;
|
31589
|
-
resetValidation: () => Promise<void>;
|
31590
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31591
|
-
isValid: boolean | null;
|
31592
|
-
errorMessages: string[];
|
31593
|
-
}[], FormField[] | {
|
31594
|
-
id: number | string;
|
31595
|
-
validate: () => Promise<string[]>;
|
31596
|
-
reset: () => Promise<void>;
|
31597
|
-
resetValidation: () => Promise<void>;
|
31598
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31599
|
-
isValid: boolean | null;
|
31600
|
-
errorMessages: string[];
|
31601
|
-
}[]>;
|
31602
|
-
validate: () => Promise<{
|
31603
|
-
valid: boolean;
|
31604
|
-
errors: {
|
31605
|
-
id: number | string;
|
31606
|
-
errorMessages: string[];
|
31607
|
-
}[];
|
31608
|
-
}>;
|
31609
|
-
reset: () => void;
|
31610
|
-
resetValidation: () => void;
|
31611
|
-
}) => vue.VNodeChild) | undefined;
|
31612
|
-
} & {
|
31613
|
-
onSubmit?: ((e: SubmitEventPromise) => any) | undefined;
|
31614
|
-
"onUpdate:modelValue"?: ((val: boolean | null) => any) | undefined;
|
31615
|
-
}, {
|
31616
|
-
errors: vue.Ref<{
|
31617
|
-
id: number | string;
|
31618
|
-
errorMessages: string[];
|
31619
|
-
}[], FieldValidationResult[] | {
|
31620
|
-
id: number | string;
|
31621
|
-
errorMessages: string[];
|
31622
|
-
}[]>;
|
31623
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31624
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31625
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31626
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31627
|
-
readonly externalValue: boolean | null;
|
31628
|
-
};
|
31629
|
-
items: vue.Ref<{
|
31630
|
-
id: number | string;
|
31631
|
-
validate: () => Promise<string[]>;
|
31632
|
-
reset: () => Promise<void>;
|
31633
|
-
resetValidation: () => Promise<void>;
|
31634
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31635
|
-
isValid: boolean | null;
|
31636
|
-
errorMessages: string[];
|
31637
|
-
}[], FormField[] | {
|
31638
|
-
id: number | string;
|
31639
|
-
validate: () => Promise<string[]>;
|
31640
|
-
reset: () => Promise<void>;
|
31641
|
-
resetValidation: () => Promise<void>;
|
31642
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31643
|
-
isValid: boolean | null;
|
31644
|
-
errorMessages: string[];
|
31645
|
-
}[]>;
|
31646
|
-
validate: () => Promise<{
|
31647
|
-
valid: boolean;
|
31648
|
-
errors: {
|
31649
|
-
id: number | string;
|
31650
|
-
errorMessages: string[];
|
31651
|
-
}[];
|
31652
|
-
}>;
|
31653
|
-
reset: () => void;
|
31654
|
-
resetValidation: () => void;
|
31655
|
-
} & HTMLFormElement & {
|
31656
|
-
_allExposed: {
|
31657
|
-
errors: vue.Ref<{
|
31658
|
-
id: number | string;
|
31659
|
-
errorMessages: string[];
|
31660
|
-
}[], FieldValidationResult[] | {
|
31661
|
-
id: number | string;
|
31662
|
-
errorMessages: string[];
|
31663
|
-
}[]>;
|
31664
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31665
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31666
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31667
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31668
|
-
readonly externalValue: boolean | null;
|
31669
|
-
};
|
31670
|
-
items: vue.Ref<{
|
31671
|
-
id: number | string;
|
31672
|
-
validate: () => Promise<string[]>;
|
31673
|
-
reset: () => Promise<void>;
|
31674
|
-
resetValidation: () => Promise<void>;
|
31675
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31676
|
-
isValid: boolean | null;
|
31677
|
-
errorMessages: string[];
|
31678
|
-
}[], FormField[] | {
|
31679
|
-
id: number | string;
|
31680
|
-
validate: () => Promise<string[]>;
|
31681
|
-
reset: () => Promise<void>;
|
31682
|
-
resetValidation: () => Promise<void>;
|
31683
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31684
|
-
isValid: boolean | null;
|
31685
|
-
errorMessages: string[];
|
31686
|
-
}[]>;
|
31687
|
-
validate: () => Promise<{
|
31688
|
-
valid: boolean;
|
31689
|
-
errors: {
|
31690
|
-
id: number | string;
|
31691
|
-
errorMessages: string[];
|
31692
|
-
}[];
|
31693
|
-
}>;
|
31694
|
-
reset: () => void;
|
31695
|
-
resetValidation: () => void;
|
31696
|
-
};
|
31697
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
31698
|
-
'update:modelValue': (val: boolean | null) => true;
|
31699
|
-
submit: (e: SubmitEventPromise) => true;
|
31700
|
-
}, string, {
|
31129
|
+
} & HTMLFormElement & {
|
31130
|
+
_allExposed: {
|
31131
|
+
errors: vue.Ref<{
|
31132
|
+
id: number | string;
|
31133
|
+
errorMessages: string[];
|
31134
|
+
}[], FieldValidationResult[] | {
|
31135
|
+
id: number | string;
|
31136
|
+
errorMessages: string[];
|
31137
|
+
}[]>;
|
31138
|
+
isDisabled: vue.ComputedRef<boolean>;
|
31139
|
+
isReadonly: vue.ComputedRef<boolean>;
|
31140
|
+
isValidating: vue.ShallowRef<boolean, boolean>;
|
31141
|
+
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31142
|
+
readonly externalValue: boolean | null;
|
31143
|
+
};
|
31144
|
+
items: vue.Ref<{
|
31145
|
+
id: number | string;
|
31146
|
+
validate: () => Promise<string[]>;
|
31147
|
+
reset: () => Promise<void>;
|
31148
|
+
resetValidation: () => Promise<void>;
|
31149
|
+
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31150
|
+
isValid: boolean | null;
|
31151
|
+
errorMessages: string[];
|
31152
|
+
}[], FormField[] | {
|
31153
|
+
id: number | string;
|
31154
|
+
validate: () => Promise<string[]>;
|
31155
|
+
reset: () => Promise<void>;
|
31156
|
+
resetValidation: () => Promise<void>;
|
31157
|
+
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31158
|
+
isValid: boolean | null;
|
31159
|
+
errorMessages: string[];
|
31160
|
+
}[]>;
|
31161
|
+
validate: () => Promise<{
|
31162
|
+
valid: boolean;
|
31163
|
+
errors: {
|
31164
|
+
id: number | string;
|
31165
|
+
errorMessages: string[];
|
31166
|
+
}[];
|
31167
|
+
}>;
|
31168
|
+
reset: () => void;
|
31169
|
+
resetValidation: () => void;
|
31170
|
+
};
|
31171
|
+
}, {}, {}, {}, {
|
31172
|
+
style: vue.StyleValue;
|
31173
|
+
disabled: boolean;
|
31174
|
+
readonly: boolean;
|
31175
|
+
modelValue: boolean | null;
|
31176
|
+
validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
31177
|
+
fastFail: boolean;
|
31178
|
+
}>;
|
31179
|
+
__isFragment?: never;
|
31180
|
+
__isTeleport?: never;
|
31181
|
+
__isSuspense?: never;
|
31182
|
+
} & vue.ComponentOptionsBase<{
|
31701
31183
|
style: vue.StyleValue;
|
31702
31184
|
disabled: boolean;
|
31703
31185
|
readonly: boolean;
|
31704
31186
|
modelValue: boolean | null;
|
31705
31187
|
validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
31706
31188
|
fastFail: boolean;
|
31707
|
-
}
|
31708
|
-
|
31189
|
+
} & {
|
31190
|
+
class?: any;
|
31191
|
+
} & {
|
31192
|
+
$children?: vue.VNodeChild | {
|
31193
|
+
default?: ((arg: {
|
31194
|
+
errors: FieldValidationResult[];
|
31195
|
+
isDisabled: boolean;
|
31196
|
+
isReadonly: boolean;
|
31197
|
+
isValidating: boolean;
|
31198
|
+
isValid: boolean | null;
|
31199
|
+
items: FormField[];
|
31200
|
+
validate: () => Promise<FormValidationResult>;
|
31201
|
+
reset: () => void;
|
31202
|
+
resetValidation: () => void;
|
31203
|
+
}) => vue.VNodeChild) | undefined;
|
31204
|
+
} | ((arg: {
|
31205
|
+
errors: FieldValidationResult[];
|
31206
|
+
isDisabled: boolean;
|
31207
|
+
isReadonly: boolean;
|
31208
|
+
isValidating: boolean;
|
31209
|
+
isValid: boolean | null;
|
31210
|
+
items: FormField[];
|
31211
|
+
validate: () => Promise<FormValidationResult>;
|
31212
|
+
reset: () => void;
|
31213
|
+
resetValidation: () => void;
|
31214
|
+
}) => vue.VNodeChild);
|
31215
|
+
'v-slots'?: {
|
31216
|
+
default?: false | ((arg: {
|
31217
|
+
errors: FieldValidationResult[];
|
31218
|
+
isDisabled: boolean;
|
31219
|
+
isReadonly: boolean;
|
31220
|
+
isValidating: boolean;
|
31221
|
+
isValid: boolean | null;
|
31222
|
+
items: FormField[];
|
31223
|
+
validate: () => Promise<FormValidationResult>;
|
31224
|
+
reset: () => void;
|
31225
|
+
resetValidation: () => void;
|
31226
|
+
}) => vue.VNodeChild) | undefined;
|
31227
|
+
} | undefined;
|
31228
|
+
} & {
|
31229
|
+
"v-slot:default"?: false | ((arg: {
|
31230
|
+
errors: FieldValidationResult[];
|
31231
|
+
isDisabled: boolean;
|
31232
|
+
isReadonly: boolean;
|
31233
|
+
isValidating: boolean;
|
31234
|
+
isValid: boolean | null;
|
31235
|
+
items: FormField[];
|
31236
|
+
validate: () => Promise<FormValidationResult>;
|
31237
|
+
reset: () => void;
|
31238
|
+
resetValidation: () => void;
|
31239
|
+
}) => vue.VNodeChild) | undefined;
|
31240
|
+
} & {
|
31241
|
+
onSubmit?: ((e: SubmitEventPromise) => any) | undefined;
|
31242
|
+
"onUpdate:modelValue"?: ((val: boolean | null) => any) | undefined;
|
31243
|
+
}, {
|
31244
|
+
errors: vue.Ref<{
|
31245
|
+
id: number | string;
|
31246
|
+
errorMessages: string[];
|
31247
|
+
}[], FieldValidationResult[] | {
|
31248
|
+
id: number | string;
|
31249
|
+
errorMessages: string[];
|
31250
|
+
}[]>;
|
31251
|
+
isDisabled: vue.ComputedRef<boolean>;
|
31252
|
+
isReadonly: vue.ComputedRef<boolean>;
|
31253
|
+
isValidating: vue.ShallowRef<boolean, boolean>;
|
31254
|
+
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31255
|
+
readonly externalValue: boolean | null;
|
31256
|
+
};
|
31257
|
+
items: vue.Ref<{
|
31258
|
+
id: number | string;
|
31259
|
+
validate: () => Promise<string[]>;
|
31260
|
+
reset: () => Promise<void>;
|
31261
|
+
resetValidation: () => Promise<void>;
|
31262
|
+
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31263
|
+
isValid: boolean | null;
|
31264
|
+
errorMessages: string[];
|
31265
|
+
}[], FormField[] | {
|
31266
|
+
id: number | string;
|
31267
|
+
validate: () => Promise<string[]>;
|
31268
|
+
reset: () => Promise<void>;
|
31269
|
+
resetValidation: () => Promise<void>;
|
31270
|
+
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31271
|
+
isValid: boolean | null;
|
31272
|
+
errorMessages: string[];
|
31273
|
+
}[]>;
|
31274
|
+
validate: () => Promise<{
|
31275
|
+
valid: boolean;
|
31276
|
+
errors: {
|
31277
|
+
id: number | string;
|
31278
|
+
errorMessages: string[];
|
31279
|
+
}[];
|
31280
|
+
}>;
|
31281
|
+
reset: () => void;
|
31282
|
+
resetValidation: () => void;
|
31283
|
+
} & HTMLFormElement & {
|
31284
|
+
_allExposed: {
|
31709
31285
|
errors: vue.Ref<{
|
31710
31286
|
id: number | string;
|
31711
31287
|
errorMessages: string[];
|
@@ -31745,6 +31321,28 @@ declare const VForm: {
|
|
31745
31321
|
}>;
|
31746
31322
|
reset: () => void;
|
31747
31323
|
resetValidation: () => void;
|
31324
|
+
};
|
31325
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
31326
|
+
'update:modelValue': (val: boolean | null) => true;
|
31327
|
+
submit: (e: SubmitEventPromise) => true;
|
31328
|
+
}, string, {
|
31329
|
+
style: vue.StyleValue;
|
31330
|
+
disabled: boolean;
|
31331
|
+
readonly: boolean;
|
31332
|
+
modelValue: boolean | null;
|
31333
|
+
validateOn: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
31334
|
+
fastFail: boolean;
|
31335
|
+
}, {}, string, vue.SlotsType<Partial<{
|
31336
|
+
default: (arg: {
|
31337
|
+
errors: FieldValidationResult[];
|
31338
|
+
isDisabled: boolean;
|
31339
|
+
isReadonly: boolean;
|
31340
|
+
isValidating: boolean;
|
31341
|
+
isValid: boolean | null;
|
31342
|
+
items: FormField[];
|
31343
|
+
validate: () => Promise<FormValidationResult>;
|
31344
|
+
reset: () => void;
|
31345
|
+
resetValidation: () => void;
|
31748
31346
|
}) => vue.VNode[];
|
31749
31347
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
31750
31348
|
disabled: BooleanConstructor;
|
@@ -39246,17 +38844,20 @@ declare const VSelect: {
|
|
39246
38844
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
39247
38845
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
39248
38846
|
item: (arg: {
|
39249
|
-
item:
|
38847
|
+
item: unknown;
|
38848
|
+
internalItem: ListItem<unknown>;
|
39250
38849
|
index: number;
|
39251
38850
|
props: Record<string, unknown>;
|
39252
38851
|
}) => vue.VNode[];
|
39253
38852
|
chip: (arg: {
|
39254
|
-
item:
|
38853
|
+
item: unknown;
|
38854
|
+
internalItem: ListItem<unknown>;
|
39255
38855
|
index: number;
|
39256
38856
|
props: Record<string, unknown>;
|
39257
38857
|
}) => vue.VNode[];
|
39258
38858
|
selection: (arg: {
|
39259
|
-
item:
|
38859
|
+
item: unknown;
|
38860
|
+
internalItem: ListItem<unknown>;
|
39260
38861
|
index: number;
|
39261
38862
|
}) => vue.VNode[];
|
39262
38863
|
'prepend-item': () => vue.VNode[];
|
@@ -40101,17 +39702,20 @@ declare const VSelect: {
|
|
40101
39702
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
40102
39703
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
40103
39704
|
item: (arg: {
|
40104
|
-
item:
|
39705
|
+
item: unknown;
|
39706
|
+
internalItem: ListItem<unknown>;
|
40105
39707
|
index: number;
|
40106
39708
|
props: Record<string, unknown>;
|
40107
39709
|
}) => vue.VNode[];
|
40108
39710
|
chip: (arg: {
|
40109
|
-
item:
|
39711
|
+
item: unknown;
|
39712
|
+
internalItem: ListItem<unknown>;
|
40110
39713
|
index: number;
|
40111
39714
|
props: Record<string, unknown>;
|
40112
39715
|
}) => vue.VNode[];
|
40113
39716
|
selection: (arg: {
|
40114
|
-
item:
|
39717
|
+
item: unknown;
|
39718
|
+
internalItem: ListItem<unknown>;
|
40115
39719
|
index: number;
|
40116
39720
|
}) => vue.VNode[];
|
40117
39721
|
'prepend-item': () => vue.VNode[];
|
@@ -40128,17 +39732,20 @@ declare const VSelect: {
|
|
40128
39732
|
"onUpdate:modelValue"?: (value: V) => void;
|
40129
39733
|
}, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
|
40130
39734
|
item: {
|
40131
|
-
item:
|
39735
|
+
item: Item;
|
39736
|
+
internalItem: ListItem<Item>;
|
40132
39737
|
index: number;
|
40133
39738
|
props: Record<string, unknown>;
|
40134
39739
|
};
|
40135
39740
|
chip: {
|
40136
|
-
item:
|
39741
|
+
item: Item;
|
39742
|
+
internalItem: ListItem<Item>;
|
40137
39743
|
index: number;
|
40138
39744
|
props: Record<string, unknown>;
|
40139
39745
|
};
|
40140
39746
|
selection: {
|
40141
|
-
item:
|
39747
|
+
item: Item;
|
39748
|
+
internalItem: ListItem<Item>;
|
40142
39749
|
index: number;
|
40143
39750
|
};
|
40144
39751
|
"prepend-item": never;
|
@@ -57890,52 +57497,45 @@ declare module 'vue' {
|
|
57890
57497
|
$children?: VNodeChild
|
57891
57498
|
}
|
57892
57499
|
export interface GlobalComponents {
|
57500
|
+
VAutocomplete: VAutocomplete
|
57893
57501
|
VApp: VApp
|
57894
57502
|
VAlert: VAlert
|
57895
57503
|
VAlertTitle: VAlertTitle
|
57896
|
-
|
57897
|
-
VAppBar: VAppBar
|
57898
|
-
VAppBarNavIcon: VAppBarNavIcon
|
57899
|
-
VAppBarTitle: VAppBarTitle
|
57504
|
+
VAvatar: VAvatar
|
57900
57505
|
VBreadcrumbs: VBreadcrumbs
|
57901
57506
|
VBreadcrumbsItem: VBreadcrumbsItem
|
57902
57507
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
57903
|
-
VBanner: VBanner
|
57904
|
-
VBannerActions: VBannerActions
|
57905
|
-
VBannerText: VBannerText
|
57906
|
-
VBottomSheet: VBottomSheet
|
57907
57508
|
VBadge: VBadge
|
57908
|
-
VAvatar: VAvatar
|
57909
57509
|
VBottomNavigation: VBottomNavigation
|
57910
|
-
VBtnGroup: VBtnGroup
|
57911
|
-
VBtnToggle: VBtnToggle
|
57912
|
-
VCarousel: VCarousel
|
57913
|
-
VCarouselItem: VCarouselItem
|
57914
57510
|
VBtn: VBtn
|
57511
|
+
VBanner: VBanner
|
57512
|
+
VBannerActions: VBannerActions
|
57513
|
+
VBannerText: VBannerText
|
57915
57514
|
VCard: VCard
|
57916
57515
|
VCardActions: VCardActions
|
57917
57516
|
VCardItem: VCardItem
|
57918
57517
|
VCardSubtitle: VCardSubtitle
|
57919
57518
|
VCardText: VCardText
|
57920
57519
|
VCardTitle: VCardTitle
|
57921
|
-
|
57520
|
+
VCarousel: VCarousel
|
57521
|
+
VCarouselItem: VCarouselItem
|
57522
|
+
VBtnGroup: VBtnGroup
|
57523
|
+
VBottomSheet: VBottomSheet
|
57524
|
+
VBtnToggle: VBtnToggle
|
57525
|
+
VChipGroup: VChipGroup
|
57922
57526
|
VCheckbox: VCheckbox
|
57923
57527
|
VCheckboxBtn: VCheckboxBtn
|
57924
|
-
|
57925
|
-
VChipGroup: VChipGroup
|
57926
|
-
VCounter: VCounter
|
57528
|
+
VChip: VChip
|
57927
57529
|
VColorPicker: VColorPicker
|
57928
57530
|
VCombobox: VCombobox
|
57531
|
+
VCode: VCode
|
57929
57532
|
VDatePicker: VDatePicker
|
57930
57533
|
VDatePickerControls: VDatePickerControls
|
57931
57534
|
VDatePickerHeader: VDatePickerHeader
|
57932
57535
|
VDatePickerMonth: VDatePickerMonth
|
57933
57536
|
VDatePickerMonths: VDatePickerMonths
|
57934
57537
|
VDatePickerYears: VDatePickerYears
|
57935
|
-
|
57936
|
-
VDialog: VDialog
|
57937
|
-
VField: VField
|
57938
|
-
VFieldLabel: VFieldLabel
|
57538
|
+
VCounter: VCounter
|
57939
57539
|
VEmptyState: VEmptyState
|
57940
57540
|
VDataTable: VDataTable
|
57941
57541
|
VDataTableHeaders: VDataTableHeaders
|
@@ -57944,26 +57544,27 @@ declare module 'vue' {
|
|
57944
57544
|
VDataTableRow: VDataTableRow
|
57945
57545
|
VDataTableVirtual: VDataTableVirtual
|
57946
57546
|
VDataTableServer: VDataTableServer
|
57547
|
+
VDialog: VDialog
|
57548
|
+
VDivider: VDivider
|
57549
|
+
VFab: VFab
|
57947
57550
|
VExpansionPanels: VExpansionPanels
|
57948
57551
|
VExpansionPanel: VExpansionPanel
|
57949
57552
|
VExpansionPanelText: VExpansionPanelText
|
57950
57553
|
VExpansionPanelTitle: VExpansionPanelTitle
|
57951
|
-
VFooter: VFooter
|
57952
|
-
VFab: VFab
|
57953
57554
|
VFileInput: VFileInput
|
57954
|
-
VInput: VInput
|
57955
57555
|
VIcon: VIcon
|
57956
57556
|
VComponentIcon: VComponentIcon
|
57957
57557
|
VSvgIcon: VSvgIcon
|
57958
57558
|
VLigatureIcon: VLigatureIcon
|
57959
57559
|
VClassIcon: VClassIcon
|
57560
|
+
VFooter: VFooter
|
57561
|
+
VField: VField
|
57562
|
+
VFieldLabel: VFieldLabel
|
57563
|
+
VInfiniteScroll: VInfiniteScroll
|
57960
57564
|
VItemGroup: VItemGroup
|
57961
57565
|
VItem: VItem
|
57566
|
+
VInput: VInput
|
57962
57567
|
VImg: VImg
|
57963
|
-
VInfiniteScroll: VInfiniteScroll
|
57964
|
-
VKbd: VKbd
|
57965
|
-
VMain: VMain
|
57966
|
-
VMessages: VMessages
|
57967
57568
|
VLabel: VLabel
|
57968
57569
|
VList: VList
|
57969
57570
|
VListGroup: VListGroup
|
@@ -57974,70 +57575,73 @@ declare module 'vue' {
|
|
57974
57575
|
VListItemSubtitle: VListItemSubtitle
|
57975
57576
|
VListItemTitle: VListItemTitle
|
57976
57577
|
VListSubheader: VListSubheader
|
57578
|
+
VMain: VMain
|
57579
|
+
VKbd: VKbd
|
57580
|
+
VMessages: VMessages
|
57581
|
+
VMenu: VMenu
|
57582
|
+
VNavigationDrawer: VNavigationDrawer
|
57977
57583
|
VOverlay: VOverlay
|
57584
|
+
VOtpInput: VOtpInput
|
57585
|
+
VProgressLinear: VProgressLinear
|
57586
|
+
VRadioGroup: VRadioGroup
|
57978
57587
|
VProgressCircular: VProgressCircular
|
57979
|
-
VNavigationDrawer: VNavigationDrawer
|
57980
57588
|
VPagination: VPagination
|
57981
|
-
VMenu: VMenu
|
57982
|
-
VRadioGroup: VRadioGroup
|
57983
|
-
VOtpInput: VOtpInput
|
57984
57589
|
VRating: VRating
|
57985
|
-
VProgressLinear: VProgressLinear
|
57986
|
-
VSheet: VSheet
|
57987
|
-
VSelectionControl: VSelectionControl
|
57988
57590
|
VSelect: VSelect
|
57989
|
-
|
57591
|
+
VSelectionControl: VSelectionControl
|
57592
|
+
VSheet: VSheet
|
57593
|
+
VSnackbar: VSnackbar
|
57990
57594
|
VSlideGroup: VSlideGroup
|
57991
57595
|
VSlideGroupItem: VSlideGroupItem
|
57992
|
-
|
57596
|
+
VSelectionControlGroup: VSelectionControlGroup
|
57993
57597
|
VSkeletonLoader: VSkeletonLoader
|
57994
|
-
VSwitch: VSwitch
|
57995
|
-
VTab: VTab
|
57996
|
-
VTabs: VTabs
|
57997
|
-
VTabsWindow: VTabsWindow
|
57998
|
-
VTabsWindowItem: VTabsWindowItem
|
57999
57598
|
VSlider: VSlider
|
58000
|
-
VTable: VTable
|
58001
57599
|
VStepper: VStepper
|
58002
57600
|
VStepperActions: VStepperActions
|
58003
57601
|
VStepperHeader: VStepperHeader
|
58004
57602
|
VStepperItem: VStepperItem
|
58005
57603
|
VStepperWindow: VStepperWindow
|
58006
57604
|
VStepperWindowItem: VStepperWindowItem
|
57605
|
+
VTab: VTab
|
57606
|
+
VTabs: VTabs
|
57607
|
+
VTabsWindow: VTabsWindow
|
57608
|
+
VTabsWindowItem: VTabsWindowItem
|
58007
57609
|
VSystemBar: VSystemBar
|
58008
|
-
VTextarea: VTextarea
|
58009
|
-
VTextField: VTextField
|
58010
57610
|
VToolbar: VToolbar
|
58011
57611
|
VToolbarTitle: VToolbarTitle
|
58012
57612
|
VToolbarItems: VToolbarItems
|
58013
|
-
|
58014
|
-
|
57613
|
+
VTextarea: VTextarea
|
57614
|
+
VTextField: VTextField
|
57615
|
+
VSwitch: VSwitch
|
57616
|
+
VTable: VTable
|
58015
57617
|
VTooltip: VTooltip
|
58016
57618
|
VWindow: VWindow
|
58017
57619
|
VWindowItem: VWindowItem
|
58018
|
-
|
57620
|
+
VTimeline: VTimeline
|
57621
|
+
VTimelineItem: VTimelineItem
|
58019
57622
|
VConfirmEdit: VConfirmEdit
|
57623
|
+
VDataIterator: VDataIterator
|
58020
57624
|
VDefaultsProvider: VDefaultsProvider
|
57625
|
+
VForm: VForm
|
58021
57626
|
VContainer: VContainer
|
58022
57627
|
VCol: VCol
|
58023
57628
|
VRow: VRow
|
58024
57629
|
VSpacer: VSpacer
|
58025
57630
|
VHover: VHover
|
58026
|
-
VForm: VForm
|
58027
|
-
VLazy: VLazy
|
58028
57631
|
VLayout: VLayout
|
58029
57632
|
VLayoutItem: VLayoutItem
|
57633
|
+
VLazy: VLazy
|
58030
57634
|
VLocaleProvider: VLocaleProvider
|
58031
57635
|
VNoSsr: VNoSsr
|
58032
57636
|
VParallax: VParallax
|
58033
57637
|
VRadio: VRadio
|
58034
|
-
VResponsive: VResponsive
|
58035
57638
|
VRangeSlider: VRangeSlider
|
57639
|
+
VResponsive: VResponsive
|
58036
57640
|
VSparkline: VSparkline
|
58037
57641
|
VSpeedDial: VSpeedDial
|
58038
57642
|
VThemeProvider: VThemeProvider
|
58039
|
-
VValidation: VValidation
|
58040
57643
|
VVirtualScroll: VVirtualScroll
|
57644
|
+
VValidation: VValidation
|
58041
57645
|
VFabTransition: VFabTransition
|
58042
57646
|
VDialogBottomTransition: VDialogBottomTransition
|
58043
57647
|
VDialogTopTransition: VDialogTopTransition
|
@@ -58054,26 +57658,29 @@ declare module 'vue' {
|
|
58054
57658
|
VExpandTransition: VExpandTransition
|
58055
57659
|
VExpandXTransition: VExpandXTransition
|
58056
57660
|
VDialogTransition: VDialogTransition
|
57661
|
+
VAppBar: VAppBar
|
57662
|
+
VAppBarNavIcon: VAppBarNavIcon
|
57663
|
+
VAppBarTitle: VAppBarTitle
|
57664
|
+
VNumberInput: VNumberInput
|
57665
|
+
VPicker: VPicker
|
57666
|
+
VPickerTitle: VPickerTitle
|
58057
57667
|
VCalendar: VCalendar
|
58058
57668
|
VCalendarDay: VCalendarDay
|
58059
57669
|
VCalendarHeader: VCalendarHeader
|
58060
57670
|
VCalendarInterval: VCalendarInterval
|
58061
57671
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
58062
57672
|
VCalendarMonthDay: VCalendarMonthDay
|
58063
|
-
VNumberInput: VNumberInput
|
58064
|
-
VPicker: VPicker
|
58065
|
-
VPickerTitle: VPickerTitle
|
58066
57673
|
VFileUpload: VFileUpload
|
58067
57674
|
VFileUploadItem: VFileUploadItem
|
58068
57675
|
VStepperVertical: VStepperVertical
|
58069
57676
|
VStepperVerticalItem: VStepperVerticalItem
|
58070
57677
|
VStepperVerticalActions: VStepperVerticalActions
|
58071
|
-
VTimePicker: VTimePicker
|
58072
|
-
VTimePickerClock: VTimePickerClock
|
58073
|
-
VTimePickerControls: VTimePickerControls
|
58074
57678
|
VTreeview: VTreeview
|
58075
57679
|
VTreeviewItem: VTreeviewItem
|
58076
57680
|
VTreeviewGroup: VTreeviewGroup
|
57681
|
+
VTimePicker: VTimePicker
|
57682
|
+
VTimePickerClock: VTimePickerClock
|
57683
|
+
VTimePickerControls: VTimePickerControls
|
58077
57684
|
VDateInput: VDateInput
|
58078
57685
|
VPullToRefresh: VPullToRefresh
|
58079
57686
|
VSnackbarQueue: VSnackbarQueue
|