@revotech-group/revotech-ui-kit 0.0.87 → 0.0.89
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/library.css +22 -0
- package/dist/rtg-ui-kit.js +228 -206
- package/dist/rtg-ui-kit.umd.cjs +21 -22
- package/dist/src/components/ui/input/input.d.ts +3 -1
- package/package.json +1 -1
package/dist/library.css
CHANGED
|
@@ -730,6 +730,9 @@ body {
|
|
|
730
730
|
.rtg-ml-1 {
|
|
731
731
|
margin-left: 0.25rem;
|
|
732
732
|
}
|
|
733
|
+
.rtg-ml-2 {
|
|
734
|
+
margin-left: 0.5rem;
|
|
735
|
+
}
|
|
733
736
|
.rtg-ml-auto {
|
|
734
737
|
margin-left: auto;
|
|
735
738
|
}
|
|
@@ -1789,6 +1792,25 @@ body {
|
|
|
1789
1792
|
z-index: 20;
|
|
1790
1793
|
}
|
|
1791
1794
|
|
|
1795
|
+
.focus-within\:rtg-outline-none:focus-within {
|
|
1796
|
+
outline: 2px solid transparent;
|
|
1797
|
+
outline-offset: 2px;
|
|
1798
|
+
}
|
|
1799
|
+
|
|
1800
|
+
.focus-within\:rtg-ring-2:focus-within {
|
|
1801
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1802
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1803
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
.focus-within\:rtg-ring-ring:focus-within {
|
|
1807
|
+
--tw-ring-color: hsl(var(--ring));
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
.focus-within\:rtg-ring-offset-2:focus-within {
|
|
1811
|
+
--tw-ring-offset-width: 2px;
|
|
1812
|
+
}
|
|
1813
|
+
|
|
1792
1814
|
.hover\:\!rtg-bg-slate-100:hover {
|
|
1793
1815
|
--tw-bg-opacity: 1 !important;
|
|
1794
1816
|
background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1)) !important;
|