grommet
Version:
focus on the essential experience
19 lines • 1.91 kB
JavaScript
import { describe, PropTypes } from 'react-desc';
import { getAvailableAtBadge } from '../../utils';
export var doc = function doc(RadioButtonGroup) {
var DocumentedRadioButtonGroup = describe(RadioButtonGroup).availableAt(getAvailableAtBadge('RadioButtonGroup')).description('A group of radio buttons.').usage("import { RadioButtonGroup } from 'grommet';\n<RadioButtonGroup />").intrinsicElement('div');
DocumentedRadioButtonGroup.propTypes = {
children: PropTypes.func.description("Function that will be called to render the visual representation.\n It will be passed an object indicating whether the button is checked. It\n should return a react element.\n For example:\n `children={(option, { checked }) => <Box ...>{...}</Box>}`\n "),
disabled: PropTypes.bool.description("Disables all options.").defaultValue(false),
name: PropTypes.string.description("The DOM name attribute value to use for the underlying <input/> \n elements.").isRequired,
onChange: PropTypes.func.description("Function that will be called when the user clicks on one of the radio\n buttons. It will be passed a React event object."),
options: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.arrayOf(PropTypes.number), PropTypes.arrayOf(PropTypes.bool), PropTypes.arrayOf(PropTypes.shape({
disabled: PropTypes.bool,
id: PropTypes.string,
label: PropTypes.oneOfType([PropTypes.string, PropTypes.element]),
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.bool]).isRequired
}))]).description("Options can be either a string or an object. \n Each option is rendered as a single RadioButton.").isRequired,
value: PropTypes.oneOfType([PropTypes.string, PropTypes.number, PropTypes.bool, PropTypes.object]).description("Currently selected option value.")
};
return DocumentedRadioButtonGroup;
};