provided combobox with new withBackdrop prop

This commit is contained in:
mushka 2022-10-02 02:44:56 +03:00
parent 303f2c96ff
commit 7186c933e6

View File

@ -108,6 +108,7 @@ class ComboBox extends React.Component {
isPersonal,
offsetLeft,
modernView,
withBackdrop,
} = this.props;
const { isOpen, selectedOption } = this.state;
@ -179,6 +180,7 @@ class ComboBox extends React.Component {
isExternalLink={isExternalLink}
isPersonal={isPersonal}
offsetLeft={offsetLeft}
withBackdrop={withBackdrop}
>
{advancedOptions
? advancedOptions
@ -228,6 +230,8 @@ ComboBox.propTypes = {
id: PropTypes.string,
/** Accepts id for dropdown container */
dropDownId: PropTypes.string,
/** Indicates that component will have backdrop */
withBackdrop: PropTypes.bool,
/** Indicates that component is disabled */
isDisabled: PropTypes.bool,
/** Indicates that component is displayed without borders */