@geomak/ui 6.29.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 +313 -433
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -44
- package/dist/index.d.ts +2 -44
- package/dist/index.js +49 -168
- package/dist/index.js.map +1 -1
- package/dist/styles.css +8 -6
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -815,9 +815,6 @@ 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
|
}
|
|
@@ -2725,9 +2722,6 @@ video {
|
|
|
2725
2722
|
.hover\:bg-surface-raised:hover {
|
|
2726
2723
|
background-color: var(--color-surface-raised);
|
|
2727
2724
|
}
|
|
2728
|
-
.hover\:bg-transparent:hover {
|
|
2729
|
-
background-color: rgba(255, 255, 255, .0);
|
|
2730
|
-
}
|
|
2731
2725
|
.hover\:bg-white\/15:hover {
|
|
2732
2726
|
background-color: rgb(255 255 255 / 0.15);
|
|
2733
2727
|
}
|
|
@@ -2777,6 +2771,11 @@ video {
|
|
|
2777
2771
|
.focus-visible\:text-accent:focus-visible {
|
|
2778
2772
|
color: var(--color-accent);
|
|
2779
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
|
+
}
|
|
2780
2779
|
.focus-visible\:ring-1:focus-visible {
|
|
2781
2780
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2782
2781
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2795,6 +2794,9 @@ video {
|
|
|
2795
2794
|
.focus-visible\:ring-inset:focus-visible {
|
|
2796
2795
|
--tw-ring-inset: inset;
|
|
2797
2796
|
}
|
|
2797
|
+
.focus-visible\:\!ring-focus-ring:focus-visible {
|
|
2798
|
+
--tw-ring-color: color-mix(in oklab, var(--color-accent) 22%, transparent) !important;
|
|
2799
|
+
}
|
|
2798
2800
|
.focus-visible\:ring-accent:focus-visible {
|
|
2799
2801
|
--tw-ring-color: var(--color-accent);
|
|
2800
2802
|
}
|
package/package.json
CHANGED