All files / src/FreezeLayer/props propTypes.js

100% Statements 2/2
100% Branches 0/0
100% Functions 0/0
100% Lines 2/2

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    11x   11x                                          
import PropTypes from 'prop-types';
 
let animationValues = ['fade', 'shrink', 'expand', 'slideRight', 'slideDown', 'flyDown'];
 
export const propTypes = {
  align: PropTypes.oneOf(['horizontal', 'vertical', 'both']),
  animationName: PropTypes.oneOf(animationValues),
  childAnimationName: PropTypes.oneOf(animationValues),
  children: PropTypes.node,
  customClass: PropTypes.string,
  forwardRef: PropTypes.object,
  isActive: PropTypes.bool,
  isSvgMask: PropTypes.bool,
  needAutoZindex: PropTypes.bool,
  onClick: PropTypes.oneOfType([PropTypes.func, PropTypes.bool]),
  palette: PropTypes.oneOf(['dark', 'default', 'darkLight', 'plain', 'snow']),
  runOnMount: PropTypes.bool,
  customStyle: PropTypes.object,
  zIndex: PropTypes.oneOf(['3', '5', '7', '10']),
  onAnimateEnter: PropTypes.func,
  postAnimateStyles: PropTypes.object,
  onAnimateExit: PropTypes.func
};
 
export default propTypes;