vuetify 3.6.8 → 3.6.9
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 +4 -4
- package/dist/json/importMap-labs.json +22 -22
- package/dist/json/importMap.json +140 -140
- package/dist/json/web-types.json +12 -13
- package/dist/vuetify-labs.css +2770 -2769
- package/dist/vuetify-labs.d.ts +187 -189
- package/dist/vuetify-labs.esm.js +57 -46
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +57 -46
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2752 -2751
- package/dist/vuetify.d.ts +231 -239
- package/dist/vuetify.esm.js +45 -39
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +45 -39
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +40 -36
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +58 -56
- package/lib/blueprints/md1.d.mts +58 -56
- package/lib/blueprints/md2.d.mts +58 -56
- package/lib/blueprints/md3.d.mts +58 -56
- package/lib/components/VAutocomplete/VAutocomplete.mjs +17 -14
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBanner/VBanner.css +1 -0
- package/lib/components/VBanner/VBanner.sass +1 -0
- package/lib/components/VBanner/_variables.scss +1 -0
- package/lib/components/VCombobox/VCombobox.mjs +7 -11
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VEmptyState/VEmptyState.css +2 -2
- package/lib/components/VEmptyState/VEmptyState.mjs +1 -1
- package/lib/components/VEmptyState/VEmptyState.mjs.map +1 -1
- package/lib/components/VEmptyState/_variables.scss +2 -2
- package/lib/components/VFab/VFab.mjs +4 -7
- package/lib/components/VFab/VFab.mjs.map +1 -1
- package/lib/components/VFab/index.d.mts +46 -49
- package/lib/components/VList/VList.mjs +1 -0
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +2 -0
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +4 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -45
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/scroll.mjs +6 -0
- package/lib/composables/scroll.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +159 -160
- package/lib/labs/VNumberInput/VNumberInput.mjs +0 -1
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VStepperVertical/index.d.mts +3 -3
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +3 -1
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +7 -2
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs +3 -4
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +6 -0
- package/lib/labs/components.d.mts +6 -0
- package/package.json +2 -2
|
@@ -5423,10 +5423,6 @@
|
|
|
5423
5423
|
"type": "boolean\n",
|
|
5424
5424
|
"description": "If true, will effect layout dimensions based on size and position."
|
|
5425
5425
|
},
|
|
5426
|
-
"VFab/location": {
|
|
5427
|
-
"type": "'start' | 'end' | 'left' | 'right' | 'top' | 'bottom'\n",
|
|
5428
|
-
"description": "The location of the fab relative to the layout. Only works when using **app**."
|
|
5429
|
-
},
|
|
5430
5426
|
"VFab/offset": {
|
|
5431
5427
|
"type": "boolean\n",
|
|
5432
5428
|
"description": "Translates the Fab up or down, depending on if location is set to **top** or **bottom**."
|
|
@@ -5527,6 +5523,10 @@
|
|
|
5527
5523
|
"type": "string | boolean\n",
|
|
5528
5524
|
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color."
|
|
5529
5525
|
},
|
|
5526
|
+
"VFab/location": {
|
|
5527
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
|
|
5528
|
+
"description": "The location of the fab relative to the layout. Only works when using **app**."
|
|
5529
|
+
},
|
|
5530
5530
|
"VFab/position": {
|
|
5531
5531
|
"type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
|
|
5532
5532
|
"description": "Sets the position for the component."
|
|
@@ -24,26 +24,6 @@
|
|
|
24
24
|
"from": "labs/VCalendar/index.mjs",
|
|
25
25
|
"styles": []
|
|
26
26
|
},
|
|
27
|
-
"VStepperVertical": {
|
|
28
|
-
"from": "labs/VStepperVertical/index.mjs",
|
|
29
|
-
"styles": []
|
|
30
|
-
},
|
|
31
|
-
"VStepperVerticalItem": {
|
|
32
|
-
"from": "labs/VStepperVertical/index.mjs",
|
|
33
|
-
"styles": []
|
|
34
|
-
},
|
|
35
|
-
"VStepperVerticalActions": {
|
|
36
|
-
"from": "labs/VStepperVertical/index.mjs",
|
|
37
|
-
"styles": []
|
|
38
|
-
},
|
|
39
|
-
"VPicker": {
|
|
40
|
-
"from": "labs/VPicker/index.mjs",
|
|
41
|
-
"styles": []
|
|
42
|
-
},
|
|
43
|
-
"VPickerTitle": {
|
|
44
|
-
"from": "labs/VPicker/index.mjs",
|
|
45
|
-
"styles": []
|
|
46
|
-
},
|
|
47
27
|
"VNumberInput": {
|
|
48
28
|
"from": "labs/VNumberInput/index.mjs",
|
|
49
29
|
"styles": []
|
|
@@ -60,6 +40,14 @@
|
|
|
60
40
|
"from": "labs/VTimePicker/index.mjs",
|
|
61
41
|
"styles": []
|
|
62
42
|
},
|
|
43
|
+
"VPicker": {
|
|
44
|
+
"from": "labs/VPicker/index.mjs",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
47
|
+
"VPickerTitle": {
|
|
48
|
+
"from": "labs/VPicker/index.mjs",
|
|
49
|
+
"styles": []
|
|
50
|
+
},
|
|
63
51
|
"VTreeview": {
|
|
64
52
|
"from": "labs/VTreeview/index.mjs",
|
|
65
53
|
"styles": []
|
|
@@ -72,14 +60,26 @@
|
|
|
72
60
|
"from": "labs/VTreeview/index.mjs",
|
|
73
61
|
"styles": []
|
|
74
62
|
},
|
|
75
|
-
"
|
|
76
|
-
"from": "labs/
|
|
63
|
+
"VStepperVertical": {
|
|
64
|
+
"from": "labs/VStepperVertical/index.mjs",
|
|
65
|
+
"styles": []
|
|
66
|
+
},
|
|
67
|
+
"VStepperVerticalItem": {
|
|
68
|
+
"from": "labs/VStepperVertical/index.mjs",
|
|
69
|
+
"styles": []
|
|
70
|
+
},
|
|
71
|
+
"VStepperVerticalActions": {
|
|
72
|
+
"from": "labs/VStepperVertical/index.mjs",
|
|
77
73
|
"styles": []
|
|
78
74
|
},
|
|
79
75
|
"VDateInput": {
|
|
80
76
|
"from": "labs/VDateInput/index.mjs",
|
|
81
77
|
"styles": []
|
|
82
78
|
},
|
|
79
|
+
"VSnackbarQueue": {
|
|
80
|
+
"from": "labs/VSnackbarQueue/index.mjs",
|
|
81
|
+
"styles": []
|
|
82
|
+
},
|
|
83
83
|
"VPullToRefresh": {
|
|
84
84
|
"from": "labs/VPullToRefresh/index.mjs",
|
|
85
85
|
"styles": []
|
package/dist/json/importMap.json
CHANGED
|
@@ -4,18 +4,6 @@
|
|
|
4
4
|
"from": "components/VApp/index.mjs",
|
|
5
5
|
"styles": []
|
|
6
6
|
},
|
|
7
|
-
"VAvatar": {
|
|
8
|
-
"from": "components/VAvatar/index.mjs",
|
|
9
|
-
"styles": []
|
|
10
|
-
},
|
|
11
|
-
"VAlert": {
|
|
12
|
-
"from": "components/VAlert/index.mjs",
|
|
13
|
-
"styles": []
|
|
14
|
-
},
|
|
15
|
-
"VAlertTitle": {
|
|
16
|
-
"from": "components/VAlert/index.mjs",
|
|
17
|
-
"styles": []
|
|
18
|
-
},
|
|
19
7
|
"VAppBar": {
|
|
20
8
|
"from": "components/VAppBar/index.mjs",
|
|
21
9
|
"styles": []
|
|
@@ -28,32 +16,48 @@
|
|
|
28
16
|
"from": "components/VAppBar/index.mjs",
|
|
29
17
|
"styles": []
|
|
30
18
|
},
|
|
31
|
-
"
|
|
32
|
-
"from": "components/
|
|
19
|
+
"VAlert": {
|
|
20
|
+
"from": "components/VAlert/index.mjs",
|
|
33
21
|
"styles": []
|
|
34
22
|
},
|
|
35
|
-
"
|
|
36
|
-
"from": "components/
|
|
23
|
+
"VAlertTitle": {
|
|
24
|
+
"from": "components/VAlert/index.mjs",
|
|
37
25
|
"styles": []
|
|
38
26
|
},
|
|
39
|
-
"
|
|
40
|
-
"from": "components/
|
|
27
|
+
"VAutocomplete": {
|
|
28
|
+
"from": "components/VAutocomplete/index.mjs",
|
|
29
|
+
"styles": []
|
|
30
|
+
},
|
|
31
|
+
"VAvatar": {
|
|
32
|
+
"from": "components/VAvatar/index.mjs",
|
|
41
33
|
"styles": []
|
|
42
34
|
},
|
|
43
35
|
"VBadge": {
|
|
44
36
|
"from": "components/VBadge/index.mjs",
|
|
45
37
|
"styles": []
|
|
46
38
|
},
|
|
39
|
+
"VBottomNavigation": {
|
|
40
|
+
"from": "components/VBottomNavigation/index.mjs",
|
|
41
|
+
"styles": []
|
|
42
|
+
},
|
|
43
|
+
"VBtn": {
|
|
44
|
+
"from": "components/VBtn/index.mjs",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
47
47
|
"VBottomSheet": {
|
|
48
48
|
"from": "components/VBottomSheet/index.mjs",
|
|
49
49
|
"styles": []
|
|
50
50
|
},
|
|
51
|
-
"
|
|
52
|
-
"from": "components/
|
|
51
|
+
"VBanner": {
|
|
52
|
+
"from": "components/VBanner/index.mjs",
|
|
53
53
|
"styles": []
|
|
54
54
|
},
|
|
55
|
-
"
|
|
56
|
-
"from": "components/
|
|
55
|
+
"VBannerActions": {
|
|
56
|
+
"from": "components/VBanner/index.mjs",
|
|
57
|
+
"styles": []
|
|
58
|
+
},
|
|
59
|
+
"VBannerText": {
|
|
60
|
+
"from": "components/VBanner/index.mjs",
|
|
57
61
|
"styles": []
|
|
58
62
|
},
|
|
59
63
|
"VBreadcrumbs": {
|
|
@@ -68,12 +72,8 @@
|
|
|
68
72
|
"from": "components/VBreadcrumbs/index.mjs",
|
|
69
73
|
"styles": []
|
|
70
74
|
},
|
|
71
|
-
"
|
|
72
|
-
"from": "components/
|
|
73
|
-
"styles": []
|
|
74
|
-
},
|
|
75
|
-
"VBtn": {
|
|
76
|
-
"from": "components/VBtn/index.mjs",
|
|
75
|
+
"VBtnGroup": {
|
|
76
|
+
"from": "components/VBtnGroup/index.mjs",
|
|
77
77
|
"styles": []
|
|
78
78
|
},
|
|
79
79
|
"VCarousel": {
|
|
@@ -84,6 +84,18 @@
|
|
|
84
84
|
"from": "components/VCarousel/index.mjs",
|
|
85
85
|
"styles": []
|
|
86
86
|
},
|
|
87
|
+
"VCheckbox": {
|
|
88
|
+
"from": "components/VCheckbox/index.mjs",
|
|
89
|
+
"styles": []
|
|
90
|
+
},
|
|
91
|
+
"VCheckboxBtn": {
|
|
92
|
+
"from": "components/VCheckbox/index.mjs",
|
|
93
|
+
"styles": []
|
|
94
|
+
},
|
|
95
|
+
"VChip": {
|
|
96
|
+
"from": "components/VChip/index.mjs",
|
|
97
|
+
"styles": []
|
|
98
|
+
},
|
|
87
99
|
"VCard": {
|
|
88
100
|
"from": "components/VCard/index.mjs",
|
|
89
101
|
"styles": []
|
|
@@ -108,40 +120,52 @@
|
|
|
108
120
|
"from": "components/VCard/index.mjs",
|
|
109
121
|
"styles": []
|
|
110
122
|
},
|
|
123
|
+
"VChipGroup": {
|
|
124
|
+
"from": "components/VChipGroup/index.mjs",
|
|
125
|
+
"styles": []
|
|
126
|
+
},
|
|
111
127
|
"VBtnToggle": {
|
|
112
128
|
"from": "components/VBtnToggle/index.mjs",
|
|
113
129
|
"styles": []
|
|
114
130
|
},
|
|
115
|
-
"
|
|
116
|
-
"from": "components/
|
|
131
|
+
"VDataTable": {
|
|
132
|
+
"from": "components/VDataTable/index.mjs",
|
|
117
133
|
"styles": []
|
|
118
134
|
},
|
|
119
|
-
"
|
|
120
|
-
"from": "components/
|
|
135
|
+
"VDataTableHeaders": {
|
|
136
|
+
"from": "components/VDataTable/index.mjs",
|
|
121
137
|
"styles": []
|
|
122
138
|
},
|
|
123
|
-
"
|
|
124
|
-
"from": "components/
|
|
139
|
+
"VDataTableFooter": {
|
|
140
|
+
"from": "components/VDataTable/index.mjs",
|
|
125
141
|
"styles": []
|
|
126
142
|
},
|
|
127
|
-
"
|
|
128
|
-
"from": "components/
|
|
143
|
+
"VDataTableRows": {
|
|
144
|
+
"from": "components/VDataTable/index.mjs",
|
|
129
145
|
"styles": []
|
|
130
146
|
},
|
|
131
|
-
"
|
|
132
|
-
"from": "components/
|
|
147
|
+
"VDataTableRow": {
|
|
148
|
+
"from": "components/VDataTable/index.mjs",
|
|
133
149
|
"styles": []
|
|
134
150
|
},
|
|
135
|
-
"
|
|
136
|
-
"from": "components/
|
|
151
|
+
"VDataTableVirtual": {
|
|
152
|
+
"from": "components/VDataTable/index.mjs",
|
|
153
|
+
"styles": []
|
|
154
|
+
},
|
|
155
|
+
"VDataTableServer": {
|
|
156
|
+
"from": "components/VDataTable/index.mjs",
|
|
137
157
|
"styles": []
|
|
138
158
|
},
|
|
139
159
|
"VCode": {
|
|
140
160
|
"from": "components/VCode/index.mjs",
|
|
141
161
|
"styles": []
|
|
142
162
|
},
|
|
143
|
-
"
|
|
144
|
-
"from": "components/
|
|
163
|
+
"VColorPicker": {
|
|
164
|
+
"from": "components/VColorPicker/index.mjs",
|
|
165
|
+
"styles": []
|
|
166
|
+
},
|
|
167
|
+
"VCombobox": {
|
|
168
|
+
"from": "components/VCombobox/index.mjs",
|
|
145
169
|
"styles": []
|
|
146
170
|
},
|
|
147
171
|
"VCounter": {
|
|
@@ -172,32 +196,8 @@
|
|
|
172
196
|
"from": "components/VDatePicker/index.mjs",
|
|
173
197
|
"styles": []
|
|
174
198
|
},
|
|
175
|
-
"
|
|
176
|
-
"from": "components/
|
|
177
|
-
"styles": []
|
|
178
|
-
},
|
|
179
|
-
"VDataTableHeaders": {
|
|
180
|
-
"from": "components/VDataTable/index.mjs",
|
|
181
|
-
"styles": []
|
|
182
|
-
},
|
|
183
|
-
"VDataTableFooter": {
|
|
184
|
-
"from": "components/VDataTable/index.mjs",
|
|
185
|
-
"styles": []
|
|
186
|
-
},
|
|
187
|
-
"VDataTableRows": {
|
|
188
|
-
"from": "components/VDataTable/index.mjs",
|
|
189
|
-
"styles": []
|
|
190
|
-
},
|
|
191
|
-
"VDataTableRow": {
|
|
192
|
-
"from": "components/VDataTable/index.mjs",
|
|
193
|
-
"styles": []
|
|
194
|
-
},
|
|
195
|
-
"VDataTableVirtual": {
|
|
196
|
-
"from": "components/VDataTable/index.mjs",
|
|
197
|
-
"styles": []
|
|
198
|
-
},
|
|
199
|
-
"VDataTableServer": {
|
|
200
|
-
"from": "components/VDataTable/index.mjs",
|
|
199
|
+
"VEmptyState": {
|
|
200
|
+
"from": "components/VEmptyState/index.mjs",
|
|
201
201
|
"styles": []
|
|
202
202
|
},
|
|
203
203
|
"VExpansionPanels": {
|
|
@@ -216,36 +216,36 @@
|
|
|
216
216
|
"from": "components/VExpansionPanel/index.mjs",
|
|
217
217
|
"styles": []
|
|
218
218
|
},
|
|
219
|
-
"
|
|
220
|
-
"from": "components/
|
|
219
|
+
"VDialog": {
|
|
220
|
+
"from": "components/VDialog/index.mjs",
|
|
221
221
|
"styles": []
|
|
222
222
|
},
|
|
223
|
-
"
|
|
224
|
-
"from": "components/
|
|
223
|
+
"VField": {
|
|
224
|
+
"from": "components/VField/index.mjs",
|
|
225
225
|
"styles": []
|
|
226
226
|
},
|
|
227
|
-
"
|
|
228
|
-
"from": "components/
|
|
227
|
+
"VFieldLabel": {
|
|
228
|
+
"from": "components/VField/index.mjs",
|
|
229
229
|
"styles": []
|
|
230
230
|
},
|
|
231
|
-
"
|
|
232
|
-
"from": "components/
|
|
231
|
+
"VDivider": {
|
|
232
|
+
"from": "components/VDivider/index.mjs",
|
|
233
233
|
"styles": []
|
|
234
234
|
},
|
|
235
|
-
"
|
|
236
|
-
"from": "components/
|
|
235
|
+
"VFab": {
|
|
236
|
+
"from": "components/VFab/index.mjs",
|
|
237
237
|
"styles": []
|
|
238
238
|
},
|
|
239
|
-
"
|
|
240
|
-
"from": "components/
|
|
239
|
+
"VFileInput": {
|
|
240
|
+
"from": "components/VFileInput/index.mjs",
|
|
241
241
|
"styles": []
|
|
242
242
|
},
|
|
243
|
-
"
|
|
244
|
-
"from": "components/
|
|
243
|
+
"VInfiniteScroll": {
|
|
244
|
+
"from": "components/VInfiniteScroll/index.mjs",
|
|
245
245
|
"styles": []
|
|
246
246
|
},
|
|
247
|
-
"
|
|
248
|
-
"from": "components/
|
|
247
|
+
"VFooter": {
|
|
248
|
+
"from": "components/VFooter/index.mjs",
|
|
249
249
|
"styles": []
|
|
250
250
|
},
|
|
251
251
|
"VIcon": {
|
|
@@ -268,10 +268,6 @@
|
|
|
268
268
|
"from": "components/VIcon/index.mjs",
|
|
269
269
|
"styles": []
|
|
270
270
|
},
|
|
271
|
-
"VInfiniteScroll": {
|
|
272
|
-
"from": "components/VInfiniteScroll/index.mjs",
|
|
273
|
-
"styles": []
|
|
274
|
-
},
|
|
275
271
|
"VItemGroup": {
|
|
276
272
|
"from": "components/VItemGroup/index.mjs",
|
|
277
273
|
"styles": []
|
|
@@ -280,18 +276,18 @@
|
|
|
280
276
|
"from": "components/VItemGroup/index.mjs",
|
|
281
277
|
"styles": []
|
|
282
278
|
},
|
|
283
|
-
"
|
|
284
|
-
"from": "components/
|
|
285
|
-
"styles": []
|
|
286
|
-
},
|
|
287
|
-
"VInput": {
|
|
288
|
-
"from": "components/VInput/index.mjs",
|
|
279
|
+
"VImg": {
|
|
280
|
+
"from": "components/VImg/index.mjs",
|
|
289
281
|
"styles": []
|
|
290
282
|
},
|
|
291
283
|
"VKbd": {
|
|
292
284
|
"from": "components/VKbd/index.mjs",
|
|
293
285
|
"styles": []
|
|
294
286
|
},
|
|
287
|
+
"VInput": {
|
|
288
|
+
"from": "components/VInput/index.mjs",
|
|
289
|
+
"styles": []
|
|
290
|
+
},
|
|
295
291
|
"VList": {
|
|
296
292
|
"from": "components/VList/index.mjs",
|
|
297
293
|
"styles": []
|
|
@@ -328,6 +324,10 @@
|
|
|
328
324
|
"from": "components/VList/index.mjs",
|
|
329
325
|
"styles": []
|
|
330
326
|
},
|
|
327
|
+
"VLabel": {
|
|
328
|
+
"from": "components/VLabel/index.mjs",
|
|
329
|
+
"styles": []
|
|
330
|
+
},
|
|
331
331
|
"VMain": {
|
|
332
332
|
"from": "components/VMain/index.mjs",
|
|
333
333
|
"styles": []
|
|
@@ -336,52 +336,40 @@
|
|
|
336
336
|
"from": "components/VMenu/index.mjs",
|
|
337
337
|
"styles": []
|
|
338
338
|
},
|
|
339
|
-
"VMessages": {
|
|
340
|
-
"from": "components/VMessages/index.mjs",
|
|
341
|
-
"styles": []
|
|
342
|
-
},
|
|
343
339
|
"VNavigationDrawer": {
|
|
344
340
|
"from": "components/VNavigationDrawer/index.mjs",
|
|
345
341
|
"styles": []
|
|
346
342
|
},
|
|
347
|
-
"
|
|
348
|
-
"from": "components/
|
|
343
|
+
"VMessages": {
|
|
344
|
+
"from": "components/VMessages/index.mjs",
|
|
349
345
|
"styles": []
|
|
350
346
|
},
|
|
351
|
-
"
|
|
352
|
-
"from": "components/
|
|
347
|
+
"VOverlay": {
|
|
348
|
+
"from": "components/VOverlay/index.mjs",
|
|
353
349
|
"styles": []
|
|
354
350
|
},
|
|
355
|
-
"
|
|
356
|
-
"from": "components/
|
|
351
|
+
"VPagination": {
|
|
352
|
+
"from": "components/VPagination/index.mjs",
|
|
357
353
|
"styles": []
|
|
358
354
|
},
|
|
359
355
|
"VProgressCircular": {
|
|
360
356
|
"from": "components/VProgressCircular/index.mjs",
|
|
361
357
|
"styles": []
|
|
362
358
|
},
|
|
363
|
-
"
|
|
364
|
-
"from": "components/
|
|
365
|
-
"styles": []
|
|
366
|
-
},
|
|
367
|
-
"VOverlay": {
|
|
368
|
-
"from": "components/VOverlay/index.mjs",
|
|
369
|
-
"styles": []
|
|
370
|
-
},
|
|
371
|
-
"VRating": {
|
|
372
|
-
"from": "components/VRating/index.mjs",
|
|
359
|
+
"VOtpInput": {
|
|
360
|
+
"from": "components/VOtpInput/index.mjs",
|
|
373
361
|
"styles": []
|
|
374
362
|
},
|
|
375
|
-
"
|
|
376
|
-
"from": "components/
|
|
363
|
+
"VProgressLinear": {
|
|
364
|
+
"from": "components/VProgressLinear/index.mjs",
|
|
377
365
|
"styles": []
|
|
378
366
|
},
|
|
379
|
-
"
|
|
380
|
-
"from": "components/
|
|
367
|
+
"VRadioGroup": {
|
|
368
|
+
"from": "components/VRadioGroup/index.mjs",
|
|
381
369
|
"styles": []
|
|
382
370
|
},
|
|
383
|
-
"
|
|
384
|
-
"from": "components/
|
|
371
|
+
"VRating": {
|
|
372
|
+
"from": "components/VRating/index.mjs",
|
|
385
373
|
"styles": []
|
|
386
374
|
},
|
|
387
375
|
"VSelectionControl": {
|
|
@@ -392,22 +380,34 @@
|
|
|
392
380
|
"from": "components/VSelect/index.mjs",
|
|
393
381
|
"styles": []
|
|
394
382
|
},
|
|
395
|
-
"
|
|
396
|
-
"from": "components/
|
|
383
|
+
"VSelectionControlGroup": {
|
|
384
|
+
"from": "components/VSelectionControlGroup/index.mjs",
|
|
397
385
|
"styles": []
|
|
398
386
|
},
|
|
399
|
-
"
|
|
400
|
-
"from": "components/
|
|
387
|
+
"VSheet": {
|
|
388
|
+
"from": "components/VSheet/index.mjs",
|
|
401
389
|
"styles": []
|
|
402
390
|
},
|
|
403
391
|
"VSkeletonLoader": {
|
|
404
392
|
"from": "components/VSkeletonLoader/index.mjs",
|
|
405
393
|
"styles": []
|
|
406
394
|
},
|
|
395
|
+
"VSlider": {
|
|
396
|
+
"from": "components/VSlider/index.mjs",
|
|
397
|
+
"styles": []
|
|
398
|
+
},
|
|
407
399
|
"VSnackbar": {
|
|
408
400
|
"from": "components/VSnackbar/index.mjs",
|
|
409
401
|
"styles": []
|
|
410
402
|
},
|
|
403
|
+
"VSlideGroup": {
|
|
404
|
+
"from": "components/VSlideGroup/index.mjs",
|
|
405
|
+
"styles": []
|
|
406
|
+
},
|
|
407
|
+
"VSlideGroupItem": {
|
|
408
|
+
"from": "components/VSlideGroup/index.mjs",
|
|
409
|
+
"styles": []
|
|
410
|
+
},
|
|
411
411
|
"VStepper": {
|
|
412
412
|
"from": "components/VStepper/index.mjs",
|
|
413
413
|
"styles": []
|
|
@@ -460,14 +460,6 @@
|
|
|
460
460
|
"from": "components/VSystemBar/index.mjs",
|
|
461
461
|
"styles": []
|
|
462
462
|
},
|
|
463
|
-
"VTextarea": {
|
|
464
|
-
"from": "components/VTextarea/index.mjs",
|
|
465
|
-
"styles": []
|
|
466
|
-
},
|
|
467
|
-
"VTable": {
|
|
468
|
-
"from": "components/VTable/index.mjs",
|
|
469
|
-
"styles": []
|
|
470
|
-
},
|
|
471
463
|
"VToolbar": {
|
|
472
464
|
"from": "components/VToolbar/index.mjs",
|
|
473
465
|
"styles": []
|
|
@@ -480,12 +472,12 @@
|
|
|
480
472
|
"from": "components/VToolbar/index.mjs",
|
|
481
473
|
"styles": []
|
|
482
474
|
},
|
|
483
|
-
"
|
|
484
|
-
"from": "components/
|
|
475
|
+
"VTextarea": {
|
|
476
|
+
"from": "components/VTextarea/index.mjs",
|
|
485
477
|
"styles": []
|
|
486
478
|
},
|
|
487
|
-
"
|
|
488
|
-
"from": "components/
|
|
479
|
+
"VTable": {
|
|
480
|
+
"from": "components/VTable/index.mjs",
|
|
489
481
|
"styles": []
|
|
490
482
|
},
|
|
491
483
|
"VTooltip": {
|
|
@@ -500,6 +492,14 @@
|
|
|
500
492
|
"from": "components/VWindow/index.mjs",
|
|
501
493
|
"styles": []
|
|
502
494
|
},
|
|
495
|
+
"VTimeline": {
|
|
496
|
+
"from": "components/VTimeline/index.mjs",
|
|
497
|
+
"styles": []
|
|
498
|
+
},
|
|
499
|
+
"VTimelineItem": {
|
|
500
|
+
"from": "components/VTimeline/index.mjs",
|
|
501
|
+
"styles": []
|
|
502
|
+
},
|
|
503
503
|
"VConfirmEdit": {
|
|
504
504
|
"from": "components/VConfirmEdit/index.mjs",
|
|
505
505
|
"styles": []
|
|
@@ -588,6 +588,10 @@
|
|
|
588
588
|
"from": "components/VValidation/index.mjs",
|
|
589
589
|
"styles": []
|
|
590
590
|
},
|
|
591
|
+
"VVirtualScroll": {
|
|
592
|
+
"from": "components/VVirtualScroll/index.mjs",
|
|
593
|
+
"styles": []
|
|
594
|
+
},
|
|
591
595
|
"VFabTransition": {
|
|
592
596
|
"from": "components/transitions/index.mjs",
|
|
593
597
|
"styles": []
|
|
@@ -651,10 +655,6 @@
|
|
|
651
655
|
"VDialogTransition": {
|
|
652
656
|
"from": "components/transitions/index.mjs",
|
|
653
657
|
"styles": []
|
|
654
|
-
},
|
|
655
|
-
"VVirtualScroll": {
|
|
656
|
-
"from": "components/VVirtualScroll/index.mjs",
|
|
657
|
-
"styles": []
|
|
658
658
|
}
|
|
659
659
|
},
|
|
660
660
|
"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.6.
|
|
5
|
+
"version": "3.6.9",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -21387,16 +21387,6 @@
|
|
|
21387
21387
|
"type": "boolean"
|
|
21388
21388
|
}
|
|
21389
21389
|
},
|
|
21390
|
-
{
|
|
21391
|
-
"name": "location",
|
|
21392
|
-
"description": "The location of the fab relative to the layout. Only works when using **app**.",
|
|
21393
|
-
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
21394
|
-
"default": "'bottom end'",
|
|
21395
|
-
"value": {
|
|
21396
|
-
"kind": "expression",
|
|
21397
|
-
"type": "'start' | 'end' | 'left' | 'right' | 'top' | 'bottom'"
|
|
21398
|
-
}
|
|
21399
|
-
},
|
|
21400
21390
|
{
|
|
21401
21391
|
"name": "offset",
|
|
21402
21392
|
"description": "Translates the Fab up or down, depending on if location is set to **top** or **bottom**.",
|
|
@@ -21634,6 +21624,15 @@
|
|
|
21634
21624
|
"type": "string | boolean"
|
|
21635
21625
|
}
|
|
21636
21626
|
},
|
|
21627
|
+
{
|
|
21628
|
+
"name": "location",
|
|
21629
|
+
"description": "The location of the fab relative to the layout. Only works when using **app**.",
|
|
21630
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
21631
|
+
"value": {
|
|
21632
|
+
"kind": "expression",
|
|
21633
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>"
|
|
21634
|
+
}
|
|
21635
|
+
},
|
|
21637
21636
|
{
|
|
21638
21637
|
"name": "position",
|
|
21639
21638
|
"description": "Sets the position for the component.",
|
|
@@ -25939,7 +25938,7 @@
|
|
|
25939
25938
|
]
|
|
25940
25939
|
},
|
|
25941
25940
|
{
|
|
25942
|
-
"name": "update:
|
|
25941
|
+
"name": "update:opened",
|
|
25943
25942
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VList.json))",
|
|
25944
25943
|
"doc-url": "https://vuetifyjs.com/api/v-list#events",
|
|
25945
25944
|
"arguments": [
|
|
@@ -25950,7 +25949,7 @@
|
|
|
25950
25949
|
]
|
|
25951
25950
|
},
|
|
25952
25951
|
{
|
|
25953
|
-
"name": "update:
|
|
25952
|
+
"name": "update:selected",
|
|
25954
25953
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VList.json))",
|
|
25955
25954
|
"doc-url": "https://vuetifyjs.com/api/v-list#events",
|
|
25956
25955
|
"arguments": [
|