@vuetify/nightly 3.2.2-master-20230501.0 → 3.2.2-master-20230502.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 (52) hide show
  1. package/CHANGELOG.md +9 -2
  2. package/dist/json/attributes.json +770 -634
  3. package/dist/json/importMap.json +4 -4
  4. package/dist/json/tags.json +35 -1
  5. package/dist/json/web-types.json +1649 -1319
  6. package/dist/vuetify-labs.css +183 -177
  7. package/dist/vuetify-labs.d.ts +386 -53
  8. package/dist/vuetify-labs.esm.js +55 -64
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +55 -64
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +100 -94
  13. package/dist/vuetify.d.ts +387 -54
  14. package/dist/vuetify.esm.js +55 -64
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +55 -64
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +115 -116
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAppBar/VAppBar.mjs +7 -11
  22. package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
  23. package/lib/components/VAppBar/VAppBarNavIcon.mjs +10 -16
  24. package/lib/components/VAppBar/VAppBarNavIcon.mjs.map +1 -1
  25. package/lib/components/VAppBar/index.d.ts +394 -28
  26. package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
  27. package/lib/components/VAutocomplete/VAutocomplete.mjs +5 -2
  28. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  29. package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
  30. package/lib/components/VBtn/VBtn.mjs +7 -6
  31. package/lib/components/VBtn/VBtn.mjs.map +1 -1
  32. package/lib/components/VCombobox/VCombobox.mjs +5 -2
  33. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  34. package/lib/components/VFileInput/VFileInput.mjs +2 -1
  35. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  36. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +1 -8
  37. package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
  38. package/lib/components/VSelect/VSelect.mjs +5 -2
  39. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  40. package/lib/components/VSheet/VSheet.css +6 -0
  41. package/lib/components/VSheet/_variables.scss +1 -1
  42. package/lib/components/VTextField/VTextField.mjs +1 -1
  43. package/lib/components/VTextField/VTextField.mjs.map +1 -1
  44. package/lib/components/VTextarea/VTextarea.mjs +1 -1
  45. package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
  46. package/lib/components/index.d.ts +386 -53
  47. package/lib/composables/scroll.mjs +16 -17
  48. package/lib/composables/scroll.mjs.map +1 -1
  49. package/lib/entry-bundler.mjs +1 -1
  50. package/lib/framework.mjs +1 -1
  51. package/lib/index.d.ts +1 -1
  52. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.2.2-master-20230501.0
2
+ * Vuetify v3.2.2-master-20230502.0
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -15954,31 +15954,6 @@ html.overflow-y-hidden {
15954
15954
  font-weight: normal;
15955
15955
  padding: 0.2em 0.4rem;
15956
15956
  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));
15957
- }.v-infinite-scroll--horizontal {
15958
- display: flex;
15959
- flex-direction: row;
15960
- overflow-x: auto;
15961
- }
15962
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
15963
- height: 100%;
15964
- width: 1px;
15965
- }
15966
-
15967
- .v-infinite-scroll--vertical {
15968
- display: flex;
15969
- flex-direction: column;
15970
- overflow-y: auto;
15971
- }
15972
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
15973
- height: 1px;
15974
- width: 100%;
15975
- }
15976
-
15977
- .v-infinite-scroll__side {
15978
- align-items: center;
15979
- display: flex;
15980
- justify-content: center;
15981
- padding: 8px;
15982
15957
  }.v-data-table {
15983
15958
  width: 100%;
15984
15959
  }
@@ -16142,6 +16117,31 @@ html.overflow-y-hidden {
16142
16117
 
16143
16118
  .v-data-table-footer__page {
16144
16119
  padding: 0 8px;
16120
+ }.v-infinite-scroll--horizontal {
16121
+ display: flex;
16122
+ flex-direction: row;
16123
+ overflow-x: auto;
16124
+ }
16125
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
16126
+ height: 100%;
16127
+ width: 1px;
16128
+ }
16129
+
16130
+ .v-infinite-scroll--vertical {
16131
+ display: flex;
16132
+ flex-direction: column;
16133
+ overflow-y: auto;
16134
+ }
16135
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
16136
+ height: 1px;
16137
+ width: 100%;
16138
+ }
16139
+
16140
+ .v-infinite-scroll__side {
16141
+ align-items: center;
16142
+ display: flex;
16143
+ justify-content: center;
16144
+ padding: 8px;
16145
16145
  }.v-skeleton-loader {
16146
16146
  align-items: center;
16147
16147
  background: rgb(var(--v-theme-surface));
@@ -16378,6 +16378,18 @@ html.overflow-y-hidden {
16378
16378
  min-height: 100vh;
16379
16379
  min-height: 100dvh;
16380
16380
  position: relative;
16381
+ }.v-app-bar {
16382
+ display: flex;
16383
+ }
16384
+ .v-app-bar.v-toolbar {
16385
+ background: rgb(var(--v-theme-surface));
16386
+ color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
16387
+ }
16388
+ .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
16389
+ 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));
16390
+ }
16391
+ .v-app-bar:not(.v-toolbar--absolute) {
16392
+ padding-inline-end: var(--v-scrollbar-offset);
16381
16393
  }.v-alert {
16382
16394
  display: grid;
16383
16395
  flex: 1 1;
@@ -16588,18 +16600,6 @@ html.overflow-y-hidden {
16588
16600
  text-transform: none;
16589
16601
  word-break: normal;
16590
16602
  word-wrap: break-word;
16591
- }.v-app-bar {
16592
- display: flex;
16593
- }
16594
- .v-app-bar.v-toolbar {
16595
- background: rgb(var(--v-theme-surface));
16596
- color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
16597
- }
16598
- .v-app-bar.v-toolbar:not(.v-toolbar--flat) {
16599
- 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));
16600
- }
16601
- .v-app-bar:not(.v-toolbar--absolute) {
16602
- padding-inline-end: var(--v-scrollbar-offset);
16603
16603
  }.v-input--density-default {
16604
16604
  --autocomplete-chips-margin-bottom: 0px;
16605
16605
  }
@@ -16686,12 +16686,83 @@ html.overflow-y-hidden {
16686
16686
  .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
16687
16687
  opacity: 0;
16688
16688
  }
16689
- .v-autocomplete--single .v-field--focused .v-autocomplete__selection-text {
16689
+ .v-autocomplete--single .v-field--focused .v-autocomplete__selection {
16690
16690
  opacity: 0;
16691
16691
  }
16692
16692
  .v-autocomplete--selection-slot.v-text-field input {
16693
16693
  position: relative;
16694
16694
  padding-inline-start: 0;
16695
+ }.v-badge {
16696
+ display: inline-block;
16697
+ line-height: 1;
16698
+ }
16699
+
16700
+ .v-badge__badge {
16701
+ align-items: center;
16702
+ display: inline-flex;
16703
+ border-radius: 10px;
16704
+ font-size: 0.75rem;
16705
+ font-weight: 500;
16706
+ height: 1.25rem;
16707
+ justify-content: center;
16708
+ min-width: 20px;
16709
+ padding: 4px 6px;
16710
+ pointer-events: auto;
16711
+ position: absolute;
16712
+ text-align: center;
16713
+ text-indent: 0;
16714
+ transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
16715
+ white-space: nowrap;
16716
+ background: rgb(var(--v-theme-surface-variant));
16717
+ color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
16718
+ }
16719
+ .v-badge--bordered .v-badge__badge::after {
16720
+ border-radius: inherit;
16721
+ border-style: solid;
16722
+ border-width: 2px;
16723
+ bottom: 0;
16724
+ color: rgb(var(--v-theme-background));
16725
+ content: "";
16726
+ left: 0;
16727
+ position: absolute;
16728
+ right: 0;
16729
+ top: 0;
16730
+ transform: scale(1.2);
16731
+ }
16732
+ .v-badge--dot .v-badge__badge {
16733
+ border-radius: 4.5px;
16734
+ height: 9px;
16735
+ min-width: 0;
16736
+ padding: 0;
16737
+ width: 9px;
16738
+ }
16739
+ .v-badge--dot .v-badge__badge::after {
16740
+ border-width: 1.5px;
16741
+ }
16742
+ .v-badge--inline .v-badge__badge {
16743
+ position: relative;
16744
+ vertical-align: middle;
16745
+ }
16746
+ .v-badge__badge .v-icon {
16747
+ color: inherit;
16748
+ font-size: 0.75rem;
16749
+ margin: 0 -2px;
16750
+ }
16751
+ .v-badge__badge img,
16752
+ .v-badge__badge .v-img {
16753
+ height: 100%;
16754
+ width: 100%;
16755
+ }
16756
+
16757
+ .v-badge__wrapper {
16758
+ display: flex;
16759
+ position: relative;
16760
+ }
16761
+ .v-badge--inline .v-badge__wrapper {
16762
+ align-items: center;
16763
+ display: inline-flex;
16764
+ justify-content: center;
16765
+ margin: 0 4px;
16695
16766
  }.v-avatar {
16696
16767
  flex: none;
16697
16768
  align-items: center;
@@ -16779,77 +16850,6 @@ html.overflow-y-hidden {
16779
16850
  .v-avatar .v-img {
16780
16851
  height: 100%;
16781
16852
  width: 100%;
16782
- }.v-badge {
16783
- display: inline-block;
16784
- line-height: 1;
16785
- }
16786
-
16787
- .v-badge__badge {
16788
- align-items: center;
16789
- display: inline-flex;
16790
- border-radius: 10px;
16791
- font-size: 0.75rem;
16792
- font-weight: 500;
16793
- height: 1.25rem;
16794
- justify-content: center;
16795
- min-width: 20px;
16796
- padding: 4px 6px;
16797
- pointer-events: auto;
16798
- position: absolute;
16799
- text-align: center;
16800
- text-indent: 0;
16801
- transition: 0.225s cubic-bezier(0.4, 0, 0.2, 1);
16802
- white-space: nowrap;
16803
- background: rgb(var(--v-theme-surface-variant));
16804
- color: rgba(var(--v-theme-on-surface-variant), var(--v-high-emphasis-opacity));
16805
- }
16806
- .v-badge--bordered .v-badge__badge::after {
16807
- border-radius: inherit;
16808
- border-style: solid;
16809
- border-width: 2px;
16810
- bottom: 0;
16811
- color: rgb(var(--v-theme-background));
16812
- content: "";
16813
- left: 0;
16814
- position: absolute;
16815
- right: 0;
16816
- top: 0;
16817
- transform: scale(1.2);
16818
- }
16819
- .v-badge--dot .v-badge__badge {
16820
- border-radius: 4.5px;
16821
- height: 9px;
16822
- min-width: 0;
16823
- padding: 0;
16824
- width: 9px;
16825
- }
16826
- .v-badge--dot .v-badge__badge::after {
16827
- border-width: 1.5px;
16828
- }
16829
- .v-badge--inline .v-badge__badge {
16830
- position: relative;
16831
- vertical-align: middle;
16832
- }
16833
- .v-badge__badge .v-icon {
16834
- color: inherit;
16835
- font-size: 0.75rem;
16836
- margin: 0 -2px;
16837
- }
16838
- .v-badge__badge img,
16839
- .v-badge__badge .v-img {
16840
- height: 100%;
16841
- width: 100%;
16842
- }
16843
-
16844
- .v-badge__wrapper {
16845
- display: flex;
16846
- position: relative;
16847
- }
16848
- .v-badge--inline .v-badge__wrapper {
16849
- align-items: center;
16850
- display: inline-flex;
16851
- justify-content: center;
16852
- margin: 0 4px;
16853
16853
  }.v-banner {
16854
16854
  display: grid;
16855
16855
  flex: 1 1;
@@ -17935,6 +17935,24 @@ html.overflow-y-hidden {
17935
17935
  width: 50px;
17936
17936
  }.v-checkbox .v-selection-control {
17937
17937
  min-height: var(--v-input-control-height);
17938
+ }.v-chip-group {
17939
+ display: flex;
17940
+ max-width: 100%;
17941
+ min-width: 0;
17942
+ overflow-x: auto;
17943
+ padding: 4px 0;
17944
+ flex-wrap: wrap;
17945
+ }
17946
+ .v-chip-group .v-chip {
17947
+ margin: 4px 8px 4px 0;
17948
+ }
17949
+ .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
17950
+ opacity: var(--v-activated-opacity);
17951
+ }
17952
+
17953
+ .v-chip-group--column {
17954
+ flex-wrap: wrap;
17955
+ white-space: normal;
17938
17956
  }.v-chip {
17939
17957
  align-items: center;
17940
17958
  cursor: default;
@@ -18334,24 +18352,6 @@ html.overflow-y-hidden {
18334
18352
 
18335
18353
  .v-chip--label {
18336
18354
  border-radius: 4px;
18337
- }.v-chip-group {
18338
- display: flex;
18339
- max-width: 100%;
18340
- min-width: 0;
18341
- overflow-x: auto;
18342
- padding: 4px 0;
18343
- flex-wrap: wrap;
18344
- }
18345
- .v-chip-group .v-chip {
18346
- margin: 4px 8px 4px 0;
18347
- }
18348
- .v-chip-group .v-chip.v-chip--selected:not(.v-chip--disabled) .v-chip__overlay {
18349
- opacity: var(--v-activated-opacity);
18350
- }
18351
-
18352
- .v-chip-group--column {
18353
- flex-wrap: wrap;
18354
- white-space: normal;
18355
18355
  }.v-color-picker {
18356
18356
  align-self: flex-start;
18357
18357
  contain: content;
@@ -20370,6 +20370,11 @@ textarea.v-field__input::placeholder {
20370
20370
  .v-input__control {
20371
20371
  display: flex;
20372
20372
  grid-area: control;
20373
+ }.v-item-group {
20374
+ flex: 0 1 auto;
20375
+ max-width: 100%;
20376
+ position: relative;
20377
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20373
20378
  }.v-label {
20374
20379
  align-items: center;
20375
20380
  display: inline-flex;
@@ -20384,11 +20389,6 @@ textarea.v-field__input::placeholder {
20384
20389
 
20385
20390
  .v-label--clickable {
20386
20391
  cursor: pointer;
20387
- }.v-item-group {
20388
- flex: 0 1 auto;
20389
- max-width: 100%;
20390
- position: relative;
20391
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20392
20392
  }.v-layout {
20393
20393
  --v-scrollbar-offset: 0px;
20394
20394
  display: flex;
@@ -20899,34 +20899,8 @@ textarea.v-field__input::placeholder {
20899
20899
 
20900
20900
  .v-list-group__header.v-list-item--active:not(:focus-visible) .v-list-item__overlay {
20901
20901
  opacity: 0;
20902
- }.v-main {
20903
- flex: 1 0 auto;
20904
- max-width: 100%;
20905
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20906
- padding-left: var(--v-layout-left);
20907
- padding-right: var(--v-layout-right);
20908
- padding-top: var(--v-layout-top);
20909
- padding-bottom: var(--v-layout-bottom);
20910
- }
20911
- .v-main__scroller {
20912
- max-width: 100%;
20913
- position: relative;
20914
- }
20915
- .v-main--scrollable {
20916
- display: flex;
20917
- position: absolute;
20918
- top: 0;
20919
- left: 0;
20920
- width: 100%;
20921
- height: 100%;
20922
- }
20923
- .v-main--scrollable > .v-main__scroller {
20924
- flex: 1 1 auto;
20925
- overflow-y: auto;
20926
- --v-layout-left: 0px;
20927
- --v-layout-right: 0px;
20928
- --v-layout-top: 0px;
20929
- --v-layout-bottom: 0px;
20902
+ }.v-locale-provider {
20903
+ display: contents;
20930
20904
  }.v-menu > .v-overlay__content {
20931
20905
  display: flex;
20932
20906
  flex-direction: column;
@@ -20956,8 +20930,34 @@ textarea.v-field__input::placeholder {
20956
20930
  -webkit-hyphens: auto;
20957
20931
  hyphens: auto;
20958
20932
  transition-duration: 150ms;
20959
- }.v-locale-provider {
20960
- display: contents;
20933
+ }.v-main {
20934
+ flex: 1 0 auto;
20935
+ max-width: 100%;
20936
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
20937
+ padding-left: var(--v-layout-left);
20938
+ padding-right: var(--v-layout-right);
20939
+ padding-top: var(--v-layout-top);
20940
+ padding-bottom: var(--v-layout-bottom);
20941
+ }
20942
+ .v-main__scroller {
20943
+ max-width: 100%;
20944
+ position: relative;
20945
+ }
20946
+ .v-main--scrollable {
20947
+ display: flex;
20948
+ position: absolute;
20949
+ top: 0;
20950
+ left: 0;
20951
+ width: 100%;
20952
+ height: 100%;
20953
+ }
20954
+ .v-main--scrollable > .v-main__scroller {
20955
+ flex: 1 1 auto;
20956
+ overflow-y: auto;
20957
+ --v-layout-left: 0px;
20958
+ --v-layout-right: 0px;
20959
+ --v-layout-top: 0px;
20960
+ --v-layout-bottom: 0px;
20961
20961
  }.v-navigation-drawer {
20962
20962
  -webkit-overflow-scrolling: touch;
20963
20963
  background: rgb(var(--v-theme-surface));
@@ -21118,12 +21118,6 @@ html.v-overlay-scroll-blocked {
21118
21118
  }
21119
21119
  .v-pagination__item, .v-pagination__first, .v-pagination__prev, .v-pagination__next, .v-pagination__last {
21120
21120
  margin: 0.3rem;
21121
- }.v-parallax {
21122
- position: relative;
21123
- overflow: hidden;
21124
- }
21125
- .v-parallax--active > .v-img__img {
21126
- will-change: transform;
21127
21121
  }.v-progress-circular {
21128
21122
  align-items: center;
21129
21123
  display: inline-flex;
@@ -21226,6 +21220,12 @@ html.v-overlay-scroll-blocked {
21226
21220
  100% {
21227
21221
  transform: rotate(270deg);
21228
21222
  }
21223
+ }.v-parallax {
21224
+ position: relative;
21225
+ overflow: hidden;
21226
+ }
21227
+ .v-parallax--active > .v-img__img {
21228
+ will-change: transform;
21229
21229
  }.v-progress-linear {
21230
21230
  background: transparent;
21231
21231
  overflow: hidden;
@@ -21497,14 +21497,6 @@ html.v-overlay-scroll-blocked {
21497
21497
 
21498
21498
  .v-slider__label {
21499
21499
  margin-inline-end: 12px;
21500
- }.v-radio-group > .v-input__control {
21501
- flex-direction: column;
21502
- }
21503
- .v-radio-group > .v-input__control > .v-label {
21504
- margin-inline-start: 8px;
21505
- }
21506
- .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
21507
- margin-top: 8px;
21508
21500
  }.v-rating {
21509
21501
  max-width: 100%;
21510
21502
  display: inline-flex;
@@ -21773,6 +21765,12 @@ html.v-overlay-scroll-blocked {
21773
21765
  .v-sheet--fixed {
21774
21766
  position: fixed;
21775
21767
  }
21768
+ .v-sheet--relative {
21769
+ position: relative;
21770
+ }
21771
+ .v-sheet--sticky {
21772
+ position: sticky;
21773
+ }
21776
21774
  .v-sheet--rounded {
21777
21775
  border-radius: 4px;
21778
21776
  }.v-slide-group {
@@ -23056,6 +23054,14 @@ html.v-overlay-scroll-blocked {
23056
23054
  }
23057
23055
  .v-window-y-reverse-transition-leave-to {
23058
23056
  transform: translateY(100%);
23057
+ }.v-radio-group > .v-input__control {
23058
+ flex-direction: column;
23059
+ }
23060
+ .v-radio-group > .v-input__control > .v-label {
23061
+ margin-inline-start: 8px;
23062
+ }
23063
+ .v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
23064
+ margin-top: 8px;
23059
23065
  }.v-color-picker-canvas {
23060
23066
  display: flex;
23061
23067
  position: relative;