@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-labs.d.ts
CHANGED
@@ -8014,17 +8014,20 @@ declare const VAutocomplete: {
|
|
8014
8014
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8015
8015
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8016
8016
|
item: (arg: {
|
8017
|
-
item:
|
8017
|
+
item: unknown;
|
8018
|
+
internalItem: ListItem<unknown>;
|
8018
8019
|
index: number;
|
8019
8020
|
props: Record<string, unknown>;
|
8020
8021
|
}) => vue.VNode[];
|
8021
8022
|
chip: (arg: {
|
8022
|
-
item:
|
8023
|
+
item: unknown;
|
8024
|
+
internalItem: ListItem<unknown>;
|
8023
8025
|
index: number;
|
8024
8026
|
props: Record<string, unknown>;
|
8025
8027
|
}) => vue.VNode[];
|
8026
8028
|
selection: (arg: {
|
8027
|
-
item:
|
8029
|
+
item: unknown;
|
8030
|
+
internalItem: ListItem<unknown>;
|
8028
8031
|
index: number;
|
8029
8032
|
}) => vue.VNode[];
|
8030
8033
|
'prepend-item': () => vue.VNode[];
|
@@ -8888,17 +8891,20 @@ declare const VAutocomplete: {
|
|
8888
8891
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8889
8892
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
8890
8893
|
item: (arg: {
|
8891
|
-
item:
|
8894
|
+
item: unknown;
|
8895
|
+
internalItem: ListItem<unknown>;
|
8892
8896
|
index: number;
|
8893
8897
|
props: Record<string, unknown>;
|
8894
8898
|
}) => vue.VNode[];
|
8895
8899
|
chip: (arg: {
|
8896
|
-
item:
|
8900
|
+
item: unknown;
|
8901
|
+
internalItem: ListItem<unknown>;
|
8897
8902
|
index: number;
|
8898
8903
|
props: Record<string, unknown>;
|
8899
8904
|
}) => vue.VNode[];
|
8900
8905
|
selection: (arg: {
|
8901
|
-
item:
|
8906
|
+
item: unknown;
|
8907
|
+
internalItem: ListItem<unknown>;
|
8902
8908
|
index: number;
|
8903
8909
|
}) => vue.VNode[];
|
8904
8910
|
'prepend-item': () => vue.VNode[];
|
@@ -8915,17 +8921,20 @@ declare const VAutocomplete: {
|
|
8915
8921
|
"onUpdate:modelValue"?: (value: V) => void;
|
8916
8922
|
}, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
|
8917
8923
|
item: {
|
8918
|
-
item:
|
8924
|
+
item: Item;
|
8925
|
+
internalItem: ListItem<Item>;
|
8919
8926
|
index: number;
|
8920
8927
|
props: Record<string, unknown>;
|
8921
8928
|
};
|
8922
8929
|
chip: {
|
8923
|
-
item:
|
8930
|
+
item: Item;
|
8931
|
+
internalItem: ListItem<Item>;
|
8924
8932
|
index: number;
|
8925
8933
|
props: Record<string, unknown>;
|
8926
8934
|
};
|
8927
8935
|
selection: {
|
8928
|
-
item:
|
8936
|
+
item: Item;
|
8937
|
+
internalItem: ListItem<Item>;
|
8929
8938
|
index: number;
|
8930
8939
|
};
|
8931
8940
|
"prepend-item": never;
|
@@ -18074,17 +18083,20 @@ declare const VCombobox: {
|
|
18074
18083
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18075
18084
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18076
18085
|
item: (arg: {
|
18077
|
-
item:
|
18086
|
+
item: unknown;
|
18087
|
+
internalItem: ListItem<unknown>;
|
18078
18088
|
index: number;
|
18079
18089
|
props: Record<string, unknown>;
|
18080
18090
|
}) => vue.VNode[];
|
18081
18091
|
chip: (arg: {
|
18082
|
-
item:
|
18092
|
+
item: unknown;
|
18093
|
+
internalItem: ListItem<unknown>;
|
18083
18094
|
index: number;
|
18084
18095
|
props: Record<string, unknown>;
|
18085
18096
|
}) => vue.VNode[];
|
18086
18097
|
selection: (arg: {
|
18087
|
-
item:
|
18098
|
+
item: unknown;
|
18099
|
+
internalItem: ListItem<unknown>;
|
18088
18100
|
index: number;
|
18089
18101
|
}) => vue.VNode[];
|
18090
18102
|
'prepend-item': () => vue.VNode[];
|
@@ -18948,17 +18960,20 @@ declare const VCombobox: {
|
|
18948
18960
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18949
18961
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
18950
18962
|
item: (arg: {
|
18951
|
-
item:
|
18963
|
+
item: unknown;
|
18964
|
+
internalItem: ListItem<unknown>;
|
18952
18965
|
index: number;
|
18953
18966
|
props: Record<string, unknown>;
|
18954
18967
|
}) => vue.VNode[];
|
18955
18968
|
chip: (arg: {
|
18956
|
-
item:
|
18969
|
+
item: unknown;
|
18970
|
+
internalItem: ListItem<unknown>;
|
18957
18971
|
index: number;
|
18958
18972
|
props: Record<string, unknown>;
|
18959
18973
|
}) => vue.VNode[];
|
18960
18974
|
selection: (arg: {
|
18961
|
-
item:
|
18975
|
+
item: unknown;
|
18976
|
+
internalItem: ListItem<unknown>;
|
18962
18977
|
index: number;
|
18963
18978
|
}) => vue.VNode[];
|
18964
18979
|
'prepend-item': () => vue.VNode[];
|
@@ -18975,17 +18990,20 @@ declare const VCombobox: {
|
|
18975
18990
|
"onUpdate:modelValue"?: (value: V) => void;
|
18976
18991
|
}, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
|
18977
18992
|
item: {
|
18978
|
-
item:
|
18993
|
+
item: Item;
|
18994
|
+
internalItem: ListItem<Item>;
|
18979
18995
|
index: number;
|
18980
18996
|
props: Record<string, unknown>;
|
18981
18997
|
};
|
18982
18998
|
chip: {
|
18983
|
-
item:
|
18999
|
+
item: Item;
|
19000
|
+
internalItem: ListItem<Item>;
|
18984
19001
|
index: number;
|
18985
19002
|
props: Record<string, unknown>;
|
18986
19003
|
};
|
18987
19004
|
selection: {
|
18988
|
-
item:
|
19005
|
+
item: Item;
|
19006
|
+
internalItem: ListItem<Item>;
|
18989
19007
|
index: number;
|
18990
19008
|
};
|
18991
19009
|
"prepend-item": never;
|
@@ -31076,169 +31094,49 @@ declare const VForm: {
|
|
31076
31094
|
} & {
|
31077
31095
|
$children?: vue.VNodeChild | {
|
31078
31096
|
default?: ((arg: {
|
31079
|
-
errors:
|
31080
|
-
|
31081
|
-
|
31082
|
-
|
31083
|
-
|
31084
|
-
|
31085
|
-
|
31086
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31087
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31088
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31089
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31090
|
-
readonly externalValue: boolean | null;
|
31091
|
-
};
|
31092
|
-
items: vue.Ref<{
|
31093
|
-
id: number | string;
|
31094
|
-
validate: () => Promise<string[]>;
|
31095
|
-
reset: () => Promise<void>;
|
31096
|
-
resetValidation: () => Promise<void>;
|
31097
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31098
|
-
isValid: boolean | null;
|
31099
|
-
errorMessages: string[];
|
31100
|
-
}[], FormField[] | {
|
31101
|
-
id: number | string;
|
31102
|
-
validate: () => Promise<string[]>;
|
31103
|
-
reset: () => Promise<void>;
|
31104
|
-
resetValidation: () => Promise<void>;
|
31105
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31106
|
-
isValid: boolean | null;
|
31107
|
-
errorMessages: string[];
|
31108
|
-
}[]>;
|
31109
|
-
validate: () => Promise<{
|
31110
|
-
valid: boolean;
|
31111
|
-
errors: {
|
31112
|
-
id: number | string;
|
31113
|
-
errorMessages: string[];
|
31114
|
-
}[];
|
31115
|
-
}>;
|
31097
|
+
errors: FieldValidationResult[];
|
31098
|
+
isDisabled: boolean;
|
31099
|
+
isReadonly: boolean;
|
31100
|
+
isValidating: boolean;
|
31101
|
+
isValid: boolean | null;
|
31102
|
+
items: FormField[];
|
31103
|
+
validate: () => Promise<FormValidationResult>;
|
31116
31104
|
reset: () => void;
|
31117
31105
|
resetValidation: () => void;
|
31118
31106
|
}) => vue.VNodeChild) | undefined;
|
31119
31107
|
} | ((arg: {
|
31120
|
-
errors:
|
31121
|
-
|
31122
|
-
|
31123
|
-
|
31124
|
-
|
31125
|
-
|
31126
|
-
|
31127
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31128
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31129
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31130
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31131
|
-
readonly externalValue: boolean | null;
|
31132
|
-
};
|
31133
|
-
items: vue.Ref<{
|
31134
|
-
id: number | string;
|
31135
|
-
validate: () => Promise<string[]>;
|
31136
|
-
reset: () => Promise<void>;
|
31137
|
-
resetValidation: () => Promise<void>;
|
31138
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31139
|
-
isValid: boolean | null;
|
31140
|
-
errorMessages: string[];
|
31141
|
-
}[], FormField[] | {
|
31142
|
-
id: number | string;
|
31143
|
-
validate: () => Promise<string[]>;
|
31144
|
-
reset: () => Promise<void>;
|
31145
|
-
resetValidation: () => Promise<void>;
|
31146
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31147
|
-
isValid: boolean | null;
|
31148
|
-
errorMessages: string[];
|
31149
|
-
}[]>;
|
31150
|
-
validate: () => Promise<{
|
31151
|
-
valid: boolean;
|
31152
|
-
errors: {
|
31153
|
-
id: number | string;
|
31154
|
-
errorMessages: string[];
|
31155
|
-
}[];
|
31156
|
-
}>;
|
31108
|
+
errors: FieldValidationResult[];
|
31109
|
+
isDisabled: boolean;
|
31110
|
+
isReadonly: boolean;
|
31111
|
+
isValidating: boolean;
|
31112
|
+
isValid: boolean | null;
|
31113
|
+
items: FormField[];
|
31114
|
+
validate: () => Promise<FormValidationResult>;
|
31157
31115
|
reset: () => void;
|
31158
31116
|
resetValidation: () => void;
|
31159
31117
|
}) => vue.VNodeChild);
|
31160
31118
|
'v-slots'?: {
|
31161
31119
|
default?: false | ((arg: {
|
31162
|
-
errors:
|
31163
|
-
|
31164
|
-
|
31165
|
-
|
31166
|
-
|
31167
|
-
|
31168
|
-
|
31169
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31170
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31171
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31172
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31173
|
-
readonly externalValue: boolean | null;
|
31174
|
-
};
|
31175
|
-
items: vue.Ref<{
|
31176
|
-
id: number | string;
|
31177
|
-
validate: () => Promise<string[]>;
|
31178
|
-
reset: () => Promise<void>;
|
31179
|
-
resetValidation: () => Promise<void>;
|
31180
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31181
|
-
isValid: boolean | null;
|
31182
|
-
errorMessages: string[];
|
31183
|
-
}[], FormField[] | {
|
31184
|
-
id: number | string;
|
31185
|
-
validate: () => Promise<string[]>;
|
31186
|
-
reset: () => Promise<void>;
|
31187
|
-
resetValidation: () => Promise<void>;
|
31188
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31189
|
-
isValid: boolean | null;
|
31190
|
-
errorMessages: string[];
|
31191
|
-
}[]>;
|
31192
|
-
validate: () => Promise<{
|
31193
|
-
valid: boolean;
|
31194
|
-
errors: {
|
31195
|
-
id: number | string;
|
31196
|
-
errorMessages: string[];
|
31197
|
-
}[];
|
31198
|
-
}>;
|
31120
|
+
errors: FieldValidationResult[];
|
31121
|
+
isDisabled: boolean;
|
31122
|
+
isReadonly: boolean;
|
31123
|
+
isValidating: boolean;
|
31124
|
+
isValid: boolean | null;
|
31125
|
+
items: FormField[];
|
31126
|
+
validate: () => Promise<FormValidationResult>;
|
31199
31127
|
reset: () => void;
|
31200
31128
|
resetValidation: () => void;
|
31201
31129
|
}) => vue.VNodeChild) | undefined;
|
31202
31130
|
} | undefined;
|
31203
31131
|
} & {
|
31204
31132
|
"v-slot:default"?: false | ((arg: {
|
31205
|
-
errors:
|
31206
|
-
|
31207
|
-
|
31208
|
-
|
31209
|
-
|
31210
|
-
|
31211
|
-
|
31212
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31213
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31214
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31215
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31216
|
-
readonly externalValue: boolean | null;
|
31217
|
-
};
|
31218
|
-
items: vue.Ref<{
|
31219
|
-
id: number | string;
|
31220
|
-
validate: () => Promise<string[]>;
|
31221
|
-
reset: () => Promise<void>;
|
31222
|
-
resetValidation: () => Promise<void>;
|
31223
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31224
|
-
isValid: boolean | null;
|
31225
|
-
errorMessages: string[];
|
31226
|
-
}[], FormField[] | {
|
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
|
-
}[]>;
|
31235
|
-
validate: () => Promise<{
|
31236
|
-
valid: boolean;
|
31237
|
-
errors: {
|
31238
|
-
id: number | string;
|
31239
|
-
errorMessages: string[];
|
31240
|
-
}[];
|
31241
|
-
}>;
|
31133
|
+
errors: FieldValidationResult[];
|
31134
|
+
isDisabled: boolean;
|
31135
|
+
isReadonly: boolean;
|
31136
|
+
isValidating: boolean;
|
31137
|
+
isValid: boolean | null;
|
31138
|
+
items: FormField[];
|
31139
|
+
validate: () => Promise<FormValidationResult>;
|
31242
31140
|
reset: () => void;
|
31243
31141
|
resetValidation: () => void;
|
31244
31142
|
}) => vue.VNodeChild) | undefined;
|
@@ -31339,43 +31237,13 @@ declare const VForm: {
|
|
31339
31237
|
fastFail: boolean;
|
31340
31238
|
}, true, {}, vue.SlotsType<Partial<{
|
31341
31239
|
default: (arg: {
|
31342
|
-
errors:
|
31343
|
-
|
31344
|
-
|
31345
|
-
|
31346
|
-
|
31347
|
-
|
31348
|
-
|
31349
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31350
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31351
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31352
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31353
|
-
readonly externalValue: boolean | null;
|
31354
|
-
};
|
31355
|
-
items: vue.Ref<{
|
31356
|
-
id: number | string;
|
31357
|
-
validate: () => Promise<string[]>;
|
31358
|
-
reset: () => Promise<void>;
|
31359
|
-
resetValidation: () => Promise<void>;
|
31360
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31361
|
-
isValid: boolean | null;
|
31362
|
-
errorMessages: string[];
|
31363
|
-
}[], FormField[] | {
|
31364
|
-
id: number | string;
|
31365
|
-
validate: () => Promise<string[]>;
|
31366
|
-
reset: () => Promise<void>;
|
31367
|
-
resetValidation: () => Promise<void>;
|
31368
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31369
|
-
isValid: boolean | null;
|
31370
|
-
errorMessages: string[];
|
31371
|
-
}[]>;
|
31372
|
-
validate: () => Promise<{
|
31373
|
-
valid: boolean;
|
31374
|
-
errors: {
|
31375
|
-
id: number | string;
|
31376
|
-
errorMessages: string[];
|
31377
|
-
}[];
|
31378
|
-
}>;
|
31240
|
+
errors: FieldValidationResult[];
|
31241
|
+
isDisabled: boolean;
|
31242
|
+
isReadonly: boolean;
|
31243
|
+
isValidating: boolean;
|
31244
|
+
isValid: boolean | null;
|
31245
|
+
items: FormField[];
|
31246
|
+
validate: () => Promise<FormValidationResult>;
|
31379
31247
|
reset: () => void;
|
31380
31248
|
resetValidation: () => void;
|
31381
31249
|
}) => vue.VNode[];
|
@@ -31398,217 +31266,97 @@ declare const VForm: {
|
|
31398
31266
|
} & {
|
31399
31267
|
$children?: vue.VNodeChild | {
|
31400
31268
|
default?: ((arg: {
|
31401
|
-
errors:
|
31402
|
-
|
31403
|
-
|
31404
|
-
|
31405
|
-
|
31406
|
-
|
31407
|
-
|
31408
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31409
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31410
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31411
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31412
|
-
readonly externalValue: boolean | null;
|
31413
|
-
};
|
31414
|
-
items: vue.Ref<{
|
31415
|
-
id: number | string;
|
31416
|
-
validate: () => Promise<string[]>;
|
31417
|
-
reset: () => Promise<void>;
|
31418
|
-
resetValidation: () => Promise<void>;
|
31419
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31420
|
-
isValid: boolean | null;
|
31421
|
-
errorMessages: string[];
|
31422
|
-
}[], FormField[] | {
|
31423
|
-
id: number | string;
|
31424
|
-
validate: () => Promise<string[]>;
|
31425
|
-
reset: () => Promise<void>;
|
31426
|
-
resetValidation: () => Promise<void>;
|
31427
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31428
|
-
isValid: boolean | null;
|
31429
|
-
errorMessages: string[];
|
31430
|
-
}[]>;
|
31431
|
-
validate: () => Promise<{
|
31432
|
-
valid: boolean;
|
31433
|
-
errors: {
|
31434
|
-
id: number | string;
|
31435
|
-
errorMessages: string[];
|
31436
|
-
}[];
|
31437
|
-
}>;
|
31269
|
+
errors: FieldValidationResult[];
|
31270
|
+
isDisabled: boolean;
|
31271
|
+
isReadonly: boolean;
|
31272
|
+
isValidating: boolean;
|
31273
|
+
isValid: boolean | null;
|
31274
|
+
items: FormField[];
|
31275
|
+
validate: () => Promise<FormValidationResult>;
|
31438
31276
|
reset: () => void;
|
31439
31277
|
resetValidation: () => void;
|
31440
31278
|
}) => vue.VNodeChild) | undefined;
|
31441
31279
|
} | ((arg: {
|
31442
|
-
errors:
|
31443
|
-
|
31444
|
-
|
31445
|
-
|
31446
|
-
|
31447
|
-
|
31448
|
-
|
31449
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31450
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31451
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31452
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31453
|
-
readonly externalValue: boolean | null;
|
31454
|
-
};
|
31455
|
-
items: vue.Ref<{
|
31456
|
-
id: number | string;
|
31457
|
-
validate: () => Promise<string[]>;
|
31458
|
-
reset: () => Promise<void>;
|
31459
|
-
resetValidation: () => Promise<void>;
|
31460
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31461
|
-
isValid: boolean | null;
|
31462
|
-
errorMessages: string[];
|
31463
|
-
}[], FormField[] | {
|
31464
|
-
id: number | string;
|
31465
|
-
validate: () => Promise<string[]>;
|
31466
|
-
reset: () => Promise<void>;
|
31467
|
-
resetValidation: () => Promise<void>;
|
31468
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31469
|
-
isValid: boolean | null;
|
31470
|
-
errorMessages: string[];
|
31471
|
-
}[]>;
|
31472
|
-
validate: () => Promise<{
|
31473
|
-
valid: boolean;
|
31474
|
-
errors: {
|
31475
|
-
id: number | string;
|
31476
|
-
errorMessages: string[];
|
31477
|
-
}[];
|
31478
|
-
}>;
|
31280
|
+
errors: FieldValidationResult[];
|
31281
|
+
isDisabled: boolean;
|
31282
|
+
isReadonly: boolean;
|
31283
|
+
isValidating: boolean;
|
31284
|
+
isValid: boolean | null;
|
31285
|
+
items: FormField[];
|
31286
|
+
validate: () => Promise<FormValidationResult>;
|
31479
31287
|
reset: () => void;
|
31480
31288
|
resetValidation: () => void;
|
31481
31289
|
}) => vue.VNodeChild);
|
31482
31290
|
'v-slots'?: {
|
31483
31291
|
default?: false | ((arg: {
|
31484
|
-
errors:
|
31485
|
-
|
31486
|
-
|
31487
|
-
|
31488
|
-
|
31489
|
-
|
31490
|
-
|
31491
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31492
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31493
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31494
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31495
|
-
readonly externalValue: boolean | null;
|
31496
|
-
};
|
31497
|
-
items: vue.Ref<{
|
31498
|
-
id: number | string;
|
31499
|
-
validate: () => Promise<string[]>;
|
31500
|
-
reset: () => Promise<void>;
|
31501
|
-
resetValidation: () => Promise<void>;
|
31502
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31503
|
-
isValid: boolean | null;
|
31504
|
-
errorMessages: string[];
|
31505
|
-
}[], FormField[] | {
|
31506
|
-
id: number | string;
|
31507
|
-
validate: () => Promise<string[]>;
|
31508
|
-
reset: () => Promise<void>;
|
31509
|
-
resetValidation: () => Promise<void>;
|
31510
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31511
|
-
isValid: boolean | null;
|
31512
|
-
errorMessages: string[];
|
31513
|
-
}[]>;
|
31514
|
-
validate: () => Promise<{
|
31515
|
-
valid: boolean;
|
31516
|
-
errors: {
|
31517
|
-
id: number | string;
|
31518
|
-
errorMessages: string[];
|
31519
|
-
}[];
|
31520
|
-
}>;
|
31292
|
+
errors: FieldValidationResult[];
|
31293
|
+
isDisabled: boolean;
|
31294
|
+
isReadonly: boolean;
|
31295
|
+
isValidating: boolean;
|
31296
|
+
isValid: boolean | null;
|
31297
|
+
items: FormField[];
|
31298
|
+
validate: () => Promise<FormValidationResult>;
|
31521
31299
|
reset: () => void;
|
31522
31300
|
resetValidation: () => void;
|
31523
31301
|
}) => vue.VNodeChild) | undefined;
|
31524
31302
|
} | undefined;
|
31525
31303
|
} & {
|
31526
31304
|
"v-slot:default"?: false | ((arg: {
|
31527
|
-
errors:
|
31528
|
-
|
31529
|
-
|
31530
|
-
|
31531
|
-
|
31532
|
-
|
31533
|
-
|
31534
|
-
|
31535
|
-
|
31536
|
-
|
31537
|
-
|
31538
|
-
|
31539
|
-
|
31540
|
-
|
31541
|
-
|
31542
|
-
|
31543
|
-
|
31544
|
-
|
31545
|
-
|
31546
|
-
|
31547
|
-
|
31548
|
-
|
31549
|
-
|
31550
|
-
|
31551
|
-
|
31552
|
-
|
31553
|
-
|
31554
|
-
|
31555
|
-
|
31556
|
-
|
31557
|
-
|
31558
|
-
|
31559
|
-
|
31560
|
-
|
31561
|
-
|
31562
|
-
|
31563
|
-
|
31564
|
-
|
31565
|
-
|
31566
|
-
|
31567
|
-
|
31568
|
-
|
31569
|
-
|
31570
|
-
|
31571
|
-
|
31572
|
-
|
31573
|
-
|
31574
|
-
|
31575
|
-
|
31576
|
-
|
31577
|
-
}
|
31578
|
-
|
31579
|
-
|
31580
|
-
|
31581
|
-
|
31582
|
-
readonly externalValue: boolean | null;
|
31583
|
-
};
|
31584
|
-
items: vue.Ref<{
|
31585
|
-
id: number | string;
|
31586
|
-
validate: () => Promise<string[]>;
|
31587
|
-
reset: () => Promise<void>;
|
31588
|
-
resetValidation: () => Promise<void>;
|
31589
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31590
|
-
isValid: boolean | null;
|
31591
|
-
errorMessages: string[];
|
31592
|
-
}[], FormField[] | {
|
31593
|
-
id: number | string;
|
31594
|
-
validate: () => Promise<string[]>;
|
31595
|
-
reset: () => Promise<void>;
|
31596
|
-
resetValidation: () => Promise<void>;
|
31597
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31598
|
-
isValid: boolean | null;
|
31599
|
-
errorMessages: string[];
|
31600
|
-
}[]>;
|
31601
|
-
validate: () => Promise<{
|
31602
|
-
valid: boolean;
|
31603
|
-
errors: {
|
31604
|
-
id: number | string;
|
31605
|
-
errorMessages: string[];
|
31606
|
-
}[];
|
31607
|
-
}>;
|
31608
|
-
reset: () => void;
|
31609
|
-
resetValidation: () => void;
|
31610
|
-
} & HTMLFormElement & {
|
31611
|
-
_allExposed: {
|
31305
|
+
errors: FieldValidationResult[];
|
31306
|
+
isDisabled: boolean;
|
31307
|
+
isReadonly: boolean;
|
31308
|
+
isValidating: boolean;
|
31309
|
+
isValid: boolean | null;
|
31310
|
+
items: FormField[];
|
31311
|
+
validate: () => Promise<FormValidationResult>;
|
31312
|
+
reset: () => void;
|
31313
|
+
resetValidation: () => void;
|
31314
|
+
}) => vue.VNodeChild) | undefined;
|
31315
|
+
} & {
|
31316
|
+
onSubmit?: ((e: SubmitEventPromise) => any) | undefined;
|
31317
|
+
"onUpdate:modelValue"?: ((val: boolean | null) => any) | undefined;
|
31318
|
+
}, {
|
31319
|
+
errors: vue.Ref<{
|
31320
|
+
id: number | string;
|
31321
|
+
errorMessages: string[];
|
31322
|
+
}[], FieldValidationResult[] | {
|
31323
|
+
id: number | string;
|
31324
|
+
errorMessages: string[];
|
31325
|
+
}[]>;
|
31326
|
+
isDisabled: vue.ComputedRef<boolean>;
|
31327
|
+
isReadonly: vue.ComputedRef<boolean>;
|
31328
|
+
isValidating: vue.ShallowRef<boolean, boolean>;
|
31329
|
+
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31330
|
+
readonly externalValue: boolean | null;
|
31331
|
+
};
|
31332
|
+
items: vue.Ref<{
|
31333
|
+
id: number | string;
|
31334
|
+
validate: () => Promise<string[]>;
|
31335
|
+
reset: () => Promise<void>;
|
31336
|
+
resetValidation: () => Promise<void>;
|
31337
|
+
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31338
|
+
isValid: boolean | null;
|
31339
|
+
errorMessages: string[];
|
31340
|
+
}[], FormField[] | {
|
31341
|
+
id: number | string;
|
31342
|
+
validate: () => Promise<string[]>;
|
31343
|
+
reset: () => Promise<void>;
|
31344
|
+
resetValidation: () => Promise<void>;
|
31345
|
+
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31346
|
+
isValid: boolean | null;
|
31347
|
+
errorMessages: string[];
|
31348
|
+
}[]>;
|
31349
|
+
validate: () => Promise<{
|
31350
|
+
valid: boolean;
|
31351
|
+
errors: {
|
31352
|
+
id: number | string;
|
31353
|
+
errorMessages: string[];
|
31354
|
+
}[];
|
31355
|
+
}>;
|
31356
|
+
reset: () => void;
|
31357
|
+
resetValidation: () => void;
|
31358
|
+
} & HTMLFormElement & {
|
31359
|
+
_allExposed: {
|
31612
31360
|
errors: vue.Ref<{
|
31613
31361
|
id: number | string;
|
31614
31362
|
errorMessages: string[];
|
@@ -31672,169 +31420,49 @@ declare const VForm: {
|
|
31672
31420
|
} & {
|
31673
31421
|
$children?: vue.VNodeChild | {
|
31674
31422
|
default?: ((arg: {
|
31675
|
-
errors:
|
31676
|
-
|
31677
|
-
|
31678
|
-
|
31679
|
-
|
31680
|
-
|
31681
|
-
|
31682
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31683
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31684
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31685
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31686
|
-
readonly externalValue: boolean | null;
|
31687
|
-
};
|
31688
|
-
items: vue.Ref<{
|
31689
|
-
id: number | string;
|
31690
|
-
validate: () => Promise<string[]>;
|
31691
|
-
reset: () => Promise<void>;
|
31692
|
-
resetValidation: () => Promise<void>;
|
31693
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31694
|
-
isValid: boolean | null;
|
31695
|
-
errorMessages: string[];
|
31696
|
-
}[], FormField[] | {
|
31697
|
-
id: number | string;
|
31698
|
-
validate: () => Promise<string[]>;
|
31699
|
-
reset: () => Promise<void>;
|
31700
|
-
resetValidation: () => Promise<void>;
|
31701
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31702
|
-
isValid: boolean | null;
|
31703
|
-
errorMessages: string[];
|
31704
|
-
}[]>;
|
31705
|
-
validate: () => Promise<{
|
31706
|
-
valid: boolean;
|
31707
|
-
errors: {
|
31708
|
-
id: number | string;
|
31709
|
-
errorMessages: string[];
|
31710
|
-
}[];
|
31711
|
-
}>;
|
31423
|
+
errors: FieldValidationResult[];
|
31424
|
+
isDisabled: boolean;
|
31425
|
+
isReadonly: boolean;
|
31426
|
+
isValidating: boolean;
|
31427
|
+
isValid: boolean | null;
|
31428
|
+
items: FormField[];
|
31429
|
+
validate: () => Promise<FormValidationResult>;
|
31712
31430
|
reset: () => void;
|
31713
31431
|
resetValidation: () => void;
|
31714
31432
|
}) => vue.VNodeChild) | undefined;
|
31715
31433
|
} | ((arg: {
|
31716
|
-
errors:
|
31717
|
-
|
31718
|
-
|
31719
|
-
|
31720
|
-
|
31721
|
-
|
31722
|
-
|
31723
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31724
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31725
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31726
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31727
|
-
readonly externalValue: boolean | null;
|
31728
|
-
};
|
31729
|
-
items: vue.Ref<{
|
31730
|
-
id: number | string;
|
31731
|
-
validate: () => Promise<string[]>;
|
31732
|
-
reset: () => Promise<void>;
|
31733
|
-
resetValidation: () => Promise<void>;
|
31734
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31735
|
-
isValid: boolean | null;
|
31736
|
-
errorMessages: string[];
|
31737
|
-
}[], FormField[] | {
|
31738
|
-
id: number | string;
|
31739
|
-
validate: () => Promise<string[]>;
|
31740
|
-
reset: () => Promise<void>;
|
31741
|
-
resetValidation: () => Promise<void>;
|
31742
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31743
|
-
isValid: boolean | null;
|
31744
|
-
errorMessages: string[];
|
31745
|
-
}[]>;
|
31746
|
-
validate: () => Promise<{
|
31747
|
-
valid: boolean;
|
31748
|
-
errors: {
|
31749
|
-
id: number | string;
|
31750
|
-
errorMessages: string[];
|
31751
|
-
}[];
|
31752
|
-
}>;
|
31434
|
+
errors: FieldValidationResult[];
|
31435
|
+
isDisabled: boolean;
|
31436
|
+
isReadonly: boolean;
|
31437
|
+
isValidating: boolean;
|
31438
|
+
isValid: boolean | null;
|
31439
|
+
items: FormField[];
|
31440
|
+
validate: () => Promise<FormValidationResult>;
|
31753
31441
|
reset: () => void;
|
31754
31442
|
resetValidation: () => void;
|
31755
31443
|
}) => vue.VNodeChild);
|
31756
31444
|
'v-slots'?: {
|
31757
31445
|
default?: false | ((arg: {
|
31758
|
-
errors:
|
31759
|
-
|
31760
|
-
|
31761
|
-
|
31762
|
-
|
31763
|
-
|
31764
|
-
|
31765
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31766
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31767
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31768
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31769
|
-
readonly externalValue: boolean | null;
|
31770
|
-
};
|
31771
|
-
items: vue.Ref<{
|
31772
|
-
id: number | string;
|
31773
|
-
validate: () => Promise<string[]>;
|
31774
|
-
reset: () => Promise<void>;
|
31775
|
-
resetValidation: () => Promise<void>;
|
31776
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31777
|
-
isValid: boolean | null;
|
31778
|
-
errorMessages: string[];
|
31779
|
-
}[], FormField[] | {
|
31780
|
-
id: number | string;
|
31781
|
-
validate: () => Promise<string[]>;
|
31782
|
-
reset: () => Promise<void>;
|
31783
|
-
resetValidation: () => Promise<void>;
|
31784
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31785
|
-
isValid: boolean | null;
|
31786
|
-
errorMessages: string[];
|
31787
|
-
}[]>;
|
31788
|
-
validate: () => Promise<{
|
31789
|
-
valid: boolean;
|
31790
|
-
errors: {
|
31791
|
-
id: number | string;
|
31792
|
-
errorMessages: string[];
|
31793
|
-
}[];
|
31794
|
-
}>;
|
31446
|
+
errors: FieldValidationResult[];
|
31447
|
+
isDisabled: boolean;
|
31448
|
+
isReadonly: boolean;
|
31449
|
+
isValidating: boolean;
|
31450
|
+
isValid: boolean | null;
|
31451
|
+
items: FormField[];
|
31452
|
+
validate: () => Promise<FormValidationResult>;
|
31795
31453
|
reset: () => void;
|
31796
31454
|
resetValidation: () => void;
|
31797
31455
|
}) => vue.VNodeChild) | undefined;
|
31798
31456
|
} | undefined;
|
31799
31457
|
} & {
|
31800
31458
|
"v-slot:default"?: false | ((arg: {
|
31801
|
-
errors:
|
31802
|
-
|
31803
|
-
|
31804
|
-
|
31805
|
-
|
31806
|
-
|
31807
|
-
|
31808
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31809
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31810
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31811
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31812
|
-
readonly externalValue: boolean | null;
|
31813
|
-
};
|
31814
|
-
items: vue.Ref<{
|
31815
|
-
id: number | string;
|
31816
|
-
validate: () => Promise<string[]>;
|
31817
|
-
reset: () => Promise<void>;
|
31818
|
-
resetValidation: () => Promise<void>;
|
31819
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31820
|
-
isValid: boolean | null;
|
31821
|
-
errorMessages: string[];
|
31822
|
-
}[], FormField[] | {
|
31823
|
-
id: number | string;
|
31824
|
-
validate: () => Promise<string[]>;
|
31825
|
-
reset: () => Promise<void>;
|
31826
|
-
resetValidation: () => Promise<void>;
|
31827
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31828
|
-
isValid: boolean | null;
|
31829
|
-
errorMessages: string[];
|
31830
|
-
}[]>;
|
31831
|
-
validate: () => Promise<{
|
31832
|
-
valid: boolean;
|
31833
|
-
errors: {
|
31834
|
-
id: number | string;
|
31835
|
-
errorMessages: string[];
|
31836
|
-
}[];
|
31837
|
-
}>;
|
31459
|
+
errors: FieldValidationResult[];
|
31460
|
+
isDisabled: boolean;
|
31461
|
+
isReadonly: boolean;
|
31462
|
+
isValidating: boolean;
|
31463
|
+
isValid: boolean | null;
|
31464
|
+
items: FormField[];
|
31465
|
+
validate: () => Promise<FormValidationResult>;
|
31838
31466
|
reset: () => void;
|
31839
31467
|
resetValidation: () => void;
|
31840
31468
|
}) => vue.VNodeChild) | undefined;
|
@@ -31935,43 +31563,13 @@ declare const VForm: {
|
|
31935
31563
|
fastFail: boolean;
|
31936
31564
|
}, {}, string, vue.SlotsType<Partial<{
|
31937
31565
|
default: (arg: {
|
31938
|
-
errors:
|
31939
|
-
|
31940
|
-
|
31941
|
-
|
31942
|
-
|
31943
|
-
|
31944
|
-
|
31945
|
-
isDisabled: vue.ComputedRef<boolean>;
|
31946
|
-
isReadonly: vue.ComputedRef<boolean>;
|
31947
|
-
isValidating: vue.ShallowRef<boolean, boolean>;
|
31948
|
-
isValid: vue.Ref<boolean | null, boolean | null> & {
|
31949
|
-
readonly externalValue: boolean | null;
|
31950
|
-
};
|
31951
|
-
items: vue.Ref<{
|
31952
|
-
id: number | string;
|
31953
|
-
validate: () => Promise<string[]>;
|
31954
|
-
reset: () => Promise<void>;
|
31955
|
-
resetValidation: () => Promise<void>;
|
31956
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31957
|
-
isValid: boolean | null;
|
31958
|
-
errorMessages: string[];
|
31959
|
-
}[], FormField[] | {
|
31960
|
-
id: number | string;
|
31961
|
-
validate: () => Promise<string[]>;
|
31962
|
-
reset: () => Promise<void>;
|
31963
|
-
resetValidation: () => Promise<void>;
|
31964
|
-
vm: vue.Raw<vue.ComponentInternalInstance>;
|
31965
|
-
isValid: boolean | null;
|
31966
|
-
errorMessages: string[];
|
31967
|
-
}[]>;
|
31968
|
-
validate: () => Promise<{
|
31969
|
-
valid: boolean;
|
31970
|
-
errors: {
|
31971
|
-
id: number | string;
|
31972
|
-
errorMessages: string[];
|
31973
|
-
}[];
|
31974
|
-
}>;
|
31566
|
+
errors: FieldValidationResult[];
|
31567
|
+
isDisabled: boolean;
|
31568
|
+
isReadonly: boolean;
|
31569
|
+
isValidating: boolean;
|
31570
|
+
isValid: boolean | null;
|
31571
|
+
items: FormField[];
|
31572
|
+
validate: () => Promise<FormValidationResult>;
|
31975
31573
|
reset: () => void;
|
31976
31574
|
resetValidation: () => void;
|
31977
31575
|
}) => vue.VNode[];
|
@@ -39475,17 +39073,20 @@ declare const VSelect: {
|
|
39475
39073
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
39476
39074
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
39477
39075
|
item: (arg: {
|
39478
|
-
item:
|
39076
|
+
item: unknown;
|
39077
|
+
internalItem: ListItem<unknown>;
|
39479
39078
|
index: number;
|
39480
39079
|
props: Record<string, unknown>;
|
39481
39080
|
}) => vue.VNode[];
|
39482
39081
|
chip: (arg: {
|
39483
|
-
item:
|
39082
|
+
item: unknown;
|
39083
|
+
internalItem: ListItem<unknown>;
|
39484
39084
|
index: number;
|
39485
39085
|
props: Record<string, unknown>;
|
39486
39086
|
}) => vue.VNode[];
|
39487
39087
|
selection: (arg: {
|
39488
|
-
item:
|
39088
|
+
item: unknown;
|
39089
|
+
internalItem: ListItem<unknown>;
|
39489
39090
|
index: number;
|
39490
39091
|
}) => vue.VNode[];
|
39491
39092
|
'prepend-item': () => vue.VNode[];
|
@@ -40330,17 +39931,20 @@ declare const VSelect: {
|
|
40330
39931
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
40331
39932
|
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
40332
39933
|
item: (arg: {
|
40333
|
-
item:
|
39934
|
+
item: unknown;
|
39935
|
+
internalItem: ListItem<unknown>;
|
40334
39936
|
index: number;
|
40335
39937
|
props: Record<string, unknown>;
|
40336
39938
|
}) => vue.VNode[];
|
40337
39939
|
chip: (arg: {
|
40338
|
-
item:
|
39940
|
+
item: unknown;
|
39941
|
+
internalItem: ListItem<unknown>;
|
40339
39942
|
index: number;
|
40340
39943
|
props: Record<string, unknown>;
|
40341
39944
|
}) => vue.VNode[];
|
40342
39945
|
selection: (arg: {
|
40343
|
-
item:
|
39946
|
+
item: unknown;
|
39947
|
+
internalItem: ListItem<unknown>;
|
40344
39948
|
index: number;
|
40345
39949
|
}) => vue.VNode[];
|
40346
39950
|
'prepend-item': () => vue.VNode[];
|
@@ -40357,17 +39961,20 @@ declare const VSelect: {
|
|
40357
39961
|
"onUpdate:modelValue"?: (value: V) => void;
|
40358
39962
|
}, slots: Omit<VInputSlots & VFieldSlots, "default"> & {
|
40359
39963
|
item: {
|
40360
|
-
item:
|
39964
|
+
item: Item;
|
39965
|
+
internalItem: ListItem<Item>;
|
40361
39966
|
index: number;
|
40362
39967
|
props: Record<string, unknown>;
|
40363
39968
|
};
|
40364
39969
|
chip: {
|
40365
|
-
item:
|
39970
|
+
item: Item;
|
39971
|
+
internalItem: ListItem<Item>;
|
40366
39972
|
index: number;
|
40367
39973
|
props: Record<string, unknown>;
|
40368
39974
|
};
|
40369
39975
|
selection: {
|
40370
|
-
item:
|
39976
|
+
item: Item;
|
39977
|
+
internalItem: ListItem<Item>;
|
40371
39978
|
index: number;
|
40372
39979
|
};
|
40373
39980
|
"prepend-item": never;
|
@@ -72156,52 +71763,45 @@ declare module 'vue' {
|
|
72156
71763
|
$children?: VNodeChild
|
72157
71764
|
}
|
72158
71765
|
export interface GlobalComponents {
|
71766
|
+
VAutocomplete: VAutocomplete
|
72159
71767
|
VApp: VApp
|
72160
71768
|
VAlert: VAlert
|
72161
71769
|
VAlertTitle: VAlertTitle
|
72162
|
-
|
72163
|
-
VAppBar: VAppBar
|
72164
|
-
VAppBarNavIcon: VAppBarNavIcon
|
72165
|
-
VAppBarTitle: VAppBarTitle
|
71770
|
+
VAvatar: VAvatar
|
72166
71771
|
VBreadcrumbs: VBreadcrumbs
|
72167
71772
|
VBreadcrumbsItem: VBreadcrumbsItem
|
72168
71773
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
72169
|
-
VBanner: VBanner
|
72170
|
-
VBannerActions: VBannerActions
|
72171
|
-
VBannerText: VBannerText
|
72172
|
-
VBottomSheet: VBottomSheet
|
72173
71774
|
VBadge: VBadge
|
72174
|
-
VAvatar: VAvatar
|
72175
71775
|
VBottomNavigation: VBottomNavigation
|
72176
|
-
VBtnGroup: VBtnGroup
|
72177
|
-
VBtnToggle: VBtnToggle
|
72178
|
-
VCarousel: VCarousel
|
72179
|
-
VCarouselItem: VCarouselItem
|
72180
71776
|
VBtn: VBtn
|
71777
|
+
VBanner: VBanner
|
71778
|
+
VBannerActions: VBannerActions
|
71779
|
+
VBannerText: VBannerText
|
72181
71780
|
VCard: VCard
|
72182
71781
|
VCardActions: VCardActions
|
72183
71782
|
VCardItem: VCardItem
|
72184
71783
|
VCardSubtitle: VCardSubtitle
|
72185
71784
|
VCardText: VCardText
|
72186
71785
|
VCardTitle: VCardTitle
|
72187
|
-
|
71786
|
+
VCarousel: VCarousel
|
71787
|
+
VCarouselItem: VCarouselItem
|
71788
|
+
VBtnGroup: VBtnGroup
|
71789
|
+
VBottomSheet: VBottomSheet
|
71790
|
+
VBtnToggle: VBtnToggle
|
71791
|
+
VChipGroup: VChipGroup
|
72188
71792
|
VCheckbox: VCheckbox
|
72189
71793
|
VCheckboxBtn: VCheckboxBtn
|
72190
|
-
|
72191
|
-
VChipGroup: VChipGroup
|
72192
|
-
VCounter: VCounter
|
71794
|
+
VChip: VChip
|
72193
71795
|
VColorPicker: VColorPicker
|
72194
71796
|
VCombobox: VCombobox
|
71797
|
+
VCode: VCode
|
72195
71798
|
VDatePicker: VDatePicker
|
72196
71799
|
VDatePickerControls: VDatePickerControls
|
72197
71800
|
VDatePickerHeader: VDatePickerHeader
|
72198
71801
|
VDatePickerMonth: VDatePickerMonth
|
72199
71802
|
VDatePickerMonths: VDatePickerMonths
|
72200
71803
|
VDatePickerYears: VDatePickerYears
|
72201
|
-
|
72202
|
-
VDialog: VDialog
|
72203
|
-
VField: VField
|
72204
|
-
VFieldLabel: VFieldLabel
|
71804
|
+
VCounter: VCounter
|
72205
71805
|
VEmptyState: VEmptyState
|
72206
71806
|
VDataTable: VDataTable
|
72207
71807
|
VDataTableHeaders: VDataTableHeaders
|
@@ -72210,26 +71810,27 @@ declare module 'vue' {
|
|
72210
71810
|
VDataTableRow: VDataTableRow
|
72211
71811
|
VDataTableVirtual: VDataTableVirtual
|
72212
71812
|
VDataTableServer: VDataTableServer
|
71813
|
+
VDialog: VDialog
|
71814
|
+
VDivider: VDivider
|
71815
|
+
VFab: VFab
|
72213
71816
|
VExpansionPanels: VExpansionPanels
|
72214
71817
|
VExpansionPanel: VExpansionPanel
|
72215
71818
|
VExpansionPanelText: VExpansionPanelText
|
72216
71819
|
VExpansionPanelTitle: VExpansionPanelTitle
|
72217
|
-
VFooter: VFooter
|
72218
|
-
VFab: VFab
|
72219
71820
|
VFileInput: VFileInput
|
72220
|
-
VInput: VInput
|
72221
71821
|
VIcon: VIcon
|
72222
71822
|
VComponentIcon: VComponentIcon
|
72223
71823
|
VSvgIcon: VSvgIcon
|
72224
71824
|
VLigatureIcon: VLigatureIcon
|
72225
71825
|
VClassIcon: VClassIcon
|
71826
|
+
VFooter: VFooter
|
71827
|
+
VField: VField
|
71828
|
+
VFieldLabel: VFieldLabel
|
71829
|
+
VInfiniteScroll: VInfiniteScroll
|
72226
71830
|
VItemGroup: VItemGroup
|
72227
71831
|
VItem: VItem
|
71832
|
+
VInput: VInput
|
72228
71833
|
VImg: VImg
|
72229
|
-
VInfiniteScroll: VInfiniteScroll
|
72230
|
-
VKbd: VKbd
|
72231
|
-
VMain: VMain
|
72232
|
-
VMessages: VMessages
|
72233
71834
|
VLabel: VLabel
|
72234
71835
|
VList: VList
|
72235
71836
|
VListGroup: VListGroup
|
@@ -72240,70 +71841,73 @@ declare module 'vue' {
|
|
72240
71841
|
VListItemSubtitle: VListItemSubtitle
|
72241
71842
|
VListItemTitle: VListItemTitle
|
72242
71843
|
VListSubheader: VListSubheader
|
71844
|
+
VMain: VMain
|
71845
|
+
VKbd: VKbd
|
71846
|
+
VMessages: VMessages
|
71847
|
+
VMenu: VMenu
|
71848
|
+
VNavigationDrawer: VNavigationDrawer
|
72243
71849
|
VOverlay: VOverlay
|
71850
|
+
VOtpInput: VOtpInput
|
71851
|
+
VProgressLinear: VProgressLinear
|
71852
|
+
VRadioGroup: VRadioGroup
|
72244
71853
|
VProgressCircular: VProgressCircular
|
72245
|
-
VNavigationDrawer: VNavigationDrawer
|
72246
71854
|
VPagination: VPagination
|
72247
|
-
VMenu: VMenu
|
72248
|
-
VRadioGroup: VRadioGroup
|
72249
|
-
VOtpInput: VOtpInput
|
72250
71855
|
VRating: VRating
|
72251
|
-
VProgressLinear: VProgressLinear
|
72252
|
-
VSheet: VSheet
|
72253
|
-
VSelectionControl: VSelectionControl
|
72254
71856
|
VSelect: VSelect
|
72255
|
-
|
71857
|
+
VSelectionControl: VSelectionControl
|
71858
|
+
VSheet: VSheet
|
71859
|
+
VSnackbar: VSnackbar
|
72256
71860
|
VSlideGroup: VSlideGroup
|
72257
71861
|
VSlideGroupItem: VSlideGroupItem
|
72258
|
-
|
71862
|
+
VSelectionControlGroup: VSelectionControlGroup
|
72259
71863
|
VSkeletonLoader: VSkeletonLoader
|
72260
|
-
VSwitch: VSwitch
|
72261
|
-
VTab: VTab
|
72262
|
-
VTabs: VTabs
|
72263
|
-
VTabsWindow: VTabsWindow
|
72264
|
-
VTabsWindowItem: VTabsWindowItem
|
72265
71864
|
VSlider: VSlider
|
72266
|
-
VTable: VTable
|
72267
71865
|
VStepper: VStepper
|
72268
71866
|
VStepperActions: VStepperActions
|
72269
71867
|
VStepperHeader: VStepperHeader
|
72270
71868
|
VStepperItem: VStepperItem
|
72271
71869
|
VStepperWindow: VStepperWindow
|
72272
71870
|
VStepperWindowItem: VStepperWindowItem
|
71871
|
+
VTab: VTab
|
71872
|
+
VTabs: VTabs
|
71873
|
+
VTabsWindow: VTabsWindow
|
71874
|
+
VTabsWindowItem: VTabsWindowItem
|
72273
71875
|
VSystemBar: VSystemBar
|
72274
|
-
VTextarea: VTextarea
|
72275
|
-
VTextField: VTextField
|
72276
71876
|
VToolbar: VToolbar
|
72277
71877
|
VToolbarTitle: VToolbarTitle
|
72278
71878
|
VToolbarItems: VToolbarItems
|
72279
|
-
|
72280
|
-
|
71879
|
+
VTextarea: VTextarea
|
71880
|
+
VTextField: VTextField
|
71881
|
+
VSwitch: VSwitch
|
71882
|
+
VTable: VTable
|
72281
71883
|
VTooltip: VTooltip
|
72282
71884
|
VWindow: VWindow
|
72283
71885
|
VWindowItem: VWindowItem
|
72284
|
-
|
71886
|
+
VTimeline: VTimeline
|
71887
|
+
VTimelineItem: VTimelineItem
|
72285
71888
|
VConfirmEdit: VConfirmEdit
|
71889
|
+
VDataIterator: VDataIterator
|
72286
71890
|
VDefaultsProvider: VDefaultsProvider
|
71891
|
+
VForm: VForm
|
72287
71892
|
VContainer: VContainer
|
72288
71893
|
VCol: VCol
|
72289
71894
|
VRow: VRow
|
72290
71895
|
VSpacer: VSpacer
|
72291
71896
|
VHover: VHover
|
72292
|
-
VForm: VForm
|
72293
|
-
VLazy: VLazy
|
72294
71897
|
VLayout: VLayout
|
72295
71898
|
VLayoutItem: VLayoutItem
|
71899
|
+
VLazy: VLazy
|
72296
71900
|
VLocaleProvider: VLocaleProvider
|
72297
71901
|
VNoSsr: VNoSsr
|
72298
71902
|
VParallax: VParallax
|
72299
71903
|
VRadio: VRadio
|
72300
|
-
VResponsive: VResponsive
|
72301
71904
|
VRangeSlider: VRangeSlider
|
71905
|
+
VResponsive: VResponsive
|
72302
71906
|
VSparkline: VSparkline
|
72303
71907
|
VSpeedDial: VSpeedDial
|
72304
71908
|
VThemeProvider: VThemeProvider
|
72305
|
-
VValidation: VValidation
|
72306
71909
|
VVirtualScroll: VVirtualScroll
|
71910
|
+
VValidation: VValidation
|
72307
71911
|
VFabTransition: VFabTransition
|
72308
71912
|
VDialogBottomTransition: VDialogBottomTransition
|
72309
71913
|
VDialogTopTransition: VDialogTopTransition
|
@@ -72320,26 +71924,29 @@ declare module 'vue' {
|
|
72320
71924
|
VExpandTransition: VExpandTransition
|
72321
71925
|
VExpandXTransition: VExpandXTransition
|
72322
71926
|
VDialogTransition: VDialogTransition
|
71927
|
+
VAppBar: VAppBar
|
71928
|
+
VAppBarNavIcon: VAppBarNavIcon
|
71929
|
+
VAppBarTitle: VAppBarTitle
|
71930
|
+
VNumberInput: VNumberInput
|
71931
|
+
VPicker: VPicker
|
71932
|
+
VPickerTitle: VPickerTitle
|
72323
71933
|
VCalendar: VCalendar
|
72324
71934
|
VCalendarDay: VCalendarDay
|
72325
71935
|
VCalendarHeader: VCalendarHeader
|
72326
71936
|
VCalendarInterval: VCalendarInterval
|
72327
71937
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
72328
71938
|
VCalendarMonthDay: VCalendarMonthDay
|
72329
|
-
VNumberInput: VNumberInput
|
72330
|
-
VPicker: VPicker
|
72331
|
-
VPickerTitle: VPickerTitle
|
72332
71939
|
VFileUpload: VFileUpload
|
72333
71940
|
VFileUploadItem: VFileUploadItem
|
72334
71941
|
VStepperVertical: VStepperVertical
|
72335
71942
|
VStepperVerticalItem: VStepperVerticalItem
|
72336
71943
|
VStepperVerticalActions: VStepperVerticalActions
|
72337
|
-
VTimePicker: VTimePicker
|
72338
|
-
VTimePickerClock: VTimePickerClock
|
72339
|
-
VTimePickerControls: VTimePickerControls
|
72340
71944
|
VTreeview: VTreeview
|
72341
71945
|
VTreeviewItem: VTreeviewItem
|
72342
71946
|
VTreeviewGroup: VTreeviewGroup
|
71947
|
+
VTimePicker: VTimePicker
|
71948
|
+
VTimePickerClock: VTimePickerClock
|
71949
|
+
VTimePickerControls: VTimePickerControls
|
72343
71950
|
VDateInput: VDateInput
|
72344
71951
|
VPullToRefresh: VPullToRefresh
|
72345
71952
|
VSnackbarQueue: VSnackbarQueue
|