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 | 1x | import PropTypes from 'prop-types'; export const propTypes = { active: PropTypes.bool, checked: PropTypes.bool, disabled: PropTypes.bool, disabledTitle: PropTypes.string, id: PropTypes.string, isFilled: PropTypes.bool, isReadOnly: PropTypes.bool, labelPalette: PropTypes.oneOf(['default', 'primary', 'danger', 'mandatory']), labelSize: PropTypes.oneOf(['small', 'medium', 'large']), name: PropTypes.string, palette: PropTypes.oneOf(['primary', 'danger']), size: PropTypes.oneOf(['small', 'medium']), title: PropTypes.string, value: PropTypes.string, variant: PropTypes.oneOf(['primary', 'default']), customClass: PropTypes.shape({ customRadioWrap: PropTypes.string, customRadio: PropTypes.string, customLabel: PropTypes.string }), a11y: PropTypes.shape({ ariaChecked: PropTypes.bool, ariaHidden: PropTypes.bool, role: PropTypes.string, ariaLabelledby: PropTypes.string, ariaLabel: PropTypes.string, ariaReadonly: PropTypes.bool }), onChange:PropTypes.func, text:PropTypes.string }; |