@revotech-group/revotech-ui-kit 0.1.38 → 0.1.41
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 +14 -6
- package/dist/rtg-ui-kit.js +1690 -1600
- package/dist/rtg-ui-kit.umd.cjs +492 -415
- package/dist/src/assets/icons/eye-off.d.ts +1 -0
- package/dist/src/assets/icons/eye-on.d.ts +1 -0
- package/dist/src/assets/icons/index.d.ts +2 -0
- package/dist/src/components/ui/avatar/avatar.style.d.ts +3 -3
- package/dist/src/components/ui/input/input.d.ts +2 -0
- package/package.json +1 -1
package/dist/library.css
CHANGED
|
@@ -732,6 +732,10 @@ body {
|
|
|
732
732
|
width: 1rem;
|
|
733
733
|
height: 1rem;
|
|
734
734
|
}
|
|
735
|
+
.rtg-size-8 {
|
|
736
|
+
width: 2rem;
|
|
737
|
+
height: 2rem;
|
|
738
|
+
}
|
|
735
739
|
.rtg-size-full {
|
|
736
740
|
width: 100%;
|
|
737
741
|
height: 100%;
|
|
@@ -796,9 +800,6 @@ body {
|
|
|
796
800
|
.rtg-h-\[400px\] {
|
|
797
801
|
height: 400px;
|
|
798
802
|
}
|
|
799
|
-
.rtg-h-auto {
|
|
800
|
-
height: auto;
|
|
801
|
-
}
|
|
802
803
|
.rtg-h-full {
|
|
803
804
|
height: 100%;
|
|
804
805
|
}
|
|
@@ -904,9 +905,6 @@ body {
|
|
|
904
905
|
.rtg-w-\[800px\] {
|
|
905
906
|
width: 800px;
|
|
906
907
|
}
|
|
907
|
-
.rtg-w-auto {
|
|
908
|
-
width: auto;
|
|
909
|
-
}
|
|
910
908
|
.rtg-w-fit {
|
|
911
909
|
width: -moz-fit-content;
|
|
912
910
|
width: fit-content;
|
|
@@ -1407,6 +1405,10 @@ body {
|
|
|
1407
1405
|
padding-top: 1.5rem;
|
|
1408
1406
|
padding-bottom: 1.5rem;
|
|
1409
1407
|
}
|
|
1408
|
+
.rtg-py-\[2px\] {
|
|
1409
|
+
padding-top: 2px;
|
|
1410
|
+
padding-bottom: 2px;
|
|
1411
|
+
}
|
|
1410
1412
|
.rtg-py-\[3px\] {
|
|
1411
1413
|
padding-top: 3px;
|
|
1412
1414
|
padding-bottom: 3px;
|
|
@@ -2017,6 +2019,12 @@ body {
|
|
|
2017
2019
|
outline-offset: 2px;
|
|
2018
2020
|
}
|
|
2019
2021
|
|
|
2022
|
+
.focus\:rtg-ring-0:focus {
|
|
2023
|
+
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2024
|
+
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
2025
|
+
box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
2026
|
+
}
|
|
2027
|
+
|
|
2020
2028
|
.focus\:rtg-ring-1:focus {
|
|
2021
2029
|
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2022
2030
|
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|