vuetify 3.3.14 → 3.3.15
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/importMap-labs.json +4 -4
- package/dist/json/web-types.json +95 -46
- package/dist/vuetify-labs.css +411 -391
- package/dist/vuetify-labs.d.ts +447 -226
- package/dist/vuetify-labs.esm.js +47 -17
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +47 -17
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +39 -19
- package/dist/vuetify.d.ts +448 -227
- package/dist/vuetify.esm.js +47 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +47 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +18 -17
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtnToggle/VBtnToggle.css +13 -2
- package/lib/components/VBtnToggle/VBtnToggle.sass +3 -3
- package/lib/components/VBtnToggle/_variables.scss +2 -1
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/index.d.mts +203 -87
- package/lib/components/VField/VField.css +14 -11
- package/lib/components/VField/VField.sass +14 -7
- package/lib/components/VField/_variables.scss +0 -1
- package/lib/components/VIcon/VIcon.css +1 -0
- package/lib/components/VIcon/VIcon.sass +1 -0
- package/lib/components/VOverlay/useActivator.mjs +1 -1
- package/lib/components/VOverlay/useActivator.mjs.map +1 -1
- package/lib/components/VRadio/index.d.mts +82 -23
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRadioGroup/index.d.mts +75 -109
- package/lib/components/VSelectionControl/VSelectionControl.mjs +17 -2
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.mts +19 -5
- package/lib/components/VSwitch/VSwitch.css +7 -5
- package/lib/components/VSwitch/VSwitch.mjs +18 -8
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.sass +6 -4
- package/lib/components/VSwitch/_variables.scss +5 -3
- package/lib/components/VSwitch/index.d.mts +82 -23
- package/lib/components/VTable/VTable.css +3 -0
- package/lib/components/VTable/VTable.sass +4 -0
- package/lib/components/VTable/_variables.scss +3 -0
- package/lib/components/VTabs/VTab.mjs +2 -2
- package/lib/components/VTabs/VTab.mjs.map +1 -1
- package/lib/components/VTextarea/VTextarea.mjs +1 -0
- package/lib/components/VTextarea/VTextarea.mjs.map +1 -1
- package/lib/components/index.d.mts +448 -227
- package/lib/composables/theme.mjs +6 -2
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +1 -1
- package/lib/locale/bg.mjs +23 -23
- package/lib/locale/bg.mjs.map +1 -1
- package/lib/locale/fa.mjs +16 -16
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/styles/tools/_states.sass +5 -5
- package/package.json +2 -2
package/dist/vuetify.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.3.
|
|
2
|
+
* Vuetify v3.3.15
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -17176,8 +17176,19 @@ html.overflow-y-hidden {
|
|
|
17176
17176
|
}
|
|
17177
17177
|
.v-btn-group--tile {
|
|
17178
17178
|
border-radius: 0;
|
|
17179
|
-
}.v-btn-toggle .v-btn.v-btn--
|
|
17180
|
-
opacity: var(--v-activated-opacity);
|
|
17179
|
+
}.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled) > .v-btn__overlay {
|
|
17180
|
+
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
17181
|
+
}
|
|
17182
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):hover > .v-btn__overlay {
|
|
17183
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
17184
|
+
}
|
|
17185
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus-visible > .v-btn__overlay {
|
|
17186
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
17187
|
+
}
|
|
17188
|
+
@supports not selector(:focus-visible) {
|
|
17189
|
+
.v-btn-toggle > .v-btn.v-btn--active:not(.v-btn--disabled):focus > .v-btn__overlay {
|
|
17190
|
+
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
17191
|
+
}
|
|
17181
17192
|
}.v-card {
|
|
17182
17193
|
display: block;
|
|
17183
17194
|
overflow: hidden;
|
|
@@ -19502,6 +19513,7 @@ textarea.v-field__input::placeholder {
|
|
|
19502
19513
|
.v-field__clearable {
|
|
19503
19514
|
cursor: pointer;
|
|
19504
19515
|
opacity: 0;
|
|
19516
|
+
overflow: hidden;
|
|
19505
19517
|
margin-inline-start: 4px;
|
|
19506
19518
|
margin-inline-end: 4px;
|
|
19507
19519
|
transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
|
@@ -19651,20 +19663,14 @@ textarea.v-field__input::placeholder {
|
|
|
19651
19663
|
transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
|
|
19652
19664
|
}
|
|
19653
19665
|
.v-field--variant-outlined .v-field__outline__start {
|
|
19666
|
+
flex: 0 0 12px;
|
|
19654
19667
|
border-top-width: var(--v-field-border-width);
|
|
19655
19668
|
border-bottom-width: var(--v-field-border-width);
|
|
19656
19669
|
border-inline-start-width: var(--v-field-border-width);
|
|
19657
19670
|
}
|
|
19658
|
-
.v-
|
|
19659
|
-
|
|
19660
|
-
|
|
19661
|
-
|
|
19662
|
-
.v-input--density-comfortable .v-field--variant-outlined .v-field__outline__start {
|
|
19663
|
-
flex: 0 0 25px;
|
|
19664
|
-
}
|
|
19665
|
-
|
|
19666
|
-
.v-input--density-compact .v-field--variant-outlined .v-field__outline__start {
|
|
19667
|
-
flex: 0 0 21px;
|
|
19671
|
+
.v-field--rounded.v-field--variant-outlined .v-field__outline__start,
|
|
19672
|
+
[class^=rounded-].v-field--variant-outlined .v-field__outline__start {
|
|
19673
|
+
flex-basis: calc(var(--v-input-control-height) / 2 + 2px);
|
|
19668
19674
|
}
|
|
19669
19675
|
|
|
19670
19676
|
.v-locale--is-ltr.v-field--variant-outlined .v-field__outline__start, .v-locale--is-ltr .v-field--variant-outlined .v-field__outline__start {
|
|
@@ -19729,11 +19735,19 @@ textarea.v-field__input::placeholder {
|
|
|
19729
19735
|
/* endregion */
|
|
19730
19736
|
/* region LOADER */
|
|
19731
19737
|
.v-field__loader {
|
|
19732
|
-
|
|
19738
|
+
top: calc(100% - 2px);
|
|
19733
19739
|
left: 0;
|
|
19734
19740
|
position: absolute;
|
|
19735
19741
|
right: 0;
|
|
19736
19742
|
width: 100%;
|
|
19743
|
+
border-top-left-radius: 0;
|
|
19744
|
+
border-top-right-radius: 0;
|
|
19745
|
+
border-bottom-left-radius: inherit;
|
|
19746
|
+
border-bottom-right-radius: inherit;
|
|
19747
|
+
overflow: hidden;
|
|
19748
|
+
}
|
|
19749
|
+
.v-field--variant-outlined .v-field__loader {
|
|
19750
|
+
top: calc(100% - 3px);
|
|
19737
19751
|
}
|
|
19738
19752
|
|
|
19739
19753
|
/* endregion */
|
|
@@ -19878,6 +19892,7 @@ textarea.v-field__input::placeholder {
|
|
|
19878
19892
|
user-select: none;
|
|
19879
19893
|
vertical-align: middle;
|
|
19880
19894
|
width: 1em;
|
|
19895
|
+
min-width: 1em;
|
|
19881
19896
|
}
|
|
19882
19897
|
.v-icon--clickable {
|
|
19883
19898
|
cursor: pointer;
|
|
@@ -21677,6 +21692,10 @@ html.v-overlay-scroll-blocked {
|
|
|
21677
21692
|
}.v-switch .v-label {
|
|
21678
21693
|
padding-inline-start: 10px;
|
|
21679
21694
|
}
|
|
21695
|
+
.v-switch .v-switch__thumb {
|
|
21696
|
+
background-color: rgb(var(--v-theme-surface-bright));
|
|
21697
|
+
color: rgb(var(--v-theme-on-surface-bright));
|
|
21698
|
+
}
|
|
21680
21699
|
|
|
21681
21700
|
.v-switch__loader {
|
|
21682
21701
|
display: flex;
|
|
@@ -21696,13 +21715,13 @@ html.v-overlay-scroll-blocked {
|
|
|
21696
21715
|
}
|
|
21697
21716
|
|
|
21698
21717
|
.v-switch__track {
|
|
21699
|
-
background-color:
|
|
21718
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
|
21700
21719
|
border-radius: 9999px;
|
|
21701
21720
|
height: 14px;
|
|
21702
21721
|
opacity: 0.6;
|
|
21703
21722
|
width: 36px;
|
|
21704
21723
|
cursor: pointer;
|
|
21705
|
-
transition: 0.2s color cubic-bezier(0.4, 0, 0.2, 1);
|
|
21724
|
+
transition: 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
21706
21725
|
}
|
|
21707
21726
|
.v-switch--inset .v-switch__track {
|
|
21708
21727
|
border-radius: 9999px;
|
|
@@ -21713,14 +21732,12 @@ html.v-overlay-scroll-blocked {
|
|
|
21713
21732
|
.v-switch__thumb {
|
|
21714
21733
|
align-items: center;
|
|
21715
21734
|
border-radius: 50%;
|
|
21716
|
-
background: rgb(var(--v-theme-surface));
|
|
21717
|
-
color: rgb(var(--v-theme-on-surface));
|
|
21718
21735
|
display: flex;
|
|
21719
21736
|
height: 20px;
|
|
21720
21737
|
justify-content: center;
|
|
21721
21738
|
width: 20px;
|
|
21722
21739
|
pointer-events: none;
|
|
21723
|
-
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1);
|
|
21740
|
+
transition: 0.15s 0.05s transform cubic-bezier(0, 0, 0.2, 1), 0.2s color cubic-bezier(0.4, 0, 0.2, 1), 0.2s background-color cubic-bezier(0.4, 0, 0.2, 1);
|
|
21724
21741
|
position: relative;
|
|
21725
21742
|
overflow: hidden;
|
|
21726
21743
|
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));
|
|
@@ -21898,6 +21915,9 @@ html.v-overlay-scroll-blocked {
|
|
|
21898
21915
|
}.v-table {
|
|
21899
21916
|
background: rgb(var(--v-theme-surface));
|
|
21900
21917
|
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
21918
|
+
transition-duration: 0.28s;
|
|
21919
|
+
transition-property: box-shadow, opacity, background;
|
|
21920
|
+
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
21901
21921
|
}
|
|
21902
21922
|
.v-table .v-table-divider {
|
|
21903
21923
|
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|