@vuetify/nightly 3.3.0-dev-20230504.0 → 3.3.0-dev-20230508.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 -2
- package/dist/json/attributes.json +24 -8
- package/dist/json/importMap.json +90 -90
- package/dist/json/tags.json +4 -0
- package/dist/json/web-types.json +56 -16
- package/dist/vuetify-labs.css +702 -702
- package/dist/vuetify-labs.d.ts +54 -12
- package/dist/vuetify-labs.esm.js +21 -12
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -12
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1 -1
- package/dist/vuetify.d.ts +27 -27
- package/dist/vuetify.esm.js +3 -3
- package/dist/vuetify.js +3 -3
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +3 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +27 -27
- package/lib/labs/VDataTable/VDataTable.mjs +11 -2
- package/lib/labs/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableServer.mjs +0 -5
- package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +7 -2
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/index.d.ts +54 -12
- package/lib/labs/components.d.ts +54 -12
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.3.0-dev-
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.3.0-dev-20230508.0...v) (2023-05-08)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
# [3.3.0-dev-
|
|
5
|
+
# [3.3.0-dev-20230508.0](https://github.com/vuetifyjs/vuetify/compare/v3.2.1...v3.3.0-dev-20230508.0) (2023-05-08)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
|
|
24
24
|
### Features
|
|
25
25
|
|
|
26
|
+
* add loading prop to all data-table variants ([#16829](https://github.com/vuetifyjs/vuetify/issues/16829)) ([0a4b9fd](https://github.com/vuetifyjs/vuetify/commit/0a4b9fd613e368da44b50f2b7a2b27ffa5bd6f01))
|
|
26
27
|
* **ssr:** add server-side clientWidth/height options ([178b013](https://github.com/vuetifyjs/vuetify/commit/178b013b3e5eb97090a0571e3e9a66c9ee079b74)), closes [#17252](https://github.com/vuetifyjs/vuetify/issues/17252)
|
|
27
28
|
* **VColorPicker:** accept rgb)(/hsl()/hsv() swatches ([42f7cbd](https://github.com/vuetifyjs/vuetify/commit/42f7cbd4e568bca7bd9076b8f869b3deb412facc)), closes [#8833](https://github.com/vuetifyjs/vuetify/issues/8833)
|
|
28
29
|
|
|
@@ -2435,6 +2435,10 @@
|
|
|
2435
2435
|
"type": "any[]",
|
|
2436
2436
|
"description": "An array of strings or objects used for automatically generating children components"
|
|
2437
2437
|
},
|
|
2438
|
+
"v-data-table/loading": {
|
|
2439
|
+
"type": "string | boolean",
|
|
2440
|
+
"description": "MISSING DESCRIPTION"
|
|
2441
|
+
},
|
|
2438
2442
|
"v-data-table/search": {
|
|
2439
2443
|
"type": "string",
|
|
2440
2444
|
"description": "Text input used to filter items"
|
|
@@ -2503,6 +2507,10 @@
|
|
|
2503
2507
|
"type": "boolean",
|
|
2504
2508
|
"description": "MISSING DESCRIPTION"
|
|
2505
2509
|
},
|
|
2510
|
+
"v-data-table/loading-text": {
|
|
2511
|
+
"type": "string",
|
|
2512
|
+
"description": "MISSING DESCRIPTION"
|
|
2513
|
+
},
|
|
2506
2514
|
"v-data-table/expand-on-click": {
|
|
2507
2515
|
"type": "boolean",
|
|
2508
2516
|
"description": "MISSING DESCRIPTION"
|
|
@@ -2567,14 +2575,14 @@
|
|
|
2567
2575
|
"type": "string",
|
|
2568
2576
|
"description": "Text shown when no items are provided to the component"
|
|
2569
2577
|
},
|
|
2570
|
-
"v-data-table-rows/row-height": {
|
|
2571
|
-
"type": "number",
|
|
2572
|
-
"description": "MISSING DESCRIPTION"
|
|
2573
|
-
},
|
|
2574
2578
|
"v-data-table-rows/loading-text": {
|
|
2575
2579
|
"type": "string",
|
|
2576
2580
|
"description": "MISSING DESCRIPTION"
|
|
2577
2581
|
},
|
|
2582
|
+
"v-data-table-rows/row-height": {
|
|
2583
|
+
"type": "number",
|
|
2584
|
+
"description": "MISSING DESCRIPTION"
|
|
2585
|
+
},
|
|
2578
2586
|
"v-data-table-server/model-value": {
|
|
2579
2587
|
"type": "any[]",
|
|
2580
2588
|
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
|
|
@@ -2647,6 +2655,10 @@
|
|
|
2647
2655
|
"type": "boolean",
|
|
2648
2656
|
"description": "MISSING DESCRIPTION"
|
|
2649
2657
|
},
|
|
2658
|
+
"v-data-table-server/loading-text": {
|
|
2659
|
+
"type": "string",
|
|
2660
|
+
"description": "MISSING DESCRIPTION"
|
|
2661
|
+
},
|
|
2650
2662
|
"v-data-table-server/expand-on-click": {
|
|
2651
2663
|
"type": "boolean",
|
|
2652
2664
|
"description": "MISSING DESCRIPTION"
|
|
@@ -2687,10 +2699,6 @@
|
|
|
2687
2699
|
"type": "string | number",
|
|
2688
2700
|
"description": "Changes how many items per page should be visible. Can be used with `.sync` modifier. Setting this prop to `-1` will display all items on the page"
|
|
2689
2701
|
},
|
|
2690
|
-
"v-data-table-server/loading-text": {
|
|
2691
|
-
"type": "string",
|
|
2692
|
-
"description": "MISSING DESCRIPTION"
|
|
2693
|
-
},
|
|
2694
2702
|
"v-data-table-server/items-length": {
|
|
2695
2703
|
"type": "string | number",
|
|
2696
2704
|
"description": "MISSING DESCRIPTION"
|
|
@@ -2711,6 +2719,10 @@
|
|
|
2711
2719
|
"type": "any[]",
|
|
2712
2720
|
"description": "An array of strings or objects used for automatically generating children components"
|
|
2713
2721
|
},
|
|
2722
|
+
"v-data-table-virtual/loading": {
|
|
2723
|
+
"type": "string | boolean",
|
|
2724
|
+
"description": "MISSING DESCRIPTION"
|
|
2725
|
+
},
|
|
2714
2726
|
"v-data-table-virtual/search": {
|
|
2715
2727
|
"type": "string",
|
|
2716
2728
|
"description": "Text input used to filter items"
|
|
@@ -2779,6 +2791,10 @@
|
|
|
2779
2791
|
"type": "boolean",
|
|
2780
2792
|
"description": "MISSING DESCRIPTION"
|
|
2781
2793
|
},
|
|
2794
|
+
"v-data-table-virtual/loading-text": {
|
|
2795
|
+
"type": "string",
|
|
2796
|
+
"description": "MISSING DESCRIPTION"
|
|
2797
|
+
},
|
|
2782
2798
|
"v-data-table-virtual/expand-on-click": {
|
|
2783
2799
|
"type": "boolean",
|
|
2784
2800
|
"description": "MISSING DESCRIPTION"
|
package/dist/json/importMap.json
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
+
"VApp": {
|
|
4
|
+
"from": "components/VApp/index.mjs",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
7
|
+
"VAlert": {
|
|
8
|
+
"from": "components/VAlert/index.mjs",
|
|
9
|
+
"styles": []
|
|
10
|
+
},
|
|
11
|
+
"VAlertTitle": {
|
|
12
|
+
"from": "components/VAlert/index.mjs",
|
|
13
|
+
"styles": []
|
|
14
|
+
},
|
|
3
15
|
"VAppBar": {
|
|
4
16
|
"from": "components/VAppBar/index.mjs",
|
|
5
17
|
"styles": []
|
|
@@ -16,18 +28,6 @@
|
|
|
16
28
|
"from": "components/VAutocomplete/index.mjs",
|
|
17
29
|
"styles": []
|
|
18
30
|
},
|
|
19
|
-
"VAlert": {
|
|
20
|
-
"from": "components/VAlert/index.mjs",
|
|
21
|
-
"styles": []
|
|
22
|
-
},
|
|
23
|
-
"VAlertTitle": {
|
|
24
|
-
"from": "components/VAlert/index.mjs",
|
|
25
|
-
"styles": []
|
|
26
|
-
},
|
|
27
|
-
"VApp": {
|
|
28
|
-
"from": "components/VApp/index.mjs",
|
|
29
|
-
"styles": []
|
|
30
|
-
},
|
|
31
31
|
"VAvatar": {
|
|
32
32
|
"from": "components/VAvatar/index.mjs",
|
|
33
33
|
"styles": []
|
|
@@ -36,40 +36,44 @@
|
|
|
36
36
|
"from": "components/VBadge/index.mjs",
|
|
37
37
|
"styles": []
|
|
38
38
|
},
|
|
39
|
-
"
|
|
40
|
-
"from": "components/
|
|
39
|
+
"VBanner": {
|
|
40
|
+
"from": "components/VBanner/index.mjs",
|
|
41
41
|
"styles": []
|
|
42
42
|
},
|
|
43
|
-
"
|
|
44
|
-
"from": "components/
|
|
43
|
+
"VBannerActions": {
|
|
44
|
+
"from": "components/VBanner/index.mjs",
|
|
45
45
|
"styles": []
|
|
46
46
|
},
|
|
47
|
-
"
|
|
48
|
-
"from": "components/
|
|
47
|
+
"VBannerText": {
|
|
48
|
+
"from": "components/VBanner/index.mjs",
|
|
49
49
|
"styles": []
|
|
50
50
|
},
|
|
51
51
|
"VBottomNavigation": {
|
|
52
52
|
"from": "components/VBottomNavigation/index.mjs",
|
|
53
53
|
"styles": []
|
|
54
54
|
},
|
|
55
|
-
"
|
|
56
|
-
"from": "components/
|
|
55
|
+
"VBreadcrumbs": {
|
|
56
|
+
"from": "components/VBreadcrumbs/index.mjs",
|
|
57
57
|
"styles": []
|
|
58
58
|
},
|
|
59
|
-
"
|
|
60
|
-
"from": "components/
|
|
59
|
+
"VBreadcrumbsItem": {
|
|
60
|
+
"from": "components/VBreadcrumbs/index.mjs",
|
|
61
61
|
"styles": []
|
|
62
62
|
},
|
|
63
|
-
"
|
|
64
|
-
"from": "components/
|
|
63
|
+
"VBreadcrumbsDivider": {
|
|
64
|
+
"from": "components/VBreadcrumbs/index.mjs",
|
|
65
|
+
"styles": []
|
|
66
|
+
},
|
|
67
|
+
"VBtn": {
|
|
68
|
+
"from": "components/VBtn/index.mjs",
|
|
65
69
|
"styles": []
|
|
66
70
|
},
|
|
67
71
|
"VBtnGroup": {
|
|
68
72
|
"from": "components/VBtnGroup/index.mjs",
|
|
69
73
|
"styles": []
|
|
70
74
|
},
|
|
71
|
-
"
|
|
72
|
-
"from": "components/
|
|
75
|
+
"VBtnToggle": {
|
|
76
|
+
"from": "components/VBtnToggle/index.mjs",
|
|
73
77
|
"styles": []
|
|
74
78
|
},
|
|
75
79
|
"VCard": {
|
|
@@ -96,18 +100,6 @@
|
|
|
96
100
|
"from": "components/VCard/index.mjs",
|
|
97
101
|
"styles": []
|
|
98
102
|
},
|
|
99
|
-
"VBtnToggle": {
|
|
100
|
-
"from": "components/VBtnToggle/index.mjs",
|
|
101
|
-
"styles": []
|
|
102
|
-
},
|
|
103
|
-
"VCarousel": {
|
|
104
|
-
"from": "components/VCarousel/index.mjs",
|
|
105
|
-
"styles": []
|
|
106
|
-
},
|
|
107
|
-
"VCarouselItem": {
|
|
108
|
-
"from": "components/VCarousel/index.mjs",
|
|
109
|
-
"styles": []
|
|
110
|
-
},
|
|
111
103
|
"VCheckbox": {
|
|
112
104
|
"from": "components/VCheckbox/index.mjs",
|
|
113
105
|
"styles": []
|
|
@@ -120,16 +112,28 @@
|
|
|
120
112
|
"from": "components/VChip/index.mjs",
|
|
121
113
|
"styles": []
|
|
122
114
|
},
|
|
123
|
-
"
|
|
124
|
-
"from": "components/
|
|
115
|
+
"VChipGroup": {
|
|
116
|
+
"from": "components/VChipGroup/index.mjs",
|
|
125
117
|
"styles": []
|
|
126
118
|
},
|
|
127
119
|
"VCode": {
|
|
128
120
|
"from": "components/VCode/index.mjs",
|
|
129
121
|
"styles": []
|
|
130
122
|
},
|
|
131
|
-
"
|
|
132
|
-
"from": "components/
|
|
123
|
+
"VColorPicker": {
|
|
124
|
+
"from": "components/VColorPicker/index.mjs",
|
|
125
|
+
"styles": []
|
|
126
|
+
},
|
|
127
|
+
"VCarousel": {
|
|
128
|
+
"from": "components/VCarousel/index.mjs",
|
|
129
|
+
"styles": []
|
|
130
|
+
},
|
|
131
|
+
"VCarouselItem": {
|
|
132
|
+
"from": "components/VCarousel/index.mjs",
|
|
133
|
+
"styles": []
|
|
134
|
+
},
|
|
135
|
+
"VCombobox": {
|
|
136
|
+
"from": "components/VCombobox/index.mjs",
|
|
133
137
|
"styles": []
|
|
134
138
|
},
|
|
135
139
|
"VCounter": {
|
|
@@ -140,8 +144,8 @@
|
|
|
140
144
|
"from": "components/VDialog/index.mjs",
|
|
141
145
|
"styles": []
|
|
142
146
|
},
|
|
143
|
-
"
|
|
144
|
-
"from": "components/
|
|
147
|
+
"VDivider": {
|
|
148
|
+
"from": "components/VDivider/index.mjs",
|
|
145
149
|
"styles": []
|
|
146
150
|
},
|
|
147
151
|
"VExpansionPanels": {
|
|
@@ -160,10 +164,6 @@
|
|
|
160
164
|
"from": "components/VExpansionPanel/index.mjs",
|
|
161
165
|
"styles": []
|
|
162
166
|
},
|
|
163
|
-
"VDivider": {
|
|
164
|
-
"from": "components/VDivider/index.mjs",
|
|
165
|
-
"styles": []
|
|
166
|
-
},
|
|
167
167
|
"VField": {
|
|
168
168
|
"from": "components/VField/index.mjs",
|
|
169
169
|
"styles": []
|
|
@@ -200,18 +200,10 @@
|
|
|
200
200
|
"from": "components/VIcon/index.mjs",
|
|
201
201
|
"styles": []
|
|
202
202
|
},
|
|
203
|
-
"VLabel": {
|
|
204
|
-
"from": "components/VLabel/index.mjs",
|
|
205
|
-
"styles": []
|
|
206
|
-
},
|
|
207
203
|
"VImg": {
|
|
208
204
|
"from": "components/VImg/index.mjs",
|
|
209
205
|
"styles": []
|
|
210
206
|
},
|
|
211
|
-
"VInput": {
|
|
212
|
-
"from": "components/VInput/index.mjs",
|
|
213
|
-
"styles": []
|
|
214
|
-
},
|
|
215
207
|
"VItemGroup": {
|
|
216
208
|
"from": "components/VItemGroup/index.mjs",
|
|
217
209
|
"styles": []
|
|
@@ -220,6 +212,14 @@
|
|
|
220
212
|
"from": "components/VItemGroup/index.mjs",
|
|
221
213
|
"styles": []
|
|
222
214
|
},
|
|
215
|
+
"VInput": {
|
|
216
|
+
"from": "components/VInput/index.mjs",
|
|
217
|
+
"styles": []
|
|
218
|
+
},
|
|
219
|
+
"VLabel": {
|
|
220
|
+
"from": "components/VLabel/index.mjs",
|
|
221
|
+
"styles": []
|
|
222
|
+
},
|
|
223
223
|
"VKbd": {
|
|
224
224
|
"from": "components/VKbd/index.mjs",
|
|
225
225
|
"styles": []
|
|
@@ -272,6 +272,10 @@
|
|
|
272
272
|
"from": "components/VMessages/index.mjs",
|
|
273
273
|
"styles": []
|
|
274
274
|
},
|
|
275
|
+
"VNavigationDrawer": {
|
|
276
|
+
"from": "components/VNavigationDrawer/index.mjs",
|
|
277
|
+
"styles": []
|
|
278
|
+
},
|
|
275
279
|
"VOverlay": {
|
|
276
280
|
"from": "components/VOverlay/index.mjs",
|
|
277
281
|
"styles": []
|
|
@@ -280,10 +284,6 @@
|
|
|
280
284
|
"from": "components/VPagination/index.mjs",
|
|
281
285
|
"styles": []
|
|
282
286
|
},
|
|
283
|
-
"VNavigationDrawer": {
|
|
284
|
-
"from": "components/VNavigationDrawer/index.mjs",
|
|
285
|
-
"styles": []
|
|
286
|
-
},
|
|
287
287
|
"VProgressCircular": {
|
|
288
288
|
"from": "components/VProgressCircular/index.mjs",
|
|
289
289
|
"styles": []
|
|
@@ -304,14 +304,14 @@
|
|
|
304
304
|
"from": "components/VSelect/index.mjs",
|
|
305
305
|
"styles": []
|
|
306
306
|
},
|
|
307
|
-
"VSelectionControlGroup": {
|
|
308
|
-
"from": "components/VSelectionControlGroup/index.mjs",
|
|
309
|
-
"styles": []
|
|
310
|
-
},
|
|
311
307
|
"VSelectionControl": {
|
|
312
308
|
"from": "components/VSelectionControl/index.mjs",
|
|
313
309
|
"styles": []
|
|
314
310
|
},
|
|
311
|
+
"VSelectionControlGroup": {
|
|
312
|
+
"from": "components/VSelectionControlGroup/index.mjs",
|
|
313
|
+
"styles": []
|
|
314
|
+
},
|
|
315
315
|
"VSheet": {
|
|
316
316
|
"from": "components/VSheet/index.mjs",
|
|
317
317
|
"styles": []
|
|
@@ -332,12 +332,12 @@
|
|
|
332
332
|
"from": "components/VSnackbar/index.mjs",
|
|
333
333
|
"styles": []
|
|
334
334
|
},
|
|
335
|
-
"
|
|
336
|
-
"from": "components/
|
|
335
|
+
"VSwitch": {
|
|
336
|
+
"from": "components/VSwitch/index.mjs",
|
|
337
337
|
"styles": []
|
|
338
338
|
},
|
|
339
|
-
"
|
|
340
|
-
"from": "components/
|
|
339
|
+
"VSystemBar": {
|
|
340
|
+
"from": "components/VSystemBar/index.mjs",
|
|
341
341
|
"styles": []
|
|
342
342
|
},
|
|
343
343
|
"VTabs": {
|
|
@@ -348,14 +348,18 @@
|
|
|
348
348
|
"from": "components/VTabs/index.mjs",
|
|
349
349
|
"styles": []
|
|
350
350
|
},
|
|
351
|
-
"
|
|
352
|
-
"from": "components/
|
|
351
|
+
"VTable": {
|
|
352
|
+
"from": "components/VTable/index.mjs",
|
|
353
353
|
"styles": []
|
|
354
354
|
},
|
|
355
355
|
"VTextarea": {
|
|
356
356
|
"from": "components/VTextarea/index.mjs",
|
|
357
357
|
"styles": []
|
|
358
358
|
},
|
|
359
|
+
"VTextField": {
|
|
360
|
+
"from": "components/VTextField/index.mjs",
|
|
361
|
+
"styles": []
|
|
362
|
+
},
|
|
359
363
|
"VTimeline": {
|
|
360
364
|
"from": "components/VTimeline/index.mjs",
|
|
361
365
|
"styles": []
|
|
@@ -364,10 +368,6 @@
|
|
|
364
368
|
"from": "components/VTimeline/index.mjs",
|
|
365
369
|
"styles": []
|
|
366
370
|
},
|
|
367
|
-
"VTextField": {
|
|
368
|
-
"from": "components/VTextField/index.mjs",
|
|
369
|
-
"styles": []
|
|
370
|
-
},
|
|
371
371
|
"VToolbar": {
|
|
372
372
|
"from": "components/VToolbar/index.mjs",
|
|
373
373
|
"styles": []
|
|
@@ -400,6 +400,10 @@
|
|
|
400
400
|
"from": "components/VForm/index.mjs",
|
|
401
401
|
"styles": []
|
|
402
402
|
},
|
|
403
|
+
"VHover": {
|
|
404
|
+
"from": "components/VHover/index.mjs",
|
|
405
|
+
"styles": []
|
|
406
|
+
},
|
|
403
407
|
"VContainer": {
|
|
404
408
|
"from": "components/VGrid/index.mjs",
|
|
405
409
|
"styles": []
|
|
@@ -416,10 +420,6 @@
|
|
|
416
420
|
"from": "components/VGrid/index.mjs",
|
|
417
421
|
"styles": []
|
|
418
422
|
},
|
|
419
|
-
"VHover": {
|
|
420
|
-
"from": "components/VHover/index.mjs",
|
|
421
|
-
"styles": []
|
|
422
|
-
},
|
|
423
423
|
"VLayout": {
|
|
424
424
|
"from": "components/VLayout/index.mjs",
|
|
425
425
|
"styles": []
|
|
@@ -428,14 +428,14 @@
|
|
|
428
428
|
"from": "components/VLayout/index.mjs",
|
|
429
429
|
"styles": []
|
|
430
430
|
},
|
|
431
|
-
"VLazy": {
|
|
432
|
-
"from": "components/VLazy/index.mjs",
|
|
433
|
-
"styles": []
|
|
434
|
-
},
|
|
435
431
|
"VLocaleProvider": {
|
|
436
432
|
"from": "components/VLocaleProvider/index.mjs",
|
|
437
433
|
"styles": []
|
|
438
434
|
},
|
|
435
|
+
"VLazy": {
|
|
436
|
+
"from": "components/VLazy/index.mjs",
|
|
437
|
+
"styles": []
|
|
438
|
+
},
|
|
439
439
|
"VNoSsr": {
|
|
440
440
|
"from": "components/VNoSsr/index.mjs",
|
|
441
441
|
"styles": []
|
|
@@ -444,10 +444,6 @@
|
|
|
444
444
|
"from": "components/VParallax/index.mjs",
|
|
445
445
|
"styles": []
|
|
446
446
|
},
|
|
447
|
-
"VRadio": {
|
|
448
|
-
"from": "components/VRadio/index.mjs",
|
|
449
|
-
"styles": []
|
|
450
|
-
},
|
|
451
447
|
"VRangeSlider": {
|
|
452
448
|
"from": "components/VRangeSlider/index.mjs",
|
|
453
449
|
"styles": []
|
|
@@ -456,16 +452,20 @@
|
|
|
456
452
|
"from": "components/VResponsive/index.mjs",
|
|
457
453
|
"styles": []
|
|
458
454
|
},
|
|
459
|
-
"
|
|
460
|
-
"from": "components/
|
|
455
|
+
"VRadio": {
|
|
456
|
+
"from": "components/VRadio/index.mjs",
|
|
457
|
+
"styles": []
|
|
458
|
+
},
|
|
459
|
+
"VVirtualScroll": {
|
|
460
|
+
"from": "components/VVirtualScroll/index.mjs",
|
|
461
461
|
"styles": []
|
|
462
462
|
},
|
|
463
463
|
"VValidation": {
|
|
464
464
|
"from": "components/VValidation/index.mjs",
|
|
465
465
|
"styles": []
|
|
466
466
|
},
|
|
467
|
-
"
|
|
468
|
-
"from": "components/
|
|
467
|
+
"VThemeProvider": {
|
|
468
|
+
"from": "components/VThemeProvider/index.mjs",
|
|
469
469
|
"styles": []
|
|
470
470
|
},
|
|
471
471
|
"VFabTransition": {
|
package/dist/json/tags.json
CHANGED
|
@@ -818,6 +818,8 @@
|
|
|
818
818
|
"item-value",
|
|
819
819
|
"items",
|
|
820
820
|
"items-per-page",
|
|
821
|
+
"loading",
|
|
822
|
+
"loading-text",
|
|
821
823
|
"model-value",
|
|
822
824
|
"multi-sort",
|
|
823
825
|
"must-sort",
|
|
@@ -911,6 +913,8 @@
|
|
|
911
913
|
"item-title",
|
|
912
914
|
"item-value",
|
|
913
915
|
"items",
|
|
916
|
+
"loading",
|
|
917
|
+
"loading-text",
|
|
914
918
|
"model-value",
|
|
915
919
|
"multi-sort",
|
|
916
920
|
"must-sort",
|
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.3.0-dev-
|
|
5
|
+
"version": "3.3.0-dev-20230508.0",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -8349,6 +8349,16 @@
|
|
|
8349
8349
|
"type": "any[]"
|
|
8350
8350
|
}
|
|
8351
8351
|
},
|
|
8352
|
+
{
|
|
8353
|
+
"name": "loading",
|
|
8354
|
+
"description": "MISSING DESCRIPTION",
|
|
8355
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table#props",
|
|
8356
|
+
"default": "false",
|
|
8357
|
+
"value": {
|
|
8358
|
+
"kind": "expression",
|
|
8359
|
+
"type": "string | boolean"
|
|
8360
|
+
}
|
|
8361
|
+
},
|
|
8352
8362
|
{
|
|
8353
8363
|
"name": "search",
|
|
8354
8364
|
"description": "Text input used to filter items",
|
|
@@ -8521,6 +8531,16 @@
|
|
|
8521
8531
|
},
|
|
8522
8532
|
"type": "boolean"
|
|
8523
8533
|
},
|
|
8534
|
+
{
|
|
8535
|
+
"name": "loadingText",
|
|
8536
|
+
"description": "MISSING DESCRIPTION",
|
|
8537
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table#props",
|
|
8538
|
+
"default": "'$vuetify.dataIterator.loadingText'",
|
|
8539
|
+
"value": {
|
|
8540
|
+
"kind": "expression",
|
|
8541
|
+
"type": "string"
|
|
8542
|
+
}
|
|
8543
|
+
},
|
|
8524
8544
|
{
|
|
8525
8545
|
"name": "expandOnClick",
|
|
8526
8546
|
"description": "MISSING DESCRIPTION",
|
|
@@ -9122,22 +9142,22 @@
|
|
|
9122
9142
|
}
|
|
9123
9143
|
},
|
|
9124
9144
|
{
|
|
9125
|
-
"name": "
|
|
9145
|
+
"name": "loadingText",
|
|
9126
9146
|
"description": "MISSING DESCRIPTION",
|
|
9127
9147
|
"doc-url": "https://vuetifyjs.com/api/v-data-table-rows#props",
|
|
9148
|
+
"default": "'$vuetify.dataIterator.loadingText'",
|
|
9128
9149
|
"value": {
|
|
9129
9150
|
"kind": "expression",
|
|
9130
|
-
"type": "
|
|
9151
|
+
"type": "string"
|
|
9131
9152
|
}
|
|
9132
9153
|
},
|
|
9133
9154
|
{
|
|
9134
|
-
"name": "
|
|
9155
|
+
"name": "rowHeight",
|
|
9135
9156
|
"description": "MISSING DESCRIPTION",
|
|
9136
9157
|
"doc-url": "https://vuetifyjs.com/api/v-data-table-rows#props",
|
|
9137
|
-
"default": "'$vuetify.dataIterator.loadingText'",
|
|
9138
9158
|
"value": {
|
|
9139
9159
|
"kind": "expression",
|
|
9140
|
-
"type": "
|
|
9160
|
+
"type": "number"
|
|
9141
9161
|
}
|
|
9142
9162
|
}
|
|
9143
9163
|
],
|
|
@@ -9584,6 +9604,16 @@
|
|
|
9584
9604
|
},
|
|
9585
9605
|
"type": "boolean"
|
|
9586
9606
|
},
|
|
9607
|
+
{
|
|
9608
|
+
"name": "loadingText",
|
|
9609
|
+
"description": "MISSING DESCRIPTION",
|
|
9610
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-server#props",
|
|
9611
|
+
"default": "'$vuetify.dataIterator.loadingText'",
|
|
9612
|
+
"value": {
|
|
9613
|
+
"kind": "expression",
|
|
9614
|
+
"type": "string"
|
|
9615
|
+
}
|
|
9616
|
+
},
|
|
9587
9617
|
{
|
|
9588
9618
|
"name": "expandOnClick",
|
|
9589
9619
|
"description": "MISSING DESCRIPTION",
|
|
@@ -9689,16 +9719,6 @@
|
|
|
9689
9719
|
"type": "string | number"
|
|
9690
9720
|
}
|
|
9691
9721
|
},
|
|
9692
|
-
{
|
|
9693
|
-
"name": "loadingText",
|
|
9694
|
-
"description": "MISSING DESCRIPTION",
|
|
9695
|
-
"doc-url": "https://vuetifyjs.com/api/v-data-table-server#props",
|
|
9696
|
-
"default": "'$vuetify.dataIterator.loadingText'",
|
|
9697
|
-
"value": {
|
|
9698
|
-
"kind": "expression",
|
|
9699
|
-
"type": "string"
|
|
9700
|
-
}
|
|
9701
|
-
},
|
|
9702
9722
|
{
|
|
9703
9723
|
"name": "itemsLength",
|
|
9704
9724
|
"description": "MISSING DESCRIPTION",
|
|
@@ -10131,6 +10151,16 @@
|
|
|
10131
10151
|
"type": "any[]"
|
|
10132
10152
|
}
|
|
10133
10153
|
},
|
|
10154
|
+
{
|
|
10155
|
+
"name": "loading",
|
|
10156
|
+
"description": "MISSING DESCRIPTION",
|
|
10157
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#props",
|
|
10158
|
+
"default": "false",
|
|
10159
|
+
"value": {
|
|
10160
|
+
"kind": "expression",
|
|
10161
|
+
"type": "string | boolean"
|
|
10162
|
+
}
|
|
10163
|
+
},
|
|
10134
10164
|
{
|
|
10135
10165
|
"name": "search",
|
|
10136
10166
|
"description": "Text input used to filter items",
|
|
@@ -10303,6 +10333,16 @@
|
|
|
10303
10333
|
},
|
|
10304
10334
|
"type": "boolean"
|
|
10305
10335
|
},
|
|
10336
|
+
{
|
|
10337
|
+
"name": "loadingText",
|
|
10338
|
+
"description": "MISSING DESCRIPTION",
|
|
10339
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-virtual#props",
|
|
10340
|
+
"default": "'$vuetify.dataIterator.loadingText'",
|
|
10341
|
+
"value": {
|
|
10342
|
+
"kind": "expression",
|
|
10343
|
+
"type": "string"
|
|
10344
|
+
}
|
|
10345
|
+
},
|
|
10306
10346
|
{
|
|
10307
10347
|
"name": "expandOnClick",
|
|
10308
10348
|
"description": "MISSING DESCRIPTION",
|