@vuetify/nightly 3.0.2 → 3.0.4-next-20221130.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/importMap.json +86 -86
  3. package/dist/vuetify.css +118 -124
  4. package/dist/vuetify.d.ts +391 -200
  5. package/dist/vuetify.esm.js +45 -31
  6. package/dist/vuetify.esm.js.map +1 -1
  7. package/dist/vuetify.js +45 -31
  8. package/dist/vuetify.js.map +1 -1
  9. package/dist/vuetify.min.css +2 -2
  10. package/dist/vuetify.min.js +11 -11
  11. package/dist/vuetify.min.js.map +1 -1
  12. package/lib/components/VAlert/index.d.ts +1 -1
  13. package/lib/components/VAppBar/VAppBar.mjs +2 -2
  14. package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
  15. package/lib/components/VAppBar/index.d.ts +275 -62
  16. package/lib/components/VAutocomplete/index.d.ts +22 -22
  17. package/lib/components/VChip/index.d.ts +1 -1
  18. package/lib/components/VChipGroup/index.d.ts +1 -1
  19. package/lib/components/VCombobox/index.d.ts +22 -22
  20. package/lib/components/VExpansionPanel/index.d.ts +1 -1
  21. package/lib/components/VField/index.d.ts +6 -6
  22. package/lib/components/VFileInput/index.d.ts +2 -2
  23. package/lib/components/VFooter/VFooter.mjs +1 -1
  24. package/lib/components/VFooter/VFooter.mjs.map +1 -1
  25. package/lib/components/VLazy/VLazy.mjs +2 -1
  26. package/lib/components/VLazy/VLazy.mjs.map +1 -1
  27. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +2 -2
  28. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  29. package/lib/components/VOverlay/locationStrategies.mjs +3 -1
  30. package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
  31. package/lib/components/VPagination/index.d.ts +1 -1
  32. package/lib/components/VProgressLinear/VProgressLinear.sass +1 -1
  33. package/lib/components/VProgressLinear/_variables.scss +1 -1
  34. package/lib/components/VSelect/index.d.ts +22 -22
  35. package/lib/components/VSelectionControl/index.d.ts +6 -6
  36. package/lib/components/VSnackbar/index.d.ts +4 -4
  37. package/lib/components/VTabs/VTab.css +1 -3
  38. package/lib/components/VTabs/VTab.sass +1 -4
  39. package/lib/components/VTabs/VTabs.css +0 -4
  40. package/lib/components/VTabs/VTabs.sass +0 -5
  41. package/lib/components/VTextField/index.d.ts +18 -18
  42. package/lib/components/VTextarea/index.d.ts +1 -1
  43. package/lib/components/VToolbar/VToolbar.mjs +32 -22
  44. package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
  45. package/lib/components/VToolbar/index.d.ts +9 -8
  46. package/lib/components/index.d.ts +368 -177
  47. package/lib/components/transitions/dialog-transition.mjs +2 -2
  48. package/lib/components/transitions/dialog-transition.mjs.map +1 -1
  49. package/lib/entry-bundler.mjs +1 -1
  50. package/lib/entry-bundler.mjs.map +1 -1
  51. package/lib/framework.mjs +1 -1
  52. package/lib/framework.mjs.map +1 -1
  53. package/lib/index.d.ts +23 -23
  54. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,8 +1,13 @@
1
- # [](https://github.com/vuetifyjs/vuetify/compare/v3.0.3-next-20221123.0...v) (2022-11-23)
1
+ # [](https://github.com/vuetifyjs/vuetify/compare/v3.0.4-next-20221130.0...v) (2022-11-30)
2
2
 
3
3
 
4
4
 
5
- ## [3.0.3-next-20221123.0](https://github.com/vuetifyjs/vuetify/compare/v3.0.2...v3.0.3-next-20221123.0) (2022-11-23)
5
+ ## [3.0.4-next-20221130.0](https://github.com/vuetifyjs/vuetify/compare/v3.0.3...v3.0.4-next-20221130.0) (2022-11-30)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **VTab/VTabs:** use --v-tabs-height as default for --v-btn-height ([ceaffe5](https://github.com/vuetifyjs/vuetify/commit/ceaffe530eb21e40cee7f9b8c45aafdc60f94718)), closes [#14863](https://github.com/vuetifyjs/vuetify/issues/14863)
6
11
 
7
12
 
8
13
 
@@ -8,6 +8,10 @@
8
8
  "from": "components/VDefaultsProvider/index.mjs",
9
9
  "styles": []
10
10
  },
11
+ "VForm": {
12
+ "from": "components/VForm/index.mjs",
13
+ "styles": []
14
+ },
11
15
  "VContainer": {
12
16
  "from": "components/VGrid/index.mjs",
13
17
  "styles": []
@@ -28,10 +32,6 @@
28
32
  "from": "components/VHover/index.mjs",
29
33
  "styles": []
30
34
  },
31
- "VForm": {
32
- "from": "components/VForm/index.mjs",
33
- "styles": []
34
- },
35
35
  "VLayout": {
36
36
  "from": "components/VLayout/index.mjs",
37
37
  "styles": []
@@ -48,14 +48,14 @@
48
48
  "from": "components/VLocaleProvider/index.mjs",
49
49
  "styles": []
50
50
  },
51
- "VParallax": {
52
- "from": "components/VParallax/index.mjs",
53
- "styles": []
54
- },
55
51
  "VNoSsr": {
56
52
  "from": "components/VNoSsr/index.mjs",
57
53
  "styles": []
58
54
  },
55
+ "VParallax": {
56
+ "from": "components/VParallax/index.mjs",
57
+ "styles": []
58
+ },
59
59
  "VRadio": {
60
60
  "from": "components/VRadio/index.mjs",
61
61
  "styles": []
@@ -72,16 +72,8 @@
72
72
  "from": "components/VThemeProvider/index.mjs",
73
73
  "styles": []
74
74
  },
75
- "VAppBar": {
76
- "from": "components/VAppBar/index.mjs",
77
- "styles": []
78
- },
79
- "VAppBarNavIcon": {
80
- "from": "components/VAppBar/index.mjs",
81
- "styles": []
82
- },
83
- "VAppBarTitle": {
84
- "from": "components/VAppBar/index.mjs",
75
+ "VValidation": {
76
+ "from": "components/VValidation/index.mjs",
85
77
  "styles": []
86
78
  },
87
79
  "VFabTransition": {
@@ -148,6 +140,18 @@
148
140
  "from": "components/transitions/index.mjs",
149
141
  "styles": []
150
142
  },
143
+ "VAppBar": {
144
+ "from": "components/VAppBar/index.mjs",
145
+ "styles": []
146
+ },
147
+ "VAppBarNavIcon": {
148
+ "from": "components/VAppBar/index.mjs",
149
+ "styles": []
150
+ },
151
+ "VAppBarTitle": {
152
+ "from": "components/VAppBar/index.mjs",
153
+ "styles": []
154
+ },
151
155
  "VAlert": {
152
156
  "from": "components/VAlert/index.mjs",
153
157
  "styles": []
@@ -156,6 +160,10 @@
156
160
  "from": "components/VAlert/index.mjs",
157
161
  "styles": []
158
162
  },
163
+ "VAutocomplete": {
164
+ "from": "components/VAutocomplete/index.mjs",
165
+ "styles": []
166
+ },
159
167
  "VAvatar": {
160
168
  "from": "components/VAvatar/index.mjs",
161
169
  "styles": []
@@ -164,10 +172,6 @@
164
172
  "from": "components/VBadge/index.mjs",
165
173
  "styles": []
166
174
  },
167
- "VAutocomplete": {
168
- "from": "components/VAutocomplete/index.mjs",
169
- "styles": []
170
- },
171
175
  "VBanner": {
172
176
  "from": "components/VBanner/index.mjs",
173
177
  "styles": []
@@ -184,14 +188,26 @@
184
188
  "from": "components/VBottomNavigation/index.mjs",
185
189
  "styles": []
186
190
  },
187
- "VBtnGroup": {
188
- "from": "components/VBtnGroup/index.mjs",
191
+ "VBreadcrumbs": {
192
+ "from": "components/VBreadcrumbs/index.mjs",
193
+ "styles": []
194
+ },
195
+ "VBreadcrumbsItem": {
196
+ "from": "components/VBreadcrumbs/index.mjs",
197
+ "styles": []
198
+ },
199
+ "VBreadcrumbsDivider": {
200
+ "from": "components/VBreadcrumbs/index.mjs",
189
201
  "styles": []
190
202
  },
191
203
  "VBtn": {
192
204
  "from": "components/VBtn/index.mjs",
193
205
  "styles": []
194
206
  },
207
+ "VBtnGroup": {
208
+ "from": "components/VBtnGroup/index.mjs",
209
+ "styles": []
210
+ },
195
211
  "VBtnToggle": {
196
212
  "from": "components/VBtnToggle/index.mjs",
197
213
  "styles": []
@@ -220,14 +236,6 @@
220
236
  "from": "components/VCard/index.mjs",
221
237
  "styles": []
222
238
  },
223
- "VCheckbox": {
224
- "from": "components/VCheckbox/index.mjs",
225
- "styles": []
226
- },
227
- "VCheckboxBtn": {
228
- "from": "components/VCheckbox/index.mjs",
229
- "styles": []
230
- },
231
239
  "VCarousel": {
232
240
  "from": "components/VCarousel/index.mjs",
233
241
  "styles": []
@@ -236,20 +244,24 @@
236
244
  "from": "components/VCarousel/index.mjs",
237
245
  "styles": []
238
246
  },
239
- "VChip": {
240
- "from": "components/VChip/index.mjs",
247
+ "VCheckbox": {
248
+ "from": "components/VCheckbox/index.mjs",
241
249
  "styles": []
242
250
  },
243
- "VCode": {
244
- "from": "components/VCode/index.mjs",
251
+ "VCheckboxBtn": {
252
+ "from": "components/VCheckbox/index.mjs",
253
+ "styles": []
254
+ },
255
+ "VChip": {
256
+ "from": "components/VChip/index.mjs",
245
257
  "styles": []
246
258
  },
247
259
  "VChipGroup": {
248
260
  "from": "components/VChipGroup/index.mjs",
249
261
  "styles": []
250
262
  },
251
- "VValidation": {
252
- "from": "components/VValidation/index.mjs",
263
+ "VCode": {
264
+ "from": "components/VCode/index.mjs",
253
265
  "styles": []
254
266
  },
255
267
  "VColorPicker": {
@@ -268,6 +280,10 @@
268
280
  "from": "components/VDialog/index.mjs",
269
281
  "styles": []
270
282
  },
283
+ "VDivider": {
284
+ "from": "components/VDivider/index.mjs",
285
+ "styles": []
286
+ },
271
287
  "VExpansionPanels": {
272
288
  "from": "components/VExpansionPanel/index.mjs",
273
289
  "styles": []
@@ -324,6 +340,10 @@
324
340
  "from": "components/VImg/index.mjs",
325
341
  "styles": []
326
342
  },
343
+ "VInput": {
344
+ "from": "components/VInput/index.mjs",
345
+ "styles": []
346
+ },
327
347
  "VItemGroup": {
328
348
  "from": "components/VItemGroup/index.mjs",
329
349
  "styles": []
@@ -332,10 +352,6 @@
332
352
  "from": "components/VItemGroup/index.mjs",
333
353
  "styles": []
334
354
  },
335
- "VInput": {
336
- "from": "components/VInput/index.mjs",
337
- "styles": []
338
- },
339
355
  "VKbd": {
340
356
  "from": "components/VKbd/index.mjs",
341
357
  "styles": []
@@ -344,10 +360,6 @@
344
360
  "from": "components/VLabel/index.mjs",
345
361
  "styles": []
346
362
  },
347
- "VDivider": {
348
- "from": "components/VDivider/index.mjs",
349
- "styles": []
350
- },
351
363
  "VList": {
352
364
  "from": "components/VList/index.mjs",
353
365
  "styles": []
@@ -392,14 +404,14 @@
392
404
  "from": "components/VMenu/index.mjs",
393
405
  "styles": []
394
406
  },
395
- "VNavigationDrawer": {
396
- "from": "components/VNavigationDrawer/index.mjs",
397
- "styles": []
398
- },
399
407
  "VMessages": {
400
408
  "from": "components/VMessages/index.mjs",
401
409
  "styles": []
402
410
  },
411
+ "VNavigationDrawer": {
412
+ "from": "components/VNavigationDrawer/index.mjs",
413
+ "styles": []
414
+ },
403
415
  "VOverlay": {
404
416
  "from": "components/VOverlay/index.mjs",
405
417
  "styles": []
@@ -424,6 +436,10 @@
424
436
  "from": "components/VRating/index.mjs",
425
437
  "styles": []
426
438
  },
439
+ "VSelect": {
440
+ "from": "components/VSelect/index.mjs",
441
+ "styles": []
442
+ },
427
443
  "VSelectionControl": {
428
444
  "from": "components/VSelectionControl/index.mjs",
429
445
  "styles": []
@@ -432,14 +448,18 @@
432
448
  "from": "components/VSelectionControlGroup/index.mjs",
433
449
  "styles": []
434
450
  },
435
- "VSelect": {
436
- "from": "components/VSelect/index.mjs",
437
- "styles": []
438
- },
439
451
  "VSheet": {
440
452
  "from": "components/VSheet/index.mjs",
441
453
  "styles": []
442
454
  },
455
+ "VSlideGroup": {
456
+ "from": "components/VSlideGroup/index.mjs",
457
+ "styles": []
458
+ },
459
+ "VSlideGroupItem": {
460
+ "from": "components/VSlideGroup/index.mjs",
461
+ "styles": []
462
+ },
443
463
  "VSlider": {
444
464
  "from": "components/VSlider/index.mjs",
445
465
  "styles": []
@@ -452,6 +472,10 @@
452
472
  "from": "components/VSwitch/index.mjs",
453
473
  "styles": []
454
474
  },
475
+ "VSystemBar": {
476
+ "from": "components/VSystemBar/index.mjs",
477
+ "styles": []
478
+ },
455
479
  "VTabs": {
456
480
  "from": "components/VTabs/index.mjs",
457
481
  "styles": []
@@ -460,22 +484,10 @@
460
484
  "from": "components/VTabs/index.mjs",
461
485
  "styles": []
462
486
  },
463
- "VSystemBar": {
464
- "from": "components/VSystemBar/index.mjs",
465
- "styles": []
466
- },
467
487
  "VTable": {
468
488
  "from": "components/VTable/index.mjs",
469
489
  "styles": []
470
490
  },
471
- "VSlideGroup": {
472
- "from": "components/VSlideGroup/index.mjs",
473
- "styles": []
474
- },
475
- "VSlideGroupItem": {
476
- "from": "components/VSlideGroup/index.mjs",
477
- "styles": []
478
- },
479
491
  "VTextarea": {
480
492
  "from": "components/VTextarea/index.mjs",
481
493
  "styles": []
@@ -484,6 +496,14 @@
484
496
  "from": "components/VTextField/index.mjs",
485
497
  "styles": []
486
498
  },
499
+ "VTimeline": {
500
+ "from": "components/VTimeline/index.mjs",
501
+ "styles": []
502
+ },
503
+ "VTimelineItem": {
504
+ "from": "components/VTimeline/index.mjs",
505
+ "styles": []
506
+ },
487
507
  "VToolbar": {
488
508
  "from": "components/VToolbar/index.mjs",
489
509
  "styles": []
@@ -496,14 +516,6 @@
496
516
  "from": "components/VToolbar/index.mjs",
497
517
  "styles": []
498
518
  },
499
- "VTimeline": {
500
- "from": "components/VTimeline/index.mjs",
501
- "styles": []
502
- },
503
- "VTimelineItem": {
504
- "from": "components/VTimeline/index.mjs",
505
- "styles": []
506
- },
507
519
  "VTooltip": {
508
520
  "from": "components/VTooltip/index.mjs",
509
521
  "styles": []
@@ -515,18 +527,6 @@
515
527
  "VWindowItem": {
516
528
  "from": "components/VWindow/index.mjs",
517
529
  "styles": []
518
- },
519
- "VBreadcrumbs": {
520
- "from": "components/VBreadcrumbs/index.mjs",
521
- "styles": []
522
- },
523
- "VBreadcrumbsItem": {
524
- "from": "components/VBreadcrumbs/index.mjs",
525
- "styles": []
526
- },
527
- "VBreadcrumbsDivider": {
528
- "from": "components/VBreadcrumbs/index.mjs",
529
- "styles": []
530
530
  }
531
531
  },
532
532
  "directives": [
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.0.2
2
+ * Vuetify v3.0.4-next-20221130.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -18452,89 +18452,6 @@ html.overflow-y-hidden {
18452
18452
  }
18453
18453
  .v-app-bar:not(.v-toolbar--absolute) {
18454
18454
  padding-inline-end: var(--v-scrollbar-offset);
18455
- }.v-input--density-default {
18456
- --autocomplete-chips-margin-bottom: 0px;
18457
- }
18458
-
18459
- .v-input--density-comfortable {
18460
- --autocomplete-chips-margin-bottom: 2px;
18461
- }
18462
-
18463
- .v-input--density-compact {
18464
- --autocomplete-chips-margin-bottom: 4px;
18465
- }
18466
-
18467
- .v-autocomplete .v-field .v-text-field__prefix,
18468
- .v-autocomplete .v-field .v-text-field__suffix,
18469
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18470
- cursor: text;
18471
- }
18472
- .v-autocomplete .v-field .v-field__input > input {
18473
- align-self: flex-start;
18474
- flex: 1 1;
18475
- }
18476
- .v-autocomplete .v-field .v-field__append-inner > .v-icon {
18477
- margin-inline-start: 4px;
18478
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18479
- }
18480
- .v-autocomplete .v-field:not(.v-field--focused) input {
18481
- min-width: 0;
18482
- }
18483
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18484
- margin-inline-end: 2px;
18485
- }
18486
- .v-autocomplete .v-field--single-line .v-autocomplete__selection-text {
18487
- overflow: hidden;
18488
- text-overflow: ellipsis;
18489
- white-space: nowrap;
18490
- }
18491
-
18492
- .v-autocomplete__content {
18493
- overflow: hidden;
18494
- box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
18495
- border-radius: 4px;
18496
- }
18497
- .v-autocomplete__mask {
18498
- background: rgb(var(--v-theme-on-surface-variant));
18499
- }
18500
- .v-autocomplete__selection {
18501
- display: inline-flex;
18502
- letter-spacing: inherit;
18503
- line-height: inherit;
18504
- max-width: 100%;
18505
- }
18506
- .v-autocomplete--active-menu .v-field__append-inner > .v-icon {
18507
- opacity: var(--v-high-emphasis-opacity);
18508
- transform: rotate(180deg);
18509
- }
18510
- .v-autocomplete--chips .v-autocomplete__selection {
18511
- margin-top: 2px;
18512
- margin-bottom: var(--autocomplete-chips-margin-bottom);
18513
- }
18514
- .v-autocomplete--chips .v-autocomplete__selection:first-child {
18515
- margin-inline-start: 0;
18516
- }
18517
- .v-autocomplete--single.v-text-field input {
18518
- flex: 1 1;
18519
- position: absolute;
18520
- left: 0;
18521
- right: 0;
18522
- width: 100%;
18523
- padding-inline-start: inherit;
18524
- padding-inline-end: inherit;
18525
- }
18526
- .v-autocomplete--single .v-field--active input {
18527
- transition: none;
18528
- }
18529
- .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
18530
- opacity: 0;
18531
- }
18532
- .v-autocomplete--single .v-field--focused .v-autocomplete__selection-text {
18533
- opacity: 0;
18534
- }
18535
- .v-autocomplete--selection-slot.v-text-field input {
18536
- position: relative;
18537
- padding-inline-start: 0;
18538
18455
  }.v-alert {
18539
18456
  display: grid;
18540
18457
  flex: 1 1;
@@ -18745,6 +18662,89 @@ html.overflow-y-hidden {
18745
18662
  text-transform: none;
18746
18663
  word-break: normal;
18747
18664
  word-wrap: break-word;
18665
+ }.v-input--density-default {
18666
+ --autocomplete-chips-margin-bottom: 0px;
18667
+ }
18668
+
18669
+ .v-input--density-comfortable {
18670
+ --autocomplete-chips-margin-bottom: 2px;
18671
+ }
18672
+
18673
+ .v-input--density-compact {
18674
+ --autocomplete-chips-margin-bottom: 4px;
18675
+ }
18676
+
18677
+ .v-autocomplete .v-field .v-text-field__prefix,
18678
+ .v-autocomplete .v-field .v-text-field__suffix,
18679
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
18680
+ cursor: text;
18681
+ }
18682
+ .v-autocomplete .v-field .v-field__input > input {
18683
+ align-self: flex-start;
18684
+ flex: 1 1;
18685
+ }
18686
+ .v-autocomplete .v-field .v-field__append-inner > .v-icon {
18687
+ margin-inline-start: 4px;
18688
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18689
+ }
18690
+ .v-autocomplete .v-field:not(.v-field--focused) input {
18691
+ min-width: 0;
18692
+ }
18693
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
18694
+ margin-inline-end: 2px;
18695
+ }
18696
+ .v-autocomplete .v-field--single-line .v-autocomplete__selection-text {
18697
+ overflow: hidden;
18698
+ text-overflow: ellipsis;
18699
+ white-space: nowrap;
18700
+ }
18701
+
18702
+ .v-autocomplete__content {
18703
+ overflow: hidden;
18704
+ box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
18705
+ border-radius: 4px;
18706
+ }
18707
+ .v-autocomplete__mask {
18708
+ background: rgb(var(--v-theme-on-surface-variant));
18709
+ }
18710
+ .v-autocomplete__selection {
18711
+ display: inline-flex;
18712
+ letter-spacing: inherit;
18713
+ line-height: inherit;
18714
+ max-width: 100%;
18715
+ }
18716
+ .v-autocomplete--active-menu .v-field__append-inner > .v-icon {
18717
+ opacity: var(--v-high-emphasis-opacity);
18718
+ transform: rotate(180deg);
18719
+ }
18720
+ .v-autocomplete--chips .v-autocomplete__selection {
18721
+ margin-top: 2px;
18722
+ margin-bottom: var(--autocomplete-chips-margin-bottom);
18723
+ }
18724
+ .v-autocomplete--chips .v-autocomplete__selection:first-child {
18725
+ margin-inline-start: 0;
18726
+ }
18727
+ .v-autocomplete--single.v-text-field input {
18728
+ flex: 1 1;
18729
+ position: absolute;
18730
+ left: 0;
18731
+ right: 0;
18732
+ width: 100%;
18733
+ padding-inline-start: inherit;
18734
+ padding-inline-end: inherit;
18735
+ }
18736
+ .v-autocomplete--single .v-field--active input {
18737
+ transition: none;
18738
+ }
18739
+ .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
18740
+ opacity: 0;
18741
+ }
18742
+ .v-autocomplete--single .v-field--focused .v-autocomplete__selection-text {
18743
+ opacity: 0;
18744
+ }
18745
+ .v-autocomplete--selection-slot.v-text-field input {
18746
+ position: relative;
18747
+ padding-inline-start: 0;
18748
18748
  }.v-avatar {
18749
18749
  flex: none;
18750
18750
  align-items: center;
@@ -22330,39 +22330,6 @@ textarea.v-field__input::placeholder {
22330
22330
 
22331
22331
  .v-icon--end {
22332
22332
  margin-inline-start: 8px;
22333
- }.v-img {
22334
- --v-theme-overlay-multiplier: 3;
22335
- z-index: 0;
22336
- }
22337
- .v-img--booting .v-responsive__sizer {
22338
- transition: none;
22339
- }
22340
-
22341
- .v-img__img,
22342
- .v-img__picture,
22343
- .v-img__gradient,
22344
- .v-img__placeholder,
22345
- .v-img__error {
22346
- z-index: -1;
22347
- position: absolute;
22348
- top: 0;
22349
- left: 0;
22350
- width: 100%;
22351
- height: 100%;
22352
- }
22353
-
22354
- .v-img__img--preload {
22355
- filter: blur(4px);
22356
- }
22357
- .v-img__img--contain {
22358
- object-fit: contain;
22359
- }
22360
- .v-img__img--cover {
22361
- object-fit: cover;
22362
- }
22363
-
22364
- .v-img__gradient {
22365
- background-repeat: no-repeat;
22366
22333
  }.v-input {
22367
22334
  display: grid;
22368
22335
  flex: 1 1 auto;
@@ -22480,6 +22447,39 @@ textarea.v-field__input::placeholder {
22480
22447
  max-width: 100%;
22481
22448
  position: relative;
22482
22449
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
22450
+ }.v-img {
22451
+ --v-theme-overlay-multiplier: 3;
22452
+ z-index: 0;
22453
+ }
22454
+ .v-img--booting .v-responsive__sizer {
22455
+ transition: none;
22456
+ }
22457
+
22458
+ .v-img__img,
22459
+ .v-img__picture,
22460
+ .v-img__gradient,
22461
+ .v-img__placeholder,
22462
+ .v-img__error {
22463
+ z-index: -1;
22464
+ position: absolute;
22465
+ top: 0;
22466
+ left: 0;
22467
+ width: 100%;
22468
+ height: 100%;
22469
+ }
22470
+
22471
+ .v-img__img--preload {
22472
+ filter: blur(4px);
22473
+ }
22474
+ .v-img__img--contain {
22475
+ object-fit: contain;
22476
+ }
22477
+ .v-img__img--cover {
22478
+ object-fit: cover;
22479
+ }
22480
+
22481
+ .v-img__gradient {
22482
+ background-repeat: no-repeat;
22483
22483
  }.v-label {
22484
22484
  align-items: center;
22485
22485
  display: inline-flex;
@@ -24195,20 +24195,14 @@ html.v-overlay-scroll-blocked {
24195
24195
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24196
24196
  margin-inline-end: 52px;
24197
24197
  }
24198
- }
24199
- .v-toolbar__content > .v-tabs,
24200
- .v-toolbar__content .v-tab {
24201
- height: inherit;
24202
24198
  }.v-tab {
24199
+ --v-btn-height: var(--v-tabs-height);
24203
24200
  position: relative;
24204
24201
  min-width: 90px;
24205
24202
  }
24206
24203
  .v-slide-group--horizontal .v-tab {
24207
24204
  max-width: 360px;
24208
24205
  }
24209
- .v-tab.v-tab.v-tab {
24210
- height: var(--v-tabs-height);
24211
- }
24212
24206
  .v-slide-group--vertical .v-tab {
24213
24207
  justify-content: start;
24214
24208
  }