@vuetify/nightly 3.1.8 → 3.2.0-dev-20230309.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 +9 -12
- package/dist/json/attributes.json +4 -0
- package/dist/json/importMap.json +68 -68
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +16 -1
- package/dist/vuetify-labs.css +1012 -1016
- package/dist/vuetify-labs.d.ts +4 -0
- package/dist/vuetify-labs.esm.js +11 -40
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +11 -40
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +91 -95
- package/dist/vuetify.d.ts +26 -22
- package/dist/vuetify.esm.js +11 -40
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +11 -40
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +11 -14
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VRating/VRating.css +0 -4
- package/lib/components/VRating/VRating.mjs +6 -35
- package/lib/components/VRating/VRating.mjs.map +1 -1
- package/lib/components/VRating/VRating.sass +0 -5
- package/lib/components/VRating/index.d.ts +1 -0
- package/lib/components/VTooltip/VTooltip.mjs +2 -2
- package/lib/components/VTooltip/VTooltip.mjs.map +1 -1
- package/lib/components/VTooltip/index.d.ts +3 -0
- package/lib/components/index.d.ts +4 -0
- 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 +22 -22
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,22 +1,19 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.2.0-dev-20230309.0...v) (2023-03-09)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
# [3.2.0-dev-20230309.0](https://github.com/vuetifyjs/vuetify/compare/v3.1.8...v3.2.0-dev-20230309.0) (2023-03-09)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
9
9
|
|
|
10
|
-
* **
|
|
11
|
-
* **
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
* **
|
|
17
|
-
* **VAlert:** reduce default close button margin ([#16851](https://github.com/vuetifyjs/vuetify/issues/16851)) ([79eb58a](https://github.com/vuetifyjs/vuetify/commit/79eb58a29f0a3e85892ddf8fd0adb16a9b12e486))
|
|
18
|
-
* add sass and style package exports ([c8b3827](https://github.com/vuetifyjs/vuetify/commit/c8b3827c28ddc71bfe94a5eba9fb40b1fd8f5e11)), closes [#16593](https://github.com/vuetifyjs/vuetify/issues/16593)
|
|
19
|
-
* **VDataTable:** reset page when searching ([6cc6070](https://github.com/vuetifyjs/vuetify/commit/6cc6070c4f1b75ab77c6b8ae930a191bad4c7ea6)), closes [#16806](https://github.com/vuetifyjs/vuetify/issues/16806)
|
|
10
|
+
* **VRating:** expose model value in item slot ([62b4be7](https://github.com/vuetifyjs/vuetify/commit/62b4be74b777d4b0c6bee75e08c3a9d60d76416f))
|
|
11
|
+
* **VRating:** keyboard navigation ([1c0a0d2](https://github.com/vuetifyjs/vuetify/commit/1c0a0d232956bf53a498ac39f6afc4597f6e2739))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **VTooltip:** add eager prop support ([#16752](https://github.com/vuetifyjs/vuetify/issues/16752)) ([d0761be](https://github.com/vuetifyjs/vuetify/commit/d0761be12dc9f1ce4833613ff5a7e37bca37662d))
|
|
20
17
|
|
|
21
18
|
|
|
22
19
|
|
|
@@ -6303,6 +6303,10 @@
|
|
|
6303
6303
|
"type": "string | number",
|
|
6304
6304
|
"description": "Sets the width for the component."
|
|
6305
6305
|
},
|
|
6306
|
+
"v-tooltip/eager": {
|
|
6307
|
+
"type": "boolean",
|
|
6308
|
+
"description": "Forces the component's content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO."
|
|
6309
|
+
},
|
|
6306
6310
|
"v-tooltip/activator": {
|
|
6307
6311
|
"type": "string | ComponentPublicInstance | Element",
|
|
6308
6312
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))"
|
package/dist/json/importMap.json
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
+
"VDefaultsProvider": {
|
|
4
|
+
"from": "components/VDefaultsProvider/index.mjs",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
7
|
+
"VForm": {
|
|
8
|
+
"from": "components/VForm/index.mjs",
|
|
9
|
+
"styles": []
|
|
10
|
+
},
|
|
3
11
|
"VContainer": {
|
|
4
12
|
"from": "components/VGrid/index.mjs",
|
|
5
13
|
"styles": []
|
|
@@ -20,12 +28,12 @@
|
|
|
20
28
|
"from": "components/VHover/index.mjs",
|
|
21
29
|
"styles": []
|
|
22
30
|
},
|
|
23
|
-
"
|
|
24
|
-
"from": "components/
|
|
31
|
+
"VLayout": {
|
|
32
|
+
"from": "components/VLayout/index.mjs",
|
|
25
33
|
"styles": []
|
|
26
34
|
},
|
|
27
|
-
"
|
|
28
|
-
"from": "components/
|
|
35
|
+
"VLayoutItem": {
|
|
36
|
+
"from": "components/VLayout/index.mjs",
|
|
29
37
|
"styles": []
|
|
30
38
|
},
|
|
31
39
|
"VLazy": {
|
|
@@ -36,22 +44,14 @@
|
|
|
36
44
|
"from": "components/VLocaleProvider/index.mjs",
|
|
37
45
|
"styles": []
|
|
38
46
|
},
|
|
39
|
-
"
|
|
40
|
-
"from": "components/
|
|
41
|
-
"styles": []
|
|
42
|
-
},
|
|
43
|
-
"VLayoutItem": {
|
|
44
|
-
"from": "components/VLayout/index.mjs",
|
|
47
|
+
"VNoSsr": {
|
|
48
|
+
"from": "components/VNoSsr/index.mjs",
|
|
45
49
|
"styles": []
|
|
46
50
|
},
|
|
47
51
|
"VParallax": {
|
|
48
52
|
"from": "components/VParallax/index.mjs",
|
|
49
53
|
"styles": []
|
|
50
54
|
},
|
|
51
|
-
"VNoSsr": {
|
|
52
|
-
"from": "components/VNoSsr/index.mjs",
|
|
53
|
-
"styles": []
|
|
54
|
-
},
|
|
55
55
|
"VRadio": {
|
|
56
56
|
"from": "components/VRadio/index.mjs",
|
|
57
57
|
"styles": []
|
|
@@ -140,18 +140,6 @@
|
|
|
140
140
|
"from": "components/VApp/index.mjs",
|
|
141
141
|
"styles": []
|
|
142
142
|
},
|
|
143
|
-
"VAlert": {
|
|
144
|
-
"from": "components/VAlert/index.mjs",
|
|
145
|
-
"styles": []
|
|
146
|
-
},
|
|
147
|
-
"VAlertTitle": {
|
|
148
|
-
"from": "components/VAlert/index.mjs",
|
|
149
|
-
"styles": []
|
|
150
|
-
},
|
|
151
|
-
"VAvatar": {
|
|
152
|
-
"from": "components/VAvatar/index.mjs",
|
|
153
|
-
"styles": []
|
|
154
|
-
},
|
|
155
143
|
"VAppBar": {
|
|
156
144
|
"from": "components/VAppBar/index.mjs",
|
|
157
145
|
"styles": []
|
|
@@ -164,16 +152,24 @@
|
|
|
164
152
|
"from": "components/VAppBar/index.mjs",
|
|
165
153
|
"styles": []
|
|
166
154
|
},
|
|
155
|
+
"VAlert": {
|
|
156
|
+
"from": "components/VAlert/index.mjs",
|
|
157
|
+
"styles": []
|
|
158
|
+
},
|
|
159
|
+
"VAlertTitle": {
|
|
160
|
+
"from": "components/VAlert/index.mjs",
|
|
161
|
+
"styles": []
|
|
162
|
+
},
|
|
167
163
|
"VAutocomplete": {
|
|
168
164
|
"from": "components/VAutocomplete/index.mjs",
|
|
169
165
|
"styles": []
|
|
170
166
|
},
|
|
171
|
-
"
|
|
172
|
-
"from": "components/
|
|
167
|
+
"VAvatar": {
|
|
168
|
+
"from": "components/VAvatar/index.mjs",
|
|
173
169
|
"styles": []
|
|
174
170
|
},
|
|
175
|
-
"
|
|
176
|
-
"from": "components/
|
|
171
|
+
"VBadge": {
|
|
172
|
+
"from": "components/VBadge/index.mjs",
|
|
177
173
|
"styles": []
|
|
178
174
|
},
|
|
179
175
|
"VBanner": {
|
|
@@ -188,6 +184,10 @@
|
|
|
188
184
|
"from": "components/VBanner/index.mjs",
|
|
189
185
|
"styles": []
|
|
190
186
|
},
|
|
187
|
+
"VBottomNavigation": {
|
|
188
|
+
"from": "components/VBottomNavigation/index.mjs",
|
|
189
|
+
"styles": []
|
|
190
|
+
},
|
|
191
191
|
"VBreadcrumbs": {
|
|
192
192
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
193
193
|
"styles": []
|
|
@@ -236,12 +236,12 @@
|
|
|
236
236
|
"from": "components/VCard/index.mjs",
|
|
237
237
|
"styles": []
|
|
238
238
|
},
|
|
239
|
-
"
|
|
240
|
-
"from": "components/
|
|
239
|
+
"VCarousel": {
|
|
240
|
+
"from": "components/VCarousel/index.mjs",
|
|
241
241
|
"styles": []
|
|
242
242
|
},
|
|
243
|
-
"
|
|
244
|
-
"from": "components/
|
|
243
|
+
"VCarouselItem": {
|
|
244
|
+
"from": "components/VCarousel/index.mjs",
|
|
245
245
|
"styles": []
|
|
246
246
|
},
|
|
247
247
|
"VCheckbox": {
|
|
@@ -252,34 +252,34 @@
|
|
|
252
252
|
"from": "components/VCheckbox/index.mjs",
|
|
253
253
|
"styles": []
|
|
254
254
|
},
|
|
255
|
-
"
|
|
256
|
-
"from": "components/
|
|
255
|
+
"VChip": {
|
|
256
|
+
"from": "components/VChip/index.mjs",
|
|
257
257
|
"styles": []
|
|
258
258
|
},
|
|
259
|
-
"
|
|
260
|
-
"from": "components/
|
|
259
|
+
"VChipGroup": {
|
|
260
|
+
"from": "components/VChipGroup/index.mjs",
|
|
261
261
|
"styles": []
|
|
262
262
|
},
|
|
263
263
|
"VCode": {
|
|
264
264
|
"from": "components/VCode/index.mjs",
|
|
265
265
|
"styles": []
|
|
266
266
|
},
|
|
267
|
-
"VCounter": {
|
|
268
|
-
"from": "components/VCounter/index.mjs",
|
|
269
|
-
"styles": []
|
|
270
|
-
},
|
|
271
267
|
"VColorPicker": {
|
|
272
268
|
"from": "components/VColorPicker/index.mjs",
|
|
273
269
|
"styles": []
|
|
274
270
|
},
|
|
275
|
-
"VDialog": {
|
|
276
|
-
"from": "components/VDialog/index.mjs",
|
|
277
|
-
"styles": []
|
|
278
|
-
},
|
|
279
271
|
"VCombobox": {
|
|
280
272
|
"from": "components/VCombobox/index.mjs",
|
|
281
273
|
"styles": []
|
|
282
274
|
},
|
|
275
|
+
"VCounter": {
|
|
276
|
+
"from": "components/VCounter/index.mjs",
|
|
277
|
+
"styles": []
|
|
278
|
+
},
|
|
279
|
+
"VDialog": {
|
|
280
|
+
"from": "components/VDialog/index.mjs",
|
|
281
|
+
"styles": []
|
|
282
|
+
},
|
|
283
283
|
"VDivider": {
|
|
284
284
|
"from": "components/VDivider/index.mjs",
|
|
285
285
|
"styles": []
|
|
@@ -344,10 +344,6 @@
|
|
|
344
344
|
"from": "components/VInput/index.mjs",
|
|
345
345
|
"styles": []
|
|
346
346
|
},
|
|
347
|
-
"VKbd": {
|
|
348
|
-
"from": "components/VKbd/index.mjs",
|
|
349
|
-
"styles": []
|
|
350
|
-
},
|
|
351
347
|
"VItemGroup": {
|
|
352
348
|
"from": "components/VItemGroup/index.mjs",
|
|
353
349
|
"styles": []
|
|
@@ -356,6 +352,14 @@
|
|
|
356
352
|
"from": "components/VItemGroup/index.mjs",
|
|
357
353
|
"styles": []
|
|
358
354
|
},
|
|
355
|
+
"VKbd": {
|
|
356
|
+
"from": "components/VKbd/index.mjs",
|
|
357
|
+
"styles": []
|
|
358
|
+
},
|
|
359
|
+
"VLabel": {
|
|
360
|
+
"from": "components/VLabel/index.mjs",
|
|
361
|
+
"styles": []
|
|
362
|
+
},
|
|
359
363
|
"VList": {
|
|
360
364
|
"from": "components/VList/index.mjs",
|
|
361
365
|
"styles": []
|
|
@@ -392,10 +396,6 @@
|
|
|
392
396
|
"from": "components/VList/index.mjs",
|
|
393
397
|
"styles": []
|
|
394
398
|
},
|
|
395
|
-
"VLabel": {
|
|
396
|
-
"from": "components/VLabel/index.mjs",
|
|
397
|
-
"styles": []
|
|
398
|
-
},
|
|
399
399
|
"VMain": {
|
|
400
400
|
"from": "components/VMain/index.mjs",
|
|
401
401
|
"styles": []
|
|
@@ -408,14 +408,14 @@
|
|
|
408
408
|
"from": "components/VMessages/index.mjs",
|
|
409
409
|
"styles": []
|
|
410
410
|
},
|
|
411
|
-
"VOverlay": {
|
|
412
|
-
"from": "components/VOverlay/index.mjs",
|
|
413
|
-
"styles": []
|
|
414
|
-
},
|
|
415
411
|
"VNavigationDrawer": {
|
|
416
412
|
"from": "components/VNavigationDrawer/index.mjs",
|
|
417
413
|
"styles": []
|
|
418
414
|
},
|
|
415
|
+
"VOverlay": {
|
|
416
|
+
"from": "components/VOverlay/index.mjs",
|
|
417
|
+
"styles": []
|
|
418
|
+
},
|
|
419
419
|
"VPagination": {
|
|
420
420
|
"from": "components/VPagination/index.mjs",
|
|
421
421
|
"styles": []
|
|
@@ -440,18 +440,14 @@
|
|
|
440
440
|
"from": "components/VSelect/index.mjs",
|
|
441
441
|
"styles": []
|
|
442
442
|
},
|
|
443
|
-
"
|
|
444
|
-
"from": "components/
|
|
443
|
+
"VSelectionControlGroup": {
|
|
444
|
+
"from": "components/VSelectionControlGroup/index.mjs",
|
|
445
445
|
"styles": []
|
|
446
446
|
},
|
|
447
447
|
"VSheet": {
|
|
448
448
|
"from": "components/VSheet/index.mjs",
|
|
449
449
|
"styles": []
|
|
450
450
|
},
|
|
451
|
-
"VSelectionControlGroup": {
|
|
452
|
-
"from": "components/VSelectionControlGroup/index.mjs",
|
|
453
|
-
"styles": []
|
|
454
|
-
},
|
|
455
451
|
"VSlideGroup": {
|
|
456
452
|
"from": "components/VSlideGroup/index.mjs",
|
|
457
453
|
"styles": []
|
|
@@ -460,6 +456,10 @@
|
|
|
460
456
|
"from": "components/VSlideGroup/index.mjs",
|
|
461
457
|
"styles": []
|
|
462
458
|
},
|
|
459
|
+
"VSelectionControl": {
|
|
460
|
+
"from": "components/VSelectionControl/index.mjs",
|
|
461
|
+
"styles": []
|
|
462
|
+
},
|
|
463
463
|
"VSlider": {
|
|
464
464
|
"from": "components/VSlider/index.mjs",
|
|
465
465
|
"styles": []
|
|
@@ -472,8 +472,8 @@
|
|
|
472
472
|
"from": "components/VSwitch/index.mjs",
|
|
473
473
|
"styles": []
|
|
474
474
|
},
|
|
475
|
-
"
|
|
476
|
-
"from": "components/
|
|
475
|
+
"VSystemBar": {
|
|
476
|
+
"from": "components/VSystemBar/index.mjs",
|
|
477
477
|
"styles": []
|
|
478
478
|
},
|
|
479
479
|
"VTabs": {
|
|
@@ -484,8 +484,8 @@
|
|
|
484
484
|
"from": "components/VTabs/index.mjs",
|
|
485
485
|
"styles": []
|
|
486
486
|
},
|
|
487
|
-
"
|
|
488
|
-
"from": "components/
|
|
487
|
+
"VTable": {
|
|
488
|
+
"from": "components/VTable/index.mjs",
|
|
489
489
|
"styles": []
|
|
490
490
|
},
|
|
491
491
|
"VTextarea": {
|
package/dist/json/tags.json
CHANGED
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.
|
|
5
|
+
"version": "3.2.0-dev-20230309.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -16526,6 +16526,10 @@
|
|
|
16526
16526
|
{
|
|
16527
16527
|
"name": "props",
|
|
16528
16528
|
"type": "Record<string, unknown>"
|
|
16529
|
+
},
|
|
16530
|
+
{
|
|
16531
|
+
"name": "rating",
|
|
16532
|
+
"type": "number"
|
|
16529
16533
|
}
|
|
16530
16534
|
]
|
|
16531
16535
|
},
|
|
@@ -23156,6 +23160,17 @@
|
|
|
23156
23160
|
"type": "string | number"
|
|
23157
23161
|
}
|
|
23158
23162
|
},
|
|
23163
|
+
{
|
|
23164
|
+
"name": "eager",
|
|
23165
|
+
"description": "Forces the component's content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",
|
|
23166
|
+
"doc-url": "https://vuetifyjs.com/api/v-tooltip#props",
|
|
23167
|
+
"default": "true",
|
|
23168
|
+
"value": {
|
|
23169
|
+
"kind": "expression",
|
|
23170
|
+
"type": "boolean"
|
|
23171
|
+
},
|
|
23172
|
+
"type": "boolean"
|
|
23173
|
+
},
|
|
23159
23174
|
{
|
|
23160
23175
|
"name": "activator",
|
|
23161
23176
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-overlay-activator.json))",
|