vuetify 3.1.5 → 3.1.7

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 (140) hide show
  1. package/dist/json/attributes.json +562 -34
  2. package/dist/json/importMap.json +36 -36
  3. package/dist/json/tags.json +136 -2
  4. package/dist/json/web-types.json +2163 -85
  5. package/dist/vuetify-labs.css +30 -25
  6. package/dist/vuetify-labs.d.ts +3455 -146
  7. package/dist/vuetify-labs.esm.js +123 -73
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +123 -73
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +89 -84
  12. package/dist/vuetify.d.ts +1928 -77
  13. package/dist/vuetify.esm.js +102 -63
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +102 -63
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +674 -669
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/components/VAlert/index.d.ts +22 -0
  21. package/lib/components/VApp/index.d.ts +6 -0
  22. package/lib/components/VAppBar/index.d.ts +36 -0
  23. package/lib/components/VAutocomplete/index.d.ts +117 -6
  24. package/lib/components/VAvatar/index.d.ts +6 -0
  25. package/lib/components/VBadge/index.d.ts +8 -0
  26. package/lib/components/VBanner/index.d.ts +24 -0
  27. package/lib/components/VBottomNavigation/index.d.ts +6 -0
  28. package/lib/components/VBreadcrumbs/index.d.ts +28 -4
  29. package/lib/components/VBtn/index.d.ts +12 -0
  30. package/lib/components/VBtnGroup/index.d.ts +6 -0
  31. package/lib/components/VBtnToggle/index.d.ts +6 -0
  32. package/lib/components/VCard/index.d.ts +60 -0
  33. package/lib/components/VCarousel/index.d.ts +60 -0
  34. package/lib/components/VCheckbox/index.d.ts +38 -0
  35. package/lib/components/VChip/index.d.ts +12 -0
  36. package/lib/components/VChipGroup/index.d.ts +6 -0
  37. package/lib/components/VCode/index.d.ts +6 -0
  38. package/lib/components/VColorPicker/VColorPicker.mjs +9 -1
  39. package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
  40. package/lib/components/VColorPicker/VColorPickerCanvas.css +2 -1
  41. package/lib/components/VColorPicker/VColorPickerCanvas.mjs +36 -18
  42. package/lib/components/VColorPicker/VColorPickerCanvas.mjs.map +1 -1
  43. package/lib/components/VColorPicker/VColorPickerCanvas.sass +2 -1
  44. package/lib/components/VColorPicker/VColorPickerEdit.mjs +4 -4
  45. package/lib/components/VColorPicker/VColorPickerEdit.mjs.map +1 -1
  46. package/lib/components/VColorPicker/VColorPickerPreview.mjs +2 -2
  47. package/lib/components/VColorPicker/VColorPickerPreview.mjs.map +1 -1
  48. package/lib/components/VColorPicker/util/index.mjs +2 -5
  49. package/lib/components/VColorPicker/util/index.mjs.map +1 -1
  50. package/lib/components/VCombobox/index.d.ts +117 -6
  51. package/lib/components/VCounter/index.d.ts +24 -0
  52. package/lib/components/VDefaultsProvider/index.d.ts +6 -0
  53. package/lib/components/VDialog/index.d.ts +64 -1
  54. package/lib/components/VDivider/index.d.ts +6 -0
  55. package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
  56. package/lib/components/VExpansionPanel/index.d.ts +49 -12
  57. package/lib/components/VField/index.d.ts +20 -6
  58. package/lib/components/VFileInput/index.d.ts +43 -1
  59. package/lib/components/VFooter/index.d.ts +7 -1
  60. package/lib/components/VForm/index.d.ts +6 -0
  61. package/lib/components/VGrid/index.d.ts +24 -0
  62. package/lib/components/VHover/index.d.ts +12 -0
  63. package/lib/components/VIcon/index.d.ts +12 -0
  64. package/lib/components/VImg/index.d.ts +12 -0
  65. package/lib/components/VInput/index.d.ts +12 -0
  66. package/lib/components/VItemGroup/index.d.ts +12 -0
  67. package/lib/components/VKbd/index.d.ts +6 -0
  68. package/lib/components/VLabel/index.d.ts +6 -0
  69. package/lib/components/VLayout/index.d.ts +12 -0
  70. package/lib/components/VLazy/index.d.ts +6 -0
  71. package/lib/components/VList/index.d.ts +77 -6
  72. package/lib/components/VLocaleProvider/index.d.ts +6 -0
  73. package/lib/components/VMain/index.d.ts +6 -0
  74. package/lib/components/VMenu/index.d.ts +64 -1
  75. package/lib/components/VMessages/index.d.ts +24 -0
  76. package/lib/components/VNavigationDrawer/index.d.ts +12 -0
  77. package/lib/components/VNoSsr/index.d.ts +6 -0
  78. package/lib/components/VOverlay/index.d.ts +18 -0
  79. package/lib/components/VOverlay/scrollStrategies.mjs +1 -1
  80. package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
  81. package/lib/components/VPagination/index.d.ts +14 -0
  82. package/lib/components/VParallax/index.d.ts +12 -0
  83. package/lib/components/VProgressCircular/index.d.ts +6 -0
  84. package/lib/components/VProgressLinear/index.d.ts +12 -0
  85. package/lib/components/VRadio/index.d.ts +16 -0
  86. package/lib/components/VRadioGroup/index.d.ts +22 -0
  87. package/lib/components/VRangeSlider/index.d.ts +16 -0
  88. package/lib/components/VRating/index.d.ts +8 -0
  89. package/lib/components/VResponsive/index.d.ts +8 -0
  90. package/lib/components/VSelect/index.d.ts +183 -6
  91. package/lib/components/VSelectionControl/index.d.ts +14 -6
  92. package/lib/components/VSelectionControlGroup/index.d.ts +6 -0
  93. package/lib/components/VSheet/VSheet.mjs +22 -12
  94. package/lib/components/VSheet/VSheet.mjs.map +1 -1
  95. package/lib/components/VSheet/index.d.ts +7 -1
  96. package/lib/components/VSlideGroup/index.d.ts +26 -0
  97. package/lib/components/VSlider/index.d.ts +16 -0
  98. package/lib/components/VSnackbar/index.d.ts +44 -1
  99. package/lib/components/VSwitch/index.d.ts +22 -0
  100. package/lib/components/VSystemBar/VSystemBar.css +5 -1
  101. package/lib/components/VSystemBar/VSystemBar.sass +5 -1
  102. package/lib/components/VSystemBar/_variables.scss +4 -1
  103. package/lib/components/VSystemBar/index.d.ts +6 -0
  104. package/lib/components/VTable/index.d.ts +12 -0
  105. package/lib/components/VTabs/index.d.ts +12 -0
  106. package/lib/components/VTextField/index.d.ts +54 -6
  107. package/lib/components/VTextarea/index.d.ts +39 -1
  108. package/lib/components/VThemeProvider/index.d.ts +6 -0
  109. package/lib/components/VTimeline/index.d.ts +16 -0
  110. package/lib/components/VToolbar/index.d.ts +30 -0
  111. package/lib/components/VTooltip/index.d.ts +46 -1
  112. package/lib/components/VValidation/index.d.ts +6 -0
  113. package/lib/components/VWindow/index.d.ts +34 -0
  114. package/lib/components/index.d.ts +1918 -67
  115. package/lib/components/transitions/index.d.ts +96 -0
  116. package/lib/composables/nested/nested.mjs +2 -2
  117. package/lib/composables/nested/nested.mjs.map +1 -1
  118. package/lib/composables/nested/selectStrategies.mjs +7 -1
  119. package/lib/composables/nested/selectStrategies.mjs.map +1 -1
  120. package/lib/composables/proxiedModel.mjs +1 -1
  121. package/lib/composables/proxiedModel.mjs.map +1 -1
  122. package/lib/composables/resizeObserver.mjs.map +1 -1
  123. package/lib/composables/theme.mjs +21 -13
  124. package/lib/composables/theme.mjs.map +1 -1
  125. package/lib/entry-bundler.mjs +1 -1
  126. package/lib/framework.mjs +1 -1
  127. package/lib/index.d.ts +9 -9
  128. package/lib/labs/VDataTable/VDataTableRows.mjs +4 -6
  129. package/lib/labs/VDataTable/VDataTableRows.mjs.map +1 -1
  130. package/lib/labs/VDataTable/VDataTableServer.mjs +2 -2
  131. package/lib/labs/VDataTable/VDataTableServer.mjs.map +1 -1
  132. package/lib/labs/VDataTable/index.d.ts +1503 -48
  133. package/lib/labs/VVirtualScroll/VVirtualScroll.mjs +18 -5
  134. package/lib/labs/VVirtualScroll/VVirtualScroll.mjs.map +1 -1
  135. package/lib/labs/VVirtualScroll/index.d.ts +9 -6
  136. package/lib/labs/components.d.ts +1512 -54
  137. package/lib/util/colorUtils.mjs +4 -5
  138. package/lib/util/colorUtils.mjs.map +1 -1
  139. package/lib/util/defineComponent.mjs.map +1 -1
  140. package/package.json +4 -4
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.1.5
2
+ * Vuetify v3.1.7
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -20409,6 +20409,20 @@ textarea.v-field__input::placeholder {
20409
20409
  opacity: 0.2;
20410
20410
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20411
20411
  z-index: 1;
20412
+ }.v-pagination__list {
20413
+ display: inline-flex;
20414
+ list-style-type: none;
20415
+ justify-content: center;
20416
+ width: 100%;
20417
+ }
20418
+ .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
20419
+ margin: 0.3rem;
20420
+ }.v-parallax {
20421
+ position: relative;
20422
+ overflow: hidden;
20423
+ }
20424
+ .v-parallax--active > .v-img__img {
20425
+ will-change: transform;
20412
20426
  }.v-overlay-container {
20413
20427
  contain: layout;
20414
20428
  left: 0;
@@ -20470,20 +20484,6 @@ html.v-overlay-scroll-blocked {
20470
20484
 
20471
20485
  .v-overlay--scroll-blocked {
20472
20486
  padding-inline-end: var(--v-scrollbar-offset);
20473
- }.v-pagination__list {
20474
- display: inline-flex;
20475
- list-style-type: none;
20476
- justify-content: center;
20477
- width: 100%;
20478
- }
20479
- .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
20480
- margin: 0.3rem;
20481
- }.v-parallax {
20482
- position: relative;
20483
- overflow: hidden;
20484
- }
20485
- .v-parallax--active > .v-img__img {
20486
- will-change: transform;
20487
20487
  }.v-progress-circular {
20488
20488
  align-items: center;
20489
20489
  display: inline-flex;
@@ -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);
@@ -22402,9 +22406,10 @@ html.v-overlay-scroll-blocked {
22402
22406
  .v-window-y-reverse-transition-leave-to {
22403
22407
  transform: translateY(100%);
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;