sprint-asia-custom-component 0.1.153 → 0.1.155
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/index.js +51951 -49027
- package/package.json +1 -1
- package/src/components/description/index.js +2 -2
- package/src/components/filter/filterDropdown/index.js +1 -1
package/package.json
CHANGED
|
@@ -21,8 +21,8 @@ const Description = ({
|
|
|
21
21
|
}
|
|
22
22
|
<p
|
|
23
23
|
className={`
|
|
24
|
-
${textColor == "default" && "text-black font-
|
|
25
|
-
${textColor == "success" && "text-success500 font-
|
|
24
|
+
${textColor == "default" && "text-black font-medium text-base"}
|
|
25
|
+
${textColor == "success" && "text-success500 font-medium text-base"}
|
|
26
26
|
`}
|
|
27
27
|
>
|
|
28
28
|
{value}
|
|
@@ -184,7 +184,7 @@ const FilterDropdown = ({
|
|
|
184
184
|
</div>
|
|
185
185
|
{showFilterSubmenu && option.submenu.length > 0 && dataSelectionOptionMenu === option.menu && (
|
|
186
186
|
<div
|
|
187
|
-
className={`ml-1 border border-neutral40 bg-white p-3 shadow-md rounded-md w-56 absolute left-48 cursor-pointer max-h-
|
|
187
|
+
className={`ml-1 border border-neutral40 bg-white p-3 shadow-md rounded-md w-56 absolute left-48 cursor-pointer max-h-48 overflow-hidden overflow-y-auto ${
|
|
188
188
|
index == 0 && "top-0"
|
|
189
189
|
} ${index == 1 && "top-16"} ${index == 2 && "top-24"} ${index == 3 && "top-36"} ${
|
|
190
190
|
index == 4 && "top-48"
|