Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 1x | import PropTypes from 'prop-types';
export const propTypes = {
dataSelectorId: PropTypes.string,
arrowBoxSize: PropTypes.oneOf(['small', 'medium']),
children: PropTypes.node,
className: PropTypes.string,
dataId: PropTypes.string,
dataTitle: PropTypes.string,
dropBoxClass: PropTypes.string,
defaultPosition: PropTypes.string,
position: PropTypes.string,
iconName: PropTypes.string,
iconSize: PropTypes.string,
isArrow: PropTypes.bool,
isBoxPaddingNeed: PropTypes.bool,
isDisabled: PropTypes.bool,
isLoading: PropTypes.bool,
isPopupOpen: PropTypes.bool,
onClick: PropTypes.func,
onHover: PropTypes.bool,
palette: PropTypes.oneOf(['primaryFilled', 'primary']),
removeClose: PropTypes.func,
size: PropTypes.oneOf(['small', 'medium', 'large']),
subText: PropTypes.string,
text: PropTypes.string,
getContainerRef: PropTypes.func,
getTargetRef: PropTypes.func,
removeChildrenTooltip: PropTypes.bool,
innerClassName: PropTypes.string,
popupGroup: PropTypes.string,
togglePopup: PropTypes.func,
openPopupOnly: PropTypes.func,
isAbsolutePositioningNeeded: PropTypes.bool,
isRestrictScroll: PropTypes.bool,
positionsOffset: PropTypes.object,
targetOffset: PropTypes.object
};
|