@vuetify/nightly 3.6.8-master.2024-06-07 → 3.6.9-master.2024-06-12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -10
- package/dist/json/attributes.json +4 -4
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +150 -150
- package/dist/json/web-types.json +12 -13
- package/dist/vuetify-labs.css +2651 -2651
- package/dist/vuetify-labs.d.ts +187 -189
- package/dist/vuetify-labs.esm.js +32 -19
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +32 -19
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1049 -1049
- package/dist/vuetify.d.ts +233 -241
- package/dist/vuetify.esm.js +20 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +31 -28
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +58 -56
- package/lib/blueprints/md1.d.mts +58 -56
- package/lib/blueprints/md2.d.mts +58 -56
- package/lib/blueprints/md3.d.mts +58 -56
- package/lib/components/VFab/VFab.mjs +4 -7
- package/lib/components/VFab/VFab.mjs.map +1 -1
- package/lib/components/VFab/index.d.mts +46 -49
- package/lib/components/VList/VList.mjs +1 -0
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +2 -0
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +4 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -45
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/scroll.mjs +6 -0
- package/lib/composables/scroll.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +161 -162
- package/lib/labs/VStepperVertical/index.d.mts +3 -3
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +3 -1
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +7 -2
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs +3 -4
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +6 -0
- package/lib/labs/components.d.mts +6 -0
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
@@ -103,6 +103,29 @@ type InternalDateOptions = {
|
|
103
103
|
type DateOptions = Partial<InternalDateOptions>;
|
104
104
|
declare function useDate(): DateInstance;
|
105
105
|
|
106
|
+
declare const block: readonly ["top", "bottom"];
|
107
|
+
declare const inline: readonly ["start", "end", "left", "right"];
|
108
|
+
type Tblock = typeof block[number];
|
109
|
+
type Tinline = typeof inline[number];
|
110
|
+
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
111
|
+
|
112
|
+
declare class Box {
|
113
|
+
x: number;
|
114
|
+
y: number;
|
115
|
+
width: number;
|
116
|
+
height: number;
|
117
|
+
constructor({ x, y, width, height }: {
|
118
|
+
x: number;
|
119
|
+
y: number;
|
120
|
+
width: number;
|
121
|
+
height: number;
|
122
|
+
});
|
123
|
+
get top(): number;
|
124
|
+
get bottom(): number;
|
125
|
+
get left(): number;
|
126
|
+
get right(): number;
|
127
|
+
}
|
128
|
+
|
106
129
|
type DeepPartial<T> = T extends object ? {
|
107
130
|
[P in keyof T]?: DeepPartial<T[P]>;
|
108
131
|
} : T;
|
@@ -161,116 +184,6 @@ interface ThemeInstance {
|
|
161
184
|
}
|
162
185
|
declare function useTheme(): ThemeInstance;
|
163
186
|
|
164
|
-
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
165
|
-
type Breakpoint = typeof breakpoints[number];
|
166
|
-
type DisplayBreakpoint = 'xs' | Breakpoint;
|
167
|
-
type DisplayThresholds = {
|
168
|
-
[key in DisplayBreakpoint]: number;
|
169
|
-
};
|
170
|
-
interface DisplayProps {
|
171
|
-
mobile?: boolean | null;
|
172
|
-
mobileBreakpoint?: number | DisplayBreakpoint;
|
173
|
-
}
|
174
|
-
interface DisplayOptions {
|
175
|
-
mobileBreakpoint?: number | DisplayBreakpoint;
|
176
|
-
thresholds?: Partial<DisplayThresholds>;
|
177
|
-
}
|
178
|
-
type SSROptions = boolean | {
|
179
|
-
clientWidth: number;
|
180
|
-
clientHeight?: number;
|
181
|
-
};
|
182
|
-
interface DisplayPlatform {
|
183
|
-
android: boolean;
|
184
|
-
ios: boolean;
|
185
|
-
cordova: boolean;
|
186
|
-
electron: boolean;
|
187
|
-
chrome: boolean;
|
188
|
-
edge: boolean;
|
189
|
-
firefox: boolean;
|
190
|
-
opera: boolean;
|
191
|
-
win: boolean;
|
192
|
-
mac: boolean;
|
193
|
-
linux: boolean;
|
194
|
-
touch: boolean;
|
195
|
-
ssr: boolean;
|
196
|
-
}
|
197
|
-
interface DisplayInstance {
|
198
|
-
xs: Ref<boolean>;
|
199
|
-
sm: Ref<boolean>;
|
200
|
-
md: Ref<boolean>;
|
201
|
-
lg: Ref<boolean>;
|
202
|
-
xl: Ref<boolean>;
|
203
|
-
xxl: Ref<boolean>;
|
204
|
-
smAndUp: Ref<boolean>;
|
205
|
-
mdAndUp: Ref<boolean>;
|
206
|
-
lgAndUp: Ref<boolean>;
|
207
|
-
xlAndUp: Ref<boolean>;
|
208
|
-
smAndDown: Ref<boolean>;
|
209
|
-
mdAndDown: Ref<boolean>;
|
210
|
-
lgAndDown: Ref<boolean>;
|
211
|
-
xlAndDown: Ref<boolean>;
|
212
|
-
name: Ref<DisplayBreakpoint>;
|
213
|
-
height: Ref<number>;
|
214
|
-
width: Ref<number>;
|
215
|
-
mobile: Ref<boolean>;
|
216
|
-
mobileBreakpoint: Ref<number | DisplayBreakpoint>;
|
217
|
-
platform: Ref<DisplayPlatform>;
|
218
|
-
thresholds: Ref<DisplayThresholds>;
|
219
|
-
update(): void;
|
220
|
-
}
|
221
|
-
declare function useDisplay(props?: DisplayProps, name?: string): {
|
222
|
-
displayClasses: vue.ComputedRef<{
|
223
|
-
[x: string]: boolean;
|
224
|
-
}>;
|
225
|
-
mobile: vue.ComputedRef<boolean>;
|
226
|
-
xs: Ref<boolean>;
|
227
|
-
sm: Ref<boolean>;
|
228
|
-
md: Ref<boolean>;
|
229
|
-
lg: Ref<boolean>;
|
230
|
-
xl: Ref<boolean>;
|
231
|
-
xxl: Ref<boolean>;
|
232
|
-
smAndUp: Ref<boolean>;
|
233
|
-
mdAndUp: Ref<boolean>;
|
234
|
-
lgAndUp: Ref<boolean>;
|
235
|
-
xlAndUp: Ref<boolean>;
|
236
|
-
smAndDown: Ref<boolean>;
|
237
|
-
mdAndDown: Ref<boolean>;
|
238
|
-
lgAndDown: Ref<boolean>;
|
239
|
-
xlAndDown: Ref<boolean>;
|
240
|
-
name: Ref<DisplayBreakpoint>;
|
241
|
-
height: Ref<number>;
|
242
|
-
width: Ref<number>;
|
243
|
-
mobileBreakpoint: Ref<number | DisplayBreakpoint>;
|
244
|
-
platform: Ref<DisplayPlatform>;
|
245
|
-
thresholds: Ref<DisplayThresholds>;
|
246
|
-
/** @internal */
|
247
|
-
ssr: boolean;
|
248
|
-
update(): void;
|
249
|
-
};
|
250
|
-
|
251
|
-
declare const block: readonly ["top", "bottom"];
|
252
|
-
declare const inline: readonly ["start", "end", "left", "right"];
|
253
|
-
type Tblock = typeof block[number];
|
254
|
-
type Tinline = typeof inline[number];
|
255
|
-
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
256
|
-
|
257
|
-
declare class Box {
|
258
|
-
x: number;
|
259
|
-
y: number;
|
260
|
-
width: number;
|
261
|
-
height: number;
|
262
|
-
constructor({ x, y, width, height }: {
|
263
|
-
x: number;
|
264
|
-
y: number;
|
265
|
-
width: number;
|
266
|
-
height: number;
|
267
|
-
});
|
268
|
-
get top(): number;
|
269
|
-
get bottom(): number;
|
270
|
-
get left(): number;
|
271
|
-
get right(): number;
|
272
|
-
}
|
273
|
-
|
274
187
|
type HSV = {
|
275
188
|
h: number;
|
276
189
|
s: number;
|
@@ -318,31 +231,6 @@ type TemplateRef = {
|
|
318
231
|
readonly el: HTMLElement | undefined;
|
319
232
|
};
|
320
233
|
|
321
|
-
type DefaultsInstance = undefined | {
|
322
|
-
[key: string]: undefined | Record<string, unknown>;
|
323
|
-
global?: Record<string, unknown>;
|
324
|
-
};
|
325
|
-
type DefaultsOptions = Partial<DefaultsInstance>;
|
326
|
-
declare function useDefaults<T extends Record<string, any>>(props: T, name?: string): T;
|
327
|
-
declare function useDefaults(props?: undefined, name?: string): Record<string, any>;
|
328
|
-
|
329
|
-
interface GoToInstance {
|
330
|
-
rtl: Ref<boolean>;
|
331
|
-
options: GoToOptions;
|
332
|
-
}
|
333
|
-
interface GoToOptions {
|
334
|
-
container: ComponentPublicInstance | HTMLElement | string;
|
335
|
-
duration: number;
|
336
|
-
layout: boolean;
|
337
|
-
offset: number;
|
338
|
-
easing: string | ((t: number) => number);
|
339
|
-
patterns: Record<string, (t: number) => number>;
|
340
|
-
}
|
341
|
-
declare function useGoTo(_options?: Partial<GoToOptions>): {
|
342
|
-
(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
|
343
|
-
horizontal(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
|
344
|
-
};
|
345
|
-
|
346
234
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
347
235
|
declare const IconValue: PropType<IconValue>;
|
348
236
|
interface IconAliases {
|
@@ -392,11 +280,12 @@ type IconComponent = JSXComponent<IconProps>;
|
|
392
280
|
interface IconSet {
|
393
281
|
component: IconComponent;
|
394
282
|
}
|
395
|
-
type
|
396
|
-
defaultSet
|
397
|
-
aliases
|
398
|
-
sets
|
283
|
+
type InternalIconOptions = {
|
284
|
+
defaultSet: string;
|
285
|
+
aliases: Partial<IconAliases>;
|
286
|
+
sets: Record<string, IconSet>;
|
399
287
|
};
|
288
|
+
type IconOptions = Partial<InternalIconOptions>;
|
400
289
|
declare const VComponentIcon: {
|
401
290
|
new (...args: any[]): vue.CreateComponentPublicInstance<{
|
402
291
|
tag: string;
|
@@ -674,6 +563,119 @@ declare const VClassIcon: {
|
|
674
563
|
}>>;
|
675
564
|
type VClassIcon = InstanceType<typeof VClassIcon>;
|
676
565
|
|
566
|
+
interface GoToInstance {
|
567
|
+
rtl: Ref<boolean>;
|
568
|
+
options: InternalGoToOptions;
|
569
|
+
}
|
570
|
+
interface InternalGoToOptions {
|
571
|
+
container: ComponentPublicInstance | HTMLElement | string;
|
572
|
+
duration: number;
|
573
|
+
layout: boolean;
|
574
|
+
offset: number;
|
575
|
+
easing: string | ((t: number) => number);
|
576
|
+
patterns: Record<string, (t: number) => number>;
|
577
|
+
}
|
578
|
+
type GoToOptions = Partial<InternalGoToOptions>;
|
579
|
+
declare function useGoTo(_options?: GoToOptions): {
|
580
|
+
(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
|
581
|
+
horizontal(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
|
582
|
+
};
|
583
|
+
|
584
|
+
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
585
|
+
type Breakpoint = typeof breakpoints[number];
|
586
|
+
type DisplayBreakpoint = 'xs' | Breakpoint;
|
587
|
+
type DisplayThresholds = {
|
588
|
+
[key in DisplayBreakpoint]: number;
|
589
|
+
};
|
590
|
+
interface DisplayProps {
|
591
|
+
mobile?: boolean | null;
|
592
|
+
mobileBreakpoint?: number | DisplayBreakpoint;
|
593
|
+
}
|
594
|
+
interface DisplayOptions {
|
595
|
+
mobileBreakpoint?: number | DisplayBreakpoint;
|
596
|
+
thresholds?: Partial<DisplayThresholds>;
|
597
|
+
}
|
598
|
+
type SSROptions = boolean | {
|
599
|
+
clientWidth: number;
|
600
|
+
clientHeight?: number;
|
601
|
+
};
|
602
|
+
interface DisplayPlatform {
|
603
|
+
android: boolean;
|
604
|
+
ios: boolean;
|
605
|
+
cordova: boolean;
|
606
|
+
electron: boolean;
|
607
|
+
chrome: boolean;
|
608
|
+
edge: boolean;
|
609
|
+
firefox: boolean;
|
610
|
+
opera: boolean;
|
611
|
+
win: boolean;
|
612
|
+
mac: boolean;
|
613
|
+
linux: boolean;
|
614
|
+
touch: boolean;
|
615
|
+
ssr: boolean;
|
616
|
+
}
|
617
|
+
interface DisplayInstance {
|
618
|
+
xs: Ref<boolean>;
|
619
|
+
sm: Ref<boolean>;
|
620
|
+
md: Ref<boolean>;
|
621
|
+
lg: Ref<boolean>;
|
622
|
+
xl: Ref<boolean>;
|
623
|
+
xxl: Ref<boolean>;
|
624
|
+
smAndUp: Ref<boolean>;
|
625
|
+
mdAndUp: Ref<boolean>;
|
626
|
+
lgAndUp: Ref<boolean>;
|
627
|
+
xlAndUp: Ref<boolean>;
|
628
|
+
smAndDown: Ref<boolean>;
|
629
|
+
mdAndDown: Ref<boolean>;
|
630
|
+
lgAndDown: Ref<boolean>;
|
631
|
+
xlAndDown: Ref<boolean>;
|
632
|
+
name: Ref<DisplayBreakpoint>;
|
633
|
+
height: Ref<number>;
|
634
|
+
width: Ref<number>;
|
635
|
+
mobile: Ref<boolean>;
|
636
|
+
mobileBreakpoint: Ref<number | DisplayBreakpoint>;
|
637
|
+
platform: Ref<DisplayPlatform>;
|
638
|
+
thresholds: Ref<DisplayThresholds>;
|
639
|
+
update(): void;
|
640
|
+
}
|
641
|
+
declare function useDisplay(props?: DisplayProps, name?: string): {
|
642
|
+
displayClasses: vue.ComputedRef<{
|
643
|
+
[x: string]: boolean;
|
644
|
+
}>;
|
645
|
+
mobile: vue.ComputedRef<boolean>;
|
646
|
+
xs: Ref<boolean>;
|
647
|
+
sm: Ref<boolean>;
|
648
|
+
md: Ref<boolean>;
|
649
|
+
lg: Ref<boolean>;
|
650
|
+
xl: Ref<boolean>;
|
651
|
+
xxl: Ref<boolean>;
|
652
|
+
smAndUp: Ref<boolean>;
|
653
|
+
mdAndUp: Ref<boolean>;
|
654
|
+
lgAndUp: Ref<boolean>;
|
655
|
+
xlAndUp: Ref<boolean>;
|
656
|
+
smAndDown: Ref<boolean>;
|
657
|
+
mdAndDown: Ref<boolean>;
|
658
|
+
lgAndDown: Ref<boolean>;
|
659
|
+
xlAndDown: Ref<boolean>;
|
660
|
+
name: Ref<DisplayBreakpoint>;
|
661
|
+
height: Ref<number>;
|
662
|
+
width: Ref<number>;
|
663
|
+
mobileBreakpoint: Ref<number | DisplayBreakpoint>;
|
664
|
+
platform: Ref<DisplayPlatform>;
|
665
|
+
thresholds: Ref<DisplayThresholds>;
|
666
|
+
/** @internal */
|
667
|
+
ssr: boolean;
|
668
|
+
update(): void;
|
669
|
+
};
|
670
|
+
|
671
|
+
type DefaultsInstance = undefined | {
|
672
|
+
[key: string]: undefined | Record<string, unknown>;
|
673
|
+
global?: Record<string, unknown>;
|
674
|
+
};
|
675
|
+
type DefaultsOptions = Partial<DefaultsInstance>;
|
676
|
+
declare function useDefaults<T extends Record<string, any>>(props: T, name?: string): T;
|
677
|
+
declare function useDefaults(props?: undefined, name?: string): Record<string, any>;
|
678
|
+
|
677
679
|
type Position = 'top' | 'left' | 'right' | 'bottom';
|
678
680
|
interface Layer {
|
679
681
|
top: number;
|
@@ -33314,7 +33316,6 @@ declare const VFab: {
|
|
33314
33316
|
appear: boolean;
|
33315
33317
|
density: Density;
|
33316
33318
|
extended: boolean;
|
33317
|
-
location: "left" | "right" | "end" | "top" | "bottom" | "start";
|
33318
33319
|
slim: boolean;
|
33319
33320
|
stacked: boolean;
|
33320
33321
|
ripple: boolean | {
|
@@ -33342,6 +33343,7 @@ declare const VFab: {
|
|
33342
33343
|
minHeight?: string | number | undefined;
|
33343
33344
|
minWidth?: string | number | undefined;
|
33344
33345
|
elevation?: string | number | undefined;
|
33346
|
+
location?: Anchor | undefined;
|
33345
33347
|
baseColor?: string | undefined;
|
33346
33348
|
selectedClass?: string | undefined;
|
33347
33349
|
prependIcon?: IconValue | undefined;
|
@@ -33384,7 +33386,6 @@ declare const VFab: {
|
|
33384
33386
|
appear: boolean;
|
33385
33387
|
density: Density;
|
33386
33388
|
extended: boolean;
|
33387
|
-
location: "left" | "right" | "end" | "top" | "bottom" | "start";
|
33388
33389
|
slim: boolean;
|
33389
33390
|
stacked: boolean;
|
33390
33391
|
ripple: boolean | {
|
@@ -33412,6 +33413,7 @@ declare const VFab: {
|
|
33412
33413
|
minHeight?: string | number | undefined;
|
33413
33414
|
minWidth?: string | number | undefined;
|
33414
33415
|
elevation?: string | number | undefined;
|
33416
|
+
location?: Anchor | undefined;
|
33415
33417
|
baseColor?: string | undefined;
|
33416
33418
|
selectedClass?: string | undefined;
|
33417
33419
|
prependIcon?: IconValue | undefined;
|
@@ -33453,7 +33455,6 @@ declare const VFab: {
|
|
33453
33455
|
appear: boolean;
|
33454
33456
|
density: Density;
|
33455
33457
|
extended: boolean;
|
33456
|
-
location: "left" | "right" | "end" | "top" | "bottom" | "start";
|
33457
33458
|
slim: boolean;
|
33458
33459
|
stacked: boolean;
|
33459
33460
|
ripple: boolean | {
|
@@ -33496,7 +33497,6 @@ declare const VFab: {
|
|
33496
33497
|
appear: boolean;
|
33497
33498
|
density: Density;
|
33498
33499
|
extended: boolean;
|
33499
|
-
location: "left" | "right" | "end" | "top" | "bottom" | "start";
|
33500
33500
|
slim: boolean;
|
33501
33501
|
stacked: boolean;
|
33502
33502
|
ripple: boolean | {
|
@@ -33524,6 +33524,7 @@ declare const VFab: {
|
|
33524
33524
|
minHeight?: string | number | undefined;
|
33525
33525
|
minWidth?: string | number | undefined;
|
33526
33526
|
elevation?: string | number | undefined;
|
33527
|
+
location?: Anchor | undefined;
|
33527
33528
|
baseColor?: string | undefined;
|
33528
33529
|
selectedClass?: string | undefined;
|
33529
33530
|
prependIcon?: IconValue | undefined;
|
@@ -33565,7 +33566,6 @@ declare const VFab: {
|
|
33565
33566
|
appear: boolean;
|
33566
33567
|
density: Density;
|
33567
33568
|
extended: boolean;
|
33568
|
-
location: "left" | "right" | "end" | "top" | "bottom" | "start";
|
33569
33569
|
slim: boolean;
|
33570
33570
|
stacked: boolean;
|
33571
33571
|
ripple: boolean | {
|
@@ -33601,7 +33601,6 @@ declare const VFab: {
|
|
33601
33601
|
appear: boolean;
|
33602
33602
|
density: Density;
|
33603
33603
|
extended: boolean;
|
33604
|
-
location: "left" | "right" | "end" | "top" | "bottom" | "start";
|
33605
33604
|
slim: boolean;
|
33606
33605
|
stacked: boolean;
|
33607
33606
|
ripple: boolean | {
|
@@ -33629,6 +33628,7 @@ declare const VFab: {
|
|
33629
33628
|
minHeight?: string | number | undefined;
|
33630
33629
|
minWidth?: string | number | undefined;
|
33631
33630
|
elevation?: string | number | undefined;
|
33631
|
+
location?: Anchor | undefined;
|
33632
33632
|
baseColor?: string | undefined;
|
33633
33633
|
selectedClass?: string | undefined;
|
33634
33634
|
prependIcon?: IconValue | undefined;
|
@@ -33672,7 +33672,6 @@ declare const VFab: {
|
|
33672
33672
|
appear: boolean;
|
33673
33673
|
density: Density;
|
33674
33674
|
extended: boolean;
|
33675
|
-
location: "left" | "right" | "end" | "top" | "bottom" | "start";
|
33676
33675
|
slim: boolean;
|
33677
33676
|
stacked: boolean;
|
33678
33677
|
ripple: boolean | {
|
@@ -33685,19 +33684,20 @@ declare const VFab: {
|
|
33685
33684
|
}>[];
|
33686
33685
|
}>>> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
33687
33686
|
transition: Omit<{
|
33688
|
-
type: PropType<string | boolean | (vue.TransitionProps & {
|
33687
|
+
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
33689
33688
|
component?: vue.Component | undefined;
|
33690
33689
|
})>;
|
33691
33690
|
default: string;
|
33692
33691
|
validator: (val: unknown) => boolean;
|
33693
33692
|
}, "default" | "type"> & {
|
33694
|
-
type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
33693
|
+
type: vue.PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
33695
33694
|
component?: vue.Component | undefined;
|
33696
33695
|
})>>;
|
33697
33696
|
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
33698
33697
|
component?: vue.Component | undefined;
|
33699
33698
|
})>;
|
33700
33699
|
};
|
33700
|
+
location: vue.PropType<Anchor>;
|
33701
33701
|
name: {
|
33702
33702
|
type: StringConstructor;
|
33703
33703
|
};
|
@@ -33712,9 +33712,9 @@ declare const VFab: {
|
|
33712
33712
|
};
|
33713
33713
|
flat: BooleanConstructor;
|
33714
33714
|
replace: BooleanConstructor;
|
33715
|
-
class: PropType<any>;
|
33715
|
+
class: vue.PropType<any>;
|
33716
33716
|
style: {
|
33717
|
-
type: PropType<vue.StyleValue>;
|
33717
|
+
type: vue.PropType<vue.StyleValue>;
|
33718
33718
|
default: null;
|
33719
33719
|
};
|
33720
33720
|
size: {
|
@@ -33729,7 +33729,7 @@ declare const VFab: {
|
|
33729
33729
|
type: BooleanConstructor;
|
33730
33730
|
default: undefined;
|
33731
33731
|
}, "default" | "type"> & {
|
33732
|
-
type: PropType<boolean>;
|
33732
|
+
type: vue.PropType<boolean>;
|
33733
33733
|
default: boolean;
|
33734
33734
|
};
|
33735
33735
|
theme: StringConstructor;
|
@@ -33740,15 +33740,15 @@ declare const VFab: {
|
|
33740
33740
|
type: StringConstructor;
|
33741
33741
|
default: string;
|
33742
33742
|
}, "default" | "type"> & {
|
33743
|
-
type: PropType<string>;
|
33743
|
+
type: vue.PropType<string>;
|
33744
33744
|
default: string;
|
33745
33745
|
};
|
33746
33746
|
loading: (StringConstructor | BooleanConstructor)[];
|
33747
|
-
icon: PropType<boolean | IconValue>;
|
33748
|
-
to: PropType<vue_router.RouteLocationRaw>;
|
33747
|
+
icon: vue.PropType<boolean | IconValue>;
|
33748
|
+
to: vue.PropType<vue_router.RouteLocationRaw>;
|
33749
33749
|
border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
33750
33750
|
position: {
|
33751
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
33751
|
+
type: vue.PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
33752
33752
|
validator: (v: any) => boolean;
|
33753
33753
|
};
|
33754
33754
|
readonly: BooleanConstructor;
|
@@ -33757,11 +33757,11 @@ declare const VFab: {
|
|
33757
33757
|
default: undefined;
|
33758
33758
|
};
|
33759
33759
|
variant: Omit<{
|
33760
|
-
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
33760
|
+
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
33761
33761
|
default: string;
|
33762
33762
|
validator: (v: any) => boolean;
|
33763
33763
|
}, "default" | "type"> & {
|
33764
|
-
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
33764
|
+
type: vue.PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
33765
33765
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
33766
33766
|
};
|
33767
33767
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -33776,18 +33776,18 @@ declare const VFab: {
|
|
33776
33776
|
validator(v: any): boolean;
|
33777
33777
|
};
|
33778
33778
|
density: {
|
33779
|
-
type: PropType<Density>;
|
33779
|
+
type: vue.PropType<Density>;
|
33780
33780
|
default: string;
|
33781
33781
|
validator: (v: any) => boolean;
|
33782
33782
|
};
|
33783
33783
|
baseColor: StringConstructor;
|
33784
33784
|
selectedClass: StringConstructor;
|
33785
|
-
prependIcon: PropType<IconValue>;
|
33786
|
-
appendIcon: PropType<IconValue>;
|
33785
|
+
prependIcon: vue.PropType<IconValue>;
|
33786
|
+
appendIcon: vue.PropType<IconValue>;
|
33787
33787
|
slim: BooleanConstructor;
|
33788
33788
|
stacked: BooleanConstructor;
|
33789
33789
|
ripple: {
|
33790
|
-
type: PropType<boolean | {
|
33790
|
+
type: vue.PropType<boolean | {
|
33791
33791
|
class: string;
|
33792
33792
|
} | undefined>;
|
33793
33793
|
default: boolean;
|
@@ -33796,10 +33796,6 @@ declare const VFab: {
|
|
33796
33796
|
appear: BooleanConstructor;
|
33797
33797
|
extended: BooleanConstructor;
|
33798
33798
|
layout: BooleanConstructor;
|
33799
|
-
location: {
|
33800
|
-
type: PropType<"left" | "right" | "end" | "top" | "bottom" | "start">;
|
33801
|
-
default: string;
|
33802
|
-
};
|
33803
33799
|
offset: BooleanConstructor;
|
33804
33800
|
modelValue: {
|
33805
33801
|
type: BooleanConstructor;
|
@@ -33807,19 +33803,20 @@ declare const VFab: {
|
|
33807
33803
|
};
|
33808
33804
|
}, vue.ExtractPropTypes<{
|
33809
33805
|
transition: Omit<{
|
33810
|
-
type: PropType<string | boolean | (vue.TransitionProps & {
|
33806
|
+
type: vue.PropType<string | boolean | (vue.TransitionProps & {
|
33811
33807
|
component?: vue.Component | undefined;
|
33812
33808
|
})>;
|
33813
33809
|
default: string;
|
33814
33810
|
validator: (val: unknown) => boolean;
|
33815
33811
|
}, "default" | "type"> & {
|
33816
|
-
type: PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
33812
|
+
type: vue.PropType<NonNullable<string | boolean | (vue.TransitionProps & {
|
33817
33813
|
component?: vue.Component | undefined;
|
33818
33814
|
})>>;
|
33819
33815
|
default: NonNullable<string | boolean | (vue.TransitionProps & {
|
33820
33816
|
component?: vue.Component | undefined;
|
33821
33817
|
})>;
|
33822
33818
|
};
|
33819
|
+
location: vue.PropType<Anchor>;
|
33823
33820
|
name: {
|
33824
33821
|
type: StringConstructor;
|
33825
33822
|
};
|
@@ -33834,9 +33831,9 @@ declare const VFab: {
|
|
33834
33831
|
};
|
33835
33832
|
flat: BooleanConstructor;
|
33836
33833
|
replace: BooleanConstructor;
|
33837
|
-
class: PropType<any>;
|
33834
|
+
class: vue.PropType<any>;
|
33838
33835
|
style: {
|
33839
|
-
type: PropType<vue.StyleValue>;
|
33836
|
+
type: vue.PropType<vue.StyleValue>;
|
33840
33837
|
default: null;
|
33841
33838
|
};
|
33842
33839
|
size: {
|
@@ -33851,7 +33848,7 @@ declare const VFab: {
|
|
33851
33848
|
type: BooleanConstructor;
|
33852
33849
|
default: undefined;
|
33853
33850
|
}, "default" | "type"> & {
|
33854
|
-
type: PropType<boolean>;
|
33851
|
+
type: vue.PropType<boolean>;
|
33855
33852
|
default: boolean;
|
33856
33853
|
};
|
33857
33854
|
theme: StringConstructor;
|
@@ -33862,15 +33859,15 @@ declare const VFab: {
|
|
33862
33859
|
type: StringConstructor;
|
33863
33860
|
default: string;
|
33864
33861
|
}, "default" | "type"> & {
|
33865
|
-
type: PropType<string>;
|
33862
|
+
type: vue.PropType<string>;
|
33866
33863
|
default: string;
|
33867
33864
|
};
|
33868
33865
|
loading: (StringConstructor | BooleanConstructor)[];
|
33869
|
-
icon: PropType<boolean | IconValue>;
|
33870
|
-
to: PropType<vue_router.RouteLocationRaw>;
|
33866
|
+
icon: vue.PropType<boolean | IconValue>;
|
33867
|
+
to: vue.PropType<vue_router.RouteLocationRaw>;
|
33871
33868
|
border: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
33872
33869
|
position: {
|
33873
|
-
type: PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
33870
|
+
type: vue.PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
33874
33871
|
validator: (v: any) => boolean;
|
33875
33872
|
};
|
33876
33873
|
readonly: BooleanConstructor;
|
@@ -33879,11 +33876,11 @@ declare const VFab: {
|
|
33879
33876
|
default: undefined;
|
33880
33877
|
};
|
33881
33878
|
variant: Omit<{
|
33882
|
-
type: PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
33879
|
+
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
33883
33880
|
default: string;
|
33884
33881
|
validator: (v: any) => boolean;
|
33885
33882
|
}, "default" | "type"> & {
|
33886
|
-
type: PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
33883
|
+
type: vue.PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
33887
33884
|
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
33888
33885
|
};
|
33889
33886
|
maxHeight: (StringConstructor | NumberConstructor)[];
|
@@ -33898,18 +33895,18 @@ declare const VFab: {
|
|
33898
33895
|
validator(v: any): boolean;
|
33899
33896
|
};
|
33900
33897
|
density: {
|
33901
|
-
type: PropType<Density>;
|
33898
|
+
type: vue.PropType<Density>;
|
33902
33899
|
default: string;
|
33903
33900
|
validator: (v: any) => boolean;
|
33904
33901
|
};
|
33905
33902
|
baseColor: StringConstructor;
|
33906
33903
|
selectedClass: StringConstructor;
|
33907
|
-
prependIcon: PropType<IconValue>;
|
33908
|
-
appendIcon: PropType<IconValue>;
|
33904
|
+
prependIcon: vue.PropType<IconValue>;
|
33905
|
+
appendIcon: vue.PropType<IconValue>;
|
33909
33906
|
slim: BooleanConstructor;
|
33910
33907
|
stacked: BooleanConstructor;
|
33911
33908
|
ripple: {
|
33912
|
-
type: PropType<boolean | {
|
33909
|
+
type: vue.PropType<boolean | {
|
33913
33910
|
class: string;
|
33914
33911
|
} | undefined>;
|
33915
33912
|
default: boolean;
|
@@ -33918,10 +33915,6 @@ declare const VFab: {
|
|
33918
33915
|
appear: BooleanConstructor;
|
33919
33916
|
extended: BooleanConstructor;
|
33920
33917
|
layout: BooleanConstructor;
|
33921
|
-
location: {
|
33922
|
-
type: PropType<"left" | "right" | "end" | "top" | "bottom" | "start">;
|
33923
|
-
default: string;
|
33924
|
-
};
|
33925
33918
|
offset: BooleanConstructor;
|
33926
33919
|
modelValue: {
|
33927
33920
|
type: BooleanConstructor;
|
@@ -40068,6 +40061,7 @@ declare const VList: {
|
|
40068
40061
|
value: boolean;
|
40069
40062
|
path: unknown[];
|
40070
40063
|
}) => void>;
|
40064
|
+
'onUpdate:opened': PropType<() => void>;
|
40071
40065
|
}, vue.ExtractPropTypes<{
|
40072
40066
|
color: StringConstructor;
|
40073
40067
|
variant: Omit<{
|
@@ -40176,6 +40170,7 @@ declare const VList: {
|
|
40176
40170
|
value: boolean;
|
40177
40171
|
path: unknown[];
|
40178
40172
|
}) => void>;
|
40173
|
+
'onUpdate:opened': PropType<() => void>;
|
40179
40174
|
}>>;
|
40180
40175
|
type VList = InstanceType<typeof VList>;
|
40181
40176
|
|
@@ -72740,7 +72735,7 @@ declare const createVuetify: {
|
|
72740
72735
|
theme: ThemeInstance & {
|
72741
72736
|
install: (app: vue.App<any>) => void;
|
72742
72737
|
};
|
72743
|
-
icons:
|
72738
|
+
icons: InternalIconOptions;
|
72744
72739
|
locale: {
|
72745
72740
|
isRtl: vue.Ref<boolean>;
|
72746
72741
|
rtl: vue.Ref<Record<string, boolean>>;
|
@@ -72801,10 +72796,7 @@ declare const createVuetify: {
|
|
72801
72796
|
setMinutes: (date: unknown, minutes: number) => unknown;
|
72802
72797
|
};
|
72803
72798
|
};
|
72804
|
-
goTo:
|
72805
|
-
rtl: vue.Ref<boolean>;
|
72806
|
-
options: Record<string, any>;
|
72807
|
-
};
|
72799
|
+
goTo: GoToInstance;
|
72808
72800
|
};
|
72809
72801
|
version: string;
|
72810
72802
|
};
|
@@ -72856,40 +72848,41 @@ declare module '@vue/runtime-core' {
|
|
72856
72848
|
|
72857
72849
|
export interface GlobalComponents {
|
72858
72850
|
VApp: typeof import('vuetify/components')['VApp']
|
72859
|
-
VAppBar: typeof import('vuetify/components')['VAppBar']
|
72860
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
72861
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
72862
72851
|
VAlert: typeof import('vuetify/components')['VAlert']
|
72863
72852
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
72864
72853
|
VBadge: typeof import('vuetify/components')['VBadge']
|
72865
72854
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
72855
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
72856
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
72857
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
72866
72858
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
72867
72859
|
VBanner: typeof import('vuetify/components')['VBanner']
|
72868
72860
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
72869
72861
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
72870
|
-
|
72862
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
72863
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
72871
72864
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
72872
72865
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
72873
72866
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
72874
|
-
|
72875
|
-
|
72876
|
-
|
72877
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
72878
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
72879
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
72867
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
72868
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
72869
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
72880
72870
|
VCard: typeof import('vuetify/components')['VCard']
|
72881
72871
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
72882
72872
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
72883
72873
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
72884
72874
|
VCardText: typeof import('vuetify/components')['VCardText']
|
72885
72875
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
72886
|
-
|
72887
|
-
|
72876
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
72877
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
72878
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
72879
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
72888
72880
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
72881
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
72889
72882
|
VChip: typeof import('vuetify/components')['VChip']
|
72890
72883
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
72891
|
-
VCode: typeof import('vuetify/components')['VCode']
|
72892
72884
|
VCounter: typeof import('vuetify/components')['VCounter']
|
72885
|
+
VCode: typeof import('vuetify/components')['VCode']
|
72893
72886
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
72894
72887
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
72895
72888
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -72897,7 +72890,6 @@ declare module '@vue/runtime-core' {
|
|
72897
72890
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
72898
72891
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
72899
72892
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
72900
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
72901
72893
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
72902
72894
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
72903
72895
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -72905,25 +72897,30 @@ declare module '@vue/runtime-core' {
|
|
72905
72897
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
72906
72898
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
72907
72899
|
VDialog: typeof import('vuetify/components')['VDialog']
|
72908
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
72909
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
72910
|
-
VFab: typeof import('vuetify/components')['VFab']
|
72911
|
-
VField: typeof import('vuetify/components')['VField']
|
72912
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
72913
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
72914
72900
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
72915
72901
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
72916
72902
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
72917
72903
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
72904
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
72905
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
72906
|
+
VField: typeof import('vuetify/components')['VField']
|
72907
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
72908
|
+
VFab: typeof import('vuetify/components')['VFab']
|
72918
72909
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
72910
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
72919
72911
|
VImg: typeof import('vuetify/components')['VImg']
|
72920
72912
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
72913
|
+
VIcon: typeof import('vuetify/components')['VIcon']
|
72914
|
+
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
72915
|
+
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
72916
|
+
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
72917
|
+
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
72921
72918
|
VInput: typeof import('vuetify/components')['VInput']
|
72922
72919
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
72923
72920
|
VItem: typeof import('vuetify/components')['VItem']
|
72924
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
72925
72921
|
VKbd: typeof import('vuetify/components')['VKbd']
|
72926
|
-
|
72922
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
72923
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
72927
72924
|
VList: typeof import('vuetify/components')['VList']
|
72928
72925
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
72929
72926
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -72933,53 +72930,48 @@ declare module '@vue/runtime-core' {
|
|
72933
72930
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
72934
72931
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
72935
72932
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
72936
|
-
|
72937
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
72933
|
+
VMain: typeof import('vuetify/components')['VMain']
|
72938
72934
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
72939
72935
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
72936
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
72940
72937
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
72941
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
72942
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
72943
72938
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
72939
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
72944
72940
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
72945
|
-
|
72941
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
72946
72942
|
VSelect: typeof import('vuetify/components')['VSelect']
|
72947
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
72948
|
-
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
72949
72943
|
VSheet: typeof import('vuetify/components')['VSheet']
|
72950
|
-
|
72944
|
+
VRating: typeof import('vuetify/components')['VRating']
|
72945
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
72946
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
72951
72947
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
72952
72948
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
72953
|
-
|
72954
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
72955
|
-
VIcon: typeof import('vuetify/components')['VIcon']
|
72956
|
-
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
72957
|
-
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
72958
|
-
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
72959
|
-
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
72960
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
72949
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
72961
72950
|
VStepper: typeof import('vuetify/components')['VStepper']
|
72962
72951
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
72963
72952
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
72964
72953
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
72965
72954
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
72966
72955
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
72967
|
-
|
72956
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
72957
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
72968
72958
|
VTable: typeof import('vuetify/components')['VTable']
|
72959
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
72960
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
72961
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
72962
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
72969
72963
|
VTab: typeof import('vuetify/components')['VTab']
|
72970
72964
|
VTabs: typeof import('vuetify/components')['VTabs']
|
72971
72965
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
72972
72966
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
72973
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
72974
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
72975
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
72976
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
72977
72967
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
72978
72968
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
72979
72969
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
72980
72970
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
72981
72971
|
VWindow: typeof import('vuetify/components')['VWindow']
|
72982
72972
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
72973
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
72974
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
72983
72975
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
72984
72976
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
72985
72977
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -72989,16 +72981,17 @@ declare module '@vue/runtime-core' {
|
|
72989
72981
|
VRow: typeof import('vuetify/components')['VRow']
|
72990
72982
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
72991
72983
|
VHover: typeof import('vuetify/components')['VHover']
|
72984
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
72992
72985
|
VLayout: typeof import('vuetify/components')['VLayout']
|
72993
72986
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
72994
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
72995
72987
|
VLazy: typeof import('vuetify/components')['VLazy']
|
72996
72988
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
72997
72989
|
VParallax: typeof import('vuetify/components')['VParallax']
|
72998
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
72999
72990
|
VRadio: typeof import('vuetify/components')['VRadio']
|
72991
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
73000
72992
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
73001
72993
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
72994
|
+
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73002
72995
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
73003
72996
|
VValidation: typeof import('vuetify/components')['VValidation']
|
73004
72997
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
@@ -73018,7 +73011,6 @@ declare module '@vue/runtime-core' {
|
|
73018
73011
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
73019
73012
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
73020
73013
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
73021
|
-
VSparkline: typeof import('vuetify/components')['VSparkline']
|
73022
73014
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
73023
73015
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
73024
73016
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
@@ -73028,15 +73020,15 @@ declare module '@vue/runtime-core' {
|
|
73028
73020
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
73029
73021
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
73030
73022
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
73031
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73032
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73033
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73034
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73035
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73036
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73037
73023
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
73038
73024
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
73039
73025
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
73026
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
73027
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
73028
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
73029
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
73030
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
73031
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
73040
73032
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
73041
73033
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
73042
73034
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|