@geomak/ui 6.13.0 → 6.14.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 +301 -254
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -17
- package/dist/index.d.ts +10 -17
- package/dist/index.js +103 -56
- package/dist/index.js.map +1 -1
- package/dist/styles.css +9 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -2668,6 +2668,15 @@ video {
|
|
|
2668
2668
|
.focus-visible\:ring-status-error:focus-visible {
|
|
2669
2669
|
--tw-ring-color: var(--color-error);
|
|
2670
2670
|
}
|
|
2671
|
+
.focus-visible\:ring-status-info:focus-visible {
|
|
2672
|
+
--tw-ring-color: var(--color-info);
|
|
2673
|
+
}
|
|
2674
|
+
.focus-visible\:ring-status-success:focus-visible {
|
|
2675
|
+
--tw-ring-color: var(--color-success);
|
|
2676
|
+
}
|
|
2677
|
+
.focus-visible\:ring-status-warning:focus-visible {
|
|
2678
|
+
--tw-ring-color: var(--color-warning);
|
|
2679
|
+
}
|
|
2671
2680
|
.focus-visible\:ring-white\/50:focus-visible {
|
|
2672
2681
|
--tw-ring-color: rgb(255 255 255 / 0.5);
|
|
2673
2682
|
}
|
package/package.json
CHANGED