@geomak/ui 6.28.0 → 6.29.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 +582 -415
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +62 -1
- package/dist/index.d.ts +62 -1
- package/dist/index.js +320 -154
- package/dist/index.js.map +1 -1
- package/dist/styles.css +40 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -824,6 +824,9 @@ video {
|
|
|
824
824
|
.bottom-2 {
|
|
825
825
|
bottom: 0.5rem;
|
|
826
826
|
}
|
|
827
|
+
.bottom-3 {
|
|
828
|
+
bottom: 0.75rem;
|
|
829
|
+
}
|
|
827
830
|
.bottom-4 {
|
|
828
831
|
bottom: 1rem;
|
|
829
832
|
}
|
|
@@ -1234,6 +1237,9 @@ video {
|
|
|
1234
1237
|
.max-h-72 {
|
|
1235
1238
|
max-height: 18rem;
|
|
1236
1239
|
}
|
|
1240
|
+
.max-h-\[120px\] {
|
|
1241
|
+
max-height: 120px;
|
|
1242
|
+
}
|
|
1237
1243
|
.max-h-\[90dvh\] {
|
|
1238
1244
|
max-height: 90dvh;
|
|
1239
1245
|
}
|
|
@@ -1455,6 +1461,9 @@ video {
|
|
|
1455
1461
|
.max-w-\[40ch\] {
|
|
1456
1462
|
max-width: 40ch;
|
|
1457
1463
|
}
|
|
1464
|
+
.max-w-\[78\%\] {
|
|
1465
|
+
max-width: 78%;
|
|
1466
|
+
}
|
|
1458
1467
|
.max-w-\[calc\(100vw-1rem\)\] {
|
|
1459
1468
|
max-width: calc(100vw - 1rem);
|
|
1460
1469
|
}
|
|
@@ -1529,6 +1538,19 @@ video {
|
|
|
1529
1538
|
.transform {
|
|
1530
1539
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1531
1540
|
}
|
|
1541
|
+
@keyframes bounce {
|
|
1542
|
+
0%, 100% {
|
|
1543
|
+
transform: translateY(-25%);
|
|
1544
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1545
|
+
}
|
|
1546
|
+
50% {
|
|
1547
|
+
transform: none;
|
|
1548
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1549
|
+
}
|
|
1550
|
+
}
|
|
1551
|
+
.animate-bounce {
|
|
1552
|
+
animation: bounce 1s infinite;
|
|
1553
|
+
}
|
|
1532
1554
|
.animate-breathe {
|
|
1533
1555
|
animation: breathe 2s ease-in-out infinite;
|
|
1534
1556
|
}
|
|
@@ -1851,6 +1873,12 @@ video {
|
|
|
1851
1873
|
.whitespace-pre {
|
|
1852
1874
|
white-space: pre;
|
|
1853
1875
|
}
|
|
1876
|
+
.whitespace-pre-wrap {
|
|
1877
|
+
white-space: pre-wrap;
|
|
1878
|
+
}
|
|
1879
|
+
.break-words {
|
|
1880
|
+
overflow-wrap: break-word;
|
|
1881
|
+
}
|
|
1854
1882
|
.rounded {
|
|
1855
1883
|
border-radius: 0.25rem;
|
|
1856
1884
|
}
|
|
@@ -1891,6 +1919,12 @@ video {
|
|
|
1891
1919
|
border-top-left-radius: var(--radius-md);
|
|
1892
1920
|
border-top-right-radius: var(--radius-md);
|
|
1893
1921
|
}
|
|
1922
|
+
.rounded-bl-md {
|
|
1923
|
+
border-bottom-left-radius: var(--radius-md);
|
|
1924
|
+
}
|
|
1925
|
+
.rounded-br-md {
|
|
1926
|
+
border-bottom-right-radius: var(--radius-md);
|
|
1927
|
+
}
|
|
1894
1928
|
.border {
|
|
1895
1929
|
border-width: 1px;
|
|
1896
1930
|
}
|
|
@@ -2320,6 +2354,9 @@ video {
|
|
|
2320
2354
|
.uppercase {
|
|
2321
2355
|
text-transform: uppercase;
|
|
2322
2356
|
}
|
|
2357
|
+
.capitalize {
|
|
2358
|
+
text-transform: capitalize;
|
|
2359
|
+
}
|
|
2323
2360
|
.tabular-nums {
|
|
2324
2361
|
--tw-numeric-spacing: tabular-nums;
|
|
2325
2362
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
@@ -2629,6 +2666,9 @@ video {
|
|
|
2629
2666
|
.placeholder\:text-foreground-muted::placeholder {
|
|
2630
2667
|
color: var(--color-foreground-muted);
|
|
2631
2668
|
}
|
|
2669
|
+
.first\:mt-0:first-child {
|
|
2670
|
+
margin-top: 0px;
|
|
2671
|
+
}
|
|
2632
2672
|
.last\:border-0:last-child {
|
|
2633
2673
|
border-width: 0px;
|
|
2634
2674
|
}
|
package/package.json
CHANGED