@geomak/ui 6.3.0 → 6.5.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/index.cjs +350 -195
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +87 -1
- package/dist/index.d.ts +87 -1
- package/dist/index.js +165 -12
- package/dist/index.js.map +1 -1
- package/dist/styles.css +31 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -942,6 +942,10 @@ video {
|
|
|
942
942
|
.m-1 {
|
|
943
943
|
margin: 0.25rem;
|
|
944
944
|
}
|
|
945
|
+
.-mx-1 {
|
|
946
|
+
margin-left: -0.25rem;
|
|
947
|
+
margin-right: -0.25rem;
|
|
948
|
+
}
|
|
945
949
|
.mx-auto {
|
|
946
950
|
margin-left: auto;
|
|
947
951
|
margin-right: auto;
|
|
@@ -1037,6 +1041,9 @@ video {
|
|
|
1037
1041
|
.grid {
|
|
1038
1042
|
display: grid;
|
|
1039
1043
|
}
|
|
1044
|
+
.\!hidden {
|
|
1045
|
+
display: none !important;
|
|
1046
|
+
}
|
|
1040
1047
|
.hidden {
|
|
1041
1048
|
display: none;
|
|
1042
1049
|
}
|
|
@@ -1070,6 +1077,9 @@ video {
|
|
|
1070
1077
|
.h-2 {
|
|
1071
1078
|
height: 0.5rem;
|
|
1072
1079
|
}
|
|
1080
|
+
.h-2\.5 {
|
|
1081
|
+
height: 0.625rem;
|
|
1082
|
+
}
|
|
1073
1083
|
.h-20 {
|
|
1074
1084
|
height: 5rem;
|
|
1075
1085
|
}
|
|
@@ -1209,6 +1219,9 @@ video {
|
|
|
1209
1219
|
.w-2 {
|
|
1210
1220
|
width: 0.5rem;
|
|
1211
1221
|
}
|
|
1222
|
+
.w-2\.5 {
|
|
1223
|
+
width: 0.625rem;
|
|
1224
|
+
}
|
|
1212
1225
|
.w-20 {
|
|
1213
1226
|
width: 5rem;
|
|
1214
1227
|
}
|
|
@@ -1307,6 +1320,9 @@ video {
|
|
|
1307
1320
|
.min-w-0 {
|
|
1308
1321
|
min-width: 0px;
|
|
1309
1322
|
}
|
|
1323
|
+
.min-w-4 {
|
|
1324
|
+
min-width: 1rem;
|
|
1325
|
+
}
|
|
1310
1326
|
.min-w-\[120px\] {
|
|
1311
1327
|
min-width: 120px;
|
|
1312
1328
|
}
|
|
@@ -1343,6 +1359,12 @@ video {
|
|
|
1343
1359
|
.max-w-5xl {
|
|
1344
1360
|
max-width: 64rem;
|
|
1345
1361
|
}
|
|
1362
|
+
.max-w-\[12rem\] {
|
|
1363
|
+
max-width: 12rem;
|
|
1364
|
+
}
|
|
1365
|
+
.max-w-\[16rem\] {
|
|
1366
|
+
max-width: 16rem;
|
|
1367
|
+
}
|
|
1346
1368
|
.max-w-\[220px\] {
|
|
1347
1369
|
max-width: 220px;
|
|
1348
1370
|
}
|
|
@@ -1794,6 +1816,15 @@ video {
|
|
|
1794
1816
|
.border-status-error {
|
|
1795
1817
|
border-color: var(--color-error);
|
|
1796
1818
|
}
|
|
1819
|
+
.border-status-info {
|
|
1820
|
+
border-color: var(--color-info);
|
|
1821
|
+
}
|
|
1822
|
+
.border-status-success {
|
|
1823
|
+
border-color: var(--color-success);
|
|
1824
|
+
}
|
|
1825
|
+
.border-status-warning {
|
|
1826
|
+
border-color: var(--color-warning);
|
|
1827
|
+
}
|
|
1797
1828
|
.border-transparent {
|
|
1798
1829
|
border-color: rgba(255, 255, 255, .0);
|
|
1799
1830
|
}
|