UNPKG

@zohodesk/components

Version:

In this Package, we Provide Some Basic Components to Build Web App

53 lines 1.53 kB
import PropTypes from 'prop-types'; export const PopOver_propTypes = { arrowBottom: PropTypes.string, arrowLeft: PropTypes.string, arrowPosition: PropTypes.string, arrowRight: PropTypes.string, arrowTop: PropTypes.string, bottom: PropTypes.string, boxPosition: PropTypes.string, children: PropTypes.node, getContainerRef: PropTypes.func, getTargetRef: PropTypes.func, isAnimate: PropTypes.bool, isArrow: PropTypes.bool, isPopupOpen: PropTypes.bool, isPopupReady: PropTypes.bool, left: PropTypes.string, onClick: PropTypes.func, onPopupClose: PropTypes.func, onPopupOpen: PropTypes.func, position: PropTypes.string, removeClose: PropTypes.func, right: PropTypes.string, size: PropTypes.string, togglePopup: PropTypes.func, top: PropTypes.string }; export const PopOverTarget_propTypes = { children: PropTypes.node, getRef: PropTypes.func, togglePopup: PropTypes.func }; export const PopOverContainer_propTypes = { animationStyle: PropTypes.string, arrowBottom: PropTypes.string, arrowLeft: PropTypes.string, arrowPosition: PropTypes.string, arrowRight: PropTypes.string, arrowTop: PropTypes.string, bottom: PropTypes.string, boxPosition: PropTypes.string, children: PropTypes.node, getRef: PropTypes.func, isAnimate: PropTypes.bool, isArrow: PropTypes.bool, isPopupOpen: PropTypes.bool, left: PropTypes.string, onClick: PropTypes.func, removeClose: PropTypes.func, right: PropTypes.string, size: PropTypes.string, top: PropTypes.string };