UNPKG

@zohodesk/dot

Version:

In this Library, we Provide Some Basic Components to Build Your Application

40 lines 1.23 kB
import PropTypes from 'prop-types'; import { propTypes as AvatarProps } from '@zohodesk/components/es/Avatar/props/propTypes'; export const AttachmentImage_propTypes = { alt: PropTypes.string, customClass: PropTypes.shape({ customImageClass: PropTypes.string, customChildrenClass: PropTypes.string }), dataId: PropTypes.string, id: PropTypes.string, isCover: PropTypes.bool, onClick: PropTypes.func, onLoad: PropTypes.func, onError: PropTypes.func, src: PropTypes.string, children: PropTypes.node }; export const AttachmentViewer_propTypes = { hideAttachmentViewer: PropTypes.func, i18nKeys: PropTypes.shape({ nextText: PropTypes.string, previousText: PropTypes.string, zoomOutText: PropTypes.string, zoomInText: PropTypes.string, newTabText: PropTypes.string, downloadText: PropTypes.string, closeText: PropTypes.string, hideText: PropTypes.string, showText: PropTypes.string }), needDownload: PropTypes.string, previewObj: PropTypes.object, responsiveId: PropTypes.string, maintainZoom: PropTypes.bool, isActive: PropTypes.bool, dataId: PropTypes.string, customProps: PropTypes.shape({ avatarProps: PropTypes.exact(AvatarProps) }) };