@geomak/ui 6.29.0 → 6.29.2
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 +317 -436
- 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 +53 -171
- package/dist/index.js.map +1 -1
- package/dist/styles.css +8 -9
- 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
|
}
|
|
@@ -2771,12 +2765,20 @@ video {
|
|
|
2771
2765
|
outline: 2px solid transparent;
|
|
2772
2766
|
outline-offset: 2px;
|
|
2773
2767
|
}
|
|
2768
|
+
.focus-visible\:\!border-accent:focus-visible {
|
|
2769
|
+
border-color: var(--color-accent) !important;
|
|
2770
|
+
}
|
|
2774
2771
|
.focus-visible\:border-accent:focus-visible {
|
|
2775
2772
|
border-color: var(--color-accent);
|
|
2776
2773
|
}
|
|
2777
2774
|
.focus-visible\:text-accent:focus-visible {
|
|
2778
2775
|
color: var(--color-accent);
|
|
2779
2776
|
}
|
|
2777
|
+
.focus-visible\:\!ring-0:focus-visible {
|
|
2778
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
|
|
2779
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
|
|
2780
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
|
|
2781
|
+
}
|
|
2780
2782
|
.focus-visible\:ring-1:focus-visible {
|
|
2781
2783
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2782
2784
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
@@ -2816,9 +2818,6 @@ video {
|
|
|
2816
2818
|
.focus-visible\:ring-white\/50:focus-visible {
|
|
2817
2819
|
--tw-ring-color: rgb(255 255 255 / 0.5);
|
|
2818
2820
|
}
|
|
2819
|
-
.focus-visible\:\!ring-offset-0:focus-visible {
|
|
2820
|
-
--tw-ring-offset-width: 0px !important;
|
|
2821
|
-
}
|
|
2822
2821
|
.focus-visible\:ring-offset-1:focus-visible {
|
|
2823
2822
|
--tw-ring-offset-width: 1px;
|
|
2824
2823
|
}
|
package/package.json
CHANGED