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
package/dist/vuetify.d.ts
CHANGED
|
@@ -1,32 +1,41 @@
|
|
|
1
1
|
import * as vue from 'vue';
|
|
2
|
-
import { Ref, DeepReadonly, ComponentPropsOptions, ExtractPropTypes, VNodeChild, PropType, JSXComponent, CSSProperties,
|
|
2
|
+
import { Ref, DeepReadonly, ComponentPropsOptions, ExtractPropTypes, VNodeChild, PropType, JSXComponent, CSSProperties, ComponentInternalInstance, ComputedRef, EffectScope, nextTick, DirectiveBinding, WritableComputedRef, Prop, ComponentPublicInstance, InjectionKey, UnwrapRef } from 'vue';
|
|
3
3
|
// @ts-ignore
|
|
4
4
|
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
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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;
|
|
25
|
+
}
|
|
26
|
+
declare function useLocale(): LocaleInstance & RtlInstance;
|
|
27
|
+
interface RtlOptions {
|
|
28
|
+
rtl?: Record<string, boolean>;
|
|
29
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,96 +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): Record<string, any>;
|
|
264
|
-
|
|
265
241
|
type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
|
|
266
242
|
declare const IconValue: PropType<IconValue>;
|
|
267
243
|
interface IconAliases {
|
|
@@ -1327,6 +1303,7 @@ declare const VAppBar: {
|
|
|
1327
1303
|
extended: boolean;
|
|
1328
1304
|
extensionHeight: string | number;
|
|
1329
1305
|
floating: boolean;
|
|
1306
|
+
scrollThreshold: string | number;
|
|
1330
1307
|
modelValue: boolean;
|
|
1331
1308
|
}> & Omit<{
|
|
1332
1309
|
flat: boolean;
|
|
@@ -1341,6 +1318,7 @@ declare const VAppBar: {
|
|
|
1341
1318
|
extended: boolean;
|
|
1342
1319
|
extensionHeight: string | number;
|
|
1343
1320
|
floating: boolean;
|
|
1321
|
+
scrollThreshold: string | number;
|
|
1344
1322
|
modelValue: boolean;
|
|
1345
1323
|
} & {
|
|
1346
1324
|
name?: string | undefined;
|
|
@@ -1354,7 +1332,6 @@ declare const VAppBar: {
|
|
|
1354
1332
|
theme?: string | undefined;
|
|
1355
1333
|
rounded?: string | number | boolean | undefined;
|
|
1356
1334
|
scrollTarget?: string | undefined;
|
|
1357
|
-
scrollThreshold?: string | number | undefined;
|
|
1358
1335
|
} & {
|
|
1359
1336
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1360
1337
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1381,7 +1358,7 @@ declare const VAppBar: {
|
|
|
1381
1358
|
"v-slot:extension"?: false | (() => vue.VNodeChild) | undefined;
|
|
1382
1359
|
} & {
|
|
1383
1360
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1384
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "absolute" | "location" | "height" | "order" | "style" | "tag" | "collapse" | "rounded" | "density" | "extended" | "extensionHeight" | "floating" | "modelValue">;
|
|
1361
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "flat" | "absolute" | "location" | "height" | "order" | "style" | "tag" | "collapse" | "rounded" | "density" | "extended" | "extensionHeight" | "floating" | "scrollThreshold" | "modelValue">;
|
|
1385
1362
|
$attrs: {
|
|
1386
1363
|
[x: string]: unknown;
|
|
1387
1364
|
};
|
|
@@ -1408,6 +1385,7 @@ declare const VAppBar: {
|
|
|
1408
1385
|
extended: boolean;
|
|
1409
1386
|
extensionHeight: string | number;
|
|
1410
1387
|
floating: boolean;
|
|
1388
|
+
scrollThreshold: string | number;
|
|
1411
1389
|
modelValue: boolean;
|
|
1412
1390
|
} & {
|
|
1413
1391
|
name?: string | undefined;
|
|
@@ -1421,7 +1399,6 @@ declare const VAppBar: {
|
|
|
1421
1399
|
theme?: string | undefined;
|
|
1422
1400
|
rounded?: string | number | boolean | undefined;
|
|
1423
1401
|
scrollTarget?: string | undefined;
|
|
1424
|
-
scrollThreshold?: string | number | undefined;
|
|
1425
1402
|
} & {
|
|
1426
1403
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1427
1404
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1464,6 +1441,7 @@ declare const VAppBar: {
|
|
|
1464
1441
|
extended: boolean;
|
|
1465
1442
|
extensionHeight: string | number;
|
|
1466
1443
|
floating: boolean;
|
|
1444
|
+
scrollThreshold: string | number;
|
|
1467
1445
|
modelValue: boolean;
|
|
1468
1446
|
}, {}, string> & {
|
|
1469
1447
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1498,6 +1476,7 @@ declare const VAppBar: {
|
|
|
1498
1476
|
extended: boolean;
|
|
1499
1477
|
extensionHeight: string | number;
|
|
1500
1478
|
floating: boolean;
|
|
1479
|
+
scrollThreshold: string | number;
|
|
1501
1480
|
modelValue: boolean;
|
|
1502
1481
|
} & {
|
|
1503
1482
|
name?: string | undefined;
|
|
@@ -1511,7 +1490,6 @@ declare const VAppBar: {
|
|
|
1511
1490
|
theme?: string | undefined;
|
|
1512
1491
|
rounded?: string | number | boolean | undefined;
|
|
1513
1492
|
scrollTarget?: string | undefined;
|
|
1514
|
-
scrollThreshold?: string | number | undefined;
|
|
1515
1493
|
} & {
|
|
1516
1494
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1517
1495
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1555,6 +1533,7 @@ declare const VAppBar: {
|
|
|
1555
1533
|
extended: boolean;
|
|
1556
1534
|
extensionHeight: string | number;
|
|
1557
1535
|
floating: boolean;
|
|
1536
|
+
scrollThreshold: string | number;
|
|
1558
1537
|
modelValue: boolean;
|
|
1559
1538
|
} & {
|
|
1560
1539
|
name?: string | undefined;
|
|
@@ -1568,7 +1547,6 @@ declare const VAppBar: {
|
|
|
1568
1547
|
theme?: string | undefined;
|
|
1569
1548
|
rounded?: string | number | boolean | undefined;
|
|
1570
1549
|
scrollTarget?: string | undefined;
|
|
1571
|
-
scrollThreshold?: string | number | undefined;
|
|
1572
1550
|
} & {
|
|
1573
1551
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1574
1552
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1611,6 +1589,7 @@ declare const VAppBar: {
|
|
|
1611
1589
|
extended: boolean;
|
|
1612
1590
|
extensionHeight: string | number;
|
|
1613
1591
|
floating: boolean;
|
|
1592
|
+
scrollThreshold: string | number;
|
|
1614
1593
|
modelValue: boolean;
|
|
1615
1594
|
}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
1616
1595
|
height: {
|
|
@@ -1622,6 +1601,7 @@ declare const VAppBar: {
|
|
|
1622
1601
|
};
|
|
1623
1602
|
scrollThreshold: {
|
|
1624
1603
|
type: (StringConstructor | NumberConstructor)[];
|
|
1604
|
+
default: number;
|
|
1625
1605
|
};
|
|
1626
1606
|
name: {
|
|
1627
1607
|
type: StringConstructor;
|
|
@@ -1689,6 +1669,7 @@ declare const VAppBar: {
|
|
|
1689
1669
|
};
|
|
1690
1670
|
scrollThreshold: {
|
|
1691
1671
|
type: (StringConstructor | NumberConstructor)[];
|
|
1672
|
+
default: number;
|
|
1692
1673
|
};
|
|
1693
1674
|
name: {
|
|
1694
1675
|
type: StringConstructor;
|
|
@@ -1749,18 +1730,101 @@ declare const VAppBar: {
|
|
|
1749
1730
|
}>>;
|
|
1750
1731
|
type VAppBar = InstanceType<typeof VAppBar>;
|
|
1751
1732
|
|
|
1733
|
+
interface GroupItem {
|
|
1734
|
+
id: number;
|
|
1735
|
+
value: Ref<unknown>;
|
|
1736
|
+
disabled: Ref<boolean | undefined>;
|
|
1737
|
+
}
|
|
1738
|
+
interface GroupProvide {
|
|
1739
|
+
register: (item: GroupItem, cmp: ComponentInternalInstance) => void;
|
|
1740
|
+
unregister: (id: number) => void;
|
|
1741
|
+
select: (id: number, value: boolean) => void;
|
|
1742
|
+
selected: Ref<Readonly<number[]>>;
|
|
1743
|
+
isSelected: (id: number) => boolean;
|
|
1744
|
+
prev: () => void;
|
|
1745
|
+
next: () => void;
|
|
1746
|
+
selectedClass: Ref<string | undefined>;
|
|
1747
|
+
items: ComputedRef<{
|
|
1748
|
+
id: number;
|
|
1749
|
+
value: unknown;
|
|
1750
|
+
disabled: boolean | undefined;
|
|
1751
|
+
}[]>;
|
|
1752
|
+
disabled: Ref<boolean | undefined>;
|
|
1753
|
+
getItemIndex: (value: unknown) => number;
|
|
1754
|
+
}
|
|
1755
|
+
interface GroupItemProvide {
|
|
1756
|
+
id: number;
|
|
1757
|
+
isSelected: Ref<boolean>;
|
|
1758
|
+
toggle: () => void;
|
|
1759
|
+
select: (value: boolean) => void;
|
|
1760
|
+
selectedClass: Ref<(string | undefined)[] | false>;
|
|
1761
|
+
value: Ref<unknown>;
|
|
1762
|
+
disabled: Ref<boolean | undefined>;
|
|
1763
|
+
group: GroupProvide;
|
|
1764
|
+
}
|
|
1765
|
+
|
|
1766
|
+
type Density = null | 'default' | 'comfortable' | 'compact';
|
|
1767
|
+
|
|
1752
1768
|
declare const VAppBarNavIcon: {
|
|
1753
1769
|
new (...args: any[]): {
|
|
1754
1770
|
$: vue.ComponentInternalInstance;
|
|
1755
1771
|
$data: {};
|
|
1756
1772
|
$props: Partial<{
|
|
1773
|
+
symbol: any;
|
|
1774
|
+
replace: boolean;
|
|
1775
|
+
flat: boolean;
|
|
1776
|
+
exact: boolean;
|
|
1777
|
+
block: boolean;
|
|
1778
|
+
active: boolean;
|
|
1757
1779
|
style: vue.StyleValue;
|
|
1758
|
-
|
|
1780
|
+
disabled: boolean;
|
|
1781
|
+
size: string | number;
|
|
1782
|
+
tag: string;
|
|
1783
|
+
icon: NonNullable<boolean | IconValue>;
|
|
1784
|
+
rounded: string | number | boolean;
|
|
1785
|
+
density: Density;
|
|
1786
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
1787
|
+
stacked: boolean;
|
|
1788
|
+
ripple: boolean;
|
|
1759
1789
|
}> & Omit<{
|
|
1790
|
+
symbol: any;
|
|
1791
|
+
replace: boolean;
|
|
1792
|
+
flat: boolean;
|
|
1793
|
+
exact: boolean;
|
|
1794
|
+
block: boolean;
|
|
1760
1795
|
style: vue.StyleValue;
|
|
1761
|
-
|
|
1796
|
+
disabled: boolean;
|
|
1797
|
+
size: string | number;
|
|
1798
|
+
tag: string;
|
|
1799
|
+
icon: NonNullable<boolean | IconValue>;
|
|
1800
|
+
density: Density;
|
|
1801
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
1802
|
+
stacked: boolean;
|
|
1803
|
+
ripple: boolean;
|
|
1762
1804
|
} & {
|
|
1805
|
+
location?: Anchor | undefined;
|
|
1806
|
+
height?: string | number | undefined;
|
|
1807
|
+
width?: string | number | undefined;
|
|
1808
|
+
active?: boolean | undefined;
|
|
1809
|
+
border?: string | number | boolean | undefined;
|
|
1810
|
+
color?: string | undefined;
|
|
1811
|
+
maxHeight?: string | number | undefined;
|
|
1812
|
+
maxWidth?: string | number | undefined;
|
|
1813
|
+
minHeight?: string | number | undefined;
|
|
1814
|
+
minWidth?: string | number | undefined;
|
|
1815
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
1816
|
+
value?: any;
|
|
1817
|
+
loading?: string | boolean | undefined;
|
|
1818
|
+
text?: string | undefined;
|
|
1763
1819
|
class?: any;
|
|
1820
|
+
href?: string | undefined;
|
|
1821
|
+
elevation?: string | number | undefined;
|
|
1822
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
1823
|
+
theme?: string | undefined;
|
|
1824
|
+
rounded?: string | number | boolean | undefined;
|
|
1825
|
+
selectedClass?: string | undefined;
|
|
1826
|
+
prependIcon?: IconValue | undefined;
|
|
1827
|
+
appendIcon?: IconValue | undefined;
|
|
1764
1828
|
} & {
|
|
1765
1829
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1766
1830
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1779,7 +1843,7 @@ declare const VAppBarNavIcon: {
|
|
|
1779
1843
|
"v-slot:prepend"?: false | (() => vue.VNodeChild) | undefined;
|
|
1780
1844
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
1781
1845
|
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
1782
|
-
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "style" | "icon">;
|
|
1846
|
+
} & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "symbol" | "replace" | "flat" | "exact" | "block" | "active" | "style" | "disabled" | "size" | "tag" | "icon" | "rounded" | "density" | "variant" | "stacked" | "ripple">;
|
|
1783
1847
|
$attrs: {
|
|
1784
1848
|
[x: string]: unknown;
|
|
1785
1849
|
};
|
|
@@ -1794,10 +1858,44 @@ declare const VAppBarNavIcon: {
|
|
|
1794
1858
|
$emit: (event: string, ...args: any[]) => void;
|
|
1795
1859
|
$el: any;
|
|
1796
1860
|
$options: vue.ComponentOptionsBase<{
|
|
1861
|
+
symbol: any;
|
|
1862
|
+
replace: boolean;
|
|
1863
|
+
flat: boolean;
|
|
1864
|
+
exact: boolean;
|
|
1865
|
+
block: boolean;
|
|
1797
1866
|
style: vue.StyleValue;
|
|
1798
|
-
|
|
1867
|
+
disabled: boolean;
|
|
1868
|
+
size: string | number;
|
|
1869
|
+
tag: string;
|
|
1870
|
+
icon: NonNullable<boolean | IconValue>;
|
|
1871
|
+
density: Density;
|
|
1872
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
1873
|
+
stacked: boolean;
|
|
1874
|
+
ripple: boolean;
|
|
1799
1875
|
} & {
|
|
1876
|
+
location?: Anchor | undefined;
|
|
1877
|
+
height?: string | number | undefined;
|
|
1878
|
+
width?: string | number | undefined;
|
|
1879
|
+
active?: boolean | undefined;
|
|
1880
|
+
border?: string | number | boolean | undefined;
|
|
1881
|
+
color?: string | undefined;
|
|
1882
|
+
maxHeight?: string | number | undefined;
|
|
1883
|
+
maxWidth?: string | number | undefined;
|
|
1884
|
+
minHeight?: string | number | undefined;
|
|
1885
|
+
minWidth?: string | number | undefined;
|
|
1886
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
1887
|
+
value?: any;
|
|
1888
|
+
loading?: string | boolean | undefined;
|
|
1889
|
+
text?: string | undefined;
|
|
1800
1890
|
class?: any;
|
|
1891
|
+
href?: string | undefined;
|
|
1892
|
+
elevation?: string | number | undefined;
|
|
1893
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
1894
|
+
theme?: string | undefined;
|
|
1895
|
+
rounded?: string | number | boolean | undefined;
|
|
1896
|
+
selectedClass?: string | undefined;
|
|
1897
|
+
prependIcon?: IconValue | undefined;
|
|
1898
|
+
appendIcon?: IconValue | undefined;
|
|
1801
1899
|
} & {
|
|
1802
1900
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1803
1901
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1817,8 +1915,22 @@ declare const VAppBarNavIcon: {
|
|
|
1817
1915
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
1818
1916
|
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
1819
1917
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
1918
|
+
symbol: any;
|
|
1919
|
+
replace: boolean;
|
|
1920
|
+
flat: boolean;
|
|
1921
|
+
exact: boolean;
|
|
1922
|
+
block: boolean;
|
|
1923
|
+
active: boolean;
|
|
1820
1924
|
style: vue.StyleValue;
|
|
1821
|
-
|
|
1925
|
+
disabled: boolean;
|
|
1926
|
+
size: string | number;
|
|
1927
|
+
tag: string;
|
|
1928
|
+
icon: NonNullable<boolean | IconValue>;
|
|
1929
|
+
rounded: string | number | boolean;
|
|
1930
|
+
density: Density;
|
|
1931
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
1932
|
+
stacked: boolean;
|
|
1933
|
+
ripple: boolean;
|
|
1822
1934
|
}, {}, string> & {
|
|
1823
1935
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
1824
1936
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -1840,10 +1952,44 @@ declare const VAppBarNavIcon: {
|
|
|
1840
1952
|
$nextTick: typeof vue.nextTick;
|
|
1841
1953
|
$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;
|
|
1842
1954
|
} & {
|
|
1955
|
+
symbol: any;
|
|
1956
|
+
replace: boolean;
|
|
1957
|
+
flat: boolean;
|
|
1958
|
+
exact: boolean;
|
|
1959
|
+
block: boolean;
|
|
1843
1960
|
style: vue.StyleValue;
|
|
1844
|
-
|
|
1961
|
+
disabled: boolean;
|
|
1962
|
+
size: string | number;
|
|
1963
|
+
tag: string;
|
|
1964
|
+
icon: NonNullable<boolean | IconValue>;
|
|
1965
|
+
density: Density;
|
|
1966
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
1967
|
+
stacked: boolean;
|
|
1968
|
+
ripple: boolean;
|
|
1845
1969
|
} & {
|
|
1970
|
+
location?: Anchor | undefined;
|
|
1971
|
+
height?: string | number | undefined;
|
|
1972
|
+
width?: string | number | undefined;
|
|
1973
|
+
active?: boolean | undefined;
|
|
1974
|
+
border?: string | number | boolean | undefined;
|
|
1975
|
+
color?: string | undefined;
|
|
1976
|
+
maxHeight?: string | number | undefined;
|
|
1977
|
+
maxWidth?: string | number | undefined;
|
|
1978
|
+
minHeight?: string | number | undefined;
|
|
1979
|
+
minWidth?: string | number | undefined;
|
|
1980
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
1981
|
+
value?: any;
|
|
1982
|
+
loading?: string | boolean | undefined;
|
|
1983
|
+
text?: string | undefined;
|
|
1846
1984
|
class?: any;
|
|
1985
|
+
href?: string | undefined;
|
|
1986
|
+
elevation?: string | number | undefined;
|
|
1987
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
1988
|
+
theme?: string | undefined;
|
|
1989
|
+
rounded?: string | number | boolean | undefined;
|
|
1990
|
+
selectedClass?: string | undefined;
|
|
1991
|
+
prependIcon?: IconValue | undefined;
|
|
1992
|
+
appendIcon?: IconValue | undefined;
|
|
1847
1993
|
} & {
|
|
1848
1994
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1849
1995
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1867,10 +2013,44 @@ declare const VAppBarNavIcon: {
|
|
|
1867
2013
|
__isTeleport?: undefined;
|
|
1868
2014
|
__isSuspense?: undefined;
|
|
1869
2015
|
} & vue.ComponentOptionsBase<{
|
|
2016
|
+
symbol: any;
|
|
2017
|
+
replace: boolean;
|
|
2018
|
+
flat: boolean;
|
|
2019
|
+
exact: boolean;
|
|
2020
|
+
block: boolean;
|
|
1870
2021
|
style: vue.StyleValue;
|
|
1871
|
-
|
|
2022
|
+
disabled: boolean;
|
|
2023
|
+
size: string | number;
|
|
2024
|
+
tag: string;
|
|
2025
|
+
icon: NonNullable<boolean | IconValue>;
|
|
2026
|
+
density: Density;
|
|
2027
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2028
|
+
stacked: boolean;
|
|
2029
|
+
ripple: boolean;
|
|
1872
2030
|
} & {
|
|
2031
|
+
location?: Anchor | undefined;
|
|
2032
|
+
height?: string | number | undefined;
|
|
2033
|
+
width?: string | number | undefined;
|
|
2034
|
+
active?: boolean | undefined;
|
|
2035
|
+
border?: string | number | boolean | undefined;
|
|
2036
|
+
color?: string | undefined;
|
|
2037
|
+
maxHeight?: string | number | undefined;
|
|
2038
|
+
maxWidth?: string | number | undefined;
|
|
2039
|
+
minHeight?: string | number | undefined;
|
|
2040
|
+
minWidth?: string | number | undefined;
|
|
2041
|
+
position?: "fixed" | "absolute" | "static" | "relative" | "sticky" | undefined;
|
|
2042
|
+
value?: any;
|
|
2043
|
+
loading?: string | boolean | undefined;
|
|
2044
|
+
text?: string | undefined;
|
|
1873
2045
|
class?: any;
|
|
2046
|
+
href?: string | undefined;
|
|
2047
|
+
elevation?: string | number | undefined;
|
|
2048
|
+
to?: vue_router.RouteLocationRaw | undefined;
|
|
2049
|
+
theme?: string | undefined;
|
|
2050
|
+
rounded?: string | number | boolean | undefined;
|
|
2051
|
+
selectedClass?: string | undefined;
|
|
2052
|
+
prependIcon?: IconValue | undefined;
|
|
2053
|
+
appendIcon?: IconValue | undefined;
|
|
1874
2054
|
} & {
|
|
1875
2055
|
$children?: vue.VNodeChild | (() => vue.VNodeChild) | {
|
|
1876
2056
|
default?: (() => vue.VNodeChild) | undefined;
|
|
@@ -1890,28 +2070,192 @@ declare const VAppBarNavIcon: {
|
|
|
1890
2070
|
"v-slot:append"?: false | (() => vue.VNodeChild) | undefined;
|
|
1891
2071
|
"v-slot:loader"?: false | (() => vue.VNodeChild) | undefined;
|
|
1892
2072
|
}, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
|
2073
|
+
symbol: any;
|
|
2074
|
+
replace: boolean;
|
|
2075
|
+
flat: boolean;
|
|
2076
|
+
exact: boolean;
|
|
2077
|
+
block: boolean;
|
|
2078
|
+
active: boolean;
|
|
1893
2079
|
style: vue.StyleValue;
|
|
1894
|
-
|
|
2080
|
+
disabled: boolean;
|
|
2081
|
+
size: string | number;
|
|
2082
|
+
tag: string;
|
|
2083
|
+
icon: NonNullable<boolean | IconValue>;
|
|
2084
|
+
rounded: string | number | boolean;
|
|
2085
|
+
density: Density;
|
|
2086
|
+
variant: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2087
|
+
stacked: boolean;
|
|
2088
|
+
ripple: boolean;
|
|
1895
2089
|
}, {}, string> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
|
2090
|
+
color: StringConstructor;
|
|
2091
|
+
variant: Omit<Omit<{
|
|
2092
|
+
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
2093
|
+
default: string;
|
|
2094
|
+
validator: (v: any) => boolean;
|
|
2095
|
+
}, "type" | "default"> & {
|
|
2096
|
+
type: vue.PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2097
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
2098
|
+
}, "type" | "default"> & {
|
|
2099
|
+
type: vue.PropType<NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>>;
|
|
2100
|
+
default: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2101
|
+
};
|
|
2102
|
+
theme: StringConstructor;
|
|
2103
|
+
tag: Omit<{
|
|
2104
|
+
type: StringConstructor;
|
|
2105
|
+
default: string;
|
|
2106
|
+
}, "type" | "default"> & {
|
|
2107
|
+
type: vue.PropType<string>;
|
|
2108
|
+
default: string;
|
|
2109
|
+
};
|
|
2110
|
+
size: {
|
|
2111
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2112
|
+
default: string;
|
|
2113
|
+
};
|
|
2114
|
+
href: StringConstructor;
|
|
2115
|
+
replace: BooleanConstructor;
|
|
2116
|
+
to: vue.PropType<vue_router.RouteLocationRaw>;
|
|
2117
|
+
exact: BooleanConstructor;
|
|
2118
|
+
rounded: {
|
|
2119
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2120
|
+
default: undefined;
|
|
2121
|
+
};
|
|
2122
|
+
position: {
|
|
2123
|
+
type: vue.PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
2124
|
+
validator: (v: any) => boolean;
|
|
2125
|
+
};
|
|
2126
|
+
location: vue.PropType<Anchor>;
|
|
2127
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2128
|
+
value: null;
|
|
2129
|
+
disabled: BooleanConstructor;
|
|
2130
|
+
selectedClass: StringConstructor;
|
|
2131
|
+
elevation: {
|
|
2132
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2133
|
+
validator(v: any): boolean;
|
|
2134
|
+
};
|
|
2135
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
2136
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
2137
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
2138
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
2139
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
2140
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
2141
|
+
density: {
|
|
2142
|
+
type: vue.PropType<Density>;
|
|
2143
|
+
default: string;
|
|
2144
|
+
validator: (v: any) => boolean;
|
|
2145
|
+
};
|
|
1896
2146
|
class: vue.PropType<any>;
|
|
1897
2147
|
style: {
|
|
1898
2148
|
type: vue.PropType<vue.StyleValue>;
|
|
1899
2149
|
default: null;
|
|
1900
2150
|
};
|
|
2151
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2152
|
+
active: {
|
|
2153
|
+
type: BooleanConstructor;
|
|
2154
|
+
default: undefined;
|
|
2155
|
+
};
|
|
2156
|
+
symbol: {
|
|
2157
|
+
type: null;
|
|
2158
|
+
default: vue.InjectionKey<GroupProvide>;
|
|
2159
|
+
};
|
|
2160
|
+
flat: BooleanConstructor;
|
|
1901
2161
|
icon: {
|
|
1902
|
-
type: vue.PropType<IconValue
|
|
1903
|
-
default:
|
|
2162
|
+
type: vue.PropType<NonNullable<boolean | IconValue>>;
|
|
2163
|
+
default: NonNullable<boolean | IconValue>;
|
|
1904
2164
|
};
|
|
2165
|
+
prependIcon: vue.PropType<IconValue>;
|
|
2166
|
+
appendIcon: vue.PropType<IconValue>;
|
|
2167
|
+
block: BooleanConstructor;
|
|
2168
|
+
stacked: BooleanConstructor;
|
|
2169
|
+
ripple: {
|
|
2170
|
+
type: BooleanConstructor;
|
|
2171
|
+
default: boolean;
|
|
2172
|
+
};
|
|
2173
|
+
text: StringConstructor;
|
|
1905
2174
|
}, vue.ExtractPropTypes<{
|
|
2175
|
+
color: StringConstructor;
|
|
2176
|
+
variant: Omit<Omit<{
|
|
2177
|
+
type: vue.PropType<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
2178
|
+
default: string;
|
|
2179
|
+
validator: (v: any) => boolean;
|
|
2180
|
+
}, "type" | "default"> & {
|
|
2181
|
+
type: vue.PropType<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2182
|
+
default: NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">;
|
|
2183
|
+
}, "type" | "default"> & {
|
|
2184
|
+
type: vue.PropType<NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>>;
|
|
2185
|
+
default: NonNullable<NonNullable<"flat" | "text" | "elevated" | "tonal" | "outlined" | "plain">>;
|
|
2186
|
+
};
|
|
2187
|
+
theme: StringConstructor;
|
|
2188
|
+
tag: Omit<{
|
|
2189
|
+
type: StringConstructor;
|
|
2190
|
+
default: string;
|
|
2191
|
+
}, "type" | "default"> & {
|
|
2192
|
+
type: vue.PropType<string>;
|
|
2193
|
+
default: string;
|
|
2194
|
+
};
|
|
2195
|
+
size: {
|
|
2196
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2197
|
+
default: string;
|
|
2198
|
+
};
|
|
2199
|
+
href: StringConstructor;
|
|
2200
|
+
replace: BooleanConstructor;
|
|
2201
|
+
to: vue.PropType<vue_router.RouteLocationRaw>;
|
|
2202
|
+
exact: BooleanConstructor;
|
|
2203
|
+
rounded: {
|
|
2204
|
+
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2205
|
+
default: undefined;
|
|
2206
|
+
};
|
|
2207
|
+
position: {
|
|
2208
|
+
type: vue.PropType<"fixed" | "absolute" | "static" | "relative" | "sticky">;
|
|
2209
|
+
validator: (v: any) => boolean;
|
|
2210
|
+
};
|
|
2211
|
+
location: vue.PropType<Anchor>;
|
|
2212
|
+
loading: (StringConstructor | BooleanConstructor)[];
|
|
2213
|
+
value: null;
|
|
2214
|
+
disabled: BooleanConstructor;
|
|
2215
|
+
selectedClass: StringConstructor;
|
|
2216
|
+
elevation: {
|
|
2217
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2218
|
+
validator(v: any): boolean;
|
|
2219
|
+
};
|
|
2220
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
2221
|
+
maxHeight: (StringConstructor | NumberConstructor)[];
|
|
2222
|
+
maxWidth: (StringConstructor | NumberConstructor)[];
|
|
2223
|
+
minHeight: (StringConstructor | NumberConstructor)[];
|
|
2224
|
+
minWidth: (StringConstructor | NumberConstructor)[];
|
|
2225
|
+
width: (StringConstructor | NumberConstructor)[];
|
|
2226
|
+
density: {
|
|
2227
|
+
type: vue.PropType<Density>;
|
|
2228
|
+
default: string;
|
|
2229
|
+
validator: (v: any) => boolean;
|
|
2230
|
+
};
|
|
1906
2231
|
class: vue.PropType<any>;
|
|
1907
2232
|
style: {
|
|
1908
2233
|
type: vue.PropType<vue.StyleValue>;
|
|
1909
2234
|
default: null;
|
|
1910
2235
|
};
|
|
2236
|
+
border: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
2237
|
+
active: {
|
|
2238
|
+
type: BooleanConstructor;
|
|
2239
|
+
default: undefined;
|
|
2240
|
+
};
|
|
2241
|
+
symbol: {
|
|
2242
|
+
type: null;
|
|
2243
|
+
default: vue.InjectionKey<GroupProvide>;
|
|
2244
|
+
};
|
|
2245
|
+
flat: BooleanConstructor;
|
|
1911
2246
|
icon: {
|
|
1912
|
-
type: vue.PropType<IconValue
|
|
1913
|
-
default:
|
|
2247
|
+
type: vue.PropType<NonNullable<boolean | IconValue>>;
|
|
2248
|
+
default: NonNullable<boolean | IconValue>;
|
|
2249
|
+
};
|
|
2250
|
+
prependIcon: vue.PropType<IconValue>;
|
|
2251
|
+
appendIcon: vue.PropType<IconValue>;
|
|
2252
|
+
block: BooleanConstructor;
|
|
2253
|
+
stacked: BooleanConstructor;
|
|
2254
|
+
ripple: {
|
|
2255
|
+
type: BooleanConstructor;
|
|
2256
|
+
default: boolean;
|
|
1914
2257
|
};
|
|
2258
|
+
text: StringConstructor;
|
|
1915
2259
|
}>>;
|
|
1916
2260
|
type VAppBarNavIcon = InstanceType<typeof VAppBarNavIcon>;
|
|
1917
2261
|
|
|
@@ -2063,8 +2407,6 @@ declare const VAppBarTitle: {
|
|
|
2063
2407
|
}>>;
|
|
2064
2408
|
type VAppBarTitle = InstanceType<typeof VAppBarTitle>;
|
|
2065
2409
|
|
|
2066
|
-
type Density = null | 'default' | 'comfortable' | 'compact';
|
|
2067
|
-
|
|
2068
2410
|
declare const allowedTypes: readonly ["success", "info", "warning", "error"];
|
|
2069
2411
|
type ContextualType = typeof allowedTypes[number];
|
|
2070
2412
|
declare const VAlert: {
|
|
@@ -2720,6 +3062,30 @@ declare function connectedLocationStrategy(data: LocationStrategyData, props: St
|
|
|
2720
3062
|
} | undefined;
|
|
2721
3063
|
};
|
|
2722
3064
|
|
|
3065
|
+
interface InternalItem<T = any> {
|
|
3066
|
+
title: string;
|
|
3067
|
+
value: any;
|
|
3068
|
+
props: {
|
|
3069
|
+
[key: string]: any;
|
|
3070
|
+
title: string;
|
|
3071
|
+
value: any;
|
|
3072
|
+
};
|
|
3073
|
+
children?: InternalItem<T>[];
|
|
3074
|
+
raw: T;
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
/**
|
|
3078
|
+
* - match without highlight
|
|
3079
|
+
* - single match (index), length already known
|
|
3080
|
+
* - single match (start, end)
|
|
3081
|
+
* - multiple matches (start, end), probably shouldn't overlap
|
|
3082
|
+
*/
|
|
3083
|
+
type FilterMatch = boolean | number | [number, number] | [number, number][];
|
|
3084
|
+
type FilterFunction = (value: string, query: string, item?: any) => FilterMatch;
|
|
3085
|
+
type FilterKeyFunctions = Record<string, FilterFunction>;
|
|
3086
|
+
type FilterKeys = string | string[];
|
|
3087
|
+
type FilterMode = 'some' | 'every' | 'union' | 'intersection';
|
|
3088
|
+
|
|
2723
3089
|
interface LoaderSlotProps {
|
|
2724
3090
|
color: string | undefined;
|
|
2725
3091
|
isActive: boolean;
|
|
@@ -8667,39 +9033,6 @@ declare const VBreadcrumbsDivider: {
|
|
|
8667
9033
|
divider: (StringConstructor | NumberConstructor)[];
|
|
8668
9034
|
}>>;
|
|
8669
9035
|
|
|
8670
|
-
interface GroupItem {
|
|
8671
|
-
id: number;
|
|
8672
|
-
value: Ref<unknown>;
|
|
8673
|
-
disabled: Ref<boolean | undefined>;
|
|
8674
|
-
}
|
|
8675
|
-
interface GroupProvide {
|
|
8676
|
-
register: (item: GroupItem, cmp: ComponentInternalInstance) => void;
|
|
8677
|
-
unregister: (id: number) => void;
|
|
8678
|
-
select: (id: number, value: boolean) => void;
|
|
8679
|
-
selected: Ref<Readonly<number[]>>;
|
|
8680
|
-
isSelected: (id: number) => boolean;
|
|
8681
|
-
prev: () => void;
|
|
8682
|
-
next: () => void;
|
|
8683
|
-
selectedClass: Ref<string | undefined>;
|
|
8684
|
-
items: ComputedRef<{
|
|
8685
|
-
id: number;
|
|
8686
|
-
value: unknown;
|
|
8687
|
-
disabled: boolean | undefined;
|
|
8688
|
-
}[]>;
|
|
8689
|
-
disabled: Ref<boolean | undefined>;
|
|
8690
|
-
getItemIndex: (value: unknown) => number;
|
|
8691
|
-
}
|
|
8692
|
-
interface GroupItemProvide {
|
|
8693
|
-
id: number;
|
|
8694
|
-
isSelected: Ref<boolean>;
|
|
8695
|
-
toggle: () => void;
|
|
8696
|
-
select: (value: boolean) => void;
|
|
8697
|
-
selectedClass: Ref<(string | undefined)[] | false>;
|
|
8698
|
-
value: Ref<unknown>;
|
|
8699
|
-
disabled: Ref<boolean | undefined>;
|
|
8700
|
-
group: GroupProvide;
|
|
8701
|
-
}
|
|
8702
|
-
|
|
8703
9036
|
declare const VBtn: {
|
|
8704
9037
|
new (...args: any[]): {
|
|
8705
9038
|
$: vue.ComponentInternalInstance;
|
|
@@ -59501,10 +59834,10 @@ declare module '@vue/runtime-core' {
|
|
|
59501
59834
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
59502
59835
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
59503
59836
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
59837
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
59504
59838
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
59505
59839
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
59506
59840
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
59507
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
59508
59841
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
59509
59842
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
59510
59843
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
@@ -59517,11 +59850,11 @@ declare module '@vue/runtime-core' {
|
|
|
59517
59850
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
59518
59851
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
59519
59852
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
59853
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
59854
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
59520
59855
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
59521
59856
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
59522
59857
|
VChip: typeof import('vuetify/components')['VChip']
|
|
59523
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
59524
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
59525
59858
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
59526
59859
|
VCode: typeof import('vuetify/components')['VCode']
|
|
59527
59860
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
@@ -59563,8 +59896,8 @@ declare module '@vue/runtime-core' {
|
|
|
59563
59896
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
59564
59897
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
59565
59898
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
59566
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
59567
59899
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
59900
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
59568
59901
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
59569
59902
|
VRating: typeof import('vuetify/components')['VRating']
|
|
59570
59903
|
VSelect: typeof import('vuetify/components')['VSelect']
|