Web: Common: added new propTypes to AdvancedSelector

This commit is contained in:
Nikita Gopienko 2020-03-28 13:20:27 +03:00
parent a383423d5b
commit f701a1b000
2 changed files with 5 additions and 2 deletions

View File

@ -51,7 +51,8 @@ Footer.propTypes = {
selectButtonLabel: PropTypes.string,
isDisabled: PropTypes.bool,
isVisible: PropTypes.bool,
onClick: PropTypes.func
onClick: PropTypes.func,
comboBoxOptions: PropTypes.any
};
export default Footer;

View File

@ -734,7 +734,9 @@ Selector.propTypes = {
onSelect: PropTypes.func,
onSearchChanged: PropTypes.func,
onGroupChanged: PropTypes.func,
getOptionTooltipContent: PropTypes.func
getOptionTooltipContent: PropTypes.func,
comboBoxOptions: PropTypes.any
};
Selector.defaultProps = {