@revotech-group/revotech-ui-kit 0.1.29 → 0.1.31
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 +18 -0
- package/dist/rtg-ui-kit.js +2877 -2703
- package/dist/rtg-ui-kit.umd.cjs +430 -329
- 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 +2 -3
- package/dist/src/components/ui/tabs/tab-trigger.d.ts +2 -2
- package/dist/src/components/ui/tabs/tab.d.ts +2 -2
- package/dist/src/components/ui/tabs/tab.stories.d.ts +2 -1
- package/dist/src/components/ui/tabs/tabs.style.d.ts +3 -0
- 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
|
}
|
|
@@ -841,6 +850,9 @@ body {
|
|
|
841
850
|
.rtg-w-48 {
|
|
842
851
|
width: 12rem;
|
|
843
852
|
}
|
|
853
|
+
.rtg-w-60 {
|
|
854
|
+
width: 15rem;
|
|
855
|
+
}
|
|
844
856
|
.rtg-w-64 {
|
|
845
857
|
width: 16rem;
|
|
846
858
|
}
|
|
@@ -892,6 +904,9 @@ body {
|
|
|
892
904
|
.rtg-w-\[800px\] {
|
|
893
905
|
width: 800px;
|
|
894
906
|
}
|
|
907
|
+
.rtg-w-auto {
|
|
908
|
+
width: auto;
|
|
909
|
+
}
|
|
895
910
|
.rtg-w-fit {
|
|
896
911
|
width: -moz-fit-content;
|
|
897
912
|
width: fit-content;
|
|
@@ -1145,6 +1160,9 @@ body {
|
|
|
1145
1160
|
.rtg-break-words {
|
|
1146
1161
|
overflow-wrap: break-word;
|
|
1147
1162
|
}
|
|
1163
|
+
.\!rtg-rounded-2xl {
|
|
1164
|
+
border-radius: calc(var(--radius) + 8px) !important;
|
|
1165
|
+
}
|
|
1148
1166
|
.rtg-rounded {
|
|
1149
1167
|
border-radius: 0.25rem;
|
|
1150
1168
|
}
|