@geomak/ui 1.7.1 → 1.7.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/index.cjs +270 -224
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +107 -22
- package/dist/index.d.ts +107 -22
- package/dist/index.js +177 -131
- package/dist/index.js.map +1 -1
- package/dist/styles.css +28 -62
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -727,6 +727,9 @@ video {
|
|
|
727
727
|
.visible {
|
|
728
728
|
visibility: visible;
|
|
729
729
|
}
|
|
730
|
+
.collapse {
|
|
731
|
+
visibility: collapse;
|
|
732
|
+
}
|
|
730
733
|
.static {
|
|
731
734
|
position: static;
|
|
732
735
|
}
|
|
@@ -906,6 +909,9 @@ video {
|
|
|
906
909
|
.block {
|
|
907
910
|
display: block;
|
|
908
911
|
}
|
|
912
|
+
.inline-block {
|
|
913
|
+
display: inline-block;
|
|
914
|
+
}
|
|
909
915
|
.inline {
|
|
910
916
|
display: inline;
|
|
911
917
|
}
|
|
@@ -945,6 +951,9 @@ video {
|
|
|
945
951
|
.h-2 {
|
|
946
952
|
height: 0.5rem;
|
|
947
953
|
}
|
|
954
|
+
.h-20 {
|
|
955
|
+
height: 5rem;
|
|
956
|
+
}
|
|
948
957
|
.h-24 {
|
|
949
958
|
height: 6rem;
|
|
950
959
|
}
|
|
@@ -981,9 +990,6 @@ video {
|
|
|
981
990
|
.h-\[3px\] {
|
|
982
991
|
height: 3px;
|
|
983
992
|
}
|
|
984
|
-
.h-\[80px\] {
|
|
985
|
-
height: 80px;
|
|
986
|
-
}
|
|
987
993
|
.h-full {
|
|
988
994
|
height: 100%;
|
|
989
995
|
}
|
|
@@ -994,30 +1000,18 @@ video {
|
|
|
994
1000
|
.h-screen {
|
|
995
1001
|
height: 100vh;
|
|
996
1002
|
}
|
|
997
|
-
.max-h-0 {
|
|
998
|
-
max-height: 0px;
|
|
999
|
-
}
|
|
1000
1003
|
.max-h-36 {
|
|
1001
1004
|
max-height: 9rem;
|
|
1002
1005
|
}
|
|
1003
1006
|
.max-h-40 {
|
|
1004
1007
|
max-height: 10rem;
|
|
1005
1008
|
}
|
|
1006
|
-
.max-h-\[2000px\] {
|
|
1007
|
-
max-height: 2000px;
|
|
1008
|
-
}
|
|
1009
1009
|
.max-h-\[90dvh\] {
|
|
1010
1010
|
max-height: 90dvh;
|
|
1011
1011
|
}
|
|
1012
1012
|
.min-h-0 {
|
|
1013
1013
|
min-height: 0px;
|
|
1014
1014
|
}
|
|
1015
|
-
.min-h-\[40px\] {
|
|
1016
|
-
min-height: 40px;
|
|
1017
|
-
}
|
|
1018
|
-
.min-h-\[50px\] {
|
|
1019
|
-
min-height: 50px;
|
|
1020
|
-
}
|
|
1021
1015
|
.min-h-\[80px\] {
|
|
1022
1016
|
min-height: 80px;
|
|
1023
1017
|
}
|
|
@@ -1081,6 +1075,9 @@ video {
|
|
|
1081
1075
|
.w-8 {
|
|
1082
1076
|
width: 2rem;
|
|
1083
1077
|
}
|
|
1078
|
+
.w-9 {
|
|
1079
|
+
width: 2.25rem;
|
|
1080
|
+
}
|
|
1084
1081
|
.w-\[130px\] {
|
|
1085
1082
|
width: 130px;
|
|
1086
1083
|
}
|
|
@@ -1105,9 +1102,6 @@ video {
|
|
|
1105
1102
|
.w-\[3px\] {
|
|
1106
1103
|
width: 3px;
|
|
1107
1104
|
}
|
|
1108
|
-
.w-\[80px\] {
|
|
1109
|
-
width: 80px;
|
|
1110
|
-
}
|
|
1111
1105
|
.w-\[calc\(100\%-2rem\)\] {
|
|
1112
1106
|
width: calc(100% - 2rem);
|
|
1113
1107
|
}
|
|
@@ -1127,10 +1121,6 @@ video {
|
|
|
1127
1121
|
.min-w-\[240px\] {
|
|
1128
1122
|
min-width: 240px;
|
|
1129
1123
|
}
|
|
1130
|
-
.min-w-max {
|
|
1131
|
-
min-width: -moz-max-content;
|
|
1132
|
-
min-width: max-content;
|
|
1133
|
-
}
|
|
1134
1124
|
.max-w-2xl {
|
|
1135
1125
|
max-width: 42rem;
|
|
1136
1126
|
}
|
|
@@ -1155,6 +1145,9 @@ video {
|
|
|
1155
1145
|
.flex-shrink-0 {
|
|
1156
1146
|
flex-shrink: 0;
|
|
1157
1147
|
}
|
|
1148
|
+
.border-collapse {
|
|
1149
|
+
border-collapse: collapse;
|
|
1150
|
+
}
|
|
1158
1151
|
.origin-center {
|
|
1159
1152
|
transform-origin: center;
|
|
1160
1153
|
}
|
|
@@ -1301,9 +1294,6 @@ video {
|
|
|
1301
1294
|
.gap-4 {
|
|
1302
1295
|
gap: 1rem;
|
|
1303
1296
|
}
|
|
1304
|
-
.gap-5 {
|
|
1305
|
-
gap: 1.25rem;
|
|
1306
|
-
}
|
|
1307
1297
|
.gap-6 {
|
|
1308
1298
|
gap: 1.5rem;
|
|
1309
1299
|
}
|
|
@@ -1354,6 +1344,9 @@ video {
|
|
|
1354
1344
|
.whitespace-nowrap {
|
|
1355
1345
|
white-space: nowrap;
|
|
1356
1346
|
}
|
|
1347
|
+
.whitespace-pre {
|
|
1348
|
+
white-space: pre;
|
|
1349
|
+
}
|
|
1357
1350
|
.rounded {
|
|
1358
1351
|
border-radius: 0.25rem;
|
|
1359
1352
|
}
|
|
@@ -1411,8 +1404,8 @@ video {
|
|
|
1411
1404
|
.border-4 {
|
|
1412
1405
|
border-width: 4px;
|
|
1413
1406
|
}
|
|
1414
|
-
.border-\[
|
|
1415
|
-
border-width:
|
|
1407
|
+
.border-\[6px\] {
|
|
1408
|
+
border-width: 6px;
|
|
1416
1409
|
}
|
|
1417
1410
|
.border-b {
|
|
1418
1411
|
border-bottom-width: 1px;
|
|
@@ -1423,9 +1416,6 @@ video {
|
|
|
1423
1416
|
.border-r {
|
|
1424
1417
|
border-right-width: 1px;
|
|
1425
1418
|
}
|
|
1426
|
-
.border-r-2 {
|
|
1427
|
-
border-right-width: 2px;
|
|
1428
|
-
}
|
|
1429
1419
|
.border-t {
|
|
1430
1420
|
border-top-width: 1px;
|
|
1431
1421
|
}
|
|
@@ -1456,29 +1446,13 @@ video {
|
|
|
1456
1446
|
--tw-border-opacity: 1;
|
|
1457
1447
|
border-color: rgb(0 39 58 / var(--tw-border-opacity, 1));
|
|
1458
1448
|
}
|
|
1459
|
-
.border-
|
|
1460
|
-
border-
|
|
1449
|
+
.border-transparent {
|
|
1450
|
+
border-color: rgba(255, 255, 255, .0);
|
|
1461
1451
|
}
|
|
1462
1452
|
.border-b-ice-dark {
|
|
1463
1453
|
--tw-border-opacity: 1;
|
|
1464
1454
|
border-bottom-color: rgb(208 227 237 / var(--tw-border-opacity, 1));
|
|
1465
1455
|
}
|
|
1466
|
-
.border-b-white {
|
|
1467
|
-
--tw-border-opacity: 1;
|
|
1468
|
-
border-bottom-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
|
|
1469
|
-
}
|
|
1470
|
-
.border-l-prussian-blue {
|
|
1471
|
-
--tw-border-opacity: 1;
|
|
1472
|
-
border-left-color: rgb(0 39 58 / var(--tw-border-opacity, 1));
|
|
1473
|
-
}
|
|
1474
|
-
.border-r-prussian-blue {
|
|
1475
|
-
--tw-border-opacity: 1;
|
|
1476
|
-
border-right-color: rgb(0 39 58 / var(--tw-border-opacity, 1));
|
|
1477
|
-
}
|
|
1478
|
-
.border-t-white {
|
|
1479
|
-
--tw-border-opacity: 1;
|
|
1480
|
-
border-top-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
|
|
1481
|
-
}
|
|
1482
1456
|
.bg-accent {
|
|
1483
1457
|
background-color: var(--color-accent);
|
|
1484
1458
|
}
|
|
@@ -1518,9 +1492,6 @@ video {
|
|
|
1518
1492
|
--tw-bg-opacity: 1;
|
|
1519
1493
|
background-color: rgb(51 65 92 / var(--tw-bg-opacity, 1));
|
|
1520
1494
|
}
|
|
1521
|
-
.bg-oxford-blue-700-opaque {
|
|
1522
|
-
background-color: rgba(0, 40, 85, .3);
|
|
1523
|
-
}
|
|
1524
1495
|
.bg-oxford-blue-900 {
|
|
1525
1496
|
--tw-bg-opacity: 1;
|
|
1526
1497
|
background-color: rgb(0 18 51 / var(--tw-bg-opacity, 1));
|
|
@@ -1694,15 +1665,18 @@ video {
|
|
|
1694
1665
|
.pt-3 {
|
|
1695
1666
|
padding-top: 0.75rem;
|
|
1696
1667
|
}
|
|
1697
|
-
.pt-80 {
|
|
1698
|
-
padding-top: 20rem;
|
|
1699
|
-
}
|
|
1700
1668
|
.text-left {
|
|
1701
1669
|
text-align: left;
|
|
1702
1670
|
}
|
|
1703
1671
|
.text-center {
|
|
1704
1672
|
text-align: center;
|
|
1705
1673
|
}
|
|
1674
|
+
.text-right {
|
|
1675
|
+
text-align: right;
|
|
1676
|
+
}
|
|
1677
|
+
.align-middle {
|
|
1678
|
+
vertical-align: middle;
|
|
1679
|
+
}
|
|
1706
1680
|
.text-2xl {
|
|
1707
1681
|
font-size: var(--font-size-2xl);
|
|
1708
1682
|
line-height: var(--line-height-tight);
|
|
@@ -1714,9 +1688,6 @@ video {
|
|
|
1714
1688
|
.text-\[10px\] {
|
|
1715
1689
|
font-size: 10px;
|
|
1716
1690
|
}
|
|
1717
|
-
.text-\[13px\] {
|
|
1718
|
-
font-size: 13px;
|
|
1719
|
-
}
|
|
1720
1691
|
.text-\[9px\] {
|
|
1721
1692
|
font-size: 9px;
|
|
1722
1693
|
}
|
|
@@ -1902,11 +1873,6 @@ video {
|
|
|
1902
1873
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1903
1874
|
transition-duration: 150ms;
|
|
1904
1875
|
}
|
|
1905
|
-
.transition-\[max-height\] {
|
|
1906
|
-
transition-property: max-height;
|
|
1907
|
-
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1908
|
-
transition-duration: 150ms;
|
|
1909
|
-
}
|
|
1910
1876
|
.transition-all {
|
|
1911
1877
|
transition-property: all;
|
|
1912
1878
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|