@vuetify/nightly 3.2.0 → 3.2.2-master-20230428.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -33
- package/dist/json/importMap.json +66 -66
- package/dist/json/web-types.json +4 -4
- package/dist/vuetify-labs.css +432 -432
- package/dist/vuetify-labs.d.ts +33 -36
- package/dist/vuetify-labs.esm.js +16 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +15 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +4675 -4675
- package/dist/vuetify.d.ts +152 -155
- package/dist/vuetify.esm.js +16 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +15 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/defaults.mjs +11 -1
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +20 -23
- package/lib/util/defineComponent.mjs +2 -2
- package/lib/util/defineComponent.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify.d.ts
CHANGED
|
@@ -5,28 +5,37 @@ import * as vue_router from 'vue-router';
|
|
|
5
5
|
// @ts-ignore
|
|
6
6
|
import { RouteLocationRaw } from 'vue-router';
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
get top(): number;
|
|
26
|
-
get bottom(): number;
|
|
27
|
-
get left(): number;
|
|
28
|
-
get right(): number;
|
|
8
|
+
interface LocaleMessages {
|
|
9
|
+
[key: string]: LocaleMessages | string;
|
|
10
|
+
}
|
|
11
|
+
interface LocaleOptions {
|
|
12
|
+
messages?: LocaleMessages;
|
|
13
|
+
locale?: string;
|
|
14
|
+
fallback?: string;
|
|
15
|
+
adapter?: LocaleInstance;
|
|
16
|
+
}
|
|
17
|
+
interface LocaleInstance {
|
|
18
|
+
name: string;
|
|
19
|
+
messages: Ref<LocaleMessages>;
|
|
20
|
+
current: Ref<string>;
|
|
21
|
+
fallback: Ref<string>;
|
|
22
|
+
t: (key: string, ...params: unknown[]) => string;
|
|
23
|
+
n: (value: number) => string;
|
|
24
|
+
provide: (props: LocaleOptions) => LocaleInstance;
|
|
29
25
|
}
|
|
26
|
+
declare function useLocale(): LocaleInstance & RtlInstance;
|
|
27
|
+
interface RtlOptions {
|
|
28
|
+
rtl?: Record<string, boolean>;
|
|
29
|
+
}
|
|
30
|
+
interface RtlInstance {
|
|
31
|
+
isRtl: Ref<boolean>;
|
|
32
|
+
rtl: Ref<Record<string, boolean>>;
|
|
33
|
+
rtlClasses: Ref<string>;
|
|
34
|
+
}
|
|
35
|
+
declare function useRtl(): {
|
|
36
|
+
isRtl: Ref<boolean>;
|
|
37
|
+
rtlClasses: Ref<string>;
|
|
38
|
+
};
|
|
30
39
|
|
|
31
40
|
type DeepPartial<T> = T extends object ? {
|
|
32
41
|
[P in keyof T]?: DeepPartial<T[P]>;
|
|
@@ -86,6 +95,80 @@ interface ThemeInstance {
|
|
|
86
95
|
}
|
|
87
96
|
declare function useTheme(): ThemeInstance;
|
|
88
97
|
|
|
98
|
+
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
|
99
|
+
type Breakpoint = typeof breakpoints[number];
|
|
100
|
+
type DisplayBreakpoint = 'xs' | Breakpoint;
|
|
101
|
+
type DisplayThresholds = {
|
|
102
|
+
[key in DisplayBreakpoint]: number;
|
|
103
|
+
};
|
|
104
|
+
interface DisplayOptions {
|
|
105
|
+
mobileBreakpoint?: number | DisplayBreakpoint;
|
|
106
|
+
thresholds?: Partial<DisplayThresholds>;
|
|
107
|
+
}
|
|
108
|
+
interface DisplayPlatform {
|
|
109
|
+
android: boolean;
|
|
110
|
+
ios: boolean;
|
|
111
|
+
cordova: boolean;
|
|
112
|
+
electron: boolean;
|
|
113
|
+
chrome: boolean;
|
|
114
|
+
edge: boolean;
|
|
115
|
+
firefox: boolean;
|
|
116
|
+
opera: boolean;
|
|
117
|
+
win: boolean;
|
|
118
|
+
mac: boolean;
|
|
119
|
+
linux: boolean;
|
|
120
|
+
touch: boolean;
|
|
121
|
+
ssr: boolean;
|
|
122
|
+
}
|
|
123
|
+
interface DisplayInstance {
|
|
124
|
+
xs: Ref<boolean>;
|
|
125
|
+
sm: Ref<boolean>;
|
|
126
|
+
md: Ref<boolean>;
|
|
127
|
+
lg: Ref<boolean>;
|
|
128
|
+
xl: Ref<boolean>;
|
|
129
|
+
xxl: Ref<boolean>;
|
|
130
|
+
smAndUp: Ref<boolean>;
|
|
131
|
+
mdAndUp: Ref<boolean>;
|
|
132
|
+
lgAndUp: Ref<boolean>;
|
|
133
|
+
xlAndUp: Ref<boolean>;
|
|
134
|
+
smAndDown: Ref<boolean>;
|
|
135
|
+
mdAndDown: Ref<boolean>;
|
|
136
|
+
lgAndDown: Ref<boolean>;
|
|
137
|
+
xlAndDown: Ref<boolean>;
|
|
138
|
+
name: Ref<DisplayBreakpoint>;
|
|
139
|
+
height: Ref<number>;
|
|
140
|
+
width: Ref<number>;
|
|
141
|
+
mobile: Ref<boolean>;
|
|
142
|
+
mobileBreakpoint: Ref<number | DisplayBreakpoint>;
|
|
143
|
+
platform: Ref<DisplayPlatform>;
|
|
144
|
+
thresholds: Ref<DisplayThresholds>;
|
|
145
|
+
update(): void;
|
|
146
|
+
}
|
|
147
|
+
declare function useDisplay(): DisplayInstance;
|
|
148
|
+
|
|
149
|
+
declare const block: readonly ["top", "bottom"];
|
|
150
|
+
declare const inline: readonly ["start", "end", "left", "right"];
|
|
151
|
+
type Tblock = typeof block[number];
|
|
152
|
+
type Tinline = typeof inline[number];
|
|
153
|
+
type Anchor = Tblock | Tinline | 'center' | 'center center' | `${Tblock} ${Tinline | 'center'}` | `${Tinline} ${Tblock | 'center'}`;
|
|
154
|
+
|
|
155
|
+
declare class Box {
|
|
156
|
+
x: number;
|
|
157
|
+
y: number;
|
|
158
|
+
width: number;
|
|
159
|
+
height: number;
|
|
160
|
+
constructor({ x, y, width, height }: {
|
|
161
|
+
x: number;
|
|
162
|
+
y: number;
|
|
163
|
+
width: number;
|
|
164
|
+
height: number;
|
|
165
|
+
});
|
|
166
|
+
get top(): number;
|
|
167
|
+
get bottom(): number;
|
|
168
|
+
get left(): number;
|
|
169
|
+
get right(): number;
|
|
170
|
+
}
|
|
171
|
+
|
|
89
172
|
type SlotsToProps<U extends Record<string, any[]> | Record<string, Slot>, T = U extends Record<string, any[]> ? MakeSlots<U> : U> = {
|
|
90
173
|
$children?: (VNodeChild | (T extends {
|
|
91
174
|
default: infer V;
|
|
@@ -115,29 +198,12 @@ type SelectItemKey = boolean | string | (string | number)[] | ((item: Record<str
|
|
|
115
198
|
type EventProp<T extends any[] = any[], F = (...args: T) => any> = F | F[];
|
|
116
199
|
declare const EventProp: <T extends any[] = any[]>() => PropType<EventProp<T, (...args: T) => any>>;
|
|
117
200
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
value: any;
|
|
125
|
-
};
|
|
126
|
-
children?: InternalItem<T>[];
|
|
127
|
-
raw: T;
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
/**
|
|
131
|
-
* - match without highlight
|
|
132
|
-
* - single match (index), length already known
|
|
133
|
-
* - single match (start, end)
|
|
134
|
-
* - multiple matches (start, end), probably shouldn't overlap
|
|
135
|
-
*/
|
|
136
|
-
type FilterMatch = boolean | number | [number, number] | [number, number][];
|
|
137
|
-
type FilterFunction = (value: string, query: string, item?: any) => FilterMatch;
|
|
138
|
-
type FilterKeyFunctions = Record<string, FilterFunction>;
|
|
139
|
-
type FilterKeys = string | string[];
|
|
140
|
-
type FilterMode = 'some' | 'every' | 'union' | 'intersection';
|
|
201
|
+
type DefaultsInstance = undefined | {
|
|
202
|
+
[key: string]: undefined | Record<string, unknown>;
|
|
203
|
+
global?: Record<string, unknown>;
|
|
204
|
+
};
|
|
205
|
+
type DefaultsOptions = Partial<DefaultsInstance>;
|
|
206
|
+
declare function useDefaults(props?: Record<string, any>, name?: string): Record<string, any>;
|
|
141
207
|
|
|
142
208
|
interface DateAdapter<Date> {
|
|
143
209
|
date(value?: any): Date | null;
|
|
@@ -172,99 +238,6 @@ type DateOptions = {
|
|
|
172
238
|
};
|
|
173
239
|
};
|
|
174
240
|
|
|
175
|
-
interface LocaleMessages {
|
|
176
|
-
[key: string]: LocaleMessages | string;
|
|
177
|
-
}
|
|
178
|
-
interface LocaleOptions {
|
|
179
|
-
messages?: LocaleMessages;
|
|
180
|
-
locale?: string;
|
|
181
|
-
fallback?: string;
|
|
182
|
-
adapter?: LocaleInstance;
|
|
183
|
-
}
|
|
184
|
-
interface LocaleInstance {
|
|
185
|
-
name: string;
|
|
186
|
-
messages: Ref<LocaleMessages>;
|
|
187
|
-
current: Ref<string>;
|
|
188
|
-
fallback: Ref<string>;
|
|
189
|
-
t: (key: string, ...params: unknown[]) => string;
|
|
190
|
-
n: (value: number) => string;
|
|
191
|
-
provide: (props: LocaleOptions) => LocaleInstance;
|
|
192
|
-
}
|
|
193
|
-
declare function useLocale(): LocaleInstance & RtlInstance;
|
|
194
|
-
interface RtlOptions {
|
|
195
|
-
rtl?: Record<string, boolean>;
|
|
196
|
-
}
|
|
197
|
-
interface RtlInstance {
|
|
198
|
-
isRtl: Ref<boolean>;
|
|
199
|
-
rtl: Ref<Record<string, boolean>>;
|
|
200
|
-
rtlClasses: Ref<string>;
|
|
201
|
-
}
|
|
202
|
-
declare function useRtl(): {
|
|
203
|
-
isRtl: Ref<boolean>;
|
|
204
|
-
rtlClasses: Ref<string>;
|
|
205
|
-
};
|
|
206
|
-
|
|
207
|
-
declare const breakpoints: readonly ["sm", "md", "lg", "xl", "xxl"];
|
|
208
|
-
type Breakpoint = typeof breakpoints[number];
|
|
209
|
-
type DisplayBreakpoint = 'xs' | Breakpoint;
|
|
210
|
-
type DisplayThresholds = {
|
|
211
|
-
[key in DisplayBreakpoint]: number;
|
|
212
|
-
};
|
|
213
|
-
interface DisplayOptions {
|
|
214
|
-
mobileBreakpoint?: number | DisplayBreakpoint;
|
|
215
|
-
thresholds?: Partial<DisplayThresholds>;
|
|
216
|
-
}
|
|
217
|
-
interface DisplayPlatform {
|
|
218
|
-
android: boolean;
|
|
219
|
-
ios: boolean;
|
|
220
|
-
cordova: boolean;
|
|
221
|
-
electron: boolean;
|
|
222
|
-
chrome: boolean;
|
|
223
|
-
edge: boolean;
|
|
224
|
-
firefox: boolean;
|
|
225
|
-
opera: boolean;
|
|
226
|
-
win: boolean;
|
|
227
|
-
mac: boolean;
|
|
228
|
-
linux: boolean;
|
|
229
|
-
touch: boolean;
|
|
230
|
-
ssr: boolean;
|
|
231
|
-
}
|
|
232
|
-
interface DisplayInstance {
|
|
233
|
-
xs: Ref<boolean>;
|
|
234
|
-
sm: Ref<boolean>;
|
|
235
|
-
md: Ref<boolean>;
|
|
236
|
-
lg: Ref<boolean>;
|
|
237
|
-
xl: Ref<boolean>;
|
|
238
|
-
xxl: Ref<boolean>;
|
|
239
|
-
smAndUp: Ref<boolean>;
|
|
240
|
-
mdAndUp: Ref<boolean>;
|
|
241
|
-
lgAndUp: Ref<boolean>;
|
|
242
|
-
xlAndUp: Ref<boolean>;
|
|
243
|
-
smAndDown: Ref<boolean>;
|
|
244
|
-
mdAndDown: Ref<boolean>;
|
|
245
|
-
lgAndDown: Ref<boolean>;
|
|
246
|
-
xlAndDown: Ref<boolean>;
|
|
247
|
-
name: Ref<DisplayBreakpoint>;
|
|
248
|
-
height: Ref<number>;
|
|
249
|
-
width: Ref<number>;
|
|
250
|
-
mobile: Ref<boolean>;
|
|
251
|
-
mobileBreakpoint: Ref<number | DisplayBreakpoint>;
|
|
252
|
-
platform: Ref<DisplayPlatform>;
|
|
253
|
-
thresholds: Ref<DisplayThresholds>;
|
|
254
|
-
update(): void;
|
|
255
|
-
}
|
|
256
|
-
declare function useDisplay(): DisplayInstance;
|
|
257
|
-
|
|
258
|
-
type DefaultsInstance = undefined | {
|
|
259
|
-
[key: string]: undefined | Record<string, unknown>;
|
|
260
|
-
global?: Record<string, unknown>;
|
|
261
|
-
};
|
|
262
|
-
type DefaultsOptions = Partial<DefaultsInstance>;
|
|
263
|
-
declare function useDefaults(props?: Record<string, any>, name?: string, defaults?: Ref<DefaultsInstance>): {
|
|
264
|
-
props: Record<string, any>;
|
|
265
|
-
provideSubDefaults: () => void;
|
|
266
|
-
};
|
|
267
|
-
|
|
268
241
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
269
242
|
declare const IconValue: PropType<IconValue>;
|
|
270
243
|
interface IconAliases {
|
|
@@ -2723,6 +2696,30 @@ declare function connectedLocationStrategy(data: LocationStrategyData, props: St
|
|
|
2723
2696
|
} | undefined;
|
|
2724
2697
|
};
|
|
2725
2698
|
|
|
2699
|
+
interface InternalItem<T = any> {
|
|
2700
|
+
title: string;
|
|
2701
|
+
value: any;
|
|
2702
|
+
props: {
|
|
2703
|
+
[key: string]: any;
|
|
2704
|
+
title: string;
|
|
2705
|
+
value: any;
|
|
2706
|
+
};
|
|
2707
|
+
children?: InternalItem<T>[];
|
|
2708
|
+
raw: T;
|
|
2709
|
+
}
|
|
2710
|
+
|
|
2711
|
+
/**
|
|
2712
|
+
* - match without highlight
|
|
2713
|
+
* - single match (index), length already known
|
|
2714
|
+
* - single match (start, end)
|
|
2715
|
+
* - multiple matches (start, end), probably shouldn't overlap
|
|
2716
|
+
*/
|
|
2717
|
+
type FilterMatch = boolean | number | [number, number] | [number, number][];
|
|
2718
|
+
type FilterFunction = (value: string, query: string, item?: any) => FilterMatch;
|
|
2719
|
+
type FilterKeyFunctions = Record<string, FilterFunction>;
|
|
2720
|
+
type FilterKeys = string | string[];
|
|
2721
|
+
type FilterMode = 'some' | 'every' | 'union' | 'intersection';
|
|
2722
|
+
|
|
2726
2723
|
interface LoaderSlotProps {
|
|
2727
2724
|
color: string | undefined;
|
|
2728
2725
|
isActive: boolean;
|
|
@@ -59499,56 +59496,56 @@ declare module '@vue/runtime-core' {
|
|
|
59499
59496
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
59500
59497
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
59501
59498
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
59499
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
59502
59500
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
59503
59501
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
59504
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
59505
59502
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
59506
59503
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
59507
59504
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
59508
59505
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
59509
59506
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
59510
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
59511
59507
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
59512
59508
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
59513
59509
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
59510
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
59514
59511
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
59515
59512
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
59516
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
59517
59513
|
VCard: typeof import('vuetify/components')['VCard']
|
|
59518
59514
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
59519
59515
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
59520
59516
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
59521
59517
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
59522
59518
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
59523
|
-
|
|
59524
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
59519
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
59525
59520
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
59526
59521
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
59527
59522
|
VChip: typeof import('vuetify/components')['VChip']
|
|
59528
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
59529
59523
|
VCode: typeof import('vuetify/components')['VCode']
|
|
59524
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
59525
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
59530
59526
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
59531
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
59532
59527
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
59528
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
59529
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
59533
59530
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
59534
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
59535
59531
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
59536
59532
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
59537
59533
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
59538
59534
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
59535
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
59539
59536
|
VField: typeof import('vuetify/components')['VField']
|
|
59540
59537
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
59541
59538
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
59542
59539
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
59540
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
59541
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
59542
|
+
VItem: typeof import('vuetify/components')['VItem']
|
|
59543
59543
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
59544
59544
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
59545
59545
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
59546
59546
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
59547
59547
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
59548
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
59549
59548
|
VInput: typeof import('vuetify/components')['VInput']
|
|
59550
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
59551
|
-
VItem: typeof import('vuetify/components')['VItem']
|
|
59552
59549
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
59553
59550
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
59554
59551
|
VList: typeof import('vuetify/components')['VList']
|
|
@@ -59561,10 +59558,10 @@ declare module '@vue/runtime-core' {
|
|
|
59561
59558
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
59562
59559
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
59563
59560
|
VMain: typeof import('vuetify/components')['VMain']
|
|
59564
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
|
59565
59561
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
59566
59562
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
59567
59563
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
59564
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
59568
59565
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
59569
59566
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
59570
59567
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
@@ -59572,16 +59569,18 @@ declare module '@vue/runtime-core' {
|
|
|
59572
59569
|
VRating: typeof import('vuetify/components')['VRating']
|
|
59573
59570
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
59574
59571
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
59575
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
59576
59572
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
59573
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
59577
59574
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
59578
59575
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
59579
59576
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
59580
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
59581
59577
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
59578
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
59582
59579
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
59583
|
-
|
|
59580
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
|
59581
|
+
VTab: typeof import('vuetify/components')['VTab']
|
|
59584
59582
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
59583
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
59585
59584
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
59586
59585
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
59587
59586
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
@@ -59605,8 +59604,8 @@ declare module '@vue/runtime-core' {
|
|
|
59605
59604
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
59606
59605
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
59607
59606
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
59608
|
-
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
59609
59607
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
59608
|
+
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
59610
59609
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
59611
59610
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
59612
59611
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
@@ -59626,7 +59625,5 @@ declare module '@vue/runtime-core' {
|
|
|
59626
59625
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
59627
59626
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
59628
59627
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
59629
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
|
59630
|
-
VTab: typeof import('vuetify/components')['VTab']
|
|
59631
59628
|
}
|
|
59632
59629
|
}
|
package/dist/vuetify.esm.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.2.0
|
|
2
|
+
* Vuetify v3.2.2-master-20230428.0
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { ref, onBeforeUnmount, watch, readonly, reactive, computed, watchEffect, toRefs, capitalize, onScopeDispose, effectScope, shallowRef, inject as inject$1,
|
|
7
|
+
import { ref, onBeforeUnmount, watch, readonly, reactive, computed, watchEffect, toRefs, capitalize, onScopeDispose, effectScope, unref, provide, shallowRef, inject as inject$1, defineComponent as defineComponent$1, camelize, h, getCurrentInstance as getCurrentInstance$1, onDeactivated, onActivated, onMounted, toRaw, createVNode, TransitionGroup, Transition, mergeProps, onBeforeMount, nextTick, withDirectives, Fragment, resolveDirective, vShow, isRef, toRef, Text, resolveDynamicComponent, cloneVNode, warn, toHandlers, Teleport, createTextVNode, onBeforeUpdate, vModelText, onUpdated } from 'vue';
|
|
8
8
|
|
|
9
9
|
const IN_BROWSER = typeof window !== 'undefined';
|
|
10
10
|
const SUPPORTS_INTERSECTION = IN_BROWSER && 'IntersectionObserver' in window;
|
|
@@ -1012,7 +1012,7 @@ function provideDefaults(defaults, options) {
|
|
|
1012
1012
|
function propIsDefined(vnode, prop) {
|
|
1013
1013
|
return typeof vnode.props?.[prop] !== 'undefined' || typeof vnode.props?.[toKebabCase(prop)] !== 'undefined';
|
|
1014
1014
|
}
|
|
1015
|
-
function
|
|
1015
|
+
function internalUseDefaults() {
|
|
1016
1016
|
let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
1017
1017
|
let name = arguments.length > 1 ? arguments[1] : undefined;
|
|
1018
1018
|
let defaults = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : injectDefaults();
|
|
@@ -1056,6 +1056,16 @@ function useDefaults() {
|
|
|
1056
1056
|
provideSubDefaults
|
|
1057
1057
|
};
|
|
1058
1058
|
}
|
|
1059
|
+
function useDefaults() {
|
|
1060
|
+
let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
1061
|
+
let name = arguments.length > 1 ? arguments[1] : undefined;
|
|
1062
|
+
const {
|
|
1063
|
+
props: _props,
|
|
1064
|
+
provideSubDefaults
|
|
1065
|
+
} = internalUseDefaults(props, name);
|
|
1066
|
+
provideSubDefaults();
|
|
1067
|
+
return _props;
|
|
1068
|
+
}
|
|
1059
1069
|
|
|
1060
1070
|
// Utils
|
|
1061
1071
|
|
|
@@ -1083,7 +1093,7 @@ function defineComponent(options) {
|
|
|
1083
1093
|
const {
|
|
1084
1094
|
props: _props,
|
|
1085
1095
|
provideSubDefaults
|
|
1086
|
-
} =
|
|
1096
|
+
} = internalUseDefaults(props, props._as ?? options.name, defaults);
|
|
1087
1097
|
const setupBindings = options._setup(_props, ctx);
|
|
1088
1098
|
provideSubDefaults();
|
|
1089
1099
|
return setupBindings;
|
|
@@ -19417,7 +19427,7 @@ function createVuetify$1() {
|
|
|
19417
19427
|
date
|
|
19418
19428
|
};
|
|
19419
19429
|
}
|
|
19420
|
-
const version$1 = "3.2.0";
|
|
19430
|
+
const version$1 = "3.2.2-master-20230428.0";
|
|
19421
19431
|
createVuetify$1.version = version$1;
|
|
19422
19432
|
|
|
19423
19433
|
// Vue's inject() can only be used in setup
|
|
@@ -19437,7 +19447,7 @@ const createVuetify = function () {
|
|
|
19437
19447
|
...options
|
|
19438
19448
|
});
|
|
19439
19449
|
};
|
|
19440
|
-
const version = "3.2.0";
|
|
19450
|
+
const version = "3.2.2-master-20230428.0";
|
|
19441
19451
|
createVuetify.version = version;
|
|
19442
19452
|
|
|
19443
19453
|
export { components, createVuetify, directives, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|