dhre-ui-kit 0.0.221 → 0.0.222
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/index.d.ts +1 -0
- package/lib/index.js +4 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +4 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.mjs
CHANGED
|
@@ -3421,7 +3421,8 @@ const CustomDropdown = (props) => {
|
|
|
3421
3421
|
menuContainerStyle,
|
|
3422
3422
|
activeColor,
|
|
3423
3423
|
keepPlaceholderOnFocus = false,
|
|
3424
|
-
selectedItemTextStyle
|
|
3424
|
+
selectedItemTextStyle,
|
|
3425
|
+
disable
|
|
3425
3426
|
} = props;
|
|
3426
3427
|
const [value, setValue] = useState(defaultValue);
|
|
3427
3428
|
const [isFocus, setIsFocus] = useState(false);
|
|
@@ -3493,7 +3494,8 @@ const CustomDropdown = (props) => {
|
|
|
3493
3494
|
itemTextStyle,
|
|
3494
3495
|
containerStyle: menuContainerStyle,
|
|
3495
3496
|
activeColor,
|
|
3496
|
-
itemContainerStyle: [styles$8.itemListStyle, itemContainerStyle]
|
|
3497
|
+
itemContainerStyle: [styles$8.itemListStyle, itemContainerStyle],
|
|
3498
|
+
disable
|
|
3497
3499
|
}
|
|
3498
3500
|
));
|
|
3499
3501
|
};
|