@vuetify/nightly 3.5.9-dev.2024-03-17 → 3.5.9-dev.2024-03-29
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 +4 -2
- package/dist/json/attributes.json +51 -7
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +126 -126
- package/dist/json/tags.json +12 -1
- package/dist/json/web-types.json +114 -13
- package/dist/vuetify-labs.css +1894 -1894
- package/dist/vuetify-labs.d.ts +106 -19
- package/dist/vuetify-labs.esm.js +105 -98
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +105 -98
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +804 -804
- package/dist/vuetify.d.ts +147 -60
- package/dist/vuetify.esm.js +105 -98
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +105 -98
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +185 -185
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VMain/VMain.mjs +6 -1
- package/lib/components/VMain/VMain.mjs.map +1 -1
- package/lib/components/VMain/index.d.mts +36 -0
- package/lib/components/VTimeline/VTimeline.mjs +12 -6
- package/lib/components/VTimeline/VTimeline.mjs.map +1 -1
- package/lib/components/VTimeline/index.d.mts +70 -19
- package/lib/components/index.d.mts +106 -19
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +41 -41
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
# [](https://github.com/vuetifyjs/vuetify/compare/v3.5.9-dev.2024-03-
|
|
1
|
+
# [](https://github.com/vuetifyjs/vuetify/compare/v3.5.9-dev.2024-03-29...v) (2024-03-29)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
## [3.5.9-dev.2024-03-
|
|
5
|
+
## [3.5.9-dev.2024-03-29](https://github.com/vuetifyjs/vuetify/compare/v3.5.9...v3.5.9-dev.2024-03-29) (2024-03-29)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
@@ -31,7 +31,9 @@
|
|
|
31
31
|
* **VForm:** expose component instances ([56c5c62](https://github.com/vuetifyjs/vuetify/commit/56c5c62670ff185d482c284b915aca920e5b56cf)), closes [#19365](https://github.com/vuetifyjs/vuetify/issues/19365)
|
|
32
32
|
* **VInput:** add new $input-flex sass variable ([0f1d43a](https://github.com/vuetifyjs/vuetify/commit/0f1d43aac5a5e7d207653892dca968040ee0041d))
|
|
33
33
|
* **VLabel:** add opacity sass variable ([c6fb388](https://github.com/vuetifyjs/vuetify/commit/c6fb388be73b042e985ed371ba8cd392b4408c62))
|
|
34
|
+
* **VMain:** add dimension support ([8ba749b](https://github.com/vuetifyjs/vuetify/commit/8ba749b401ebd5dc07c057a9f363b006fdbe31a4))
|
|
34
35
|
* **VSnackbar:** pass internal isActive model through activator slot ([75d0ed1](https://github.com/vuetifyjs/vuetify/commit/75d0ed173c7883fe4b7b4b7075d73251b9419b07))
|
|
36
|
+
* **VTimeline:** add more passthrough props to defaults provide ([c008ad5](https://github.com/vuetifyjs/vuetify/commit/c008ad506cbd8125d4ecb148c3f63f998c9f5399))
|
|
35
37
|
|
|
36
38
|
|
|
37
39
|
|
|
@@ -6271,6 +6271,30 @@
|
|
|
6271
6271
|
"type": "boolean\n",
|
|
6272
6272
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/dev/packages/api-generator/src/locale/en/VMain.json))"
|
|
6273
6273
|
},
|
|
6274
|
+
"VMain/height": {
|
|
6275
|
+
"type": "string | number\n",
|
|
6276
|
+
"description": "Sets the height for the component."
|
|
6277
|
+
},
|
|
6278
|
+
"VMain/max-height": {
|
|
6279
|
+
"type": "string | number\n",
|
|
6280
|
+
"description": "Sets the maximum height for the component."
|
|
6281
|
+
},
|
|
6282
|
+
"VMain/max-width": {
|
|
6283
|
+
"type": "string | number\n",
|
|
6284
|
+
"description": "Sets the maximum width for the component."
|
|
6285
|
+
},
|
|
6286
|
+
"VMain/min-height": {
|
|
6287
|
+
"type": "string | number\n",
|
|
6288
|
+
"description": "Sets the minimum height for the component."
|
|
6289
|
+
},
|
|
6290
|
+
"VMain/min-width": {
|
|
6291
|
+
"type": "string | number\n",
|
|
6292
|
+
"description": "Sets the minimum width for the component."
|
|
6293
|
+
},
|
|
6294
|
+
"VMain/width": {
|
|
6295
|
+
"type": "string | number\n",
|
|
6296
|
+
"description": "Sets the width for the component."
|
|
6297
|
+
},
|
|
6274
6298
|
"VMain/tag": {
|
|
6275
6299
|
"type": "string\n",
|
|
6276
6300
|
"description": "Specify a custom tag used on the root element."
|
|
@@ -10279,10 +10303,6 @@
|
|
|
10279
10303
|
"type": "string\n",
|
|
10280
10304
|
"description": "Places timeline line at the center or automatically on the left or right side."
|
|
10281
10305
|
},
|
|
10282
|
-
"VTimeline/line-inset": {
|
|
10283
|
-
"type": "string | number\n",
|
|
10284
|
-
"description": "Specifies the distance between the line and the dot of timeline items."
|
|
10285
|
-
},
|
|
10286
10306
|
"VTimeline/line-thickness": {
|
|
10287
10307
|
"type": "string | number\n",
|
|
10288
10308
|
"description": "Thickness of the timeline line."
|
|
@@ -10291,14 +10311,38 @@
|
|
|
10291
10311
|
"type": "string\n",
|
|
10292
10312
|
"description": "Color of the timeline line."
|
|
10293
10313
|
},
|
|
10294
|
-
"VTimeline/
|
|
10295
|
-
"type": "
|
|
10296
|
-
"description": "
|
|
10314
|
+
"VTimeline/dot-color": {
|
|
10315
|
+
"type": "string\n",
|
|
10316
|
+
"description": "Color of the item dot."
|
|
10317
|
+
},
|
|
10318
|
+
"VTimeline/fill-dot": {
|
|
10319
|
+
"type": "boolean\n",
|
|
10320
|
+
"description": "Remove outer border of item dot, making the color fill the entire dot."
|
|
10321
|
+
},
|
|
10322
|
+
"VTimeline/hide-opposite": {
|
|
10323
|
+
"type": "boolean\n",
|
|
10324
|
+
"description": "Hide opposite content if it exists."
|
|
10325
|
+
},
|
|
10326
|
+
"VTimeline/icon-color": {
|
|
10327
|
+
"type": "string\n",
|
|
10328
|
+
"description": "Color of the icon."
|
|
10329
|
+
},
|
|
10330
|
+
"VTimeline/line-inset": {
|
|
10331
|
+
"type": "string | number\n",
|
|
10332
|
+
"description": "Specifies the distance between the line and the dot of timeline items."
|
|
10333
|
+
},
|
|
10334
|
+
"VTimeline/size": {
|
|
10335
|
+
"type": "string | number\n",
|
|
10336
|
+
"description": "Size of the item dot"
|
|
10297
10337
|
},
|
|
10298
10338
|
"VTimeline/tag": {
|
|
10299
10339
|
"type": "string\n",
|
|
10300
10340
|
"description": "Specify a custom tag used on the root element."
|
|
10301
10341
|
},
|
|
10342
|
+
"VTimeline/density": {
|
|
10343
|
+
"type": "'default' | 'compact' | 'comfortable'\n",
|
|
10344
|
+
"description": "Adjusts the vertical height used by the component."
|
|
10345
|
+
},
|
|
10302
10346
|
"VTimeline/theme": {
|
|
10303
10347
|
"type": "string\n",
|
|
10304
10348
|
"description": "Specify a theme for this component and all of its children."
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"components": {
|
|
3
|
+
"VPicker": {
|
|
4
|
+
"from": "labs/VPicker/index.mjs",
|
|
5
|
+
"styles": []
|
|
6
|
+
},
|
|
7
|
+
"VPickerTitle": {
|
|
8
|
+
"from": "labs/VPicker/index.mjs",
|
|
9
|
+
"styles": []
|
|
10
|
+
},
|
|
11
|
+
"VEmptyState": {
|
|
12
|
+
"from": "labs/VEmptyState/index.mjs",
|
|
13
|
+
"styles": []
|
|
14
|
+
},
|
|
15
|
+
"VFab": {
|
|
16
|
+
"from": "labs/VFab/index.mjs",
|
|
17
|
+
"styles": []
|
|
18
|
+
},
|
|
3
19
|
"VCalendar": {
|
|
4
20
|
"from": "labs/VCalendar/index.mjs",
|
|
5
21
|
"styles": []
|
|
@@ -24,30 +40,18 @@
|
|
|
24
40
|
"from": "labs/VCalendar/index.mjs",
|
|
25
41
|
"styles": []
|
|
26
42
|
},
|
|
27
|
-
"
|
|
28
|
-
"from": "labs/
|
|
29
|
-
"styles": []
|
|
30
|
-
},
|
|
31
|
-
"VPicker": {
|
|
32
|
-
"from": "labs/VPicker/index.mjs",
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VPickerTitle": {
|
|
36
|
-
"from": "labs/VPicker/index.mjs",
|
|
43
|
+
"VSparkline": {
|
|
44
|
+
"from": "labs/VSparkline/index.mjs",
|
|
37
45
|
"styles": []
|
|
38
46
|
},
|
|
39
|
-
"
|
|
40
|
-
"from": "labs/
|
|
47
|
+
"VSpeedDial": {
|
|
48
|
+
"from": "labs/VSpeedDial/index.mjs",
|
|
41
49
|
"styles": []
|
|
42
50
|
},
|
|
43
51
|
"VConfirmEdit": {
|
|
44
52
|
"from": "labs/VConfirmEdit/index.mjs",
|
|
45
53
|
"styles": []
|
|
46
54
|
},
|
|
47
|
-
"VSparkline": {
|
|
48
|
-
"from": "labs/VSparkline/index.mjs",
|
|
49
|
-
"styles": []
|
|
50
|
-
},
|
|
51
55
|
"VTreeview": {
|
|
52
56
|
"from": "labs/VTreeview/index.mjs",
|
|
53
57
|
"styles": []
|
|
@@ -59,10 +63,6 @@
|
|
|
59
63
|
"VTreeviewGroup": {
|
|
60
64
|
"from": "labs/VTreeview/index.mjs",
|
|
61
65
|
"styles": []
|
|
62
|
-
},
|
|
63
|
-
"VSpeedDial": {
|
|
64
|
-
"from": "labs/VSpeedDial/index.mjs",
|
|
65
|
-
"styles": []
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
}
|
package/dist/json/importMap.json
CHANGED
|
@@ -12,6 +12,14 @@
|
|
|
12
12
|
"from": "components/VAppBar/index.mjs",
|
|
13
13
|
"styles": []
|
|
14
14
|
},
|
|
15
|
+
"VAutocomplete": {
|
|
16
|
+
"from": "components/VAutocomplete/index.mjs",
|
|
17
|
+
"styles": []
|
|
18
|
+
},
|
|
19
|
+
"VAvatar": {
|
|
20
|
+
"from": "components/VAvatar/index.mjs",
|
|
21
|
+
"styles": []
|
|
22
|
+
},
|
|
15
23
|
"VAlert": {
|
|
16
24
|
"from": "components/VAlert/index.mjs",
|
|
17
25
|
"styles": []
|
|
@@ -20,16 +28,16 @@
|
|
|
20
28
|
"from": "components/VAlert/index.mjs",
|
|
21
29
|
"styles": []
|
|
22
30
|
},
|
|
23
|
-
"
|
|
24
|
-
"from": "components/
|
|
31
|
+
"VBadge": {
|
|
32
|
+
"from": "components/VBadge/index.mjs",
|
|
25
33
|
"styles": []
|
|
26
34
|
},
|
|
27
|
-
"
|
|
28
|
-
"from": "components/
|
|
35
|
+
"VBottomSheet": {
|
|
36
|
+
"from": "components/VBottomSheet/index.mjs",
|
|
29
37
|
"styles": []
|
|
30
38
|
},
|
|
31
|
-
"
|
|
32
|
-
"from": "components/
|
|
39
|
+
"VBottomNavigation": {
|
|
40
|
+
"from": "components/VBottomNavigation/index.mjs",
|
|
33
41
|
"styles": []
|
|
34
42
|
},
|
|
35
43
|
"VBanner": {
|
|
@@ -44,14 +52,6 @@
|
|
|
44
52
|
"from": "components/VBanner/index.mjs",
|
|
45
53
|
"styles": []
|
|
46
54
|
},
|
|
47
|
-
"VBottomNavigation": {
|
|
48
|
-
"from": "components/VBottomNavigation/index.mjs",
|
|
49
|
-
"styles": []
|
|
50
|
-
},
|
|
51
|
-
"VBottomSheet": {
|
|
52
|
-
"from": "components/VBottomSheet/index.mjs",
|
|
53
|
-
"styles": []
|
|
54
|
-
},
|
|
55
55
|
"VBreadcrumbs": {
|
|
56
56
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
57
57
|
"styles": []
|
|
@@ -64,14 +64,18 @@
|
|
|
64
64
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
65
65
|
"styles": []
|
|
66
66
|
},
|
|
67
|
-
"VBtnGroup": {
|
|
68
|
-
"from": "components/VBtnGroup/index.mjs",
|
|
69
|
-
"styles": []
|
|
70
|
-
},
|
|
71
67
|
"VBtn": {
|
|
72
68
|
"from": "components/VBtn/index.mjs",
|
|
73
69
|
"styles": []
|
|
74
70
|
},
|
|
71
|
+
"VBtnToggle": {
|
|
72
|
+
"from": "components/VBtnToggle/index.mjs",
|
|
73
|
+
"styles": []
|
|
74
|
+
},
|
|
75
|
+
"VBtnGroup": {
|
|
76
|
+
"from": "components/VBtnGroup/index.mjs",
|
|
77
|
+
"styles": []
|
|
78
|
+
},
|
|
75
79
|
"VCard": {
|
|
76
80
|
"from": "components/VCard/index.mjs",
|
|
77
81
|
"styles": []
|
|
@@ -96,10 +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
103
|
"VCheckbox": {
|
|
104
104
|
"from": "components/VCheckbox/index.mjs",
|
|
105
105
|
"styles": []
|
|
@@ -108,18 +108,6 @@
|
|
|
108
108
|
"from": "components/VCheckbox/index.mjs",
|
|
109
109
|
"styles": []
|
|
110
110
|
},
|
|
111
|
-
"VCarousel": {
|
|
112
|
-
"from": "components/VCarousel/index.mjs",
|
|
113
|
-
"styles": []
|
|
114
|
-
},
|
|
115
|
-
"VCarouselItem": {
|
|
116
|
-
"from": "components/VCarousel/index.mjs",
|
|
117
|
-
"styles": []
|
|
118
|
-
},
|
|
119
|
-
"VCode": {
|
|
120
|
-
"from": "components/VCode/index.mjs",
|
|
121
|
-
"styles": []
|
|
122
|
-
},
|
|
123
111
|
"VChip": {
|
|
124
112
|
"from": "components/VChip/index.mjs",
|
|
125
113
|
"styles": []
|
|
@@ -128,40 +116,24 @@
|
|
|
128
116
|
"from": "components/VChipGroup/index.mjs",
|
|
129
117
|
"styles": []
|
|
130
118
|
},
|
|
131
|
-
"
|
|
132
|
-
"from": "components/
|
|
133
|
-
"styles": []
|
|
134
|
-
},
|
|
135
|
-
"VCombobox": {
|
|
136
|
-
"from": "components/VCombobox/index.mjs",
|
|
137
|
-
"styles": []
|
|
138
|
-
},
|
|
139
|
-
"VDatePicker": {
|
|
140
|
-
"from": "components/VDatePicker/index.mjs",
|
|
141
|
-
"styles": []
|
|
142
|
-
},
|
|
143
|
-
"VDatePickerControls": {
|
|
144
|
-
"from": "components/VDatePicker/index.mjs",
|
|
145
|
-
"styles": []
|
|
146
|
-
},
|
|
147
|
-
"VDatePickerHeader": {
|
|
148
|
-
"from": "components/VDatePicker/index.mjs",
|
|
119
|
+
"VColorPicker": {
|
|
120
|
+
"from": "components/VColorPicker/index.mjs",
|
|
149
121
|
"styles": []
|
|
150
122
|
},
|
|
151
|
-
"
|
|
152
|
-
"from": "components/
|
|
123
|
+
"VCarousel": {
|
|
124
|
+
"from": "components/VCarousel/index.mjs",
|
|
153
125
|
"styles": []
|
|
154
126
|
},
|
|
155
|
-
"
|
|
156
|
-
"from": "components/
|
|
127
|
+
"VCarouselItem": {
|
|
128
|
+
"from": "components/VCarousel/index.mjs",
|
|
157
129
|
"styles": []
|
|
158
130
|
},
|
|
159
|
-
"
|
|
160
|
-
"from": "components/
|
|
131
|
+
"VCode": {
|
|
132
|
+
"from": "components/VCode/index.mjs",
|
|
161
133
|
"styles": []
|
|
162
134
|
},
|
|
163
|
-
"
|
|
164
|
-
"from": "components/
|
|
135
|
+
"VCounter": {
|
|
136
|
+
"from": "components/VCounter/index.mjs",
|
|
165
137
|
"styles": []
|
|
166
138
|
},
|
|
167
139
|
"VDataTable": {
|
|
@@ -192,14 +164,42 @@
|
|
|
192
164
|
"from": "components/VDataTable/index.mjs",
|
|
193
165
|
"styles": []
|
|
194
166
|
},
|
|
195
|
-
"
|
|
196
|
-
"from": "components/
|
|
167
|
+
"VCombobox": {
|
|
168
|
+
"from": "components/VCombobox/index.mjs",
|
|
169
|
+
"styles": []
|
|
170
|
+
},
|
|
171
|
+
"VDatePicker": {
|
|
172
|
+
"from": "components/VDatePicker/index.mjs",
|
|
173
|
+
"styles": []
|
|
174
|
+
},
|
|
175
|
+
"VDatePickerControls": {
|
|
176
|
+
"from": "components/VDatePicker/index.mjs",
|
|
177
|
+
"styles": []
|
|
178
|
+
},
|
|
179
|
+
"VDatePickerHeader": {
|
|
180
|
+
"from": "components/VDatePicker/index.mjs",
|
|
181
|
+
"styles": []
|
|
182
|
+
},
|
|
183
|
+
"VDatePickerMonth": {
|
|
184
|
+
"from": "components/VDatePicker/index.mjs",
|
|
185
|
+
"styles": []
|
|
186
|
+
},
|
|
187
|
+
"VDatePickerMonths": {
|
|
188
|
+
"from": "components/VDatePicker/index.mjs",
|
|
189
|
+
"styles": []
|
|
190
|
+
},
|
|
191
|
+
"VDatePickerYears": {
|
|
192
|
+
"from": "components/VDatePicker/index.mjs",
|
|
197
193
|
"styles": []
|
|
198
194
|
},
|
|
199
195
|
"VDivider": {
|
|
200
196
|
"from": "components/VDivider/index.mjs",
|
|
201
197
|
"styles": []
|
|
202
198
|
},
|
|
199
|
+
"VDialog": {
|
|
200
|
+
"from": "components/VDialog/index.mjs",
|
|
201
|
+
"styles": []
|
|
202
|
+
},
|
|
203
203
|
"VExpansionPanels": {
|
|
204
204
|
"from": "components/VExpansionPanel/index.mjs",
|
|
205
205
|
"styles": []
|
|
@@ -216,20 +216,28 @@
|
|
|
216
216
|
"from": "components/VExpansionPanel/index.mjs",
|
|
217
217
|
"styles": []
|
|
218
218
|
},
|
|
219
|
+
"VField": {
|
|
220
|
+
"from": "components/VField/index.mjs",
|
|
221
|
+
"styles": []
|
|
222
|
+
},
|
|
223
|
+
"VFieldLabel": {
|
|
224
|
+
"from": "components/VField/index.mjs",
|
|
225
|
+
"styles": []
|
|
226
|
+
},
|
|
219
227
|
"VFileInput": {
|
|
220
228
|
"from": "components/VFileInput/index.mjs",
|
|
221
229
|
"styles": []
|
|
222
230
|
},
|
|
223
|
-
"
|
|
224
|
-
"from": "components/
|
|
231
|
+
"VApp": {
|
|
232
|
+
"from": "components/VApp/index.mjs",
|
|
225
233
|
"styles": []
|
|
226
234
|
},
|
|
227
|
-
"
|
|
228
|
-
"from": "components/
|
|
235
|
+
"VFooter": {
|
|
236
|
+
"from": "components/VFooter/index.mjs",
|
|
229
237
|
"styles": []
|
|
230
238
|
},
|
|
231
|
-
"
|
|
232
|
-
"from": "components/
|
|
239
|
+
"VImg": {
|
|
240
|
+
"from": "components/VImg/index.mjs",
|
|
233
241
|
"styles": []
|
|
234
242
|
},
|
|
235
243
|
"VIcon": {
|
|
@@ -252,18 +260,14 @@
|
|
|
252
260
|
"from": "components/VIcon/index.mjs",
|
|
253
261
|
"styles": []
|
|
254
262
|
},
|
|
255
|
-
"
|
|
256
|
-
"from": "components/
|
|
263
|
+
"VInput": {
|
|
264
|
+
"from": "components/VInput/index.mjs",
|
|
257
265
|
"styles": []
|
|
258
266
|
},
|
|
259
267
|
"VInfiniteScroll": {
|
|
260
268
|
"from": "components/VInfiniteScroll/index.mjs",
|
|
261
269
|
"styles": []
|
|
262
270
|
},
|
|
263
|
-
"VInput": {
|
|
264
|
-
"from": "components/VInput/index.mjs",
|
|
265
|
-
"styles": []
|
|
266
|
-
},
|
|
267
271
|
"VItemGroup": {
|
|
268
272
|
"from": "components/VItemGroup/index.mjs",
|
|
269
273
|
"styles": []
|
|
@@ -272,10 +276,6 @@
|
|
|
272
276
|
"from": "components/VItemGroup/index.mjs",
|
|
273
277
|
"styles": []
|
|
274
278
|
},
|
|
275
|
-
"VLabel": {
|
|
276
|
-
"from": "components/VLabel/index.mjs",
|
|
277
|
-
"styles": []
|
|
278
|
-
},
|
|
279
279
|
"VKbd": {
|
|
280
280
|
"from": "components/VKbd/index.mjs",
|
|
281
281
|
"styles": []
|
|
@@ -320,14 +320,22 @@
|
|
|
320
320
|
"from": "components/VMain/index.mjs",
|
|
321
321
|
"styles": []
|
|
322
322
|
},
|
|
323
|
-
"
|
|
324
|
-
"from": "components/
|
|
323
|
+
"VLabel": {
|
|
324
|
+
"from": "components/VLabel/index.mjs",
|
|
325
325
|
"styles": []
|
|
326
326
|
},
|
|
327
327
|
"VMenu": {
|
|
328
328
|
"from": "components/VMenu/index.mjs",
|
|
329
329
|
"styles": []
|
|
330
330
|
},
|
|
331
|
+
"VMessages": {
|
|
332
|
+
"from": "components/VMessages/index.mjs",
|
|
333
|
+
"styles": []
|
|
334
|
+
},
|
|
335
|
+
"VOtpInput": {
|
|
336
|
+
"from": "components/VOtpInput/index.mjs",
|
|
337
|
+
"styles": []
|
|
338
|
+
},
|
|
331
339
|
"VNavigationDrawer": {
|
|
332
340
|
"from": "components/VNavigationDrawer/index.mjs",
|
|
333
341
|
"styles": []
|
|
@@ -336,10 +344,6 @@
|
|
|
336
344
|
"from": "components/VPagination/index.mjs",
|
|
337
345
|
"styles": []
|
|
338
346
|
},
|
|
339
|
-
"VOtpInput": {
|
|
340
|
-
"from": "components/VOtpInput/index.mjs",
|
|
341
|
-
"styles": []
|
|
342
|
-
},
|
|
343
347
|
"VOverlay": {
|
|
344
348
|
"from": "components/VOverlay/index.mjs",
|
|
345
349
|
"styles": []
|
|
@@ -348,18 +352,22 @@
|
|
|
348
352
|
"from": "components/VProgressCircular/index.mjs",
|
|
349
353
|
"styles": []
|
|
350
354
|
},
|
|
351
|
-
"VProgressLinear": {
|
|
352
|
-
"from": "components/VProgressLinear/index.mjs",
|
|
353
|
-
"styles": []
|
|
354
|
-
},
|
|
355
355
|
"VRadioGroup": {
|
|
356
356
|
"from": "components/VRadioGroup/index.mjs",
|
|
357
357
|
"styles": []
|
|
358
358
|
},
|
|
359
|
+
"VProgressLinear": {
|
|
360
|
+
"from": "components/VProgressLinear/index.mjs",
|
|
361
|
+
"styles": []
|
|
362
|
+
},
|
|
359
363
|
"VRating": {
|
|
360
364
|
"from": "components/VRating/index.mjs",
|
|
361
365
|
"styles": []
|
|
362
366
|
},
|
|
367
|
+
"VSelectionControl": {
|
|
368
|
+
"from": "components/VSelectionControl/index.mjs",
|
|
369
|
+
"styles": []
|
|
370
|
+
},
|
|
363
371
|
"VSelect": {
|
|
364
372
|
"from": "components/VSelect/index.mjs",
|
|
365
373
|
"styles": []
|
|
@@ -368,10 +376,6 @@
|
|
|
368
376
|
"from": "components/VSelectionControlGroup/index.mjs",
|
|
369
377
|
"styles": []
|
|
370
378
|
},
|
|
371
|
-
"VSelectionControl": {
|
|
372
|
-
"from": "components/VSelectionControl/index.mjs",
|
|
373
|
-
"styles": []
|
|
374
|
-
},
|
|
375
379
|
"VSheet": {
|
|
376
380
|
"from": "components/VSheet/index.mjs",
|
|
377
381
|
"styles": []
|
|
@@ -384,6 +388,10 @@
|
|
|
384
388
|
"from": "components/VSlideGroup/index.mjs",
|
|
385
389
|
"styles": []
|
|
386
390
|
},
|
|
391
|
+
"VSnackbar": {
|
|
392
|
+
"from": "components/VSnackbar/index.mjs",
|
|
393
|
+
"styles": []
|
|
394
|
+
},
|
|
387
395
|
"VSkeletonLoader": {
|
|
388
396
|
"from": "components/VSkeletonLoader/index.mjs",
|
|
389
397
|
"styles": []
|
|
@@ -420,14 +428,6 @@
|
|
|
420
428
|
"from": "components/VSwitch/index.mjs",
|
|
421
429
|
"styles": []
|
|
422
430
|
},
|
|
423
|
-
"VSnackbar": {
|
|
424
|
-
"from": "components/VSnackbar/index.mjs",
|
|
425
|
-
"styles": []
|
|
426
|
-
},
|
|
427
|
-
"VSystemBar": {
|
|
428
|
-
"from": "components/VSystemBar/index.mjs",
|
|
429
|
-
"styles": []
|
|
430
|
-
},
|
|
431
431
|
"VTabs": {
|
|
432
432
|
"from": "components/VTabs/index.mjs",
|
|
433
433
|
"styles": []
|
|
@@ -436,14 +436,18 @@
|
|
|
436
436
|
"from": "components/VTabs/index.mjs",
|
|
437
437
|
"styles": []
|
|
438
438
|
},
|
|
439
|
-
"
|
|
440
|
-
"from": "components/
|
|
439
|
+
"VSystemBar": {
|
|
440
|
+
"from": "components/VSystemBar/index.mjs",
|
|
441
441
|
"styles": []
|
|
442
442
|
},
|
|
443
443
|
"VTextarea": {
|
|
444
444
|
"from": "components/VTextarea/index.mjs",
|
|
445
445
|
"styles": []
|
|
446
446
|
},
|
|
447
|
+
"VTable": {
|
|
448
|
+
"from": "components/VTable/index.mjs",
|
|
449
|
+
"styles": []
|
|
450
|
+
},
|
|
447
451
|
"VTextField": {
|
|
448
452
|
"from": "components/VTextField/index.mjs",
|
|
449
453
|
"styles": []
|
|
@@ -456,18 +460,6 @@
|
|
|
456
460
|
"from": "components/VTimeline/index.mjs",
|
|
457
461
|
"styles": []
|
|
458
462
|
},
|
|
459
|
-
"VTooltip": {
|
|
460
|
-
"from": "components/VTooltip/index.mjs",
|
|
461
|
-
"styles": []
|
|
462
|
-
},
|
|
463
|
-
"VWindow": {
|
|
464
|
-
"from": "components/VWindow/index.mjs",
|
|
465
|
-
"styles": []
|
|
466
|
-
},
|
|
467
|
-
"VWindowItem": {
|
|
468
|
-
"from": "components/VWindow/index.mjs",
|
|
469
|
-
"styles": []
|
|
470
|
-
},
|
|
471
463
|
"VToolbar": {
|
|
472
464
|
"from": "components/VToolbar/index.mjs",
|
|
473
465
|
"styles": []
|
|
@@ -480,6 +472,18 @@
|
|
|
480
472
|
"from": "components/VToolbar/index.mjs",
|
|
481
473
|
"styles": []
|
|
482
474
|
},
|
|
475
|
+
"VTooltip": {
|
|
476
|
+
"from": "components/VTooltip/index.mjs",
|
|
477
|
+
"styles": []
|
|
478
|
+
},
|
|
479
|
+
"VWindow": {
|
|
480
|
+
"from": "components/VWindow/index.mjs",
|
|
481
|
+
"styles": []
|
|
482
|
+
},
|
|
483
|
+
"VWindowItem": {
|
|
484
|
+
"from": "components/VWindow/index.mjs",
|
|
485
|
+
"styles": []
|
|
486
|
+
},
|
|
483
487
|
"VDataIterator": {
|
|
484
488
|
"from": "components/VDataIterator/index.mjs",
|
|
485
489
|
"styles": []
|
|
@@ -492,6 +496,10 @@
|
|
|
492
496
|
"from": "components/VForm/index.mjs",
|
|
493
497
|
"styles": []
|
|
494
498
|
},
|
|
499
|
+
"VHover": {
|
|
500
|
+
"from": "components/VHover/index.mjs",
|
|
501
|
+
"styles": []
|
|
502
|
+
},
|
|
495
503
|
"VContainer": {
|
|
496
504
|
"from": "components/VGrid/index.mjs",
|
|
497
505
|
"styles": []
|
|
@@ -508,10 +516,6 @@
|
|
|
508
516
|
"from": "components/VGrid/index.mjs",
|
|
509
517
|
"styles": []
|
|
510
518
|
},
|
|
511
|
-
"VHover": {
|
|
512
|
-
"from": "components/VHover/index.mjs",
|
|
513
|
-
"styles": []
|
|
514
|
-
},
|
|
515
519
|
"VLayout": {
|
|
516
520
|
"from": "components/VLayout/index.mjs",
|
|
517
521
|
"styles": []
|
|
@@ -528,14 +532,14 @@
|
|
|
528
532
|
"from": "components/VLocaleProvider/index.mjs",
|
|
529
533
|
"styles": []
|
|
530
534
|
},
|
|
531
|
-
"VNoSsr": {
|
|
532
|
-
"from": "components/VNoSsr/index.mjs",
|
|
533
|
-
"styles": []
|
|
534
|
-
},
|
|
535
535
|
"VParallax": {
|
|
536
536
|
"from": "components/VParallax/index.mjs",
|
|
537
537
|
"styles": []
|
|
538
538
|
},
|
|
539
|
+
"VNoSsr": {
|
|
540
|
+
"from": "components/VNoSsr/index.mjs",
|
|
541
|
+
"styles": []
|
|
542
|
+
},
|
|
539
543
|
"VRadio": {
|
|
540
544
|
"from": "components/VRadio/index.mjs",
|
|
541
545
|
"styles": []
|
|
@@ -623,10 +627,6 @@
|
|
|
623
627
|
"VDialogTransition": {
|
|
624
628
|
"from": "components/transitions/index.mjs",
|
|
625
629
|
"styles": []
|
|
626
|
-
},
|
|
627
|
-
"VApp": {
|
|
628
|
-
"from": "components/VApp/index.mjs",
|
|
629
|
-
"styles": []
|
|
630
630
|
}
|
|
631
631
|
},
|
|
632
632
|
"directives": [
|
package/dist/json/tags.json
CHANGED
|
@@ -2091,8 +2091,14 @@
|
|
|
2091
2091
|
},
|
|
2092
2092
|
"VMain": {
|
|
2093
2093
|
"attributes": [
|
|
2094
|
+
"height",
|
|
2095
|
+
"max-height",
|
|
2096
|
+
"max-width",
|
|
2097
|
+
"min-height",
|
|
2098
|
+
"min-width",
|
|
2094
2099
|
"scrollable",
|
|
2095
|
-
"tag"
|
|
2100
|
+
"tag",
|
|
2101
|
+
"width"
|
|
2096
2102
|
],
|
|
2097
2103
|
"description": ""
|
|
2098
2104
|
},
|
|
@@ -3370,11 +3376,16 @@
|
|
|
3370
3376
|
"align",
|
|
3371
3377
|
"density",
|
|
3372
3378
|
"direction",
|
|
3379
|
+
"dot-color",
|
|
3380
|
+
"fill-dot",
|
|
3381
|
+
"hide-opposite",
|
|
3382
|
+
"icon-color",
|
|
3373
3383
|
"justify",
|
|
3374
3384
|
"line-color",
|
|
3375
3385
|
"line-inset",
|
|
3376
3386
|
"line-thickness",
|
|
3377
3387
|
"side",
|
|
3388
|
+
"size",
|
|
3378
3389
|
"tag",
|
|
3379
3390
|
"theme",
|
|
3380
3391
|
"truncate-line"
|