@revotech-group/revotech-ui-kit 0.1.28 → 0.1.30
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 +15 -0
- package/dist/rtg-ui-kit.js +3782 -3554
- package/dist/rtg-ui-kit.umd.cjs +417 -216
- package/dist/src/components/ui/tabs/tab-list.d.ts +1 -0
- package/dist/src/components/ui/tabs/tab-trigger.d.ts +1 -0
- package/dist/src/components/ui/tabs/tab.d.ts +1 -0
- 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/dist/src/components/widgets/light-sample-demo/light-sample.demo.d.ts +1 -0
- package/package.json +1 -1
package/dist/library.css
CHANGED
|
@@ -745,6 +745,9 @@ body {
|
|
|
745
745
|
.rtg-h-2 {
|
|
746
746
|
height: 0.5rem;
|
|
747
747
|
}
|
|
748
|
+
.rtg-h-20 {
|
|
749
|
+
height: 5rem;
|
|
750
|
+
}
|
|
748
751
|
.rtg-h-24 {
|
|
749
752
|
height: 6rem;
|
|
750
753
|
}
|
|
@@ -823,6 +826,9 @@ body {
|
|
|
823
826
|
.rtg-w-2 {
|
|
824
827
|
width: 0.5rem;
|
|
825
828
|
}
|
|
829
|
+
.rtg-w-20 {
|
|
830
|
+
width: 5rem;
|
|
831
|
+
}
|
|
826
832
|
.rtg-w-3 {
|
|
827
833
|
width: 0.75rem;
|
|
828
834
|
}
|
|
@@ -835,6 +841,9 @@ body {
|
|
|
835
841
|
.rtg-w-48 {
|
|
836
842
|
width: 12rem;
|
|
837
843
|
}
|
|
844
|
+
.rtg-w-60 {
|
|
845
|
+
width: 15rem;
|
|
846
|
+
}
|
|
838
847
|
.rtg-w-64 {
|
|
839
848
|
width: 16rem;
|
|
840
849
|
}
|
|
@@ -1139,9 +1148,15 @@ body {
|
|
|
1139
1148
|
.rtg-break-words {
|
|
1140
1149
|
overflow-wrap: break-word;
|
|
1141
1150
|
}
|
|
1151
|
+
.\!rtg-rounded-2xl {
|
|
1152
|
+
border-radius: calc(var(--radius) + 8px) !important;
|
|
1153
|
+
}
|
|
1142
1154
|
.rtg-rounded {
|
|
1143
1155
|
border-radius: 0.25rem;
|
|
1144
1156
|
}
|
|
1157
|
+
.rtg-rounded-2xl {
|
|
1158
|
+
border-radius: calc(var(--radius) + 8px);
|
|
1159
|
+
}
|
|
1145
1160
|
.rtg-rounded-\[inherit\] {
|
|
1146
1161
|
border-radius: inherit;
|
|
1147
1162
|
}
|