@vuetify/nightly 3.6.0-alpha.1-dev.2024-04-13 → 3.6.0-alpha.1-dev.2024-04-15
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 +8 -8
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +126 -126
- package/dist/json/web-types.json +53 -53
- package/dist/vuetify-labs.css +2449 -2449
- package/dist/vuetify-labs.esm.js +38 -20
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +38 -20
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2271 -2271
- package/dist/vuetify.d.ts +40 -40
- package/dist/vuetify.esm.js +38 -20
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +38 -20
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +16 -15
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDataIterator/VDataIterator.mjs +3 -1
- package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +16 -16
- package/lib/components/VDataTable/VDataTable.mjs +5 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs +5 -1
- package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/components/VDataTable/composables/sort.mjs +23 -15
- package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +16 -16
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +40 -40
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1-dev.2024-04-
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1-dev.2024-04-15...v) (2024-04-15)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
# [3.6.0-alpha.1-dev.2024-04-
|
|
5
|
+
# [3.6.0-alpha.1-dev.2024-04-15](https://github.com/vuetifyjs/vuetify/compare/v3.6.0-alpha.1...v3.6.0-alpha.1-dev.2024-04-15) (2024-04-15)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
9
9
|
|
|
10
|
+
* **VDataTable:** sort on transformed column values ([b6b9be5](https://github.com/vuetifyjs/vuetify/commit/b6b9be5e0f30df8f2444a565dcc1e93e39116b33)), closes [#18840](https://github.com/vuetifyjs/vuetify/issues/18840)
|
|
10
11
|
* **VTimeline:** provide correct dot-color default ([380e8e6](https://github.com/vuetifyjs/vuetify/commit/380e8e650f4ed969d738747242991743842b9a67))
|
|
11
12
|
|
|
12
13
|
|
|
@@ -3280,7 +3280,7 @@
|
|
|
3280
3280
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3281
3281
|
},
|
|
3282
3282
|
"VDataIterator/sort-by": {
|
|
3283
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3283
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3284
3284
|
"description": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier."
|
|
3285
3285
|
},
|
|
3286
3286
|
"VDataIterator/multi-sort": {
|
|
@@ -3312,7 +3312,7 @@
|
|
|
3312
3312
|
"description": "Array of expanded items. Can be used with `.sync` modifier."
|
|
3313
3313
|
},
|
|
3314
3314
|
"VDataIterator/group-by": {
|
|
3315
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3315
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3316
3316
|
"description": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier."
|
|
3317
3317
|
},
|
|
3318
3318
|
"VDataIterator/filter-mode": {
|
|
@@ -3408,7 +3408,7 @@
|
|
|
3408
3408
|
"description": "Whether the item is expanded or not."
|
|
3409
3409
|
},
|
|
3410
3410
|
"VDataTable/group-by": {
|
|
3411
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3411
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3412
3412
|
"description": "Changes which item property should be used for grouping items. Currently only supports a single grouping in the format: `group` or `['group']`. When using an array, only the first element is considered. Can be used with `.sync` modifier."
|
|
3413
3413
|
},
|
|
3414
3414
|
"VDataTable/item-value": {
|
|
@@ -3440,7 +3440,7 @@
|
|
|
3440
3440
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3441
3441
|
},
|
|
3442
3442
|
"VDataTable/sort-by": {
|
|
3443
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3443
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3444
3444
|
"description": "Changes which item property (or properties) should be used for sort order. Can be used with `.sync` modifier."
|
|
3445
3445
|
},
|
|
3446
3446
|
"VDataTable/multi-sort": {
|
|
@@ -3704,7 +3704,7 @@
|
|
|
3704
3704
|
"description": "Whether the item is expanded or not."
|
|
3705
3705
|
},
|
|
3706
3706
|
"VDataTableServer/group-by": {
|
|
3707
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3707
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3708
3708
|
"description": "Defines the grouping of the table items."
|
|
3709
3709
|
},
|
|
3710
3710
|
"VDataTableServer/item-value": {
|
|
@@ -3736,7 +3736,7 @@
|
|
|
3736
3736
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3737
3737
|
},
|
|
3738
3738
|
"VDataTableServer/sort-by": {
|
|
3739
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3739
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3740
3740
|
"description": "Array of column keys and sort orders that determines the sort order of the table."
|
|
3741
3741
|
},
|
|
3742
3742
|
"VDataTableServer/multi-sort": {
|
|
@@ -3900,7 +3900,7 @@
|
|
|
3900
3900
|
"description": "Whether the item is expanded or not."
|
|
3901
3901
|
},
|
|
3902
3902
|
"VDataTableVirtual/group-by": {
|
|
3903
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3903
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3904
3904
|
"description": "Defines the grouping of the table items."
|
|
3905
3905
|
},
|
|
3906
3906
|
"VDataTableVirtual/item-value": {
|
|
@@ -3932,7 +3932,7 @@
|
|
|
3932
3932
|
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop."
|
|
3933
3933
|
},
|
|
3934
3934
|
"VDataTableVirtual/sort-by": {
|
|
3935
|
-
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#
|
|
3935
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L30-L30\" target=\"_blank\">SortItem</a>[]\n",
|
|
3936
3936
|
"description": "Array of column keys and sort orders that determines the sort order of the table."
|
|
3937
3937
|
},
|
|
3938
3938
|
"VDataTableVirtual/multi-sort": {
|
|
@@ -28,14 +28,6 @@
|
|
|
28
28
|
"from": "labs/VEmptyState/index.mjs",
|
|
29
29
|
"styles": []
|
|
30
30
|
},
|
|
31
|
-
"VFab": {
|
|
32
|
-
"from": "labs/VFab/index.mjs",
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VNumberInput": {
|
|
36
|
-
"from": "labs/VNumberInput/index.mjs",
|
|
37
|
-
"styles": []
|
|
38
|
-
},
|
|
39
31
|
"VPicker": {
|
|
40
32
|
"from": "labs/VPicker/index.mjs",
|
|
41
33
|
"styles": []
|
|
@@ -44,6 +36,14 @@
|
|
|
44
36
|
"from": "labs/VPicker/index.mjs",
|
|
45
37
|
"styles": []
|
|
46
38
|
},
|
|
39
|
+
"VFab": {
|
|
40
|
+
"from": "labs/VFab/index.mjs",
|
|
41
|
+
"styles": []
|
|
42
|
+
},
|
|
43
|
+
"VNumberInput": {
|
|
44
|
+
"from": "labs/VNumberInput/index.mjs",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
47
47
|
"VTimePicker": {
|
|
48
48
|
"from": "labs/VTimePicker/index.mjs",
|
|
49
49
|
"styles": []
|
|
@@ -64,10 +64,6 @@
|
|
|
64
64
|
"from": "labs/VSparkline/index.mjs",
|
|
65
65
|
"styles": []
|
|
66
66
|
},
|
|
67
|
-
"VSpeedDial": {
|
|
68
|
-
"from": "labs/VSpeedDial/index.mjs",
|
|
69
|
-
"styles": []
|
|
70
|
-
},
|
|
71
67
|
"VTreeview": {
|
|
72
68
|
"from": "labs/VTreeview/index.mjs",
|
|
73
69
|
"styles": []
|
|
@@ -79,6 +75,10 @@
|
|
|
79
75
|
"VTreeviewGroup": {
|
|
80
76
|
"from": "labs/VTreeview/index.mjs",
|
|
81
77
|
"styles": []
|
|
78
|
+
},
|
|
79
|
+
"VSpeedDial": {
|
|
80
|
+
"from": "labs/VSpeedDial/index.mjs",
|
|
81
|
+
"styles": []
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
84
|
}
|
package/dist/json/importMap.json
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
+
"VApp": {
|
|
4
|
+
"from": "components/VApp/index.mjs",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
3
7
|
"VAppBar": {
|
|
4
8
|
"from": "components/VAppBar/index.mjs",
|
|
5
9
|
"styles": []
|
|
@@ -12,32 +16,24 @@
|
|
|
12
16
|
"from": "components/VAppBar/index.mjs",
|
|
13
17
|
"styles": []
|
|
14
18
|
},
|
|
15
|
-
"
|
|
16
|
-
"from": "components/
|
|
19
|
+
"VAlert": {
|
|
20
|
+
"from": "components/VAlert/index.mjs",
|
|
17
21
|
"styles": []
|
|
18
22
|
},
|
|
19
|
-
"
|
|
20
|
-
"from": "components/
|
|
23
|
+
"VAlertTitle": {
|
|
24
|
+
"from": "components/VAlert/index.mjs",
|
|
21
25
|
"styles": []
|
|
22
26
|
},
|
|
23
|
-
"
|
|
24
|
-
"from": "components/
|
|
27
|
+
"VAutocomplete": {
|
|
28
|
+
"from": "components/VAutocomplete/index.mjs",
|
|
25
29
|
"styles": []
|
|
26
30
|
},
|
|
27
31
|
"VBadge": {
|
|
28
32
|
"from": "components/VBadge/index.mjs",
|
|
29
33
|
"styles": []
|
|
30
34
|
},
|
|
31
|
-
"
|
|
32
|
-
"from": "components/
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VAlertTitle": {
|
|
36
|
-
"from": "components/VAlert/index.mjs",
|
|
37
|
-
"styles": []
|
|
38
|
-
},
|
|
39
|
-
"VBottomNavigation": {
|
|
40
|
-
"from": "components/VBottomNavigation/index.mjs",
|
|
35
|
+
"VAvatar": {
|
|
36
|
+
"from": "components/VAvatar/index.mjs",
|
|
41
37
|
"styles": []
|
|
42
38
|
},
|
|
43
39
|
"VBanner": {
|
|
@@ -52,6 +48,10 @@
|
|
|
52
48
|
"from": "components/VBanner/index.mjs",
|
|
53
49
|
"styles": []
|
|
54
50
|
},
|
|
51
|
+
"VBottomNavigation": {
|
|
52
|
+
"from": "components/VBottomNavigation/index.mjs",
|
|
53
|
+
"styles": []
|
|
54
|
+
},
|
|
55
55
|
"VBreadcrumbs": {
|
|
56
56
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
57
57
|
"styles": []
|
|
@@ -100,6 +100,10 @@
|
|
|
100
100
|
"from": "components/VCard/index.mjs",
|
|
101
101
|
"styles": []
|
|
102
102
|
},
|
|
103
|
+
"VBtnToggle": {
|
|
104
|
+
"from": "components/VBtnToggle/index.mjs",
|
|
105
|
+
"styles": []
|
|
106
|
+
},
|
|
103
107
|
"VCarousel": {
|
|
104
108
|
"from": "components/VCarousel/index.mjs",
|
|
105
109
|
"styles": []
|
|
@@ -108,10 +112,6 @@
|
|
|
108
112
|
"from": "components/VCarousel/index.mjs",
|
|
109
113
|
"styles": []
|
|
110
114
|
},
|
|
111
|
-
"VBtnToggle": {
|
|
112
|
-
"from": "components/VBtnToggle/index.mjs",
|
|
113
|
-
"styles": []
|
|
114
|
-
},
|
|
115
115
|
"VCheckbox": {
|
|
116
116
|
"from": "components/VCheckbox/index.mjs",
|
|
117
117
|
"styles": []
|
|
@@ -124,10 +124,6 @@
|
|
|
124
124
|
"from": "components/VChip/index.mjs",
|
|
125
125
|
"styles": []
|
|
126
126
|
},
|
|
127
|
-
"VCode": {
|
|
128
|
-
"from": "components/VCode/index.mjs",
|
|
129
|
-
"styles": []
|
|
130
|
-
},
|
|
131
127
|
"VChipGroup": {
|
|
132
128
|
"from": "components/VChipGroup/index.mjs",
|
|
133
129
|
"styles": []
|
|
@@ -136,6 +132,14 @@
|
|
|
136
132
|
"from": "components/VColorPicker/index.mjs",
|
|
137
133
|
"styles": []
|
|
138
134
|
},
|
|
135
|
+
"VCode": {
|
|
136
|
+
"from": "components/VCode/index.mjs",
|
|
137
|
+
"styles": []
|
|
138
|
+
},
|
|
139
|
+
"VCombobox": {
|
|
140
|
+
"from": "components/VCombobox/index.mjs",
|
|
141
|
+
"styles": []
|
|
142
|
+
},
|
|
139
143
|
"VCounter": {
|
|
140
144
|
"from": "components/VCounter/index.mjs",
|
|
141
145
|
"styles": []
|
|
@@ -168,6 +172,30 @@
|
|
|
168
172
|
"from": "components/VDataTable/index.mjs",
|
|
169
173
|
"styles": []
|
|
170
174
|
},
|
|
175
|
+
"VDatePicker": {
|
|
176
|
+
"from": "components/VDatePicker/index.mjs",
|
|
177
|
+
"styles": []
|
|
178
|
+
},
|
|
179
|
+
"VDatePickerControls": {
|
|
180
|
+
"from": "components/VDatePicker/index.mjs",
|
|
181
|
+
"styles": []
|
|
182
|
+
},
|
|
183
|
+
"VDatePickerHeader": {
|
|
184
|
+
"from": "components/VDatePicker/index.mjs",
|
|
185
|
+
"styles": []
|
|
186
|
+
},
|
|
187
|
+
"VDatePickerMonth": {
|
|
188
|
+
"from": "components/VDatePicker/index.mjs",
|
|
189
|
+
"styles": []
|
|
190
|
+
},
|
|
191
|
+
"VDatePickerMonths": {
|
|
192
|
+
"from": "components/VDatePicker/index.mjs",
|
|
193
|
+
"styles": []
|
|
194
|
+
},
|
|
195
|
+
"VDatePickerYears": {
|
|
196
|
+
"from": "components/VDatePicker/index.mjs",
|
|
197
|
+
"styles": []
|
|
198
|
+
},
|
|
171
199
|
"VDialog": {
|
|
172
200
|
"from": "components/VDialog/index.mjs",
|
|
173
201
|
"styles": []
|
|
@@ -188,10 +216,6 @@
|
|
|
188
216
|
"from": "components/VExpansionPanel/index.mjs",
|
|
189
217
|
"styles": []
|
|
190
218
|
},
|
|
191
|
-
"VCombobox": {
|
|
192
|
-
"from": "components/VCombobox/index.mjs",
|
|
193
|
-
"styles": []
|
|
194
|
-
},
|
|
195
219
|
"VDivider": {
|
|
196
220
|
"from": "components/VDivider/index.mjs",
|
|
197
221
|
"styles": []
|
|
@@ -200,30 +224,6 @@
|
|
|
200
224
|
"from": "components/VFileInput/index.mjs",
|
|
201
225
|
"styles": []
|
|
202
226
|
},
|
|
203
|
-
"VDatePicker": {
|
|
204
|
-
"from": "components/VDatePicker/index.mjs",
|
|
205
|
-
"styles": []
|
|
206
|
-
},
|
|
207
|
-
"VDatePickerControls": {
|
|
208
|
-
"from": "components/VDatePicker/index.mjs",
|
|
209
|
-
"styles": []
|
|
210
|
-
},
|
|
211
|
-
"VDatePickerHeader": {
|
|
212
|
-
"from": "components/VDatePicker/index.mjs",
|
|
213
|
-
"styles": []
|
|
214
|
-
},
|
|
215
|
-
"VDatePickerMonth": {
|
|
216
|
-
"from": "components/VDatePicker/index.mjs",
|
|
217
|
-
"styles": []
|
|
218
|
-
},
|
|
219
|
-
"VDatePickerMonths": {
|
|
220
|
-
"from": "components/VDatePicker/index.mjs",
|
|
221
|
-
"styles": []
|
|
222
|
-
},
|
|
223
|
-
"VDatePickerYears": {
|
|
224
|
-
"from": "components/VDatePicker/index.mjs",
|
|
225
|
-
"styles": []
|
|
226
|
-
},
|
|
227
227
|
"VField": {
|
|
228
228
|
"from": "components/VField/index.mjs",
|
|
229
229
|
"styles": []
|
|
@@ -236,14 +236,6 @@
|
|
|
236
236
|
"from": "components/VFooter/index.mjs",
|
|
237
237
|
"styles": []
|
|
238
238
|
},
|
|
239
|
-
"VInfiniteScroll": {
|
|
240
|
-
"from": "components/VInfiniteScroll/index.mjs",
|
|
241
|
-
"styles": []
|
|
242
|
-
},
|
|
243
|
-
"VImg": {
|
|
244
|
-
"from": "components/VImg/index.mjs",
|
|
245
|
-
"styles": []
|
|
246
|
-
},
|
|
247
239
|
"VIcon": {
|
|
248
240
|
"from": "components/VIcon/index.mjs",
|
|
249
241
|
"styles": []
|
|
@@ -264,6 +256,14 @@
|
|
|
264
256
|
"from": "components/VIcon/index.mjs",
|
|
265
257
|
"styles": []
|
|
266
258
|
},
|
|
259
|
+
"VImg": {
|
|
260
|
+
"from": "components/VImg/index.mjs",
|
|
261
|
+
"styles": []
|
|
262
|
+
},
|
|
263
|
+
"VInfiniteScroll": {
|
|
264
|
+
"from": "components/VInfiniteScroll/index.mjs",
|
|
265
|
+
"styles": []
|
|
266
|
+
},
|
|
267
267
|
"VInput": {
|
|
268
268
|
"from": "components/VInput/index.mjs",
|
|
269
269
|
"styles": []
|
|
@@ -276,6 +276,14 @@
|
|
|
276
276
|
"from": "components/VItemGroup/index.mjs",
|
|
277
277
|
"styles": []
|
|
278
278
|
},
|
|
279
|
+
"VLabel": {
|
|
280
|
+
"from": "components/VLabel/index.mjs",
|
|
281
|
+
"styles": []
|
|
282
|
+
},
|
|
283
|
+
"VKbd": {
|
|
284
|
+
"from": "components/VKbd/index.mjs",
|
|
285
|
+
"styles": []
|
|
286
|
+
},
|
|
279
287
|
"VList": {
|
|
280
288
|
"from": "components/VList/index.mjs",
|
|
281
289
|
"styles": []
|
|
@@ -312,92 +320,80 @@
|
|
|
312
320
|
"from": "components/VList/index.mjs",
|
|
313
321
|
"styles": []
|
|
314
322
|
},
|
|
315
|
-
"VKbd": {
|
|
316
|
-
"from": "components/VKbd/index.mjs",
|
|
317
|
-
"styles": []
|
|
318
|
-
},
|
|
319
|
-
"VLabel": {
|
|
320
|
-
"from": "components/VLabel/index.mjs",
|
|
321
|
-
"styles": []
|
|
322
|
-
},
|
|
323
323
|
"VMain": {
|
|
324
324
|
"from": "components/VMain/index.mjs",
|
|
325
325
|
"styles": []
|
|
326
326
|
},
|
|
327
|
-
"VMessages": {
|
|
328
|
-
"from": "components/VMessages/index.mjs",
|
|
329
|
-
"styles": []
|
|
330
|
-
},
|
|
331
327
|
"VMenu": {
|
|
332
328
|
"from": "components/VMenu/index.mjs",
|
|
333
329
|
"styles": []
|
|
334
330
|
},
|
|
331
|
+
"VMessages": {
|
|
332
|
+
"from": "components/VMessages/index.mjs",
|
|
333
|
+
"styles": []
|
|
334
|
+
},
|
|
335
335
|
"VNavigationDrawer": {
|
|
336
336
|
"from": "components/VNavigationDrawer/index.mjs",
|
|
337
337
|
"styles": []
|
|
338
338
|
},
|
|
339
|
-
"
|
|
340
|
-
"from": "components/
|
|
339
|
+
"VOverlay": {
|
|
340
|
+
"from": "components/VOverlay/index.mjs",
|
|
341
341
|
"styles": []
|
|
342
342
|
},
|
|
343
|
-
"
|
|
344
|
-
"from": "components/
|
|
343
|
+
"VProgressCircular": {
|
|
344
|
+
"from": "components/VProgressCircular/index.mjs",
|
|
345
345
|
"styles": []
|
|
346
346
|
},
|
|
347
|
-
"
|
|
348
|
-
"from": "components/
|
|
347
|
+
"VOtpInput": {
|
|
348
|
+
"from": "components/VOtpInput/index.mjs",
|
|
349
349
|
"styles": []
|
|
350
350
|
},
|
|
351
351
|
"VProgressLinear": {
|
|
352
352
|
"from": "components/VProgressLinear/index.mjs",
|
|
353
353
|
"styles": []
|
|
354
354
|
},
|
|
355
|
-
"
|
|
356
|
-
"from": "components/
|
|
355
|
+
"VPagination": {
|
|
356
|
+
"from": "components/VPagination/index.mjs",
|
|
357
357
|
"styles": []
|
|
358
358
|
},
|
|
359
|
-
"
|
|
360
|
-
"from": "components/
|
|
359
|
+
"VSelect": {
|
|
360
|
+
"from": "components/VSelect/index.mjs",
|
|
361
361
|
"styles": []
|
|
362
362
|
},
|
|
363
363
|
"VRating": {
|
|
364
364
|
"from": "components/VRating/index.mjs",
|
|
365
365
|
"styles": []
|
|
366
366
|
},
|
|
367
|
-
"
|
|
368
|
-
"from": "components/
|
|
369
|
-
"styles": []
|
|
370
|
-
},
|
|
371
|
-
"VSelectionControl": {
|
|
372
|
-
"from": "components/VSelectionControl/index.mjs",
|
|
367
|
+
"VRadioGroup": {
|
|
368
|
+
"from": "components/VRadioGroup/index.mjs",
|
|
373
369
|
"styles": []
|
|
374
370
|
},
|
|
375
371
|
"VSelectionControlGroup": {
|
|
376
372
|
"from": "components/VSelectionControlGroup/index.mjs",
|
|
377
373
|
"styles": []
|
|
378
374
|
},
|
|
379
|
-
"
|
|
380
|
-
"from": "components/
|
|
375
|
+
"VSelectionControl": {
|
|
376
|
+
"from": "components/VSelectionControl/index.mjs",
|
|
381
377
|
"styles": []
|
|
382
378
|
},
|
|
383
|
-
"
|
|
384
|
-
"from": "components/
|
|
379
|
+
"VSlideGroup": {
|
|
380
|
+
"from": "components/VSlideGroup/index.mjs",
|
|
385
381
|
"styles": []
|
|
386
382
|
},
|
|
387
|
-
"
|
|
388
|
-
"from": "components/
|
|
383
|
+
"VSlideGroupItem": {
|
|
384
|
+
"from": "components/VSlideGroup/index.mjs",
|
|
389
385
|
"styles": []
|
|
390
386
|
},
|
|
391
|
-
"
|
|
392
|
-
"from": "components/
|
|
387
|
+
"VSlider": {
|
|
388
|
+
"from": "components/VSlider/index.mjs",
|
|
393
389
|
"styles": []
|
|
394
390
|
},
|
|
395
|
-
"
|
|
396
|
-
"from": "components/
|
|
391
|
+
"VSheet": {
|
|
392
|
+
"from": "components/VSheet/index.mjs",
|
|
397
393
|
"styles": []
|
|
398
394
|
},
|
|
399
|
-
"
|
|
400
|
-
"from": "components/
|
|
395
|
+
"VSkeletonLoader": {
|
|
396
|
+
"from": "components/VSkeletonLoader/index.mjs",
|
|
401
397
|
"styles": []
|
|
402
398
|
},
|
|
403
399
|
"VStepper": {
|
|
@@ -424,16 +420,12 @@
|
|
|
424
420
|
"from": "components/VStepper/index.mjs",
|
|
425
421
|
"styles": []
|
|
426
422
|
},
|
|
427
|
-
"VSystemBar": {
|
|
428
|
-
"from": "components/VSystemBar/index.mjs",
|
|
429
|
-
"styles": []
|
|
430
|
-
},
|
|
431
423
|
"VSnackbar": {
|
|
432
424
|
"from": "components/VSnackbar/index.mjs",
|
|
433
425
|
"styles": []
|
|
434
426
|
},
|
|
435
|
-
"
|
|
436
|
-
"from": "components/
|
|
427
|
+
"VSwitch": {
|
|
428
|
+
"from": "components/VSwitch/index.mjs",
|
|
437
429
|
"styles": []
|
|
438
430
|
},
|
|
439
431
|
"VTable": {
|
|
@@ -456,12 +448,12 @@
|
|
|
456
448
|
"from": "components/VTabs/index.mjs",
|
|
457
449
|
"styles": []
|
|
458
450
|
},
|
|
459
|
-
"
|
|
460
|
-
"from": "components/
|
|
451
|
+
"VSystemBar": {
|
|
452
|
+
"from": "components/VSystemBar/index.mjs",
|
|
461
453
|
"styles": []
|
|
462
454
|
},
|
|
463
|
-
"
|
|
464
|
-
"from": "components/
|
|
455
|
+
"VTextarea": {
|
|
456
|
+
"from": "components/VTextarea/index.mjs",
|
|
465
457
|
"styles": []
|
|
466
458
|
},
|
|
467
459
|
"VToolbar": {
|
|
@@ -476,12 +468,16 @@
|
|
|
476
468
|
"from": "components/VToolbar/index.mjs",
|
|
477
469
|
"styles": []
|
|
478
470
|
},
|
|
479
|
-
"
|
|
480
|
-
"from": "components/
|
|
471
|
+
"VTimeline": {
|
|
472
|
+
"from": "components/VTimeline/index.mjs",
|
|
481
473
|
"styles": []
|
|
482
474
|
},
|
|
483
|
-
"
|
|
484
|
-
"from": "components/
|
|
475
|
+
"VTimelineItem": {
|
|
476
|
+
"from": "components/VTimeline/index.mjs",
|
|
477
|
+
"styles": []
|
|
478
|
+
},
|
|
479
|
+
"VTextField": {
|
|
480
|
+
"from": "components/VTextField/index.mjs",
|
|
485
481
|
"styles": []
|
|
486
482
|
},
|
|
487
483
|
"VWindow": {
|
|
@@ -492,6 +488,10 @@
|
|
|
492
488
|
"from": "components/VWindow/index.mjs",
|
|
493
489
|
"styles": []
|
|
494
490
|
},
|
|
491
|
+
"VTooltip": {
|
|
492
|
+
"from": "components/VTooltip/index.mjs",
|
|
493
|
+
"styles": []
|
|
494
|
+
},
|
|
495
495
|
"VDataIterator": {
|
|
496
496
|
"from": "components/VDataIterator/index.mjs",
|
|
497
497
|
"styles": []
|
|
@@ -500,10 +500,6 @@
|
|
|
500
500
|
"from": "components/VDefaultsProvider/index.mjs",
|
|
501
501
|
"styles": []
|
|
502
502
|
},
|
|
503
|
-
"VForm": {
|
|
504
|
-
"from": "components/VForm/index.mjs",
|
|
505
|
-
"styles": []
|
|
506
|
-
},
|
|
507
503
|
"VContainer": {
|
|
508
504
|
"from": "components/VGrid/index.mjs",
|
|
509
505
|
"styles": []
|
|
@@ -524,6 +520,10 @@
|
|
|
524
520
|
"from": "components/VHover/index.mjs",
|
|
525
521
|
"styles": []
|
|
526
522
|
},
|
|
523
|
+
"VForm": {
|
|
524
|
+
"from": "components/VForm/index.mjs",
|
|
525
|
+
"styles": []
|
|
526
|
+
},
|
|
527
527
|
"VLayout": {
|
|
528
528
|
"from": "components/VLayout/index.mjs",
|
|
529
529
|
"styles": []
|
|
@@ -544,14 +544,14 @@
|
|
|
544
544
|
"from": "components/VNoSsr/index.mjs",
|
|
545
545
|
"styles": []
|
|
546
546
|
},
|
|
547
|
-
"VParallax": {
|
|
548
|
-
"from": "components/VParallax/index.mjs",
|
|
549
|
-
"styles": []
|
|
550
|
-
},
|
|
551
547
|
"VRadio": {
|
|
552
548
|
"from": "components/VRadio/index.mjs",
|
|
553
549
|
"styles": []
|
|
554
550
|
},
|
|
551
|
+
"VParallax": {
|
|
552
|
+
"from": "components/VParallax/index.mjs",
|
|
553
|
+
"styles": []
|
|
554
|
+
},
|
|
555
555
|
"VRangeSlider": {
|
|
556
556
|
"from": "components/VRangeSlider/index.mjs",
|
|
557
557
|
"styles": []
|
|
@@ -564,10 +564,6 @@
|
|
|
564
564
|
"from": "components/VThemeProvider/index.mjs",
|
|
565
565
|
"styles": []
|
|
566
566
|
},
|
|
567
|
-
"VValidation": {
|
|
568
|
-
"from": "components/VValidation/index.mjs",
|
|
569
|
-
"styles": []
|
|
570
|
-
},
|
|
571
567
|
"VVirtualScroll": {
|
|
572
568
|
"from": "components/VVirtualScroll/index.mjs",
|
|
573
569
|
"styles": []
|
|
@@ -635,6 +631,10 @@
|
|
|
635
631
|
"VDialogTransition": {
|
|
636
632
|
"from": "components/transitions/index.mjs",
|
|
637
633
|
"styles": []
|
|
634
|
+
},
|
|
635
|
+
"VValidation": {
|
|
636
|
+
"from": "components/VValidation/index.mjs",
|
|
637
|
+
"styles": []
|
|
638
638
|
}
|
|
639
639
|
},
|
|
640
640
|
"directives": [
|