@rovula/ui 0.0.73 → 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 +6 -0
- package/dist/cjs/bundle.js +1 -1
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Tree/Tree.stories.d.ts +1 -0
- package/dist/components/Tree/Tree.stories.js +73 -0
- package/dist/components/Tree/TreeItem.js +1 -1
- package/dist/esm/bundle.css +6 -0
- package/dist/esm/bundle.js +1 -1
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Tree/Tree.stories.d.ts +1 -0
- package/dist/src/theme/global.css +8 -0
- package/package.json +1 -1
- package/src/components/Tree/Tree.stories.tsx +100 -0
- package/src/components/Tree/TreeItem.tsx +1 -1
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
|
}
|
|
@@ -1214,6 +1217,9 @@ input[type=number] {
|
|
|
1214
1217
|
.whitespace-nowrap{
|
|
1215
1218
|
white-space: nowrap;
|
|
1216
1219
|
}
|
|
1220
|
+
.break-all{
|
|
1221
|
+
word-break: break-all;
|
|
1222
|
+
}
|
|
1217
1223
|
.rounded{
|
|
1218
1224
|
border-radius: 0.25rem;
|
|
1219
1225
|
}
|