@vuetify/nightly 3.1.5-master-20230212.0 → 3.2.0-dev-20230214.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.
- package/CHANGELOG.md +13 -4
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +334 -324
- package/dist/vuetify-labs.d.ts +18 -0
- package/dist/vuetify-labs.esm.js +52 -16
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +52 -16
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +47 -46
- package/dist/vuetify.esm.js +5 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +57 -57
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VList/VListItem.css +2 -2
- package/lib/components/VList/VListItem.sass +0 -2
- package/lib/components/VOverlay/scrollStrategies.mjs +1 -1
- package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbar.css +1 -0
- package/lib/components/VToolbar/VToolbar.sass +1 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableFooter.css +9 -0
- package/lib/labs/VDataTable/VDataTableFooter.mjs +50 -12
- package/lib/labs/VDataTable/VDataTableFooter.mjs.map +1 -1
- package/lib/labs/VDataTable/VDataTableFooter.sass +7 -0
- package/lib/labs/VDataTable/index.d.ts +18 -0
- package/lib/labs/components.d.ts +18 -0
- package/lib/util/defineComponent.mjs +1 -1
- package/lib/util/defineComponent.mjs.map +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.
|
|
2
|
+
* Vuetify v3.2.0-dev-20230214.0
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -15791,6 +15791,15 @@ html.overflow-y-hidden {
|
|
|
15791
15791
|
.v-data-table-footer__info {
|
|
15792
15792
|
display: flex;
|
|
15793
15793
|
padding-inline-end: 24px;
|
|
15794
|
+
}
|
|
15795
|
+
|
|
15796
|
+
.v-data-table-footer__pagination {
|
|
15797
|
+
display: flex;
|
|
15798
|
+
align-items: center;
|
|
15799
|
+
}
|
|
15800
|
+
|
|
15801
|
+
.v-data-table-footer__page {
|
|
15802
|
+
padding: 0 8px;
|
|
15794
15803
|
}.v-virtual-scroll {
|
|
15795
15804
|
display: block;
|
|
15796
15805
|
flex: 1 1 auto;
|
|
@@ -15800,6 +15809,21 @@ html.overflow-y-hidden {
|
|
|
15800
15809
|
}
|
|
15801
15810
|
.v-virtual-scroll__container {
|
|
15802
15811
|
display: block;
|
|
15812
|
+
}.v-application {
|
|
15813
|
+
display: flex;
|
|
15814
|
+
background: rgb(var(--v-theme-background));
|
|
15815
|
+
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
15816
|
+
}
|
|
15817
|
+
|
|
15818
|
+
.v-application__wrap {
|
|
15819
|
+
-webkit-backface-visibility: hidden;
|
|
15820
|
+
backface-visibility: hidden;
|
|
15821
|
+
display: flex;
|
|
15822
|
+
flex-direction: column;
|
|
15823
|
+
flex: 1 1 auto;
|
|
15824
|
+
max-width: 100%;
|
|
15825
|
+
min-height: 100vh;
|
|
15826
|
+
position: relative;
|
|
15803
15827
|
}.v-app-bar {
|
|
15804
15828
|
display: flex;
|
|
15805
15829
|
}
|
|
@@ -16022,104 +16046,6 @@ html.overflow-y-hidden {
|
|
|
16022
16046
|
text-transform: none;
|
|
16023
16047
|
word-break: normal;
|
|
16024
16048
|
word-wrap: break-word;
|
|
16025
|
-
}.v-application {
|
|
16026
|
-
display: flex;
|
|
16027
|
-
background: rgb(var(--v-theme-background));
|
|
16028
|
-
color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity));
|
|
16029
|
-
}
|
|
16030
|
-
|
|
16031
|
-
.v-application__wrap {
|
|
16032
|
-
-webkit-backface-visibility: hidden;
|
|
16033
|
-
backface-visibility: hidden;
|
|
16034
|
-
display: flex;
|
|
16035
|
-
flex-direction: column;
|
|
16036
|
-
flex: 1 1 auto;
|
|
16037
|
-
max-width: 100%;
|
|
16038
|
-
min-height: 100vh;
|
|
16039
|
-
position: relative;
|
|
16040
|
-
}.v-input--density-default {
|
|
16041
|
-
--autocomplete-chips-margin-bottom: 0px;
|
|
16042
|
-
}
|
|
16043
|
-
|
|
16044
|
-
.v-input--density-comfortable {
|
|
16045
|
-
--autocomplete-chips-margin-bottom: 2px;
|
|
16046
|
-
}
|
|
16047
|
-
|
|
16048
|
-
.v-input--density-compact {
|
|
16049
|
-
--autocomplete-chips-margin-bottom: 4px;
|
|
16050
|
-
}
|
|
16051
|
-
|
|
16052
|
-
.v-autocomplete .v-field .v-text-field__prefix,
|
|
16053
|
-
.v-autocomplete .v-field .v-text-field__suffix,
|
|
16054
|
-
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
16055
|
-
cursor: text;
|
|
16056
|
-
}
|
|
16057
|
-
.v-autocomplete .v-field .v-field__input > input {
|
|
16058
|
-
align-self: flex-start;
|
|
16059
|
-
flex: 1 1;
|
|
16060
|
-
}
|
|
16061
|
-
.v-autocomplete .v-field .v-field__append-inner > .v-icon {
|
|
16062
|
-
margin-inline-start: 4px;
|
|
16063
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
16064
|
-
}
|
|
16065
|
-
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
16066
|
-
min-width: 0;
|
|
16067
|
-
}
|
|
16068
|
-
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
16069
|
-
margin-inline-end: 2px;
|
|
16070
|
-
}
|
|
16071
|
-
.v-autocomplete .v-field--single-line .v-autocomplete__selection-text {
|
|
16072
|
-
overflow: hidden;
|
|
16073
|
-
text-overflow: ellipsis;
|
|
16074
|
-
white-space: nowrap;
|
|
16075
|
-
}
|
|
16076
|
-
|
|
16077
|
-
.v-autocomplete__content {
|
|
16078
|
-
overflow: hidden;
|
|
16079
|
-
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));
|
|
16080
|
-
border-radius: 4px;
|
|
16081
|
-
}
|
|
16082
|
-
.v-autocomplete__mask {
|
|
16083
|
-
background: rgb(var(--v-theme-on-surface-variant));
|
|
16084
|
-
}
|
|
16085
|
-
.v-autocomplete__selection {
|
|
16086
|
-
display: inline-flex;
|
|
16087
|
-
letter-spacing: inherit;
|
|
16088
|
-
line-height: inherit;
|
|
16089
|
-
max-width: 100%;
|
|
16090
|
-
}
|
|
16091
|
-
.v-autocomplete--active-menu .v-field__append-inner > .v-icon {
|
|
16092
|
-
opacity: var(--v-high-emphasis-opacity);
|
|
16093
|
-
transform: rotate(180deg);
|
|
16094
|
-
}
|
|
16095
|
-
.v-autocomplete--chips .v-autocomplete__selection {
|
|
16096
|
-
margin-top: 2px;
|
|
16097
|
-
margin-bottom: var(--autocomplete-chips-margin-bottom);
|
|
16098
|
-
}
|
|
16099
|
-
.v-autocomplete--chips .v-autocomplete__selection:first-child {
|
|
16100
|
-
margin-inline-start: 0;
|
|
16101
|
-
}
|
|
16102
|
-
.v-autocomplete--single.v-text-field input {
|
|
16103
|
-
flex: 1 1;
|
|
16104
|
-
position: absolute;
|
|
16105
|
-
left: 0;
|
|
16106
|
-
right: 0;
|
|
16107
|
-
width: 100%;
|
|
16108
|
-
padding-inline-start: inherit;
|
|
16109
|
-
padding-inline-end: inherit;
|
|
16110
|
-
}
|
|
16111
|
-
.v-autocomplete--single .v-field--active input {
|
|
16112
|
-
transition: none;
|
|
16113
|
-
}
|
|
16114
|
-
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
16115
|
-
opacity: 0;
|
|
16116
|
-
}
|
|
16117
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection-text {
|
|
16118
|
-
opacity: 0;
|
|
16119
|
-
}
|
|
16120
|
-
.v-autocomplete--selection-slot.v-text-field input {
|
|
16121
|
-
position: relative;
|
|
16122
|
-
padding-inline-start: 0;
|
|
16123
16049
|
}.v-avatar {
|
|
16124
16050
|
flex: none;
|
|
16125
16051
|
align-items: center;
|
|
@@ -16207,6 +16133,89 @@ html.overflow-y-hidden {
|
|
|
16207
16133
|
.v-avatar .v-img {
|
|
16208
16134
|
height: 100%;
|
|
16209
16135
|
width: 100%;
|
|
16136
|
+
}.v-input--density-default {
|
|
16137
|
+
--autocomplete-chips-margin-bottom: 0px;
|
|
16138
|
+
}
|
|
16139
|
+
|
|
16140
|
+
.v-input--density-comfortable {
|
|
16141
|
+
--autocomplete-chips-margin-bottom: 2px;
|
|
16142
|
+
}
|
|
16143
|
+
|
|
16144
|
+
.v-input--density-compact {
|
|
16145
|
+
--autocomplete-chips-margin-bottom: 4px;
|
|
16146
|
+
}
|
|
16147
|
+
|
|
16148
|
+
.v-autocomplete .v-field .v-text-field__prefix,
|
|
16149
|
+
.v-autocomplete .v-field .v-text-field__suffix,
|
|
16150
|
+
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
16151
|
+
cursor: text;
|
|
16152
|
+
}
|
|
16153
|
+
.v-autocomplete .v-field .v-field__input > input {
|
|
16154
|
+
align-self: flex-start;
|
|
16155
|
+
flex: 1 1;
|
|
16156
|
+
}
|
|
16157
|
+
.v-autocomplete .v-field .v-field__append-inner > .v-icon {
|
|
16158
|
+
margin-inline-start: 4px;
|
|
16159
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
16160
|
+
}
|
|
16161
|
+
.v-autocomplete .v-field:not(.v-field--focused) input {
|
|
16162
|
+
min-width: 0;
|
|
16163
|
+
}
|
|
16164
|
+
.v-autocomplete .v-field--dirty .v-autocomplete__selection {
|
|
16165
|
+
margin-inline-end: 2px;
|
|
16166
|
+
}
|
|
16167
|
+
.v-autocomplete .v-field--single-line .v-autocomplete__selection-text {
|
|
16168
|
+
overflow: hidden;
|
|
16169
|
+
text-overflow: ellipsis;
|
|
16170
|
+
white-space: nowrap;
|
|
16171
|
+
}
|
|
16172
|
+
|
|
16173
|
+
.v-autocomplete__content {
|
|
16174
|
+
overflow: hidden;
|
|
16175
|
+
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));
|
|
16176
|
+
border-radius: 4px;
|
|
16177
|
+
}
|
|
16178
|
+
.v-autocomplete__mask {
|
|
16179
|
+
background: rgb(var(--v-theme-on-surface-variant));
|
|
16180
|
+
}
|
|
16181
|
+
.v-autocomplete__selection {
|
|
16182
|
+
display: inline-flex;
|
|
16183
|
+
letter-spacing: inherit;
|
|
16184
|
+
line-height: inherit;
|
|
16185
|
+
max-width: 100%;
|
|
16186
|
+
}
|
|
16187
|
+
.v-autocomplete--active-menu .v-field__append-inner > .v-icon {
|
|
16188
|
+
opacity: var(--v-high-emphasis-opacity);
|
|
16189
|
+
transform: rotate(180deg);
|
|
16190
|
+
}
|
|
16191
|
+
.v-autocomplete--chips .v-autocomplete__selection {
|
|
16192
|
+
margin-top: 2px;
|
|
16193
|
+
margin-bottom: var(--autocomplete-chips-margin-bottom);
|
|
16194
|
+
}
|
|
16195
|
+
.v-autocomplete--chips .v-autocomplete__selection:first-child {
|
|
16196
|
+
margin-inline-start: 0;
|
|
16197
|
+
}
|
|
16198
|
+
.v-autocomplete--single.v-text-field input {
|
|
16199
|
+
flex: 1 1;
|
|
16200
|
+
position: absolute;
|
|
16201
|
+
left: 0;
|
|
16202
|
+
right: 0;
|
|
16203
|
+
width: 100%;
|
|
16204
|
+
padding-inline-start: inherit;
|
|
16205
|
+
padding-inline-end: inherit;
|
|
16206
|
+
}
|
|
16207
|
+
.v-autocomplete--single .v-field--active input {
|
|
16208
|
+
transition: none;
|
|
16209
|
+
}
|
|
16210
|
+
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
16211
|
+
opacity: 0;
|
|
16212
|
+
}
|
|
16213
|
+
.v-autocomplete--single .v-field--focused .v-autocomplete__selection-text {
|
|
16214
|
+
opacity: 0;
|
|
16215
|
+
}
|
|
16216
|
+
.v-autocomplete--selection-slot.v-text-field input {
|
|
16217
|
+
position: relative;
|
|
16218
|
+
padding-inline-start: 0;
|
|
16210
16219
|
}.v-badge {
|
|
16211
16220
|
display: inline-block;
|
|
16212
16221
|
line-height: 1;
|
|
@@ -19621,51 +19630,163 @@ textarea.v-field__input::placeholder {
|
|
|
19621
19630
|
|
|
19622
19631
|
.v-img__gradient {
|
|
19623
19632
|
background-repeat: no-repeat;
|
|
19624
|
-
}.v-
|
|
19625
|
-
|
|
19626
|
-
|
|
19627
|
-
position: relative;
|
|
19628
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19629
|
-
}.v-label {
|
|
19630
|
-
align-items: center;
|
|
19631
|
-
display: inline-flex;
|
|
19633
|
+
}.v-input {
|
|
19634
|
+
display: grid;
|
|
19635
|
+
flex: 1 1 auto;
|
|
19632
19636
|
font-size: 1rem;
|
|
19633
|
-
|
|
19634
|
-
|
|
19635
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
19636
|
-
overflow: hidden;
|
|
19637
|
-
text-overflow: ellipsis;
|
|
19638
|
-
white-space: nowrap;
|
|
19637
|
+
font-weight: 400;
|
|
19638
|
+
line-height: 1.5;
|
|
19639
19639
|
}
|
|
19640
|
-
|
|
19641
|
-
|
|
19642
|
-
cursor: pointer;
|
|
19643
|
-
}.v-layout {
|
|
19644
|
-
--v-scrollbar-offset: 0px;
|
|
19645
|
-
display: flex;
|
|
19646
|
-
flex: 1 1 auto;
|
|
19640
|
+
.v-input--disabled {
|
|
19641
|
+
pointer-events: none;
|
|
19647
19642
|
}
|
|
19648
|
-
.v-
|
|
19649
|
-
--v-
|
|
19650
|
-
|
|
19651
|
-
}.v-layout-item {
|
|
19652
|
-
position: absolute;
|
|
19653
|
-
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19643
|
+
.v-input--density-default {
|
|
19644
|
+
--v-input-control-height: 56px;
|
|
19645
|
+
--v-input-padding-top: 16px;
|
|
19654
19646
|
}
|
|
19655
19647
|
|
|
19656
|
-
.v-
|
|
19657
|
-
|
|
19658
|
-
|
|
19659
|
-
|
|
19660
|
-
|
|
19661
|
-
|
|
19662
|
-
|
|
19663
|
-
|
|
19664
|
-
|
|
19665
|
-
|
|
19666
|
-
|
|
19667
|
-
|
|
19668
|
-
|
|
19648
|
+
.v-input--density-comfortable {
|
|
19649
|
+
--v-input-control-height: 48px;
|
|
19650
|
+
--v-input-padding-top: 12px;
|
|
19651
|
+
}
|
|
19652
|
+
|
|
19653
|
+
.v-input--density-compact {
|
|
19654
|
+
--v-input-control-height: 40px;
|
|
19655
|
+
--v-input-padding-top: 8px;
|
|
19656
|
+
}
|
|
19657
|
+
|
|
19658
|
+
.v-input--vertical {
|
|
19659
|
+
grid-template-areas: "append" "control" "prepend";
|
|
19660
|
+
grid-template-rows: max-content auto max-content;
|
|
19661
|
+
grid-template-columns: min-content;
|
|
19662
|
+
}
|
|
19663
|
+
.v-input--vertical .v-input__prepend {
|
|
19664
|
+
margin-block-start: 16px;
|
|
19665
|
+
}
|
|
19666
|
+
.v-input--vertical .v-input__append {
|
|
19667
|
+
margin-block-end: 16px;
|
|
19668
|
+
}
|
|
19669
|
+
|
|
19670
|
+
.v-input--horizontal {
|
|
19671
|
+
grid-template-areas: "prepend control append" "a messages b";
|
|
19672
|
+
grid-template-columns: max-content minmax(0, 1fr) max-content;
|
|
19673
|
+
grid-template-rows: auto auto;
|
|
19674
|
+
}
|
|
19675
|
+
.v-input--horizontal .v-input__prepend {
|
|
19676
|
+
margin-inline-end: 16px;
|
|
19677
|
+
}
|
|
19678
|
+
.v-input--horizontal .v-input__append {
|
|
19679
|
+
margin-inline-start: 16px;
|
|
19680
|
+
}
|
|
19681
|
+
|
|
19682
|
+
.v-input__details {
|
|
19683
|
+
align-items: flex-end;
|
|
19684
|
+
display: flex;
|
|
19685
|
+
font-size: 0.75rem;
|
|
19686
|
+
font-weight: 400;
|
|
19687
|
+
grid-area: messages;
|
|
19688
|
+
letter-spacing: 0.0333333333em;
|
|
19689
|
+
line-height: normal;
|
|
19690
|
+
min-height: 22px;
|
|
19691
|
+
padding-top: 6px;
|
|
19692
|
+
overflow: hidden;
|
|
19693
|
+
justify-content: space-between;
|
|
19694
|
+
}
|
|
19695
|
+
|
|
19696
|
+
.v-input__details > .v-icon,
|
|
19697
|
+
.v-input__prepend > .v-icon,
|
|
19698
|
+
.v-input__append > .v-icon {
|
|
19699
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
19700
|
+
}
|
|
19701
|
+
.v-input--disabled .v-input__details > .v-icon,
|
|
19702
|
+
.v-input--disabled .v-input__details .v-messages, .v-input--error .v-input__details > .v-icon,
|
|
19703
|
+
.v-input--error .v-input__details .v-messages,
|
|
19704
|
+
.v-input--disabled .v-input__prepend > .v-icon,
|
|
19705
|
+
.v-input--disabled .v-input__prepend .v-messages,
|
|
19706
|
+
.v-input--error .v-input__prepend > .v-icon,
|
|
19707
|
+
.v-input--error .v-input__prepend .v-messages,
|
|
19708
|
+
.v-input--disabled .v-input__append > .v-icon,
|
|
19709
|
+
.v-input--disabled .v-input__append .v-messages,
|
|
19710
|
+
.v-input--error .v-input__append > .v-icon,
|
|
19711
|
+
.v-input--error .v-input__append .v-messages {
|
|
19712
|
+
opacity: 1;
|
|
19713
|
+
}
|
|
19714
|
+
.v-input--disabled .v-input__details,
|
|
19715
|
+
.v-input--disabled .v-input__prepend,
|
|
19716
|
+
.v-input--disabled .v-input__append {
|
|
19717
|
+
opacity: var(--v-disabled-opacity);
|
|
19718
|
+
}
|
|
19719
|
+
.v-input--error:not(.v-input--disabled) .v-input__details > .v-icon,
|
|
19720
|
+
.v-input--error:not(.v-input--disabled) .v-input__details .v-messages,
|
|
19721
|
+
.v-input--error:not(.v-input--disabled) .v-input__prepend > .v-icon,
|
|
19722
|
+
.v-input--error:not(.v-input--disabled) .v-input__prepend .v-messages,
|
|
19723
|
+
.v-input--error:not(.v-input--disabled) .v-input__append > .v-icon,
|
|
19724
|
+
.v-input--error:not(.v-input--disabled) .v-input__append .v-messages {
|
|
19725
|
+
color: rgb(var(--v-theme-error));
|
|
19726
|
+
}
|
|
19727
|
+
|
|
19728
|
+
.v-input__prepend,
|
|
19729
|
+
.v-input__append {
|
|
19730
|
+
display: flex;
|
|
19731
|
+
padding-top: var(--v-input-padding-top);
|
|
19732
|
+
}
|
|
19733
|
+
|
|
19734
|
+
.v-input__prepend {
|
|
19735
|
+
grid-area: prepend;
|
|
19736
|
+
}
|
|
19737
|
+
|
|
19738
|
+
.v-input__append {
|
|
19739
|
+
grid-area: append;
|
|
19740
|
+
}
|
|
19741
|
+
|
|
19742
|
+
.v-input__control {
|
|
19743
|
+
display: flex;
|
|
19744
|
+
grid-area: control;
|
|
19745
|
+
}.v-item-group {
|
|
19746
|
+
flex: 0 1 auto;
|
|
19747
|
+
max-width: 100%;
|
|
19748
|
+
position: relative;
|
|
19749
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19750
|
+
}.v-label {
|
|
19751
|
+
align-items: center;
|
|
19752
|
+
display: inline-flex;
|
|
19753
|
+
font-size: 1rem;
|
|
19754
|
+
letter-spacing: 0.009375em;
|
|
19755
|
+
min-width: 0;
|
|
19756
|
+
opacity: var(--v-medium-emphasis-opacity);
|
|
19757
|
+
overflow: hidden;
|
|
19758
|
+
text-overflow: ellipsis;
|
|
19759
|
+
white-space: nowrap;
|
|
19760
|
+
}
|
|
19761
|
+
|
|
19762
|
+
.v-label--clickable {
|
|
19763
|
+
cursor: pointer;
|
|
19764
|
+
}.v-layout {
|
|
19765
|
+
--v-scrollbar-offset: 0px;
|
|
19766
|
+
display: flex;
|
|
19767
|
+
flex: 1 1 auto;
|
|
19768
|
+
}
|
|
19769
|
+
.v-layout--full-height {
|
|
19770
|
+
--v-scrollbar-offset: inherit;
|
|
19771
|
+
height: 100%;
|
|
19772
|
+
}.v-layout-item {
|
|
19773
|
+
position: absolute;
|
|
19774
|
+
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
19775
|
+
}
|
|
19776
|
+
|
|
19777
|
+
.v-layout-item--absolute {
|
|
19778
|
+
position: absolute;
|
|
19779
|
+
}.v-list {
|
|
19780
|
+
overflow: auto;
|
|
19781
|
+
padding: 8px 0;
|
|
19782
|
+
position: relative;
|
|
19783
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19784
|
+
border-style: solid;
|
|
19785
|
+
border-width: 0;
|
|
19786
|
+
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));
|
|
19787
|
+
border-radius: 0;
|
|
19788
|
+
background: rgba(var(--v-theme-surface));
|
|
19789
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
19669
19790
|
}
|
|
19670
19791
|
.v-list--border {
|
|
19671
19792
|
border-width: thin;
|
|
@@ -19876,7 +19997,7 @@ textarea.v-field__input::placeholder {
|
|
|
19876
19997
|
.v-list-item__prepend > .v-icon {
|
|
19877
19998
|
margin-inline-end: 32px;
|
|
19878
19999
|
}
|
|
19879
|
-
.v-list-item--
|
|
20000
|
+
.v-list-item--three-line .v-list-item__prepend {
|
|
19880
20001
|
align-self: start;
|
|
19881
20002
|
}
|
|
19882
20003
|
|
|
@@ -19892,7 +20013,7 @@ textarea.v-field__input::placeholder {
|
|
|
19892
20013
|
.v-list-item__append > .v-icon {
|
|
19893
20014
|
margin-inline-start: 32px;
|
|
19894
20015
|
}
|
|
19895
|
-
.v-list-item--
|
|
20016
|
+
.v-list-item--three-line .v-list-item__append {
|
|
19896
20017
|
align-self: start;
|
|
19897
20018
|
}
|
|
19898
20019
|
|
|
@@ -20349,12 +20470,6 @@ html.v-overlay-scroll-blocked {
|
|
|
20349
20470
|
|
|
20350
20471
|
.v-overlay--scroll-blocked {
|
|
20351
20472
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
20352
|
-
}.v-parallax {
|
|
20353
|
-
position: relative;
|
|
20354
|
-
overflow: hidden;
|
|
20355
|
-
}
|
|
20356
|
-
.v-parallax--active > .v-img__img {
|
|
20357
|
-
will-change: transform;
|
|
20358
20473
|
}.v-pagination__list {
|
|
20359
20474
|
display: inline-flex;
|
|
20360
20475
|
list-style-type: none;
|
|
@@ -20674,6 +20789,12 @@ html.v-overlay-scroll-blocked {
|
|
|
20674
20789
|
0% {
|
|
20675
20790
|
background-position-x: var(--v-progress-linear-height);
|
|
20676
20791
|
}
|
|
20792
|
+
}.v-parallax {
|
|
20793
|
+
position: relative;
|
|
20794
|
+
overflow: hidden;
|
|
20795
|
+
}
|
|
20796
|
+
.v-parallax--active > .v-img__img {
|
|
20797
|
+
will-change: transform;
|
|
20677
20798
|
}.v-radio-group > .v-input__control {
|
|
20678
20799
|
flex-direction: column;
|
|
20679
20800
|
}
|
|
@@ -20682,6 +20803,63 @@ html.v-overlay-scroll-blocked {
|
|
|
20682
20803
|
}
|
|
20683
20804
|
.v-radio-group > .v-input__control > .v-label + .v-selection-control-group {
|
|
20684
20805
|
margin-top: 8px;
|
|
20806
|
+
}.v-slider .v-slider__container input {
|
|
20807
|
+
cursor: default;
|
|
20808
|
+
padding: 0;
|
|
20809
|
+
width: 100%;
|
|
20810
|
+
display: none;
|
|
20811
|
+
}
|
|
20812
|
+
.v-slider .v-input__append, .v-slider .v-input__prepend {
|
|
20813
|
+
padding: 0;
|
|
20814
|
+
}
|
|
20815
|
+
|
|
20816
|
+
.v-slider__container {
|
|
20817
|
+
position: relative;
|
|
20818
|
+
min-height: inherit;
|
|
20819
|
+
width: 100%;
|
|
20820
|
+
height: 100%;
|
|
20821
|
+
display: flex;
|
|
20822
|
+
justify-content: center;
|
|
20823
|
+
align-items: center;
|
|
20824
|
+
cursor: pointer;
|
|
20825
|
+
}
|
|
20826
|
+
.v-input--disabled .v-slider__container {
|
|
20827
|
+
opacity: var(--v-disabled-opacity);
|
|
20828
|
+
}
|
|
20829
|
+
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
|
20830
|
+
color: rgb(var(--v-theme-error));
|
|
20831
|
+
}
|
|
20832
|
+
|
|
20833
|
+
.v-slider.v-input--horizontal {
|
|
20834
|
+
align-items: center;
|
|
20835
|
+
margin-inline-start: 8px;
|
|
20836
|
+
margin-inline-end: 8px;
|
|
20837
|
+
}
|
|
20838
|
+
.v-slider.v-input--horizontal .v-input__control {
|
|
20839
|
+
min-height: 32px;
|
|
20840
|
+
display: flex;
|
|
20841
|
+
align-items: center;
|
|
20842
|
+
}
|
|
20843
|
+
|
|
20844
|
+
.v-slider.v-input--vertical {
|
|
20845
|
+
justify-content: center;
|
|
20846
|
+
margin-top: 12px;
|
|
20847
|
+
margin-bottom: 12px;
|
|
20848
|
+
}
|
|
20849
|
+
.v-slider.v-input--vertical .v-input__control {
|
|
20850
|
+
min-height: 300px;
|
|
20851
|
+
}
|
|
20852
|
+
|
|
20853
|
+
.v-slider.v-input--disabled {
|
|
20854
|
+
pointer-events: none;
|
|
20855
|
+
}
|
|
20856
|
+
|
|
20857
|
+
.v-slider--has-labels .v-input__control {
|
|
20858
|
+
margin-bottom: 4px;
|
|
20859
|
+
}
|
|
20860
|
+
|
|
20861
|
+
.v-slider__label {
|
|
20862
|
+
margin-inline-end: 12px;
|
|
20685
20863
|
}.v-rating {
|
|
20686
20864
|
max-width: 100%;
|
|
20687
20865
|
display: inline-flex;
|
|
@@ -20926,6 +21104,14 @@ html.v-overlay-scroll-blocked {
|
|
|
20926
21104
|
}
|
|
20927
21105
|
.v-selection-control--focus-visible .v-selection-control__input::before {
|
|
20928
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;
|
|
20929
21115
|
}.v-sheet {
|
|
20930
21116
|
display: block;
|
|
20931
21117
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
@@ -20990,63 +21176,6 @@ html.v-overlay-scroll-blocked {
|
|
|
20990
21176
|
.v-slide-group--vertical .v-slide-group__container,
|
|
20991
21177
|
.v-slide-group--vertical .v-slide-group__content {
|
|
20992
21178
|
flex-direction: column;
|
|
20993
|
-
}.v-slider .v-slider__container input {
|
|
20994
|
-
cursor: default;
|
|
20995
|
-
padding: 0;
|
|
20996
|
-
width: 100%;
|
|
20997
|
-
display: none;
|
|
20998
|
-
}
|
|
20999
|
-
.v-slider .v-input__append, .v-slider .v-input__prepend {
|
|
21000
|
-
padding: 0;
|
|
21001
|
-
}
|
|
21002
|
-
|
|
21003
|
-
.v-slider__container {
|
|
21004
|
-
position: relative;
|
|
21005
|
-
min-height: inherit;
|
|
21006
|
-
width: 100%;
|
|
21007
|
-
height: 100%;
|
|
21008
|
-
display: flex;
|
|
21009
|
-
justify-content: center;
|
|
21010
|
-
align-items: center;
|
|
21011
|
-
cursor: pointer;
|
|
21012
|
-
}
|
|
21013
|
-
.v-input--disabled .v-slider__container {
|
|
21014
|
-
opacity: var(--v-disabled-opacity);
|
|
21015
|
-
}
|
|
21016
|
-
.v-input--error:not(.v-input--disabled) .v-slider__container {
|
|
21017
|
-
color: rgb(var(--v-theme-error));
|
|
21018
|
-
}
|
|
21019
|
-
|
|
21020
|
-
.v-slider.v-input--horizontal {
|
|
21021
|
-
align-items: center;
|
|
21022
|
-
margin-inline-start: 8px;
|
|
21023
|
-
margin-inline-end: 8px;
|
|
21024
|
-
}
|
|
21025
|
-
.v-slider.v-input--horizontal .v-input__control {
|
|
21026
|
-
min-height: 32px;
|
|
21027
|
-
display: flex;
|
|
21028
|
-
align-items: center;
|
|
21029
|
-
}
|
|
21030
|
-
|
|
21031
|
-
.v-slider.v-input--vertical {
|
|
21032
|
-
justify-content: center;
|
|
21033
|
-
margin-top: 12px;
|
|
21034
|
-
margin-bottom: 12px;
|
|
21035
|
-
}
|
|
21036
|
-
.v-slider.v-input--vertical .v-input__control {
|
|
21037
|
-
min-height: 300px;
|
|
21038
|
-
}
|
|
21039
|
-
|
|
21040
|
-
.v-slider.v-input--disabled {
|
|
21041
|
-
pointer-events: none;
|
|
21042
|
-
}
|
|
21043
|
-
|
|
21044
|
-
.v-slider--has-labels .v-input__control {
|
|
21045
|
-
margin-bottom: 4px;
|
|
21046
|
-
}
|
|
21047
|
-
|
|
21048
|
-
.v-slider__label {
|
|
21049
|
-
margin-inline-end: 12px;
|
|
21050
21179
|
}.v-snackbar {
|
|
21051
21180
|
justify-content: center;
|
|
21052
21181
|
padding-inline-end: var(--v-scrollbar-offset);
|
|
@@ -22063,6 +22192,7 @@ html.v-overlay-scroll-blocked {
|
|
|
22063
22192
|
position: relative;
|
|
22064
22193
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
22065
22194
|
transition-property: height, width, transform, max-width, left, right, top, bottom;
|
|
22195
|
+
width: 100%;
|
|
22066
22196
|
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
22067
22197
|
border-style: solid;
|
|
22068
22198
|
border-width: 0;
|
|
@@ -22271,126 +22401,6 @@ html.v-overlay-scroll-blocked {
|
|
|
22271
22401
|
}
|
|
22272
22402
|
.v-window-y-reverse-transition-leave-to {
|
|
22273
22403
|
transform: translateY(100%);
|
|
22274
|
-
}.v-selection-control-group {
|
|
22275
|
-
grid-area: control;
|
|
22276
|
-
display: flex;
|
|
22277
|
-
flex-direction: column;
|
|
22278
|
-
}
|
|
22279
|
-
.v-selection-control-group--inline {
|
|
22280
|
-
flex-direction: row;
|
|
22281
|
-
flex-wrap: wrap;
|
|
22282
|
-
}.v-input {
|
|
22283
|
-
display: grid;
|
|
22284
|
-
flex: 1 1 auto;
|
|
22285
|
-
font-size: 1rem;
|
|
22286
|
-
font-weight: 400;
|
|
22287
|
-
line-height: 1.5;
|
|
22288
|
-
}
|
|
22289
|
-
.v-input--disabled {
|
|
22290
|
-
pointer-events: none;
|
|
22291
|
-
}
|
|
22292
|
-
.v-input--density-default {
|
|
22293
|
-
--v-input-control-height: 56px;
|
|
22294
|
-
--v-input-padding-top: 16px;
|
|
22295
|
-
}
|
|
22296
|
-
|
|
22297
|
-
.v-input--density-comfortable {
|
|
22298
|
-
--v-input-control-height: 48px;
|
|
22299
|
-
--v-input-padding-top: 12px;
|
|
22300
|
-
}
|
|
22301
|
-
|
|
22302
|
-
.v-input--density-compact {
|
|
22303
|
-
--v-input-control-height: 40px;
|
|
22304
|
-
--v-input-padding-top: 8px;
|
|
22305
|
-
}
|
|
22306
|
-
|
|
22307
|
-
.v-input--vertical {
|
|
22308
|
-
grid-template-areas: "append" "control" "prepend";
|
|
22309
|
-
grid-template-rows: max-content auto max-content;
|
|
22310
|
-
grid-template-columns: min-content;
|
|
22311
|
-
}
|
|
22312
|
-
.v-input--vertical .v-input__prepend {
|
|
22313
|
-
margin-block-start: 16px;
|
|
22314
|
-
}
|
|
22315
|
-
.v-input--vertical .v-input__append {
|
|
22316
|
-
margin-block-end: 16px;
|
|
22317
|
-
}
|
|
22318
|
-
|
|
22319
|
-
.v-input--horizontal {
|
|
22320
|
-
grid-template-areas: "prepend control append" "a messages b";
|
|
22321
|
-
grid-template-columns: max-content minmax(0, 1fr) max-content;
|
|
22322
|
-
grid-template-rows: auto auto;
|
|
22323
|
-
}
|
|
22324
|
-
.v-input--horizontal .v-input__prepend {
|
|
22325
|
-
margin-inline-end: 16px;
|
|
22326
|
-
}
|
|
22327
|
-
.v-input--horizontal .v-input__append {
|
|
22328
|
-
margin-inline-start: 16px;
|
|
22329
|
-
}
|
|
22330
|
-
|
|
22331
|
-
.v-input__details {
|
|
22332
|
-
align-items: flex-end;
|
|
22333
|
-
display: flex;
|
|
22334
|
-
font-size: 0.75rem;
|
|
22335
|
-
font-weight: 400;
|
|
22336
|
-
grid-area: messages;
|
|
22337
|
-
letter-spacing: 0.0333333333em;
|
|
22338
|
-
line-height: normal;
|
|
22339
|
-
min-height: 22px;
|
|
22340
|
-
padding-top: 6px;
|
|
22341
|
-
overflow: hidden;
|
|
22342
|
-
justify-content: space-between;
|
|
22343
|
-
}
|
|
22344
|
-
|
|
22345
|
-
.v-input__details > .v-icon,
|
|
22346
|
-
.v-input__prepend > .v-icon,
|
|
22347
|
-
.v-input__append > .v-icon {
|
|
22348
|
-
opacity: var(--v-medium-emphasis-opacity);
|
|
22349
|
-
}
|
|
22350
|
-
.v-input--disabled .v-input__details > .v-icon,
|
|
22351
|
-
.v-input--disabled .v-input__details .v-messages, .v-input--error .v-input__details > .v-icon,
|
|
22352
|
-
.v-input--error .v-input__details .v-messages,
|
|
22353
|
-
.v-input--disabled .v-input__prepend > .v-icon,
|
|
22354
|
-
.v-input--disabled .v-input__prepend .v-messages,
|
|
22355
|
-
.v-input--error .v-input__prepend > .v-icon,
|
|
22356
|
-
.v-input--error .v-input__prepend .v-messages,
|
|
22357
|
-
.v-input--disabled .v-input__append > .v-icon,
|
|
22358
|
-
.v-input--disabled .v-input__append .v-messages,
|
|
22359
|
-
.v-input--error .v-input__append > .v-icon,
|
|
22360
|
-
.v-input--error .v-input__append .v-messages {
|
|
22361
|
-
opacity: 1;
|
|
22362
|
-
}
|
|
22363
|
-
.v-input--disabled .v-input__details,
|
|
22364
|
-
.v-input--disabled .v-input__prepend,
|
|
22365
|
-
.v-input--disabled .v-input__append {
|
|
22366
|
-
opacity: var(--v-disabled-opacity);
|
|
22367
|
-
}
|
|
22368
|
-
.v-input--error:not(.v-input--disabled) .v-input__details > .v-icon,
|
|
22369
|
-
.v-input--error:not(.v-input--disabled) .v-input__details .v-messages,
|
|
22370
|
-
.v-input--error:not(.v-input--disabled) .v-input__prepend > .v-icon,
|
|
22371
|
-
.v-input--error:not(.v-input--disabled) .v-input__prepend .v-messages,
|
|
22372
|
-
.v-input--error:not(.v-input--disabled) .v-input__append > .v-icon,
|
|
22373
|
-
.v-input--error:not(.v-input--disabled) .v-input__append .v-messages {
|
|
22374
|
-
color: rgb(var(--v-theme-error));
|
|
22375
|
-
}
|
|
22376
|
-
|
|
22377
|
-
.v-input__prepend,
|
|
22378
|
-
.v-input__append {
|
|
22379
|
-
display: flex;
|
|
22380
|
-
padding-top: var(--v-input-padding-top);
|
|
22381
|
-
}
|
|
22382
|
-
|
|
22383
|
-
.v-input__prepend {
|
|
22384
|
-
grid-area: prepend;
|
|
22385
|
-
}
|
|
22386
|
-
|
|
22387
|
-
.v-input__append {
|
|
22388
|
-
grid-area: append;
|
|
22389
|
-
}
|
|
22390
|
-
|
|
22391
|
-
.v-input__control {
|
|
22392
|
-
display: flex;
|
|
22393
|
-
grid-area: control;
|
|
22394
22404
|
}.v-color-picker-canvas {
|
|
22395
22405
|
position: relative;
|
|
22396
22406
|
overflow: hidden;
|