vuetify 3.5.12 → 3.5.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +160 -160
- package/dist/json/importMap-labs.json +10 -10
- package/dist/json/importMap.json +124 -124
- package/dist/json/web-types.json +161 -161
- package/dist/vuetify-labs.css +2164 -2150
- package/dist/vuetify-labs.d.ts +993 -845
- package/dist/vuetify-labs.esm.js +91 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +91 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +745 -736
- package/dist/vuetify.d.ts +789 -669
- package/dist/vuetify.esm.js +86 -18
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +86 -18
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +122 -120
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +2 -0
- package/lib/blueprints/md1.d.mts +2 -0
- package/lib/blueprints/md2.d.mts +2 -0
- package/lib/blueprints/md3.d.mts +2 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/index.d.mts +34 -28
- package/lib/components/VBtn/VBtn.mjs +2 -0
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VChip/VChip.mjs +1 -0
- package/lib/components/VChip/VChip.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +6 -0
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/index.d.mts +34 -28
- package/lib/components/VDataTable/VDataTableServer.mjs +3 -2
- package/lib/components/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +9 -2
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VField/VField.mjs +29 -3
- package/lib/components/VField/VField.mjs.map +1 -1
- package/lib/components/VField/index.d.mts +9 -3
- package/lib/components/VFileInput/VFileInput.mjs +2 -2
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +51 -23
- package/lib/components/VList/VListItem.css +3 -0
- package/lib/components/VList/VListItem.sass +4 -0
- package/lib/components/VOtpInput/VOtpInput.mjs +1 -1
- package/lib/components/VOtpInput/VOtpInput.mjs.map +1 -1
- package/lib/components/VRangeSlider/VRangeSlider.mjs +4 -3
- package/lib/components/VRangeSlider/VRangeSlider.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +6 -0
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +34 -28
- package/lib/components/VSwitch/VSwitch.css +6 -0
- package/lib/components/VSwitch/VSwitch.sass +7 -0
- package/lib/components/VSwitch/_variables.scss +1 -0
- package/lib/components/VTextField/index.d.mts +88 -46
- package/lib/components/VTextarea/index.d.mts +54 -26
- package/lib/components/index.d.mts +764 -650
- package/lib/composables/date/DateAdapter.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +14 -0
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/router.mjs +2 -2
- package/lib/composables/router.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +44 -38
- package/lib/labs/VEmptyState/VEmptyState.css +4 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs +6 -1
- package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -1
- package/lib/labs/VEmptyState/VEmptyState.sass +4 -0
- package/lib/labs/VEmptyState/_variables.scss +1 -0
- package/lib/labs/VNumberInput/VNumberInput.css +1 -0
- package/lib/labs/VNumberInput/VNumberInput.mjs +0 -4
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/VNumberInput.sass +1 -0
- package/lib/labs/VNumberInput/index.d.mts +51 -23
- package/lib/labs/components.d.mts +50 -22
- package/package.json +2 -2
package/dist/vuetify.d.ts
CHANGED
|
@@ -38,6 +38,8 @@ interface DateAdapter<T = unknown> {
|
|
|
38
38
|
getWeekdays(): string[];
|
|
39
39
|
getMonth(date: T): number;
|
|
40
40
|
setMonth(date: T, month: number): T;
|
|
41
|
+
getDate(date: T): number;
|
|
42
|
+
setDate(date: T, day: number): T;
|
|
41
43
|
getNextMonth(date: T): T;
|
|
42
44
|
getHours(date: T): number;
|
|
43
45
|
setHours(date: T, hours: number): T;
|
|
@@ -127,6 +129,8 @@ declare function useDate(): {
|
|
|
127
129
|
getWeekdays: () => string[];
|
|
128
130
|
getMonth: (date: unknown) => number;
|
|
129
131
|
setMonth: (date: unknown, month: number) => unknown;
|
|
132
|
+
getDate: (date: unknown) => number;
|
|
133
|
+
setDate: (date: unknown, day: number) => unknown;
|
|
130
134
|
getNextMonth: (date: unknown) => unknown;
|
|
131
135
|
getHours: (date: unknown) => number;
|
|
132
136
|
setHours: (date: unknown, hours: number) => unknown;
|
|
@@ -3128,391 +3132,6 @@ interface LoaderSlotProps {
|
|
|
3128
3132
|
isActive: boolean;
|
|
3129
3133
|
}
|
|
3130
3134
|
|
|
3131
|
-
interface DefaultInputSlot {
|
|
3132
|
-
isActive: Ref<boolean>;
|
|
3133
|
-
isFocused: Ref<boolean>;
|
|
3134
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
3135
|
-
focus: () => void;
|
|
3136
|
-
blur: () => void;
|
|
3137
|
-
}
|
|
3138
|
-
interface VFieldSlot extends DefaultInputSlot {
|
|
3139
|
-
props: Record<string, unknown>;
|
|
3140
|
-
}
|
|
3141
|
-
type VFieldSlots = {
|
|
3142
|
-
clear: never;
|
|
3143
|
-
'prepend-inner': DefaultInputSlot;
|
|
3144
|
-
'append-inner': DefaultInputSlot;
|
|
3145
|
-
label: DefaultInputSlot & {
|
|
3146
|
-
label: string | undefined;
|
|
3147
|
-
props: Record<string, any>;
|
|
3148
|
-
};
|
|
3149
|
-
loader: LoaderSlotProps;
|
|
3150
|
-
default: VFieldSlot;
|
|
3151
|
-
};
|
|
3152
|
-
declare const VField: {
|
|
3153
|
-
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
3154
|
-
flat: boolean;
|
|
3155
|
-
reverse: boolean;
|
|
3156
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3157
|
-
error: boolean;
|
|
3158
|
-
active: boolean;
|
|
3159
|
-
style: vue.StyleValue;
|
|
3160
|
-
disabled: boolean;
|
|
3161
|
-
focused: boolean;
|
|
3162
|
-
tile: boolean;
|
|
3163
|
-
clearIcon: IconValue;
|
|
3164
|
-
clearable: boolean;
|
|
3165
|
-
dirty: boolean;
|
|
3166
|
-
persistentClear: boolean;
|
|
3167
|
-
singleLine: boolean;
|
|
3168
|
-
} & {
|
|
3169
|
-
id?: string | undefined;
|
|
3170
|
-
color?: string | undefined;
|
|
3171
|
-
loading?: string | boolean | undefined;
|
|
3172
|
-
label?: string | undefined;
|
|
3173
|
-
class?: any;
|
|
3174
|
-
theme?: string | undefined;
|
|
3175
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3176
|
-
rounded?: string | number | boolean | undefined;
|
|
3177
|
-
bgColor?: string | undefined;
|
|
3178
|
-
baseColor?: string | undefined;
|
|
3179
|
-
appendInnerIcon?: IconValue | undefined;
|
|
3180
|
-
prependInnerIcon?: IconValue | undefined;
|
|
3181
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3182
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3183
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3184
|
-
centerAffix?: boolean | undefined;
|
|
3185
|
-
} & {
|
|
3186
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3187
|
-
}, {
|
|
3188
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
3189
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
3190
|
-
'update:focused': (focused: boolean) => true;
|
|
3191
|
-
'update:modelValue': (value: any) => true;
|
|
3192
|
-
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
3193
|
-
flat: boolean;
|
|
3194
|
-
reverse: boolean;
|
|
3195
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3196
|
-
error: boolean;
|
|
3197
|
-
active: boolean;
|
|
3198
|
-
style: vue.StyleValue;
|
|
3199
|
-
disabled: boolean;
|
|
3200
|
-
focused: boolean;
|
|
3201
|
-
tile: boolean;
|
|
3202
|
-
clearIcon: IconValue;
|
|
3203
|
-
clearable: boolean;
|
|
3204
|
-
dirty: boolean;
|
|
3205
|
-
persistentClear: boolean;
|
|
3206
|
-
singleLine: boolean;
|
|
3207
|
-
} & {
|
|
3208
|
-
id?: string | undefined;
|
|
3209
|
-
color?: string | undefined;
|
|
3210
|
-
loading?: string | boolean | undefined;
|
|
3211
|
-
label?: string | undefined;
|
|
3212
|
-
class?: any;
|
|
3213
|
-
theme?: string | undefined;
|
|
3214
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3215
|
-
rounded?: string | number | boolean | undefined;
|
|
3216
|
-
bgColor?: string | undefined;
|
|
3217
|
-
baseColor?: string | undefined;
|
|
3218
|
-
appendInnerIcon?: IconValue | undefined;
|
|
3219
|
-
prependInnerIcon?: IconValue | undefined;
|
|
3220
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3221
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3222
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3223
|
-
centerAffix?: boolean | undefined;
|
|
3224
|
-
} & {
|
|
3225
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3226
|
-
}, {
|
|
3227
|
-
flat: boolean;
|
|
3228
|
-
reverse: boolean;
|
|
3229
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3230
|
-
error: boolean;
|
|
3231
|
-
active: boolean;
|
|
3232
|
-
style: vue.StyleValue;
|
|
3233
|
-
disabled: boolean;
|
|
3234
|
-
focused: boolean;
|
|
3235
|
-
rounded: string | number | boolean;
|
|
3236
|
-
tile: boolean;
|
|
3237
|
-
clearIcon: IconValue;
|
|
3238
|
-
centerAffix: boolean;
|
|
3239
|
-
clearable: boolean;
|
|
3240
|
-
dirty: boolean;
|
|
3241
|
-
persistentClear: boolean;
|
|
3242
|
-
singleLine: boolean;
|
|
3243
|
-
}, true, {}, vue.SlotsType<Partial<{
|
|
3244
|
-
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3245
|
-
[key: string]: any;
|
|
3246
|
-
}>[];
|
|
3247
|
-
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3248
|
-
[key: string]: any;
|
|
3249
|
-
}>[];
|
|
3250
|
-
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3251
|
-
[key: string]: any;
|
|
3252
|
-
}>[];
|
|
3253
|
-
label: (arg: DefaultInputSlot & {
|
|
3254
|
-
label: string | undefined;
|
|
3255
|
-
props: Record<string, any>;
|
|
3256
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3257
|
-
[key: string]: any;
|
|
3258
|
-
}>[];
|
|
3259
|
-
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3260
|
-
[key: string]: any;
|
|
3261
|
-
}>[];
|
|
3262
|
-
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3263
|
-
[key: string]: any;
|
|
3264
|
-
}>[];
|
|
3265
|
-
}>>, {
|
|
3266
|
-
P: {};
|
|
3267
|
-
B: {};
|
|
3268
|
-
D: {};
|
|
3269
|
-
C: {};
|
|
3270
|
-
M: {};
|
|
3271
|
-
Defaults: {};
|
|
3272
|
-
}, {
|
|
3273
|
-
flat: boolean;
|
|
3274
|
-
reverse: boolean;
|
|
3275
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3276
|
-
error: boolean;
|
|
3277
|
-
active: boolean;
|
|
3278
|
-
style: vue.StyleValue;
|
|
3279
|
-
disabled: boolean;
|
|
3280
|
-
focused: boolean;
|
|
3281
|
-
tile: boolean;
|
|
3282
|
-
clearIcon: IconValue;
|
|
3283
|
-
clearable: boolean;
|
|
3284
|
-
dirty: boolean;
|
|
3285
|
-
persistentClear: boolean;
|
|
3286
|
-
singleLine: boolean;
|
|
3287
|
-
} & {
|
|
3288
|
-
id?: string | undefined;
|
|
3289
|
-
color?: string | undefined;
|
|
3290
|
-
loading?: string | boolean | undefined;
|
|
3291
|
-
label?: string | undefined;
|
|
3292
|
-
class?: any;
|
|
3293
|
-
theme?: string | undefined;
|
|
3294
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3295
|
-
rounded?: string | number | boolean | undefined;
|
|
3296
|
-
bgColor?: string | undefined;
|
|
3297
|
-
baseColor?: string | undefined;
|
|
3298
|
-
appendInnerIcon?: IconValue | undefined;
|
|
3299
|
-
prependInnerIcon?: IconValue | undefined;
|
|
3300
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3301
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3302
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3303
|
-
centerAffix?: boolean | undefined;
|
|
3304
|
-
} & {
|
|
3305
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3306
|
-
}, {
|
|
3307
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
3308
|
-
}, {}, {}, {}, {
|
|
3309
|
-
flat: boolean;
|
|
3310
|
-
reverse: boolean;
|
|
3311
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3312
|
-
error: boolean;
|
|
3313
|
-
active: boolean;
|
|
3314
|
-
style: vue.StyleValue;
|
|
3315
|
-
disabled: boolean;
|
|
3316
|
-
focused: boolean;
|
|
3317
|
-
rounded: string | number | boolean;
|
|
3318
|
-
tile: boolean;
|
|
3319
|
-
clearIcon: IconValue;
|
|
3320
|
-
centerAffix: boolean;
|
|
3321
|
-
clearable: boolean;
|
|
3322
|
-
dirty: boolean;
|
|
3323
|
-
persistentClear: boolean;
|
|
3324
|
-
singleLine: boolean;
|
|
3325
|
-
}>;
|
|
3326
|
-
__isFragment?: undefined;
|
|
3327
|
-
__isTeleport?: undefined;
|
|
3328
|
-
__isSuspense?: undefined;
|
|
3329
|
-
} & vue.ComponentOptionsBase<{
|
|
3330
|
-
flat: boolean;
|
|
3331
|
-
reverse: boolean;
|
|
3332
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3333
|
-
error: boolean;
|
|
3334
|
-
active: boolean;
|
|
3335
|
-
style: vue.StyleValue;
|
|
3336
|
-
disabled: boolean;
|
|
3337
|
-
focused: boolean;
|
|
3338
|
-
tile: boolean;
|
|
3339
|
-
clearIcon: IconValue;
|
|
3340
|
-
clearable: boolean;
|
|
3341
|
-
dirty: boolean;
|
|
3342
|
-
persistentClear: boolean;
|
|
3343
|
-
singleLine: boolean;
|
|
3344
|
-
} & {
|
|
3345
|
-
id?: string | undefined;
|
|
3346
|
-
color?: string | undefined;
|
|
3347
|
-
loading?: string | boolean | undefined;
|
|
3348
|
-
label?: string | undefined;
|
|
3349
|
-
class?: any;
|
|
3350
|
-
theme?: string | undefined;
|
|
3351
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3352
|
-
rounded?: string | number | boolean | undefined;
|
|
3353
|
-
bgColor?: string | undefined;
|
|
3354
|
-
baseColor?: string | undefined;
|
|
3355
|
-
appendInnerIcon?: IconValue | undefined;
|
|
3356
|
-
prependInnerIcon?: IconValue | undefined;
|
|
3357
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3358
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3359
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3360
|
-
centerAffix?: boolean | undefined;
|
|
3361
|
-
} & {
|
|
3362
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3363
|
-
}, {
|
|
3364
|
-
controlRef: Ref<HTMLElement | undefined>;
|
|
3365
|
-
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
3366
|
-
'update:focused': (focused: boolean) => true;
|
|
3367
|
-
'update:modelValue': (value: any) => true;
|
|
3368
|
-
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
3369
|
-
flat: boolean;
|
|
3370
|
-
reverse: boolean;
|
|
3371
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3372
|
-
error: boolean;
|
|
3373
|
-
active: boolean;
|
|
3374
|
-
style: vue.StyleValue;
|
|
3375
|
-
disabled: boolean;
|
|
3376
|
-
focused: boolean;
|
|
3377
|
-
rounded: string | number | boolean;
|
|
3378
|
-
tile: boolean;
|
|
3379
|
-
clearIcon: IconValue;
|
|
3380
|
-
centerAffix: boolean;
|
|
3381
|
-
clearable: boolean;
|
|
3382
|
-
dirty: boolean;
|
|
3383
|
-
persistentClear: boolean;
|
|
3384
|
-
singleLine: boolean;
|
|
3385
|
-
}, {}, string, vue.SlotsType<Partial<{
|
|
3386
|
-
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3387
|
-
[key: string]: any;
|
|
3388
|
-
}>[];
|
|
3389
|
-
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3390
|
-
[key: string]: any;
|
|
3391
|
-
}>[];
|
|
3392
|
-
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3393
|
-
[key: string]: any;
|
|
3394
|
-
}>[];
|
|
3395
|
-
label: (arg: DefaultInputSlot & {
|
|
3396
|
-
label: string | undefined;
|
|
3397
|
-
props: Record<string, any>;
|
|
3398
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3399
|
-
[key: string]: any;
|
|
3400
|
-
}>[];
|
|
3401
|
-
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3402
|
-
[key: string]: any;
|
|
3403
|
-
}>[];
|
|
3404
|
-
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3405
|
-
[key: string]: any;
|
|
3406
|
-
}>[];
|
|
3407
|
-
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
3408
|
-
modelValue?: T | undefined;
|
|
3409
|
-
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
3410
|
-
}, slots: VFieldSlots) => GenericProps<{
|
|
3411
|
-
modelValue?: T | undefined;
|
|
3412
|
-
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
3413
|
-
}, VFieldSlots>) & FilterPropsOptions<{
|
|
3414
|
-
theme: StringConstructor;
|
|
3415
|
-
rounded: {
|
|
3416
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3417
|
-
default: undefined;
|
|
3418
|
-
};
|
|
3419
|
-
tile: BooleanConstructor;
|
|
3420
|
-
loading: (StringConstructor | BooleanConstructor)[];
|
|
3421
|
-
class: PropType<any>;
|
|
3422
|
-
style: {
|
|
3423
|
-
type: PropType<vue.StyleValue>;
|
|
3424
|
-
default: null;
|
|
3425
|
-
};
|
|
3426
|
-
appendInnerIcon: PropType<IconValue>;
|
|
3427
|
-
bgColor: StringConstructor;
|
|
3428
|
-
clearable: BooleanConstructor;
|
|
3429
|
-
clearIcon: {
|
|
3430
|
-
type: PropType<IconValue>;
|
|
3431
|
-
default: string;
|
|
3432
|
-
};
|
|
3433
|
-
active: BooleanConstructor;
|
|
3434
|
-
centerAffix: {
|
|
3435
|
-
type: BooleanConstructor;
|
|
3436
|
-
default: undefined;
|
|
3437
|
-
};
|
|
3438
|
-
color: StringConstructor;
|
|
3439
|
-
baseColor: StringConstructor;
|
|
3440
|
-
dirty: BooleanConstructor;
|
|
3441
|
-
disabled: {
|
|
3442
|
-
type: BooleanConstructor;
|
|
3443
|
-
default: null;
|
|
3444
|
-
};
|
|
3445
|
-
error: BooleanConstructor;
|
|
3446
|
-
flat: BooleanConstructor;
|
|
3447
|
-
label: StringConstructor;
|
|
3448
|
-
persistentClear: BooleanConstructor;
|
|
3449
|
-
prependInnerIcon: PropType<IconValue>;
|
|
3450
|
-
reverse: BooleanConstructor;
|
|
3451
|
-
singleLine: BooleanConstructor;
|
|
3452
|
-
variant: {
|
|
3453
|
-
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
3454
|
-
default: string;
|
|
3455
|
-
validator: (v: any) => boolean;
|
|
3456
|
-
};
|
|
3457
|
-
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
3458
|
-
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
3459
|
-
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
3460
|
-
focused: BooleanConstructor;
|
|
3461
|
-
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
3462
|
-
id: StringConstructor;
|
|
3463
|
-
}, vue.ExtractPropTypes<{
|
|
3464
|
-
theme: StringConstructor;
|
|
3465
|
-
rounded: {
|
|
3466
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
3467
|
-
default: undefined;
|
|
3468
|
-
};
|
|
3469
|
-
tile: BooleanConstructor;
|
|
3470
|
-
loading: (StringConstructor | BooleanConstructor)[];
|
|
3471
|
-
class: PropType<any>;
|
|
3472
|
-
style: {
|
|
3473
|
-
type: PropType<vue.StyleValue>;
|
|
3474
|
-
default: null;
|
|
3475
|
-
};
|
|
3476
|
-
appendInnerIcon: PropType<IconValue>;
|
|
3477
|
-
bgColor: StringConstructor;
|
|
3478
|
-
clearable: BooleanConstructor;
|
|
3479
|
-
clearIcon: {
|
|
3480
|
-
type: PropType<IconValue>;
|
|
3481
|
-
default: string;
|
|
3482
|
-
};
|
|
3483
|
-
active: BooleanConstructor;
|
|
3484
|
-
centerAffix: {
|
|
3485
|
-
type: BooleanConstructor;
|
|
3486
|
-
default: undefined;
|
|
3487
|
-
};
|
|
3488
|
-
color: StringConstructor;
|
|
3489
|
-
baseColor: StringConstructor;
|
|
3490
|
-
dirty: BooleanConstructor;
|
|
3491
|
-
disabled: {
|
|
3492
|
-
type: BooleanConstructor;
|
|
3493
|
-
default: null;
|
|
3494
|
-
};
|
|
3495
|
-
error: BooleanConstructor;
|
|
3496
|
-
flat: BooleanConstructor;
|
|
3497
|
-
label: StringConstructor;
|
|
3498
|
-
persistentClear: BooleanConstructor;
|
|
3499
|
-
prependInnerIcon: PropType<IconValue>;
|
|
3500
|
-
reverse: BooleanConstructor;
|
|
3501
|
-
singleLine: BooleanConstructor;
|
|
3502
|
-
variant: {
|
|
3503
|
-
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
3504
|
-
default: string;
|
|
3505
|
-
validator: (v: any) => boolean;
|
|
3506
|
-
};
|
|
3507
|
-
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
3508
|
-
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
3509
|
-
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
3510
|
-
focused: BooleanConstructor;
|
|
3511
|
-
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
3512
|
-
id: StringConstructor;
|
|
3513
|
-
}>>;
|
|
3514
|
-
type VField = InstanceType<typeof VField>;
|
|
3515
|
-
|
|
3516
3135
|
type VMessageSlot = {
|
|
3517
3136
|
message: string;
|
|
3518
3137
|
};
|
|
@@ -4110,6 +3729,397 @@ declare const VInput: {
|
|
|
4110
3729
|
}>>;
|
|
4111
3730
|
type VInput = InstanceType<typeof VInput>;
|
|
4112
3731
|
|
|
3732
|
+
interface DefaultInputSlot {
|
|
3733
|
+
isActive: Ref<boolean>;
|
|
3734
|
+
isFocused: Ref<boolean>;
|
|
3735
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3736
|
+
focus: () => void;
|
|
3737
|
+
blur: () => void;
|
|
3738
|
+
}
|
|
3739
|
+
interface VFieldSlot extends DefaultInputSlot {
|
|
3740
|
+
props: Record<string, unknown>;
|
|
3741
|
+
}
|
|
3742
|
+
type VFieldSlots = {
|
|
3743
|
+
clear: DefaultInputSlot & {
|
|
3744
|
+
props: Record<string, any>;
|
|
3745
|
+
};
|
|
3746
|
+
'prepend-inner': DefaultInputSlot;
|
|
3747
|
+
'append-inner': DefaultInputSlot;
|
|
3748
|
+
label: DefaultInputSlot & {
|
|
3749
|
+
label: string | undefined;
|
|
3750
|
+
props: Record<string, any>;
|
|
3751
|
+
};
|
|
3752
|
+
loader: LoaderSlotProps;
|
|
3753
|
+
default: VFieldSlot;
|
|
3754
|
+
};
|
|
3755
|
+
declare const VField: {
|
|
3756
|
+
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
|
3757
|
+
flat: boolean;
|
|
3758
|
+
reverse: boolean;
|
|
3759
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3760
|
+
error: boolean;
|
|
3761
|
+
active: boolean;
|
|
3762
|
+
style: vue.StyleValue;
|
|
3763
|
+
disabled: boolean;
|
|
3764
|
+
focused: boolean;
|
|
3765
|
+
tile: boolean;
|
|
3766
|
+
clearIcon: IconValue;
|
|
3767
|
+
clearable: boolean;
|
|
3768
|
+
dirty: boolean;
|
|
3769
|
+
persistentClear: boolean;
|
|
3770
|
+
singleLine: boolean;
|
|
3771
|
+
} & {
|
|
3772
|
+
id?: string | undefined;
|
|
3773
|
+
color?: string | undefined;
|
|
3774
|
+
loading?: string | boolean | undefined;
|
|
3775
|
+
label?: string | undefined;
|
|
3776
|
+
class?: any;
|
|
3777
|
+
theme?: string | undefined;
|
|
3778
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3779
|
+
rounded?: string | number | boolean | undefined;
|
|
3780
|
+
bgColor?: string | undefined;
|
|
3781
|
+
baseColor?: string | undefined;
|
|
3782
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3783
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3784
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3785
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3786
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3787
|
+
centerAffix?: boolean | undefined;
|
|
3788
|
+
} & {
|
|
3789
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3790
|
+
}, {
|
|
3791
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3792
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
3793
|
+
'update:focused': (focused: boolean) => true;
|
|
3794
|
+
'update:modelValue': (value: any) => true;
|
|
3795
|
+
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
|
3796
|
+
flat: boolean;
|
|
3797
|
+
reverse: boolean;
|
|
3798
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3799
|
+
error: boolean;
|
|
3800
|
+
active: boolean;
|
|
3801
|
+
style: vue.StyleValue;
|
|
3802
|
+
disabled: boolean;
|
|
3803
|
+
focused: boolean;
|
|
3804
|
+
tile: boolean;
|
|
3805
|
+
clearIcon: IconValue;
|
|
3806
|
+
clearable: boolean;
|
|
3807
|
+
dirty: boolean;
|
|
3808
|
+
persistentClear: boolean;
|
|
3809
|
+
singleLine: boolean;
|
|
3810
|
+
} & {
|
|
3811
|
+
id?: string | undefined;
|
|
3812
|
+
color?: string | undefined;
|
|
3813
|
+
loading?: string | boolean | undefined;
|
|
3814
|
+
label?: string | undefined;
|
|
3815
|
+
class?: any;
|
|
3816
|
+
theme?: string | undefined;
|
|
3817
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3818
|
+
rounded?: string | number | boolean | undefined;
|
|
3819
|
+
bgColor?: string | undefined;
|
|
3820
|
+
baseColor?: string | undefined;
|
|
3821
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3822
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3823
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3824
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3825
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3826
|
+
centerAffix?: boolean | undefined;
|
|
3827
|
+
} & {
|
|
3828
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3829
|
+
}, {
|
|
3830
|
+
flat: boolean;
|
|
3831
|
+
reverse: boolean;
|
|
3832
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3833
|
+
error: boolean;
|
|
3834
|
+
active: boolean;
|
|
3835
|
+
style: vue.StyleValue;
|
|
3836
|
+
disabled: boolean;
|
|
3837
|
+
focused: boolean;
|
|
3838
|
+
rounded: string | number | boolean;
|
|
3839
|
+
tile: boolean;
|
|
3840
|
+
clearIcon: IconValue;
|
|
3841
|
+
centerAffix: boolean;
|
|
3842
|
+
clearable: boolean;
|
|
3843
|
+
dirty: boolean;
|
|
3844
|
+
persistentClear: boolean;
|
|
3845
|
+
singleLine: boolean;
|
|
3846
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
3847
|
+
clear: (arg: DefaultInputSlot & {
|
|
3848
|
+
props: Record<string, any>;
|
|
3849
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3850
|
+
[key: string]: any;
|
|
3851
|
+
}>[];
|
|
3852
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3853
|
+
[key: string]: any;
|
|
3854
|
+
}>[];
|
|
3855
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3856
|
+
[key: string]: any;
|
|
3857
|
+
}>[];
|
|
3858
|
+
label: (arg: DefaultInputSlot & {
|
|
3859
|
+
label: string | undefined;
|
|
3860
|
+
props: Record<string, any>;
|
|
3861
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3862
|
+
[key: string]: any;
|
|
3863
|
+
}>[];
|
|
3864
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3865
|
+
[key: string]: any;
|
|
3866
|
+
}>[];
|
|
3867
|
+
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3868
|
+
[key: string]: any;
|
|
3869
|
+
}>[];
|
|
3870
|
+
}>>, {
|
|
3871
|
+
P: {};
|
|
3872
|
+
B: {};
|
|
3873
|
+
D: {};
|
|
3874
|
+
C: {};
|
|
3875
|
+
M: {};
|
|
3876
|
+
Defaults: {};
|
|
3877
|
+
}, {
|
|
3878
|
+
flat: boolean;
|
|
3879
|
+
reverse: boolean;
|
|
3880
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3881
|
+
error: boolean;
|
|
3882
|
+
active: boolean;
|
|
3883
|
+
style: vue.StyleValue;
|
|
3884
|
+
disabled: boolean;
|
|
3885
|
+
focused: boolean;
|
|
3886
|
+
tile: boolean;
|
|
3887
|
+
clearIcon: IconValue;
|
|
3888
|
+
clearable: boolean;
|
|
3889
|
+
dirty: boolean;
|
|
3890
|
+
persistentClear: boolean;
|
|
3891
|
+
singleLine: boolean;
|
|
3892
|
+
} & {
|
|
3893
|
+
id?: string | undefined;
|
|
3894
|
+
color?: string | undefined;
|
|
3895
|
+
loading?: string | boolean | undefined;
|
|
3896
|
+
label?: string | undefined;
|
|
3897
|
+
class?: any;
|
|
3898
|
+
theme?: string | undefined;
|
|
3899
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3900
|
+
rounded?: string | number | boolean | undefined;
|
|
3901
|
+
bgColor?: string | undefined;
|
|
3902
|
+
baseColor?: string | undefined;
|
|
3903
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3904
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3905
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3906
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3907
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3908
|
+
centerAffix?: boolean | undefined;
|
|
3909
|
+
} & {
|
|
3910
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3911
|
+
}, {
|
|
3912
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3913
|
+
}, {}, {}, {}, {
|
|
3914
|
+
flat: boolean;
|
|
3915
|
+
reverse: boolean;
|
|
3916
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3917
|
+
error: boolean;
|
|
3918
|
+
active: boolean;
|
|
3919
|
+
style: vue.StyleValue;
|
|
3920
|
+
disabled: boolean;
|
|
3921
|
+
focused: boolean;
|
|
3922
|
+
rounded: string | number | boolean;
|
|
3923
|
+
tile: boolean;
|
|
3924
|
+
clearIcon: IconValue;
|
|
3925
|
+
centerAffix: boolean;
|
|
3926
|
+
clearable: boolean;
|
|
3927
|
+
dirty: boolean;
|
|
3928
|
+
persistentClear: boolean;
|
|
3929
|
+
singleLine: boolean;
|
|
3930
|
+
}>;
|
|
3931
|
+
__isFragment?: undefined;
|
|
3932
|
+
__isTeleport?: undefined;
|
|
3933
|
+
__isSuspense?: undefined;
|
|
3934
|
+
} & vue.ComponentOptionsBase<{
|
|
3935
|
+
flat: boolean;
|
|
3936
|
+
reverse: boolean;
|
|
3937
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3938
|
+
error: boolean;
|
|
3939
|
+
active: boolean;
|
|
3940
|
+
style: vue.StyleValue;
|
|
3941
|
+
disabled: boolean;
|
|
3942
|
+
focused: boolean;
|
|
3943
|
+
tile: boolean;
|
|
3944
|
+
clearIcon: IconValue;
|
|
3945
|
+
clearable: boolean;
|
|
3946
|
+
dirty: boolean;
|
|
3947
|
+
persistentClear: boolean;
|
|
3948
|
+
singleLine: boolean;
|
|
3949
|
+
} & {
|
|
3950
|
+
id?: string | undefined;
|
|
3951
|
+
color?: string | undefined;
|
|
3952
|
+
loading?: string | boolean | undefined;
|
|
3953
|
+
label?: string | undefined;
|
|
3954
|
+
class?: any;
|
|
3955
|
+
theme?: string | undefined;
|
|
3956
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
3957
|
+
rounded?: string | number | boolean | undefined;
|
|
3958
|
+
bgColor?: string | undefined;
|
|
3959
|
+
baseColor?: string | undefined;
|
|
3960
|
+
appendInnerIcon?: IconValue | undefined;
|
|
3961
|
+
prependInnerIcon?: IconValue | undefined;
|
|
3962
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3963
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3964
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
3965
|
+
centerAffix?: boolean | undefined;
|
|
3966
|
+
} & {
|
|
3967
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
3968
|
+
}, {
|
|
3969
|
+
controlRef: Ref<HTMLElement | undefined>;
|
|
3970
|
+
}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
|
|
3971
|
+
'update:focused': (focused: boolean) => true;
|
|
3972
|
+
'update:modelValue': (value: any) => true;
|
|
3973
|
+
}, "$children" | "v-slot:default" | "v-slots" | "modelValue" | "update:modelValue" | "v-slot:loader" | "v-slot:label" | "v-slot:clear" | "v-slot:prepend-inner" | "v-slot:append-inner">, string, {
|
|
3974
|
+
flat: boolean;
|
|
3975
|
+
reverse: boolean;
|
|
3976
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
3977
|
+
error: boolean;
|
|
3978
|
+
active: boolean;
|
|
3979
|
+
style: vue.StyleValue;
|
|
3980
|
+
disabled: boolean;
|
|
3981
|
+
focused: boolean;
|
|
3982
|
+
rounded: string | number | boolean;
|
|
3983
|
+
tile: boolean;
|
|
3984
|
+
clearIcon: IconValue;
|
|
3985
|
+
centerAffix: boolean;
|
|
3986
|
+
clearable: boolean;
|
|
3987
|
+
dirty: boolean;
|
|
3988
|
+
persistentClear: boolean;
|
|
3989
|
+
singleLine: boolean;
|
|
3990
|
+
}, {}, string, vue.SlotsType<Partial<{
|
|
3991
|
+
clear: (arg: DefaultInputSlot & {
|
|
3992
|
+
props: Record<string, any>;
|
|
3993
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3994
|
+
[key: string]: any;
|
|
3995
|
+
}>[];
|
|
3996
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
3997
|
+
[key: string]: any;
|
|
3998
|
+
}>[];
|
|
3999
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
4000
|
+
[key: string]: any;
|
|
4001
|
+
}>[];
|
|
4002
|
+
label: (arg: DefaultInputSlot & {
|
|
4003
|
+
label: string | undefined;
|
|
4004
|
+
props: Record<string, any>;
|
|
4005
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
4006
|
+
[key: string]: any;
|
|
4007
|
+
}>[];
|
|
4008
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
4009
|
+
[key: string]: any;
|
|
4010
|
+
}>[];
|
|
4011
|
+
default: (arg: VFieldSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
4012
|
+
[key: string]: any;
|
|
4013
|
+
}>[];
|
|
4014
|
+
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & (new <T>(props: {
|
|
4015
|
+
modelValue?: T | undefined;
|
|
4016
|
+
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
4017
|
+
}, slots: VFieldSlots) => GenericProps<{
|
|
4018
|
+
modelValue?: T | undefined;
|
|
4019
|
+
'onUpdate:modelValue'?: ((value: T) => void) | undefined;
|
|
4020
|
+
}, VFieldSlots>) & FilterPropsOptions<{
|
|
4021
|
+
theme: StringConstructor;
|
|
4022
|
+
rounded: {
|
|
4023
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
4024
|
+
default: undefined;
|
|
4025
|
+
};
|
|
4026
|
+
tile: BooleanConstructor;
|
|
4027
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4028
|
+
class: PropType<any>;
|
|
4029
|
+
style: {
|
|
4030
|
+
type: PropType<vue.StyleValue>;
|
|
4031
|
+
default: null;
|
|
4032
|
+
};
|
|
4033
|
+
appendInnerIcon: PropType<IconValue>;
|
|
4034
|
+
bgColor: StringConstructor;
|
|
4035
|
+
clearable: BooleanConstructor;
|
|
4036
|
+
clearIcon: {
|
|
4037
|
+
type: PropType<IconValue>;
|
|
4038
|
+
default: string;
|
|
4039
|
+
};
|
|
4040
|
+
active: BooleanConstructor;
|
|
4041
|
+
centerAffix: {
|
|
4042
|
+
type: BooleanConstructor;
|
|
4043
|
+
default: undefined;
|
|
4044
|
+
};
|
|
4045
|
+
color: StringConstructor;
|
|
4046
|
+
baseColor: StringConstructor;
|
|
4047
|
+
dirty: BooleanConstructor;
|
|
4048
|
+
disabled: {
|
|
4049
|
+
type: BooleanConstructor;
|
|
4050
|
+
default: null;
|
|
4051
|
+
};
|
|
4052
|
+
error: BooleanConstructor;
|
|
4053
|
+
flat: BooleanConstructor;
|
|
4054
|
+
label: StringConstructor;
|
|
4055
|
+
persistentClear: BooleanConstructor;
|
|
4056
|
+
prependInnerIcon: PropType<IconValue>;
|
|
4057
|
+
reverse: BooleanConstructor;
|
|
4058
|
+
singleLine: BooleanConstructor;
|
|
4059
|
+
variant: {
|
|
4060
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
4061
|
+
default: string;
|
|
4062
|
+
validator: (v: any) => boolean;
|
|
4063
|
+
};
|
|
4064
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
4065
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
4066
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
4067
|
+
focused: BooleanConstructor;
|
|
4068
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
4069
|
+
id: StringConstructor;
|
|
4070
|
+
}, vue.ExtractPropTypes<{
|
|
4071
|
+
theme: StringConstructor;
|
|
4072
|
+
rounded: {
|
|
4073
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
4074
|
+
default: undefined;
|
|
4075
|
+
};
|
|
4076
|
+
tile: BooleanConstructor;
|
|
4077
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
4078
|
+
class: PropType<any>;
|
|
4079
|
+
style: {
|
|
4080
|
+
type: PropType<vue.StyleValue>;
|
|
4081
|
+
default: null;
|
|
4082
|
+
};
|
|
4083
|
+
appendInnerIcon: PropType<IconValue>;
|
|
4084
|
+
bgColor: StringConstructor;
|
|
4085
|
+
clearable: BooleanConstructor;
|
|
4086
|
+
clearIcon: {
|
|
4087
|
+
type: PropType<IconValue>;
|
|
4088
|
+
default: string;
|
|
4089
|
+
};
|
|
4090
|
+
active: BooleanConstructor;
|
|
4091
|
+
centerAffix: {
|
|
4092
|
+
type: BooleanConstructor;
|
|
4093
|
+
default: undefined;
|
|
4094
|
+
};
|
|
4095
|
+
color: StringConstructor;
|
|
4096
|
+
baseColor: StringConstructor;
|
|
4097
|
+
dirty: BooleanConstructor;
|
|
4098
|
+
disabled: {
|
|
4099
|
+
type: BooleanConstructor;
|
|
4100
|
+
default: null;
|
|
4101
|
+
};
|
|
4102
|
+
error: BooleanConstructor;
|
|
4103
|
+
flat: BooleanConstructor;
|
|
4104
|
+
label: StringConstructor;
|
|
4105
|
+
persistentClear: BooleanConstructor;
|
|
4106
|
+
prependInnerIcon: PropType<IconValue>;
|
|
4107
|
+
reverse: BooleanConstructor;
|
|
4108
|
+
singleLine: BooleanConstructor;
|
|
4109
|
+
variant: {
|
|
4110
|
+
type: PropType<"filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled">;
|
|
4111
|
+
default: string;
|
|
4112
|
+
validator: (v: any) => boolean;
|
|
4113
|
+
};
|
|
4114
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
4115
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
4116
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
4117
|
+
focused: BooleanConstructor;
|
|
4118
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
4119
|
+
id: StringConstructor;
|
|
4120
|
+
}>>;
|
|
4121
|
+
type VField = InstanceType<typeof VField>;
|
|
4122
|
+
|
|
4113
4123
|
/**
|
|
4114
4124
|
* - match without highlight
|
|
4115
4125
|
* - single match (index), length already known
|
|
@@ -5985,7 +5995,9 @@ declare const VAutocomplete: {
|
|
|
5985
5995
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
5986
5996
|
[key: string]: any;
|
|
5987
5997
|
}>[];
|
|
5988
|
-
clear: (
|
|
5998
|
+
clear: (arg: DefaultInputSlot & {
|
|
5999
|
+
props: Record<string, any>;
|
|
6000
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
5989
6001
|
[key: string]: any;
|
|
5990
6002
|
}>[];
|
|
5991
6003
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -7293,7 +7305,9 @@ declare const VAutocomplete: {
|
|
|
7293
7305
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
7294
7306
|
[key: string]: any;
|
|
7295
7307
|
}>[];
|
|
7296
|
-
clear: (
|
|
7308
|
+
clear: (arg: DefaultInputSlot & {
|
|
7309
|
+
props: Record<string, any>;
|
|
7310
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
7297
7311
|
[key: string]: any;
|
|
7298
7312
|
}>[];
|
|
7299
7313
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -19668,7 +19682,9 @@ declare const VCombobox: {
|
|
|
19668
19682
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
19669
19683
|
[key: string]: any;
|
|
19670
19684
|
}>[];
|
|
19671
|
-
clear: (
|
|
19685
|
+
clear: (arg: DefaultInputSlot & {
|
|
19686
|
+
props: Record<string, any>;
|
|
19687
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
19672
19688
|
[key: string]: any;
|
|
19673
19689
|
}>[];
|
|
19674
19690
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -20976,7 +20992,9 @@ declare const VCombobox: {
|
|
|
20976
20992
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
20977
20993
|
[key: string]: any;
|
|
20978
20994
|
}>[];
|
|
20979
|
-
clear: (
|
|
20995
|
+
clear: (arg: DefaultInputSlot & {
|
|
20996
|
+
props: Record<string, any>;
|
|
20997
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
20980
20998
|
[key: string]: any;
|
|
20981
20999
|
}>[];
|
|
20982
21000
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -32432,7 +32450,7 @@ declare const VFileInput: {
|
|
|
32432
32450
|
errorMessages: string | readonly string[] | null;
|
|
32433
32451
|
maxErrors: string | number;
|
|
32434
32452
|
rules: readonly ValidationRule$1[];
|
|
32435
|
-
modelValue: File[];
|
|
32453
|
+
modelValue: File | File[];
|
|
32436
32454
|
tile: boolean;
|
|
32437
32455
|
density: Density;
|
|
32438
32456
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32479,7 +32497,9 @@ declare const VFileInput: {
|
|
|
32479
32497
|
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32480
32498
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32481
32499
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32482
|
-
clear?: ((
|
|
32500
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
32501
|
+
props: Record<string, any>;
|
|
32502
|
+
}) => vue.VNodeChild) | undefined;
|
|
32483
32503
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32484
32504
|
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32485
32505
|
label?: ((arg: DefaultInputSlot & {
|
|
@@ -32500,7 +32520,9 @@ declare const VFileInput: {
|
|
|
32500
32520
|
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32501
32521
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32502
32522
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32503
|
-
clear?: false | ((
|
|
32523
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
32524
|
+
props: Record<string, any>;
|
|
32525
|
+
}) => vue.VNodeChild) | undefined;
|
|
32504
32526
|
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32505
32527
|
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32506
32528
|
label?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32521,7 +32543,9 @@ declare const VFileInput: {
|
|
|
32521
32543
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32522
32544
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32523
32545
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32524
|
-
"v-slot:clear"?: false | ((
|
|
32546
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
32547
|
+
props: Record<string, any>;
|
|
32548
|
+
}) => vue.VNodeChild) | undefined;
|
|
32525
32549
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32526
32550
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32527
32551
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32791,7 +32815,7 @@ declare const VFileInput: {
|
|
|
32791
32815
|
errorMessages: string | readonly string[] | null;
|
|
32792
32816
|
maxErrors: string | number;
|
|
32793
32817
|
rules: readonly ValidationRule$1[];
|
|
32794
|
-
modelValue: File[];
|
|
32818
|
+
modelValue: File | File[];
|
|
32795
32819
|
tile: boolean;
|
|
32796
32820
|
density: Density;
|
|
32797
32821
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -32838,7 +32862,9 @@ declare const VFileInput: {
|
|
|
32838
32862
|
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32839
32863
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32840
32864
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32841
|
-
clear?: ((
|
|
32865
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
32866
|
+
props: Record<string, any>;
|
|
32867
|
+
}) => vue.VNodeChild) | undefined;
|
|
32842
32868
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32843
32869
|
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32844
32870
|
label?: ((arg: DefaultInputSlot & {
|
|
@@ -32859,7 +32885,9 @@ declare const VFileInput: {
|
|
|
32859
32885
|
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32860
32886
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32861
32887
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32862
|
-
clear?: false | ((
|
|
32888
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
32889
|
+
props: Record<string, any>;
|
|
32890
|
+
}) => vue.VNodeChild) | undefined;
|
|
32863
32891
|
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32864
32892
|
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32865
32893
|
label?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32880,7 +32908,9 @@ declare const VFileInput: {
|
|
|
32880
32908
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32881
32909
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
32882
32910
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
32883
|
-
"v-slot:clear"?: false | ((
|
|
32911
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
32912
|
+
props: Record<string, any>;
|
|
32913
|
+
}) => vue.VNodeChild) | undefined;
|
|
32884
32914
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32885
32915
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
32886
32916
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
@@ -32916,7 +32946,7 @@ declare const VFileInput: {
|
|
|
32916
32946
|
errorMessages: string | readonly string[] | null;
|
|
32917
32947
|
maxErrors: string | number;
|
|
32918
32948
|
rules: readonly ValidationRule$1[];
|
|
32919
|
-
modelValue: File[];
|
|
32949
|
+
modelValue: File | File[];
|
|
32920
32950
|
rounded: string | number | boolean;
|
|
32921
32951
|
tile: boolean;
|
|
32922
32952
|
density: Density;
|
|
@@ -32949,7 +32979,9 @@ declare const VFileInput: {
|
|
|
32949
32979
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32950
32980
|
[key: string]: any;
|
|
32951
32981
|
}>[];
|
|
32952
|
-
clear: (
|
|
32982
|
+
clear: (arg: DefaultInputSlot & {
|
|
32983
|
+
props: Record<string, any>;
|
|
32984
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
32953
32985
|
[key: string]: any;
|
|
32954
32986
|
}>[];
|
|
32955
32987
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -33001,7 +33033,7 @@ declare const VFileInput: {
|
|
|
33001
33033
|
errorMessages: string | readonly string[] | null;
|
|
33002
33034
|
maxErrors: string | number;
|
|
33003
33035
|
rules: readonly ValidationRule$1[];
|
|
33004
|
-
modelValue: File[];
|
|
33036
|
+
modelValue: File | File[];
|
|
33005
33037
|
tile: boolean;
|
|
33006
33038
|
density: Density;
|
|
33007
33039
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -33048,7 +33080,9 @@ declare const VFileInput: {
|
|
|
33048
33080
|
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33049
33081
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33050
33082
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33051
|
-
clear?: ((
|
|
33083
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
33084
|
+
props: Record<string, any>;
|
|
33085
|
+
}) => vue.VNodeChild) | undefined;
|
|
33052
33086
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33053
33087
|
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33054
33088
|
label?: ((arg: DefaultInputSlot & {
|
|
@@ -33069,7 +33103,9 @@ declare const VFileInput: {
|
|
|
33069
33103
|
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33070
33104
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33071
33105
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33072
|
-
clear?: false | ((
|
|
33106
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
33107
|
+
props: Record<string, any>;
|
|
33108
|
+
}) => vue.VNodeChild) | undefined;
|
|
33073
33109
|
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33074
33110
|
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33075
33111
|
label?: false | ((arg: DefaultInputSlot & {
|
|
@@ -33090,7 +33126,9 @@ declare const VFileInput: {
|
|
|
33090
33126
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33091
33127
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33092
33128
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33093
|
-
"v-slot:clear"?: false | ((
|
|
33129
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
33130
|
+
props: Record<string, any>;
|
|
33131
|
+
}) => vue.VNodeChild) | undefined;
|
|
33094
33132
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33095
33133
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33096
33134
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
@@ -33355,7 +33393,7 @@ declare const VFileInput: {
|
|
|
33355
33393
|
errorMessages: string | readonly string[] | null;
|
|
33356
33394
|
maxErrors: string | number;
|
|
33357
33395
|
rules: readonly ValidationRule$1[];
|
|
33358
|
-
modelValue: File[];
|
|
33396
|
+
modelValue: File | File[];
|
|
33359
33397
|
rounded: string | number | boolean;
|
|
33360
33398
|
tile: boolean;
|
|
33361
33399
|
density: Density;
|
|
@@ -33393,7 +33431,7 @@ declare const VFileInput: {
|
|
|
33393
33431
|
errorMessages: string | readonly string[] | null;
|
|
33394
33432
|
maxErrors: string | number;
|
|
33395
33433
|
rules: readonly ValidationRule$1[];
|
|
33396
|
-
modelValue: File[];
|
|
33434
|
+
modelValue: File | File[];
|
|
33397
33435
|
tile: boolean;
|
|
33398
33436
|
density: Density;
|
|
33399
33437
|
prependIcon: NonNullable<IconValue>;
|
|
@@ -33440,7 +33478,9 @@ declare const VFileInput: {
|
|
|
33440
33478
|
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33441
33479
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33442
33480
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33443
|
-
clear?: ((
|
|
33481
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
33482
|
+
props: Record<string, any>;
|
|
33483
|
+
}) => vue.VNodeChild) | undefined;
|
|
33444
33484
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33445
33485
|
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33446
33486
|
label?: ((arg: DefaultInputSlot & {
|
|
@@ -33461,7 +33501,9 @@ declare const VFileInput: {
|
|
|
33461
33501
|
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33462
33502
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33463
33503
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33464
|
-
clear?: false | ((
|
|
33504
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
33505
|
+
props: Record<string, any>;
|
|
33506
|
+
}) => vue.VNodeChild) | undefined;
|
|
33465
33507
|
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33466
33508
|
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33467
33509
|
label?: false | ((arg: DefaultInputSlot & {
|
|
@@ -33482,7 +33524,9 @@ declare const VFileInput: {
|
|
|
33482
33524
|
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33483
33525
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
33484
33526
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
33485
|
-
"v-slot:clear"?: false | ((
|
|
33527
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
33528
|
+
props: Record<string, any>;
|
|
33529
|
+
}) => vue.VNodeChild) | undefined;
|
|
33486
33530
|
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33487
33531
|
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
33488
33532
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
@@ -33752,7 +33796,7 @@ declare const VFileInput: {
|
|
|
33752
33796
|
errorMessages: string | readonly string[] | null;
|
|
33753
33797
|
maxErrors: string | number;
|
|
33754
33798
|
rules: readonly ValidationRule$1[];
|
|
33755
|
-
modelValue: File[];
|
|
33799
|
+
modelValue: File | File[];
|
|
33756
33800
|
rounded: string | number | boolean;
|
|
33757
33801
|
tile: boolean;
|
|
33758
33802
|
density: Density;
|
|
@@ -33785,7 +33829,9 @@ declare const VFileInput: {
|
|
|
33785
33829
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
33786
33830
|
[key: string]: any;
|
|
33787
33831
|
}>[];
|
|
33788
|
-
clear: (
|
|
33832
|
+
clear: (arg: DefaultInputSlot & {
|
|
33833
|
+
props: Record<string, any>;
|
|
33834
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
33789
33835
|
[key: string]: any;
|
|
33790
33836
|
}>[];
|
|
33791
33837
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -33864,7 +33910,7 @@ declare const VFileInput: {
|
|
|
33864
33910
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
33865
33911
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
33866
33912
|
modelValue: {
|
|
33867
|
-
type: PropType<File[]>;
|
|
33913
|
+
type: PropType<File | File[]>;
|
|
33868
33914
|
default: () => never[];
|
|
33869
33915
|
validator: (val: any) => boolean;
|
|
33870
33916
|
};
|
|
@@ -33982,7 +34028,7 @@ declare const VFileInput: {
|
|
|
33982
34028
|
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
33983
34029
|
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
33984
34030
|
modelValue: {
|
|
33985
|
-
type: PropType<File[]>;
|
|
34031
|
+
type: PropType<File | File[]>;
|
|
33986
34032
|
default: () => never[];
|
|
33987
34033
|
validator: (val: any) => boolean;
|
|
33988
34034
|
};
|
|
@@ -48010,7 +48056,9 @@ declare const VSelect: {
|
|
|
48010
48056
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
48011
48057
|
[key: string]: any;
|
|
48012
48058
|
}>[];
|
|
48013
|
-
clear: (
|
|
48059
|
+
clear: (arg: DefaultInputSlot & {
|
|
48060
|
+
props: Record<string, any>;
|
|
48061
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
48014
48062
|
[key: string]: any;
|
|
48015
48063
|
}>[];
|
|
48016
48064
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -49299,7 +49347,9 @@ declare const VSelect: {
|
|
|
49299
49347
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
49300
49348
|
[key: string]: any;
|
|
49301
49349
|
}>[];
|
|
49302
|
-
clear: (
|
|
49350
|
+
clear: (arg: DefaultInputSlot & {
|
|
49351
|
+
props: Record<string, any>;
|
|
49352
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
49303
49353
|
[key: string]: any;
|
|
49304
49354
|
}>[];
|
|
49305
49355
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -59161,7 +59211,9 @@ declare const VTextarea: {
|
|
|
59161
59211
|
} & {
|
|
59162
59212
|
$children?: {} | vue.VNodeChild | {
|
|
59163
59213
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59164
|
-
clear?: ((
|
|
59214
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
59215
|
+
props: Record<string, any>;
|
|
59216
|
+
}) => vue.VNodeChild) | undefined;
|
|
59165
59217
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59166
59218
|
label?: ((arg: DefaultInputSlot & {
|
|
59167
59219
|
label: string | undefined;
|
|
@@ -59176,7 +59228,9 @@ declare const VTextarea: {
|
|
|
59176
59228
|
};
|
|
59177
59229
|
'v-slots'?: {
|
|
59178
59230
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59179
|
-
clear?: false | ((
|
|
59231
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
59232
|
+
props: Record<string, any>;
|
|
59233
|
+
}) => vue.VNodeChild) | undefined;
|
|
59180
59234
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59181
59235
|
label?: false | ((arg: DefaultInputSlot & {
|
|
59182
59236
|
label: string | undefined;
|
|
@@ -59191,7 +59245,9 @@ declare const VTextarea: {
|
|
|
59191
59245
|
} | undefined;
|
|
59192
59246
|
} & {
|
|
59193
59247
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59194
|
-
"v-slot:clear"?: false | ((
|
|
59248
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
59249
|
+
props: Record<string, any>;
|
|
59250
|
+
}) => vue.VNodeChild) | undefined;
|
|
59195
59251
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59196
59252
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
59197
59253
|
label: string | undefined;
|
|
@@ -59509,7 +59565,9 @@ declare const VTextarea: {
|
|
|
59509
59565
|
} & {
|
|
59510
59566
|
$children?: {} | vue.VNodeChild | {
|
|
59511
59567
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59512
|
-
clear?: ((
|
|
59568
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
59569
|
+
props: Record<string, any>;
|
|
59570
|
+
}) => vue.VNodeChild) | undefined;
|
|
59513
59571
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59514
59572
|
label?: ((arg: DefaultInputSlot & {
|
|
59515
59573
|
label: string | undefined;
|
|
@@ -59524,7 +59582,9 @@ declare const VTextarea: {
|
|
|
59524
59582
|
};
|
|
59525
59583
|
'v-slots'?: {
|
|
59526
59584
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59527
|
-
clear?: false | ((
|
|
59585
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
59586
|
+
props: Record<string, any>;
|
|
59587
|
+
}) => vue.VNodeChild) | undefined;
|
|
59528
59588
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59529
59589
|
label?: false | ((arg: DefaultInputSlot & {
|
|
59530
59590
|
label: string | undefined;
|
|
@@ -59539,7 +59599,9 @@ declare const VTextarea: {
|
|
|
59539
59599
|
} | undefined;
|
|
59540
59600
|
} & {
|
|
59541
59601
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59542
|
-
"v-slot:clear"?: false | ((
|
|
59602
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
59603
|
+
props: Record<string, any>;
|
|
59604
|
+
}) => vue.VNodeChild) | undefined;
|
|
59543
59605
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59544
59606
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
59545
59607
|
label: string | undefined;
|
|
@@ -59592,7 +59654,9 @@ declare const VTextarea: {
|
|
|
59592
59654
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
59593
59655
|
[key: string]: any;
|
|
59594
59656
|
}>[];
|
|
59595
|
-
clear: (
|
|
59657
|
+
clear: (arg: DefaultInputSlot & {
|
|
59658
|
+
props: Record<string, any>;
|
|
59659
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
59596
59660
|
[key: string]: any;
|
|
59597
59661
|
}>[];
|
|
59598
59662
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -59696,7 +59760,9 @@ declare const VTextarea: {
|
|
|
59696
59760
|
} & {
|
|
59697
59761
|
$children?: {} | vue.VNodeChild | {
|
|
59698
59762
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59699
|
-
clear?: ((
|
|
59763
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
59764
|
+
props: Record<string, any>;
|
|
59765
|
+
}) => vue.VNodeChild) | undefined;
|
|
59700
59766
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59701
59767
|
label?: ((arg: DefaultInputSlot & {
|
|
59702
59768
|
label: string | undefined;
|
|
@@ -59711,7 +59777,9 @@ declare const VTextarea: {
|
|
|
59711
59777
|
};
|
|
59712
59778
|
'v-slots'?: {
|
|
59713
59779
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59714
|
-
clear?: false | ((
|
|
59780
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
59781
|
+
props: Record<string, any>;
|
|
59782
|
+
}) => vue.VNodeChild) | undefined;
|
|
59715
59783
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59716
59784
|
label?: false | ((arg: DefaultInputSlot & {
|
|
59717
59785
|
label: string | undefined;
|
|
@@ -59726,7 +59794,9 @@ declare const VTextarea: {
|
|
|
59726
59794
|
} | undefined;
|
|
59727
59795
|
} & {
|
|
59728
59796
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
59729
|
-
"v-slot:clear"?: false | ((
|
|
59797
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
59798
|
+
props: Record<string, any>;
|
|
59799
|
+
}) => vue.VNodeChild) | undefined;
|
|
59730
59800
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
59731
59801
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
59732
59802
|
label: string | undefined;
|
|
@@ -60075,7 +60145,9 @@ declare const VTextarea: {
|
|
|
60075
60145
|
} & {
|
|
60076
60146
|
$children?: {} | vue.VNodeChild | {
|
|
60077
60147
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60078
|
-
clear?: ((
|
|
60148
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
60149
|
+
props: Record<string, any>;
|
|
60150
|
+
}) => vue.VNodeChild) | undefined;
|
|
60079
60151
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60080
60152
|
label?: ((arg: DefaultInputSlot & {
|
|
60081
60153
|
label: string | undefined;
|
|
@@ -60090,7 +60162,9 @@ declare const VTextarea: {
|
|
|
60090
60162
|
};
|
|
60091
60163
|
'v-slots'?: {
|
|
60092
60164
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60093
|
-
clear?: false | ((
|
|
60165
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
60166
|
+
props: Record<string, any>;
|
|
60167
|
+
}) => vue.VNodeChild) | undefined;
|
|
60094
60168
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60095
60169
|
label?: false | ((arg: DefaultInputSlot & {
|
|
60096
60170
|
label: string | undefined;
|
|
@@ -60105,7 +60179,9 @@ declare const VTextarea: {
|
|
|
60105
60179
|
} | undefined;
|
|
60106
60180
|
} & {
|
|
60107
60181
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60108
|
-
"v-slot:clear"?: false | ((
|
|
60182
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
60183
|
+
props: Record<string, any>;
|
|
60184
|
+
}) => vue.VNodeChild) | undefined;
|
|
60109
60185
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60110
60186
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
60111
60187
|
label: string | undefined;
|
|
@@ -60392,7 +60468,9 @@ declare const VTextarea: {
|
|
|
60392
60468
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
60393
60469
|
[key: string]: any;
|
|
60394
60470
|
}>[];
|
|
60395
|
-
clear: (
|
|
60471
|
+
clear: (arg: DefaultInputSlot & {
|
|
60472
|
+
props: Record<string, any>;
|
|
60473
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
60396
60474
|
[key: string]: any;
|
|
60397
60475
|
}>[];
|
|
60398
60476
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -60715,7 +60793,9 @@ declare const VTextField: {
|
|
|
60715
60793
|
} & {
|
|
60716
60794
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
60717
60795
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60718
|
-
clear?: ((
|
|
60796
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
60797
|
+
props: Record<string, any>;
|
|
60798
|
+
}) => vue.VNodeChild) | undefined;
|
|
60719
60799
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60720
60800
|
label?: ((arg: DefaultInputSlot & {
|
|
60721
60801
|
label: string | undefined;
|
|
@@ -60731,7 +60811,9 @@ declare const VTextField: {
|
|
|
60731
60811
|
};
|
|
60732
60812
|
'v-slots'?: {
|
|
60733
60813
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60734
|
-
clear?: false | ((
|
|
60814
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
60815
|
+
props: Record<string, any>;
|
|
60816
|
+
}) => vue.VNodeChild) | undefined;
|
|
60735
60817
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60736
60818
|
label?: false | ((arg: DefaultInputSlot & {
|
|
60737
60819
|
label: string | undefined;
|
|
@@ -60747,7 +60829,9 @@ declare const VTextField: {
|
|
|
60747
60829
|
} | undefined;
|
|
60748
60830
|
} & {
|
|
60749
60831
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
60750
|
-
"v-slot:clear"?: false | ((
|
|
60832
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
60833
|
+
props: Record<string, any>;
|
|
60834
|
+
}) => vue.VNodeChild) | undefined;
|
|
60751
60835
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
60752
60836
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
60753
60837
|
label: string | undefined;
|
|
@@ -61087,7 +61171,9 @@ declare const VTextField: {
|
|
|
61087
61171
|
[x: string]: unknown;
|
|
61088
61172
|
};
|
|
61089
61173
|
$slots: Readonly<{
|
|
61090
|
-
clear?: ((
|
|
61174
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61175
|
+
props: Record<string, any>;
|
|
61176
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61091
61177
|
[key: string]: any;
|
|
61092
61178
|
}>[]) | undefined;
|
|
61093
61179
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -61170,7 +61256,9 @@ declare const VTextField: {
|
|
|
61170
61256
|
persistentClear: boolean;
|
|
61171
61257
|
singleLine: boolean;
|
|
61172
61258
|
}, {}, string, vue.SlotsType<Partial<{
|
|
61173
|
-
clear: (
|
|
61259
|
+
clear: (arg: DefaultInputSlot & {
|
|
61260
|
+
props: Record<string, any>;
|
|
61261
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61174
61262
|
[key: string]: any;
|
|
61175
61263
|
}>[];
|
|
61176
61264
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -61320,196 +61408,206 @@ declare const VTextField: {
|
|
|
61320
61408
|
} & {
|
|
61321
61409
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61322
61410
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61323
|
-
clear?: ((
|
|
61324
|
-
|
|
61325
|
-
|
|
61326
|
-
|
|
61327
|
-
|
|
61328
|
-
|
|
61329
|
-
|
|
61330
|
-
|
|
61331
|
-
|
|
61332
|
-
|
|
61333
|
-
|
|
61334
|
-
|
|
61335
|
-
|
|
61336
|
-
|
|
61337
|
-
|
|
61338
|
-
|
|
61339
|
-
|
|
61340
|
-
|
|
61341
|
-
|
|
61342
|
-
|
|
61411
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61412
|
+
props: Record<string, any>;
|
|
61413
|
+
}) => vue.VNodeChild) | undefined;
|
|
61414
|
+
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61415
|
+
label?: ((arg: DefaultInputSlot & {
|
|
61416
|
+
label: string | undefined;
|
|
61417
|
+
props: Record<string, any>;
|
|
61418
|
+
}) => vue.VNodeChild) | undefined;
|
|
61419
|
+
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61420
|
+
prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61421
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
61422
|
+
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61423
|
+
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61424
|
+
default?: (() => vue.VNodeChild) | undefined;
|
|
61425
|
+
counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
61426
|
+
};
|
|
61427
|
+
'v-slots'?: {
|
|
61428
|
+
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61429
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
61430
|
+
props: Record<string, any>;
|
|
61431
|
+
}) => vue.VNodeChild) | undefined;
|
|
61432
|
+
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61433
|
+
label?: false | ((arg: DefaultInputSlot & {
|
|
61434
|
+
label: string | undefined;
|
|
61435
|
+
props: Record<string, any>;
|
|
61436
|
+
}) => vue.VNodeChild) | undefined;
|
|
61437
|
+
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61438
|
+
prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61439
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
61440
|
+
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61441
|
+
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61442
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
|
61443
|
+
counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
61444
|
+
} | undefined;
|
|
61445
|
+
} & {
|
|
61446
|
+
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61447
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
61448
|
+
props: Record<string, any>;
|
|
61449
|
+
}) => vue.VNodeChild) | undefined;
|
|
61450
|
+
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61451
|
+
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
61452
|
+
label: string | undefined;
|
|
61453
|
+
props: Record<string, any>;
|
|
61454
|
+
}) => vue.VNodeChild) | undefined;
|
|
61455
|
+
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61456
|
+
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61457
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
61458
|
+
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61459
|
+
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61460
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
61461
|
+
"v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
61462
|
+
} & {
|
|
61463
|
+
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
61464
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
61465
|
+
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
61466
|
+
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
61467
|
+
}, {
|
|
61468
|
+
flat: boolean;
|
|
61469
|
+
reverse: boolean;
|
|
61470
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
61471
|
+
type: string;
|
|
61472
|
+
error: boolean;
|
|
61473
|
+
active: boolean;
|
|
61474
|
+
direction: "horizontal" | "vertical";
|
|
61475
|
+
style: vue.StyleValue;
|
|
61476
|
+
autofocus: boolean;
|
|
61477
|
+
disabled: boolean;
|
|
61478
|
+
readonly: boolean | null;
|
|
61479
|
+
messages: string | readonly string[];
|
|
61480
|
+
focused: boolean;
|
|
61481
|
+
errorMessages: string | readonly string[] | null;
|
|
61482
|
+
maxErrors: string | number;
|
|
61483
|
+
rules: readonly ValidationRule$1[];
|
|
61484
|
+
rounded: string | number | boolean;
|
|
61485
|
+
tile: boolean;
|
|
61486
|
+
density: Density;
|
|
61487
|
+
clearIcon: IconValue;
|
|
61488
|
+
centerAffix: boolean;
|
|
61489
|
+
hideSpinButtons: boolean;
|
|
61490
|
+
persistentHint: boolean;
|
|
61491
|
+
clearable: boolean;
|
|
61492
|
+
dirty: boolean;
|
|
61493
|
+
persistentClear: boolean;
|
|
61494
|
+
singleLine: boolean;
|
|
61495
|
+
persistentPlaceholder: boolean;
|
|
61496
|
+
persistentCounter: boolean;
|
|
61497
|
+
}, true, {}, vue.SlotsType<Partial<{
|
|
61498
|
+
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61499
|
+
[key: string]: any;
|
|
61500
|
+
}>[];
|
|
61501
|
+
clear: (arg: DefaultInputSlot & {
|
|
61502
|
+
props: Record<string, any>;
|
|
61503
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61504
|
+
[key: string]: any;
|
|
61505
|
+
}>[];
|
|
61506
|
+
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61507
|
+
[key: string]: any;
|
|
61508
|
+
}>[];
|
|
61509
|
+
label: (arg: DefaultInputSlot & {
|
|
61510
|
+
label: string | undefined;
|
|
61511
|
+
props: Record<string, any>;
|
|
61512
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61513
|
+
[key: string]: any;
|
|
61514
|
+
}>[];
|
|
61515
|
+
append: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61516
|
+
[key: string]: any;
|
|
61517
|
+
}>[];
|
|
61518
|
+
prepend: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61519
|
+
[key: string]: any;
|
|
61520
|
+
}>[];
|
|
61521
|
+
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61522
|
+
[key: string]: any;
|
|
61523
|
+
}>[];
|
|
61524
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61525
|
+
[key: string]: any;
|
|
61526
|
+
}>[];
|
|
61527
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61528
|
+
[key: string]: any;
|
|
61529
|
+
}>[];
|
|
61530
|
+
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61531
|
+
[key: string]: any;
|
|
61532
|
+
}>[];
|
|
61533
|
+
counter: (arg: VCounterSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61534
|
+
[key: string]: any;
|
|
61535
|
+
}>[];
|
|
61536
|
+
}>>, {
|
|
61537
|
+
P: {};
|
|
61538
|
+
B: {};
|
|
61539
|
+
D: {};
|
|
61540
|
+
C: {};
|
|
61541
|
+
M: {};
|
|
61542
|
+
Defaults: {};
|
|
61543
|
+
}, {
|
|
61544
|
+
flat: boolean;
|
|
61545
|
+
reverse: boolean;
|
|
61546
|
+
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
61547
|
+
type: string;
|
|
61548
|
+
error: boolean;
|
|
61549
|
+
active: boolean;
|
|
61550
|
+
direction: "horizontal" | "vertical";
|
|
61551
|
+
style: vue.StyleValue;
|
|
61552
|
+
autofocus: boolean;
|
|
61553
|
+
disabled: boolean;
|
|
61554
|
+
readonly: boolean | null;
|
|
61555
|
+
messages: string | readonly string[];
|
|
61556
|
+
focused: boolean;
|
|
61557
|
+
errorMessages: string | readonly string[] | null;
|
|
61558
|
+
maxErrors: string | number;
|
|
61559
|
+
rules: readonly ValidationRule$1[];
|
|
61560
|
+
tile: boolean;
|
|
61561
|
+
density: Density;
|
|
61562
|
+
clearIcon: IconValue;
|
|
61563
|
+
hideSpinButtons: boolean;
|
|
61564
|
+
persistentHint: boolean;
|
|
61565
|
+
clearable: boolean;
|
|
61566
|
+
dirty: boolean;
|
|
61567
|
+
persistentClear: boolean;
|
|
61568
|
+
singleLine: boolean;
|
|
61569
|
+
persistentPlaceholder: boolean;
|
|
61570
|
+
persistentCounter: boolean;
|
|
61571
|
+
} & {
|
|
61572
|
+
id?: string | undefined;
|
|
61573
|
+
name?: string | undefined;
|
|
61574
|
+
color?: string | undefined;
|
|
61575
|
+
loading?: string | boolean | undefined;
|
|
61576
|
+
label?: string | undefined;
|
|
61577
|
+
prefix?: string | undefined;
|
|
61578
|
+
role?: string | undefined;
|
|
61579
|
+
class?: any;
|
|
61580
|
+
placeholder?: string | undefined;
|
|
61581
|
+
theme?: string | undefined;
|
|
61582
|
+
counter?: string | number | boolean | undefined;
|
|
61583
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61584
|
+
modelValue?: any;
|
|
61585
|
+
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
61586
|
+
validationValue?: any;
|
|
61587
|
+
rounded?: string | number | boolean | undefined;
|
|
61588
|
+
bgColor?: string | undefined;
|
|
61589
|
+
prependIcon?: IconValue | undefined;
|
|
61590
|
+
appendIcon?: IconValue | undefined;
|
|
61591
|
+
baseColor?: string | undefined;
|
|
61592
|
+
appendInnerIcon?: IconValue | undefined;
|
|
61593
|
+
prependInnerIcon?: IconValue | undefined;
|
|
61594
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61595
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61596
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61597
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61598
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61599
|
+
centerAffix?: boolean | undefined;
|
|
61600
|
+
hint?: string | undefined;
|
|
61601
|
+
hideDetails?: boolean | "auto" | undefined;
|
|
61602
|
+
suffix?: string | undefined;
|
|
61603
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
|
61604
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
|
61605
|
+
} & {
|
|
61606
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61607
|
+
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61608
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61343
61609
|
props: Record<string, any>;
|
|
61344
61610
|
}) => vue.VNodeChild) | undefined;
|
|
61345
|
-
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61346
|
-
prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61347
|
-
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
61348
|
-
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61349
|
-
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61350
|
-
default?: false | (() => vue.VNodeChild) | undefined;
|
|
61351
|
-
counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
61352
|
-
} | undefined;
|
|
61353
|
-
} & {
|
|
61354
|
-
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61355
|
-
"v-slot:clear"?: false | (() => vue.VNodeChild) | undefined;
|
|
61356
|
-
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61357
|
-
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
61358
|
-
label: string | undefined;
|
|
61359
|
-
props: Record<string, any>;
|
|
61360
|
-
}) => vue.VNodeChild) | undefined;
|
|
61361
|
-
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61362
|
-
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61363
|
-
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
|
61364
|
-
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61365
|
-
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
|
61366
|
-
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
|
61367
|
-
"v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
|
61368
|
-
} & {
|
|
61369
|
-
"onUpdate:focused"?: ((focused: boolean) => any) | undefined;
|
|
61370
|
-
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
61371
|
-
"onClick:control"?: ((e: MouseEvent) => any) | undefined;
|
|
61372
|
-
"onMousedown:control"?: ((e: MouseEvent) => any) | undefined;
|
|
61373
|
-
}, {
|
|
61374
|
-
flat: boolean;
|
|
61375
|
-
reverse: boolean;
|
|
61376
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
61377
|
-
type: string;
|
|
61378
|
-
error: boolean;
|
|
61379
|
-
active: boolean;
|
|
61380
|
-
direction: "horizontal" | "vertical";
|
|
61381
|
-
style: vue.StyleValue;
|
|
61382
|
-
autofocus: boolean;
|
|
61383
|
-
disabled: boolean;
|
|
61384
|
-
readonly: boolean | null;
|
|
61385
|
-
messages: string | readonly string[];
|
|
61386
|
-
focused: boolean;
|
|
61387
|
-
errorMessages: string | readonly string[] | null;
|
|
61388
|
-
maxErrors: string | number;
|
|
61389
|
-
rules: readonly ValidationRule$1[];
|
|
61390
|
-
rounded: string | number | boolean;
|
|
61391
|
-
tile: boolean;
|
|
61392
|
-
density: Density;
|
|
61393
|
-
clearIcon: IconValue;
|
|
61394
|
-
centerAffix: boolean;
|
|
61395
|
-
hideSpinButtons: boolean;
|
|
61396
|
-
persistentHint: boolean;
|
|
61397
|
-
clearable: boolean;
|
|
61398
|
-
dirty: boolean;
|
|
61399
|
-
persistentClear: boolean;
|
|
61400
|
-
singleLine: boolean;
|
|
61401
|
-
persistentPlaceholder: boolean;
|
|
61402
|
-
persistentCounter: boolean;
|
|
61403
|
-
}, true, {}, vue.SlotsType<Partial<{
|
|
61404
|
-
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61405
|
-
[key: string]: any;
|
|
61406
|
-
}>[];
|
|
61407
|
-
clear: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61408
|
-
[key: string]: any;
|
|
61409
|
-
}>[];
|
|
61410
|
-
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61411
|
-
[key: string]: any;
|
|
61412
|
-
}>[];
|
|
61413
|
-
label: (arg: DefaultInputSlot & {
|
|
61414
|
-
label: string | undefined;
|
|
61415
|
-
props: Record<string, any>;
|
|
61416
|
-
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61417
|
-
[key: string]: any;
|
|
61418
|
-
}>[];
|
|
61419
|
-
append: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61420
|
-
[key: string]: any;
|
|
61421
|
-
}>[];
|
|
61422
|
-
prepend: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61423
|
-
[key: string]: any;
|
|
61424
|
-
}>[];
|
|
61425
|
-
loader: (arg: LoaderSlotProps) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61426
|
-
[key: string]: any;
|
|
61427
|
-
}>[];
|
|
61428
|
-
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61429
|
-
[key: string]: any;
|
|
61430
|
-
}>[];
|
|
61431
|
-
'append-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61432
|
-
[key: string]: any;
|
|
61433
|
-
}>[];
|
|
61434
|
-
default: () => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61435
|
-
[key: string]: any;
|
|
61436
|
-
}>[];
|
|
61437
|
-
counter: (arg: VCounterSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61438
|
-
[key: string]: any;
|
|
61439
|
-
}>[];
|
|
61440
|
-
}>>, {
|
|
61441
|
-
P: {};
|
|
61442
|
-
B: {};
|
|
61443
|
-
D: {};
|
|
61444
|
-
C: {};
|
|
61445
|
-
M: {};
|
|
61446
|
-
Defaults: {};
|
|
61447
|
-
}, {
|
|
61448
|
-
flat: boolean;
|
|
61449
|
-
reverse: boolean;
|
|
61450
|
-
variant: "filled" | "underlined" | "outlined" | "plain" | "solo" | "solo-inverted" | "solo-filled";
|
|
61451
|
-
type: string;
|
|
61452
|
-
error: boolean;
|
|
61453
|
-
active: boolean;
|
|
61454
|
-
direction: "horizontal" | "vertical";
|
|
61455
|
-
style: vue.StyleValue;
|
|
61456
|
-
autofocus: boolean;
|
|
61457
|
-
disabled: boolean;
|
|
61458
|
-
readonly: boolean | null;
|
|
61459
|
-
messages: string | readonly string[];
|
|
61460
|
-
focused: boolean;
|
|
61461
|
-
errorMessages: string | readonly string[] | null;
|
|
61462
|
-
maxErrors: string | number;
|
|
61463
|
-
rules: readonly ValidationRule$1[];
|
|
61464
|
-
tile: boolean;
|
|
61465
|
-
density: Density;
|
|
61466
|
-
clearIcon: IconValue;
|
|
61467
|
-
hideSpinButtons: boolean;
|
|
61468
|
-
persistentHint: boolean;
|
|
61469
|
-
clearable: boolean;
|
|
61470
|
-
dirty: boolean;
|
|
61471
|
-
persistentClear: boolean;
|
|
61472
|
-
singleLine: boolean;
|
|
61473
|
-
persistentPlaceholder: boolean;
|
|
61474
|
-
persistentCounter: boolean;
|
|
61475
|
-
} & {
|
|
61476
|
-
id?: string | undefined;
|
|
61477
|
-
name?: string | undefined;
|
|
61478
|
-
color?: string | undefined;
|
|
61479
|
-
loading?: string | boolean | undefined;
|
|
61480
|
-
label?: string | undefined;
|
|
61481
|
-
prefix?: string | undefined;
|
|
61482
|
-
role?: string | undefined;
|
|
61483
|
-
class?: any;
|
|
61484
|
-
placeholder?: string | undefined;
|
|
61485
|
-
theme?: string | undefined;
|
|
61486
|
-
counter?: string | number | boolean | undefined;
|
|
61487
|
-
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
|
61488
|
-
modelValue?: any;
|
|
61489
|
-
validateOn?: "lazy" | ("input" | "blur" | "submit") | "input lazy" | "blur lazy" | "submit lazy" | "lazy input" | "lazy blur" | "lazy submit" | undefined;
|
|
61490
|
-
validationValue?: any;
|
|
61491
|
-
rounded?: string | number | boolean | undefined;
|
|
61492
|
-
bgColor?: string | undefined;
|
|
61493
|
-
prependIcon?: IconValue | undefined;
|
|
61494
|
-
appendIcon?: IconValue | undefined;
|
|
61495
|
-
baseColor?: string | undefined;
|
|
61496
|
-
appendInnerIcon?: IconValue | undefined;
|
|
61497
|
-
prependInnerIcon?: IconValue | undefined;
|
|
61498
|
-
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61499
|
-
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61500
|
-
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61501
|
-
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61502
|
-
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
|
61503
|
-
centerAffix?: boolean | undefined;
|
|
61504
|
-
hint?: string | undefined;
|
|
61505
|
-
hideDetails?: boolean | "auto" | undefined;
|
|
61506
|
-
suffix?: string | undefined;
|
|
61507
|
-
counterValue?: number | ((value: any) => number) | undefined;
|
|
61508
|
-
modelModifiers?: Record<string, boolean> | undefined;
|
|
61509
|
-
} & {
|
|
61510
|
-
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
61511
|
-
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61512
|
-
clear?: (() => vue.VNodeChild) | undefined;
|
|
61513
61611
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61514
61612
|
label?: ((arg: DefaultInputSlot & {
|
|
61515
61613
|
label: string | undefined;
|
|
@@ -61525,7 +61623,9 @@ declare const VTextField: {
|
|
|
61525
61623
|
};
|
|
61526
61624
|
'v-slots'?: {
|
|
61527
61625
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61528
|
-
clear?: false | ((
|
|
61626
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
61627
|
+
props: Record<string, any>;
|
|
61628
|
+
}) => vue.VNodeChild) | undefined;
|
|
61529
61629
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61530
61630
|
label?: false | ((arg: DefaultInputSlot & {
|
|
61531
61631
|
label: string | undefined;
|
|
@@ -61541,7 +61641,9 @@ declare const VTextField: {
|
|
|
61541
61641
|
} | undefined;
|
|
61542
61642
|
} & {
|
|
61543
61643
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
61544
|
-
"v-slot:clear"?: false | ((
|
|
61644
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
61645
|
+
props: Record<string, any>;
|
|
61646
|
+
}) => vue.VNodeChild) | undefined;
|
|
61545
61647
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
61546
61648
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
61547
61649
|
label: string | undefined;
|
|
@@ -61881,7 +61983,9 @@ declare const VTextField: {
|
|
|
61881
61983
|
[x: string]: unknown;
|
|
61882
61984
|
};
|
|
61883
61985
|
$slots: Readonly<{
|
|
61884
|
-
clear?: ((
|
|
61986
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
61987
|
+
props: Record<string, any>;
|
|
61988
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61885
61989
|
[key: string]: any;
|
|
61886
61990
|
}>[]) | undefined;
|
|
61887
61991
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -61964,7 +62068,9 @@ declare const VTextField: {
|
|
|
61964
62068
|
persistentClear: boolean;
|
|
61965
62069
|
singleLine: boolean;
|
|
61966
62070
|
}, {}, string, vue.SlotsType<Partial<{
|
|
61967
|
-
clear: (
|
|
62071
|
+
clear: (arg: DefaultInputSlot & {
|
|
62072
|
+
props: Record<string, any>;
|
|
62073
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
61968
62074
|
[key: string]: any;
|
|
61969
62075
|
}>[];
|
|
61970
62076
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -62143,7 +62249,9 @@ declare const VTextField: {
|
|
|
62143
62249
|
} & {
|
|
62144
62250
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
62145
62251
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
62146
|
-
clear?: ((
|
|
62252
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
62253
|
+
props: Record<string, any>;
|
|
62254
|
+
}) => vue.VNodeChild) | undefined;
|
|
62147
62255
|
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
62148
62256
|
label?: ((arg: DefaultInputSlot & {
|
|
62149
62257
|
label: string | undefined;
|
|
@@ -62159,7 +62267,9 @@ declare const VTextField: {
|
|
|
62159
62267
|
};
|
|
62160
62268
|
'v-slots'?: {
|
|
62161
62269
|
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
62162
|
-
clear?: false | ((
|
|
62270
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
|
62271
|
+
props: Record<string, any>;
|
|
62272
|
+
}) => vue.VNodeChild) | undefined;
|
|
62163
62273
|
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
62164
62274
|
label?: false | ((arg: DefaultInputSlot & {
|
|
62165
62275
|
label: string | undefined;
|
|
@@ -62175,7 +62285,9 @@ declare const VTextField: {
|
|
|
62175
62285
|
} | undefined;
|
|
62176
62286
|
} & {
|
|
62177
62287
|
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
|
62178
|
-
"v-slot:clear"?: false | ((
|
|
62288
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
|
62289
|
+
props: Record<string, any>;
|
|
62290
|
+
}) => vue.VNodeChild) | undefined;
|
|
62179
62291
|
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
|
62180
62292
|
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
|
62181
62293
|
label: string | undefined;
|
|
@@ -62515,7 +62627,9 @@ declare const VTextField: {
|
|
|
62515
62627
|
[x: string]: unknown;
|
|
62516
62628
|
};
|
|
62517
62629
|
$slots: Readonly<{
|
|
62518
|
-
clear?: ((
|
|
62630
|
+
clear?: ((arg: DefaultInputSlot & {
|
|
62631
|
+
props: Record<string, any>;
|
|
62632
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62519
62633
|
[key: string]: any;
|
|
62520
62634
|
}>[]) | undefined;
|
|
62521
62635
|
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -62598,7 +62712,9 @@ declare const VTextField: {
|
|
|
62598
62712
|
persistentClear: boolean;
|
|
62599
62713
|
singleLine: boolean;
|
|
62600
62714
|
}, {}, string, vue.SlotsType<Partial<{
|
|
62601
|
-
clear: (
|
|
62715
|
+
clear: (arg: DefaultInputSlot & {
|
|
62716
|
+
props: Record<string, any>;
|
|
62717
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62602
62718
|
[key: string]: any;
|
|
62603
62719
|
}>[];
|
|
62604
62720
|
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -62717,7 +62833,9 @@ declare const VTextField: {
|
|
|
62717
62833
|
message: (arg: VMessageSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62718
62834
|
[key: string]: any;
|
|
62719
62835
|
}>[];
|
|
62720
|
-
clear: (
|
|
62836
|
+
clear: (arg: DefaultInputSlot & {
|
|
62837
|
+
props: Record<string, any>;
|
|
62838
|
+
}) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
62721
62839
|
[key: string]: any;
|
|
62722
62840
|
}>[];
|
|
62723
62841
|
details: (arg: VInputSlot) => vue.VNode<vue.RendererNode, vue.RendererElement, {
|
|
@@ -68806,6 +68924,8 @@ declare const createVuetify: {
|
|
|
68806
68924
|
getWeekdays: () => string[];
|
|
68807
68925
|
getMonth: (date: unknown) => number;
|
|
68808
68926
|
setMonth: (date: unknown, month: number) => unknown;
|
|
68927
|
+
getDate: (date: unknown) => number;
|
|
68928
|
+
setDate: (date: unknown, day: number) => unknown;
|
|
68809
68929
|
getNextMonth: (date: unknown) => unknown;
|
|
68810
68930
|
getHours: (date: unknown) => number;
|
|
68811
68931
|
setHours: (date: unknown, hours: number) => unknown;
|
|
@@ -68867,47 +68987,40 @@ declare module '@vue/runtime-core' {
|
|
|
68867
68987
|
}
|
|
68868
68988
|
|
|
68869
68989
|
export interface GlobalComponents {
|
|
68870
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
68871
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68872
68990
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
68873
68991
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
68874
68992
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
68875
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68876
68993
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
68877
68994
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
68878
68995
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
68879
|
-
|
|
68880
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
68881
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68996
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
68882
68997
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
68883
68998
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
68884
68999
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
69000
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
69001
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
69002
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
68885
69003
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
69004
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
68886
69005
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
69006
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
69007
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
68887
69008
|
VCard: typeof import('vuetify/components')['VCard']
|
|
68888
69009
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
68889
69010
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
68890
69011
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
68891
69012
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
68892
69013
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
68893
|
-
|
|
69014
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68894
69015
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
68895
69016
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
68896
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
68897
69017
|
VChip: typeof import('vuetify/components')['VChip']
|
|
68898
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
68899
69018
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
68900
69019
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
68901
69020
|
VCode: typeof import('vuetify/components')['VCode']
|
|
68902
69021
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
68903
69022
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
68904
69023
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
68905
|
-
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
68906
|
-
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
68907
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
68908
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
68909
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
68910
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68911
69024
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
68912
69025
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
68913
69026
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
|
@@ -68916,28 +69029,34 @@ declare module '@vue/runtime-core' {
|
|
|
68916
69029
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
68917
69030
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
68918
69031
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
68919
|
-
|
|
69032
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
69033
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
69034
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
69035
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
69036
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
69037
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
68920
69038
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
69039
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
69040
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68921
69041
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
68922
69042
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
68923
69043
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
68924
69044
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
69045
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68925
69046
|
VField: typeof import('vuetify/components')['VField']
|
|
68926
69047
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
68927
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
68928
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
68929
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68930
69048
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
68931
69049
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
68932
69050
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
68933
69051
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
68934
69052
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
69053
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
69054
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
68935
69055
|
VInput: typeof import('vuetify/components')['VInput']
|
|
68936
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
68937
69056
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
68938
69057
|
VItem: typeof import('vuetify/components')['VItem']
|
|
69058
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
68939
69059
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
68940
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
68941
69060
|
VList: typeof import('vuetify/components')['VList']
|
|
68942
69061
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
68943
69062
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -68950,42 +69069,42 @@ declare module '@vue/runtime-core' {
|
|
|
68950
69069
|
VMain: typeof import('vuetify/components')['VMain']
|
|
68951
69070
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
68952
69071
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
68953
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
68954
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
|
68955
69072
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
69073
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
69074
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
68956
69075
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
69076
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
|
68957
69077
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
68958
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
68959
69078
|
VRating: typeof import('vuetify/components')['VRating']
|
|
68960
69079
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
68961
69080
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
68962
69081
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
68963
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
68964
69082
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
68965
69083
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
68966
|
-
|
|
68967
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69084
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
68968
69085
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
68969
69086
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
69087
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
69088
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
69089
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
68970
69090
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
68971
69091
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
68972
69092
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
68973
69093
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
68974
69094
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
68975
69095
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
69096
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
69097
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
69098
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
68976
69099
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
68977
69100
|
VTab: typeof import('vuetify/components')['VTab']
|
|
68978
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
68979
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
|
68980
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
68981
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
68982
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
68983
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
68984
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
68985
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
68986
69101
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
68987
69102
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
68988
69103
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
69104
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
|
69105
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
69106
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
69107
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
68989
69108
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
68990
69109
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
68991
69110
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
@@ -69024,23 +69143,24 @@ declare module '@vue/runtime-core' {
|
|
|
69024
69143
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
69025
69144
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
69026
69145
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
69146
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
69027
69147
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
69028
69148
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
69029
69149
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
69030
69150
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
69031
69151
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
69032
69152
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
69033
|
-
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69034
69153
|
VEmptyState: typeof import('vuetify/labs/components')['VEmptyState']
|
|
69154
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
|
69035
69155
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
69036
69156
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
69037
|
-
|
|
69157
|
+
VFab: typeof import('vuetify/labs/components')['VFab']
|
|
69038
69158
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
|
69039
69159
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
|
69040
69160
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
|
69041
69161
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
69042
|
-
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69043
69162
|
VSpeedDial: typeof import('vuetify/labs/components')['VSpeedDial']
|
|
69163
|
+
VSparkline: typeof import('vuetify/labs/components')['VSparkline']
|
|
69044
69164
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
|
69045
69165
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
|
69046
69166
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|