@geomak/ui 6.28.0 → 6.29.1
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 +340 -293
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +63 -44
- package/dist/index.d.ts +63 -44
- package/dist/index.js +341 -294
- package/dist/index.js.map +1 -1
- package/dist/styles.css +48 -6
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -815,15 +815,15 @@ video {
|
|
|
815
815
|
.bottom-0 {
|
|
816
816
|
bottom: 0px;
|
|
817
817
|
}
|
|
818
|
-
.bottom-1 {
|
|
819
|
-
bottom: 0.25rem;
|
|
820
|
-
}
|
|
821
818
|
.bottom-1\.5 {
|
|
822
819
|
bottom: 0.375rem;
|
|
823
820
|
}
|
|
824
821
|
.bottom-2 {
|
|
825
822
|
bottom: 0.5rem;
|
|
826
823
|
}
|
|
824
|
+
.bottom-3 {
|
|
825
|
+
bottom: 0.75rem;
|
|
826
|
+
}
|
|
827
827
|
.bottom-4 {
|
|
828
828
|
bottom: 1rem;
|
|
829
829
|
}
|
|
@@ -1234,6 +1234,9 @@ video {
|
|
|
1234
1234
|
.max-h-72 {
|
|
1235
1235
|
max-height: 18rem;
|
|
1236
1236
|
}
|
|
1237
|
+
.max-h-\[120px\] {
|
|
1238
|
+
max-height: 120px;
|
|
1239
|
+
}
|
|
1237
1240
|
.max-h-\[90dvh\] {
|
|
1238
1241
|
max-height: 90dvh;
|
|
1239
1242
|
}
|
|
@@ -1455,6 +1458,9 @@ video {
|
|
|
1455
1458
|
.max-w-\[40ch\] {
|
|
1456
1459
|
max-width: 40ch;
|
|
1457
1460
|
}
|
|
1461
|
+
.max-w-\[78\%\] {
|
|
1462
|
+
max-width: 78%;
|
|
1463
|
+
}
|
|
1458
1464
|
.max-w-\[calc\(100vw-1rem\)\] {
|
|
1459
1465
|
max-width: calc(100vw - 1rem);
|
|
1460
1466
|
}
|
|
@@ -1529,6 +1535,19 @@ video {
|
|
|
1529
1535
|
.transform {
|
|
1530
1536
|
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
1537
|
}
|
|
1538
|
+
@keyframes bounce {
|
|
1539
|
+
0%, 100% {
|
|
1540
|
+
transform: translateY(-25%);
|
|
1541
|
+
animation-timing-function: cubic-bezier(0.8,0,1,1);
|
|
1542
|
+
}
|
|
1543
|
+
50% {
|
|
1544
|
+
transform: none;
|
|
1545
|
+
animation-timing-function: cubic-bezier(0,0,0.2,1);
|
|
1546
|
+
}
|
|
1547
|
+
}
|
|
1548
|
+
.animate-bounce {
|
|
1549
|
+
animation: bounce 1s infinite;
|
|
1550
|
+
}
|
|
1532
1551
|
.animate-breathe {
|
|
1533
1552
|
animation: breathe 2s ease-in-out infinite;
|
|
1534
1553
|
}
|
|
@@ -1851,6 +1870,12 @@ video {
|
|
|
1851
1870
|
.whitespace-pre {
|
|
1852
1871
|
white-space: pre;
|
|
1853
1872
|
}
|
|
1873
|
+
.whitespace-pre-wrap {
|
|
1874
|
+
white-space: pre-wrap;
|
|
1875
|
+
}
|
|
1876
|
+
.break-words {
|
|
1877
|
+
overflow-wrap: break-word;
|
|
1878
|
+
}
|
|
1854
1879
|
.rounded {
|
|
1855
1880
|
border-radius: 0.25rem;
|
|
1856
1881
|
}
|
|
@@ -1891,6 +1916,12 @@ video {
|
|
|
1891
1916
|
border-top-left-radius: var(--radius-md);
|
|
1892
1917
|
border-top-right-radius: var(--radius-md);
|
|
1893
1918
|
}
|
|
1919
|
+
.rounded-bl-md {
|
|
1920
|
+
border-bottom-left-radius: var(--radius-md);
|
|
1921
|
+
}
|
|
1922
|
+
.rounded-br-md {
|
|
1923
|
+
border-bottom-right-radius: var(--radius-md);
|
|
1924
|
+
}
|
|
1894
1925
|
.border {
|
|
1895
1926
|
border-width: 1px;
|
|
1896
1927
|
}
|
|
@@ -2320,6 +2351,9 @@ video {
|
|
|
2320
2351
|
.uppercase {
|
|
2321
2352
|
text-transform: uppercase;
|
|
2322
2353
|
}
|
|
2354
|
+
.capitalize {
|
|
2355
|
+
text-transform: capitalize;
|
|
2356
|
+
}
|
|
2323
2357
|
.tabular-nums {
|
|
2324
2358
|
--tw-numeric-spacing: tabular-nums;
|
|
2325
2359
|
font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
|
|
@@ -2629,6 +2663,9 @@ video {
|
|
|
2629
2663
|
.placeholder\:text-foreground-muted::placeholder {
|
|
2630
2664
|
color: var(--color-foreground-muted);
|
|
2631
2665
|
}
|
|
2666
|
+
.first\:mt-0:first-child {
|
|
2667
|
+
margin-top: 0px;
|
|
2668
|
+
}
|
|
2632
2669
|
.last\:border-0:last-child {
|
|
2633
2670
|
border-width: 0px;
|
|
2634
2671
|
}
|
|
@@ -2685,9 +2722,6 @@ video {
|
|
|
2685
2722
|
.hover\:bg-surface-raised:hover {
|
|
2686
2723
|
background-color: var(--color-surface-raised);
|
|
2687
2724
|
}
|
|
2688
|
-
.hover\:bg-transparent:hover {
|
|
2689
|
-
background-color: rgba(255, 255, 255, .0);
|
|
2690
|
-
}
|
|
2691
2725
|
.hover\:bg-white\/15:hover {
|
|
2692
2726
|
background-color: rgb(255 255 255 / 0.15);
|
|
2693
2727
|
}
|
|
@@ -2737,6 +2771,11 @@ video {
|
|
|
2737
2771
|
.focus-visible\:text-accent:focus-visible {
|
|
2738
2772
|
color: var(--color-accent);
|
|
2739
2773
|
}
|
|
2774
|
+
.focus-visible\:\!ring-\[3px\]:focus-visible {
|
|
2775
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
2776
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
2777
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
2778
|
+
}
|
|
2740
2779
|
.focus-visible\:ring-1:focus-visible {
|
|
2741
2780
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2742
2781
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2755,6 +2794,9 @@ video {
|
|
|
2755
2794
|
.focus-visible\:ring-inset:focus-visible {
|
|
2756
2795
|
--tw-ring-inset: inset;
|
|
2757
2796
|
}
|
|
2797
|
+
.focus-visible\:\!ring-focus-ring:focus-visible {
|
|
2798
|
+
--tw-ring-color: color-mix(in oklab, var(--color-accent) 22%, transparent) !important;
|
|
2799
|
+
}
|
|
2758
2800
|
.focus-visible\:ring-accent:focus-visible {
|
|
2759
2801
|
--tw-ring-color: var(--color-accent);
|
|
2760
2802
|
}
|
package/package.json
CHANGED