vuetify 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +775 -639
- package/dist/json/importMap.json +16 -16
- package/dist/json/tags.json +35 -1
- package/dist/json/web-types.json +1657 -1327
- package/dist/vuetify-labs.css +131 -125
- package/dist/vuetify-labs.d.ts +419 -86
- package/dist/vuetify-labs.esm.js +100 -95
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +100 -95
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +53 -47
- package/dist/vuetify.d.ts +524 -191
- package/dist/vuetify.esm.js +95 -95
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +95 -95
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +46 -48
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs +7 -11
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/VAppBarNavIcon.mjs +10 -16
- package/lib/components/VAppBar/VAppBarNavIcon.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +394 -28
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +10 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VBtn/VBtn.mjs +7 -6
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VCheckbox/VCheckboxBtn.mjs +0 -1
- package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +9 -2
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VFileInput/VFileInput.mjs +2 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VIcon/VIcon.mjs +28 -29
- package/lib/components/VIcon/VIcon.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +1 -8
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.mjs +9 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSheet/VSheet.css +6 -0
- package/lib/components/VSheet/_variables.scss +1 -1
- package/lib/components/VTextField/VTextField.mjs +1 -1
- package/lib/components/VTextField/VTextField.mjs.map +1 -1
- package/lib/components/VTextarea/VTextarea.mjs +1 -1
- package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
- package/lib/components/VTreeview/_mixins.sass +0 -0
- package/lib/components/VTreeview/util/filterTreeItems.mjs +0 -0
- package/lib/components/index.d.ts +386 -53
- package/lib/composables/icons.mjs +2 -2
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/scroll.mjs +16 -17
- package/lib/composables/scroll.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +5 -5
- package/lib/labs/VDataTable/composables/paginate.mjs +6 -1
- package/lib/labs/VDataTable/composables/paginate.mjs.map +1 -1
- package/lib/locale/el.mjs +0 -0
- package/lib/locale/index.mjs +0 -0
- package/package.json +2 -2
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
import { ComponentPropsOptions, ExtractPropTypes, PropType, JSXComponent } from 'vue';
|
|
2
|
+
import { ComponentPropsOptions, ExtractPropTypes, PropType, ComponentInternalInstance, Ref, ComputedRef, JSXComponent } from 'vue';
|
|
3
|
+
// @ts-ignore
|
|
4
|
+
import * as vue_router from 'vue-router';
|
|
5
|
+
|
|
6
|
+
declare const block: readonly ["top", "bottom"];
|
|
7
|
+
declare const inline: readonly ["start", "end", "left", "right"];
|
|
8
|
+
type Tblock = typeof block[number];
|
|
9
|
+
type Tinline = typeof inline[number];
|
|
10
|
+
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
|
3
11
|
|
|
4
12
|
interface FilterPropsOptions<PropsOptions extends Readonly<ComponentPropsOptions>, Props = ExtractPropTypes<PropsOptions>> {
|
|
5
13
|
filterProps<T extends Partial<Props>, U extends Exclude<keyof Props, Exclude<keyof Props, keyof T>>>(props: T): [yes: Partial<Pick<T, U>>, no: Omit<T, U>];
|
|
6
14
|
}
|
|
7
15
|
|
|
8
|
-
type Density = null | 'prominent' | 'default' | 'comfortable' | 'compact';
|
|
16
|
+
type Density$1 = null | 'prominent' | 'default' | 'comfortable' | 'compact';
|
|
9
17
|
|
|
10
18
|
declare const VAppBar: {
|
|
11
19
|
new (...args: any[]): {
|
|
@@ -21,10 +29,11 @@ declare const VAppBar: {
|
|
|
21
29
|
tag: string;
|
|
22
30
|
collapse: boolean;
|
|
23
31
|
rounded: string | number | boolean;
|
|
24
|
-
density: Density;
|
|
32
|
+
density: Density$1;
|
|
25
33
|
extended: boolean;
|
|
26
34
|
extensionHeight: string | number;
|
|
27
35
|
floating: boolean;
|
|
36
|
+
scrollThreshold: string | number;
|
|
28
37
|
modelValue: boolean;
|
|
29
38
|
}> & Omit<{
|
|
30
39
|
flat: boolean;
|
|
@@ -35,10 +44,11 @@ declare const VAppBar: {
|
|
|
35
44
|
style: vue.StyleValue;
|
|
36
45
|
tag: string;
|
|
37
46
|
collapse: boolean;
|
|
38
|
-
density: Density;
|
|
47
|
+
density: Density$1;
|
|
39
48
|
extended: boolean;
|
|
40
49
|
extensionHeight: string | number;
|
|
41
50
|
floating: boolean;
|
|
51
|
+
scrollThreshold: string | number;
|
|
42
52
|
modelValue: boolean;
|
|
43
53
|
} & {
|
|
44
54
|
name?: string | undefined;
|
|
@@ -52,7 +62,6 @@ declare const VAppBar: {
|
|
|
52
62
|
theme?: string | undefined;
|
|
53
63
|
rounded?: string | number | boolean | undefined;
|
|
54
64
|
scrollTarget?: string | undefined;
|
|
55
|
-
scrollThreshold?: string | number | undefined;
|
|
56
65
|
} & {
|
|
57
66
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
58
67
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -79,7 +88,7 @@ declare const VAppBar: {
|
|
|
79
88
|
"v-slot:extension"?: false | (() => vue.VNodeChild) | undefined;
|
|
80
89
|
} & {
|
|
81
90
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
82
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "absolute" | "location" | "height" | "order" | "style" | "tag" | "collapse" | "rounded" | "density" | "extended" | "extensionHeight" | "floating" | "modelValue">;
|
|
91
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "absolute" | "location" | "height" | "order" | "style" | "tag" | "collapse" | "rounded" | "density" | "extended" | "extensionHeight" | "floating" | "scrollThreshold" | "modelValue">;
|
|
83
92
|
$attrs: {
|
|
84
93
|
[x: string]: unknown;
|
|
85
94
|
};
|
|
@@ -102,10 +111,11 @@ declare const VAppBar: {
|
|
|
102
111
|
style: vue.StyleValue;
|
|
103
112
|
tag: string;
|
|
104
113
|
collapse: boolean;
|
|
105
|
-
density: Density;
|
|
114
|
+
density: Density$1;
|
|
106
115
|
extended: boolean;
|
|
107
116
|
extensionHeight: string | number;
|
|
108
117
|
floating: boolean;
|
|
118
|
+
scrollThreshold: string | number;
|
|
109
119
|
modelValue: boolean;
|
|
110
120
|
} & {
|
|
111
121
|
name?: string | undefined;
|
|
@@ -119,7 +129,6 @@ declare const VAppBar: {
|
|
|
119
129
|
theme?: string | undefined;
|
|
120
130
|
rounded?: string | number | boolean | undefined;
|
|
121
131
|
scrollTarget?: string | undefined;
|
|
122
|
-
scrollThreshold?: string | number | undefined;
|
|
123
132
|
} & {
|
|
124
133
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
125
134
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -158,10 +167,11 @@ declare const VAppBar: {
|
|
|
158
167
|
tag: string;
|
|
159
168
|
collapse: boolean;
|
|
160
169
|
rounded: string | number | boolean;
|
|
161
|
-
density: Density;
|
|
170
|
+
density: Density$1;
|
|
162
171
|
extended: boolean;
|
|
163
172
|
extensionHeight: string | number;
|
|
164
173
|
floating: boolean;
|
|
174
|
+
scrollThreshold: string | number;
|
|
165
175
|
modelValue: boolean;
|
|
166
176
|
}, {}, string> & {
|
|
167
177
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -192,10 +202,11 @@ declare const VAppBar: {
|
|
|
192
202
|
style: vue.StyleValue;
|
|
193
203
|
tag: string;
|
|
194
204
|
collapse: boolean;
|
|
195
|
-
density: Density;
|
|
205
|
+
density: Density$1;
|
|
196
206
|
extended: boolean;
|
|
197
207
|
extensionHeight: string | number;
|
|
198
208
|
floating: boolean;
|
|
209
|
+
scrollThreshold: string | number;
|
|
199
210
|
modelValue: boolean;
|
|
200
211
|
} & {
|
|
201
212
|
name?: string | undefined;
|
|
@@ -209,7 +220,6 @@ declare const VAppBar: {
|
|
|
209
220
|
theme?: string | undefined;
|
|
210
221
|
rounded?: string | number | boolean | undefined;
|
|
211
222
|
scrollTarget?: string | undefined;
|
|
212
|
-
scrollThreshold?: string | number | undefined;
|
|
213
223
|
} & {
|
|
214
224
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
215
225
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -249,10 +259,11 @@ declare const VAppBar: {
|
|
|
249
259
|
style: vue.StyleValue;
|
|
250
260
|
tag: string;
|
|
251
261
|
collapse: boolean;
|
|
252
|
-
density: Density;
|
|
262
|
+
density: Density$1;
|
|
253
263
|
extended: boolean;
|
|
254
264
|
extensionHeight: string | number;
|
|
255
265
|
floating: boolean;
|
|
266
|
+
scrollThreshold: string | number;
|
|
256
267
|
modelValue: boolean;
|
|
257
268
|
} & {
|
|
258
269
|
name?: string | undefined;
|
|
@@ -266,7 +277,6 @@ declare const VAppBar: {
|
|
|
266
277
|
theme?: string | undefined;
|
|
267
278
|
rounded?: string | number | boolean | undefined;
|
|
268
279
|
scrollTarget?: string | undefined;
|
|
269
|
-
scrollThreshold?: string | number | undefined;
|
|
270
280
|
} & {
|
|
271
281
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
272
282
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -305,10 +315,11 @@ declare const VAppBar: {
|
|
|
305
315
|
tag: string;
|
|
306
316
|
collapse: boolean;
|
|
307
317
|
rounded: string | number | boolean;
|
|
308
|
-
density: Density;
|
|
318
|
+
density: Density$1;
|
|
309
319
|
extended: boolean;
|
|
310
320
|
extensionHeight: string | number;
|
|
311
321
|
floating: boolean;
|
|
322
|
+
scrollThreshold: string | number;
|
|
312
323
|
modelValue: boolean;
|
|
313
324
|
}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
314
325
|
height: {
|
|
@@ -320,6 +331,7 @@ declare const VAppBar: {
|
|
|
320
331
|
};
|
|
321
332
|
scrollThreshold: {
|
|
322
333
|
type: (StringConstructor | NumberConstructor)[];
|
|
334
|
+
default: number;
|
|
323
335
|
};
|
|
324
336
|
name: {
|
|
325
337
|
type: StringConstructor;
|
|
@@ -354,7 +366,7 @@ declare const VAppBar: {
|
|
|
354
366
|
collapse: BooleanConstructor;
|
|
355
367
|
color: StringConstructor;
|
|
356
368
|
density: {
|
|
357
|
-
type: PropType<Density>;
|
|
369
|
+
type: PropType<Density$1>;
|
|
358
370
|
default: string;
|
|
359
371
|
validator: (v: any) => boolean;
|
|
360
372
|
};
|
|
@@ -387,6 +399,7 @@ declare const VAppBar: {
|
|
|
387
399
|
};
|
|
388
400
|
scrollThreshold: {
|
|
389
401
|
type: (StringConstructor | NumberConstructor)[];
|
|
402
|
+
default: number;
|
|
390
403
|
};
|
|
391
404
|
name: {
|
|
392
405
|
type: StringConstructor;
|
|
@@ -421,7 +434,7 @@ declare const VAppBar: {
|
|
|
421
434
|
collapse: BooleanConstructor;
|
|
422
435
|
color: StringConstructor;
|
|
423
436
|
density: {
|
|
424
|
-
type: PropType<Density>;
|
|
437
|
+
type: PropType<Density$1>;
|
|
425
438
|
default: string;
|
|
426
439
|
validator: (v: any) => boolean;
|
|
427
440
|
};
|
|
@@ -447,6 +460,31 @@ declare const VAppBar: {
|
|
|
447
460
|
}>>;
|
|
448
461
|
type VAppBar = InstanceType<typeof VAppBar>;
|
|
449
462
|
|
|
463
|
+
interface GroupItem {
|
|
464
|
+
id: number;
|
|
465
|
+
value: Ref<unknown>;
|
|
466
|
+
disabled: Ref<boolean | undefined>;
|
|
467
|
+
}
|
|
468
|
+
interface GroupProvide {
|
|
469
|
+
register: (item: GroupItem, cmp: ComponentInternalInstance) => void;
|
|
470
|
+
unregister: (id: number) => void;
|
|
471
|
+
select: (id: number, value: boolean) => void;
|
|
472
|
+
selected: Ref<Readonly<number[]>>;
|
|
473
|
+
isSelected: (id: number) => boolean;
|
|
474
|
+
prev: () => void;
|
|
475
|
+
next: () => void;
|
|
476
|
+
selectedClass: Ref<string | undefined>;
|
|
477
|
+
items: ComputedRef<{
|
|
478
|
+
id: number;
|
|
479
|
+
value: unknown;
|
|
480
|
+
disabled: boolean | undefined;
|
|
481
|
+
}[]>;
|
|
482
|
+
disabled: Ref<boolean | undefined>;
|
|
483
|
+
getItemIndex: (value: unknown) => number;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
type Density = null | 'default' | 'comfortable' | 'compact';
|
|
487
|
+
|
|
450
488
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
451
489
|
declare const IconValue: PropType<IconValue>;
|
|
452
490
|
|
|
@@ -455,13 +493,61 @@ declare const VAppBarNavIcon: {
|
|
|
455
493
|
$: vue.ComponentInternalInstance;
|
|
456
494
|
$data: {};
|
|
457
495
|
$props: Partial<{
|
|
496
|
+
symbol: any;
|
|
497
|
+
replace: boolean;
|
|
498
|
+
flat: boolean;
|
|
499
|
+
exact: boolean;
|
|
500
|
+
block: boolean;
|
|
501
|
+
active: boolean;
|
|
458
502
|
style: vue.StyleValue;
|
|
459
|
-
|
|
503
|
+
disabled: boolean;
|
|
504
|
+
size: string | number;
|
|
505
|
+
tag: string;
|
|
506
|
+
icon: NonNullable<boolean | IconValue>;
|
|
507
|
+
rounded: string | number | boolean;
|
|
508
|
+
density: Density;
|
|
509
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
510
|
+
stacked: boolean;
|
|
511
|
+
ripple: boolean;
|
|
460
512
|
}> & Omit<{
|
|
513
|
+
symbol: any;
|
|
514
|
+
replace: boolean;
|
|
515
|
+
flat: boolean;
|
|
516
|
+
exact: boolean;
|
|
517
|
+
block: boolean;
|
|
461
518
|
style: vue.StyleValue;
|
|
462
|
-
|
|
519
|
+
disabled: boolean;
|
|
520
|
+
size: string | number;
|
|
521
|
+
tag: string;
|
|
522
|
+
icon: NonNullable<boolean | IconValue>;
|
|
523
|
+
density: Density;
|
|
524
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
525
|
+
stacked: boolean;
|
|
526
|
+
ripple: boolean;
|
|
463
527
|
} & {
|
|
528
|
+
location?: Anchor | undefined;
|
|
529
|
+
height?: string | number | undefined;
|
|
530
|
+
width?: string | number | undefined;
|
|
531
|
+
active?: boolean | undefined;
|
|
532
|
+
border?: string | number | boolean | undefined;
|
|
533
|
+
color?: string | undefined;
|
|
534
|
+
maxHeight?: string | number | undefined;
|
|
535
|
+
maxWidth?: string | number | undefined;
|
|
536
|
+
minHeight?: string | number | undefined;
|
|
537
|
+
minWidth?: string | number | undefined;
|
|
538
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
539
|
+
value?: any;
|
|
540
|
+
loading?: string | boolean | undefined;
|
|
541
|
+
text?: string | undefined;
|
|
464
542
|
class?: any;
|
|
543
|
+
href?: string | undefined;
|
|
544
|
+
elevation?: string | number | undefined;
|
|
545
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
546
|
+
theme?: string | undefined;
|
|
547
|
+
rounded?: string | number | boolean | undefined;
|
|
548
|
+
selectedClass?: string | undefined;
|
|
549
|
+
prependIcon?: IconValue | undefined;
|
|
550
|
+
appendIcon?: IconValue | undefined;
|
|
465
551
|
} & {
|
|
466
552
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
467
553
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -480,7 +566,7 @@ declare const VAppBarNavIcon: {
|
|
|
480
566
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
481
567
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
482
568
|
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
483
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "style" | "icon">;
|
|
569
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "symbol" | "replace" | "flat" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "icon" | "rounded" | "density" | "variant" | "stacked" | "ripple">;
|
|
484
570
|
$attrs: {
|
|
485
571
|
[x: string]: unknown;
|
|
486
572
|
};
|
|
@@ -495,10 +581,44 @@ declare const VAppBarNavIcon: {
|
|
|
495
581
|
$emit: (event: string, ...args: any[]) => void;
|
|
496
582
|
$el: any;
|
|
497
583
|
$options: vue.ComponentOptionsBase<{
|
|
584
|
+
symbol: any;
|
|
585
|
+
replace: boolean;
|
|
586
|
+
flat: boolean;
|
|
587
|
+
exact: boolean;
|
|
588
|
+
block: boolean;
|
|
498
589
|
style: vue.StyleValue;
|
|
499
|
-
|
|
590
|
+
disabled: boolean;
|
|
591
|
+
size: string | number;
|
|
592
|
+
tag: string;
|
|
593
|
+
icon: NonNullable<boolean | IconValue>;
|
|
594
|
+
density: Density;
|
|
595
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
596
|
+
stacked: boolean;
|
|
597
|
+
ripple: boolean;
|
|
500
598
|
} & {
|
|
599
|
+
location?: Anchor | undefined;
|
|
600
|
+
height?: string | number | undefined;
|
|
601
|
+
width?: string | number | undefined;
|
|
602
|
+
active?: boolean | undefined;
|
|
603
|
+
border?: string | number | boolean | undefined;
|
|
604
|
+
color?: string | undefined;
|
|
605
|
+
maxHeight?: string | number | undefined;
|
|
606
|
+
maxWidth?: string | number | undefined;
|
|
607
|
+
minHeight?: string | number | undefined;
|
|
608
|
+
minWidth?: string | number | undefined;
|
|
609
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
610
|
+
value?: any;
|
|
611
|
+
loading?: string | boolean | undefined;
|
|
612
|
+
text?: string | undefined;
|
|
501
613
|
class?: any;
|
|
614
|
+
href?: string | undefined;
|
|
615
|
+
elevation?: string | number | undefined;
|
|
616
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
617
|
+
theme?: string | undefined;
|
|
618
|
+
rounded?: string | number | boolean | undefined;
|
|
619
|
+
selectedClass?: string | undefined;
|
|
620
|
+
prependIcon?: IconValue | undefined;
|
|
621
|
+
appendIcon?: IconValue | undefined;
|
|
502
622
|
} & {
|
|
503
623
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
504
624
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -518,8 +638,22 @@ declare const VAppBarNavIcon: {
|
|
|
518
638
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
519
639
|
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
520
640
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
641
|
+
symbol: any;
|
|
642
|
+
replace: boolean;
|
|
643
|
+
flat: boolean;
|
|
644
|
+
exact: boolean;
|
|
645
|
+
block: boolean;
|
|
646
|
+
active: boolean;
|
|
521
647
|
style: vue.StyleValue;
|
|
522
|
-
|
|
648
|
+
disabled: boolean;
|
|
649
|
+
size: string | number;
|
|
650
|
+
tag: string;
|
|
651
|
+
icon: NonNullable<boolean | IconValue>;
|
|
652
|
+
rounded: string | number | boolean;
|
|
653
|
+
density: Density;
|
|
654
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
655
|
+
stacked: boolean;
|
|
656
|
+
ripple: boolean;
|
|
523
657
|
}, {}, string> & {
|
|
524
658
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
525
659
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -541,10 +675,44 @@ declare const VAppBarNavIcon: {
|
|
|
541
675
|
$nextTick: typeof vue.nextTick;
|
|
542
676
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: vue.WatchOptions<boolean> | undefined): vue.WatchStopHandle;
|
|
543
677
|
} & {
|
|
678
|
+
symbol: any;
|
|
679
|
+
replace: boolean;
|
|
680
|
+
flat: boolean;
|
|
681
|
+
exact: boolean;
|
|
682
|
+
block: boolean;
|
|
544
683
|
style: vue.StyleValue;
|
|
545
|
-
|
|
684
|
+
disabled: boolean;
|
|
685
|
+
size: string | number;
|
|
686
|
+
tag: string;
|
|
687
|
+
icon: NonNullable<boolean | IconValue>;
|
|
688
|
+
density: Density;
|
|
689
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
690
|
+
stacked: boolean;
|
|
691
|
+
ripple: boolean;
|
|
546
692
|
} & {
|
|
693
|
+
location?: Anchor | undefined;
|
|
694
|
+
height?: string | number | undefined;
|
|
695
|
+
width?: string | number | undefined;
|
|
696
|
+
active?: boolean | undefined;
|
|
697
|
+
border?: string | number | boolean | undefined;
|
|
698
|
+
color?: string | undefined;
|
|
699
|
+
maxHeight?: string | number | undefined;
|
|
700
|
+
maxWidth?: string | number | undefined;
|
|
701
|
+
minHeight?: string | number | undefined;
|
|
702
|
+
minWidth?: string | number | undefined;
|
|
703
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
704
|
+
value?: any;
|
|
705
|
+
loading?: string | boolean | undefined;
|
|
706
|
+
text?: string | undefined;
|
|
547
707
|
class?: any;
|
|
708
|
+
href?: string | undefined;
|
|
709
|
+
elevation?: string | number | undefined;
|
|
710
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
711
|
+
theme?: string | undefined;
|
|
712
|
+
rounded?: string | number | boolean | undefined;
|
|
713
|
+
selectedClass?: string | undefined;
|
|
714
|
+
prependIcon?: IconValue | undefined;
|
|
715
|
+
appendIcon?: IconValue | undefined;
|
|
548
716
|
} & {
|
|
549
717
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
550
718
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -568,10 +736,44 @@ declare const VAppBarNavIcon: {
|
|
|
568
736
|
__isTeleport?: undefined;
|
|
569
737
|
__isSuspense?: undefined;
|
|
570
738
|
} & vue.ComponentOptionsBase<{
|
|
739
|
+
symbol: any;
|
|
740
|
+
replace: boolean;
|
|
741
|
+
flat: boolean;
|
|
742
|
+
exact: boolean;
|
|
743
|
+
block: boolean;
|
|
571
744
|
style: vue.StyleValue;
|
|
572
|
-
|
|
745
|
+
disabled: boolean;
|
|
746
|
+
size: string | number;
|
|
747
|
+
tag: string;
|
|
748
|
+
icon: NonNullable<boolean | IconValue>;
|
|
749
|
+
density: Density;
|
|
750
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
751
|
+
stacked: boolean;
|
|
752
|
+
ripple: boolean;
|
|
573
753
|
} & {
|
|
754
|
+
location?: Anchor | undefined;
|
|
755
|
+
height?: string | number | undefined;
|
|
756
|
+
width?: string | number | undefined;
|
|
757
|
+
active?: boolean | undefined;
|
|
758
|
+
border?: string | number | boolean | undefined;
|
|
759
|
+
color?: string | undefined;
|
|
760
|
+
maxHeight?: string | number | undefined;
|
|
761
|
+
maxWidth?: string | number | undefined;
|
|
762
|
+
minHeight?: string | number | undefined;
|
|
763
|
+
minWidth?: string | number | undefined;
|
|
764
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
765
|
+
value?: any;
|
|
766
|
+
loading?: string | boolean | undefined;
|
|
767
|
+
text?: string | undefined;
|
|
574
768
|
class?: any;
|
|
769
|
+
href?: string | undefined;
|
|
770
|
+
elevation?: string | number | undefined;
|
|
771
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
772
|
+
theme?: string | undefined;
|
|
773
|
+
rounded?: string | number | boolean | undefined;
|
|
774
|
+
selectedClass?: string | undefined;
|
|
775
|
+
prependIcon?: IconValue | undefined;
|
|
776
|
+
appendIcon?: IconValue | undefined;
|
|
575
777
|
} & {
|
|
576
778
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
577
779
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -591,28 +793,192 @@ declare const VAppBarNavIcon: {
|
|
|
591
793
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
592
794
|
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
593
795
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
796
|
+
symbol: any;
|
|
797
|
+
replace: boolean;
|
|
798
|
+
flat: boolean;
|
|
799
|
+
exact: boolean;
|
|
800
|
+
block: boolean;
|
|
801
|
+
active: boolean;
|
|
594
802
|
style: vue.StyleValue;
|
|
595
|
-
|
|
803
|
+
disabled: boolean;
|
|
804
|
+
size: string | number;
|
|
805
|
+
tag: string;
|
|
806
|
+
icon: NonNullable<boolean | IconValue>;
|
|
807
|
+
rounded: string | number | boolean;
|
|
808
|
+
density: Density;
|
|
809
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
810
|
+
stacked: boolean;
|
|
811
|
+
ripple: boolean;
|
|
596
812
|
}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
813
|
+
color: StringConstructor;
|
|
814
|
+
variant: Omit<Omit<{
|
|
815
|
+
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
816
|
+
default: string;
|
|
817
|
+
validator: (v: any) => boolean;
|
|
818
|
+
}, "type" | "default"> & {
|
|
819
|
+
type: vue.PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
820
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
821
|
+
}, "type" | "default"> & {
|
|
822
|
+
type: vue.PropType<NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>>;
|
|
823
|
+
default: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
824
|
+
};
|
|
825
|
+
theme: StringConstructor;
|
|
826
|
+
tag: Omit<{
|
|
827
|
+
type: StringConstructor;
|
|
828
|
+
default: string;
|
|
829
|
+
}, "type" | "default"> & {
|
|
830
|
+
type: vue.PropType<string>;
|
|
831
|
+
default: string;
|
|
832
|
+
};
|
|
833
|
+
size: {
|
|
834
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
835
|
+
default: string;
|
|
836
|
+
};
|
|
837
|
+
href: StringConstructor;
|
|
838
|
+
replace: BooleanConstructor;
|
|
839
|
+
to: vue.PropType<vue_router.RouteLocationRaw>;
|
|
840
|
+
exact: BooleanConstructor;
|
|
841
|
+
rounded: {
|
|
842
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
843
|
+
default: undefined;
|
|
844
|
+
};
|
|
845
|
+
position: {
|
|
846
|
+
type: vue.PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
847
|
+
validator: (v: any) => boolean;
|
|
848
|
+
};
|
|
849
|
+
location: vue.PropType<Anchor>;
|
|
850
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
851
|
+
value: null;
|
|
852
|
+
disabled: BooleanConstructor;
|
|
853
|
+
selectedClass: StringConstructor;
|
|
854
|
+
elevation: {
|
|
855
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
856
|
+
validator(v: any): boolean;
|
|
857
|
+
};
|
|
858
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
859
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
860
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
861
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
862
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
863
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
864
|
+
density: {
|
|
865
|
+
type: vue.PropType<Density>;
|
|
866
|
+
default: string;
|
|
867
|
+
validator: (v: any) => boolean;
|
|
868
|
+
};
|
|
597
869
|
class: vue.PropType<any>;
|
|
598
870
|
style: {
|
|
599
871
|
type: vue.PropType<vue.StyleValue>;
|
|
600
872
|
default: null;
|
|
601
873
|
};
|
|
874
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
875
|
+
active: {
|
|
876
|
+
type: BooleanConstructor;
|
|
877
|
+
default: undefined;
|
|
878
|
+
};
|
|
879
|
+
symbol: {
|
|
880
|
+
type: null;
|
|
881
|
+
default: vue.InjectionKey<GroupProvide>;
|
|
882
|
+
};
|
|
883
|
+
flat: BooleanConstructor;
|
|
602
884
|
icon: {
|
|
603
|
-
type: vue.PropType<IconValue
|
|
604
|
-
default:
|
|
885
|
+
type: vue.PropType<NonNullable<boolean | IconValue>>;
|
|
886
|
+
default: NonNullable<boolean | IconValue>;
|
|
605
887
|
};
|
|
888
|
+
prependIcon: vue.PropType<IconValue>;
|
|
889
|
+
appendIcon: vue.PropType<IconValue>;
|
|
890
|
+
block: BooleanConstructor;
|
|
891
|
+
stacked: BooleanConstructor;
|
|
892
|
+
ripple: {
|
|
893
|
+
type: BooleanConstructor;
|
|
894
|
+
default: boolean;
|
|
895
|
+
};
|
|
896
|
+
text: StringConstructor;
|
|
606
897
|
}, vue.ExtractPropTypes<{
|
|
898
|
+
color: StringConstructor;
|
|
899
|
+
variant: Omit<Omit<{
|
|
900
|
+
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
901
|
+
default: string;
|
|
902
|
+
validator: (v: any) => boolean;
|
|
903
|
+
}, "type" | "default"> & {
|
|
904
|
+
type: vue.PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
905
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
906
|
+
}, "type" | "default"> & {
|
|
907
|
+
type: vue.PropType<NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>>;
|
|
908
|
+
default: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
909
|
+
};
|
|
910
|
+
theme: StringConstructor;
|
|
911
|
+
tag: Omit<{
|
|
912
|
+
type: StringConstructor;
|
|
913
|
+
default: string;
|
|
914
|
+
}, "type" | "default"> & {
|
|
915
|
+
type: vue.PropType<string>;
|
|
916
|
+
default: string;
|
|
917
|
+
};
|
|
918
|
+
size: {
|
|
919
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
920
|
+
default: string;
|
|
921
|
+
};
|
|
922
|
+
href: StringConstructor;
|
|
923
|
+
replace: BooleanConstructor;
|
|
924
|
+
to: vue.PropType<vue_router.RouteLocationRaw>;
|
|
925
|
+
exact: BooleanConstructor;
|
|
926
|
+
rounded: {
|
|
927
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
928
|
+
default: undefined;
|
|
929
|
+
};
|
|
930
|
+
position: {
|
|
931
|
+
type: vue.PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
932
|
+
validator: (v: any) => boolean;
|
|
933
|
+
};
|
|
934
|
+
location: vue.PropType<Anchor>;
|
|
935
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
936
|
+
value: null;
|
|
937
|
+
disabled: BooleanConstructor;
|
|
938
|
+
selectedClass: StringConstructor;
|
|
939
|
+
elevation: {
|
|
940
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
941
|
+
validator(v: any): boolean;
|
|
942
|
+
};
|
|
943
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
944
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
945
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
946
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
947
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
948
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
949
|
+
density: {
|
|
950
|
+
type: vue.PropType<Density>;
|
|
951
|
+
default: string;
|
|
952
|
+
validator: (v: any) => boolean;
|
|
953
|
+
};
|
|
607
954
|
class: vue.PropType<any>;
|
|
608
955
|
style: {
|
|
609
956
|
type: vue.PropType<vue.StyleValue>;
|
|
610
957
|
default: null;
|
|
611
958
|
};
|
|
959
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
960
|
+
active: {
|
|
961
|
+
type: BooleanConstructor;
|
|
962
|
+
default: undefined;
|
|
963
|
+
};
|
|
964
|
+
symbol: {
|
|
965
|
+
type: null;
|
|
966
|
+
default: vue.InjectionKey<GroupProvide>;
|
|
967
|
+
};
|
|
968
|
+
flat: BooleanConstructor;
|
|
612
969
|
icon: {
|
|
613
|
-
type: vue.PropType<IconValue
|
|
614
|
-
default:
|
|
970
|
+
type: vue.PropType<NonNullable<boolean | IconValue>>;
|
|
971
|
+
default: NonNullable<boolean | IconValue>;
|
|
615
972
|
};
|
|
973
|
+
prependIcon: vue.PropType<IconValue>;
|
|
974
|
+
appendIcon: vue.PropType<IconValue>;
|
|
975
|
+
block: BooleanConstructor;
|
|
976
|
+
stacked: BooleanConstructor;
|
|
977
|
+
ripple: {
|
|
978
|
+
type: BooleanConstructor;
|
|
979
|
+
default: boolean;
|
|
980
|
+
};
|
|
981
|
+
text: StringConstructor;
|
|
616
982
|
}>>;
|
|
617
983
|
type VAppBarNavIcon = InstanceType<typeof VAppBarNavIcon>;
|
|
618
984
|
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
85
85
|
opacity: 0;
|
|
86
86
|
}
|
|
87
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection
|
|
87
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
88
88
|
opacity: 0;
|
|
89
89
|
}
|
|
90
90
|
.v-autocomplete--selection-slot.v-text-field input {
|