vuetify 3.0.2 → 3.0.3
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 +23 -23
- package/dist/json/importMap.json +84 -84
- package/dist/json/web-types.json +91 -60
- package/dist/vuetify.css +114 -114
- package/dist/vuetify.d.ts +332 -141
- package/dist/vuetify.esm.js +13 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs +2 -2
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +275 -62
- package/lib/components/VAutocomplete/index.d.ts +6 -6
- package/lib/components/VCombobox/index.d.ts +6 -6
- package/lib/components/VField/index.d.ts +6 -6
- package/lib/components/VFileInput/index.d.ts +1 -1
- package/lib/components/VFooter/VFooter.mjs +1 -1
- package/lib/components/VFooter/VFooter.mjs.map +1 -1
- package/lib/components/VLazy/VLazy.mjs +2 -1
- package/lib/components/VLazy/VLazy.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VOverlay/locationStrategies.mjs +3 -1
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +1 -1
- package/lib/components/VProgressLinear/_variables.scss +1 -1
- package/lib/components/VSelect/index.d.ts +6 -6
- package/lib/components/VSelectionControl/index.d.ts +6 -6
- package/lib/components/VTextField/index.d.ts +18 -18
- package/lib/components/VTextarea/index.d.ts +1 -1
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VToolbar/index.d.ts +9 -8
- package/lib/components/index.d.ts +310 -119
- package/lib/components/transitions/dialog-transition.mjs +2 -2
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +22 -22
- package/package.json +2 -2
|
@@ -11,6 +11,26 @@
|
|
|
11
11
|
"type": "string",
|
|
12
12
|
"description": "Specify a theme for this component and all of its children"
|
|
13
13
|
},
|
|
14
|
+
"v-app-bar/image": {
|
|
15
|
+
"type": "string",
|
|
16
|
+
"description": "The `src` used for `v-img`. For additional customization options, use the **image** slot."
|
|
17
|
+
},
|
|
18
|
+
"v-app-bar/title": {
|
|
19
|
+
"type": "string",
|
|
20
|
+
"description": "MISSING DESCRIPTION"
|
|
21
|
+
},
|
|
22
|
+
"v-app-bar/flat": {
|
|
23
|
+
"type": "boolean",
|
|
24
|
+
"description": "Removes the component's **box-shadow**."
|
|
25
|
+
},
|
|
26
|
+
"v-app-bar/model-value": {
|
|
27
|
+
"type": "boolean",
|
|
28
|
+
"description": "MISSING DESCRIPTION"
|
|
29
|
+
},
|
|
30
|
+
"v-app-bar/location": {
|
|
31
|
+
"type": "\"top\" | \"bottom\"",
|
|
32
|
+
"description": "MISSING DESCRIPTION"
|
|
33
|
+
},
|
|
14
34
|
"v-app-bar/absolute": {
|
|
15
35
|
"type": "boolean",
|
|
16
36
|
"description": "Applies position: absolute to the component."
|
|
@@ -35,10 +55,6 @@
|
|
|
35
55
|
"type": "string | number",
|
|
36
56
|
"description": "Designate an explicit height for the `extension` slot."
|
|
37
57
|
},
|
|
38
|
-
"v-app-bar/flat": {
|
|
39
|
-
"type": "boolean",
|
|
40
|
-
"description": "Removes the component's **box-shadow**."
|
|
41
|
-
},
|
|
42
58
|
"v-app-bar/floating": {
|
|
43
59
|
"type": "boolean",
|
|
44
60
|
"description": "Applies **display: inline-flex** to the component."
|
|
@@ -47,14 +63,6 @@
|
|
|
47
63
|
"type": "string | number",
|
|
48
64
|
"description": "Designates a specific height for the toolbar. Overrides the heights imposed by other props, e.g. **prominent**, **dense**, **extended**, etc."
|
|
49
65
|
},
|
|
50
|
-
"v-app-bar/image": {
|
|
51
|
-
"type": "string",
|
|
52
|
-
"description": "The `src` used for `v-img`. For additional customization options, use the **image** slot."
|
|
53
|
-
},
|
|
54
|
-
"v-app-bar/title": {
|
|
55
|
-
"type": "string",
|
|
56
|
-
"description": "MISSING DESCRIPTION"
|
|
57
|
-
},
|
|
58
66
|
"v-app-bar/border": {
|
|
59
67
|
"type": "string | number | boolean",
|
|
60
68
|
"description": "Applies border styles to component."
|
|
@@ -83,14 +91,6 @@
|
|
|
83
91
|
"type": "string | number",
|
|
84
92
|
"description": "MISSING DESCRIPTION"
|
|
85
93
|
},
|
|
86
|
-
"v-app-bar/model-value": {
|
|
87
|
-
"type": "boolean",
|
|
88
|
-
"description": "MISSING DESCRIPTION"
|
|
89
|
-
},
|
|
90
|
-
"v-app-bar/location": {
|
|
91
|
-
"type": "\"top\" | \"bottom\"",
|
|
92
|
-
"description": "MISSING DESCRIPTION"
|
|
93
|
-
},
|
|
94
94
|
"v-app-bar-nav-icon/icon": {
|
|
95
95
|
"type": "string | (new () => any) | FunctionalComponent",
|
|
96
96
|
"description": "MISSING DESCRIPTION"
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
},
|
|
266
266
|
"v-autocomplete/menu-props": {
|
|
267
267
|
"type": "unknown",
|
|
268
|
-
"description": "Pass props through to the `v-menu` component. Accepts
|
|
268
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [/api/v-menu](/api/v-menu/#props), camelCase keys are recommended."
|
|
269
269
|
},
|
|
270
270
|
"v-autocomplete/id": {
|
|
271
271
|
"type": "string",
|
|
@@ -1793,7 +1793,7 @@
|
|
|
1793
1793
|
},
|
|
1794
1794
|
"v-combobox/menu-props": {
|
|
1795
1795
|
"type": "unknown",
|
|
1796
|
-
"description": "Pass props through to the `v-menu` component. Accepts
|
|
1796
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [/api/v-menu](/api/v-menu/#props), camelCase keys are recommended."
|
|
1797
1797
|
},
|
|
1798
1798
|
"v-combobox/id": {
|
|
1799
1799
|
"type": "string",
|
|
@@ -4481,7 +4481,7 @@
|
|
|
4481
4481
|
},
|
|
4482
4482
|
"v-select/menu-props": {
|
|
4483
4483
|
"type": "unknown",
|
|
4484
|
-
"description": "Pass props through to the `v-menu` component. Accepts
|
|
4484
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [/api/v-menu](/api/v-menu/#props), camelCase keys are recommended."
|
|
4485
4485
|
},
|
|
4486
4486
|
"v-select/id": {
|
|
4487
4487
|
"type": "string",
|
package/dist/json/importMap.json
CHANGED
|
@@ -8,6 +8,10 @@
|
|
|
8
8
|
"from": "components/VDefaultsProvider/index.mjs",
|
|
9
9
|
"styles": []
|
|
10
10
|
},
|
|
11
|
+
"VForm": {
|
|
12
|
+
"from": "components/VForm/index.mjs",
|
|
13
|
+
"styles": []
|
|
14
|
+
},
|
|
11
15
|
"VContainer": {
|
|
12
16
|
"from": "components/VGrid/index.mjs",
|
|
13
17
|
"styles": []
|
|
@@ -28,14 +32,6 @@
|
|
|
28
32
|
"from": "components/VHover/index.mjs",
|
|
29
33
|
"styles": []
|
|
30
34
|
},
|
|
31
|
-
"VForm": {
|
|
32
|
-
"from": "components/VForm/index.mjs",
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VLazy": {
|
|
36
|
-
"from": "components/VLazy/index.mjs",
|
|
37
|
-
"styles": []
|
|
38
|
-
},
|
|
39
35
|
"VLayout": {
|
|
40
36
|
"from": "components/VLayout/index.mjs",
|
|
41
37
|
"styles": []
|
|
@@ -44,6 +40,10 @@
|
|
|
44
40
|
"from": "components/VLayout/index.mjs",
|
|
45
41
|
"styles": []
|
|
46
42
|
},
|
|
43
|
+
"VLazy": {
|
|
44
|
+
"from": "components/VLazy/index.mjs",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
47
47
|
"VLocaleProvider": {
|
|
48
48
|
"from": "components/VLocaleProvider/index.mjs",
|
|
49
49
|
"styles": []
|
|
@@ -140,6 +140,18 @@
|
|
|
140
140
|
"from": "components/transitions/index.mjs",
|
|
141
141
|
"styles": []
|
|
142
142
|
},
|
|
143
|
+
"VAppBar": {
|
|
144
|
+
"from": "components/VAppBar/index.mjs",
|
|
145
|
+
"styles": []
|
|
146
|
+
},
|
|
147
|
+
"VAppBarNavIcon": {
|
|
148
|
+
"from": "components/VAppBar/index.mjs",
|
|
149
|
+
"styles": []
|
|
150
|
+
},
|
|
151
|
+
"VAppBarTitle": {
|
|
152
|
+
"from": "components/VAppBar/index.mjs",
|
|
153
|
+
"styles": []
|
|
154
|
+
},
|
|
143
155
|
"VAlert": {
|
|
144
156
|
"from": "components/VAlert/index.mjs",
|
|
145
157
|
"styles": []
|
|
@@ -156,20 +168,12 @@
|
|
|
156
168
|
"from": "components/VAvatar/index.mjs",
|
|
157
169
|
"styles": []
|
|
158
170
|
},
|
|
159
|
-
"
|
|
160
|
-
"from": "components/
|
|
161
|
-
"styles": []
|
|
162
|
-
},
|
|
163
|
-
"VAppBar": {
|
|
164
|
-
"from": "components/VAppBar/index.mjs",
|
|
165
|
-
"styles": []
|
|
166
|
-
},
|
|
167
|
-
"VAppBarNavIcon": {
|
|
168
|
-
"from": "components/VAppBar/index.mjs",
|
|
171
|
+
"VBottomNavigation": {
|
|
172
|
+
"from": "components/VBottomNavigation/index.mjs",
|
|
169
173
|
"styles": []
|
|
170
174
|
},
|
|
171
|
-
"
|
|
172
|
-
"from": "components/
|
|
175
|
+
"VBadge": {
|
|
176
|
+
"from": "components/VBadge/index.mjs",
|
|
173
177
|
"styles": []
|
|
174
178
|
},
|
|
175
179
|
"VBanner": {
|
|
@@ -184,6 +188,10 @@
|
|
|
184
188
|
"from": "components/VBanner/index.mjs",
|
|
185
189
|
"styles": []
|
|
186
190
|
},
|
|
191
|
+
"VBtn": {
|
|
192
|
+
"from": "components/VBtn/index.mjs",
|
|
193
|
+
"styles": []
|
|
194
|
+
},
|
|
187
195
|
"VBreadcrumbs": {
|
|
188
196
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
189
197
|
"styles": []
|
|
@@ -196,22 +204,14 @@
|
|
|
196
204
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
197
205
|
"styles": []
|
|
198
206
|
},
|
|
199
|
-
"
|
|
200
|
-
"from": "components/
|
|
201
|
-
"styles": []
|
|
202
|
-
},
|
|
203
|
-
"VBottomNavigation": {
|
|
204
|
-
"from": "components/VBottomNavigation/index.mjs",
|
|
207
|
+
"VBtnGroup": {
|
|
208
|
+
"from": "components/VBtnGroup/index.mjs",
|
|
205
209
|
"styles": []
|
|
206
210
|
},
|
|
207
211
|
"VBtnToggle": {
|
|
208
212
|
"from": "components/VBtnToggle/index.mjs",
|
|
209
213
|
"styles": []
|
|
210
214
|
},
|
|
211
|
-
"VBtnGroup": {
|
|
212
|
-
"from": "components/VBtnGroup/index.mjs",
|
|
213
|
-
"styles": []
|
|
214
|
-
},
|
|
215
215
|
"VCard": {
|
|
216
216
|
"from": "components/VCard/index.mjs",
|
|
217
217
|
"styles": []
|
|
@@ -236,22 +236,6 @@
|
|
|
236
236
|
"from": "components/VCard/index.mjs",
|
|
237
237
|
"styles": []
|
|
238
238
|
},
|
|
239
|
-
"VCarousel": {
|
|
240
|
-
"from": "components/VCarousel/index.mjs",
|
|
241
|
-
"styles": []
|
|
242
|
-
},
|
|
243
|
-
"VCarouselItem": {
|
|
244
|
-
"from": "components/VCarousel/index.mjs",
|
|
245
|
-
"styles": []
|
|
246
|
-
},
|
|
247
|
-
"VChipGroup": {
|
|
248
|
-
"from": "components/VChipGroup/index.mjs",
|
|
249
|
-
"styles": []
|
|
250
|
-
},
|
|
251
|
-
"VCode": {
|
|
252
|
-
"from": "components/VCode/index.mjs",
|
|
253
|
-
"styles": []
|
|
254
|
-
},
|
|
255
239
|
"VCheckbox": {
|
|
256
240
|
"from": "components/VCheckbox/index.mjs",
|
|
257
241
|
"styles": []
|
|
@@ -260,22 +244,30 @@
|
|
|
260
244
|
"from": "components/VCheckbox/index.mjs",
|
|
261
245
|
"styles": []
|
|
262
246
|
},
|
|
247
|
+
"VChipGroup": {
|
|
248
|
+
"from": "components/VChipGroup/index.mjs",
|
|
249
|
+
"styles": []
|
|
250
|
+
},
|
|
263
251
|
"VChip": {
|
|
264
252
|
"from": "components/VChip/index.mjs",
|
|
265
253
|
"styles": []
|
|
266
254
|
},
|
|
267
|
-
"
|
|
268
|
-
"from": "components/
|
|
255
|
+
"VCode": {
|
|
256
|
+
"from": "components/VCode/index.mjs",
|
|
269
257
|
"styles": []
|
|
270
258
|
},
|
|
271
|
-
"
|
|
272
|
-
"from": "components/
|
|
259
|
+
"VColorPicker": {
|
|
260
|
+
"from": "components/VColorPicker/index.mjs",
|
|
273
261
|
"styles": []
|
|
274
262
|
},
|
|
275
263
|
"VCombobox": {
|
|
276
264
|
"from": "components/VCombobox/index.mjs",
|
|
277
265
|
"styles": []
|
|
278
266
|
},
|
|
267
|
+
"VCounter": {
|
|
268
|
+
"from": "components/VCounter/index.mjs",
|
|
269
|
+
"styles": []
|
|
270
|
+
},
|
|
279
271
|
"VDialog": {
|
|
280
272
|
"from": "components/VDialog/index.mjs",
|
|
281
273
|
"styles": []
|
|
@@ -308,20 +300,12 @@
|
|
|
308
300
|
"from": "components/VField/index.mjs",
|
|
309
301
|
"styles": []
|
|
310
302
|
},
|
|
311
|
-
"VFileInput": {
|
|
312
|
-
"from": "components/VFileInput/index.mjs",
|
|
313
|
-
"styles": []
|
|
314
|
-
},
|
|
315
303
|
"VFooter": {
|
|
316
304
|
"from": "components/VFooter/index.mjs",
|
|
317
305
|
"styles": []
|
|
318
306
|
},
|
|
319
|
-
"
|
|
320
|
-
"from": "components/
|
|
321
|
-
"styles": []
|
|
322
|
-
},
|
|
323
|
-
"VInput": {
|
|
324
|
-
"from": "components/VInput/index.mjs",
|
|
307
|
+
"VFileInput": {
|
|
308
|
+
"from": "components/VFileInput/index.mjs",
|
|
325
309
|
"styles": []
|
|
326
310
|
},
|
|
327
311
|
"VIcon": {
|
|
@@ -344,6 +328,14 @@
|
|
|
344
328
|
"from": "components/VIcon/index.mjs",
|
|
345
329
|
"styles": []
|
|
346
330
|
},
|
|
331
|
+
"VImg": {
|
|
332
|
+
"from": "components/VImg/index.mjs",
|
|
333
|
+
"styles": []
|
|
334
|
+
},
|
|
335
|
+
"VInput": {
|
|
336
|
+
"from": "components/VInput/index.mjs",
|
|
337
|
+
"styles": []
|
|
338
|
+
},
|
|
347
339
|
"VItemGroup": {
|
|
348
340
|
"from": "components/VItemGroup/index.mjs",
|
|
349
341
|
"styles": []
|
|
@@ -400,6 +392,10 @@
|
|
|
400
392
|
"from": "components/VMain/index.mjs",
|
|
401
393
|
"styles": []
|
|
402
394
|
},
|
|
395
|
+
"VMenu": {
|
|
396
|
+
"from": "components/VMenu/index.mjs",
|
|
397
|
+
"styles": []
|
|
398
|
+
},
|
|
403
399
|
"VMessages": {
|
|
404
400
|
"from": "components/VMessages/index.mjs",
|
|
405
401
|
"styles": []
|
|
@@ -408,10 +404,6 @@
|
|
|
408
404
|
"from": "components/VNavigationDrawer/index.mjs",
|
|
409
405
|
"styles": []
|
|
410
406
|
},
|
|
411
|
-
"VMenu": {
|
|
412
|
-
"from": "components/VMenu/index.mjs",
|
|
413
|
-
"styles": []
|
|
414
|
-
},
|
|
415
407
|
"VOverlay": {
|
|
416
408
|
"from": "components/VOverlay/index.mjs",
|
|
417
409
|
"styles": []
|
|
@@ -444,14 +436,14 @@
|
|
|
444
436
|
"from": "components/VSelectionControl/index.mjs",
|
|
445
437
|
"styles": []
|
|
446
438
|
},
|
|
447
|
-
"VSelectionControlGroup": {
|
|
448
|
-
"from": "components/VSelectionControlGroup/index.mjs",
|
|
449
|
-
"styles": []
|
|
450
|
-
},
|
|
451
439
|
"VSheet": {
|
|
452
440
|
"from": "components/VSheet/index.mjs",
|
|
453
441
|
"styles": []
|
|
454
442
|
},
|
|
443
|
+
"VSelectionControlGroup": {
|
|
444
|
+
"from": "components/VSelectionControlGroup/index.mjs",
|
|
445
|
+
"styles": []
|
|
446
|
+
},
|
|
455
447
|
"VSlideGroup": {
|
|
456
448
|
"from": "components/VSlideGroup/index.mjs",
|
|
457
449
|
"styles": []
|
|
@@ -460,20 +452,16 @@
|
|
|
460
452
|
"from": "components/VSlideGroup/index.mjs",
|
|
461
453
|
"styles": []
|
|
462
454
|
},
|
|
463
|
-
"VSnackbar": {
|
|
464
|
-
"from": "components/VSnackbar/index.mjs",
|
|
465
|
-
"styles": []
|
|
466
|
-
},
|
|
467
455
|
"VSlider": {
|
|
468
456
|
"from": "components/VSlider/index.mjs",
|
|
469
457
|
"styles": []
|
|
470
458
|
},
|
|
471
|
-
"
|
|
472
|
-
"from": "components/
|
|
459
|
+
"VSnackbar": {
|
|
460
|
+
"from": "components/VSnackbar/index.mjs",
|
|
473
461
|
"styles": []
|
|
474
462
|
},
|
|
475
|
-
"
|
|
476
|
-
"from": "components/
|
|
463
|
+
"VSwitch": {
|
|
464
|
+
"from": "components/VSwitch/index.mjs",
|
|
477
465
|
"styles": []
|
|
478
466
|
},
|
|
479
467
|
"VTabs": {
|
|
@@ -484,6 +472,10 @@
|
|
|
484
472
|
"from": "components/VTabs/index.mjs",
|
|
485
473
|
"styles": []
|
|
486
474
|
},
|
|
475
|
+
"VSystemBar": {
|
|
476
|
+
"from": "components/VSystemBar/index.mjs",
|
|
477
|
+
"styles": []
|
|
478
|
+
},
|
|
487
479
|
"VTable": {
|
|
488
480
|
"from": "components/VTable/index.mjs",
|
|
489
481
|
"styles": []
|
|
@@ -492,6 +484,10 @@
|
|
|
492
484
|
"from": "components/VTextarea/index.mjs",
|
|
493
485
|
"styles": []
|
|
494
486
|
},
|
|
487
|
+
"VTextField": {
|
|
488
|
+
"from": "components/VTextField/index.mjs",
|
|
489
|
+
"styles": []
|
|
490
|
+
},
|
|
495
491
|
"VTimeline": {
|
|
496
492
|
"from": "components/VTimeline/index.mjs",
|
|
497
493
|
"styles": []
|
|
@@ -500,14 +496,6 @@
|
|
|
500
496
|
"from": "components/VTimeline/index.mjs",
|
|
501
497
|
"styles": []
|
|
502
498
|
},
|
|
503
|
-
"VTextField": {
|
|
504
|
-
"from": "components/VTextField/index.mjs",
|
|
505
|
-
"styles": []
|
|
506
|
-
},
|
|
507
|
-
"VTooltip": {
|
|
508
|
-
"from": "components/VTooltip/index.mjs",
|
|
509
|
-
"styles": []
|
|
510
|
-
},
|
|
511
499
|
"VToolbar": {
|
|
512
500
|
"from": "components/VToolbar/index.mjs",
|
|
513
501
|
"styles": []
|
|
@@ -520,6 +508,10 @@
|
|
|
520
508
|
"from": "components/VToolbar/index.mjs",
|
|
521
509
|
"styles": []
|
|
522
510
|
},
|
|
511
|
+
"VTooltip": {
|
|
512
|
+
"from": "components/VTooltip/index.mjs",
|
|
513
|
+
"styles": []
|
|
514
|
+
},
|
|
523
515
|
"VWindow": {
|
|
524
516
|
"from": "components/VWindow/index.mjs",
|
|
525
517
|
"styles": []
|
|
@@ -527,6 +519,14 @@
|
|
|
527
519
|
"VWindowItem": {
|
|
528
520
|
"from": "components/VWindow/index.mjs",
|
|
529
521
|
"styles": []
|
|
522
|
+
},
|
|
523
|
+
"VCarousel": {
|
|
524
|
+
"from": "components/VCarousel/index.mjs",
|
|
525
|
+
"styles": []
|
|
526
|
+
},
|
|
527
|
+
"VCarouselItem": {
|
|
528
|
+
"from": "components/VCarousel/index.mjs",
|
|
529
|
+
"styles": []
|
|
530
530
|
}
|
|
531
531
|
},
|
|
532
532
|
"directives": [
|
package/dist/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "vuetify",
|
|
5
|
-
"version": "3.0.
|
|
5
|
+
"version": "3.0.3",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -64,6 +64,56 @@
|
|
|
64
64
|
"description": "",
|
|
65
65
|
"doc-url": "https://vuetifyjs.com/api/v-app-bar",
|
|
66
66
|
"attributes": [
|
|
67
|
+
{
|
|
68
|
+
"name": "image",
|
|
69
|
+
"description": "The `src` used for `v-img`. For additional customization options, use the **image** slot.",
|
|
70
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
71
|
+
"value": {
|
|
72
|
+
"kind": "expression",
|
|
73
|
+
"type": "string"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"name": "title",
|
|
78
|
+
"description": "MISSING DESCRIPTION",
|
|
79
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
80
|
+
"value": {
|
|
81
|
+
"kind": "expression",
|
|
82
|
+
"type": "string"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"name": "flat",
|
|
87
|
+
"description": "Removes the component's **box-shadow**.",
|
|
88
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
89
|
+
"default": "false",
|
|
90
|
+
"value": {
|
|
91
|
+
"kind": "expression",
|
|
92
|
+
"type": "boolean"
|
|
93
|
+
},
|
|
94
|
+
"type": "boolean"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"name": "modelValue",
|
|
98
|
+
"description": "MISSING DESCRIPTION",
|
|
99
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
100
|
+
"default": "true",
|
|
101
|
+
"value": {
|
|
102
|
+
"kind": "expression",
|
|
103
|
+
"type": "boolean"
|
|
104
|
+
},
|
|
105
|
+
"type": "boolean"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "location",
|
|
109
|
+
"description": "MISSING DESCRIPTION",
|
|
110
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
111
|
+
"default": "'top'",
|
|
112
|
+
"value": {
|
|
113
|
+
"kind": "expression",
|
|
114
|
+
"type": "\"top\" | \"bottom\""
|
|
115
|
+
}
|
|
116
|
+
},
|
|
67
117
|
{
|
|
68
118
|
"name": "absolute",
|
|
69
119
|
"description": "Applies position: absolute to the component.",
|
|
@@ -126,17 +176,6 @@
|
|
|
126
176
|
"type": "string | number"
|
|
127
177
|
}
|
|
128
178
|
},
|
|
129
|
-
{
|
|
130
|
-
"name": "flat",
|
|
131
|
-
"description": "Removes the component's **box-shadow**.",
|
|
132
|
-
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
133
|
-
"default": "false",
|
|
134
|
-
"value": {
|
|
135
|
-
"kind": "expression",
|
|
136
|
-
"type": "boolean"
|
|
137
|
-
},
|
|
138
|
-
"type": "boolean"
|
|
139
|
-
},
|
|
140
179
|
{
|
|
141
180
|
"name": "floating",
|
|
142
181
|
"description": "Applies **display: inline-flex** to the component.",
|
|
@@ -158,24 +197,6 @@
|
|
|
158
197
|
"type": "string | number"
|
|
159
198
|
}
|
|
160
199
|
},
|
|
161
|
-
{
|
|
162
|
-
"name": "image",
|
|
163
|
-
"description": "The `src` used for `v-img`. For additional customization options, use the **image** slot.",
|
|
164
|
-
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
165
|
-
"value": {
|
|
166
|
-
"kind": "expression",
|
|
167
|
-
"type": "string"
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
|
-
{
|
|
171
|
-
"name": "title",
|
|
172
|
-
"description": "MISSING DESCRIPTION",
|
|
173
|
-
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
174
|
-
"value": {
|
|
175
|
-
"kind": "expression",
|
|
176
|
-
"type": "string"
|
|
177
|
-
}
|
|
178
|
-
},
|
|
179
200
|
{
|
|
180
201
|
"name": "border",
|
|
181
202
|
"description": "Applies border styles to component.",
|
|
@@ -242,27 +263,6 @@
|
|
|
242
263
|
"kind": "expression",
|
|
243
264
|
"type": "string | number"
|
|
244
265
|
}
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"name": "modelValue",
|
|
248
|
-
"description": "MISSING DESCRIPTION",
|
|
249
|
-
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
250
|
-
"default": "true",
|
|
251
|
-
"value": {
|
|
252
|
-
"kind": "expression",
|
|
253
|
-
"type": "boolean"
|
|
254
|
-
},
|
|
255
|
-
"type": "boolean"
|
|
256
|
-
},
|
|
257
|
-
{
|
|
258
|
-
"name": "location",
|
|
259
|
-
"description": "MISSING DESCRIPTION",
|
|
260
|
-
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
261
|
-
"default": "'top'",
|
|
262
|
-
"value": {
|
|
263
|
-
"kind": "expression",
|
|
264
|
-
"type": "\"top\" | \"bottom\""
|
|
265
|
-
}
|
|
266
266
|
}
|
|
267
267
|
],
|
|
268
268
|
"events": [
|
|
@@ -278,7 +278,38 @@
|
|
|
278
278
|
]
|
|
279
279
|
}
|
|
280
280
|
],
|
|
281
|
-
"slots": [
|
|
281
|
+
"slots": [
|
|
282
|
+
{
|
|
283
|
+
"name": "default",
|
|
284
|
+
"description": "The default Vue slot.",
|
|
285
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#slots"
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "image",
|
|
289
|
+
"description": "Expects the [`v-img`](/components/images/) component.",
|
|
290
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#slots"
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"name": "prepend",
|
|
294
|
+
"description": "Adds an item after the app bar content",
|
|
295
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#slots"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"name": "append",
|
|
299
|
+
"description": "Adds an item before the app bar content",
|
|
300
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#slots"
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"name": "title",
|
|
304
|
+
"description": "Slot containing the app bar title",
|
|
305
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#slots"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"name": "extension",
|
|
309
|
+
"description": "Slot positioned directly under the main content of the app bar. Height of this slot can be set explicitly with the **extension-height** prop.",
|
|
310
|
+
"doc-url": "https://vuetifyjs.com/api/v-app-bar#slots"
|
|
311
|
+
}
|
|
312
|
+
],
|
|
282
313
|
"vue-model": {
|
|
283
314
|
"prop": "modelValue",
|
|
284
315
|
"event": "update:modelValue"
|
|
@@ -795,7 +826,7 @@
|
|
|
795
826
|
},
|
|
796
827
|
{
|
|
797
828
|
"name": "menuProps",
|
|
798
|
-
"description": "Pass props through to the `v-menu` component. Accepts
|
|
829
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [/api/v-menu](/api/v-menu/#props), camelCase keys are recommended.",
|
|
799
830
|
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
|
800
831
|
"value": {
|
|
801
832
|
"kind": "expression",
|
|
@@ -5585,7 +5616,7 @@
|
|
|
5585
5616
|
},
|
|
5586
5617
|
{
|
|
5587
5618
|
"name": "menuProps",
|
|
5588
|
-
"description": "Pass props through to the `v-menu` component. Accepts
|
|
5619
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [/api/v-menu](/api/v-menu/#props), camelCase keys are recommended.",
|
|
5589
5620
|
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
|
5590
5621
|
"value": {
|
|
5591
5622
|
"kind": "expression",
|
|
@@ -14736,7 +14767,7 @@
|
|
|
14736
14767
|
},
|
|
14737
14768
|
{
|
|
14738
14769
|
"name": "menuProps",
|
|
14739
|
-
"description": "Pass props through to the `v-menu` component. Accepts
|
|
14770
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [/api/v-menu](/api/v-menu/#props), camelCase keys are recommended.",
|
|
14740
14771
|
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
|
14741
14772
|
"value": {
|
|
14742
14773
|
"kind": "expression",
|
|
@@ -20156,27 +20187,27 @@
|
|
|
20156
20187
|
},
|
|
20157
20188
|
{
|
|
20158
20189
|
"name": "image",
|
|
20159
|
-
"description": "
|
|
20190
|
+
"description": "Expects the [`v-img`](/components/images/) component.",
|
|
20160
20191
|
"doc-url": "https://vuetifyjs.com/api/v-toolbar#slots"
|
|
20161
20192
|
},
|
|
20162
20193
|
{
|
|
20163
20194
|
"name": "prepend",
|
|
20164
|
-
"description": "Adds an item
|
|
20195
|
+
"description": "Adds an item after the toolbar content",
|
|
20165
20196
|
"doc-url": "https://vuetifyjs.com/api/v-toolbar#slots"
|
|
20166
20197
|
},
|
|
20167
20198
|
{
|
|
20168
20199
|
"name": "append",
|
|
20169
|
-
"description": "Adds an item
|
|
20200
|
+
"description": "Adds an item before the toolbar content",
|
|
20170
20201
|
"doc-url": "https://vuetifyjs.com/api/v-toolbar#slots"
|
|
20171
20202
|
},
|
|
20172
20203
|
{
|
|
20173
20204
|
"name": "title",
|
|
20174
|
-
"description": "
|
|
20205
|
+
"description": "Slot containing the toolbar title",
|
|
20175
20206
|
"doc-url": "https://vuetifyjs.com/api/v-toolbar#slots"
|
|
20176
20207
|
},
|
|
20177
20208
|
{
|
|
20178
20209
|
"name": "extension",
|
|
20179
|
-
"description": "Slot positioned directly under the main content of the toolbar. Height of this slot can be set explicitly with the **extension-height** prop.
|
|
20210
|
+
"description": "Slot positioned directly under the main content of the toolbar. Height of this slot can be set explicitly with the **extension-height** prop.",
|
|
20180
20211
|
"doc-url": "https://vuetifyjs.com/api/v-toolbar#slots"
|
|
20181
20212
|
}
|
|
20182
20213
|
],
|