@rovula/ui 0.0.63 → 0.0.65
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 +12 -0
- package/dist/cjs/bundle.js +1 -1
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +2 -0
- package/dist/cjs/types/components/Search/Search.stories.d.ts +1 -0
- package/dist/cjs/types/components/Toast/Toast.stories.d.ts +1 -1
- package/dist/components/Dropdown/Dropdown.js +48 -20
- package/dist/esm/bundle.css +12 -0
- package/dist/esm/bundle.js +1 -1
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Dropdown/Dropdown.d.ts +2 -0
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +2 -0
- package/dist/esm/types/components/Search/Search.stories.d.ts +1 -0
- package/dist/esm/types/components/Toast/Toast.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/src/theme/global.css +16 -0
- package/package.json +1 -1
- package/src/components/Dropdown/Dropdown.tsx +61 -22
package/dist/cjs/bundle.css
CHANGED
|
@@ -599,6 +599,9 @@ input[type=number] {
|
|
|
599
599
|
.bottom-\[40px\]{
|
|
600
600
|
bottom: 40px;
|
|
601
601
|
}
|
|
602
|
+
.bottom-full{
|
|
603
|
+
bottom: 100%;
|
|
604
|
+
}
|
|
602
605
|
.left-0{
|
|
603
606
|
left: 0px;
|
|
604
607
|
}
|
|
@@ -638,6 +641,9 @@ input[type=number] {
|
|
|
638
641
|
.top-\[50\%\]{
|
|
639
642
|
top: 50%;
|
|
640
643
|
}
|
|
644
|
+
.top-full{
|
|
645
|
+
top: 100%;
|
|
646
|
+
}
|
|
641
647
|
.z-0{
|
|
642
648
|
z-index: 0;
|
|
643
649
|
}
|
|
@@ -650,6 +656,9 @@ input[type=number] {
|
|
|
650
656
|
.z-\[100\]{
|
|
651
657
|
z-index: 100;
|
|
652
658
|
}
|
|
659
|
+
.z-\[9999\]{
|
|
660
|
+
z-index: 9999;
|
|
661
|
+
}
|
|
653
662
|
.col-span-3{
|
|
654
663
|
grid-column: span 3 / span 3;
|
|
655
664
|
}
|
|
@@ -678,6 +687,9 @@ input[type=number] {
|
|
|
678
687
|
.-mt-\[30px\]{
|
|
679
688
|
margin-top: -30px;
|
|
680
689
|
}
|
|
690
|
+
.mb-1{
|
|
691
|
+
margin-bottom: 0.25rem;
|
|
692
|
+
}
|
|
681
693
|
.ml-2{
|
|
682
694
|
margin-left: 0.5rem;
|
|
683
695
|
}
|