vuetify 3.8.4 → 3.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3194 -2850
- package/dist/json/importMap-labs.json +28 -24
- package/dist/json/importMap.json +158 -158
- package/dist/json/tags.json +91 -0
- package/dist/json/web-types.json +6341 -5124
- package/dist/vuetify-labs.cjs +277 -18
- package/dist/vuetify-labs.css +3763 -3735
- package/dist/vuetify-labs.d.ts +1380 -300
- package/dist/vuetify-labs.esm.js +277 -18
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +277 -18
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +5 -9
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2976 -2951
- package/dist/vuetify.d.ts +67 -64
- package/dist/vuetify.esm.js +5 -9
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -9
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +0 -5
- package/lib/components/VAutocomplete/VAutocomplete.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 +67 -64
- 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 +46 -21
- package/lib/labs/VDateInput/VDateInput.js +43 -10
- 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 +2 -3
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;
|
|
@@ -88186,6 +89249,7 @@ declare const VDateInput: {
|
|
|
88186
89249
|
direction: "horizontal" | "vertical";
|
|
88187
89250
|
transition: string;
|
|
88188
89251
|
header: string;
|
|
89252
|
+
menu: boolean;
|
|
88189
89253
|
style: vue.StyleValue;
|
|
88190
89254
|
title: string;
|
|
88191
89255
|
autofocus: boolean;
|
|
@@ -88194,7 +89258,6 @@ declare const VDateInput: {
|
|
|
88194
89258
|
readonly: boolean | null;
|
|
88195
89259
|
tag: string | JSXComponent;
|
|
88196
89260
|
landscape: boolean;
|
|
88197
|
-
placeholder: string;
|
|
88198
89261
|
messages: string | readonly string[];
|
|
88199
89262
|
rules: readonly ValidationRule$1[];
|
|
88200
89263
|
focused: boolean;
|
|
@@ -88253,6 +89316,7 @@ declare const VDateInput: {
|
|
|
88253
89316
|
year?: number | undefined;
|
|
88254
89317
|
class?: any;
|
|
88255
89318
|
theme?: string | undefined;
|
|
89319
|
+
placeholder?: string | undefined;
|
|
88256
89320
|
elevation?: string | number | undefined;
|
|
88257
89321
|
counter?: string | number | boolean | undefined;
|
|
88258
89322
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
@@ -88282,6 +89346,7 @@ declare const VDateInput: {
|
|
|
88282
89346
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
88283
89347
|
firstDayOfWeek?: string | number | undefined;
|
|
88284
89348
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
89349
|
+
inputFormat?: string | undefined;
|
|
88285
89350
|
displayFormat?: string | Function | undefined;
|
|
88286
89351
|
} & {
|
|
88287
89352
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -88343,6 +89408,7 @@ declare const VDateInput: {
|
|
|
88343
89408
|
} & {
|
|
88344
89409
|
onCancel?: (() => any) | undefined;
|
|
88345
89410
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
89411
|
+
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
88346
89412
|
onSave?: ((value: string) => any) | undefined;
|
|
88347
89413
|
}, Omit<Omit<{
|
|
88348
89414
|
$: vue.ComponentInternalInstance;
|
|
@@ -90286,6 +91352,7 @@ declare const VDateInput: {
|
|
|
90286
91352
|
save: (value: string) => true;
|
|
90287
91353
|
cancel: () => true;
|
|
90288
91354
|
'update:modelValue': (val: string) => true;
|
|
91355
|
+
'update:menu': (val: boolean) => true;
|
|
90289
91356
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
|
90290
91357
|
flat: boolean;
|
|
90291
91358
|
reverse: boolean;
|
|
@@ -90297,6 +91364,7 @@ declare const VDateInput: {
|
|
|
90297
91364
|
direction: "horizontal" | "vertical";
|
|
90298
91365
|
transition: string;
|
|
90299
91366
|
header: string;
|
|
91367
|
+
menu: boolean;
|
|
90300
91368
|
style: vue.StyleValue;
|
|
90301
91369
|
title: string;
|
|
90302
91370
|
autofocus: boolean;
|
|
@@ -90305,7 +91373,6 @@ declare const VDateInput: {
|
|
|
90305
91373
|
readonly: boolean | null;
|
|
90306
91374
|
tag: string | JSXComponent;
|
|
90307
91375
|
landscape: boolean;
|
|
90308
|
-
placeholder: string;
|
|
90309
91376
|
messages: string | readonly string[];
|
|
90310
91377
|
rules: readonly ValidationRule$1[];
|
|
90311
91378
|
focused: boolean;
|
|
@@ -90379,6 +91446,7 @@ declare const VDateInput: {
|
|
|
90379
91446
|
direction: "horizontal" | "vertical";
|
|
90380
91447
|
transition: string;
|
|
90381
91448
|
header: string;
|
|
91449
|
+
menu: boolean;
|
|
90382
91450
|
style: vue.StyleValue;
|
|
90383
91451
|
title: string;
|
|
90384
91452
|
autofocus: boolean;
|
|
@@ -90387,7 +91455,6 @@ declare const VDateInput: {
|
|
|
90387
91455
|
readonly: boolean | null;
|
|
90388
91456
|
tag: string | JSXComponent;
|
|
90389
91457
|
landscape: boolean;
|
|
90390
|
-
placeholder: string;
|
|
90391
91458
|
messages: string | readonly string[];
|
|
90392
91459
|
rules: readonly ValidationRule$1[];
|
|
90393
91460
|
focused: boolean;
|
|
@@ -90446,6 +91513,7 @@ declare const VDateInput: {
|
|
|
90446
91513
|
year?: number | undefined;
|
|
90447
91514
|
class?: any;
|
|
90448
91515
|
theme?: string | undefined;
|
|
91516
|
+
placeholder?: string | undefined;
|
|
90449
91517
|
elevation?: string | number | undefined;
|
|
90450
91518
|
counter?: string | number | boolean | undefined;
|
|
90451
91519
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
@@ -90475,6 +91543,7 @@ declare const VDateInput: {
|
|
|
90475
91543
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
90476
91544
|
firstDayOfWeek?: string | number | undefined;
|
|
90477
91545
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
91546
|
+
inputFormat?: string | undefined;
|
|
90478
91547
|
displayFormat?: string | Function | undefined;
|
|
90479
91548
|
} & {
|
|
90480
91549
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -90536,6 +91605,7 @@ declare const VDateInput: {
|
|
|
90536
91605
|
} & {
|
|
90537
91606
|
onCancel?: (() => any) | undefined;
|
|
90538
91607
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
91608
|
+
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
90539
91609
|
onSave?: ((value: string) => any) | undefined;
|
|
90540
91610
|
}, Omit<Omit<{
|
|
90541
91611
|
$: vue.ComponentInternalInstance;
|
|
@@ -92486,6 +93556,7 @@ declare const VDateInput: {
|
|
|
92486
93556
|
direction: "horizontal" | "vertical";
|
|
92487
93557
|
transition: string;
|
|
92488
93558
|
header: string;
|
|
93559
|
+
menu: boolean;
|
|
92489
93560
|
style: vue.StyleValue;
|
|
92490
93561
|
title: string;
|
|
92491
93562
|
autofocus: boolean;
|
|
@@ -92494,7 +93565,6 @@ declare const VDateInput: {
|
|
|
92494
93565
|
readonly: boolean | null;
|
|
92495
93566
|
tag: string | JSXComponent;
|
|
92496
93567
|
landscape: boolean;
|
|
92497
|
-
placeholder: string;
|
|
92498
93568
|
messages: string | readonly string[];
|
|
92499
93569
|
rules: readonly ValidationRule$1[];
|
|
92500
93570
|
focused: boolean;
|
|
@@ -92547,6 +93617,7 @@ declare const VDateInput: {
|
|
|
92547
93617
|
direction: "horizontal" | "vertical";
|
|
92548
93618
|
transition: string;
|
|
92549
93619
|
header: string;
|
|
93620
|
+
menu: boolean;
|
|
92550
93621
|
style: vue.StyleValue;
|
|
92551
93622
|
title: string;
|
|
92552
93623
|
autofocus: boolean;
|
|
@@ -92555,7 +93626,6 @@ declare const VDateInput: {
|
|
|
92555
93626
|
readonly: boolean | null;
|
|
92556
93627
|
tag: string | JSXComponent;
|
|
92557
93628
|
landscape: boolean;
|
|
92558
|
-
placeholder: string;
|
|
92559
93629
|
messages: string | readonly string[];
|
|
92560
93630
|
rules: readonly ValidationRule$1[];
|
|
92561
93631
|
focused: boolean;
|
|
@@ -92614,6 +93684,7 @@ declare const VDateInput: {
|
|
|
92614
93684
|
year?: number | undefined;
|
|
92615
93685
|
class?: any;
|
|
92616
93686
|
theme?: string | undefined;
|
|
93687
|
+
placeholder?: string | undefined;
|
|
92617
93688
|
elevation?: string | number | undefined;
|
|
92618
93689
|
counter?: string | number | boolean | undefined;
|
|
92619
93690
|
mobileBreakpoint?: number | DisplayBreakpoint | undefined;
|
|
@@ -92643,6 +93714,7 @@ declare const VDateInput: {
|
|
|
92643
93714
|
modelModifiers?: Record<string, boolean> | undefined;
|
|
92644
93715
|
firstDayOfWeek?: string | number | undefined;
|
|
92645
93716
|
allowedDates?: unknown[] | ((date: unknown) => boolean) | undefined;
|
|
93717
|
+
inputFormat?: string | undefined;
|
|
92646
93718
|
displayFormat?: string | Function | undefined;
|
|
92647
93719
|
} & {
|
|
92648
93720
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
@@ -92704,6 +93776,7 @@ declare const VDateInput: {
|
|
|
92704
93776
|
} & {
|
|
92705
93777
|
onCancel?: (() => any) | undefined;
|
|
92706
93778
|
"onUpdate:modelValue"?: ((val: string) => any) | undefined;
|
|
93779
|
+
"onUpdate:menu"?: ((val: boolean) => any) | undefined;
|
|
92707
93780
|
onSave?: ((value: string) => any) | undefined;
|
|
92708
93781
|
}, Omit<Omit<{
|
|
92709
93782
|
$: vue.ComponentInternalInstance;
|
|
@@ -94647,6 +95720,7 @@ declare const VDateInput: {
|
|
|
94647
95720
|
save: (value: string) => true;
|
|
94648
95721
|
cancel: () => true;
|
|
94649
95722
|
'update:modelValue': (val: string) => true;
|
|
95723
|
+
'update:menu': (val: boolean) => true;
|
|
94650
95724
|
}, string, {
|
|
94651
95725
|
flat: boolean;
|
|
94652
95726
|
reverse: boolean;
|
|
@@ -94658,6 +95732,7 @@ declare const VDateInput: {
|
|
|
94658
95732
|
direction: "horizontal" | "vertical";
|
|
94659
95733
|
transition: string;
|
|
94660
95734
|
header: string;
|
|
95735
|
+
menu: boolean;
|
|
94661
95736
|
style: vue.StyleValue;
|
|
94662
95737
|
title: string;
|
|
94663
95738
|
autofocus: boolean;
|
|
@@ -94666,7 +95741,6 @@ declare const VDateInput: {
|
|
|
94666
95741
|
readonly: boolean | null;
|
|
94667
95742
|
tag: string | JSXComponent;
|
|
94668
95743
|
landscape: boolean;
|
|
94669
|
-
placeholder: string;
|
|
94670
95744
|
messages: string | readonly string[];
|
|
94671
95745
|
rules: readonly ValidationRule$1[];
|
|
94672
95746
|
focused: boolean;
|
|
@@ -94910,10 +95984,239 @@ declare const VDateInput: {
|
|
|
94910
95984
|
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
94911
95985
|
counterValue: PropType<number | ((value: any) => number)>;
|
|
94912
95986
|
prefix: StringConstructor;
|
|
94913
|
-
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: {
|
|
94914
96059
|
type: PropType<string>;
|
|
94915
96060
|
default: string;
|
|
94916
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;
|
|
94917
96220
|
persistentPlaceholder: BooleanConstructor;
|
|
94918
96221
|
persistentCounter: BooleanConstructor;
|
|
94919
96222
|
suffix: StringConstructor;
|
|
@@ -94943,241 +96246,16 @@ declare const VDateInput: {
|
|
|
94943
96246
|
default: NonNullable<boolean | null> | null;
|
|
94944
96247
|
};
|
|
94945
96248
|
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
94946
|
-
|
|
94947
|
-
location: {
|
|
94948
|
-
type: PropType<StrategyProps$1["location"]>;
|
|
94949
|
-
default: string;
|
|
94950
|
-
};
|
|
94951
|
-
updateOn: {
|
|
94952
|
-
type: PropType<("blur" | "enter")[]>;
|
|
94953
|
-
default: () => string[];
|
|
94954
|
-
};
|
|
94955
|
-
}, vue.ExtractPropTypes<{
|
|
94956
|
-
max: PropType<unknown>;
|
|
94957
|
-
height: (StringConstructor | NumberConstructor)[];
|
|
94958
|
-
width: (StringConstructor | NumberConstructor)[];
|
|
94959
|
-
min: PropType<unknown>;
|
|
94960
|
-
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
94961
|
-
color: StringConstructor;
|
|
94962
|
-
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
94963
|
-
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
94964
|
-
minHeight: (StringConstructor | NumberConstructor)[];
|
|
94965
|
-
minWidth: (StringConstructor | NumberConstructor)[];
|
|
94966
|
-
position: {
|
|
94967
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
|
94968
|
-
validator: (v: any) => boolean;
|
|
94969
|
-
};
|
|
94970
|
-
transition: {
|
|
94971
|
-
type: StringConstructor;
|
|
94972
|
-
default: string;
|
|
94973
|
-
};
|
|
94974
|
-
header: {
|
|
96249
|
+
inputFormat: {
|
|
94975
96250
|
type: StringConstructor;
|
|
94976
|
-
|
|
94977
|
-
};
|
|
94978
|
-
style: {
|
|
94979
|
-
type: PropType<vue.StyleValue>;
|
|
94980
|
-
default: null;
|
|
94981
|
-
};
|
|
94982
|
-
title: {
|
|
94983
|
-
type: PropType<string>;
|
|
94984
|
-
default: string;
|
|
94985
|
-
};
|
|
94986
|
-
text: StringConstructor;
|
|
94987
|
-
disabled: {
|
|
94988
|
-
type: BooleanConstructor;
|
|
94989
|
-
default: null;
|
|
94990
|
-
};
|
|
94991
|
-
multiple: PropType<boolean | "range" | number | (string & {})>;
|
|
94992
|
-
month: (StringConstructor | NumberConstructor)[];
|
|
94993
|
-
year: NumberConstructor;
|
|
94994
|
-
class: PropType<ClassValue>;
|
|
94995
|
-
theme: StringConstructor;
|
|
94996
|
-
tag: {
|
|
94997
|
-
type: PropType<string | JSXComponent>;
|
|
94998
|
-
default: string;
|
|
94999
|
-
};
|
|
95000
|
-
landscape: BooleanConstructor;
|
|
95001
|
-
elevation: {
|
|
95002
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
95003
|
-
validator(v: any): boolean;
|
|
95004
|
-
};
|
|
95005
|
-
modelValue: null;
|
|
95006
|
-
tile: BooleanConstructor;
|
|
95007
|
-
divided: BooleanConstructor;
|
|
95008
|
-
bgColor: StringConstructor;
|
|
95009
|
-
controlHeight: (StringConstructor | NumberConstructor)[];
|
|
95010
|
-
headerColor: StringConstructor;
|
|
95011
|
-
nextIcon: {
|
|
95012
|
-
type: PropType<IconValue>;
|
|
95013
|
-
default: string;
|
|
95014
|
-
};
|
|
95015
|
-
prevIcon: {
|
|
95016
|
-
type: PropType<IconValue>;
|
|
95017
|
-
default: string;
|
|
95018
|
-
};
|
|
95019
|
-
reverseTransition: {
|
|
95020
|
-
type: StringConstructor;
|
|
95021
|
-
default: string;
|
|
95022
|
-
};
|
|
95023
|
-
hideHeader: {
|
|
95024
|
-
type: PropType<boolean>;
|
|
95025
|
-
default: boolean;
|
|
95026
|
-
};
|
|
95027
|
-
modeIcon: {
|
|
95028
|
-
type: PropType<IconValue>;
|
|
95029
|
-
default: string;
|
|
95030
|
-
};
|
|
95031
|
-
viewMode: {
|
|
95032
|
-
type: PropType<"month" | "months" | "year">;
|
|
95033
|
-
default: string;
|
|
95034
|
-
};
|
|
95035
|
-
showAdjacentMonths: {
|
|
95036
|
-
type: PropType<boolean>;
|
|
95037
|
-
default: boolean;
|
|
95038
|
-
};
|
|
95039
|
-
weekdays: {
|
|
95040
|
-
type: PropType<CalendarWeekdays[]>;
|
|
95041
|
-
default: () => number[];
|
|
95042
|
-
};
|
|
95043
|
-
weeksInMonth: Omit<{
|
|
95044
|
-
type: PropType<"dynamic" | "static">;
|
|
95045
|
-
default: string;
|
|
95046
|
-
}, "type" | "default"> & {
|
|
95047
|
-
type: PropType<"static" | "dynamic">;
|
|
95048
|
-
default: NonNullable<"static" | "dynamic">;
|
|
95049
|
-
};
|
|
95050
|
-
firstDayOfWeek: {
|
|
95051
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
95052
|
-
default: undefined;
|
|
95053
|
-
};
|
|
95054
|
-
allowedDates: PropType<unknown[] | ((date: unknown) => boolean)>;
|
|
95055
|
-
hideWeekdays: BooleanConstructor;
|
|
95056
|
-
showWeek: BooleanConstructor;
|
|
95057
|
-
rounded: {
|
|
95058
|
-
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
95059
|
-
default: undefined;
|
|
95060
|
-
};
|
|
95061
|
-
loading: (StringConstructor | BooleanConstructor)[];
|
|
95062
|
-
appendInnerIcon: PropType<IconValue>;
|
|
95063
|
-
clearable: BooleanConstructor;
|
|
95064
|
-
clearIcon: {
|
|
95065
|
-
type: PropType<IconValue>;
|
|
95066
|
-
default: string;
|
|
95067
|
-
};
|
|
95068
|
-
active: BooleanConstructor;
|
|
95069
|
-
centerAffix: {
|
|
95070
|
-
type: BooleanConstructor;
|
|
95071
|
-
default: undefined;
|
|
95072
|
-
};
|
|
95073
|
-
baseColor: StringConstructor;
|
|
95074
|
-
dirty: BooleanConstructor;
|
|
95075
|
-
glow: BooleanConstructor;
|
|
95076
|
-
error: BooleanConstructor;
|
|
95077
|
-
flat: BooleanConstructor;
|
|
95078
|
-
iconColor: (StringConstructor | BooleanConstructor)[];
|
|
95079
|
-
label: StringConstructor;
|
|
95080
|
-
persistentClear: BooleanConstructor;
|
|
95081
|
-
prependInnerIcon: PropType<IconValue>;
|
|
95082
|
-
reverse: BooleanConstructor;
|
|
95083
|
-
singleLine: BooleanConstructor;
|
|
95084
|
-
variant: {
|
|
95085
|
-
type: PropType<"filled" | "outlined" | "plain" | "underlined" | "solo" | "solo-inverted" | "solo-filled">;
|
|
95086
|
-
default: string;
|
|
95087
|
-
validator: (v: any) => boolean;
|
|
95088
|
-
};
|
|
95089
|
-
'onClick:clear': PropType<(args_0: MouseEvent) => void>;
|
|
95090
|
-
'onClick:appendInner': PropType<(args_0: MouseEvent) => void>;
|
|
95091
|
-
'onClick:prependInner': PropType<(args_0: MouseEvent) => void>;
|
|
95092
|
-
focused: BooleanConstructor;
|
|
95093
|
-
'onUpdate:focused': PropType<(args_0: boolean) => void>;
|
|
95094
|
-
errorMessages: {
|
|
95095
|
-
type: PropType<string | readonly string[] | null>;
|
|
95096
|
-
default: () => never[];
|
|
95097
|
-
};
|
|
95098
|
-
maxErrors: {
|
|
95099
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
95100
|
-
default: number;
|
|
95101
|
-
};
|
|
95102
|
-
name: StringConstructor;
|
|
95103
|
-
readonly: {
|
|
95104
|
-
type: PropType<boolean | null>;
|
|
95105
|
-
default: null;
|
|
95106
|
-
};
|
|
95107
|
-
rules: {
|
|
95108
|
-
type: PropType<readonly ValidationRule$1[]>;
|
|
95109
|
-
default: () => never[];
|
|
95110
|
-
};
|
|
95111
|
-
validateOn: PropType<ValidationProps["validateOn"]>;
|
|
95112
|
-
validationValue: null;
|
|
95113
|
-
density: {
|
|
95114
|
-
type: PropType<Density>;
|
|
95115
|
-
default: string;
|
|
95116
|
-
validator: (v: any) => boolean;
|
|
95117
|
-
};
|
|
95118
|
-
id: StringConstructor;
|
|
95119
|
-
appendIcon: PropType<IconValue>;
|
|
95120
|
-
prependIcon: {
|
|
95121
|
-
type: PropType<IconValue>;
|
|
95122
|
-
default: NonNullable<IconValue>;
|
|
95123
|
-
};
|
|
95124
|
-
hideDetails: PropType<boolean | "auto">;
|
|
95125
|
-
hideSpinButtons: BooleanConstructor;
|
|
95126
|
-
hint: StringConstructor;
|
|
95127
|
-
persistentHint: BooleanConstructor;
|
|
95128
|
-
messages: {
|
|
95129
|
-
type: PropType<string | readonly string[]>;
|
|
95130
|
-
default: () => never[];
|
|
95131
|
-
};
|
|
95132
|
-
direction: {
|
|
95133
|
-
type: PropType<"horizontal" | "vertical">;
|
|
95134
|
-
default: string;
|
|
95135
|
-
validator: (v: any) => boolean;
|
|
95136
|
-
};
|
|
95137
|
-
'onClick:prepend': PropType<(args_0: MouseEvent) => void>;
|
|
95138
|
-
'onClick:append': PropType<(args_0: MouseEvent) => void>;
|
|
95139
|
-
autofocus: BooleanConstructor;
|
|
95140
|
-
counter: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
95141
|
-
counterValue: PropType<number | ((value: any) => number)>;
|
|
95142
|
-
prefix: StringConstructor;
|
|
95143
|
-
placeholder: {
|
|
95144
|
-
type: PropType<string>;
|
|
95145
|
-
default: string;
|
|
95146
|
-
};
|
|
95147
|
-
persistentPlaceholder: BooleanConstructor;
|
|
95148
|
-
persistentCounter: BooleanConstructor;
|
|
95149
|
-
suffix: StringConstructor;
|
|
95150
|
-
role: StringConstructor;
|
|
95151
|
-
type: {
|
|
95152
|
-
type: StringConstructor;
|
|
95153
|
-
default: string;
|
|
95154
|
-
};
|
|
95155
|
-
modelModifiers: PropType<Record<string, boolean>>;
|
|
95156
|
-
cancelText: {
|
|
95157
|
-
type: StringConstructor;
|
|
95158
|
-
default: string;
|
|
95159
|
-
};
|
|
95160
|
-
okText: {
|
|
95161
|
-
type: StringConstructor;
|
|
95162
|
-
default: string;
|
|
95163
|
-
};
|
|
95164
|
-
hideActions: {
|
|
95165
|
-
type: PropType<boolean>;
|
|
95166
|
-
default: boolean;
|
|
95167
|
-
};
|
|
95168
|
-
mobile: Omit<{
|
|
95169
|
-
type: PropType<boolean | null>;
|
|
95170
|
-
default: boolean;
|
|
95171
|
-
}, "type" | "default"> & {
|
|
95172
|
-
type: PropType<boolean | null>;
|
|
95173
|
-
default: NonNullable<boolean | null> | null;
|
|
96251
|
+
validator: (v: string) => boolean;
|
|
95174
96252
|
};
|
|
95175
|
-
mobileBreakpoint: PropType<number | DisplayBreakpoint>;
|
|
95176
96253
|
displayFormat: (FunctionConstructor | StringConstructor)[];
|
|
95177
96254
|
location: {
|
|
95178
96255
|
type: PropType<StrategyProps$1["location"]>;
|
|
95179
96256
|
default: string;
|
|
95180
96257
|
};
|
|
96258
|
+
menu: BooleanConstructor;
|
|
95181
96259
|
updateOn: {
|
|
95182
96260
|
type: PropType<("blur" | "enter")[]>;
|
|
95183
96261
|
default: () => string[];
|
|
@@ -100257,6 +101335,7 @@ declare const allComponents_d_VChipGroup: typeof VChipGroup;
|
|
|
100257
101335
|
declare const allComponents_d_VClassIcon: typeof VClassIcon;
|
|
100258
101336
|
declare const allComponents_d_VCode: typeof VCode;
|
|
100259
101337
|
declare const allComponents_d_VCol: typeof VCol;
|
|
101338
|
+
declare const allComponents_d_VColorInput: typeof VColorInput;
|
|
100260
101339
|
declare const allComponents_d_VColorPicker: typeof VColorPicker;
|
|
100261
101340
|
declare const allComponents_d_VCombobox: typeof VCombobox;
|
|
100262
101341
|
declare const allComponents_d_VComponentIcon: typeof VComponentIcon;
|
|
@@ -100405,7 +101484,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
|
|
|
100405
101484
|
declare const allComponents_d_VWindow: typeof VWindow;
|
|
100406
101485
|
declare const allComponents_d_VWindowItem: typeof VWindowItem;
|
|
100407
101486
|
declare namespace allComponents_d {
|
|
100408
|
-
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 };
|
|
100409
101488
|
}
|
|
100410
101489
|
|
|
100411
101490
|
declare const md1: Blueprint;
|
|
@@ -100667,22 +101746,24 @@ declare module 'vue' {
|
|
|
100667
101746
|
$children?: VNodeChild
|
|
100668
101747
|
}
|
|
100669
101748
|
export interface GlobalComponents {
|
|
100670
|
-
VApp: VApp
|
|
100671
101749
|
VAppBar: VAppBar
|
|
100672
101750
|
VAppBarNavIcon: VAppBarNavIcon
|
|
100673
101751
|
VAppBarTitle: VAppBarTitle
|
|
100674
|
-
VBadge: VBadge
|
|
100675
101752
|
VAlert: VAlert
|
|
100676
101753
|
VAlertTitle: VAlertTitle
|
|
101754
|
+
VAutocomplete: VAutocomplete
|
|
100677
101755
|
VAvatar: VAvatar
|
|
101756
|
+
VBadge: VBadge
|
|
100678
101757
|
VBanner: VBanner
|
|
100679
101758
|
VBannerActions: VBannerActions
|
|
100680
101759
|
VBannerText: VBannerText
|
|
100681
|
-
VBtn: VBtn
|
|
100682
101760
|
VBottomNavigation: VBottomNavigation
|
|
101761
|
+
VBtn: VBtn
|
|
101762
|
+
VBtnToggle: VBtnToggle
|
|
100683
101763
|
VBottomSheet: VBottomSheet
|
|
100684
|
-
|
|
100685
|
-
|
|
101764
|
+
VBreadcrumbs: VBreadcrumbs
|
|
101765
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
|
101766
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
100686
101767
|
VBtnGroup: VBtnGroup
|
|
100687
101768
|
VCard: VCard
|
|
100688
101769
|
VCardActions: VCardActions
|
|
@@ -100690,16 +101771,15 @@ declare module 'vue' {
|
|
|
100690
101771
|
VCardSubtitle: VCardSubtitle
|
|
100691
101772
|
VCardText: VCardText
|
|
100692
101773
|
VCardTitle: VCardTitle
|
|
100693
|
-
VChip: VChip
|
|
100694
|
-
VAutocomplete: VAutocomplete
|
|
100695
|
-
VBtnToggle: VBtnToggle
|
|
100696
|
-
VChipGroup: VChipGroup
|
|
100697
|
-
VBreadcrumbs: VBreadcrumbs
|
|
100698
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
|
100699
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
|
100700
101774
|
VCheckbox: VCheckbox
|
|
100701
101775
|
VCheckboxBtn: VCheckboxBtn
|
|
101776
|
+
VChip: VChip
|
|
101777
|
+
VChipGroup: VChipGroup
|
|
100702
101778
|
VCode: VCode
|
|
101779
|
+
VColorPicker: VColorPicker
|
|
101780
|
+
VCarousel: VCarousel
|
|
101781
|
+
VCarouselItem: VCarouselItem
|
|
101782
|
+
VCombobox: VCombobox
|
|
100703
101783
|
VDataTable: VDataTable
|
|
100704
101784
|
VDataTableHeaders: VDataTableHeaders
|
|
100705
101785
|
VDataTableFooter: VDataTableFooter
|
|
@@ -100707,38 +101787,37 @@ declare module 'vue' {
|
|
|
100707
101787
|
VDataTableRow: VDataTableRow
|
|
100708
101788
|
VDataTableVirtual: VDataTableVirtual
|
|
100709
101789
|
VDataTableServer: VDataTableServer
|
|
100710
|
-
|
|
101790
|
+
VCounter: VCounter
|
|
100711
101791
|
VDatePicker: VDatePicker
|
|
100712
101792
|
VDatePickerControls: VDatePickerControls
|
|
100713
101793
|
VDatePickerHeader: VDatePickerHeader
|
|
100714
101794
|
VDatePickerMonth: VDatePickerMonth
|
|
100715
101795
|
VDatePickerMonths: VDatePickerMonths
|
|
100716
101796
|
VDatePickerYears: VDatePickerYears
|
|
100717
|
-
|
|
101797
|
+
VDialog: VDialog
|
|
100718
101798
|
VDivider: VDivider
|
|
100719
|
-
VCounter: VCounter
|
|
100720
101799
|
VEmptyState: VEmptyState
|
|
100721
101800
|
VFab: VFab
|
|
101801
|
+
VField: VField
|
|
101802
|
+
VFieldLabel: VFieldLabel
|
|
100722
101803
|
VFileInput: VFileInput
|
|
101804
|
+
VFooter: VFooter
|
|
100723
101805
|
VExpansionPanels: VExpansionPanels
|
|
100724
101806
|
VExpansionPanel: VExpansionPanel
|
|
100725
101807
|
VExpansionPanelText: VExpansionPanelText
|
|
100726
101808
|
VExpansionPanelTitle: VExpansionPanelTitle
|
|
100727
|
-
|
|
100728
|
-
VField: VField
|
|
100729
|
-
VFieldLabel: VFieldLabel
|
|
101809
|
+
VImg: VImg
|
|
100730
101810
|
VIcon: VIcon
|
|
100731
101811
|
VComponentIcon: VComponentIcon
|
|
100732
101812
|
VSvgIcon: VSvgIcon
|
|
100733
101813
|
VLigatureIcon: VLigatureIcon
|
|
100734
101814
|
VClassIcon: VClassIcon
|
|
100735
|
-
VImg: VImg
|
|
100736
|
-
VInfiniteScroll: VInfiniteScroll
|
|
100737
|
-
VKbd: VKbd
|
|
100738
101815
|
VInput: VInput
|
|
100739
|
-
VLabel: VLabel
|
|
100740
101816
|
VItemGroup: VItemGroup
|
|
100741
101817
|
VItem: VItem
|
|
101818
|
+
VInfiniteScroll: VInfiniteScroll
|
|
101819
|
+
VKbd: VKbd
|
|
101820
|
+
VLabel: VLabel
|
|
100742
101821
|
VList: VList
|
|
100743
101822
|
VListGroup: VListGroup
|
|
100744
101823
|
VListImg: VListImg
|
|
@@ -100748,70 +101827,69 @@ declare module 'vue' {
|
|
|
100748
101827
|
VListItemSubtitle: VListItemSubtitle
|
|
100749
101828
|
VListItemTitle: VListItemTitle
|
|
100750
101829
|
VListSubheader: VListSubheader
|
|
100751
|
-
VMain: VMain
|
|
100752
101830
|
VMenu: VMenu
|
|
100753
|
-
|
|
101831
|
+
VMain: VMain
|
|
100754
101832
|
VMessages: VMessages
|
|
100755
|
-
VNumberInput: VNumberInput
|
|
100756
|
-
VOverlay: VOverlay
|
|
100757
|
-
VDialog: VDialog
|
|
100758
|
-
VOtpInput: VOtpInput
|
|
100759
101833
|
VPagination: VPagination
|
|
101834
|
+
VOverlay: VOverlay
|
|
100760
101835
|
VProgressCircular: VProgressCircular
|
|
101836
|
+
VNavigationDrawer: VNavigationDrawer
|
|
101837
|
+
VNumberInput: VNumberInput
|
|
100761
101838
|
VProgressLinear: VProgressLinear
|
|
101839
|
+
VOtpInput: VOtpInput
|
|
100762
101840
|
VRadioGroup: VRadioGroup
|
|
100763
101841
|
VRating: VRating
|
|
100764
|
-
VSelect: VSelect
|
|
100765
101842
|
VSelectionControl: VSelectionControl
|
|
100766
101843
|
VSelectionControlGroup: VSelectionControlGroup
|
|
100767
101844
|
VSheet: VSheet
|
|
100768
101845
|
VSkeletonLoader: VSkeletonLoader
|
|
101846
|
+
VSnackbar: VSnackbar
|
|
101847
|
+
VSelect: VSelect
|
|
101848
|
+
VSlider: VSlider
|
|
101849
|
+
VSystemBar: VSystemBar
|
|
101850
|
+
VTable: VTable
|
|
100769
101851
|
VSlideGroup: VSlideGroup
|
|
100770
101852
|
VSlideGroupItem: VSlideGroupItem
|
|
100771
|
-
|
|
100772
|
-
|
|
101853
|
+
VTab: VTab
|
|
101854
|
+
VTabs: VTabs
|
|
101855
|
+
VTabsWindow: VTabsWindow
|
|
101856
|
+
VTabsWindowItem: VTabsWindowItem
|
|
100773
101857
|
VStepper: VStepper
|
|
100774
101858
|
VStepperActions: VStepperActions
|
|
100775
101859
|
VStepperHeader: VStepperHeader
|
|
100776
101860
|
VStepperItem: VStepperItem
|
|
100777
101861
|
VStepperWindow: VStepperWindow
|
|
100778
101862
|
VStepperWindowItem: VStepperWindowItem
|
|
100779
|
-
|
|
100780
|
-
|
|
100781
|
-
|
|
100782
|
-
VTabsWindowItem: VTabsWindowItem
|
|
100783
|
-
VTable: VTable
|
|
100784
|
-
VTextarea: VTextarea
|
|
100785
|
-
VTextField: VTextField
|
|
100786
|
-
VSystemBar: VSystemBar
|
|
100787
|
-
VTimeline: VTimeline
|
|
100788
|
-
VTimelineItem: VTimelineItem
|
|
101863
|
+
VToolbar: VToolbar
|
|
101864
|
+
VToolbarTitle: VToolbarTitle
|
|
101865
|
+
VToolbarItems: VToolbarItems
|
|
100789
101866
|
VTooltip: VTooltip
|
|
100790
|
-
|
|
100791
|
-
|
|
100792
|
-
VSlider: VSlider
|
|
101867
|
+
VTextarea: VTextarea
|
|
101868
|
+
VApp: VApp
|
|
100793
101869
|
VConfirmEdit: VConfirmEdit
|
|
100794
101870
|
VDataIterator: VDataIterator
|
|
101871
|
+
VWindow: VWindow
|
|
101872
|
+
VWindowItem: VWindowItem
|
|
100795
101873
|
VDefaultsProvider: VDefaultsProvider
|
|
101874
|
+
VContainer: VContainer
|
|
101875
|
+
VCol: VCol
|
|
101876
|
+
VRow: VRow
|
|
101877
|
+
VSpacer: VSpacer
|
|
100796
101878
|
VForm: VForm
|
|
100797
101879
|
VHover: VHover
|
|
100798
|
-
|
|
100799
|
-
VToolbarTitle: VToolbarTitle
|
|
100800
|
-
VToolbarItems: VToolbarItems
|
|
101880
|
+
VLazy: VLazy
|
|
100801
101881
|
VLayout: VLayout
|
|
100802
101882
|
VLayoutItem: VLayoutItem
|
|
100803
|
-
VLazy: VLazy
|
|
100804
101883
|
VLocaleProvider: VLocaleProvider
|
|
100805
|
-
VNoSsr: VNoSsr
|
|
100806
101884
|
VParallax: VParallax
|
|
100807
101885
|
VRadio: VRadio
|
|
100808
101886
|
VRangeSlider: VRangeSlider
|
|
100809
|
-
|
|
101887
|
+
VSwitch: VSwitch
|
|
100810
101888
|
VSnackbarQueue: VSnackbarQueue
|
|
101889
|
+
VNoSsr: VNoSsr
|
|
100811
101890
|
VSparkline: VSparkline
|
|
100812
101891
|
VSpeedDial: VSpeedDial
|
|
100813
101892
|
VThemeProvider: VThemeProvider
|
|
100814
|
-
VValidation: VValidation
|
|
100815
101893
|
VFabTransition: VFabTransition
|
|
100816
101894
|
VDialogBottomTransition: VDialogBottomTransition
|
|
100817
101895
|
VDialogTopTransition: VDialogTopTransition
|
|
@@ -100829,30 +101907,32 @@ declare module 'vue' {
|
|
|
100829
101907
|
VExpandXTransition: VExpandXTransition
|
|
100830
101908
|
VDialogTransition: VDialogTransition
|
|
100831
101909
|
VVirtualScroll: VVirtualScroll
|
|
100832
|
-
|
|
100833
|
-
|
|
100834
|
-
|
|
100835
|
-
|
|
100836
|
-
|
|
100837
|
-
VPickerTitle: VPickerTitle
|
|
101910
|
+
VValidation: VValidation
|
|
101911
|
+
VTimeline: VTimeline
|
|
101912
|
+
VTimelineItem: VTimelineItem
|
|
101913
|
+
VTextField: VTextField
|
|
101914
|
+
VResponsive: VResponsive
|
|
100838
101915
|
VCalendar: VCalendar
|
|
100839
101916
|
VCalendarDay: VCalendarDay
|
|
100840
101917
|
VCalendarHeader: VCalendarHeader
|
|
100841
101918
|
VCalendarInterval: VCalendarInterval
|
|
100842
101919
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
|
100843
101920
|
VCalendarMonthDay: VCalendarMonthDay
|
|
100844
|
-
|
|
100845
|
-
VFileUpload: VFileUpload
|
|
100846
|
-
VFileUploadItem: VFileUploadItem
|
|
101921
|
+
VColorInput: VColorInput
|
|
100847
101922
|
VStepperVertical: VStepperVertical
|
|
100848
101923
|
VStepperVerticalItem: VStepperVerticalItem
|
|
100849
101924
|
VStepperVerticalActions: VStepperVerticalActions
|
|
100850
|
-
|
|
100851
|
-
|
|
100852
|
-
|
|
101925
|
+
VPicker: VPicker
|
|
101926
|
+
VPickerTitle: VPickerTitle
|
|
101927
|
+
VIconBtn: VIconBtn
|
|
101928
|
+
VFileUpload: VFileUpload
|
|
101929
|
+
VFileUploadItem: VFileUploadItem
|
|
100853
101930
|
VTreeview: VTreeview
|
|
100854
101931
|
VTreeviewItem: VTreeviewItem
|
|
100855
101932
|
VTreeviewGroup: VTreeviewGroup
|
|
101933
|
+
VTimePicker: VTimePicker
|
|
101934
|
+
VTimePickerClock: VTimePickerClock
|
|
101935
|
+
VTimePickerControls: VTimePickerControls
|
|
100856
101936
|
VDateInput: VDateInput
|
|
100857
101937
|
VPullToRefresh: VPullToRefresh
|
|
100858
101938
|
}
|