vuetify 3.0.2 → 3.0.3
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/json/attributes.json +23 -23
- package/dist/json/importMap.json +84 -84
- package/dist/json/web-types.json +91 -60
- package/dist/vuetify.css +114 -114
- package/dist/vuetify.d.ts +332 -141
- package/dist/vuetify.esm.js +13 -10
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -10
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +9 -9
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs +2 -2
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.ts +275 -62
- package/lib/components/VAutocomplete/index.d.ts +6 -6
- package/lib/components/VCombobox/index.d.ts +6 -6
- package/lib/components/VField/index.d.ts +6 -6
- package/lib/components/VFileInput/index.d.ts +1 -1
- package/lib/components/VFooter/VFooter.mjs +1 -1
- package/lib/components/VFooter/VFooter.mjs.map +1 -1
- package/lib/components/VLazy/VLazy.mjs +2 -1
- package/lib/components/VLazy/VLazy.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VOverlay/locationStrategies.mjs +3 -1
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.sass +1 -1
- package/lib/components/VProgressLinear/_variables.scss +1 -1
- package/lib/components/VSelect/index.d.ts +6 -6
- package/lib/components/VSelectionControl/index.d.ts +6 -6
- package/lib/components/VTextField/index.d.ts +18 -18
- package/lib/components/VTextarea/index.d.ts +1 -1
- package/lib/components/VToolbar/VToolbar.mjs.map +1 -1
- package/lib/components/VToolbar/index.d.ts +9 -8
- package/lib/components/index.d.ts +310 -119
- package/lib/components/transitions/dialog-transition.mjs +2 -2
- package/lib/components/transitions/dialog-transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.ts +22 -22
- package/package.json +2 -2
package/dist/vuetify.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.0.
|
|
2
|
+
* Vuetify v3.0.3
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -19166,63 +19166,6 @@ html.overflow-y-hidden {
|
|
|
19166
19166
|
padding: 0 8px;
|
|
19167
19167
|
vertical-align: middle;
|
|
19168
19168
|
}/** if false, disabled buttons will be greyed out */
|
|
19169
|
-
.v-btn-group {
|
|
19170
|
-
display: inline-flex;
|
|
19171
|
-
flex-wrap: nowrap;
|
|
19172
|
-
max-width: 100%;
|
|
19173
|
-
min-width: 0;
|
|
19174
|
-
overflow: hidden;
|
|
19175
|
-
vertical-align: middle;
|
|
19176
|
-
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19177
|
-
border-style: solid;
|
|
19178
|
-
border-width: 0;
|
|
19179
|
-
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));
|
|
19180
|
-
border-radius: 4px;
|
|
19181
|
-
background: transparent;
|
|
19182
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
19183
|
-
}
|
|
19184
|
-
.v-btn-group--border {
|
|
19185
|
-
border-width: thin;
|
|
19186
|
-
box-shadow: none;
|
|
19187
|
-
}
|
|
19188
|
-
.v-btn-group--density-default.v-btn-group {
|
|
19189
|
-
height: 48px;
|
|
19190
|
-
}
|
|
19191
|
-
|
|
19192
|
-
.v-btn-group--density-comfortable.v-btn-group {
|
|
19193
|
-
height: 40px;
|
|
19194
|
-
}
|
|
19195
|
-
|
|
19196
|
-
.v-btn-group--density-compact.v-btn-group {
|
|
19197
|
-
height: 36px;
|
|
19198
|
-
}
|
|
19199
|
-
|
|
19200
|
-
.v-btn-group .v-btn {
|
|
19201
|
-
border-radius: 0;
|
|
19202
|
-
border-color: inherit;
|
|
19203
|
-
}
|
|
19204
|
-
.v-btn-group .v-btn:not(:last-child) {
|
|
19205
|
-
border-inline-end: none;
|
|
19206
|
-
}
|
|
19207
|
-
.v-btn-group .v-btn:not(:first-child) {
|
|
19208
|
-
border-inline-start: none;
|
|
19209
|
-
}
|
|
19210
|
-
.v-btn-group .v-btn:first-child {
|
|
19211
|
-
border-start-start-radius: inherit;
|
|
19212
|
-
border-end-start-radius: inherit;
|
|
19213
|
-
}
|
|
19214
|
-
.v-btn-group .v-btn:last-child {
|
|
19215
|
-
border-start-end-radius: inherit;
|
|
19216
|
-
border-end-end-radius: inherit;
|
|
19217
|
-
}
|
|
19218
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
19219
|
-
border-inline-end-width: thin;
|
|
19220
|
-
border-inline-end-style: solid;
|
|
19221
|
-
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19222
|
-
}
|
|
19223
|
-
.v-btn-group--tile {
|
|
19224
|
-
border-radius: 0;
|
|
19225
|
-
}/** if false, disabled buttons will be greyed out */
|
|
19226
19169
|
.v-btn {
|
|
19227
19170
|
align-items: center;
|
|
19228
19171
|
border-radius: 4px;
|
|
@@ -19635,70 +19578,65 @@ html.overflow-y-hidden {
|
|
|
19635
19578
|
|
|
19636
19579
|
.v-snackbar-actions .v-btn {
|
|
19637
19580
|
padding: 0 8px;
|
|
19638
|
-
}
|
|
19639
|
-
|
|
19640
|
-
|
|
19581
|
+
}/** if false, disabled buttons will be greyed out */
|
|
19582
|
+
.v-btn-group {
|
|
19583
|
+
display: inline-flex;
|
|
19584
|
+
flex-wrap: nowrap;
|
|
19585
|
+
max-width: 100%;
|
|
19586
|
+
min-width: 0;
|
|
19641
19587
|
overflow: hidden;
|
|
19642
|
-
|
|
19643
|
-
|
|
19644
|
-
|
|
19645
|
-
|
|
19646
|
-
|
|
19647
|
-
|
|
19648
|
-
|
|
19649
|
-
|
|
19650
|
-
height: 50px;
|
|
19651
|
-
justify-content: center;
|
|
19652
|
-
list-style-type: none;
|
|
19653
|
-
position: absolute;
|
|
19654
|
-
width: 100%;
|
|
19655
|
-
z-index: 1;
|
|
19588
|
+
vertical-align: middle;
|
|
19589
|
+
border-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19590
|
+
border-style: solid;
|
|
19591
|
+
border-width: 0;
|
|
19592
|
+
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));
|
|
19593
|
+
border-radius: 4px;
|
|
19594
|
+
background: transparent;
|
|
19595
|
+
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
19656
19596
|
}
|
|
19657
|
-
.v-
|
|
19658
|
-
|
|
19597
|
+
.v-btn-group--border {
|
|
19598
|
+
border-width: thin;
|
|
19599
|
+
box-shadow: none;
|
|
19659
19600
|
}
|
|
19660
|
-
.v-
|
|
19661
|
-
|
|
19601
|
+
.v-btn-group--density-default.v-btn-group {
|
|
19602
|
+
height: 48px;
|
|
19662
19603
|
}
|
|
19663
|
-
|
|
19664
|
-
|
|
19604
|
+
|
|
19605
|
+
.v-btn-group--density-comfortable.v-btn-group {
|
|
19606
|
+
height: 40px;
|
|
19665
19607
|
}
|
|
19666
|
-
|
|
19667
|
-
|
|
19668
|
-
|
|
19608
|
+
|
|
19609
|
+
.v-btn-group--density-compact.v-btn-group {
|
|
19610
|
+
height: 36px;
|
|
19669
19611
|
}
|
|
19670
|
-
|
|
19671
|
-
|
|
19612
|
+
|
|
19613
|
+
.v-btn-group .v-btn {
|
|
19614
|
+
border-radius: 0;
|
|
19615
|
+
border-color: inherit;
|
|
19672
19616
|
}
|
|
19673
|
-
.v-
|
|
19674
|
-
|
|
19617
|
+
.v-btn-group .v-btn:not(:last-child) {
|
|
19618
|
+
border-inline-end: none;
|
|
19675
19619
|
}
|
|
19676
|
-
|
|
19677
|
-
|
|
19678
|
-
margin: 0;
|
|
19679
|
-
position: absolute;
|
|
19680
|
-
bottom: 0;
|
|
19681
|
-
left: 0;
|
|
19682
|
-
right: 0;
|
|
19620
|
+
.v-btn-group .v-btn:not(:first-child) {
|
|
19621
|
+
border-inline-start: none;
|
|
19683
19622
|
}
|
|
19684
|
-
|
|
19685
|
-
|
|
19686
|
-
|
|
19687
|
-
height: inherit;
|
|
19688
|
-
text-decoration: none;
|
|
19623
|
+
.v-btn-group .v-btn:first-child {
|
|
19624
|
+
border-start-start-radius: inherit;
|
|
19625
|
+
border-end-start-radius: inherit;
|
|
19689
19626
|
}
|
|
19690
|
-
.v-
|
|
19691
|
-
|
|
19627
|
+
.v-btn-group .v-btn:last-child {
|
|
19628
|
+
border-start-end-radius: inherit;
|
|
19629
|
+
border-end-end-radius: inherit;
|
|
19692
19630
|
}
|
|
19693
|
-
|
|
19694
|
-
|
|
19695
|
-
|
|
19631
|
+
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
19632
|
+
border-inline-end-width: thin;
|
|
19633
|
+
border-inline-end-style: solid;
|
|
19634
|
+
border-inline-end-color: rgba(var(--v-border-color), var(--v-border-opacity));
|
|
19696
19635
|
}
|
|
19697
|
-
|
|
19698
|
-
|
|
19699
|
-
|
|
19700
|
-
|
|
19701
|
-
width: 50px;
|
|
19636
|
+
.v-btn-group--tile {
|
|
19637
|
+
border-radius: 0;
|
|
19638
|
+
}.v-btn-toggle .v-btn.v-btn--selected:not(.v-btn--disabled) .v-btn__overlay {
|
|
19639
|
+
opacity: var(--v-activated-opacity);
|
|
19702
19640
|
}.v-card {
|
|
19703
19641
|
display: block;
|
|
19704
19642
|
overflow: hidden;
|
|
@@ -19989,6 +19927,68 @@ html.overflow-y-hidden {
|
|
|
19989
19927
|
pointer-events: none;
|
|
19990
19928
|
opacity: 0;
|
|
19991
19929
|
transition: opacity 0.2s ease-in-out;
|
|
19930
|
+
}.v-carousel {
|
|
19931
|
+
overflow: hidden;
|
|
19932
|
+
position: relative;
|
|
19933
|
+
width: 100%;
|
|
19934
|
+
}
|
|
19935
|
+
.v-carousel__controls {
|
|
19936
|
+
align-items: center;
|
|
19937
|
+
background: rgba(var(--v-theme-surface-variant), 0.3);
|
|
19938
|
+
bottom: 0;
|
|
19939
|
+
display: flex;
|
|
19940
|
+
height: 50px;
|
|
19941
|
+
justify-content: center;
|
|
19942
|
+
list-style-type: none;
|
|
19943
|
+
position: absolute;
|
|
19944
|
+
width: 100%;
|
|
19945
|
+
z-index: 1;
|
|
19946
|
+
}
|
|
19947
|
+
.v-carousel__controls > .v-item-group {
|
|
19948
|
+
flex: 0 1 auto;
|
|
19949
|
+
}
|
|
19950
|
+
.v-carousel__controls__item {
|
|
19951
|
+
margin: 0 8px;
|
|
19952
|
+
}
|
|
19953
|
+
.v-carousel__controls__item .v-icon {
|
|
19954
|
+
opacity: 0.5;
|
|
19955
|
+
}
|
|
19956
|
+
.v-carousel__controls__item--active .v-icon {
|
|
19957
|
+
opacity: 1;
|
|
19958
|
+
vertical-align: middle;
|
|
19959
|
+
}
|
|
19960
|
+
.v-carousel__controls__item:hover {
|
|
19961
|
+
background: none;
|
|
19962
|
+
}
|
|
19963
|
+
.v-carousel__controls__item:hover .v-icon {
|
|
19964
|
+
opacity: 0.8;
|
|
19965
|
+
}
|
|
19966
|
+
|
|
19967
|
+
.v-carousel__progress {
|
|
19968
|
+
margin: 0;
|
|
19969
|
+
position: absolute;
|
|
19970
|
+
bottom: 0;
|
|
19971
|
+
left: 0;
|
|
19972
|
+
right: 0;
|
|
19973
|
+
}
|
|
19974
|
+
|
|
19975
|
+
.v-carousel-item {
|
|
19976
|
+
display: block;
|
|
19977
|
+
height: inherit;
|
|
19978
|
+
text-decoration: none;
|
|
19979
|
+
}
|
|
19980
|
+
.v-carousel-item > .v-img {
|
|
19981
|
+
height: inherit;
|
|
19982
|
+
}
|
|
19983
|
+
|
|
19984
|
+
.v-carousel--hide-delimiter-background .v-carousel__controls {
|
|
19985
|
+
background: transparent;
|
|
19986
|
+
}
|
|
19987
|
+
|
|
19988
|
+
.v-carousel--vertical-delimiters .v-carousel__controls {
|
|
19989
|
+
flex-direction: column;
|
|
19990
|
+
height: 100% !important;
|
|
19991
|
+
width: 50px;
|
|
19992
19992
|
}.v-checkbox .v-selection-control {
|
|
19993
19993
|
height: var(--v-input-control-height);
|
|
19994
19994
|
}.v-chip {
|
|
@@ -24485,7 +24485,10 @@ html.v-overlay-scroll-blocked {
|
|
|
24485
24485
|
padding: 0;
|
|
24486
24486
|
}
|
|
24487
24487
|
|
|
24488
|
-
/* endregion */.v-
|
|
24488
|
+
/* endregion */.v-theme-provider {
|
|
24489
|
+
background: rgb(var(--v-theme-background));
|
|
24490
|
+
color: rgb(var(--v-theme-on-background));
|
|
24491
|
+
}.v-timeline .v-timeline-divider__dot {
|
|
24489
24492
|
background: rgb(var(--v-theme-on-surface-variant));
|
|
24490
24493
|
}
|
|
24491
24494
|
.v-timeline .v-timeline-divider__inner-dot {
|
|
@@ -24930,9 +24933,6 @@ html.v-overlay-scroll-blocked {
|
|
|
24930
24933
|
|
|
24931
24934
|
.v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-divider, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__body, .v-timeline--horizontal.v-timeline--truncate-line-end .v-timeline-item:last-child .v-timeline-item__opposite {
|
|
24932
24935
|
padding-inline-end: 0;
|
|
24933
|
-
}.v-theme-provider {
|
|
24934
|
-
background: rgb(var(--v-theme-background));
|
|
24935
|
-
color: rgb(var(--v-theme-on-background));
|
|
24936
24936
|
}.v-toolbar {
|
|
24937
24937
|
align-items: flex-start;
|
|
24938
24938
|
display: flex;
|