@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-master.2025-05-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/CHANGELOG.md +3 -27
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3177 -2841
- package/dist/json/importMap-labs.json +36 -32
- package/dist/json/importMap.json +180 -180
- package/dist/json/tags.json +89 -0
- package/dist/json/web-types.json +6734 -5547
- package/dist/vuetify-labs.cjs +272 -82
- package/dist/vuetify-labs.css +5164 -5136
- package/dist/vuetify-labs.d.ts +1371 -309
- package/dist/vuetify-labs.esm.js +272 -82
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +272 -82
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +5 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3047 -3022
- package/dist/vuetify.d.ts +70 -67
- package/dist/vuetify.esm.js +5 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +70 -67
- package/lib/framework.js +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +28 -31
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -2801,7 +2801,9 @@ type VSnackbarQueueSlots<T extends string | SnackbarMessage> = {
|
|
2801
2801
|
};
|
2802
2802
|
};
|
2803
2803
|
};
|
2804
|
-
type SnackbarMessage = string | Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps
|
2804
|
+
type SnackbarMessage = string | (Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | 'style' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps> & {
|
2805
|
+
style?: any;
|
2806
|
+
});
|
2805
2807
|
declare const VSnackbarQueue: {
|
2806
2808
|
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
2807
2809
|
variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
|
@@ -88169,6 +88171,1067 @@ declare const VCalendarMonthDay: {
|
|
88169
88171
|
}>>;
|
88170
88172
|
type VCalendarMonthDay = InstanceType<typeof VCalendarMonthDay>;
|
88171
88173
|
|
88174
|
+
type VColorInputActionsSlot = {
|
88175
|
+
save: () => void;
|
88176
|
+
cancel: () => void;
|
88177
|
+
isPristine: boolean;
|
88178
|
+
};
|
88179
|
+
declare const VColorInput: {
|
88180
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
88181
|
+
flat: boolean;
|
88182
|
+
reverse: boolean;
|
88183
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
88184
|
+
type: string;
|
88185
|
+
error: boolean;
|
88186
|
+
active: boolean;
|
88187
|
+
direction: "horizontal" | "vertical";
|
88188
|
+
style: vue.StyleValue;
|
88189
|
+
autofocus: boolean;
|
88190
|
+
disabled: boolean;
|
88191
|
+
readonly: boolean | null;
|
88192
|
+
tag: string | JSXComponent;
|
88193
|
+
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
88194
|
+
landscape: boolean;
|
88195
|
+
messages: string | readonly string[];
|
88196
|
+
rules: readonly ValidationRule$1[];
|
88197
|
+
focused: boolean;
|
88198
|
+
errorMessages: string | readonly string[] | null;
|
88199
|
+
maxErrors: string | number;
|
88200
|
+
density: Density;
|
88201
|
+
tile: boolean;
|
88202
|
+
divided: boolean;
|
88203
|
+
clearIcon: IconValue;
|
88204
|
+
glow: boolean;
|
88205
|
+
hideSpinButtons: boolean;
|
88206
|
+
persistentHint: boolean;
|
88207
|
+
clearable: boolean;
|
88208
|
+
dirty: boolean;
|
88209
|
+
persistentClear: boolean;
|
88210
|
+
singleLine: boolean;
|
88211
|
+
persistentPlaceholder: boolean;
|
88212
|
+
persistentCounter: boolean;
|
88213
|
+
dotSize: string | number;
|
88214
|
+
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
88215
|
+
hideHeader: boolean;
|
88216
|
+
canvasHeight: string | number;
|
88217
|
+
hideCanvas: boolean;
|
88218
|
+
hideSliders: boolean;
|
88219
|
+
hideInputs: boolean;
|
88220
|
+
showSwatches: boolean;
|
88221
|
+
swatchesMaxHeight: string | number;
|
88222
|
+
cancelText: string;
|
88223
|
+
okText: string;
|
88224
|
+
hideActions: boolean;
|
88225
|
+
pip: boolean;
|
88226
|
+
pipIcon: string;
|
88227
|
+
} & {
|
88228
|
+
name?: string | undefined;
|
88229
|
+
location?: Anchor | null | undefined;
|
88230
|
+
id?: string | undefined;
|
88231
|
+
height?: string | number | undefined;
|
88232
|
+
width?: string | number | undefined;
|
88233
|
+
border?: string | number | boolean | undefined;
|
88234
|
+
color?: string | undefined;
|
88235
|
+
maxHeight?: string | number | undefined;
|
88236
|
+
maxWidth?: string | number | undefined;
|
88237
|
+
minHeight?: string | number | undefined;
|
88238
|
+
minWidth?: string | number | undefined;
|
88239
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
88240
|
+
loading?: string | boolean | undefined;
|
88241
|
+
label?: string | undefined;
|
88242
|
+
title?: string | undefined;
|
88243
|
+
prefix?: string | undefined;
|
88244
|
+
role?: string | undefined;
|
88245
|
+
class?: any;
|
88246
|
+
theme?: string | undefined;
|
88247
|
+
placeholder?: string | undefined;
|
88248
|
+
elevation?: string | number | undefined;
|
88249
|
+
counter?: string | number | boolean | undefined;
|
88250
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
88251
|
+
modelValue?: string | Record<string, unknown> | null | undefined;
|
88252
|
+
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
88253
|
+
validationValue?: any;
|
88254
|
+
rounded?: string | number | boolean | undefined;
|
88255
|
+
baseColor?: string | undefined;
|
88256
|
+
bgColor?: string | undefined;
|
88257
|
+
prependIcon?: IconValue | undefined;
|
88258
|
+
appendIcon?: IconValue | undefined;
|
88259
|
+
appendInnerIcon?: IconValue | undefined;
|
88260
|
+
prependInnerIcon?: IconValue | undefined;
|
88261
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
88262
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
88263
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
88264
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
88265
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
88266
|
+
centerAffix?: boolean | undefined;
|
88267
|
+
iconColor?: string | boolean | undefined;
|
88268
|
+
hint?: string | undefined;
|
88269
|
+
hideDetails?: boolean | "auto" | undefined;
|
88270
|
+
suffix?: string | undefined;
|
88271
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
88272
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
88273
|
+
swatches?: readonly (readonly (string | number | {
|
88274
|
+
readonly r: number;
|
88275
|
+
readonly g: number;
|
88276
|
+
readonly b: number;
|
88277
|
+
readonly a?: number | undefined;
|
88278
|
+
} | {
|
88279
|
+
readonly h: number;
|
88280
|
+
readonly s: number;
|
88281
|
+
readonly v: number;
|
88282
|
+
readonly a?: number | undefined;
|
88283
|
+
} | {
|
88284
|
+
readonly h: number;
|
88285
|
+
readonly s: number;
|
88286
|
+
readonly l: number;
|
88287
|
+
readonly a?: number | undefined;
|
88288
|
+
})[])[] | undefined;
|
88289
|
+
} & {
|
88290
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
88291
|
+
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88292
|
+
clear?: ((arg: DefaultInputSlot & {
|
88293
|
+
props: Record<string, any>;
|
88294
|
+
}) => vue.VNodeChild) | undefined;
|
88295
|
+
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88296
|
+
label?: ((arg: DefaultInputSlot & {
|
88297
|
+
label: string | undefined;
|
88298
|
+
props: Record<string, any>;
|
88299
|
+
}) => vue.VNodeChild) | undefined;
|
88300
|
+
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88301
|
+
prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88302
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88303
|
+
counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88304
|
+
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88305
|
+
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88306
|
+
actions?: ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88307
|
+
default?: (() => vue.VNodeChild) | undefined;
|
88308
|
+
};
|
88309
|
+
'v-slots'?: {
|
88310
|
+
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88311
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
88312
|
+
props: Record<string, any>;
|
88313
|
+
}) => vue.VNodeChild) | undefined;
|
88314
|
+
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88315
|
+
label?: false | ((arg: DefaultInputSlot & {
|
88316
|
+
label: string | undefined;
|
88317
|
+
props: Record<string, any>;
|
88318
|
+
}) => vue.VNodeChild) | undefined;
|
88319
|
+
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88320
|
+
prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88321
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88322
|
+
counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88323
|
+
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88324
|
+
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88325
|
+
actions?: false | ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88326
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
88327
|
+
} | undefined;
|
88328
|
+
} & {
|
88329
|
+
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88330
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
88331
|
+
props: Record<string, any>;
|
88332
|
+
}) => vue.VNodeChild) | undefined;
|
88333
|
+
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88334
|
+
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
88335
|
+
label: string | undefined;
|
88336
|
+
props: Record<string, any>;
|
88337
|
+
}) => vue.VNodeChild) | undefined;
|
88338
|
+
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88339
|
+
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88340
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88341
|
+
"v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88342
|
+
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88343
|
+
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88344
|
+
"v-slot:actions"?: false | ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88345
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
88346
|
+
} & {
|
88347
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
88348
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
88349
|
+
'update:modelValue': (val: string) => true;
|
88350
|
+
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
88351
|
+
flat: boolean;
|
88352
|
+
reverse: boolean;
|
88353
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
88354
|
+
type: string;
|
88355
|
+
error: boolean;
|
88356
|
+
active: boolean;
|
88357
|
+
direction: "horizontal" | "vertical";
|
88358
|
+
style: vue.StyleValue;
|
88359
|
+
autofocus: boolean;
|
88360
|
+
disabled: boolean;
|
88361
|
+
readonly: boolean | null;
|
88362
|
+
tag: string | JSXComponent;
|
88363
|
+
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
88364
|
+
landscape: boolean;
|
88365
|
+
messages: string | readonly string[];
|
88366
|
+
rules: readonly ValidationRule$1[];
|
88367
|
+
focused: boolean;
|
88368
|
+
errorMessages: string | readonly string[] | null;
|
88369
|
+
maxErrors: string | number;
|
88370
|
+
density: Density;
|
88371
|
+
rounded: string | number | boolean;
|
88372
|
+
tile: boolean;
|
88373
|
+
divided: boolean;
|
88374
|
+
clearIcon: IconValue;
|
88375
|
+
centerAffix: boolean;
|
88376
|
+
glow: boolean;
|
88377
|
+
hideSpinButtons: boolean;
|
88378
|
+
persistentHint: boolean;
|
88379
|
+
clearable: boolean;
|
88380
|
+
dirty: boolean;
|
88381
|
+
persistentClear: boolean;
|
88382
|
+
singleLine: boolean;
|
88383
|
+
persistentPlaceholder: boolean;
|
88384
|
+
persistentCounter: boolean;
|
88385
|
+
dotSize: string | number;
|
88386
|
+
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
88387
|
+
hideHeader: boolean;
|
88388
|
+
canvasHeight: string | number;
|
88389
|
+
hideCanvas: boolean;
|
88390
|
+
hideSliders: boolean;
|
88391
|
+
hideInputs: boolean;
|
88392
|
+
showSwatches: boolean;
|
88393
|
+
swatchesMaxHeight: string | number;
|
88394
|
+
cancelText: string;
|
88395
|
+
okText: string;
|
88396
|
+
hideActions: boolean;
|
88397
|
+
pip: boolean;
|
88398
|
+
pipIcon: string;
|
88399
|
+
}, true, {}, vue.SlotsType<Partial<{
|
88400
|
+
message: (arg: VMessageSlot) => vue.VNode[];
|
88401
|
+
clear: (arg: DefaultInputSlot & {
|
88402
|
+
props: Record<string, any>;
|
88403
|
+
}) => vue.VNode[];
|
88404
|
+
details: (arg: VInputSlot) => vue.VNode[];
|
88405
|
+
label: (arg: DefaultInputSlot & {
|
88406
|
+
label: string | undefined;
|
88407
|
+
props: Record<string, any>;
|
88408
|
+
}) => vue.VNode[];
|
88409
|
+
append: (arg: VInputSlot) => vue.VNode[];
|
88410
|
+
prepend: (arg: VInputSlot) => vue.VNode[];
|
88411
|
+
loader: (arg: LoaderSlotProps) => vue.VNode[];
|
88412
|
+
counter: (arg: VCounterSlot) => vue.VNode[];
|
88413
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
88414
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
88415
|
+
actions: (arg: VColorInputActionsSlot) => vue.VNode[];
|
88416
|
+
default: () => vue.VNode[];
|
88417
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
88418
|
+
P: {};
|
88419
|
+
B: {};
|
88420
|
+
D: {};
|
88421
|
+
C: {};
|
88422
|
+
M: {};
|
88423
|
+
Defaults: {};
|
88424
|
+
}, {
|
88425
|
+
flat: boolean;
|
88426
|
+
reverse: boolean;
|
88427
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
88428
|
+
type: string;
|
88429
|
+
error: boolean;
|
88430
|
+
active: boolean;
|
88431
|
+
direction: "horizontal" | "vertical";
|
88432
|
+
style: vue.StyleValue;
|
88433
|
+
autofocus: boolean;
|
88434
|
+
disabled: boolean;
|
88435
|
+
readonly: boolean | null;
|
88436
|
+
tag: string | JSXComponent;
|
88437
|
+
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
88438
|
+
landscape: boolean;
|
88439
|
+
messages: string | readonly string[];
|
88440
|
+
rules: readonly ValidationRule$1[];
|
88441
|
+
focused: boolean;
|
88442
|
+
errorMessages: string | readonly string[] | null;
|
88443
|
+
maxErrors: string | number;
|
88444
|
+
density: Density;
|
88445
|
+
tile: boolean;
|
88446
|
+
divided: boolean;
|
88447
|
+
clearIcon: IconValue;
|
88448
|
+
glow: boolean;
|
88449
|
+
hideSpinButtons: boolean;
|
88450
|
+
persistentHint: boolean;
|
88451
|
+
clearable: boolean;
|
88452
|
+
dirty: boolean;
|
88453
|
+
persistentClear: boolean;
|
88454
|
+
singleLine: boolean;
|
88455
|
+
persistentPlaceholder: boolean;
|
88456
|
+
persistentCounter: boolean;
|
88457
|
+
dotSize: string | number;
|
88458
|
+
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
88459
|
+
hideHeader: boolean;
|
88460
|
+
canvasHeight: string | number;
|
88461
|
+
hideCanvas: boolean;
|
88462
|
+
hideSliders: boolean;
|
88463
|
+
hideInputs: boolean;
|
88464
|
+
showSwatches: boolean;
|
88465
|
+
swatchesMaxHeight: string | number;
|
88466
|
+
cancelText: string;
|
88467
|
+
okText: string;
|
88468
|
+
hideActions: boolean;
|
88469
|
+
pip: boolean;
|
88470
|
+
pipIcon: string;
|
88471
|
+
} & {
|
88472
|
+
name?: string | undefined;
|
88473
|
+
location?: Anchor | null | undefined;
|
88474
|
+
id?: string | undefined;
|
88475
|
+
height?: string | number | undefined;
|
88476
|
+
width?: string | number | undefined;
|
88477
|
+
border?: string | number | boolean | undefined;
|
88478
|
+
color?: string | undefined;
|
88479
|
+
maxHeight?: string | number | undefined;
|
88480
|
+
maxWidth?: string | number | undefined;
|
88481
|
+
minHeight?: string | number | undefined;
|
88482
|
+
minWidth?: string | number | undefined;
|
88483
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
88484
|
+
loading?: string | boolean | undefined;
|
88485
|
+
label?: string | undefined;
|
88486
|
+
title?: string | undefined;
|
88487
|
+
prefix?: string | undefined;
|
88488
|
+
role?: string | undefined;
|
88489
|
+
class?: any;
|
88490
|
+
theme?: string | undefined;
|
88491
|
+
placeholder?: string | undefined;
|
88492
|
+
elevation?: string | number | undefined;
|
88493
|
+
counter?: string | number | boolean | undefined;
|
88494
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
88495
|
+
modelValue?: string | Record<string, unknown> | null | undefined;
|
88496
|
+
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
88497
|
+
validationValue?: any;
|
88498
|
+
rounded?: string | number | boolean | undefined;
|
88499
|
+
baseColor?: string | undefined;
|
88500
|
+
bgColor?: string | undefined;
|
88501
|
+
prependIcon?: IconValue | undefined;
|
88502
|
+
appendIcon?: IconValue | undefined;
|
88503
|
+
appendInnerIcon?: IconValue | undefined;
|
88504
|
+
prependInnerIcon?: IconValue | undefined;
|
88505
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
88506
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
88507
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
88508
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
88509
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
88510
|
+
centerAffix?: boolean | undefined;
|
88511
|
+
iconColor?: string | boolean | undefined;
|
88512
|
+
hint?: string | undefined;
|
88513
|
+
hideDetails?: boolean | "auto" | undefined;
|
88514
|
+
suffix?: string | undefined;
|
88515
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
88516
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
88517
|
+
swatches?: readonly (readonly (string | number | {
|
88518
|
+
readonly r: number;
|
88519
|
+
readonly g: number;
|
88520
|
+
readonly b: number;
|
88521
|
+
readonly a?: number | undefined;
|
88522
|
+
} | {
|
88523
|
+
readonly h: number;
|
88524
|
+
readonly s: number;
|
88525
|
+
readonly v: number;
|
88526
|
+
readonly a?: number | undefined;
|
88527
|
+
} | {
|
88528
|
+
readonly h: number;
|
88529
|
+
readonly s: number;
|
88530
|
+
readonly l: number;
|
88531
|
+
readonly a?: number | undefined;
|
88532
|
+
})[])[] | undefined;
|
88533
|
+
} & {
|
88534
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
88535
|
+
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88536
|
+
clear?: ((arg: DefaultInputSlot & {
|
88537
|
+
props: Record<string, any>;
|
88538
|
+
}) => vue.VNodeChild) | undefined;
|
88539
|
+
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88540
|
+
label?: ((arg: DefaultInputSlot & {
|
88541
|
+
label: string | undefined;
|
88542
|
+
props: Record<string, any>;
|
88543
|
+
}) => vue.VNodeChild) | undefined;
|
88544
|
+
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88545
|
+
prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88546
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88547
|
+
counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88548
|
+
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88549
|
+
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88550
|
+
actions?: ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88551
|
+
default?: (() => vue.VNodeChild) | undefined;
|
88552
|
+
};
|
88553
|
+
'v-slots'?: {
|
88554
|
+
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88555
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
88556
|
+
props: Record<string, any>;
|
88557
|
+
}) => vue.VNodeChild) | undefined;
|
88558
|
+
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88559
|
+
label?: false | ((arg: DefaultInputSlot & {
|
88560
|
+
label: string | undefined;
|
88561
|
+
props: Record<string, any>;
|
88562
|
+
}) => vue.VNodeChild) | undefined;
|
88563
|
+
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88564
|
+
prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88565
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88566
|
+
counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88567
|
+
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88568
|
+
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88569
|
+
actions?: false | ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88570
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
88571
|
+
} | undefined;
|
88572
|
+
} & {
|
88573
|
+
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88574
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
88575
|
+
props: Record<string, any>;
|
88576
|
+
}) => vue.VNodeChild) | undefined;
|
88577
|
+
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88578
|
+
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
88579
|
+
label: string | undefined;
|
88580
|
+
props: Record<string, any>;
|
88581
|
+
}) => vue.VNodeChild) | undefined;
|
88582
|
+
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88583
|
+
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88584
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88585
|
+
"v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88586
|
+
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88587
|
+
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88588
|
+
"v-slot:actions"?: false | ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88589
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
88590
|
+
} & {
|
88591
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
88592
|
+
}, {}, {}, {}, {}, {
|
88593
|
+
flat: boolean;
|
88594
|
+
reverse: boolean;
|
88595
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
88596
|
+
type: string;
|
88597
|
+
error: boolean;
|
88598
|
+
active: boolean;
|
88599
|
+
direction: "horizontal" | "vertical";
|
88600
|
+
style: vue.StyleValue;
|
88601
|
+
autofocus: boolean;
|
88602
|
+
disabled: boolean;
|
88603
|
+
readonly: boolean | null;
|
88604
|
+
tag: string | JSXComponent;
|
88605
|
+
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
88606
|
+
landscape: boolean;
|
88607
|
+
messages: string | readonly string[];
|
88608
|
+
rules: readonly ValidationRule$1[];
|
88609
|
+
focused: boolean;
|
88610
|
+
errorMessages: string | readonly string[] | null;
|
88611
|
+
maxErrors: string | number;
|
88612
|
+
density: Density;
|
88613
|
+
rounded: string | number | boolean;
|
88614
|
+
tile: boolean;
|
88615
|
+
divided: boolean;
|
88616
|
+
clearIcon: IconValue;
|
88617
|
+
centerAffix: boolean;
|
88618
|
+
glow: boolean;
|
88619
|
+
hideSpinButtons: boolean;
|
88620
|
+
persistentHint: boolean;
|
88621
|
+
clearable: boolean;
|
88622
|
+
dirty: boolean;
|
88623
|
+
persistentClear: boolean;
|
88624
|
+
singleLine: boolean;
|
88625
|
+
persistentPlaceholder: boolean;
|
88626
|
+
persistentCounter: boolean;
|
88627
|
+
dotSize: string | number;
|
88628
|
+
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
88629
|
+
hideHeader: boolean;
|
88630
|
+
canvasHeight: string | number;
|
88631
|
+
hideCanvas: boolean;
|
88632
|
+
hideSliders: boolean;
|
88633
|
+
hideInputs: boolean;
|
88634
|
+
showSwatches: boolean;
|
88635
|
+
swatchesMaxHeight: string | number;
|
88636
|
+
cancelText: string;
|
88637
|
+
okText: string;
|
88638
|
+
hideActions: boolean;
|
88639
|
+
pip: boolean;
|
88640
|
+
pipIcon: string;
|
88641
|
+
}>;
|
88642
|
+
__isFragment?: never;
|
88643
|
+
__isTeleport?: never;
|
88644
|
+
__isSuspense?: never;
|
88645
|
+
} & vue.ComponentOptionsBase<{
|
88646
|
+
flat: boolean;
|
88647
|
+
reverse: boolean;
|
88648
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
88649
|
+
type: string;
|
88650
|
+
error: boolean;
|
88651
|
+
active: boolean;
|
88652
|
+
direction: "horizontal" | "vertical";
|
88653
|
+
style: vue.StyleValue;
|
88654
|
+
autofocus: boolean;
|
88655
|
+
disabled: boolean;
|
88656
|
+
readonly: boolean | null;
|
88657
|
+
tag: string | JSXComponent;
|
88658
|
+
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
88659
|
+
landscape: boolean;
|
88660
|
+
messages: string | readonly string[];
|
88661
|
+
rules: readonly ValidationRule$1[];
|
88662
|
+
focused: boolean;
|
88663
|
+
errorMessages: string | readonly string[] | null;
|
88664
|
+
maxErrors: string | number;
|
88665
|
+
density: Density;
|
88666
|
+
tile: boolean;
|
88667
|
+
divided: boolean;
|
88668
|
+
clearIcon: IconValue;
|
88669
|
+
glow: boolean;
|
88670
|
+
hideSpinButtons: boolean;
|
88671
|
+
persistentHint: boolean;
|
88672
|
+
clearable: boolean;
|
88673
|
+
dirty: boolean;
|
88674
|
+
persistentClear: boolean;
|
88675
|
+
singleLine: boolean;
|
88676
|
+
persistentPlaceholder: boolean;
|
88677
|
+
persistentCounter: boolean;
|
88678
|
+
dotSize: string | number;
|
88679
|
+
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
88680
|
+
hideHeader: boolean;
|
88681
|
+
canvasHeight: string | number;
|
88682
|
+
hideCanvas: boolean;
|
88683
|
+
hideSliders: boolean;
|
88684
|
+
hideInputs: boolean;
|
88685
|
+
showSwatches: boolean;
|
88686
|
+
swatchesMaxHeight: string | number;
|
88687
|
+
cancelText: string;
|
88688
|
+
okText: string;
|
88689
|
+
hideActions: boolean;
|
88690
|
+
pip: boolean;
|
88691
|
+
pipIcon: string;
|
88692
|
+
} & {
|
88693
|
+
name?: string | undefined;
|
88694
|
+
location?: Anchor | null | undefined;
|
88695
|
+
id?: string | undefined;
|
88696
|
+
height?: string | number | undefined;
|
88697
|
+
width?: string | number | undefined;
|
88698
|
+
border?: string | number | boolean | undefined;
|
88699
|
+
color?: string | undefined;
|
88700
|
+
maxHeight?: string | number | undefined;
|
88701
|
+
maxWidth?: string | number | undefined;
|
88702
|
+
minHeight?: string | number | undefined;
|
88703
|
+
minWidth?: string | number | undefined;
|
88704
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky" | undefined;
|
88705
|
+
loading?: string | boolean | undefined;
|
88706
|
+
label?: string | undefined;
|
88707
|
+
title?: string | undefined;
|
88708
|
+
prefix?: string | undefined;
|
88709
|
+
role?: string | undefined;
|
88710
|
+
class?: any;
|
88711
|
+
theme?: string | undefined;
|
88712
|
+
placeholder?: string | undefined;
|
88713
|
+
elevation?: string | number | undefined;
|
88714
|
+
counter?: string | number | boolean | undefined;
|
88715
|
+
'onUpdate:focused'?: ((args_0: boolean) => void) | undefined;
|
88716
|
+
modelValue?: string | Record<string, unknown> | null | undefined;
|
88717
|
+
validateOn?: ("eager" | "lazy" | ("input" | "blur" | "submit" | "invalid-input") | "input lazy" | "blur lazy" | "submit lazy" | "invalid-input lazy" | "input eager" | "blur eager" | "submit eager" | "invalid-input eager" | "lazy input" | "lazy blur" | "lazy submit" | "lazy invalid-input" | "eager input" | "eager blur" | "eager submit" | "eager invalid-input") | undefined;
|
88718
|
+
validationValue?: any;
|
88719
|
+
rounded?: string | number | boolean | undefined;
|
88720
|
+
baseColor?: string | undefined;
|
88721
|
+
bgColor?: string | undefined;
|
88722
|
+
prependIcon?: IconValue | undefined;
|
88723
|
+
appendIcon?: IconValue | undefined;
|
88724
|
+
appendInnerIcon?: IconValue | undefined;
|
88725
|
+
prependInnerIcon?: IconValue | undefined;
|
88726
|
+
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
88727
|
+
'onClick:append'?: ((args_0: MouseEvent) => void) | undefined;
|
88728
|
+
'onClick:prepend'?: ((args_0: MouseEvent) => void) | undefined;
|
88729
|
+
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
88730
|
+
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
88731
|
+
centerAffix?: boolean | undefined;
|
88732
|
+
iconColor?: string | boolean | undefined;
|
88733
|
+
hint?: string | undefined;
|
88734
|
+
hideDetails?: boolean | "auto" | undefined;
|
88735
|
+
suffix?: string | undefined;
|
88736
|
+
counterValue?: number | ((value: any) => number) | undefined;
|
88737
|
+
modelModifiers?: Record<string, boolean> | undefined;
|
88738
|
+
swatches?: readonly (readonly (string | number | {
|
88739
|
+
readonly r: number;
|
88740
|
+
readonly g: number;
|
88741
|
+
readonly b: number;
|
88742
|
+
readonly a?: number | undefined;
|
88743
|
+
} | {
|
88744
|
+
readonly h: number;
|
88745
|
+
readonly s: number;
|
88746
|
+
readonly v: number;
|
88747
|
+
readonly a?: number | undefined;
|
88748
|
+
} | {
|
88749
|
+
readonly h: number;
|
88750
|
+
readonly s: number;
|
88751
|
+
readonly l: number;
|
88752
|
+
readonly a?: number | undefined;
|
88753
|
+
})[])[] | undefined;
|
88754
|
+
} & {
|
88755
|
+
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
88756
|
+
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88757
|
+
clear?: ((arg: DefaultInputSlot & {
|
88758
|
+
props: Record<string, any>;
|
88759
|
+
}) => vue.VNodeChild) | undefined;
|
88760
|
+
details?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88761
|
+
label?: ((arg: DefaultInputSlot & {
|
88762
|
+
label: string | undefined;
|
88763
|
+
props: Record<string, any>;
|
88764
|
+
}) => vue.VNodeChild) | undefined;
|
88765
|
+
append?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88766
|
+
prepend?: ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88767
|
+
loader?: ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88768
|
+
counter?: ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88769
|
+
'prepend-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88770
|
+
'append-inner'?: ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88771
|
+
actions?: ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88772
|
+
default?: (() => vue.VNodeChild) | undefined;
|
88773
|
+
};
|
88774
|
+
'v-slots'?: {
|
88775
|
+
message?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88776
|
+
clear?: false | ((arg: DefaultInputSlot & {
|
88777
|
+
props: Record<string, any>;
|
88778
|
+
}) => vue.VNodeChild) | undefined;
|
88779
|
+
details?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88780
|
+
label?: false | ((arg: DefaultInputSlot & {
|
88781
|
+
label: string | undefined;
|
88782
|
+
props: Record<string, any>;
|
88783
|
+
}) => vue.VNodeChild) | undefined;
|
88784
|
+
append?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88785
|
+
prepend?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88786
|
+
loader?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88787
|
+
counter?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88788
|
+
'prepend-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88789
|
+
'append-inner'?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88790
|
+
actions?: false | ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88791
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
88792
|
+
} | undefined;
|
88793
|
+
} & {
|
88794
|
+
"v-slot:message"?: false | ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
88795
|
+
"v-slot:clear"?: false | ((arg: DefaultInputSlot & {
|
88796
|
+
props: Record<string, any>;
|
88797
|
+
}) => vue.VNodeChild) | undefined;
|
88798
|
+
"v-slot:details"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88799
|
+
"v-slot:label"?: false | ((arg: DefaultInputSlot & {
|
88800
|
+
label: string | undefined;
|
88801
|
+
props: Record<string, any>;
|
88802
|
+
}) => vue.VNodeChild) | undefined;
|
88803
|
+
"v-slot:append"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88804
|
+
"v-slot:prepend"?: false | ((arg: VInputSlot) => vue.VNodeChild) | undefined;
|
88805
|
+
"v-slot:loader"?: false | ((arg: LoaderSlotProps) => vue.VNodeChild) | undefined;
|
88806
|
+
"v-slot:counter"?: false | ((arg: VCounterSlot) => vue.VNodeChild) | undefined;
|
88807
|
+
"v-slot:prepend-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88808
|
+
"v-slot:append-inner"?: false | ((arg: DefaultInputSlot) => vue.VNodeChild) | undefined;
|
88809
|
+
"v-slot:actions"?: false | ((arg: VColorInputActionsSlot) => vue.VNodeChild) | undefined;
|
88810
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
88811
|
+
} & {
|
88812
|
+
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
88813
|
+
}, void, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
88814
|
+
'update:modelValue': (val: string) => true;
|
88815
|
+
}, string, {
|
88816
|
+
flat: boolean;
|
88817
|
+
reverse: boolean;
|
88818
|
+
variant: "filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled";
|
88819
|
+
type: string;
|
88820
|
+
error: boolean;
|
88821
|
+
active: boolean;
|
88822
|
+
direction: "horizontal" | "vertical";
|
88823
|
+
style: vue.StyleValue;
|
88824
|
+
autofocus: boolean;
|
88825
|
+
disabled: boolean;
|
88826
|
+
readonly: boolean | null;
|
88827
|
+
tag: string | JSXComponent;
|
88828
|
+
mode: "rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa";
|
88829
|
+
landscape: boolean;
|
88830
|
+
messages: string | readonly string[];
|
88831
|
+
rules: readonly ValidationRule$1[];
|
88832
|
+
focused: boolean;
|
88833
|
+
errorMessages: string | readonly string[] | null;
|
88834
|
+
maxErrors: string | number;
|
88835
|
+
density: Density;
|
88836
|
+
rounded: string | number | boolean;
|
88837
|
+
tile: boolean;
|
88838
|
+
divided: boolean;
|
88839
|
+
clearIcon: IconValue;
|
88840
|
+
centerAffix: boolean;
|
88841
|
+
glow: boolean;
|
88842
|
+
hideSpinButtons: boolean;
|
88843
|
+
persistentHint: boolean;
|
88844
|
+
clearable: boolean;
|
88845
|
+
dirty: boolean;
|
88846
|
+
persistentClear: boolean;
|
88847
|
+
singleLine: boolean;
|
88848
|
+
persistentPlaceholder: boolean;
|
88849
|
+
persistentCounter: boolean;
|
88850
|
+
dotSize: string | number;
|
88851
|
+
modes: readonly ("rgb" | "hex" | "hsl" | "rgba" | "hsla" | "hexa")[];
|
88852
|
+
hideHeader: boolean;
|
88853
|
+
canvasHeight: string | number;
|
88854
|
+
hideCanvas: boolean;
|
88855
|
+
hideSliders: boolean;
|
88856
|
+
hideInputs: boolean;
|
88857
|
+
showSwatches: boolean;
|
88858
|
+
swatchesMaxHeight: string | number;
|
88859
|
+
cancelText: string;
|
88860
|
+
okText: string;
|
88861
|
+
hideActions: boolean;
|
88862
|
+
pip: boolean;
|
88863
|
+
pipIcon: string;
|
88864
|
+
}, {}, string, vue.SlotsType<Partial<{
|
88865
|
+
message: (arg: VMessageSlot) => vue.VNode[];
|
88866
|
+
clear: (arg: DefaultInputSlot & {
|
88867
|
+
props: Record<string, any>;
|
88868
|
+
}) => vue.VNode[];
|
88869
|
+
details: (arg: VInputSlot) => vue.VNode[];
|
88870
|
+
label: (arg: DefaultInputSlot & {
|
88871
|
+
label: string | undefined;
|
88872
|
+
props: Record<string, any>;
|
88873
|
+
}) => vue.VNode[];
|
88874
|
+
append: (arg: VInputSlot) => vue.VNode[];
|
88875
|
+
prepend: (arg: VInputSlot) => vue.VNode[];
|
88876
|
+
loader: (arg: LoaderSlotProps) => vue.VNode[];
|
88877
|
+
counter: (arg: VCounterSlot) => vue.VNode[];
|
88878
|
+
'prepend-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
88879
|
+
'append-inner': (arg: DefaultInputSlot) => vue.VNode[];
|
88880
|
+
actions: (arg: VColorInputActionsSlot) => vue.VNode[];
|
88881
|
+
default: () => vue.VNode[];
|
88882
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
88883
|
+
location: vue.PropType<Anchor | null>;
|
88884
|
+
height: (StringConstructor | NumberConstructor)[];
|
88885
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
88886
|
+
color: StringConstructor;
|
88887
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
88888
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
88889
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
88890
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
88891
|
+
position: {
|
88892
|
+
type: vue.PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
88893
|
+
validator: (v: any) => boolean;
|
88894
|
+
};
|
88895
|
+
style: {
|
88896
|
+
type: vue.PropType<vue.StyleValue>;
|
88897
|
+
default: null;
|
88898
|
+
};
|
88899
|
+
title: StringConstructor;
|
88900
|
+
disabled: BooleanConstructor;
|
88901
|
+
class: vue.PropType<ClassValue>;
|
88902
|
+
theme: StringConstructor;
|
88903
|
+
tag: {
|
88904
|
+
type: vue.PropType<string | JSXComponent>;
|
88905
|
+
default: string;
|
88906
|
+
};
|
88907
|
+
mode: {
|
88908
|
+
type: vue.PropType<keyof typeof modes>;
|
88909
|
+
default: string;
|
88910
|
+
validator: (v: string) => boolean;
|
88911
|
+
};
|
88912
|
+
landscape: BooleanConstructor;
|
88913
|
+
elevation: {
|
88914
|
+
type: (StringConstructor | NumberConstructor)[];
|
88915
|
+
validator(v: any): boolean;
|
88916
|
+
};
|
88917
|
+
modelValue: {
|
88918
|
+
type: vue.PropType<Record<string, unknown> | string | undefined | null>;
|
88919
|
+
};
|
88920
|
+
rounded: {
|
88921
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
88922
|
+
default: undefined;
|
88923
|
+
};
|
88924
|
+
tile: BooleanConstructor;
|
88925
|
+
divided: BooleanConstructor;
|
88926
|
+
bgColor: StringConstructor;
|
88927
|
+
dotSize: {
|
88928
|
+
type: (StringConstructor | NumberConstructor)[];
|
88929
|
+
default: number;
|
88930
|
+
};
|
88931
|
+
modes: {
|
88932
|
+
type: vue.PropType<readonly (keyof typeof modes)[]>;
|
88933
|
+
default: () => string[];
|
88934
|
+
validator: (v: any) => boolean;
|
88935
|
+
};
|
88936
|
+
swatches: vue.PropType<vue.DeepReadonly<Color[][]>>;
|
88937
|
+
hideHeader: {
|
88938
|
+
type: vue.PropType<boolean>;
|
88939
|
+
default: boolean;
|
88940
|
+
};
|
88941
|
+
canvasHeight: {
|
88942
|
+
type: (StringConstructor | NumberConstructor)[];
|
88943
|
+
default: number;
|
88944
|
+
};
|
88945
|
+
hideCanvas: BooleanConstructor;
|
88946
|
+
hideSliders: BooleanConstructor;
|
88947
|
+
hideInputs: BooleanConstructor;
|
88948
|
+
showSwatches: BooleanConstructor;
|
88949
|
+
swatchesMaxHeight: {
|
88950
|
+
type: (StringConstructor | NumberConstructor)[];
|
88951
|
+
default: number;
|
88952
|
+
};
|
88953
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
88954
|
+
appendInnerIcon: vue.PropType<IconValue>;
|
88955
|
+
clearable: BooleanConstructor;
|
88956
|
+
clearIcon: {
|
88957
|
+
type: vue.PropType<IconValue>;
|
88958
|
+
default: string;
|
88959
|
+
};
|
88960
|
+
active: BooleanConstructor;
|
88961
|
+
centerAffix: {
|
88962
|
+
type: BooleanConstructor;
|
88963
|
+
default: undefined;
|
88964
|
+
};
|
88965
|
+
baseColor: StringConstructor;
|
88966
|
+
dirty: BooleanConstructor;
|
88967
|
+
glow: BooleanConstructor;
|
88968
|
+
error: BooleanConstructor;
|
88969
|
+
flat: BooleanConstructor;
|
88970
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
88971
|
+
label: StringConstructor;
|
88972
|
+
persistentClear: BooleanConstructor;
|
88973
|
+
prependInnerIcon: vue.PropType<IconValue>;
|
88974
|
+
reverse: BooleanConstructor;
|
88975
|
+
singleLine: BooleanConstructor;
|
88976
|
+
variant: {
|
88977
|
+
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
88978
|
+
default: string;
|
88979
|
+
validator: (v: any) => boolean;
|
88980
|
+
};
|
88981
|
+
'onClick:clear': vue.PropType<(args_0: MouseEvent) => void>;
|
88982
|
+
'onClick:appendInner': vue.PropType<(args_0: MouseEvent) => void>;
|
88983
|
+
'onClick:prependInner': vue.PropType<(args_0: MouseEvent) => void>;
|
88984
|
+
focused: BooleanConstructor;
|
88985
|
+
'onUpdate:focused': vue.PropType<(args_0: boolean) => void>;
|
88986
|
+
errorMessages: {
|
88987
|
+
type: vue.PropType<string | readonly string[] | null>;
|
88988
|
+
default: () => never[];
|
88989
|
+
};
|
88990
|
+
maxErrors: {
|
88991
|
+
type: (StringConstructor | NumberConstructor)[];
|
88992
|
+
default: number;
|
88993
|
+
};
|
88994
|
+
name: StringConstructor;
|
88995
|
+
readonly: {
|
88996
|
+
type: vue.PropType<boolean | null>;
|
88997
|
+
default: null;
|
88998
|
+
};
|
88999
|
+
rules: {
|
89000
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
89001
|
+
default: () => never[];
|
89002
|
+
};
|
89003
|
+
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
89004
|
+
validationValue: null;
|
89005
|
+
width: (StringConstructor | NumberConstructor)[];
|
89006
|
+
density: {
|
89007
|
+
type: vue.PropType<Density>;
|
89008
|
+
default: string;
|
89009
|
+
validator: (v: any) => boolean;
|
89010
|
+
};
|
89011
|
+
id: StringConstructor;
|
89012
|
+
appendIcon: vue.PropType<IconValue>;
|
89013
|
+
prependIcon: vue.PropType<IconValue>;
|
89014
|
+
hideDetails: vue.PropType<boolean | "auto">;
|
89015
|
+
hideSpinButtons: BooleanConstructor;
|
89016
|
+
hint: StringConstructor;
|
89017
|
+
persistentHint: BooleanConstructor;
|
89018
|
+
messages: {
|
89019
|
+
type: vue.PropType<string | readonly string[]>;
|
89020
|
+
default: () => never[];
|
89021
|
+
};
|
89022
|
+
direction: {
|
89023
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
89024
|
+
default: string;
|
89025
|
+
validator: (v: any) => boolean;
|
89026
|
+
};
|
89027
|
+
'onClick:prepend': vue.PropType<(args_0: MouseEvent) => void>;
|
89028
|
+
'onClick:append': vue.PropType<(args_0: MouseEvent) => void>;
|
89029
|
+
autofocus: BooleanConstructor;
|
89030
|
+
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
89031
|
+
counterValue: vue.PropType<number | ((value: any) => number)>;
|
89032
|
+
prefix: StringConstructor;
|
89033
|
+
placeholder: StringConstructor;
|
89034
|
+
persistentPlaceholder: BooleanConstructor;
|
89035
|
+
persistentCounter: BooleanConstructor;
|
89036
|
+
suffix: StringConstructor;
|
89037
|
+
role: StringConstructor;
|
89038
|
+
type: {
|
89039
|
+
type: StringConstructor;
|
89040
|
+
default: string;
|
89041
|
+
};
|
89042
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
89043
|
+
cancelText: {
|
89044
|
+
type: StringConstructor;
|
89045
|
+
default: string;
|
89046
|
+
};
|
89047
|
+
okText: {
|
89048
|
+
type: StringConstructor;
|
89049
|
+
default: string;
|
89050
|
+
};
|
89051
|
+
hideActions: BooleanConstructor;
|
89052
|
+
pip: BooleanConstructor;
|
89053
|
+
pipIcon: {
|
89054
|
+
type: StringConstructor;
|
89055
|
+
default: string;
|
89056
|
+
};
|
89057
|
+
}, vue.ExtractPropTypes<{
|
89058
|
+
location: vue.PropType<Anchor | null>;
|
89059
|
+
height: (StringConstructor | NumberConstructor)[];
|
89060
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
89061
|
+
color: StringConstructor;
|
89062
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
89063
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
89064
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
89065
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
89066
|
+
position: {
|
89067
|
+
type: vue.PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
89068
|
+
validator: (v: any) => boolean;
|
89069
|
+
};
|
89070
|
+
style: {
|
89071
|
+
type: vue.PropType<vue.StyleValue>;
|
89072
|
+
default: null;
|
89073
|
+
};
|
89074
|
+
title: StringConstructor;
|
89075
|
+
disabled: BooleanConstructor;
|
89076
|
+
class: vue.PropType<ClassValue>;
|
89077
|
+
theme: StringConstructor;
|
89078
|
+
tag: {
|
89079
|
+
type: vue.PropType<string | JSXComponent>;
|
89080
|
+
default: string;
|
89081
|
+
};
|
89082
|
+
mode: {
|
89083
|
+
type: vue.PropType<keyof typeof modes>;
|
89084
|
+
default: string;
|
89085
|
+
validator: (v: string) => boolean;
|
89086
|
+
};
|
89087
|
+
landscape: BooleanConstructor;
|
89088
|
+
elevation: {
|
89089
|
+
type: (StringConstructor | NumberConstructor)[];
|
89090
|
+
validator(v: any): boolean;
|
89091
|
+
};
|
89092
|
+
modelValue: {
|
89093
|
+
type: vue.PropType<Record<string, unknown> | string | undefined | null>;
|
89094
|
+
};
|
89095
|
+
rounded: {
|
89096
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
89097
|
+
default: undefined;
|
89098
|
+
};
|
89099
|
+
tile: BooleanConstructor;
|
89100
|
+
divided: BooleanConstructor;
|
89101
|
+
bgColor: StringConstructor;
|
89102
|
+
dotSize: {
|
89103
|
+
type: (StringConstructor | NumberConstructor)[];
|
89104
|
+
default: number;
|
89105
|
+
};
|
89106
|
+
modes: {
|
89107
|
+
type: vue.PropType<readonly (keyof typeof modes)[]>;
|
89108
|
+
default: () => string[];
|
89109
|
+
validator: (v: any) => boolean;
|
89110
|
+
};
|
89111
|
+
swatches: vue.PropType<vue.DeepReadonly<Color[][]>>;
|
89112
|
+
hideHeader: {
|
89113
|
+
type: vue.PropType<boolean>;
|
89114
|
+
default: boolean;
|
89115
|
+
};
|
89116
|
+
canvasHeight: {
|
89117
|
+
type: (StringConstructor | NumberConstructor)[];
|
89118
|
+
default: number;
|
89119
|
+
};
|
89120
|
+
hideCanvas: BooleanConstructor;
|
89121
|
+
hideSliders: BooleanConstructor;
|
89122
|
+
hideInputs: BooleanConstructor;
|
89123
|
+
showSwatches: BooleanConstructor;
|
89124
|
+
swatchesMaxHeight: {
|
89125
|
+
type: (StringConstructor | NumberConstructor)[];
|
89126
|
+
default: number;
|
89127
|
+
};
|
89128
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
89129
|
+
appendInnerIcon: vue.PropType<IconValue>;
|
89130
|
+
clearable: BooleanConstructor;
|
89131
|
+
clearIcon: {
|
89132
|
+
type: vue.PropType<IconValue>;
|
89133
|
+
default: string;
|
89134
|
+
};
|
89135
|
+
active: BooleanConstructor;
|
89136
|
+
centerAffix: {
|
89137
|
+
type: BooleanConstructor;
|
89138
|
+
default: undefined;
|
89139
|
+
};
|
89140
|
+
baseColor: StringConstructor;
|
89141
|
+
dirty: BooleanConstructor;
|
89142
|
+
glow: BooleanConstructor;
|
89143
|
+
error: BooleanConstructor;
|
89144
|
+
flat: BooleanConstructor;
|
89145
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
89146
|
+
label: StringConstructor;
|
89147
|
+
persistentClear: BooleanConstructor;
|
89148
|
+
prependInnerIcon: vue.PropType<IconValue>;
|
89149
|
+
reverse: BooleanConstructor;
|
89150
|
+
singleLine: BooleanConstructor;
|
89151
|
+
variant: {
|
89152
|
+
type: vue.PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
89153
|
+
default: string;
|
89154
|
+
validator: (v: any) => boolean;
|
89155
|
+
};
|
89156
|
+
'onClick:clear': vue.PropType<(args_0: MouseEvent) => void>;
|
89157
|
+
'onClick:appendInner': vue.PropType<(args_0: MouseEvent) => void>;
|
89158
|
+
'onClick:prependInner': vue.PropType<(args_0: MouseEvent) => void>;
|
89159
|
+
focused: BooleanConstructor;
|
89160
|
+
'onUpdate:focused': vue.PropType<(args_0: boolean) => void>;
|
89161
|
+
errorMessages: {
|
89162
|
+
type: vue.PropType<string | readonly string[] | null>;
|
89163
|
+
default: () => never[];
|
89164
|
+
};
|
89165
|
+
maxErrors: {
|
89166
|
+
type: (StringConstructor | NumberConstructor)[];
|
89167
|
+
default: number;
|
89168
|
+
};
|
89169
|
+
name: StringConstructor;
|
89170
|
+
readonly: {
|
89171
|
+
type: vue.PropType<boolean | null>;
|
89172
|
+
default: null;
|
89173
|
+
};
|
89174
|
+
rules: {
|
89175
|
+
type: vue.PropType<readonly ValidationRule$1[]>;
|
89176
|
+
default: () => never[];
|
89177
|
+
};
|
89178
|
+
validateOn: vue.PropType<ValidationProps["validateOn"]>;
|
89179
|
+
validationValue: null;
|
89180
|
+
width: (StringConstructor | NumberConstructor)[];
|
89181
|
+
density: {
|
89182
|
+
type: vue.PropType<Density>;
|
89183
|
+
default: string;
|
89184
|
+
validator: (v: any) => boolean;
|
89185
|
+
};
|
89186
|
+
id: StringConstructor;
|
89187
|
+
appendIcon: vue.PropType<IconValue>;
|
89188
|
+
prependIcon: vue.PropType<IconValue>;
|
89189
|
+
hideDetails: vue.PropType<boolean | "auto">;
|
89190
|
+
hideSpinButtons: BooleanConstructor;
|
89191
|
+
hint: StringConstructor;
|
89192
|
+
persistentHint: BooleanConstructor;
|
89193
|
+
messages: {
|
89194
|
+
type: vue.PropType<string | readonly string[]>;
|
89195
|
+
default: () => never[];
|
89196
|
+
};
|
89197
|
+
direction: {
|
89198
|
+
type: vue.PropType<"horizontal" | "vertical">;
|
89199
|
+
default: string;
|
89200
|
+
validator: (v: any) => boolean;
|
89201
|
+
};
|
89202
|
+
'onClick:prepend': vue.PropType<(args_0: MouseEvent) => void>;
|
89203
|
+
'onClick:append': vue.PropType<(args_0: MouseEvent) => void>;
|
89204
|
+
autofocus: BooleanConstructor;
|
89205
|
+
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
89206
|
+
counterValue: vue.PropType<number | ((value: any) => number)>;
|
89207
|
+
prefix: StringConstructor;
|
89208
|
+
placeholder: StringConstructor;
|
89209
|
+
persistentPlaceholder: BooleanConstructor;
|
89210
|
+
persistentCounter: BooleanConstructor;
|
89211
|
+
suffix: StringConstructor;
|
89212
|
+
role: StringConstructor;
|
89213
|
+
type: {
|
89214
|
+
type: StringConstructor;
|
89215
|
+
default: string;
|
89216
|
+
};
|
89217
|
+
modelModifiers: vue.PropType<Record<string, boolean>>;
|
89218
|
+
cancelText: {
|
89219
|
+
type: StringConstructor;
|
89220
|
+
default: string;
|
89221
|
+
};
|
89222
|
+
okText: {
|
89223
|
+
type: StringConstructor;
|
89224
|
+
default: string;
|
89225
|
+
};
|
89226
|
+
hideActions: BooleanConstructor;
|
89227
|
+
pip: BooleanConstructor;
|
89228
|
+
pipIcon: {
|
89229
|
+
type: StringConstructor;
|
89230
|
+
default: string;
|
89231
|
+
};
|
89232
|
+
}>>;
|
89233
|
+
type VColorInput = InstanceType<typeof VColorInput>;
|
89234
|
+
|
88172
89235
|
type VDateInputActionsSlot = {
|
88173
89236
|
save: () => void;
|
88174
89237
|
cancel: () => void;
|
@@ -88195,7 +89258,6 @@ declare const VDateInput: {
|
|
88195
89258
|
readonly: boolean | null;
|
88196
89259
|
tag: string | JSXComponent;
|
88197
89260
|
landscape: boolean;
|
88198
|
-
placeholder: string;
|
88199
89261
|
messages: string | readonly string[];
|
88200
89262
|
rules: readonly ValidationRule$1[];
|
88201
89263
|
focused: boolean;
|
@@ -88254,6 +89316,7 @@ declare const VDateInput: {
|
|
88254
89316
|
year?: number | undefined;
|
88255
89317
|
class?: any;
|
88256
89318
|
theme?: string | undefined;
|
89319
|
+
placeholder?: string | undefined;
|
88257
89320
|
elevation?: string | number | undefined;
|
88258
89321
|
counter?: string | number | boolean | undefined;
|
88259
89322
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
@@ -88283,8 +89346,8 @@ declare const VDateInput: {
|
|
88283
89346
|
modelModifiers?: Record<string, boolean> | undefined;
|
88284
89347
|
firstDayOfWeek?: string | number | undefined;
|
88285
89348
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
89349
|
+
inputFormat?: string | undefined;
|
88286
89350
|
displayFormat?: string | Function | undefined;
|
88287
|
-
inputFormat?: string | Function | undefined;
|
88288
89351
|
} & {
|
88289
89352
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
88290
89353
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
@@ -90310,7 +91373,6 @@ declare const VDateInput: {
|
|
90310
91373
|
readonly: boolean | null;
|
90311
91374
|
tag: string | JSXComponent;
|
90312
91375
|
landscape: boolean;
|
90313
|
-
placeholder: string;
|
90314
91376
|
messages: string | readonly string[];
|
90315
91377
|
rules: readonly ValidationRule$1[];
|
90316
91378
|
focused: boolean;
|
@@ -90393,7 +91455,6 @@ declare const VDateInput: {
|
|
90393
91455
|
readonly: boolean | null;
|
90394
91456
|
tag: string | JSXComponent;
|
90395
91457
|
landscape: boolean;
|
90396
|
-
placeholder: string;
|
90397
91458
|
messages: string | readonly string[];
|
90398
91459
|
rules: readonly ValidationRule$1[];
|
90399
91460
|
focused: boolean;
|
@@ -90452,6 +91513,7 @@ declare const VDateInput: {
|
|
90452
91513
|
year?: number | undefined;
|
90453
91514
|
class?: any;
|
90454
91515
|
theme?: string | undefined;
|
91516
|
+
placeholder?: string | undefined;
|
90455
91517
|
elevation?: string | number | undefined;
|
90456
91518
|
counter?: string | number | boolean | undefined;
|
90457
91519
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
@@ -90481,8 +91543,8 @@ declare const VDateInput: {
|
|
90481
91543
|
modelModifiers?: Record<string, boolean> | undefined;
|
90482
91544
|
firstDayOfWeek?: string | number | undefined;
|
90483
91545
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
91546
|
+
inputFormat?: string | undefined;
|
90484
91547
|
displayFormat?: string | Function | undefined;
|
90485
|
-
inputFormat?: string | Function | undefined;
|
90486
91548
|
} & {
|
90487
91549
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
90488
91550
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
@@ -92503,7 +93565,6 @@ declare const VDateInput: {
|
|
92503
93565
|
readonly: boolean | null;
|
92504
93566
|
tag: string | JSXComponent;
|
92505
93567
|
landscape: boolean;
|
92506
|
-
placeholder: string;
|
92507
93568
|
messages: string | readonly string[];
|
92508
93569
|
rules: readonly ValidationRule$1[];
|
92509
93570
|
focused: boolean;
|
@@ -92565,7 +93626,6 @@ declare const VDateInput: {
|
|
92565
93626
|
readonly: boolean | null;
|
92566
93627
|
tag: string | JSXComponent;
|
92567
93628
|
landscape: boolean;
|
92568
|
-
placeholder: string;
|
92569
93629
|
messages: string | readonly string[];
|
92570
93630
|
rules: readonly ValidationRule$1[];
|
92571
93631
|
focused: boolean;
|
@@ -92624,6 +93684,7 @@ declare const VDateInput: {
|
|
92624
93684
|
year?: number | undefined;
|
92625
93685
|
class?: any;
|
92626
93686
|
theme?: string | undefined;
|
93687
|
+
placeholder?: string | undefined;
|
92627
93688
|
elevation?: string | number | undefined;
|
92628
93689
|
counter?: string | number | boolean | undefined;
|
92629
93690
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
@@ -92653,8 +93714,8 @@ declare const VDateInput: {
|
|
92653
93714
|
modelModifiers?: Record<string, boolean> | undefined;
|
92654
93715
|
firstDayOfWeek?: string | number | undefined;
|
92655
93716
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
93717
|
+
inputFormat?: string | undefined;
|
92656
93718
|
displayFormat?: string | Function | undefined;
|
92657
|
-
inputFormat?: string | Function | undefined;
|
92658
93719
|
} & {
|
92659
93720
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
92660
93721
|
message?: ((arg: VMessageSlot) => vue.VNodeChild) | undefined;
|
@@ -94680,7 +95741,6 @@ declare const VDateInput: {
|
|
94680
95741
|
readonly: boolean | null;
|
94681
95742
|
tag: string | JSXComponent;
|
94682
95743
|
landscape: boolean;
|
94683
|
-
placeholder: string;
|
94684
95744
|
messages: string | readonly string[];
|
94685
95745
|
rules: readonly ValidationRule$1[];
|
94686
95746
|
focused: boolean;
|
@@ -94924,10 +95984,239 @@ declare const VDateInput: {
|
|
94924
95984
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
94925
95985
|
counterValue: PropType<number | ((value: any) => number)>;
|
94926
95986
|
prefix: StringConstructor;
|
94927
|
-
placeholder:
|
95987
|
+
placeholder: StringConstructor;
|
95988
|
+
persistentPlaceholder: BooleanConstructor;
|
95989
|
+
persistentCounter: BooleanConstructor;
|
95990
|
+
suffix: StringConstructor;
|
95991
|
+
role: StringConstructor;
|
95992
|
+
type: {
|
95993
|
+
type: StringConstructor;
|
95994
|
+
default: string;
|
95995
|
+
};
|
95996
|
+
modelModifiers: PropType<Record<string, boolean>>;
|
95997
|
+
cancelText: {
|
95998
|
+
type: StringConstructor;
|
95999
|
+
default: string;
|
96000
|
+
};
|
96001
|
+
okText: {
|
96002
|
+
type: StringConstructor;
|
96003
|
+
default: string;
|
96004
|
+
};
|
96005
|
+
hideActions: {
|
96006
|
+
type: PropType<boolean>;
|
96007
|
+
default: boolean;
|
96008
|
+
};
|
96009
|
+
mobile: Omit<{
|
96010
|
+
type: PropType<boolean | null>;
|
96011
|
+
default: boolean;
|
96012
|
+
}, "type" | "default"> & {
|
96013
|
+
type: PropType<boolean | null>;
|
96014
|
+
default: NonNullable<boolean | null> | null;
|
96015
|
+
};
|
96016
|
+
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
96017
|
+
inputFormat: {
|
96018
|
+
type: StringConstructor;
|
96019
|
+
validator: (v: string) => boolean;
|
96020
|
+
};
|
96021
|
+
displayFormat: (FunctionConstructor | StringConstructor)[];
|
96022
|
+
location: {
|
96023
|
+
type: PropType<StrategyProps$1["location"]>;
|
96024
|
+
default: string;
|
96025
|
+
};
|
96026
|
+
menu: BooleanConstructor;
|
96027
|
+
updateOn: {
|
96028
|
+
type: PropType<("blur" | "enter")[]>;
|
96029
|
+
default: () => string[];
|
96030
|
+
};
|
96031
|
+
}, vue.ExtractPropTypes<{
|
96032
|
+
max: PropType<unknown>;
|
96033
|
+
height: (StringConstructor | NumberConstructor)[];
|
96034
|
+
width: (StringConstructor | NumberConstructor)[];
|
96035
|
+
min: PropType<unknown>;
|
96036
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
96037
|
+
color: StringConstructor;
|
96038
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
96039
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
96040
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
96041
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
96042
|
+
position: {
|
96043
|
+
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
96044
|
+
validator: (v: any) => boolean;
|
96045
|
+
};
|
96046
|
+
transition: {
|
96047
|
+
type: StringConstructor;
|
96048
|
+
default: string;
|
96049
|
+
};
|
96050
|
+
header: {
|
96051
|
+
type: StringConstructor;
|
96052
|
+
default: string;
|
96053
|
+
};
|
96054
|
+
style: {
|
96055
|
+
type: PropType<vue.StyleValue>;
|
96056
|
+
default: null;
|
96057
|
+
};
|
96058
|
+
title: {
|
94928
96059
|
type: PropType<string>;
|
94929
96060
|
default: string;
|
94930
96061
|
};
|
96062
|
+
text: StringConstructor;
|
96063
|
+
disabled: {
|
96064
|
+
type: BooleanConstructor;
|
96065
|
+
default: null;
|
96066
|
+
};
|
96067
|
+
multiple: PropType<boolean | "range" | number | (string & {})>;
|
96068
|
+
month: (StringConstructor | NumberConstructor)[];
|
96069
|
+
year: NumberConstructor;
|
96070
|
+
class: PropType<ClassValue>;
|
96071
|
+
theme: StringConstructor;
|
96072
|
+
tag: {
|
96073
|
+
type: PropType<string | JSXComponent>;
|
96074
|
+
default: string;
|
96075
|
+
};
|
96076
|
+
landscape: BooleanConstructor;
|
96077
|
+
elevation: {
|
96078
|
+
type: (StringConstructor | NumberConstructor)[];
|
96079
|
+
validator(v: any): boolean;
|
96080
|
+
};
|
96081
|
+
modelValue: null;
|
96082
|
+
tile: BooleanConstructor;
|
96083
|
+
divided: BooleanConstructor;
|
96084
|
+
bgColor: StringConstructor;
|
96085
|
+
controlHeight: (StringConstructor | NumberConstructor)[];
|
96086
|
+
headerColor: StringConstructor;
|
96087
|
+
nextIcon: {
|
96088
|
+
type: PropType<IconValue>;
|
96089
|
+
default: string;
|
96090
|
+
};
|
96091
|
+
prevIcon: {
|
96092
|
+
type: PropType<IconValue>;
|
96093
|
+
default: string;
|
96094
|
+
};
|
96095
|
+
reverseTransition: {
|
96096
|
+
type: StringConstructor;
|
96097
|
+
default: string;
|
96098
|
+
};
|
96099
|
+
hideHeader: {
|
96100
|
+
type: PropType<boolean>;
|
96101
|
+
default: boolean;
|
96102
|
+
};
|
96103
|
+
modeIcon: {
|
96104
|
+
type: PropType<IconValue>;
|
96105
|
+
default: string;
|
96106
|
+
};
|
96107
|
+
viewMode: {
|
96108
|
+
type: PropType<"month" | "months" | "year">;
|
96109
|
+
default: string;
|
96110
|
+
};
|
96111
|
+
showAdjacentMonths: {
|
96112
|
+
type: PropType<boolean>;
|
96113
|
+
default: boolean;
|
96114
|
+
};
|
96115
|
+
weekdays: {
|
96116
|
+
type: PropType<CalendarWeekdays[]>;
|
96117
|
+
default: () => number[];
|
96118
|
+
};
|
96119
|
+
weeksInMonth: Omit<{
|
96120
|
+
type: PropType<"dynamic" | "static">;
|
96121
|
+
default: string;
|
96122
|
+
}, "type" | "default"> & {
|
96123
|
+
type: PropType<"static" | "dynamic">;
|
96124
|
+
default: NonNullable<"static" | "dynamic">;
|
96125
|
+
};
|
96126
|
+
firstDayOfWeek: {
|
96127
|
+
type: (StringConstructor | NumberConstructor)[];
|
96128
|
+
default: undefined;
|
96129
|
+
};
|
96130
|
+
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
96131
|
+
hideWeekdays: BooleanConstructor;
|
96132
|
+
showWeek: BooleanConstructor;
|
96133
|
+
rounded: {
|
96134
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
96135
|
+
default: undefined;
|
96136
|
+
};
|
96137
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
96138
|
+
appendInnerIcon: PropType<IconValue>;
|
96139
|
+
clearable: BooleanConstructor;
|
96140
|
+
clearIcon: {
|
96141
|
+
type: PropType<IconValue>;
|
96142
|
+
default: string;
|
96143
|
+
};
|
96144
|
+
active: BooleanConstructor;
|
96145
|
+
centerAffix: {
|
96146
|
+
type: BooleanConstructor;
|
96147
|
+
default: undefined;
|
96148
|
+
};
|
96149
|
+
baseColor: StringConstructor;
|
96150
|
+
dirty: BooleanConstructor;
|
96151
|
+
glow: BooleanConstructor;
|
96152
|
+
error: BooleanConstructor;
|
96153
|
+
flat: BooleanConstructor;
|
96154
|
+
iconColor: (StringConstructor | BooleanConstructor)[];
|
96155
|
+
label: StringConstructor;
|
96156
|
+
persistentClear: BooleanConstructor;
|
96157
|
+
prependInnerIcon: PropType<IconValue>;
|
96158
|
+
reverse: BooleanConstructor;
|
96159
|
+
singleLine: BooleanConstructor;
|
96160
|
+
variant: {
|
96161
|
+
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
96162
|
+
default: string;
|
96163
|
+
validator: (v: any) => boolean;
|
96164
|
+
};
|
96165
|
+
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
96166
|
+
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
96167
|
+
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
96168
|
+
focused: BooleanConstructor;
|
96169
|
+
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
96170
|
+
errorMessages: {
|
96171
|
+
type: PropType<string | readonly string[] | null>;
|
96172
|
+
default: () => never[];
|
96173
|
+
};
|
96174
|
+
maxErrors: {
|
96175
|
+
type: (StringConstructor | NumberConstructor)[];
|
96176
|
+
default: number;
|
96177
|
+
};
|
96178
|
+
name: StringConstructor;
|
96179
|
+
readonly: {
|
96180
|
+
type: PropType<boolean | null>;
|
96181
|
+
default: null;
|
96182
|
+
};
|
96183
|
+
rules: {
|
96184
|
+
type: PropType<readonly ValidationRule$1[]>;
|
96185
|
+
default: () => never[];
|
96186
|
+
};
|
96187
|
+
validateOn: PropType<ValidationProps["validateOn"]>;
|
96188
|
+
validationValue: null;
|
96189
|
+
density: {
|
96190
|
+
type: PropType<Density>;
|
96191
|
+
default: string;
|
96192
|
+
validator: (v: any) => boolean;
|
96193
|
+
};
|
96194
|
+
id: StringConstructor;
|
96195
|
+
appendIcon: PropType<IconValue>;
|
96196
|
+
prependIcon: {
|
96197
|
+
type: PropType<IconValue>;
|
96198
|
+
default: NonNullable<IconValue>;
|
96199
|
+
};
|
96200
|
+
hideDetails: PropType<boolean | "auto">;
|
96201
|
+
hideSpinButtons: BooleanConstructor;
|
96202
|
+
hint: StringConstructor;
|
96203
|
+
persistentHint: BooleanConstructor;
|
96204
|
+
messages: {
|
96205
|
+
type: PropType<string | readonly string[]>;
|
96206
|
+
default: () => never[];
|
96207
|
+
};
|
96208
|
+
direction: {
|
96209
|
+
type: PropType<"horizontal" | "vertical">;
|
96210
|
+
default: string;
|
96211
|
+
validator: (v: any) => boolean;
|
96212
|
+
};
|
96213
|
+
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
96214
|
+
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
96215
|
+
autofocus: BooleanConstructor;
|
96216
|
+
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
96217
|
+
counterValue: PropType<number | ((value: any) => number)>;
|
96218
|
+
prefix: StringConstructor;
|
96219
|
+
placeholder: StringConstructor;
|
94931
96220
|
persistentPlaceholder: BooleanConstructor;
|
94932
96221
|
persistentCounter: BooleanConstructor;
|
94933
96222
|
suffix: StringConstructor;
|
@@ -94957,240 +96246,11 @@ declare const VDateInput: {
|
|
94957
96246
|
default: NonNullable<boolean | null> | null;
|
94958
96247
|
};
|
94959
96248
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
94960
|
-
|
94961
|
-
inputFormat: (FunctionConstructor | StringConstructor)[];
|
94962
|
-
location: {
|
94963
|
-
type: PropType<StrategyProps$1["location"]>;
|
94964
|
-
default: string;
|
94965
|
-
};
|
94966
|
-
menu: BooleanConstructor;
|
94967
|
-
updateOn: {
|
94968
|
-
type: PropType<("blur" | "enter")[]>;
|
94969
|
-
default: () => string[];
|
94970
|
-
};
|
94971
|
-
}, vue.ExtractPropTypes<{
|
94972
|
-
max: PropType<unknown>;
|
94973
|
-
height: (StringConstructor | NumberConstructor)[];
|
94974
|
-
width: (StringConstructor | NumberConstructor)[];
|
94975
|
-
min: PropType<unknown>;
|
94976
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
94977
|
-
color: StringConstructor;
|
94978
|
-
maxHeight: (StringConstructor | NumberConstructor)[];
|
94979
|
-
maxWidth: (StringConstructor | NumberConstructor)[];
|
94980
|
-
minHeight: (StringConstructor | NumberConstructor)[];
|
94981
|
-
minWidth: (StringConstructor | NumberConstructor)[];
|
94982
|
-
position: {
|
94983
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
94984
|
-
validator: (v: any) => boolean;
|
94985
|
-
};
|
94986
|
-
transition: {
|
94987
|
-
type: StringConstructor;
|
94988
|
-
default: string;
|
94989
|
-
};
|
94990
|
-
header: {
|
96249
|
+
inputFormat: {
|
94991
96250
|
type: StringConstructor;
|
94992
|
-
|
94993
|
-
};
|
94994
|
-
style: {
|
94995
|
-
type: PropType<vue.StyleValue>;
|
94996
|
-
default: null;
|
94997
|
-
};
|
94998
|
-
title: {
|
94999
|
-
type: PropType<string>;
|
95000
|
-
default: string;
|
95001
|
-
};
|
95002
|
-
text: StringConstructor;
|
95003
|
-
disabled: {
|
95004
|
-
type: BooleanConstructor;
|
95005
|
-
default: null;
|
95006
|
-
};
|
95007
|
-
multiple: PropType<boolean | "range" | number | (string & {})>;
|
95008
|
-
month: (StringConstructor | NumberConstructor)[];
|
95009
|
-
year: NumberConstructor;
|
95010
|
-
class: PropType<ClassValue>;
|
95011
|
-
theme: StringConstructor;
|
95012
|
-
tag: {
|
95013
|
-
type: PropType<string | JSXComponent>;
|
95014
|
-
default: string;
|
95015
|
-
};
|
95016
|
-
landscape: BooleanConstructor;
|
95017
|
-
elevation: {
|
95018
|
-
type: (StringConstructor | NumberConstructor)[];
|
95019
|
-
validator(v: any): boolean;
|
95020
|
-
};
|
95021
|
-
modelValue: null;
|
95022
|
-
tile: BooleanConstructor;
|
95023
|
-
divided: BooleanConstructor;
|
95024
|
-
bgColor: StringConstructor;
|
95025
|
-
controlHeight: (StringConstructor | NumberConstructor)[];
|
95026
|
-
headerColor: StringConstructor;
|
95027
|
-
nextIcon: {
|
95028
|
-
type: PropType<IconValue>;
|
95029
|
-
default: string;
|
95030
|
-
};
|
95031
|
-
prevIcon: {
|
95032
|
-
type: PropType<IconValue>;
|
95033
|
-
default: string;
|
95034
|
-
};
|
95035
|
-
reverseTransition: {
|
95036
|
-
type: StringConstructor;
|
95037
|
-
default: string;
|
95038
|
-
};
|
95039
|
-
hideHeader: {
|
95040
|
-
type: PropType<boolean>;
|
95041
|
-
default: boolean;
|
95042
|
-
};
|
95043
|
-
modeIcon: {
|
95044
|
-
type: PropType<IconValue>;
|
95045
|
-
default: string;
|
95046
|
-
};
|
95047
|
-
viewMode: {
|
95048
|
-
type: PropType<"month" | "months" | "year">;
|
95049
|
-
default: string;
|
95050
|
-
};
|
95051
|
-
showAdjacentMonths: {
|
95052
|
-
type: PropType<boolean>;
|
95053
|
-
default: boolean;
|
95054
|
-
};
|
95055
|
-
weekdays: {
|
95056
|
-
type: PropType<CalendarWeekdays[]>;
|
95057
|
-
default: () => number[];
|
95058
|
-
};
|
95059
|
-
weeksInMonth: Omit<{
|
95060
|
-
type: PropType<"dynamic" | "static">;
|
95061
|
-
default: string;
|
95062
|
-
}, "type" | "default"> & {
|
95063
|
-
type: PropType<"static" | "dynamic">;
|
95064
|
-
default: NonNullable<"static" | "dynamic">;
|
95065
|
-
};
|
95066
|
-
firstDayOfWeek: {
|
95067
|
-
type: (StringConstructor | NumberConstructor)[];
|
95068
|
-
default: undefined;
|
95069
|
-
};
|
95070
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
95071
|
-
hideWeekdays: BooleanConstructor;
|
95072
|
-
showWeek: BooleanConstructor;
|
95073
|
-
rounded: {
|
95074
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
95075
|
-
default: undefined;
|
95076
|
-
};
|
95077
|
-
loading: (StringConstructor | BooleanConstructor)[];
|
95078
|
-
appendInnerIcon: PropType<IconValue>;
|
95079
|
-
clearable: BooleanConstructor;
|
95080
|
-
clearIcon: {
|
95081
|
-
type: PropType<IconValue>;
|
95082
|
-
default: string;
|
95083
|
-
};
|
95084
|
-
active: BooleanConstructor;
|
95085
|
-
centerAffix: {
|
95086
|
-
type: BooleanConstructor;
|
95087
|
-
default: undefined;
|
95088
|
-
};
|
95089
|
-
baseColor: StringConstructor;
|
95090
|
-
dirty: BooleanConstructor;
|
95091
|
-
glow: BooleanConstructor;
|
95092
|
-
error: BooleanConstructor;
|
95093
|
-
flat: BooleanConstructor;
|
95094
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
95095
|
-
label: StringConstructor;
|
95096
|
-
persistentClear: BooleanConstructor;
|
95097
|
-
prependInnerIcon: PropType<IconValue>;
|
95098
|
-
reverse: BooleanConstructor;
|
95099
|
-
singleLine: BooleanConstructor;
|
95100
|
-
variant: {
|
95101
|
-
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
95102
|
-
default: string;
|
95103
|
-
validator: (v: any) => boolean;
|
95104
|
-
};
|
95105
|
-
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
95106
|
-
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
95107
|
-
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
95108
|
-
focused: BooleanConstructor;
|
95109
|
-
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
95110
|
-
errorMessages: {
|
95111
|
-
type: PropType<string | readonly string[] | null>;
|
95112
|
-
default: () => never[];
|
95113
|
-
};
|
95114
|
-
maxErrors: {
|
95115
|
-
type: (StringConstructor | NumberConstructor)[];
|
95116
|
-
default: number;
|
95117
|
-
};
|
95118
|
-
name: StringConstructor;
|
95119
|
-
readonly: {
|
95120
|
-
type: PropType<boolean | null>;
|
95121
|
-
default: null;
|
95122
|
-
};
|
95123
|
-
rules: {
|
95124
|
-
type: PropType<readonly ValidationRule$1[]>;
|
95125
|
-
default: () => never[];
|
95126
|
-
};
|
95127
|
-
validateOn: PropType<ValidationProps["validateOn"]>;
|
95128
|
-
validationValue: null;
|
95129
|
-
density: {
|
95130
|
-
type: PropType<Density>;
|
95131
|
-
default: string;
|
95132
|
-
validator: (v: any) => boolean;
|
95133
|
-
};
|
95134
|
-
id: StringConstructor;
|
95135
|
-
appendIcon: PropType<IconValue>;
|
95136
|
-
prependIcon: {
|
95137
|
-
type: PropType<IconValue>;
|
95138
|
-
default: NonNullable<IconValue>;
|
95139
|
-
};
|
95140
|
-
hideDetails: PropType<boolean | "auto">;
|
95141
|
-
hideSpinButtons: BooleanConstructor;
|
95142
|
-
hint: StringConstructor;
|
95143
|
-
persistentHint: BooleanConstructor;
|
95144
|
-
messages: {
|
95145
|
-
type: PropType<string | readonly string[]>;
|
95146
|
-
default: () => never[];
|
95147
|
-
};
|
95148
|
-
direction: {
|
95149
|
-
type: PropType<"horizontal" | "vertical">;
|
95150
|
-
default: string;
|
95151
|
-
validator: (v: any) => boolean;
|
95152
|
-
};
|
95153
|
-
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
95154
|
-
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
95155
|
-
autofocus: BooleanConstructor;
|
95156
|
-
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
95157
|
-
counterValue: PropType<number | ((value: any) => number)>;
|
95158
|
-
prefix: StringConstructor;
|
95159
|
-
placeholder: {
|
95160
|
-
type: PropType<string>;
|
95161
|
-
default: string;
|
95162
|
-
};
|
95163
|
-
persistentPlaceholder: BooleanConstructor;
|
95164
|
-
persistentCounter: BooleanConstructor;
|
95165
|
-
suffix: StringConstructor;
|
95166
|
-
role: StringConstructor;
|
95167
|
-
type: {
|
95168
|
-
type: StringConstructor;
|
95169
|
-
default: string;
|
95170
|
-
};
|
95171
|
-
modelModifiers: PropType<Record<string, boolean>>;
|
95172
|
-
cancelText: {
|
95173
|
-
type: StringConstructor;
|
95174
|
-
default: string;
|
95175
|
-
};
|
95176
|
-
okText: {
|
95177
|
-
type: StringConstructor;
|
95178
|
-
default: string;
|
95179
|
-
};
|
95180
|
-
hideActions: {
|
95181
|
-
type: PropType<boolean>;
|
95182
|
-
default: boolean;
|
95183
|
-
};
|
95184
|
-
mobile: Omit<{
|
95185
|
-
type: PropType<boolean | null>;
|
95186
|
-
default: boolean;
|
95187
|
-
}, "type" | "default"> & {
|
95188
|
-
type: PropType<boolean | null>;
|
95189
|
-
default: NonNullable<boolean | null> | null;
|
96251
|
+
validator: (v: string) => boolean;
|
95190
96252
|
};
|
95191
|
-
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
95192
96253
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
95193
|
-
inputFormat: (FunctionConstructor | StringConstructor)[];
|
95194
96254
|
location: {
|
95195
96255
|
type: PropType<StrategyProps$1["location"]>;
|
95196
96256
|
default: string;
|
@@ -100275,6 +101335,7 @@ declare const allComponents_d_VChipGroup: typeof VChipGroup;
|
|
100275
101335
|
declare const allComponents_d_VClassIcon: typeof VClassIcon;
|
100276
101336
|
declare const allComponents_d_VCode: typeof VCode;
|
100277
101337
|
declare const allComponents_d_VCol: typeof VCol;
|
101338
|
+
declare const allComponents_d_VColorInput: typeof VColorInput;
|
100278
101339
|
declare const allComponents_d_VColorPicker: typeof VColorPicker;
|
100279
101340
|
declare const allComponents_d_VCombobox: typeof VCombobox;
|
100280
101341
|
declare const allComponents_d_VComponentIcon: typeof VComponentIcon;
|
@@ -100423,7 +101484,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
|
|
100423
101484
|
declare const allComponents_d_VWindow: typeof VWindow;
|
100424
101485
|
declare const allComponents_d_VWindowItem: typeof VWindowItem;
|
100425
101486
|
declare namespace allComponents_d {
|
100426
|
-
export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCalendarDay as VCalendarDay, allComponents_d_VCalendarHeader as VCalendarHeader, allComponents_d_VCalendarInterval as VCalendarInterval, allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, allComponents_d_VCalendarMonthDay as VCalendarMonthDay, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VIconBtn as VIconBtn, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
|
101487
|
+
export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCalendarDay as VCalendarDay, allComponents_d_VCalendarHeader as VCalendarHeader, allComponents_d_VCalendarInterval as VCalendarInterval, allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, allComponents_d_VCalendarMonthDay as VCalendarMonthDay, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorInput as VColorInput, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VIconBtn as VIconBtn, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
|
100427
101488
|
}
|
100428
101489
|
|
100429
101490
|
declare const md1: Blueprint;
|
@@ -100685,41 +101746,42 @@ declare module 'vue' {
|
|
100685
101746
|
$children?: VNodeChild
|
100686
101747
|
}
|
100687
101748
|
export interface GlobalComponents {
|
100688
|
-
|
101749
|
+
VAutocomplete: VAutocomplete
|
100689
101750
|
VAppBar: VAppBar
|
100690
101751
|
VAppBarNavIcon: VAppBarNavIcon
|
100691
101752
|
VAppBarTitle: VAppBarTitle
|
101753
|
+
VApp: VApp
|
101754
|
+
VAlert: VAlert
|
101755
|
+
VAlertTitle: VAlertTitle
|
101756
|
+
VBadge: VBadge
|
100692
101757
|
VAvatar: VAvatar
|
100693
|
-
VAutocomplete: VAutocomplete
|
100694
101758
|
VBanner: VBanner
|
100695
101759
|
VBannerActions: VBannerActions
|
100696
101760
|
VBannerText: VBannerText
|
100697
|
-
|
100698
|
-
VAlertTitle: VAlertTitle
|
100699
|
-
VBadge: VBadge
|
101761
|
+
VBottomSheet: VBottomSheet
|
100700
101762
|
VBreadcrumbs: VBreadcrumbs
|
100701
101763
|
VBreadcrumbsItem: VBreadcrumbsItem
|
100702
101764
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
100703
|
-
|
100704
|
-
VBottomNavigation: VBottomNavigation
|
100705
|
-
VBtn: VBtn
|
101765
|
+
VBtnGroup: VBtnGroup
|
100706
101766
|
VBtnToggle: VBtnToggle
|
100707
|
-
VCarousel: VCarousel
|
100708
|
-
VCarouselItem: VCarouselItem
|
100709
|
-
VCheckbox: VCheckbox
|
100710
|
-
VCheckboxBtn: VCheckboxBtn
|
100711
101767
|
VCard: VCard
|
100712
101768
|
VCardActions: VCardActions
|
100713
101769
|
VCardItem: VCardItem
|
100714
101770
|
VCardSubtitle: VCardSubtitle
|
100715
101771
|
VCardText: VCardText
|
100716
101772
|
VCardTitle: VCardTitle
|
101773
|
+
VCarousel: VCarousel
|
101774
|
+
VCarouselItem: VCarouselItem
|
101775
|
+
VBottomNavigation: VBottomNavigation
|
100717
101776
|
VChipGroup: VChipGroup
|
101777
|
+
VBtn: VBtn
|
101778
|
+
VChip: VChip
|
101779
|
+
VCheckbox: VCheckbox
|
101780
|
+
VCheckboxBtn: VCheckboxBtn
|
100718
101781
|
VColorPicker: VColorPicker
|
100719
|
-
|
101782
|
+
VCode: VCode
|
100720
101783
|
VCombobox: VCombobox
|
100721
101784
|
VCounter: VCounter
|
100722
|
-
VChip: VChip
|
100723
101785
|
VDataTable: VDataTable
|
100724
101786
|
VDataTableHeaders: VDataTableHeaders
|
100725
101787
|
VDataTableFooter: VDataTableFooter
|
@@ -100727,13 +101789,6 @@ declare module 'vue' {
|
|
100727
101789
|
VDataTableRow: VDataTableRow
|
100728
101790
|
VDataTableVirtual: VDataTableVirtual
|
100729
101791
|
VDataTableServer: VDataTableServer
|
100730
|
-
VCode: VCode
|
100731
|
-
VDialog: VDialog
|
100732
|
-
VExpansionPanels: VExpansionPanels
|
100733
|
-
VExpansionPanel: VExpansionPanel
|
100734
|
-
VExpansionPanelText: VExpansionPanelText
|
100735
|
-
VExpansionPanelTitle: VExpansionPanelTitle
|
100736
|
-
VEmptyState: VEmptyState
|
100737
101792
|
VDatePicker: VDatePicker
|
100738
101793
|
VDatePickerControls: VDatePickerControls
|
100739
101794
|
VDatePickerHeader: VDatePickerHeader
|
@@ -100741,23 +101796,29 @@ declare module 'vue' {
|
|
100741
101796
|
VDatePickerMonths: VDatePickerMonths
|
100742
101797
|
VDatePickerYears: VDatePickerYears
|
100743
101798
|
VDivider: VDivider
|
101799
|
+
VDialog: VDialog
|
101800
|
+
VFab: VFab
|
101801
|
+
VEmptyState: VEmptyState
|
100744
101802
|
VField: VField
|
100745
101803
|
VFieldLabel: VFieldLabel
|
100746
|
-
|
101804
|
+
VExpansionPanels: VExpansionPanels
|
101805
|
+
VExpansionPanel: VExpansionPanel
|
101806
|
+
VExpansionPanelText: VExpansionPanelText
|
101807
|
+
VExpansionPanelTitle: VExpansionPanelTitle
|
101808
|
+
VFooter: VFooter
|
100747
101809
|
VFileInput: VFileInput
|
101810
|
+
VInfiniteScroll: VInfiniteScroll
|
100748
101811
|
VIcon: VIcon
|
100749
101812
|
VComponentIcon: VComponentIcon
|
100750
101813
|
VSvgIcon: VSvgIcon
|
100751
101814
|
VLigatureIcon: VLigatureIcon
|
100752
101815
|
VClassIcon: VClassIcon
|
100753
|
-
VFooter: VFooter
|
100754
101816
|
VImg: VImg
|
100755
|
-
|
101817
|
+
VKbd: VKbd
|
100756
101818
|
VInput: VInput
|
101819
|
+
VLabel: VLabel
|
100757
101820
|
VItemGroup: VItemGroup
|
100758
101821
|
VItem: VItem
|
100759
|
-
VLabel: VLabel
|
100760
|
-
VKbd: VKbd
|
100761
101822
|
VList: VList
|
100762
101823
|
VListGroup: VListGroup
|
100763
101824
|
VListImg: VListImg
|
@@ -100768,70 +101829,72 @@ declare module 'vue' {
|
|
100768
101829
|
VListItemTitle: VListItemTitle
|
100769
101830
|
VListSubheader: VListSubheader
|
100770
101831
|
VMain: VMain
|
101832
|
+
VMessages: VMessages
|
100771
101833
|
VMenu: VMenu
|
100772
|
-
VNumberInput: VNumberInput
|
100773
101834
|
VNavigationDrawer: VNavigationDrawer
|
101835
|
+
VNumberInput: VNumberInput
|
101836
|
+
VOverlay: VOverlay
|
100774
101837
|
VOtpInput: VOtpInput
|
100775
|
-
|
101838
|
+
VPagination: VPagination
|
101839
|
+
VRadioGroup: VRadioGroup
|
100776
101840
|
VProgressCircular: VProgressCircular
|
100777
101841
|
VProgressLinear: VProgressLinear
|
100778
|
-
VOverlay: VOverlay
|
100779
101842
|
VRating: VRating
|
100780
|
-
VRadioGroup: VRadioGroup
|
100781
|
-
VPagination: VPagination
|
100782
101843
|
VSelect: VSelect
|
101844
|
+
VSelectionControlGroup: VSelectionControlGroup
|
101845
|
+
VSelectionControl: VSelectionControl
|
101846
|
+
VSlider: VSlider
|
100783
101847
|
VSheet: VSheet
|
100784
101848
|
VSnackbar: VSnackbar
|
100785
|
-
|
101849
|
+
VSkeletonLoader: VSkeletonLoader
|
100786
101850
|
VSlideGroup: VSlideGroup
|
100787
101851
|
VSlideGroupItem: VSlideGroupItem
|
100788
|
-
|
100789
|
-
|
101852
|
+
VStepper: VStepper
|
101853
|
+
VStepperActions: VStepperActions
|
101854
|
+
VStepperHeader: VStepperHeader
|
101855
|
+
VStepperItem: VStepperItem
|
101856
|
+
VStepperWindow: VStepperWindow
|
101857
|
+
VStepperWindowItem: VStepperWindowItem
|
100790
101858
|
VSwitch: VSwitch
|
100791
|
-
VTable: VTable
|
100792
|
-
VTab: VTab
|
100793
|
-
VTabs: VTabs
|
100794
|
-
VTabsWindow: VTabsWindow
|
100795
|
-
VTabsWindowItem: VTabsWindowItem
|
100796
101859
|
VSystemBar: VSystemBar
|
100797
101860
|
VTextField: VTextField
|
101861
|
+
VTextarea: VTextarea
|
101862
|
+
VTable: VTable
|
100798
101863
|
VTimeline: VTimeline
|
100799
101864
|
VTimelineItem: VTimelineItem
|
101865
|
+
VTooltip: VTooltip
|
100800
101866
|
VToolbar: VToolbar
|
100801
101867
|
VToolbarTitle: VToolbarTitle
|
100802
101868
|
VToolbarItems: VToolbarItems
|
100803
|
-
VTooltip: VTooltip
|
100804
101869
|
VWindow: VWindow
|
100805
101870
|
VWindowItem: VWindowItem
|
101871
|
+
VTab: VTab
|
101872
|
+
VTabs: VTabs
|
101873
|
+
VTabsWindow: VTabsWindow
|
101874
|
+
VTabsWindowItem: VTabsWindowItem
|
100806
101875
|
VConfirmEdit: VConfirmEdit
|
100807
101876
|
VDataIterator: VDataIterator
|
100808
101877
|
VDefaultsProvider: VDefaultsProvider
|
100809
|
-
|
100810
|
-
VStepperActions: VStepperActions
|
100811
|
-
VStepperHeader: VStepperHeader
|
100812
|
-
VStepperItem: VStepperItem
|
100813
|
-
VStepperWindow: VStepperWindow
|
100814
|
-
VStepperWindowItem: VStepperWindowItem
|
101878
|
+
VForm: VForm
|
100815
101879
|
VHover: VHover
|
101880
|
+
VContainer: VContainer
|
101881
|
+
VCol: VCol
|
101882
|
+
VRow: VRow
|
101883
|
+
VSpacer: VSpacer
|
100816
101884
|
VLazy: VLazy
|
100817
101885
|
VLayout: VLayout
|
100818
101886
|
VLayoutItem: VLayoutItem
|
100819
101887
|
VLocaleProvider: VLocaleProvider
|
100820
101888
|
VNoSsr: VNoSsr
|
100821
101889
|
VParallax: VParallax
|
100822
|
-
VRadio: VRadio
|
100823
101890
|
VRangeSlider: VRangeSlider
|
100824
101891
|
VResponsive: VResponsive
|
100825
|
-
VContainer: VContainer
|
100826
|
-
VCol: VCol
|
100827
|
-
VRow: VRow
|
100828
|
-
VSpacer: VSpacer
|
100829
101892
|
VSparkline: VSparkline
|
101893
|
+
VSnackbarQueue: VSnackbarQueue
|
100830
101894
|
VSpeedDial: VSpeedDial
|
100831
101895
|
VThemeProvider: VThemeProvider
|
100832
101896
|
VValidation: VValidation
|
100833
101897
|
VVirtualScroll: VVirtualScroll
|
100834
|
-
VSkeletonLoader: VSkeletonLoader
|
100835
101898
|
VFabTransition: VFabTransition
|
100836
101899
|
VDialogBottomTransition: VDialogBottomTransition
|
100837
101900
|
VDialogTopTransition: VDialogTopTransition
|
@@ -100848,29 +101911,28 @@ declare module 'vue' {
|
|
100848
101911
|
VExpandTransition: VExpandTransition
|
100849
101912
|
VExpandXTransition: VExpandXTransition
|
100850
101913
|
VDialogTransition: VDialogTransition
|
100851
|
-
|
100852
|
-
VTextarea: VTextarea
|
100853
|
-
VSnackbarQueue: VSnackbarQueue
|
100854
|
-
VFileUpload: VFileUpload
|
100855
|
-
VFileUploadItem: VFileUploadItem
|
100856
|
-
VTimePicker: VTimePicker
|
100857
|
-
VTimePickerClock: VTimePickerClock
|
100858
|
-
VTimePickerControls: VTimePickerControls
|
101914
|
+
VRadio: VRadio
|
100859
101915
|
VCalendar: VCalendar
|
100860
101916
|
VCalendarDay: VCalendarDay
|
100861
101917
|
VCalendarHeader: VCalendarHeader
|
100862
101918
|
VCalendarInterval: VCalendarInterval
|
100863
101919
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
100864
101920
|
VCalendarMonthDay: VCalendarMonthDay
|
100865
|
-
|
100866
|
-
VTreeviewItem: VTreeviewItem
|
100867
|
-
VTreeviewGroup: VTreeviewGroup
|
100868
|
-
VStepperVertical: VStepperVertical
|
100869
|
-
VStepperVerticalItem: VStepperVerticalItem
|
100870
|
-
VStepperVerticalActions: VStepperVerticalActions
|
101921
|
+
VColorInput: VColorInput
|
100871
101922
|
VPicker: VPicker
|
100872
101923
|
VPickerTitle: VPickerTitle
|
100873
101924
|
VIconBtn: VIconBtn
|
101925
|
+
VFileUpload: VFileUpload
|
101926
|
+
VFileUploadItem: VFileUploadItem
|
101927
|
+
VStepperVertical: VStepperVertical
|
101928
|
+
VStepperVerticalItem: VStepperVerticalItem
|
101929
|
+
VStepperVerticalActions: VStepperVerticalActions
|
101930
|
+
VTreeview: VTreeview
|
101931
|
+
VTreeviewItem: VTreeviewItem
|
101932
|
+
VTreeviewGroup: VTreeviewGroup
|
101933
|
+
VTimePicker: VTimePicker
|
101934
|
+
VTimePickerClock: VTimePickerClock
|
101935
|
+
VTimePickerControls: VTimePickerControls
|
100874
101936
|
VDateInput: VDateInput
|
100875
101937
|
VPullToRefresh: VPullToRefresh
|
100876
101938
|
}
|