@fastkit/vui 0.18.33 → 0.19.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/dist/vui.css +57 -62
- package/dist/vui.d.ts +470 -421
- package/dist/vui.mjs +14 -8
- package/dist/vui.mjs.map +1 -1
- package/package.json +27 -36
- package/src/components/VBusyImage/VBusyImage.tsx +11 -5
- package/src/components/VButton/VButton.tsx +0 -1
- package/src/components/VCard/VCard.tsx +1 -5
- package/src/components/VListTile/VListTile.tsx +0 -1
- package/src/plugin.tsx +2 -0
package/dist/vui.css
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
box-sizing:border-box;
|
|
5
5
|
}
|
|
6
6
|
html{
|
|
7
|
-
-webkit-text-size-adjust:100%;
|
|
8
7
|
line-height:1.15;
|
|
8
|
+
-webkit-text-size-adjust:100%;
|
|
9
9
|
}
|
|
10
10
|
body{
|
|
11
11
|
margin:0;
|
|
@@ -120,10 +120,7 @@
|
|
|
120
120
|
summary{
|
|
121
121
|
display:list-item;
|
|
122
122
|
}
|
|
123
|
-
template{
|
|
124
|
-
display:none;
|
|
125
|
-
}
|
|
126
|
-
[hidden]{
|
|
123
|
+
[hidden],template{
|
|
127
124
|
display:none;
|
|
128
125
|
}
|
|
129
126
|
button{
|
|
@@ -383,9 +380,9 @@
|
|
|
383
380
|
}
|
|
384
381
|
html{
|
|
385
382
|
text-size-adjust:100%;
|
|
386
|
-
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
387
383
|
font-size:var(--root-em);
|
|
388
384
|
text-rendering:optimizeLegibility;
|
|
385
|
+
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
389
386
|
}
|
|
390
387
|
body{
|
|
391
388
|
color:var(--typo-base-color);
|
|
@@ -612,12 +609,12 @@
|
|
|
612
609
|
flex-direction:column;
|
|
613
610
|
}
|
|
614
611
|
.v-form-control{
|
|
615
|
-
--my-label-color:var(--control-label-color);
|
|
616
|
-
--my-message-color:var(--control-message-color);
|
|
617
612
|
display:flex;
|
|
618
613
|
flex-direction:column;
|
|
619
614
|
margin:var(--control-horizontal-margin) 0;
|
|
620
615
|
max-width:100%;
|
|
616
|
+
--my-label-color:var(--control-label-color);
|
|
617
|
+
--my-message-color:var(--control-message-color);
|
|
621
618
|
}
|
|
622
619
|
.v-form-control--invalid:not(.v-form-control--readonly){
|
|
623
620
|
--my-label-color:var(--main-color);
|
|
@@ -706,7 +703,11 @@
|
|
|
706
703
|
}
|
|
707
704
|
.v-skelton-loader-bone:after{
|
|
708
705
|
animation:v-skelton-loader-bone-loading 1.5s infinite;
|
|
709
|
-
background:linear-gradient(
|
|
706
|
+
background:linear-gradient(
|
|
707
|
+
90deg,
|
|
708
|
+
hsla(0,0%,100%,0),
|
|
709
|
+
hsla(0,0%,100%,.3),
|
|
710
|
+
hsla(0,0%,100%,0));
|
|
710
711
|
content:"";
|
|
711
712
|
height:100%;
|
|
712
713
|
left:0;
|
|
@@ -804,18 +805,20 @@
|
|
|
804
805
|
}
|
|
805
806
|
.v-avatar{
|
|
806
807
|
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
808
|
+
appearance:none;
|
|
809
|
+
cursor:pointer;
|
|
810
|
+
outline:0;
|
|
811
|
+
padding:0;
|
|
812
|
+
touch-action:manipulation;
|
|
813
|
+
user-select:none;
|
|
807
814
|
--avatar-radius:50%;
|
|
808
815
|
--avatar-font-weight:var(--typo-medium-weight);
|
|
809
816
|
--avatar-base-font-size:var(--typo-base-size);
|
|
810
817
|
--avatar-font-size:var(--avatar-base-font-size);
|
|
811
|
-
--shadow-color:transparent !important;
|
|
812
|
-
--focusShadow-color:transparent !important;
|
|
813
818
|
align-items:center;
|
|
814
|
-
appearance:none;
|
|
815
819
|
border-radius:var(--avatar-radius);
|
|
816
820
|
border-style:solid;
|
|
817
821
|
border-width:1px;
|
|
818
|
-
cursor:pointer;
|
|
819
822
|
cursor:default;
|
|
820
823
|
display:inline-flex;
|
|
821
824
|
flex-basis:var(--avatar-size);
|
|
@@ -825,14 +828,12 @@
|
|
|
825
828
|
justify-content:center;
|
|
826
829
|
line-height:1;
|
|
827
830
|
min-width:var(--avatar-size);
|
|
828
|
-
outline:0;
|
|
829
831
|
overflow:hidden;
|
|
830
|
-
padding:0;
|
|
831
832
|
text-align:center;
|
|
832
|
-
touch-action:manipulation;
|
|
833
|
-
user-select:none;
|
|
834
833
|
vertical-align:bottom;
|
|
835
834
|
width:var(--avatar-size);
|
|
835
|
+
--shadow-color:transparent !important;
|
|
836
|
+
--focusShadow-color:transparent !important;
|
|
836
837
|
}
|
|
837
838
|
.v-avatar::-moz-focus-inner{
|
|
838
839
|
border:0;
|
|
@@ -869,15 +870,17 @@
|
|
|
869
870
|
}
|
|
870
871
|
.v-chip{
|
|
871
872
|
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
873
|
+
appearance:none;
|
|
874
|
+
cursor:pointer;
|
|
875
|
+
outline:0;
|
|
876
|
+
padding:0;
|
|
877
|
+
touch-action:manipulation;
|
|
878
|
+
user-select:none;
|
|
872
879
|
--chip-radius:calc(var(--chip-height)/2);
|
|
873
|
-
--shadow-color:transparent !important;
|
|
874
|
-
--focusShadow-color:transparent !important;
|
|
875
880
|
align-items:center;
|
|
876
|
-
appearance:none;
|
|
877
881
|
border-radius:var(--chip-radius);
|
|
878
882
|
border-style:solid;
|
|
879
883
|
border-width:1px;
|
|
880
|
-
cursor:pointer;
|
|
881
884
|
cursor:default;
|
|
882
885
|
display:inline-flex;
|
|
883
886
|
font-size:var(--chip-font-size);
|
|
@@ -885,15 +888,13 @@
|
|
|
885
888
|
height:var(--chip-height);
|
|
886
889
|
justify-content:center;
|
|
887
890
|
line-height:1;
|
|
888
|
-
outline:0;
|
|
889
891
|
overflow:hidden;
|
|
890
|
-
padding:0;
|
|
891
892
|
padding:0 var(--chip-padding);
|
|
892
893
|
text-align:center;
|
|
893
|
-
touch-action:manipulation;
|
|
894
|
-
user-select:none;
|
|
895
894
|
vertical-align:bottom;
|
|
896
895
|
white-space:nowrap;
|
|
896
|
+
--shadow-color:transparent !important;
|
|
897
|
+
--focusShadow-color:transparent !important;
|
|
897
898
|
}
|
|
898
899
|
.v-chip::-moz-focus-inner{
|
|
899
900
|
border:0;
|
|
@@ -1042,18 +1043,18 @@
|
|
|
1042
1043
|
}
|
|
1043
1044
|
.v-button--rounded{
|
|
1044
1045
|
--padding:0;
|
|
1045
|
-
--height:auto;
|
|
1046
1046
|
aspect-ratio:1/1;
|
|
1047
1047
|
border-radius:50%;
|
|
1048
1048
|
min-width:0;
|
|
1049
|
+
--height:auto;
|
|
1049
1050
|
}
|
|
1050
1051
|
.v-button--icon,.v-button--rounded{
|
|
1051
1052
|
margin:calc(var(--root-em)*.125) calc(var(--root-em)*.125);
|
|
1052
1053
|
}
|
|
1053
1054
|
.v-button--icon{
|
|
1055
|
+
min-width:1.9285714286em;
|
|
1054
1056
|
--height:1.9285714286em;
|
|
1055
1057
|
--padding:0em;
|
|
1056
|
-
min-width:1.9285714286em;
|
|
1057
1058
|
}
|
|
1058
1059
|
.v-button::-moz-focus-inner{
|
|
1059
1060
|
border:0;
|
|
@@ -1217,9 +1218,9 @@
|
|
|
1217
1218
|
width:100%;
|
|
1218
1219
|
}
|
|
1219
1220
|
.v-list-tile--clickable{
|
|
1221
|
+
cursor:pointer;
|
|
1220
1222
|
--tile-text-color:var(--nav-color);
|
|
1221
1223
|
--tile-text-active-color:var(--navActive-color, var(--nav-color));
|
|
1222
|
-
cursor:pointer;
|
|
1223
1224
|
}
|
|
1224
1225
|
.v-list-tile--clickable:focus,.v-list-tile--clickable:hover{
|
|
1225
1226
|
--tile-background:var(--tile-active-background);
|
|
@@ -1262,9 +1263,9 @@
|
|
|
1262
1263
|
justify-content:center;
|
|
1263
1264
|
}
|
|
1264
1265
|
.v-drawer-layout__body{
|
|
1265
|
-
-webkit-overflow-scrolling:touch;
|
|
1266
1266
|
flex:1 1 100%;
|
|
1267
1267
|
overflow:auto;
|
|
1268
|
+
-webkit-overflow-scrolling:touch;
|
|
1268
1269
|
}
|
|
1269
1270
|
.v-drawer-layout__footer{
|
|
1270
1271
|
flex:0 0 auto;
|
|
@@ -1321,13 +1322,6 @@
|
|
|
1321
1322
|
text-transform:uppercase;
|
|
1322
1323
|
}
|
|
1323
1324
|
.v-control-field{
|
|
1324
|
-
--my-bottom-color:var(--control-field-bottom-color);
|
|
1325
|
-
--my-bottom-hover-color:var(--control-field-bottom-hover-color);
|
|
1326
|
-
--my-focused-color:var(--main-color);
|
|
1327
|
-
--my-fill-color:var(--control-field-fill-color);
|
|
1328
|
-
--my-fill-hover-color:var(--control-field-fill-hover-color);
|
|
1329
|
-
--my-outline-color:var(--control-field-outline-color);
|
|
1330
|
-
--my-outline-hover-color:var(--control-field-outline-hover-color);
|
|
1331
1325
|
align-items:center;
|
|
1332
1326
|
display:inline-flex;
|
|
1333
1327
|
font-size:var(--control-field-font-size);
|
|
@@ -1338,6 +1332,13 @@
|
|
|
1338
1332
|
padding:0 8px;
|
|
1339
1333
|
position:relative;
|
|
1340
1334
|
width:100%;
|
|
1335
|
+
--my-bottom-color:var(--control-field-bottom-color);
|
|
1336
|
+
--my-bottom-hover-color:var(--control-field-bottom-hover-color);
|
|
1337
|
+
--my-focused-color:var(--main-color);
|
|
1338
|
+
--my-fill-color:var(--control-field-fill-color);
|
|
1339
|
+
--my-fill-hover-color:var(--control-field-fill-hover-color);
|
|
1340
|
+
--my-outline-color:var(--control-field-outline-color);
|
|
1341
|
+
--my-outline-hover-color:var(--control-field-outline-hover-color);
|
|
1341
1342
|
}
|
|
1342
1343
|
.v-control-field--invalid:not(.v-control-field--disabled):not(.v-control-field--readonly){
|
|
1343
1344
|
--my-bottom-color:var(--main-color);
|
|
@@ -1476,10 +1477,7 @@
|
|
|
1476
1477
|
padding-right:1em;
|
|
1477
1478
|
user-select:none;
|
|
1478
1479
|
}
|
|
1479
|
-
.v-checkable--checked{
|
|
1480
|
-
--color:var(--main-color);
|
|
1481
|
-
}
|
|
1482
|
-
.v-checkable--invalid:not(.v-checkable--readonly){
|
|
1480
|
+
.v-checkable--checked,.v-checkable--invalid:not(.v-checkable--readonly){
|
|
1483
1481
|
--color:var(--main-color);
|
|
1484
1482
|
}
|
|
1485
1483
|
.v-checkable--disabled{
|
|
@@ -1490,13 +1488,13 @@
|
|
|
1490
1488
|
pointer-events:none;
|
|
1491
1489
|
}
|
|
1492
1490
|
.v-checkable input{
|
|
1493
|
-
clip:rect(0 0 0 0);
|
|
1494
|
-
clip-path:inset(100%);
|
|
1495
1491
|
height:1px;
|
|
1496
1492
|
overflow:hidden;
|
|
1497
1493
|
position:absolute;
|
|
1498
|
-
white-space:nowrap;
|
|
1499
1494
|
width:1px;
|
|
1495
|
+
clip:rect(0 0 0 0);
|
|
1496
|
+
clip-path:inset(100%);
|
|
1497
|
+
white-space:nowrap;
|
|
1500
1498
|
}
|
|
1501
1499
|
.v-checkable__faux{
|
|
1502
1500
|
align-items:center;
|
|
@@ -1677,13 +1675,13 @@
|
|
|
1677
1675
|
text-decoration:none;
|
|
1678
1676
|
}
|
|
1679
1677
|
.v-option input{
|
|
1680
|
-
clip:rect(0 0 0 0);
|
|
1681
|
-
clip-path:inset(100%);
|
|
1682
1678
|
height:1px;
|
|
1683
1679
|
overflow:hidden;
|
|
1684
1680
|
position:absolute;
|
|
1685
|
-
white-space:nowrap;
|
|
1686
1681
|
width:1px;
|
|
1682
|
+
clip:rect(0 0 0 0);
|
|
1683
|
+
clip-path:inset(100%);
|
|
1684
|
+
white-space:nowrap;
|
|
1687
1685
|
}
|
|
1688
1686
|
.v-option:after,.v-option:before{
|
|
1689
1687
|
content:"";
|
|
@@ -1742,13 +1740,13 @@
|
|
|
1742
1740
|
cursor:pointer;
|
|
1743
1741
|
}
|
|
1744
1742
|
.v-select__input__element{
|
|
1745
|
-
clip:rect(0 0 0 0);
|
|
1746
|
-
clip-path:inset(100%);
|
|
1747
1743
|
height:1px;
|
|
1748
1744
|
overflow:hidden;
|
|
1749
1745
|
position:absolute;
|
|
1750
|
-
white-space:nowrap;
|
|
1751
1746
|
width:1px;
|
|
1747
|
+
clip:rect(0 0 0 0);
|
|
1748
|
+
clip-path:inset(100%);
|
|
1749
|
+
white-space:nowrap;
|
|
1752
1750
|
}
|
|
1753
1751
|
.v-select__body{
|
|
1754
1752
|
padding:.5em 0;
|
|
@@ -1800,9 +1798,9 @@
|
|
|
1800
1798
|
width:100%;
|
|
1801
1799
|
}
|
|
1802
1800
|
.v-text-field__input__element:-webkit-autofill:-webkit-autofill,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:active,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:focus,.v-text-field__input__element:-webkit-autofill:-webkit-autofill:hover{
|
|
1803
|
-
-webkit-text-fill-color:#fff !important;
|
|
1804
1801
|
color:inherit !important;
|
|
1805
1802
|
transition:background-color 5000s;
|
|
1803
|
+
-webkit-text-fill-color:#fff !important;
|
|
1806
1804
|
}
|
|
1807
1805
|
.v-text-field__input__element::-ms-clear{
|
|
1808
1806
|
display:none;
|
|
@@ -1829,9 +1827,9 @@
|
|
|
1829
1827
|
width:100%;
|
|
1830
1828
|
}
|
|
1831
1829
|
.v-textarea__input__element:-webkit-autofill:-webkit-autofill,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:active,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:focus,.v-textarea__input__element:-webkit-autofill:-webkit-autofill:hover{
|
|
1832
|
-
-webkit-text-fill-color:#fff !important;
|
|
1833
1830
|
color:inherit !important;
|
|
1834
1831
|
transition:background-color 5000s;
|
|
1832
|
+
-webkit-text-fill-color:#fff !important;
|
|
1835
1833
|
}
|
|
1836
1834
|
.v-textarea__input__element::-ms-clear{
|
|
1837
1835
|
display:none;
|
|
@@ -1873,22 +1871,22 @@
|
|
|
1873
1871
|
}
|
|
1874
1872
|
.v-tab{
|
|
1875
1873
|
-webkit-tap-highlight-color:rgba(0, 0, 0, 0);
|
|
1874
|
+
appearance:none;
|
|
1875
|
+
border-width:0;
|
|
1876
|
+
cursor:pointer;
|
|
1877
|
+
outline:0;
|
|
1878
|
+
touch-action:manipulation;
|
|
1876
1879
|
--tab-content-color:var(--palette-caption);
|
|
1877
1880
|
--tab-content-focus-color:var(--main-color);
|
|
1878
1881
|
--tab-content-opacity:0.7;
|
|
1879
1882
|
align-items:center;
|
|
1880
|
-
appearance:none;
|
|
1881
|
-
border-width:0;
|
|
1882
|
-
cursor:pointer;
|
|
1883
1883
|
display:flex;
|
|
1884
1884
|
font:inherit;
|
|
1885
1885
|
font-size:var(--tabs-font-size);
|
|
1886
1886
|
height:var(--tabs-height);
|
|
1887
1887
|
justify-content:center;
|
|
1888
|
-
outline:0;
|
|
1889
1888
|
padding:0 1.25em;
|
|
1890
1889
|
position:relative;
|
|
1891
|
-
touch-action:manipulation;
|
|
1892
1890
|
transition:color .6s;
|
|
1893
1891
|
user-select:none;
|
|
1894
1892
|
white-space:nowrap;
|
|
@@ -1933,9 +1931,9 @@
|
|
|
1933
1931
|
}
|
|
1934
1932
|
.v-tab--active{
|
|
1935
1933
|
--tab-content-color:rgba(0,0,0,.87);
|
|
1936
|
-
--tab-content-opacity:1;
|
|
1937
1934
|
background:var(--tabs-color);
|
|
1938
1935
|
pointer-events:none;
|
|
1936
|
+
--tab-content-opacity:1;
|
|
1939
1937
|
}
|
|
1940
1938
|
.v-tab--active:before{
|
|
1941
1939
|
transform:scaleX(1);
|
|
@@ -2151,10 +2149,7 @@
|
|
|
2151
2149
|
background:hsla(0,0%,100%,.85);
|
|
2152
2150
|
user-select:none;
|
|
2153
2151
|
}
|
|
2154
|
-
.v-data-table__table__header .v-data-table__table__cell--active .v-data-table__table__sort-icon{
|
|
2155
|
-
opacity:1;
|
|
2156
|
-
}
|
|
2157
|
-
.v-data-table__table__cell[tabindex="0"]:focus .v-data-table__table__sort-icon,.v-data-table__table__cell[tabindex="0"]:hover .v-data-table__table__sort-icon{
|
|
2152
|
+
.v-data-table__table__cell[tabindex="0"]:focus .v-data-table__table__sort-icon,.v-data-table__table__cell[tabindex="0"]:hover .v-data-table__table__sort-icon,.v-data-table__table__header .v-data-table__table__cell--active .v-data-table__table__sort-icon{
|
|
2158
2153
|
opacity:1;
|
|
2159
2154
|
}
|
|
2160
2155
|
.v-data-table__table__body tr:last-child .v-data-table__table__cell{
|
|
@@ -2330,9 +2325,9 @@
|
|
|
2330
2325
|
z-index:1;
|
|
2331
2326
|
}
|
|
2332
2327
|
.v-sheet-modal__scroller{
|
|
2328
|
+
flex:1 1;
|
|
2333
2329
|
-webkit-overflow-scrolling:touch;
|
|
2334
2330
|
background-color:var(--v-sheet-background);
|
|
2335
|
-
flex:1 1;
|
|
2336
2331
|
height:100%;
|
|
2337
2332
|
overflow-y:auto;
|
|
2338
2333
|
}
|