@vuetify/nightly 3.4.0-dev.2023-11-09 → 3.4.0-dev.2023-12-01

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.
package/dist/vuetify.css CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.4.0-dev.2023-11-09
2
+ * Vuetify v3.4.0-dev.2023-12-01
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -17009,6 +17009,87 @@ html.overflow-y-hidden {
17009
17009
  }
17010
17010
  .v-app-bar:not(.v-toolbar--absolute) {
17011
17011
  padding-inline-end: var(--v-scrollbar-offset);
17012
+ }.v-autocomplete .v-field .v-text-field__prefix,
17013
+ .v-autocomplete .v-field .v-text-field__suffix,
17014
+ .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17015
+ cursor: text;
17016
+ }
17017
+ .v-autocomplete .v-field .v-field__input > input {
17018
+ flex: 1 1;
17019
+ }
17020
+ .v-autocomplete .v-field input {
17021
+ min-width: 64px;
17022
+ }
17023
+ .v-autocomplete .v-field:not(.v-field--focused) input {
17024
+ min-width: 0;
17025
+ }
17026
+ .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17027
+ margin-inline-end: 2px;
17028
+ }
17029
+ .v-autocomplete .v-autocomplete__selection-text {
17030
+ overflow: hidden;
17031
+ text-overflow: ellipsis;
17032
+ white-space: nowrap;
17033
+ }
17034
+
17035
+ .v-autocomplete__content {
17036
+ overflow: hidden;
17037
+ 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));
17038
+ border-radius: 4px;
17039
+ }
17040
+ .v-autocomplete__mask {
17041
+ background: rgb(var(--v-theme-on-surface-variant));
17042
+ }
17043
+ .v-autocomplete__selection {
17044
+ display: inline-flex;
17045
+ align-items: center;
17046
+ height: 1.5rem;
17047
+ letter-spacing: inherit;
17048
+ line-height: inherit;
17049
+ max-width: calc(100% - 2px);
17050
+ }
17051
+ .v-autocomplete__selection:first-child {
17052
+ margin-inline-start: 0;
17053
+ }
17054
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17055
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17056
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17057
+ .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17058
+ top: 0px;
17059
+ }
17060
+ .v-autocomplete--selecting-index .v-autocomplete__selection {
17061
+ opacity: var(--v-medium-emphasis-opacity);
17062
+ }
17063
+ .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17064
+ opacity: 1;
17065
+ }
17066
+ .v-autocomplete--selecting-index .v-field__input > input {
17067
+ caret-color: transparent;
17068
+ }
17069
+ .v-autocomplete--single.v-text-field input {
17070
+ flex: 1 1;
17071
+ position: absolute;
17072
+ left: 0;
17073
+ right: 0;
17074
+ width: 100%;
17075
+ padding-inline: inherit;
17076
+ }
17077
+ .v-autocomplete--single .v-field--active input {
17078
+ transition: none;
17079
+ }
17080
+ .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
17081
+ opacity: 0;
17082
+ }
17083
+ .v-autocomplete--single .v-field--focused .v-autocomplete__selection {
17084
+ opacity: 0;
17085
+ }
17086
+ .v-autocomplete__menu-icon {
17087
+ margin-inline-start: 4px;
17088
+ transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17089
+ }
17090
+ .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17091
+ opacity: var(--v-high-emphasis-opacity);
17092
+ transform: rotate(180deg);
17012
17093
  }.v-alert {
17013
17094
  display: grid;
17014
17095
  flex: 1 1;
@@ -17219,87 +17300,6 @@ html.overflow-y-hidden {
17219
17300
  text-transform: none;
17220
17301
  word-break: normal;
17221
17302
  word-wrap: break-word;
17222
- }.v-autocomplete .v-field .v-text-field__prefix,
17223
- .v-autocomplete .v-field .v-text-field__suffix,
17224
- .v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
17225
- cursor: text;
17226
- }
17227
- .v-autocomplete .v-field .v-field__input > input {
17228
- flex: 1 1;
17229
- }
17230
- .v-autocomplete .v-field input {
17231
- min-width: 64px;
17232
- }
17233
- .v-autocomplete .v-field:not(.v-field--focused) input {
17234
- min-width: 0;
17235
- }
17236
- .v-autocomplete .v-field--dirty .v-autocomplete__selection {
17237
- margin-inline-end: 2px;
17238
- }
17239
- .v-autocomplete .v-autocomplete__selection-text {
17240
- overflow: hidden;
17241
- text-overflow: ellipsis;
17242
- white-space: nowrap;
17243
- }
17244
-
17245
- .v-autocomplete__content {
17246
- overflow: hidden;
17247
- 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));
17248
- border-radius: 4px;
17249
- }
17250
- .v-autocomplete__mask {
17251
- background: rgb(var(--v-theme-on-surface-variant));
17252
- }
17253
- .v-autocomplete__selection {
17254
- display: inline-flex;
17255
- align-items: center;
17256
- height: 1.5rem;
17257
- letter-spacing: inherit;
17258
- line-height: inherit;
17259
- max-width: calc(100% - 2px);
17260
- }
17261
- .v-autocomplete__selection:first-child {
17262
- margin-inline-start: 0;
17263
- }
17264
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
17265
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
17266
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
17267
- .v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
17268
- top: 0px;
17269
- }
17270
- .v-autocomplete--selecting-index .v-autocomplete__selection {
17271
- opacity: var(--v-medium-emphasis-opacity);
17272
- }
17273
- .v-autocomplete--selecting-index .v-autocomplete__selection--selected {
17274
- opacity: 1;
17275
- }
17276
- .v-autocomplete--selecting-index .v-field__input > input {
17277
- caret-color: transparent;
17278
- }
17279
- .v-autocomplete--single.v-text-field input {
17280
- flex: 1 1;
17281
- position: absolute;
17282
- left: 0;
17283
- right: 0;
17284
- width: 100%;
17285
- padding-inline: inherit;
17286
- }
17287
- .v-autocomplete--single .v-field--active input {
17288
- transition: none;
17289
- }
17290
- .v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
17291
- opacity: 0;
17292
- }
17293
- .v-autocomplete--single .v-field--focused .v-autocomplete__selection {
17294
- opacity: 0;
17295
- }
17296
- .v-autocomplete__menu-icon {
17297
- margin-inline-start: 4px;
17298
- transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
17299
- }
17300
- .v-autocomplete--active-menu .v-autocomplete__menu-icon {
17301
- opacity: var(--v-high-emphasis-opacity);
17302
- transform: rotate(180deg);
17303
17303
  }.v-avatar {
17304
17304
  flex: none;
17305
17305
  align-items: center;
@@ -19788,6 +19788,36 @@ html.overflow-y-hidden {
19788
19788
  flex: 0 1 auto;
19789
19789
  font-size: 12px;
19790
19790
  transition-duration: 150ms;
19791
+ }.v-data-table-footer {
19792
+ display: flex;
19793
+ align-items: center;
19794
+ flex-wrap: wrap;
19795
+ padding: 0 8px;
19796
+ justify-content: flex-end;
19797
+ }
19798
+
19799
+ .v-data-table-footer__items-per-page {
19800
+ padding-inline-end: 24px;
19801
+ display: flex;
19802
+ align-items: center;
19803
+ justify-content: space-between;
19804
+ }
19805
+ .v-data-table-footer__items-per-page > span {
19806
+ padding-inline-end: 24px;
19807
+ }
19808
+
19809
+ .v-data-table-footer__info {
19810
+ display: flex;
19811
+ padding-inline-end: 24px;
19812
+ }
19813
+
19814
+ .v-data-table-footer__pagination {
19815
+ display: flex;
19816
+ align-items: center;
19817
+ }
19818
+
19819
+ .v-data-table-footer__page {
19820
+ padding: 0 8px;
19791
19821
  }.v-data-table {
19792
19822
  width: 100%;
19793
19823
  }
@@ -19916,36 +19946,6 @@ html.overflow-y-hidden {
19916
19946
  .v-data-table-rows-loading,
19917
19947
  .v-data-table-rows-no-data {
19918
19948
  text-align: center;
19919
- }.v-data-table-footer {
19920
- display: flex;
19921
- align-items: center;
19922
- flex-wrap: wrap;
19923
- padding: 0 8px;
19924
- justify-content: flex-end;
19925
- }
19926
-
19927
- .v-data-table-footer__items-per-page {
19928
- padding-inline-end: 24px;
19929
- display: flex;
19930
- align-items: center;
19931
- justify-content: space-between;
19932
- }
19933
- .v-data-table-footer__items-per-page > span {
19934
- padding-inline-end: 24px;
19935
- }
19936
-
19937
- .v-data-table-footer__info {
19938
- display: flex;
19939
- padding-inline-end: 24px;
19940
- }
19941
-
19942
- .v-data-table-footer__pagination {
19943
- display: flex;
19944
- align-items: center;
19945
- }
19946
-
19947
- .v-data-table-footer__page {
19948
- padding: 0 8px;
19949
19949
  }.v-date-picker__input {
19950
19950
  padding-top: 16px;
19951
19951
  padding-left: 24px;
@@ -20023,6 +20023,55 @@ html.overflow-y-hidden {
20023
20023
 
20024
20024
  .v-date-picker__title {
20025
20025
  display: inline-block;
20026
+ }.v-date-picker-month {
20027
+ display: flex;
20028
+ justify-content: center;
20029
+ min-width: 328px;
20030
+ --v-date-picker-month-day-diff: 4px;
20031
+ }
20032
+
20033
+ .v-date-picker-month__weeks {
20034
+ display: grid;
20035
+ grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20036
+ row-gap: 4px;
20037
+ font-size: 0.875rem;
20038
+ }
20039
+ .v-date-picker-month__weeks + .v-date-picker-month__days {
20040
+ grid-row-gap: 0;
20041
+ }
20042
+
20043
+ .v-date-picker-month__weekday {
20044
+ font-size: 0.875rem;
20045
+ }
20046
+
20047
+ .v-date-picker-month__days {
20048
+ display: grid;
20049
+ grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20050
+ row-gap: 4px;
20051
+ flex: 1 1;
20052
+ justify-content: space-around;
20053
+ }
20054
+
20055
+ .v-date-picker-month__day {
20056
+ align-items: center;
20057
+ display: flex;
20058
+ justify-content: center;
20059
+ position: relative;
20060
+ }
20061
+ .v-date-picker-month__day--selected .v-btn {
20062
+ background-color: rgb(var(--v-theme-surface-variant));
20063
+ color: rgb(var(--v-theme-on-surface-variant));
20064
+ }
20065
+ .v-date-picker-month__day--week {
20066
+ font-size: var(--v-btn-size);
20067
+ }
20068
+
20069
+ .v-date-picker-month__day--adjacent {
20070
+ opacity: 0.5;
20071
+ }
20072
+
20073
+ .v-date-picker-month__day--hide-adjacent {
20074
+ opacity: 0;
20026
20075
  }.v-date-picker-header {
20027
20076
  display: grid;
20028
20077
  grid-template-areas: "prepend content append";
@@ -20084,55 +20133,21 @@ html.overflow-y-hidden {
20084
20133
  .date-picker-header-reverse-transition-leave-to {
20085
20134
  opacity: 0;
20086
20135
  transform: translate(0, 100%);
20087
- }.v-date-picker-month {
20088
- display: flex;
20089
- justify-content: center;
20090
- min-width: 328px;
20091
- --v-date-picker-month-day-diff: 4px;
20092
- }
20093
-
20094
- .v-date-picker-month__weeks {
20095
- display: grid;
20096
- grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
20097
- row-gap: 4px;
20098
- font-size: 0.875rem;
20099
- }
20100
- .v-date-picker-month__weeks + .v-date-picker-month__days {
20101
- grid-row-gap: 0;
20102
- }
20103
-
20104
- .v-date-picker-month__weekday {
20105
- font-size: 0.875rem;
20136
+ }.v-date-picker-years {
20137
+ height: 320px;
20138
+ overflow-y: scroll;
20106
20139
  }
20107
20140
 
20108
- .v-date-picker-month__days {
20141
+ .v-date-picker-years__content {
20109
20142
  display: grid;
20110
- grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
20111
- row-gap: 4px;
20112
20143
  flex: 1 1;
20113
20144
  justify-content: space-around;
20145
+ grid-template-columns: repeat(3, 1fr);
20146
+ gap: 8px 24px;
20147
+ padding-inline: 36px;
20114
20148
  }
20115
-
20116
- .v-date-picker-month__day {
20117
- align-items: center;
20118
- display: flex;
20119
- justify-content: center;
20120
- position: relative;
20121
- }
20122
- .v-date-picker-month__day--selected .v-btn {
20123
- background-color: rgb(var(--v-theme-surface-variant));
20124
- color: rgb(var(--v-theme-on-surface-variant));
20125
- }
20126
- .v-date-picker-month__day--week {
20127
- font-size: var(--v-btn-size);
20128
- }
20129
-
20130
- .v-date-picker-month__day--adjacent {
20131
- opacity: 0.5;
20132
- }
20133
-
20134
- .v-date-picker-month__day--hide-adjacent {
20135
- opacity: 0;
20149
+ .v-date-picker-years__content .v-btn {
20150
+ padding-inline: 8px;
20136
20151
  }.v-date-picker-months {
20137
20152
  height: 320px;
20138
20153
  overflow-y: scroll;
@@ -20153,21 +20168,6 @@ html.overflow-y-hidden {
20153
20168
  text-transform: none;
20154
20169
  padding-inline-start: 8px;
20155
20170
  padding-inline-end: 8px;
20156
- }.v-date-picker-years {
20157
- height: 320px;
20158
- overflow-y: scroll;
20159
- }
20160
-
20161
- .v-date-picker-years__content {
20162
- display: grid;
20163
- flex: 1 1;
20164
- justify-content: space-around;
20165
- grid-template-columns: repeat(3, 1fr);
20166
- gap: 8px 24px;
20167
- padding-inline: 36px;
20168
- }
20169
- .v-date-picker-years__content .v-btn {
20170
- padding-inline: 8px;
20171
20171
  }.v-dialog {
20172
20172
  align-items: center;
20173
20173
  justify-content: center;
@@ -21117,6 +21117,31 @@ textarea.v-field__input::placeholder {
21117
21117
 
21118
21118
  .v-icon--end {
21119
21119
  margin-inline-start: 8px;
21120
+ }.v-infinite-scroll--horizontal {
21121
+ display: flex;
21122
+ flex-direction: row;
21123
+ overflow-x: auto;
21124
+ }
21125
+ .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21126
+ height: 100%;
21127
+ width: 1px;
21128
+ }
21129
+
21130
+ .v-infinite-scroll--vertical {
21131
+ display: flex;
21132
+ flex-direction: column;
21133
+ overflow-y: auto;
21134
+ }
21135
+ .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21136
+ height: 1px;
21137
+ width: 100%;
21138
+ }
21139
+
21140
+ .v-infinite-scroll__side {
21141
+ align-items: center;
21142
+ display: flex;
21143
+ justify-content: center;
21144
+ padding: 8px;
21120
21145
  }.v-img {
21121
21146
  --v-theme-overlay-multiplier: 3;
21122
21147
  z-index: 0;
@@ -21124,6 +21149,9 @@ textarea.v-field__input::placeholder {
21124
21149
  .v-img--booting .v-responsive__sizer {
21125
21150
  transition: none;
21126
21151
  }
21152
+ .v-img--rounded {
21153
+ border-radius: 4px;
21154
+ }
21127
21155
 
21128
21156
  .v-img__img,
21129
21157
  .v-img__picture,
@@ -21150,31 +21178,6 @@ textarea.v-field__input::placeholder {
21150
21178
 
21151
21179
  .v-img__gradient {
21152
21180
  background-repeat: no-repeat;
21153
- }.v-infinite-scroll--horizontal {
21154
- display: flex;
21155
- flex-direction: row;
21156
- overflow-x: auto;
21157
- }
21158
- .v-infinite-scroll--horizontal .v-infinite-scroll-intersect {
21159
- height: 100%;
21160
- width: 1px;
21161
- }
21162
-
21163
- .v-infinite-scroll--vertical {
21164
- display: flex;
21165
- flex-direction: column;
21166
- overflow-y: auto;
21167
- }
21168
- .v-infinite-scroll--vertical .v-infinite-scroll-intersect {
21169
- height: 1px;
21170
- width: 100%;
21171
- }
21172
-
21173
- .v-infinite-scroll__side {
21174
- align-items: center;
21175
- display: flex;
21176
- justify-content: center;
21177
- padding: 8px;
21178
21181
  }.v-input {
21179
21182
  display: grid;
21180
21183
  flex: 1 1 auto;