@geomak/ui 6.9.0 → 6.11.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 +419 -222
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +85 -1
- package/dist/index.d.ts +85 -1
- package/dist/index.js +226 -31
- package/dist/index.js.map +1 -1
- package/dist/styles.css +15 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -813,6 +813,9 @@ video {
|
|
|
813
813
|
.bottom-0 {
|
|
814
814
|
bottom: 0px;
|
|
815
815
|
}
|
|
816
|
+
.bottom-1 {
|
|
817
|
+
bottom: 0.25rem;
|
|
818
|
+
}
|
|
816
819
|
.bottom-1\.5 {
|
|
817
820
|
bottom: 0.375rem;
|
|
818
821
|
}
|
|
@@ -912,6 +915,9 @@ video {
|
|
|
912
915
|
.z-\[2\] {
|
|
913
916
|
z-index: 2;
|
|
914
917
|
}
|
|
918
|
+
.z-\[400\] {
|
|
919
|
+
z-index: 400;
|
|
920
|
+
}
|
|
915
921
|
.z-\[500000\] {
|
|
916
922
|
z-index: 500000;
|
|
917
923
|
}
|
|
@@ -1967,6 +1973,9 @@ video {
|
|
|
1967
1973
|
.fill-foreground {
|
|
1968
1974
|
fill: var(--color-foreground);
|
|
1969
1975
|
}
|
|
1976
|
+
.fill-surface {
|
|
1977
|
+
fill: var(--color-surface);
|
|
1978
|
+
}
|
|
1970
1979
|
.object-cover {
|
|
1971
1980
|
-o-object-fit: cover;
|
|
1972
1981
|
object-fit: cover;
|
|
@@ -1995,6 +2004,9 @@ video {
|
|
|
1995
2004
|
.p-3 {
|
|
1996
2005
|
padding: 0.75rem;
|
|
1997
2006
|
}
|
|
2007
|
+
.p-3\.5 {
|
|
2008
|
+
padding: 0.875rem;
|
|
2009
|
+
}
|
|
1998
2010
|
.p-4 {
|
|
1999
2011
|
padding: 1rem;
|
|
2000
2012
|
}
|
|
@@ -2572,6 +2584,9 @@ video {
|
|
|
2572
2584
|
.hover\:bg-surface-raised:hover {
|
|
2573
2585
|
background-color: var(--color-surface-raised);
|
|
2574
2586
|
}
|
|
2587
|
+
.hover\:bg-transparent:hover {
|
|
2588
|
+
background-color: rgba(255, 255, 255, .0);
|
|
2589
|
+
}
|
|
2575
2590
|
.hover\:bg-white\/15:hover {
|
|
2576
2591
|
background-color: rgb(255 255 255 / 0.15);
|
|
2577
2592
|
}
|
package/package.json
CHANGED