@namuna-nur/ui-kit 1.9.19 → 1.9.21
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/lib/atoms/index.js +2 -2
- package/lib/molecules/index.js +1819 -1812
- package/lib/src/molecules/MultiSelect/MultiSelect.types.d.ts +2 -2
- package/lib/src/molecules/SearchInput/SearchInput.d.ts +2 -5
- package/lib/src/molecules/SearchInput/SearchInput.data.d.ts +4 -0
- package/lib/src/molecules/SearchInput/SearchInput.stories.d.ts +1 -0
- package/lib/src/molecules/SearchInput/SearchInput.tokens.d.ts +6 -3
- package/lib/src/molecules/SearchInput/SearchInput.types.d.ts +2 -10
- package/package.json +1 -1
package/lib/atoms/index.js
CHANGED
|
@@ -1014,7 +1014,7 @@ const k = {
|
|
|
1014
1014
|
"div",
|
|
1015
1015
|
{
|
|
1016
1016
|
"data-value": m.value,
|
|
1017
|
-
className:
|
|
1017
|
+
className: w.items,
|
|
1018
1018
|
onClick: (S) => {
|
|
1019
1019
|
S.preventDefault(), S.stopPropagation(), o(m.value), f(!1);
|
|
1020
1020
|
},
|
|
@@ -1044,7 +1044,7 @@ const k = {
|
|
|
1044
1044
|
iconDisabled: "text-dark-30/[.25] fill-dark-30/[.25]",
|
|
1045
1045
|
textWrapper: "flex-1",
|
|
1046
1046
|
items: "group rounded-[5px] hover:bg-primary-10/[.10] cursor-pointer px-[9px] py-[5px]",
|
|
1047
|
-
itemsText: "text-dark-30 text-xs font-normal group-hover:text-dark-30 group-hover:font-medium
|
|
1047
|
+
itemsText: "text-dark-30 text-xs font-normal group-hover:text-dark-30 group-hover:font-medium",
|
|
1048
1048
|
placeholder: "text-sm font-normal font-mono text-dark-30/[.50] font-medium",
|
|
1049
1049
|
selected: "text-dark-40 font-semibold whitespace-nowrap",
|
|
1050
1050
|
trigger: "px-4 py-3 rounded-[10px] h-[44px] border border-dark-30/[.10] bg-gray-50 text-start flex justify-between items-center outline-none gap-2",
|