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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | 1x 6x 1x 1x | import PropTypes from 'prop-types' import MoleculeButtonGroup from '@s-ui/react-molecule-button-group' import MoleculeField from '@s-ui/react-molecule-field' const MoleculeButtonGroupField = ({ id, label, nodeLabel, successText, errorText, alertText, helpText, onChange, children, ...props }) => { return ( <MoleculeField name={id} label={label} nodeLabel={nodeLabel} successText={successText} errorText={errorText} alertText={alertText} helpText={helpText} onChange={onChange} > <MoleculeButtonGroup id={id} {...props}> {children} </MoleculeButtonGroup> </MoleculeField> ) } MoleculeButtonGroupField.displayName = 'MoleculeButtonGroupField' MoleculeButtonGroupField.propTypes = { children: PropTypes.arrayOf(PropTypes.element), /** Text to be displayed as label */ label: PropTypes.string.isRequired, /** React node to be displayed as label if there is not a label */ nodeLabel: PropTypes.element, /** used as label for attribute and input element id */ id: PropTypes.string, /* onChange callback */ onChange: PropTypes.func, /** Success message to display when success state */ successText: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]), /** Error message to display when error state */ errorText: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]), /** Alert message to display when alert state */ alertText: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]), /** Help Text to display */ helpText: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]) } export default MoleculeButtonGroupField |