@revotech-group/revotech-ui-kit 0.1.30 → 0.1.32
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 +12 -0
- package/dist/rtg-ui-kit.js +3916 -3825
- package/dist/rtg-ui-kit.umd.cjs +356 -321
- package/dist/src/components/ui/avatar/avatar-fallback.d.ts +6 -4
- package/dist/src/components/ui/avatar/avatar-image.d.ts +6 -4
- package/dist/src/components/ui/avatar/avatar.d.ts +6 -4
- package/dist/src/components/ui/avatar/avatar.style.d.ts +3 -3
- package/dist/src/components/ui/card/card-content.d.ts +7 -2
- package/dist/src/components/ui/card/card-description.d.ts +7 -2
- package/dist/src/components/ui/card/card-footer.d.ts +7 -2
- package/dist/src/components/ui/card/card-header.d.ts +7 -2
- package/dist/src/components/ui/card/card-title.d.ts +7 -2
- package/dist/src/components/ui/card/card.d.ts +1 -2
- package/dist/src/components/ui/tabs/tab-contents.d.ts +2 -2
- package/dist/src/components/ui/tabs/tab-list.d.ts +1 -2
- package/dist/src/components/ui/tabs/tab-trigger.d.ts +1 -2
- package/dist/src/components/ui/tabs/tab.d.ts +1 -2
- package/package.json +1 -1
package/dist/library.css
CHANGED
|
@@ -742,6 +742,9 @@ body {
|
|
|
742
742
|
.rtg-h-11 {
|
|
743
743
|
height: 2.75rem;
|
|
744
744
|
}
|
|
745
|
+
.rtg-h-16 {
|
|
746
|
+
height: 4rem;
|
|
747
|
+
}
|
|
745
748
|
.rtg-h-2 {
|
|
746
749
|
height: 0.5rem;
|
|
747
750
|
}
|
|
@@ -793,6 +796,9 @@ body {
|
|
|
793
796
|
.rtg-h-\[400px\] {
|
|
794
797
|
height: 400px;
|
|
795
798
|
}
|
|
799
|
+
.rtg-h-auto {
|
|
800
|
+
height: auto;
|
|
801
|
+
}
|
|
796
802
|
.rtg-h-full {
|
|
797
803
|
height: 100%;
|
|
798
804
|
}
|
|
@@ -823,6 +829,9 @@ body {
|
|
|
823
829
|
.rtg-w-10 {
|
|
824
830
|
width: 2.5rem;
|
|
825
831
|
}
|
|
832
|
+
.rtg-w-16 {
|
|
833
|
+
width: 4rem;
|
|
834
|
+
}
|
|
826
835
|
.rtg-w-2 {
|
|
827
836
|
width: 0.5rem;
|
|
828
837
|
}
|
|
@@ -895,6 +904,9 @@ body {
|
|
|
895
904
|
.rtg-w-\[800px\] {
|
|
896
905
|
width: 800px;
|
|
897
906
|
}
|
|
907
|
+
.rtg-w-auto {
|
|
908
|
+
width: auto;
|
|
909
|
+
}
|
|
898
910
|
.rtg-w-fit {
|
|
899
911
|
width: -moz-fit-content;
|
|
900
912
|
width: fit-content;
|