@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
24 lines • 768 B
JavaScript
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
};