Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@leafygreen-ui/radio-group
Advanced tools
import { Radio, RadioGroup } from '@leafygreen-ui/radio-group';
<RadioGroup
className="my-radio-group"
variant="default"
onChange={event => console.log('hi')}
value="option-1"
name="name-of-input-group"
>
<Radio className="my-radio" value="option-1">
Label Text Goes Here
</Radio>
</RadioGroup>;
<div class="leafygreen-ui-16glayc my-radio-group">
<label
for="radio-group-660118-button-0"
class="leafygreen-ui-11wfvmq my-radio"
>
<input
id="radio-group-660118-button-0"
name="name-of-input-group"
type="radio"
class="leafygreen-ui-i6tne my-radio"
aria-checked="true"
aria-disabled="false"
value="option-1"
/>
<span class="leafygreen-ui-1l7rt9l">Label Text Goes Here</span>
</label>
</div>
Type: string
Default: 'default'
Sets the style variant of the toggle. Valid variants for toggles are 'default'
and 'light'
.
Type: string
Default: ''
Sets the name of the input group
Type: string
or integer
Default: ``
Sets the radio that will apear checked on page load, also makes the component a controlled component
Type: string
Default: ''
Adds a className to the root element.
Type: function
Default: () => {}
The event handler function for the 'onchange' event. Receives the associated event
object as the first argument.
Type: node
Default: null
Can be any node; however, any <Radio />
components, will be treated as belonging to the <RadioGroup />
compound component, and will recieve internal state from <RadioGroup />
<Radio className="my-radio" value="option-1" disabled={true}>
Label Text Goes Here
</Radio>
<label class="leafygreen-ui-11wfvmq my-radio">
<input
type="radio"
class="leafygreen-ui-i6tne my-radio"
aria-checked="false"
disabled="true"
aria-disabled="true"
value="option-1"
/>
<span class="leafygreen-ui-1l7rt9l">Label Text Goes Here</span>
</label>
Type: required
, can be a string
or an integer
Every radio needs a value prop
Type: string
Default: ``
Adds a className to the label
Type: boolean
Default: false
Indicates whether or not the radio can be clicked by a user
Type: node
Default: null
Text that appears adjacent to the radio input; label text.
input
element.FAQs
leafyGreen UI Kit RadioGroup
We found that @leafygreen-ui/radio-group demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.