@geomak/ui 6.24.1 → 6.26.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 +928 -513
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +65 -1
- package/dist/index.d.ts +65 -1
- package/dist/index.js +702 -288
- package/dist/index.js.map +1 -1
- package/dist/styles.css +24 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -833,6 +833,9 @@ video {
|
|
|
833
833
|
.left-0 {
|
|
834
834
|
left: 0px;
|
|
835
835
|
}
|
|
836
|
+
.left-0\.5 {
|
|
837
|
+
left: 0.125rem;
|
|
838
|
+
}
|
|
836
839
|
.left-1 {
|
|
837
840
|
left: 0.25rem;
|
|
838
841
|
}
|
|
@@ -854,6 +857,9 @@ video {
|
|
|
854
857
|
.right-0 {
|
|
855
858
|
right: 0px;
|
|
856
859
|
}
|
|
860
|
+
.right-0\.5 {
|
|
861
|
+
right: 0.125rem;
|
|
862
|
+
}
|
|
857
863
|
.right-1 {
|
|
858
864
|
right: 0.25rem;
|
|
859
865
|
}
|
|
@@ -1237,6 +1243,9 @@ video {
|
|
|
1237
1243
|
.min-h-\[460px\] {
|
|
1238
1244
|
min-height: 460px;
|
|
1239
1245
|
}
|
|
1246
|
+
.min-h-\[5rem\] {
|
|
1247
|
+
min-height: 5rem;
|
|
1248
|
+
}
|
|
1240
1249
|
.min-h-\[80px\] {
|
|
1241
1250
|
min-height: 80px;
|
|
1242
1251
|
}
|
|
@@ -2027,6 +2036,9 @@ video {
|
|
|
2027
2036
|
.p-1 {
|
|
2028
2037
|
padding: 0.25rem;
|
|
2029
2038
|
}
|
|
2039
|
+
.p-1\.5 {
|
|
2040
|
+
padding: 0.375rem;
|
|
2041
|
+
}
|
|
2030
2042
|
.p-10 {
|
|
2031
2043
|
padding: 2.5rem;
|
|
2032
2044
|
}
|
|
@@ -2595,6 +2607,9 @@ video {
|
|
|
2595
2607
|
.last\:border-0:last-child {
|
|
2596
2608
|
border-width: 0px;
|
|
2597
2609
|
}
|
|
2610
|
+
.last\:border-r-0:last-child {
|
|
2611
|
+
border-right-width: 0px;
|
|
2612
|
+
}
|
|
2598
2613
|
.focus-within\:border-accent:focus-within {
|
|
2599
2614
|
border-color: var(--color-accent);
|
|
2600
2615
|
}
|
|
@@ -2629,6 +2644,9 @@ video {
|
|
|
2629
2644
|
.hover\:bg-accent-hover:hover {
|
|
2630
2645
|
background-color: var(--color-accent-hover);
|
|
2631
2646
|
}
|
|
2647
|
+
.hover\:bg-background:hover {
|
|
2648
|
+
background-color: var(--color-background);
|
|
2649
|
+
}
|
|
2632
2650
|
.hover\:bg-foreground-muted:hover {
|
|
2633
2651
|
background-color: var(--color-foreground-muted);
|
|
2634
2652
|
}
|
|
@@ -2667,6 +2685,9 @@ video {
|
|
|
2667
2685
|
.hover\:underline:hover {
|
|
2668
2686
|
text-decoration-line: underline;
|
|
2669
2687
|
}
|
|
2688
|
+
.hover\:opacity-80:hover {
|
|
2689
|
+
opacity: 0.8;
|
|
2690
|
+
}
|
|
2670
2691
|
.hover\:opacity-90:hover {
|
|
2671
2692
|
opacity: 0.9;
|
|
2672
2693
|
}
|
|
@@ -2985,6 +3006,9 @@ video {
|
|
|
2985
3006
|
-webkit-appearance: none;
|
|
2986
3007
|
appearance: none;
|
|
2987
3008
|
}
|
|
3009
|
+
.\[\&\:nth-child\(7n\)\]\:border-r-0:nth-child(7n) {
|
|
3010
|
+
border-right-width: 0px;
|
|
3011
|
+
}
|
|
2988
3012
|
.\[\&\>img\]\:block>img {
|
|
2989
3013
|
display: block;
|
|
2990
3014
|
}
|
package/package.json
CHANGED