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 27 28 29 30 31 32 33 34 35 36 37 | 1x | import PropTypes from 'prop-types';
export const propTypes = {
cancelText: PropTypes.string,
children: PropTypes.node,
confirmationMessage: PropTypes.string,
customClass: PropTypes.string,
dataId: PropTypes.string,
forwardRef: PropTypes.object,
headerChildren: PropTypes.func,
iconClass: PropTypes.string,
iconName: PropTypes.string,
iconSize: PropTypes.string,
isActive: PropTypes.bool,
message: PropTypes.node,
needIcon: PropTypes.bool,
onCancelClick: PropTypes.func,
onClose: PropTypes.func,
onLookupClick: PropTypes.func,
onSubmitClick: PropTypes.func,
palette: PropTypes.oneOf(['default', 'primary', 'danger']),
sectionClassName: PropTypes.string,
size: PropTypes.oneOf(['small', 'medium']),
submitText: PropTypes.string,
title: PropTypes.string,
type: PropTypes.oneOf(['delete', 'alert', 'remoteAssist', 'splitTicket']),
wrapHeader: PropTypes.bool,
customProps: PropTypes.shape({
LookupProps: PropTypes.object,
AlertHeaderProps: PropTypes.object,
PrimaryButtonProps: PropTypes.object,
SecondaryButtonProps: PropTypes.object
}),
onEsc: PropTypes.oneOf(['close', 'cancel']),
isHtmlContent: PropTypes.bool
};
|