vuetify 3.0.5 → 3.0.6

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 (46) hide show
  1. package/dist/_component-variables.sass +1 -0
  2. package/dist/json/attributes.json +9 -5
  3. package/dist/json/importMap.json +94 -94
  4. package/dist/json/tags.json +1 -0
  5. package/dist/json/web-types.json +20 -11
  6. package/dist/vuetify.css +73 -60
  7. package/dist/vuetify.d.ts +28 -26
  8. package/dist/vuetify.esm.js +39 -21
  9. package/dist/vuetify.esm.js.map +1 -1
  10. package/dist/vuetify.js +39 -21
  11. package/dist/vuetify.js.map +1 -1
  12. package/dist/vuetify.min.css +2 -2
  13. package/dist/vuetify.min.js +39 -36
  14. package/dist/vuetify.min.js.map +1 -1
  15. package/lib/components/VApp/{variables.scss → _variables.scss} +0 -0
  16. package/lib/components/VAvatar/VAvatar.mjs +7 -2
  17. package/lib/components/VAvatar/VAvatar.mjs.map +1 -1
  18. package/lib/components/VAvatar/index.d.ts +2 -0
  19. package/lib/components/VFileInput/VFileInput.mjs +4 -3
  20. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  21. package/lib/components/VImg/VImg.mjs +10 -2
  22. package/lib/components/VImg/VImg.mjs.map +1 -1
  23. package/lib/components/VList/VList.mjs +4 -2
  24. package/lib/components/VList/VList.mjs.map +1 -1
  25. package/lib/components/VList/VListGroup.mjs +2 -1
  26. package/lib/components/VList/VListGroup.mjs.map +1 -1
  27. package/lib/components/VList/VListItem.css +1 -0
  28. package/lib/components/VList/VListItem.sass +1 -0
  29. package/lib/components/VRadioGroup/VRadioGroup.css +4 -4
  30. package/lib/components/VRadioGroup/VRadioGroup.sass +4 -4
  31. package/lib/components/VRadioGroup/_variables.scss +2 -2
  32. package/lib/components/VSlider/VSliderThumb.css +9 -0
  33. package/lib/components/VSlider/VSliderThumb.mjs +4 -6
  34. package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
  35. package/lib/components/VSlider/VSliderThumb.sass +8 -0
  36. package/lib/components/VSlider/VSliderTrack.css +4 -1
  37. package/lib/components/VSlider/VSliderTrack.sass +3 -1
  38. package/lib/components/VSlider/slider.mjs +2 -2
  39. package/lib/components/VSlider/slider.mjs.map +1 -1
  40. package/lib/components/VSnackbar/VSnackbar.mjs +6 -1
  41. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  42. package/lib/components/index.d.ts +2 -0
  43. package/lib/entry-bundler.mjs +1 -1
  44. package/lib/framework.mjs +1 -1
  45. package/lib/index.d.ts +26 -26
  46. package/package.json +2 -2
@@ -1,4 +1,5 @@
1
1
  @forward '../lib/components/VAlert/_variables.scss'
2
+ @forward '../lib/components/VApp/_variables.scss'
2
3
  @forward '../lib/components/VAppBar/_variables.scss'
3
4
  @forward '../lib/components/VAutocomplete/_variables.scss'
4
5
  @forward '../lib/components/VAvatar/_variables.scss'
@@ -495,6 +495,10 @@
495
495
  "type": "string",
496
496
  "description": "Specify a custom tag used on the root element."
497
497
  },
498
+ "v-avatar/theme": {
499
+ "type": "string",
500
+ "description": "Specify a theme for this component and all of its children"
501
+ },
498
502
  "v-avatar/color": {
499
503
  "type": "string",
500
504
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/variant.json))"
@@ -3241,7 +3245,7 @@
3241
3245
  },
3242
3246
  "v-list-item/value": {
3243
3247
  "type": "any",
3244
- "description": "The value used when a child of a [v-list-item-group](/components/list-item-groups)."
3248
+ "description": "The value used for selection."
3245
3249
  },
3246
3250
  "v-list-item/active": {
3247
3251
  "type": "boolean",
@@ -5143,6 +5147,10 @@
5143
5147
  "type": "\"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"text\" | \"plain\"",
5144
5148
  "description": "Applies one of 6 styles: **elevated**, **flat**, **tonal**, **outlined**, **text**, and **plain**."
5145
5149
  },
5150
+ "v-snackbar/theme": {
5151
+ "type": "string",
5152
+ "description": "Specify a theme for this component and all of its children"
5153
+ },
5146
5154
  "v-snackbar/close-on-back": {
5147
5155
  "type": "boolean",
5148
5156
  "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing."
@@ -5239,10 +5247,6 @@
5239
5247
  "type": "string | number | number[]",
5240
5248
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/v-overlay-location-strategies.json))"
5241
5249
  },
5242
- "v-snackbar/theme": {
5243
- "type": "string",
5244
- "description": "Specify a theme for this component and all of its children"
5245
- },
5246
5250
  "v-snackbar/transition": {
5247
5251
  "type": "string",
5248
5252
  "description": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own."
@@ -1,9 +1,5 @@
1
1
  {
2
2
  "components": {
3
- "VApp": {
4
- "from": "components/VApp/index.mjs",
5
- "styles": []
6
- },
7
3
  "VDefaultsProvider": {
8
4
  "from": "components/VDefaultsProvider/index.mjs",
9
5
  "styles": []
@@ -32,10 +28,6 @@
32
28
  "from": "components/VHover/index.mjs",
33
29
  "styles": []
34
30
  },
35
- "VLazy": {
36
- "from": "components/VLazy/index.mjs",
37
- "styles": []
38
- },
39
31
  "VLayout": {
40
32
  "from": "components/VLayout/index.mjs",
41
33
  "styles": []
@@ -48,6 +40,10 @@
48
40
  "from": "components/VLocaleProvider/index.mjs",
49
41
  "styles": []
50
42
  },
43
+ "VLazy": {
44
+ "from": "components/VLazy/index.mjs",
45
+ "styles": []
46
+ },
51
47
  "VNoSsr": {
52
48
  "from": "components/VNoSsr/index.mjs",
53
49
  "styles": []
@@ -56,44 +52,20 @@
56
52
  "from": "components/VParallax/index.mjs",
57
53
  "styles": []
58
54
  },
59
- "VRangeSlider": {
60
- "from": "components/VRangeSlider/index.mjs",
61
- "styles": []
62
- },
63
55
  "VRadio": {
64
56
  "from": "components/VRadio/index.mjs",
65
57
  "styles": []
66
58
  },
67
- "VResponsive": {
68
- "from": "components/VResponsive/index.mjs",
69
- "styles": []
70
- },
71
- "VThemeProvider": {
72
- "from": "components/VThemeProvider/index.mjs",
73
- "styles": []
74
- },
75
- "VValidation": {
76
- "from": "components/VValidation/index.mjs",
77
- "styles": []
78
- },
79
- "VAppBar": {
80
- "from": "components/VAppBar/index.mjs",
81
- "styles": []
82
- },
83
- "VAppBarNavIcon": {
84
- "from": "components/VAppBar/index.mjs",
85
- "styles": []
86
- },
87
- "VAppBarTitle": {
88
- "from": "components/VAppBar/index.mjs",
59
+ "VRangeSlider": {
60
+ "from": "components/VRangeSlider/index.mjs",
89
61
  "styles": []
90
62
  },
91
- "VAlert": {
92
- "from": "components/VAlert/index.mjs",
63
+ "VResponsive": {
64
+ "from": "components/VResponsive/index.mjs",
93
65
  "styles": []
94
66
  },
95
- "VAlertTitle": {
96
- "from": "components/VAlert/index.mjs",
67
+ "VApp": {
68
+ "from": "components/VApp/index.mjs",
97
69
  "styles": []
98
70
  },
99
71
  "VFabTransition": {
@@ -160,8 +132,28 @@
160
132
  "from": "components/transitions/index.mjs",
161
133
  "styles": []
162
134
  },
163
- "VAvatar": {
164
- "from": "components/VAvatar/index.mjs",
135
+ "VAppBar": {
136
+ "from": "components/VAppBar/index.mjs",
137
+ "styles": []
138
+ },
139
+ "VAppBarNavIcon": {
140
+ "from": "components/VAppBar/index.mjs",
141
+ "styles": []
142
+ },
143
+ "VAppBarTitle": {
144
+ "from": "components/VAppBar/index.mjs",
145
+ "styles": []
146
+ },
147
+ "VValidation": {
148
+ "from": "components/VValidation/index.mjs",
149
+ "styles": []
150
+ },
151
+ "VAlert": {
152
+ "from": "components/VAlert/index.mjs",
153
+ "styles": []
154
+ },
155
+ "VAlertTitle": {
156
+ "from": "components/VAlert/index.mjs",
165
157
  "styles": []
166
158
  },
167
159
  "VAutocomplete": {
@@ -172,6 +164,14 @@
172
164
  "from": "components/VBadge/index.mjs",
173
165
  "styles": []
174
166
  },
167
+ "VAvatar": {
168
+ "from": "components/VAvatar/index.mjs",
169
+ "styles": []
170
+ },
171
+ "VThemeProvider": {
172
+ "from": "components/VThemeProvider/index.mjs",
173
+ "styles": []
174
+ },
175
175
  "VBanner": {
176
176
  "from": "components/VBanner/index.mjs",
177
177
  "styles": []
@@ -204,6 +204,10 @@
204
204
  "from": "components/VBtn/index.mjs",
205
205
  "styles": []
206
206
  },
207
+ "VBtnToggle": {
208
+ "from": "components/VBtnToggle/index.mjs",
209
+ "styles": []
210
+ },
207
211
  "VBtnGroup": {
208
212
  "from": "components/VBtnGroup/index.mjs",
209
213
  "styles": []
@@ -252,14 +256,14 @@
252
256
  "from": "components/VChip/index.mjs",
253
257
  "styles": []
254
258
  },
255
- "VChipGroup": {
256
- "from": "components/VChipGroup/index.mjs",
257
- "styles": []
258
- },
259
259
  "VCode": {
260
260
  "from": "components/VCode/index.mjs",
261
261
  "styles": []
262
262
  },
263
+ "VChipGroup": {
264
+ "from": "components/VChipGroup/index.mjs",
265
+ "styles": []
266
+ },
263
267
  "VColorPicker": {
264
268
  "from": "components/VColorPicker/index.mjs",
265
269
  "styles": []
@@ -276,10 +280,6 @@
276
280
  "from": "components/VDialog/index.mjs",
277
281
  "styles": []
278
282
  },
279
- "VDivider": {
280
- "from": "components/VDivider/index.mjs",
281
- "styles": []
282
- },
283
283
  "VExpansionPanels": {
284
284
  "from": "components/VExpansionPanel/index.mjs",
285
285
  "styles": []
@@ -296,6 +296,10 @@
296
296
  "from": "components/VExpansionPanel/index.mjs",
297
297
  "styles": []
298
298
  },
299
+ "VDivider": {
300
+ "from": "components/VDivider/index.mjs",
301
+ "styles": []
302
+ },
299
303
  "VField": {
300
304
  "from": "components/VField/index.mjs",
301
305
  "styles": []
@@ -304,14 +308,18 @@
304
308
  "from": "components/VField/index.mjs",
305
309
  "styles": []
306
310
  },
307
- "VFileInput": {
308
- "from": "components/VFileInput/index.mjs",
309
- "styles": []
310
- },
311
311
  "VFooter": {
312
312
  "from": "components/VFooter/index.mjs",
313
313
  "styles": []
314
314
  },
315
+ "VInput": {
316
+ "from": "components/VInput/index.mjs",
317
+ "styles": []
318
+ },
319
+ "VFileInput": {
320
+ "from": "components/VFileInput/index.mjs",
321
+ "styles": []
322
+ },
315
323
  "VIcon": {
316
324
  "from": "components/VIcon/index.mjs",
317
325
  "styles": []
@@ -332,14 +340,6 @@
332
340
  "from": "components/VIcon/index.mjs",
333
341
  "styles": []
334
342
  },
335
- "VImg": {
336
- "from": "components/VImg/index.mjs",
337
- "styles": []
338
- },
339
- "VInput": {
340
- "from": "components/VInput/index.mjs",
341
- "styles": []
342
- },
343
343
  "VItemGroup": {
344
344
  "from": "components/VItemGroup/index.mjs",
345
345
  "styles": []
@@ -404,30 +404,30 @@
404
404
  "from": "components/VMessages/index.mjs",
405
405
  "styles": []
406
406
  },
407
- "VNavigationDrawer": {
408
- "from": "components/VNavigationDrawer/index.mjs",
409
- "styles": []
410
- },
411
407
  "VOverlay": {
412
408
  "from": "components/VOverlay/index.mjs",
413
409
  "styles": []
414
410
  },
415
- "VProgressCircular": {
416
- "from": "components/VProgressCircular/index.mjs",
417
- "styles": []
418
- },
419
411
  "VPagination": {
420
412
  "from": "components/VPagination/index.mjs",
421
413
  "styles": []
422
414
  },
423
- "VProgressLinear": {
424
- "from": "components/VProgressLinear/index.mjs",
415
+ "VNavigationDrawer": {
416
+ "from": "components/VNavigationDrawer/index.mjs",
417
+ "styles": []
418
+ },
419
+ "VProgressCircular": {
420
+ "from": "components/VProgressCircular/index.mjs",
425
421
  "styles": []
426
422
  },
427
423
  "VRadioGroup": {
428
424
  "from": "components/VRadioGroup/index.mjs",
429
425
  "styles": []
430
426
  },
427
+ "VProgressLinear": {
428
+ "from": "components/VProgressLinear/index.mjs",
429
+ "styles": []
430
+ },
431
431
  "VRating": {
432
432
  "from": "components/VRating/index.mjs",
433
433
  "styles": []
@@ -444,6 +444,10 @@
444
444
  "from": "components/VSelectionControlGroup/index.mjs",
445
445
  "styles": []
446
446
  },
447
+ "VSheet": {
448
+ "from": "components/VSheet/index.mjs",
449
+ "styles": []
450
+ },
447
451
  "VSlideGroup": {
448
452
  "from": "components/VSlideGroup/index.mjs",
449
453
  "styles": []
@@ -452,10 +456,6 @@
452
456
  "from": "components/VSlideGroup/index.mjs",
453
457
  "styles": []
454
458
  },
455
- "VSheet": {
456
- "from": "components/VSheet/index.mjs",
457
- "styles": []
458
- },
459
459
  "VSlider": {
460
460
  "from": "components/VSlider/index.mjs",
461
461
  "styles": []
@@ -468,10 +468,6 @@
468
468
  "from": "components/VSwitch/index.mjs",
469
469
  "styles": []
470
470
  },
471
- "VSystemBar": {
472
- "from": "components/VSystemBar/index.mjs",
473
- "styles": []
474
- },
475
471
  "VTabs": {
476
472
  "from": "components/VTabs/index.mjs",
477
473
  "styles": []
@@ -480,28 +476,20 @@
480
476
  "from": "components/VTabs/index.mjs",
481
477
  "styles": []
482
478
  },
483
- "VTable": {
484
- "from": "components/VTable/index.mjs",
485
- "styles": []
486
- },
487
- "VTextarea": {
488
- "from": "components/VTextarea/index.mjs",
479
+ "VSystemBar": {
480
+ "from": "components/VSystemBar/index.mjs",
489
481
  "styles": []
490
482
  },
491
483
  "VTextField": {
492
484
  "from": "components/VTextField/index.mjs",
493
485
  "styles": []
494
486
  },
495
- "VToolbar": {
496
- "from": "components/VToolbar/index.mjs",
497
- "styles": []
498
- },
499
- "VToolbarTitle": {
500
- "from": "components/VToolbar/index.mjs",
487
+ "VTable": {
488
+ "from": "components/VTable/index.mjs",
501
489
  "styles": []
502
490
  },
503
- "VToolbarItems": {
504
- "from": "components/VToolbar/index.mjs",
491
+ "VTextarea": {
492
+ "from": "components/VTextarea/index.mjs",
505
493
  "styles": []
506
494
  },
507
495
  "VTimeline": {
@@ -516,6 +504,18 @@
516
504
  "from": "components/VTooltip/index.mjs",
517
505
  "styles": []
518
506
  },
507
+ "VToolbar": {
508
+ "from": "components/VToolbar/index.mjs",
509
+ "styles": []
510
+ },
511
+ "VToolbarTitle": {
512
+ "from": "components/VToolbar/index.mjs",
513
+ "styles": []
514
+ },
515
+ "VToolbarItems": {
516
+ "from": "components/VToolbar/index.mjs",
517
+ "styles": []
518
+ },
519
519
  "VWindow": {
520
520
  "from": "components/VWindow/index.mjs",
521
521
  "styles": []
@@ -524,8 +524,8 @@
524
524
  "from": "components/VWindow/index.mjs",
525
525
  "styles": []
526
526
  },
527
- "VBtnToggle": {
528
- "from": "components/VBtnToggle/index.mjs",
527
+ "VImg": {
528
+ "from": "components/VImg/index.mjs",
529
529
  "styles": []
530
530
  }
531
531
  },
@@ -159,6 +159,7 @@
159
159
  "size",
160
160
  "start",
161
161
  "tag",
162
+ "theme",
162
163
  "variant"
163
164
  ],
164
165
  "description": ""
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.0.5",
5
+ "version": "3.0.6",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -1754,6 +1754,15 @@
1754
1754
  "type": "string"
1755
1755
  }
1756
1756
  },
1757
+ {
1758
+ "name": "theme",
1759
+ "description": "Specify a theme for this component and all of its children",
1760
+ "doc-url": "https://vuetifyjs.com/api/v-avatar#props",
1761
+ "value": {
1762
+ "kind": "expression",
1763
+ "type": "string"
1764
+ }
1765
+ },
1757
1766
  {
1758
1767
  "name": "color",
1759
1768
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/next/packages/api-generator/src/locale/en/variant.json))",
@@ -10881,7 +10890,7 @@
10881
10890
  },
10882
10891
  {
10883
10892
  "name": "value",
10884
- "description": "The value used when a child of a [v-list-item-group](/components/list-item-groups).",
10893
+ "description": "The value used for selection.",
10885
10894
  "doc-url": "https://vuetifyjs.com/api/v-list-item#props",
10886
10895
  "value": {
10887
10896
  "kind": "expression",
@@ -17058,6 +17067,15 @@
17058
17067
  "type": "\"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"text\" | \"plain\""
17059
17068
  }
17060
17069
  },
17070
+ {
17071
+ "name": "theme",
17072
+ "description": "Specify a theme for this component and all of its children",
17073
+ "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
17074
+ "value": {
17075
+ "kind": "expression",
17076
+ "type": "string"
17077
+ }
17078
+ },
17061
17079
  {
17062
17080
  "name": "closeOnBack",
17063
17081
  "description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing.",
@@ -17296,15 +17314,6 @@
17296
17314
  "type": "string | number | number[]"
17297
17315
  }
17298
17316
  },
17299
- {
17300
- "name": "theme",
17301
- "description": "Specify a theme for this component and all of its children",
17302
- "doc-url": "https://vuetifyjs.com/api/v-snackbar#props",
17303
- "value": {
17304
- "kind": "expression",
17305
- "type": "string"
17306
- }
17307
- },
17308
17317
  {
17309
17318
  "name": "transition",
17310
17319
  "description": "Sets the component transition. Can be one of the [built in transitions](/styles/transitions) or one your own.",
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.0.5
2
+ * Vuetify v3.0.6
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -22620,6 +22620,7 @@ textarea.v-field__input::placeholder {
22620
22620
  grid-template-areas: "prepend content append";
22621
22621
  grid-template-columns: max-content auto max-content;
22622
22622
  outline: none;
22623
+ max-width: 100%;
22623
22624
  padding: 4px 16px;
22624
22625
  position: relative;
22625
22626
  text-decoration: none;
@@ -23202,12 +23203,6 @@ html.v-overlay-scroll-blocked {
23202
23203
 
23203
23204
  .v-overlay--scroll-blocked {
23204
23205
  padding-inline-end: var(--v-scrollbar-offset);
23205
- }.v-parallax {
23206
- position: relative;
23207
- overflow: hidden;
23208
- }
23209
- .v-parallax--active > .v-img__img {
23210
- will-change: transform;
23211
23206
  }.v-pagination__list {
23212
23207
  display: inline-flex;
23213
23208
  list-style-type: none;
@@ -23216,6 +23211,12 @@ html.v-overlay-scroll-blocked {
23216
23211
  }
23217
23212
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
23218
23213
  margin: 0.3rem;
23214
+ }.v-parallax {
23215
+ position: relative;
23216
+ overflow: hidden;
23217
+ }
23218
+ .v-parallax--active > .v-img__img {
23219
+ will-change: transform;
23219
23220
  }.v-progress-circular {
23220
23221
  align-items: center;
23221
23222
  display: inline-flex;
@@ -23530,11 +23531,11 @@ html.v-overlay-scroll-blocked {
23530
23531
  }.v-radio-group > .v-input__control {
23531
23532
  flex-direction: column;
23532
23533
  }
23533
- .v-radio-group > .v-label {
23534
- margin-inline-start: 12px;
23534
+ .v-radio-group > .v-input__control > .v-label {
23535
+ margin-inline-start: 8px;
23535
23536
  }
23536
- .v-radio-group > .v-label + .v-selection-control-group {
23537
- margin-top: 16px;
23537
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23538
+ margin-top: 8px;
23538
23539
  }.v-slider .v-slider__container input {
23539
23540
  cursor: default;
23540
23541
  padding: 0;
@@ -24134,34 +24135,6 @@ html.v-overlay-scroll-blocked {
24134
24135
  }
24135
24136
  .v-system-bar--window {
24136
24137
  height: 32px;
24137
- }.v-tab.v-tab {
24138
- --v-btn-height: var(--v-tabs-height);
24139
- min-width: 90px;
24140
- }
24141
- .v-slide-group--horizontal .v-tab {
24142
- max-width: 360px;
24143
- }
24144
- .v-slide-group--vertical .v-tab {
24145
- justify-content: start;
24146
- }
24147
-
24148
- .v-tab__slider {
24149
- position: absolute;
24150
- bottom: 0;
24151
- left: 0;
24152
- height: 2px;
24153
- width: 100%;
24154
- background: currentColor;
24155
- pointer-events: none;
24156
- opacity: 0;
24157
- }
24158
- .v-tab--selected .v-tab__slider {
24159
- opacity: 1;
24160
- }
24161
- .v-slide-group--vertical .v-tab__slider {
24162
- top: 0;
24163
- height: 100%;
24164
- width: 2px;
24165
24138
  }.v-tabs {
24166
24139
  display: flex;
24167
24140
  height: var(--v-tabs-height);
@@ -24227,6 +24200,34 @@ html.v-overlay-scroll-blocked {
24227
24200
  .v-tabs.v-slide-group--is-overflowing.v-slide-group--horizontal:not(.v-slide-group--has-affixes) .v-tab:last-child {
24228
24201
  margin-inline-end: 52px;
24229
24202
  }
24203
+ }.v-tab.v-tab {
24204
+ --v-btn-height: var(--v-tabs-height);
24205
+ min-width: 90px;
24206
+ }
24207
+ .v-slide-group--horizontal .v-tab {
24208
+ max-width: 360px;
24209
+ }
24210
+ .v-slide-group--vertical .v-tab {
24211
+ justify-content: start;
24212
+ }
24213
+
24214
+ .v-tab__slider {
24215
+ position: absolute;
24216
+ bottom: 0;
24217
+ left: 0;
24218
+ height: 2px;
24219
+ width: 100%;
24220
+ background: currentColor;
24221
+ pointer-events: none;
24222
+ opacity: 0;
24223
+ }
24224
+ .v-tab--selected .v-tab__slider {
24225
+ opacity: 1;
24226
+ }
24227
+ .v-slide-group--vertical .v-tab__slider {
24228
+ top: 0;
24229
+ height: 100%;
24230
+ width: 2px;
24230
24231
  }.v-table {
24231
24232
  background: rgb(var(--v-theme-surface));
24232
24233
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -25149,6 +25150,26 @@ html.v-overlay-scroll-blocked {
25149
25150
  }
25150
25151
  .v-window-y-reverse-transition-leave-to {
25151
25152
  transform: translateY(100%);
25153
+ }.v-color-picker-canvas {
25154
+ position: relative;
25155
+ overflow: hidden;
25156
+ contain: strict;
25157
+ }
25158
+ .v-color-picker-canvas__dot {
25159
+ position: absolute;
25160
+ top: 0;
25161
+ left: 0;
25162
+ width: 15px;
25163
+ height: 15px;
25164
+ background: transparent;
25165
+ border-radius: 50%;
25166
+ box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25167
+ }
25168
+ .v-color-picker-canvas__dot--disabled {
25169
+ box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25170
+ }
25171
+ .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25172
+ will-change: transform;
25152
25173
  }.v-color-picker-edit {
25153
25174
  display: flex;
25154
25175
  }
@@ -25179,26 +25200,6 @@ html.v-overlay-scroll-blocked {
25179
25200
  }
25180
25201
  .v-color-picker-edit__input span {
25181
25202
  font-size: 0.75rem;
25182
- }.v-color-picker-canvas {
25183
- position: relative;
25184
- overflow: hidden;
25185
- contain: strict;
25186
- }
25187
- .v-color-picker-canvas__dot {
25188
- position: absolute;
25189
- top: 0;
25190
- left: 0;
25191
- width: 15px;
25192
- height: 15px;
25193
- background: transparent;
25194
- border-radius: 50%;
25195
- box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25196
- }
25197
- .v-color-picker-canvas__dot--disabled {
25198
- box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
25199
- }
25200
- .v-color-picker-canvas:hover .v-color-picker-canvas__dot {
25201
- will-change: transform;
25202
25203
  }.v-color-picker-preview__alpha .v-slider-track__background {
25203
25204
  background-color: transparent !important;
25204
25205
  }
@@ -25392,6 +25393,12 @@ html.v-overlay-scroll-blocked {
25392
25393
  top: 50%;
25393
25394
  transform: translateY(-50%);
25394
25395
  }
25396
+ .v-slider.v-input--horizontal .v-slider-thumb.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-thumb {
25397
+ left: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25398
+ }
25399
+ .v-slider.v-input--horizontal .v-slider-thumb.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-thumb {
25400
+ right: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25401
+ }
25395
25402
  .v-slider.v-input--horizontal .v-slider-thumb__label-container {
25396
25403
  left: calc(var(--v-slider-thumb-size) / 2);
25397
25404
  top: 0;
@@ -25412,6 +25419,9 @@ html.v-overlay-scroll-blocked {
25412
25419
  bottom: -6px;
25413
25420
  }
25414
25421
 
25422
+ .v-slider.v-input--vertical .v-slider-thumb {
25423
+ top: calc(var(--v-slider-thumb-position) - var(--v-slider-thumb-size) / 2);
25424
+ }
25415
25425
  .v-slider.v-input--vertical .v-slider-thumb__label-container {
25416
25426
  top: calc(var(--v-slider-thumb-size) / 2);
25417
25427
  right: 0;
@@ -25583,9 +25593,12 @@ html.v-overlay-scroll-blocked {
25583
25593
  .v-slider.v-input--vertical .v-slider-track__tick.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick {
25584
25594
  transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / 2));
25585
25595
  }
25586
- .v-slider.v-input--vertical .v-slider-track__tick--last {
25596
+ .v-slider.v-input--vertical .v-slider-track__tick--first {
25587
25597
  bottom: calc(0% + var(--v-slider-tick-size) + 1px);
25588
25598
  }
25599
+ .v-slider.v-input--vertical .v-slider-track__tick--last {
25600
+ bottom: calc(100% - var(--v-slider-tick-size) - 1px);
25601
+ }
25589
25602
  .v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label {
25590
25603
  margin-inline-start: calc(var(--v-slider-track-size) / 2 + 12px);
25591
25604
  transform: translateY(-50%);