@fastkit/vui 0.16.32 → 0.16.34
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/vui.css +6 -6
- package/dist/vui.d.ts +228 -122
- package/dist/vui.mjs +29 -40
- package/dist/vui.mjs.map +1 -1
- package/package.json +14 -14
- package/src/components/VAvatar/VAvatar.scss +2 -2
- package/src/components/VAvatar/VAvatar.tsx +12 -13
- package/src/components/VButton/VButton.scss +6 -2
- package/src/components/VButton/VButton.tsx +24 -15
- package/src/components/VCard/VCard.scss +2 -3
- package/src/components/VChip/VChip.scss +0 -18
- package/src/components/VChip/VChip.tsx +14 -16
- package/src/components/VListTile/VListTile.tsx +1 -1
- package/src/components/VOption/VOption.scss +1 -0
package/dist/vui.css
CHANGED
|
@@ -971,10 +971,10 @@
|
|
|
971
971
|
.v-card.clickable:focus:before,.v-card.clickable:hover:before{
|
|
972
972
|
opacity:.125;
|
|
973
973
|
}
|
|
974
|
-
.v-card[disabled]{
|
|
974
|
+
.v-card[aria-disabled=true],.v-card[disabled]{
|
|
975
975
|
pointer-events:none;
|
|
976
976
|
}
|
|
977
|
-
.v-card[disabled]:before{
|
|
977
|
+
.v-card[aria-disabled=true]:before,.v-card[disabled]:before{
|
|
978
978
|
content:none;
|
|
979
979
|
}
|
|
980
980
|
.v-card-content{
|
|
@@ -1028,7 +1028,7 @@
|
|
|
1028
1028
|
.v-button--plain{
|
|
1029
1029
|
color:inherit !important;
|
|
1030
1030
|
}
|
|
1031
|
-
.v-button--plain[disabled]{
|
|
1031
|
+
.v-button--plain.v-button--guard-in-progress,.v-button--plain[aria-disabled=true],.v-button--plain[disabled]{
|
|
1032
1032
|
opacity:.5;
|
|
1033
1033
|
}
|
|
1034
1034
|
.v-button--sm{
|
|
@@ -1058,7 +1058,7 @@
|
|
|
1058
1058
|
.v-button::-moz-focus-inner{
|
|
1059
1059
|
border:0;
|
|
1060
1060
|
}
|
|
1061
|
-
.v-button[disabled]{
|
|
1061
|
+
.v-button.v-button--guard-in-progress,.v-button[aria-disabled=true],.v-button[disabled]{
|
|
1062
1062
|
cursor:default;
|
|
1063
1063
|
}
|
|
1064
1064
|
.v-button--spacer-left{
|
|
@@ -1717,12 +1717,12 @@
|
|
|
1717
1717
|
.v-option--has-not-value .v-option__label{
|
|
1718
1718
|
font-style:italic;
|
|
1719
1719
|
}
|
|
1720
|
-
.v-option[disabled],.v-option[tabindex="-1"]{
|
|
1720
|
+
.v-option[aria-disabled=true],.v-option[disabled],.v-option[tabindex="-1"]{
|
|
1721
1721
|
color:var(--palette-muted);
|
|
1722
1722
|
opacity:.4;
|
|
1723
1723
|
pointer-events:none;
|
|
1724
1724
|
}
|
|
1725
|
-
.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
|
|
1725
|
+
.v-option[aria-disabled=true]:before,.v-option[disabled]:before,.v-option[tabindex="-1"]:before{
|
|
1726
1726
|
opacity:0 !important;
|
|
1727
1727
|
}
|
|
1728
1728
|
.v-option-group{
|