vuetify 3.1.5 → 3.1.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 (59) hide show
  1. package/dist/json/attributes.json +1 -1
  2. package/dist/json/importMap.json +36 -36
  3. package/dist/json/web-types.json +2 -2
  4. package/dist/vuetify-labs.css +139 -134
  5. package/dist/vuetify-labs.d.ts +2 -2
  6. package/dist/vuetify-labs.esm.js +105 -66
  7. package/dist/vuetify-labs.esm.js.map +1 -1
  8. package/dist/vuetify-labs.js +105 -66
  9. package/dist/vuetify-labs.min.css +2 -2
  10. package/dist/vuetify.css +74 -69
  11. package/dist/vuetify.d.ts +11 -11
  12. package/dist/vuetify.esm.js +102 -63
  13. package/dist/vuetify.esm.js.map +1 -1
  14. package/dist/vuetify.js +102 -63
  15. package/dist/vuetify.js.map +1 -1
  16. package/dist/vuetify.min.css +2 -2
  17. package/dist/vuetify.min.js +674 -669
  18. package/dist/vuetify.min.js.map +1 -1
  19. package/lib/components/VColorPicker/VColorPicker.mjs +9 -1
  20. package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
  21. package/lib/components/VColorPicker/VColorPickerCanvas.css +2 -1
  22. package/lib/components/VColorPicker/VColorPickerCanvas.mjs +36 -18
  23. package/lib/components/VColorPicker/VColorPickerCanvas.mjs.map +1 -1
  24. package/lib/components/VColorPicker/VColorPickerCanvas.sass +2 -1
  25. package/lib/components/VColorPicker/VColorPickerEdit.mjs +4 -4
  26. package/lib/components/VColorPicker/VColorPickerEdit.mjs.map +1 -1
  27. package/lib/components/VColorPicker/VColorPickerPreview.mjs +2 -2
  28. package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
  29. package/lib/components/VColorPicker/util/index.mjs +2 -5
  30. package/lib/components/VColorPicker/util/index.mjs.map +1 -1
  31. package/lib/components/VFooter/index.d.ts +1 -1
  32. package/lib/components/VOverlay/scrollStrategies.mjs +1 -1
  33. package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
  34. package/lib/components/VSheet/VSheet.mjs +22 -12
  35. package/lib/components/VSheet/VSheet.mjs.map +1 -1
  36. package/lib/components/VSheet/index.d.ts +1 -1
  37. package/lib/components/VSystemBar/VSystemBar.css +5 -1
  38. package/lib/components/VSystemBar/VSystemBar.sass +5 -1
  39. package/lib/components/VSystemBar/_variables.scss +4 -1
  40. package/lib/components/index.d.ts +2 -2
  41. package/lib/composables/nested/nested.mjs +2 -2
  42. package/lib/composables/nested/nested.mjs.map +1 -1
  43. package/lib/composables/nested/selectStrategies.mjs +7 -1
  44. package/lib/composables/nested/selectStrategies.mjs.map +1 -1
  45. package/lib/composables/proxiedModel.mjs +1 -1
  46. package/lib/composables/proxiedModel.mjs.map +1 -1
  47. package/lib/composables/resizeObserver.mjs.map +1 -1
  48. package/lib/composables/theme.mjs +21 -13
  49. package/lib/composables/theme.mjs.map +1 -1
  50. package/lib/entry-bundler.mjs +1 -1
  51. package/lib/framework.mjs +1 -1
  52. package/lib/index.d.ts +9 -9
  53. package/lib/labs/VDataTable/VDataTableServer.mjs +2 -2
  54. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  55. package/lib/labs/VVirtualScroll/VVirtualScroll.mjs +3 -3
  56. package/lib/labs/VVirtualScroll/VVirtualScroll.mjs.map +1 -1
  57. package/lib/util/colorUtils.mjs +4 -5
  58. package/lib/util/colorUtils.mjs.map +1 -1
  59. package/package.json +3 -4
@@ -3208,7 +3208,7 @@
3208
3208
  "description": "An alternative styling that reduces `v-list-item` width and rounds the corners. Typically used with **[v-navigation-drawer](/components/navigation-drawers)**"
3209
3209
  },
3210
3210
  "v-list/select-strategy": {
3211
- "type": "\"single-leaf\" | \"leaf\" | \"independent\" | \"single-independent\" | \"classic\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L2-L9\" target=\"_blank\">SelectStrategyFn</a>",
3211
+ "type": "\"single-leaf\" | \"leaf\" | \"independent\" | \"single-independent\" | \"classic\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L4-L11\" target=\"_blank\">SelectStrategyFn</a>",
3212
3212
  "description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/nested.json))"
3213
3213
  },
3214
3214
  "v-list/open-strategy": {
@@ -252,14 +252,14 @@
252
252
  "from": "components/VCheckbox/index.mjs",
253
253
  "styles": []
254
254
  },
255
- "VChipGroup": {
256
- "from": "components/VChipGroup/index.mjs",
257
- "styles": []
258
- },
259
255
  "VChip": {
260
256
  "from": "components/VChip/index.mjs",
261
257
  "styles": []
262
258
  },
259
+ "VChipGroup": {
260
+ "from": "components/VChipGroup/index.mjs",
261
+ "styles": []
262
+ },
263
263
  "VCode": {
264
264
  "from": "components/VCode/index.mjs",
265
265
  "styles": []
@@ -284,6 +284,22 @@
284
284
  "from": "components/VDivider/index.mjs",
285
285
  "styles": []
286
286
  },
287
+ "VExpansionPanels": {
288
+ "from": "components/VExpansionPanel/index.mjs",
289
+ "styles": []
290
+ },
291
+ "VExpansionPanel": {
292
+ "from": "components/VExpansionPanel/index.mjs",
293
+ "styles": []
294
+ },
295
+ "VExpansionPanelText": {
296
+ "from": "components/VExpansionPanel/index.mjs",
297
+ "styles": []
298
+ },
299
+ "VExpansionPanelTitle": {
300
+ "from": "components/VExpansionPanel/index.mjs",
301
+ "styles": []
302
+ },
287
303
  "VField": {
288
304
  "from": "components/VField/index.mjs",
289
305
  "styles": []
@@ -292,14 +308,14 @@
292
308
  "from": "components/VField/index.mjs",
293
309
  "styles": []
294
310
  },
295
- "VFooter": {
296
- "from": "components/VFooter/index.mjs",
297
- "styles": []
298
- },
299
311
  "VFileInput": {
300
312
  "from": "components/VFileInput/index.mjs",
301
313
  "styles": []
302
314
  },
315
+ "VFooter": {
316
+ "from": "components/VFooter/index.mjs",
317
+ "styles": []
318
+ },
303
319
  "VIcon": {
304
320
  "from": "components/VIcon/index.mjs",
305
321
  "styles": []
@@ -384,6 +400,10 @@
384
400
  "from": "components/VMain/index.mjs",
385
401
  "styles": []
386
402
  },
403
+ "VMenu": {
404
+ "from": "components/VMenu/index.mjs",
405
+ "styles": []
406
+ },
387
407
  "VMessages": {
388
408
  "from": "components/VMessages/index.mjs",
389
409
  "styles": []
@@ -392,10 +412,6 @@
392
412
  "from": "components/VNavigationDrawer/index.mjs",
393
413
  "styles": []
394
414
  },
395
- "VMenu": {
396
- "from": "components/VMenu/index.mjs",
397
- "styles": []
398
- },
399
415
  "VOverlay": {
400
416
  "from": "components/VOverlay/index.mjs",
401
417
  "styles": []
@@ -444,14 +460,14 @@
444
460
  "from": "components/VSlideGroup/index.mjs",
445
461
  "styles": []
446
462
  },
447
- "VSnackbar": {
448
- "from": "components/VSnackbar/index.mjs",
449
- "styles": []
450
- },
451
463
  "VSlider": {
452
464
  "from": "components/VSlider/index.mjs",
453
465
  "styles": []
454
466
  },
467
+ "VSnackbar": {
468
+ "from": "components/VSnackbar/index.mjs",
469
+ "styles": []
470
+ },
455
471
  "VSwitch": {
456
472
  "from": "components/VSwitch/index.mjs",
457
473
  "styles": []
@@ -488,10 +504,6 @@
488
504
  "from": "components/VTimeline/index.mjs",
489
505
  "styles": []
490
506
  },
491
- "VTooltip": {
492
- "from": "components/VTooltip/index.mjs",
493
- "styles": []
494
- },
495
507
  "VToolbar": {
496
508
  "from": "components/VToolbar/index.mjs",
497
509
  "styles": []
@@ -504,6 +516,10 @@
504
516
  "from": "components/VToolbar/index.mjs",
505
517
  "styles": []
506
518
  },
519
+ "VTooltip": {
520
+ "from": "components/VTooltip/index.mjs",
521
+ "styles": []
522
+ },
507
523
  "VWindow": {
508
524
  "from": "components/VWindow/index.mjs",
509
525
  "styles": []
@@ -511,22 +527,6 @@
511
527
  "VWindowItem": {
512
528
  "from": "components/VWindow/index.mjs",
513
529
  "styles": []
514
- },
515
- "VExpansionPanels": {
516
- "from": "components/VExpansionPanel/index.mjs",
517
- "styles": []
518
- },
519
- "VExpansionPanel": {
520
- "from": "components/VExpansionPanel/index.mjs",
521
- "styles": []
522
- },
523
- "VExpansionPanelText": {
524
- "from": "components/VExpansionPanel/index.mjs",
525
- "styles": []
526
- },
527
- "VExpansionPanelTitle": {
528
- "from": "components/VExpansionPanel/index.mjs",
529
- "styles": []
530
530
  }
531
531
  },
532
532
  "directives": [
@@ -2,7 +2,7 @@
2
2
  "$schema": "http://json.schemastore.org/web-types",
3
3
  "framework": "vue",
4
4
  "name": "vuetify",
5
- "version": "3.1.5",
5
+ "version": "3.1.6",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
@@ -11733,7 +11733,7 @@
11733
11733
  "default": "'single-leaf'",
11734
11734
  "value": {
11735
11735
  "kind": "expression",
11736
- "type": "\"single-leaf\" | \"leaf\" | \"independent\" | \"single-independent\" | \"classic\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L2-L9\" target=\"_blank\">SelectStrategyFn</a>"
11736
+ "type": "\"single-leaf\" | \"leaf\" | \"independent\" | \"single-independent\" | \"classic\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L4-L11\" target=\"_blank\">SelectStrategyFn</a>"
11737
11737
  }
11738
11738
  },
11739
11739
  {
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.1.5
2
+ * Vuetify v3.1.6
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -15652,6 +15652,15 @@ html.overflow-y-hidden {
15652
15652
  font-weight: normal;
15653
15653
  padding: 0.2em 0.4rem;
15654
15654
  box-shadow: 0px 3px 1px -2px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 2px 2px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
15655
+ }.v-virtual-scroll {
15656
+ display: block;
15657
+ flex: 1 1 auto;
15658
+ max-width: 100%;
15659
+ overflow: auto;
15660
+ position: relative;
15661
+ }
15662
+ .v-virtual-scroll__container {
15663
+ display: block;
15655
15664
  }.v-data-table {
15656
15665
  width: 100%;
15657
15666
  }
@@ -15800,15 +15809,6 @@ html.overflow-y-hidden {
15800
15809
 
15801
15810
  .v-data-table-footer__page {
15802
15811
  padding: 0 8px;
15803
- }.v-virtual-scroll {
15804
- display: block;
15805
- flex: 1 1 auto;
15806
- max-width: 100%;
15807
- overflow: auto;
15808
- position: relative;
15809
- }
15810
- .v-virtual-scroll__container {
15811
- display: block;
15812
15812
  }.v-application {
15813
15813
  display: flex;
15814
15814
  background: rgb(var(--v-theme-background));
@@ -17793,94 +17793,11 @@ html.overflow-y-hidden {
17793
17793
  }
17794
17794
  .v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
17795
17795
  box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
17796
- }.v-input--density-default {
17797
- --combobox-chips-margin-bottom: 0px;
17798
- }
17799
-
17800
- .v-input--density-comfortable {
17801
- --combobox-chips-margin-bottom: 2px;
17802
- }
17803
-
17804
- .v-input--density-compact {
17805
- --combobox-chips-margin-bottom: 4px;
17806
- }
17807
-
17808
- .v-combobox .v-field .v-text-field__prefix,
17809
- .v-combobox .v-field .v-text-field__suffix,
17810
- .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
17811
- cursor: text;
17812
- }
17813
- .v-combobox .v-field .v-field__input > input {
17814
- align-self: flex-start;
17815
- flex: 1 1;
17816
- }
17817
- .v-combobox .v-field .v-field__append-inner > .v-icon {
17818
- margin-inline-start: 4px;
17819
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17820
- }
17821
- .v-combobox .v-field:not(.v-field--focused) input {
17822
- min-width: 0;
17823
- }
17824
- .v-combobox .v-field--dirty .v-combobox__selection {
17825
- margin-inline-end: 2px;
17826
- }
17827
- .v-combobox .v-field--single-line .v-combobox__selection-text {
17828
- overflow: hidden;
17829
- text-overflow: ellipsis;
17830
- white-space: nowrap;
17831
- }
17832
-
17833
- .v-combobox__content {
17834
- overflow: hidden;
17835
- 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));
17836
- border-radius: 4px;
17837
- }
17838
- .v-combobox__mask {
17839
- background: rgb(var(--v-theme-on-surface-variant));
17840
- }
17841
- .v-combobox__selection {
17842
- display: inline-flex;
17843
- letter-spacing: inherit;
17844
- line-height: inherit;
17845
- max-width: 100%;
17846
- }
17847
- .v-combobox--active-menu .v-field__append-inner > .v-icon {
17848
- opacity: var(--v-high-emphasis-opacity);
17849
- transform: rotate(180deg);
17850
- }
17851
- .v-combobox--chips .v-combobox__selection {
17852
- margin-top: 2px;
17853
- margin-bottom: var(--combobox-chips-margin-bottom);
17854
- }
17855
- .v-combobox--chips .v-combobox__selection:first-child {
17856
- margin-inline-start: 0;
17857
- }
17858
- .v-combobox--selecting-index .v-combobox__selection {
17859
- opacity: var(--v-medium-emphasis-opacity);
17860
- }
17861
- .v-combobox--selecting-index .v-combobox__selection--selected {
17862
- opacity: 1;
17863
- }
17864
- .v-combobox--selecting-index .v-field__input > input {
17865
- caret-color: transparent !important;
17866
- }
17867
- .v-combobox--single.v-text-field input {
17868
- flex: 1 1;
17869
- position: absolute;
17870
- left: 0;
17871
- right: 0;
17872
- width: 100%;
17873
- padding-inline-start: inherit;
17874
- padding-inline-end: inherit;
17875
- }
17876
- .v-combobox--single .v-field--active input {
17877
- transition: none;
17878
- }
17879
- .v-combobox--single .v-field--dirty:not(.v-field--focused) input {
17880
- opacity: 0;
17881
- }
17882
- .v-combobox--single .v-field--focused .v-combobox__selection {
17883
- opacity: 0;
17796
+ }.v-counter {
17797
+ color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
17798
+ flex: 0 1 auto;
17799
+ font-size: 12px;
17800
+ transition-duration: 150ms;
17884
17801
  }.v-container {
17885
17802
  width: 100%;
17886
17803
  padding: 16px;
@@ -18762,11 +18679,6 @@ html.overflow-y-hidden {
18762
18679
  .offset-xxl-11.v-locale--is-rtl, .v-locale--is-rtl .offset-xxl-11 {
18763
18680
  margin-right: 91.6666666667%;
18764
18681
  }
18765
- }.v-counter {
18766
- color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
18767
- flex: 0 1 auto;
18768
- font-size: 12px;
18769
- transition-duration: 150ms;
18770
18682
  }.v-dialog {
18771
18683
  align-items: center;
18772
18684
  justify-content: center;
@@ -18872,6 +18784,94 @@ html.overflow-y-hidden {
18872
18784
  margin-bottom: 8px;
18873
18785
  margin-top: 8px;
18874
18786
  max-height: calc(100% - 16px);
18787
+ }.v-input--density-default {
18788
+ --combobox-chips-margin-bottom: 0px;
18789
+ }
18790
+
18791
+ .v-input--density-comfortable {
18792
+ --combobox-chips-margin-bottom: 2px;
18793
+ }
18794
+
18795
+ .v-input--density-compact {
18796
+ --combobox-chips-margin-bottom: 4px;
18797
+ }
18798
+
18799
+ .v-combobox .v-field .v-text-field__prefix,
18800
+ .v-combobox .v-field .v-text-field__suffix,
18801
+ .v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
18802
+ cursor: text;
18803
+ }
18804
+ .v-combobox .v-field .v-field__input > input {
18805
+ align-self: flex-start;
18806
+ flex: 1 1;
18807
+ }
18808
+ .v-combobox .v-field .v-field__append-inner > .v-icon {
18809
+ margin-inline-start: 4px;
18810
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
18811
+ }
18812
+ .v-combobox .v-field:not(.v-field--focused) input {
18813
+ min-width: 0;
18814
+ }
18815
+ .v-combobox .v-field--dirty .v-combobox__selection {
18816
+ margin-inline-end: 2px;
18817
+ }
18818
+ .v-combobox .v-field--single-line .v-combobox__selection-text {
18819
+ overflow: hidden;
18820
+ text-overflow: ellipsis;
18821
+ white-space: nowrap;
18822
+ }
18823
+
18824
+ .v-combobox__content {
18825
+ overflow: hidden;
18826
+ 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));
18827
+ border-radius: 4px;
18828
+ }
18829
+ .v-combobox__mask {
18830
+ background: rgb(var(--v-theme-on-surface-variant));
18831
+ }
18832
+ .v-combobox__selection {
18833
+ display: inline-flex;
18834
+ letter-spacing: inherit;
18835
+ line-height: inherit;
18836
+ max-width: 100%;
18837
+ }
18838
+ .v-combobox--active-menu .v-field__append-inner > .v-icon {
18839
+ opacity: var(--v-high-emphasis-opacity);
18840
+ transform: rotate(180deg);
18841
+ }
18842
+ .v-combobox--chips .v-combobox__selection {
18843
+ margin-top: 2px;
18844
+ margin-bottom: var(--combobox-chips-margin-bottom);
18845
+ }
18846
+ .v-combobox--chips .v-combobox__selection:first-child {
18847
+ margin-inline-start: 0;
18848
+ }
18849
+ .v-combobox--selecting-index .v-combobox__selection {
18850
+ opacity: var(--v-medium-emphasis-opacity);
18851
+ }
18852
+ .v-combobox--selecting-index .v-combobox__selection--selected {
18853
+ opacity: 1;
18854
+ }
18855
+ .v-combobox--selecting-index .v-field__input > input {
18856
+ caret-color: transparent !important;
18857
+ }
18858
+ .v-combobox--single.v-text-field input {
18859
+ flex: 1 1;
18860
+ position: absolute;
18861
+ left: 0;
18862
+ right: 0;
18863
+ width: 100%;
18864
+ padding-inline-start: inherit;
18865
+ padding-inline-end: inherit;
18866
+ }
18867
+ .v-combobox--single .v-field--active input {
18868
+ transition: none;
18869
+ }
18870
+ .v-combobox--single .v-field--dirty:not(.v-field--focused) input {
18871
+ opacity: 0;
18872
+ }
18873
+ .v-combobox--single .v-field--focused .v-combobox__selection {
18874
+ opacity: 0;
18875
18875
  }.v-expansion-panel {
18876
18876
  background-color: rgb(var(--v-theme-surface));
18877
18877
  color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
@@ -21002,14 +21002,6 @@ html.v-overlay-scroll-blocked {
21002
21002
  }
21003
21003
  .v-select--selected .v-field .v-field__input > input {
21004
21004
  opacity: 0;
21005
- }.v-selection-control-group {
21006
- grid-area: control;
21007
- display: flex;
21008
- flex-direction: column;
21009
- }
21010
- .v-selection-control-group--inline {
21011
- flex-direction: row;
21012
- flex-wrap: wrap;
21013
21005
  }.v-selection-control {
21014
21006
  align-items: center;
21015
21007
  contain: layout;
@@ -21112,6 +21104,14 @@ html.v-overlay-scroll-blocked {
21112
21104
  }
21113
21105
  .v-selection-control--focus-visible .v-selection-control__input::before {
21114
21106
  opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
21107
+ }.v-selection-control-group {
21108
+ grid-area: control;
21109
+ display: flex;
21110
+ flex-direction: column;
21111
+ }
21112
+ .v-selection-control-group--inline {
21113
+ flex-direction: row;
21114
+ flex-wrap: wrap;
21115
21115
  }.v-sheet {
21116
21116
  display: block;
21117
21117
  border-color: rgba(var(--v-border-color), var(--v-border-opacity));
@@ -21375,7 +21375,8 @@ html.v-overlay-scroll-blocked {
21375
21375
  height: 24px;
21376
21376
  justify-content: flex-end;
21377
21377
  max-width: 100%;
21378
- padding: 0 8px;
21378
+ padding-inline-start: 8px;
21379
+ padding-inline-end: 8px;
21379
21380
  position: relative;
21380
21381
  text-align: end;
21381
21382
  width: 100%;
@@ -21402,6 +21403,9 @@ html.v-overlay-scroll-blocked {
21402
21403
  }
21403
21404
  .v-system-bar--window {
21404
21405
  height: 32px;
21406
+ }
21407
+ .v-system-bar:not(.v-system-bar--absolute) {
21408
+ padding-inline-end: calc(var(--v-scrollbar-offset) + 8px);
21405
21409
  }.v-tabs {
21406
21410
  display: flex;
21407
21411
  height: var(--v-tabs-height);
@@ -22311,27 +22315,6 @@ html.v-overlay-scroll-blocked {
22311
22315
  }
22312
22316
  .v-toolbar-items > .v-btn {
22313
22317
  border-radius: 0;
22314
- }.v-tooltip .v-overlay__content {
22315
- background: rgba(var(--v-theme-surface-variant), 0.7);
22316
- color: rgb(var(--v-theme-on-surface-variant));
22317
- border-radius: 4px;
22318
- font-size: 0.875rem;
22319
- line-height: 1.6;
22320
- display: inline-block;
22321
- padding: 5px 16px;
22322
- text-transform: initial;
22323
- width: auto;
22324
- opacity: 1;
22325
- pointer-events: none;
22326
- transition-property: opacity, transform;
22327
- }
22328
- .v-tooltip .v-overlay__content[class*=enter-active] {
22329
- transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
22330
- transition-duration: 150ms;
22331
- }
22332
- .v-tooltip .v-overlay__content[class*=leave-active] {
22333
- transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
22334
- transition-duration: 75ms;
22335
22318
  }.v-window {
22336
22319
  overflow: hidden;
22337
22320
  }
@@ -22401,10 +22384,32 @@ html.v-overlay-scroll-blocked {
22401
22384
  }
22402
22385
  .v-window-y-reverse-transition-leave-to {
22403
22386
  transform: translateY(100%);
22387
+ }.v-tooltip .v-overlay__content {
22388
+ background: rgba(var(--v-theme-surface-variant), 0.7);
22389
+ color: rgb(var(--v-theme-on-surface-variant));
22390
+ border-radius: 4px;
22391
+ font-size: 0.875rem;
22392
+ line-height: 1.6;
22393
+ display: inline-block;
22394
+ padding: 5px 16px;
22395
+ text-transform: initial;
22396
+ width: auto;
22397
+ opacity: 1;
22398
+ pointer-events: none;
22399
+ transition-property: opacity, transform;
22400
+ }
22401
+ .v-tooltip .v-overlay__content[class*=enter-active] {
22402
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
22403
+ transition-duration: 150ms;
22404
+ }
22405
+ .v-tooltip .v-overlay__content[class*=leave-active] {
22406
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
22407
+ transition-duration: 75ms;
22404
22408
  }.v-color-picker-canvas {
22409
+ display: flex;
22405
22410
  position: relative;
22406
22411
  overflow: hidden;
22407
- contain: strict;
22412
+ contain: content;
22408
22413
  }
22409
22414
  .v-color-picker-canvas__dot {
22410
22415
  position: absolute;
@@ -8362,8 +8362,8 @@ declare const VFooter: vue.DefineComponent<{
8362
8362
  height: string | number;
8363
8363
  order: string | number;
8364
8364
  tag: string;
8365
- rounded: string | number | boolean;
8366
8365
  app: boolean;
8366
+ rounded: string | number | boolean;
8367
8367
  }>;
8368
8368
  type VFooter = InstanceType<typeof VFooter>;
8369
8369
 
@@ -13827,7 +13827,7 @@ declare const VSheet: vue.DefineComponent<{
13827
13827
  } | undefined;
13828
13828
  } & {
13829
13829
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
13830
- }, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
13830
+ }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
13831
13831
  tag: string;
13832
13832
  } & {
13833
13833
  location?: Anchor | undefined;