@rovula/ui 0.0.50 → 0.0.51
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 +3 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Tree/type.d.ts +19 -12
- package/dist/components/Tree/Tree.js +2 -2
- package/dist/components/Tree/TreeItem.js +16 -15
- 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/type.d.ts +19 -12
- package/dist/index.d.ts +19 -12
- package/dist/src/theme/global.css +8 -0
- package/package.json +1 -1
- package/src/components/Tree/Tree.tsx +8 -0
- package/src/components/Tree/TreeItem.tsx +164 -108
- package/src/components/Tree/type.ts +22 -11
package/dist/cjs/bundle.css
CHANGED
|
@@ -796,6 +796,9 @@ input[type=number] {
|
|
|
796
796
|
width: 100%;
|
|
797
797
|
height: 100%;
|
|
798
798
|
}
|
|
799
|
+
.h-1\/2{
|
|
800
|
+
height: 50%;
|
|
801
|
+
}
|
|
799
802
|
.h-10{
|
|
800
803
|
height: 2.5rem;
|
|
801
804
|
}
|
|
@@ -905,6 +908,9 @@ input[type=number] {
|
|
|
905
908
|
.w-\[24px\]{
|
|
906
909
|
width: 24px;
|
|
907
910
|
}
|
|
911
|
+
.w-\[2px\]{
|
|
912
|
+
width: 2px;
|
|
913
|
+
}
|
|
908
914
|
.w-\[32px\]{
|
|
909
915
|
width: 32px;
|
|
910
916
|
}
|