@fastkit/vui 0.6.15 → 0.6.19
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/tool/index.js +9 -0
- package/dist/tool/vite-plugin.d.ts.map +1 -1
- package/dist/vui.cjs.js +359 -80
- package/dist/vui.cjs.prod.js +359 -80
- package/dist/vui.css +78 -10
- package/dist/vui.d.ts +286 -50
- package/dist/vui.esm-bundler.js +356 -81
- package/dist/vui.min.css +1 -1
- package/dist/vui.min.css.map +1 -1
- package/package.json +6 -6
package/dist/vui.css
CHANGED
|
@@ -923,22 +923,44 @@ h6,
|
|
|
923
923
|
transform: translate(-50%, -50%);
|
|
924
924
|
}
|
|
925
925
|
.v-list-tile {
|
|
926
|
+
--tile-background: var(--main-color, transparent);
|
|
927
|
+
--tile-active-background: var(--deep-color, transparent);
|
|
928
|
+
--tile-text-color: var(--text-color);
|
|
929
|
+
--tile-text-active-color: var(--text-color);
|
|
930
|
+
--tile-pin-color: transparent;
|
|
931
|
+
--paper-link-color: var(--tile-text-color);
|
|
926
932
|
display: flex;
|
|
927
933
|
align-items: center;
|
|
928
934
|
width: 100%;
|
|
929
935
|
padding: 10px;
|
|
930
|
-
color:
|
|
936
|
+
color: var(--tile-text-color);
|
|
931
937
|
text-align: left;
|
|
932
938
|
text-decoration: none;
|
|
933
|
-
|
|
939
|
+
user-select: none;
|
|
940
|
+
background: var(--tile-background);
|
|
934
941
|
border: 0;
|
|
935
|
-
border-left: 3px solid
|
|
942
|
+
border-left: 3px solid var(--tile-pin-color);
|
|
936
943
|
border-radius: 0;
|
|
937
944
|
outline: 0;
|
|
945
|
+
transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, background-color 150ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
|
|
938
946
|
appearance: none;
|
|
939
947
|
}
|
|
948
|
+
.v-list-tile--clickable {
|
|
949
|
+
cursor: pointer;
|
|
950
|
+
--tile-text-color: var(--nav-color);
|
|
951
|
+
--tile-text-active-color: var(--navActive-color, var(--nav-color));
|
|
952
|
+
}
|
|
953
|
+
.v-list-tile--clickable:hover, .v-list-tile--clickable:focus {
|
|
954
|
+
--tile-background: var(--tile-active-background);
|
|
955
|
+
--tile-text-color: var(--tile-text-active-color);
|
|
956
|
+
}
|
|
957
|
+
.v-list-tile--active {
|
|
958
|
+
--tile-pin-color: var(--pin-color);
|
|
959
|
+
--tile-text-color: var(--tile-text-active-color);
|
|
960
|
+
--tile-background: var(--tile-active-background);
|
|
961
|
+
}
|
|
940
962
|
.v-list-tile__body {
|
|
941
|
-
font-size: 0.
|
|
963
|
+
font-size: 0.8125rem;
|
|
942
964
|
font-weight: 500;
|
|
943
965
|
line-height: 1.5;
|
|
944
966
|
}
|
|
@@ -949,8 +971,47 @@ h6,
|
|
|
949
971
|
margin-left: auto;
|
|
950
972
|
text-align: right;
|
|
951
973
|
}
|
|
952
|
-
|
|
953
|
-
|
|
974
|
+
.v-drawer-layout {
|
|
975
|
+
display: flex;
|
|
976
|
+
flex-direction: column;
|
|
977
|
+
align-items: stretch;
|
|
978
|
+
width: 100%;
|
|
979
|
+
height: 100%;
|
|
980
|
+
}
|
|
981
|
+
.v-drawer-layout__header {
|
|
982
|
+
display: flex;
|
|
983
|
+
flex: 0 0 var(--v-app-layout-vertial-fixed-height);
|
|
984
|
+
align-items: center;
|
|
985
|
+
justify-content: center;
|
|
986
|
+
height: var(--v-app-layout-vertial-fixed-height);
|
|
987
|
+
}
|
|
988
|
+
.v-drawer-layout__body {
|
|
989
|
+
flex: 1 1 100%;
|
|
990
|
+
overflow: auto;
|
|
991
|
+
-webkit-overflow-scrolling: touch;
|
|
992
|
+
}
|
|
993
|
+
.v-drawer-layout__footer {
|
|
994
|
+
flex: 0 0 auto;
|
|
995
|
+
margin-top: auto;
|
|
996
|
+
}
|
|
997
|
+
.v-navigation-item--opened {
|
|
998
|
+
--tile-background: var(--tile-active-background);
|
|
999
|
+
--tile-text-color: var(--tile-text-active-color);
|
|
1000
|
+
}
|
|
1001
|
+
.v-navigation-item__expand {
|
|
1002
|
+
transition: height 0.2s;
|
|
1003
|
+
}
|
|
1004
|
+
.v-navigation-item__expand .v-navigation-item {
|
|
1005
|
+
--tile-background: var(--tile-active-background);
|
|
1006
|
+
}
|
|
1007
|
+
.v-navigation__caption {
|
|
1008
|
+
display: block;
|
|
1009
|
+
padding: calc(var(--root-em) * 0.625) calc(var(--root-em) * 1.5625);
|
|
1010
|
+
margin: 1em 0 0;
|
|
1011
|
+
font-size: 0.75rem;
|
|
1012
|
+
color: var(--caption-color);
|
|
1013
|
+
text-transform: uppercase;
|
|
1014
|
+
}
|
|
954
1015
|
.v-checkbox {
|
|
955
1016
|
--my-border-color: var(--color);
|
|
956
1017
|
--my-faux-bg-color: transparent;
|
|
@@ -1462,20 +1523,27 @@ h6,
|
|
|
1462
1523
|
--height: var(--toolbar-dense-height);
|
|
1463
1524
|
}
|
|
1464
1525
|
.v-toolbar-menu {
|
|
1526
|
+
height: 100%;
|
|
1527
|
+
margin: 0;
|
|
1528
|
+
box-shadow: none;
|
|
1529
|
+
}
|
|
1530
|
+
.v-toolbar-edge {
|
|
1465
1531
|
display: flex;
|
|
1532
|
+
flex: 0 0;
|
|
1466
1533
|
align-items: center;
|
|
1467
1534
|
align-self: stretch;
|
|
1468
1535
|
}
|
|
1469
|
-
.v-toolbar-
|
|
1536
|
+
.v-toolbar-edge:empty, .v-toolbar-edge--empty {
|
|
1470
1537
|
display: none;
|
|
1471
1538
|
}
|
|
1472
|
-
.v-toolbar-
|
|
1539
|
+
.v-toolbar-edge--start {
|
|
1473
1540
|
margin-right: calc(var(--root-em) * 0.75);
|
|
1474
1541
|
margin-left: calc(-1 * var(--root-em) * 0.75);
|
|
1475
1542
|
}
|
|
1476
|
-
.v-toolbar-
|
|
1543
|
+
.v-toolbar-edge--end {
|
|
1544
|
+
padding-left: calc(var(--root-em) * 0.75);
|
|
1477
1545
|
margin-right: calc(-1 * var(--root-em) * 0.75);
|
|
1478
|
-
margin-left:
|
|
1546
|
+
margin-left: auto;
|
|
1479
1547
|
}
|
|
1480
1548
|
.v-toolbar-title {
|
|
1481
1549
|
display: flex;
|