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 | 3x | import PropTypes from 'prop-types';
export const propTypes = {
children: PropTypes.node,
customClass: PropTypes.string,
dataId: PropTypes.string,
isActive: PropTypes.bool,
size: PropTypes.oneOf(['small', 'xmedium', 'medium', 'large', 'xlarge', 'full']),
htmlId: PropTypes.string,
a11y: PropTypes.shape({
role: PropTypes.string,
ariaLabelledby: PropTypes.string,
ariaDescribedby: PropTypes.string,
ariaModal: PropTypes.bool
}),
onKeyDown: PropTypes.func,
childAnimationName: PropTypes.oneOf(['expand', 'flyDown']),
needFocusScope: PropTypes.bool,
customProps: PropTypes.object,
forwardRef: PropTypes.object,
onClick: PropTypes.func,
onClose: PropTypes.func,
isMinHeight: PropTypes.bool,
lookupClass: PropTypes.string
};
|