@rovula/ui 0.0.72 → 0.0.74
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/cjs/bundle.css +11 -0
- package/dist/cjs/bundle.js +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/RadioGroup/RadioGroup.stories.d.ts +6 -0
- package/dist/cjs/types/components/Tree/Tree.stories.d.ts +1 -0
- package/dist/cjs/types/index.d.ts +1 -0
- package/dist/components/Label/Label.styles.js +2 -2
- package/dist/components/RadioGroup/RadioGroup.stories.js +9 -0
- package/dist/components/TextInput/TextInput.js +1 -1
- package/dist/components/Tree/Tree.stories.js +73 -0
- package/dist/components/Tree/TreeItem.js +1 -1
- package/dist/esm/bundle.css +11 -0
- package/dist/esm/bundle.js +3 -3
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/RadioGroup/RadioGroup.stories.d.ts +6 -0
- package/dist/esm/types/components/Tree/Tree.stories.d.ts +1 -0
- package/dist/esm/types/index.d.ts +1 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +1 -0
- package/dist/src/theme/global.css +14 -0
- package/package.json +1 -1
- package/src/components/Label/Label.styles.ts +2 -2
- package/src/components/RadioGroup/RadioGroup.stories.tsx +27 -0
- package/src/components/TextInput/TextInput.tsx +1 -1
- package/src/components/Tree/Tree.stories.tsx +100 -0
- package/src/components/Tree/TreeItem.tsx +1 -1
- package/src/index.ts +1 -0
package/dist/cjs/bundle.css
CHANGED
|
@@ -987,6 +987,9 @@ input[type=number] {
|
|
|
987
987
|
min-width: -moz-fit-content;
|
|
988
988
|
min-width: fit-content;
|
|
989
989
|
}
|
|
990
|
+
.max-w-\[300px\]{
|
|
991
|
+
max-width: 300px;
|
|
992
|
+
}
|
|
990
993
|
.max-w-full{
|
|
991
994
|
max-width: 100%;
|
|
992
995
|
}
|
|
@@ -1159,6 +1162,11 @@ input[type=number] {
|
|
|
1159
1162
|
margin-right: calc(0.5rem * var(--tw-space-x-reverse));
|
|
1160
1163
|
margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1161
1164
|
}
|
|
1165
|
+
.space-x-4 > :not([hidden]) ~ :not([hidden]){
|
|
1166
|
+
--tw-space-x-reverse: 0;
|
|
1167
|
+
margin-right: calc(1rem * var(--tw-space-x-reverse));
|
|
1168
|
+
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
|
|
1169
|
+
}
|
|
1162
1170
|
.space-y-2 > :not([hidden]) ~ :not([hidden]){
|
|
1163
1171
|
--tw-space-y-reverse: 0;
|
|
1164
1172
|
margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
|
|
@@ -1209,6 +1217,9 @@ input[type=number] {
|
|
|
1209
1217
|
.whitespace-nowrap{
|
|
1210
1218
|
white-space: nowrap;
|
|
1211
1219
|
}
|
|
1220
|
+
.break-all{
|
|
1221
|
+
word-break: break-all;
|
|
1222
|
+
}
|
|
1212
1223
|
.rounded{
|
|
1213
1224
|
border-radius: 0.25rem;
|
|
1214
1225
|
}
|