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
yarn add @leafygreen-ui/radio-group
npm install @leafygreen-ui/radio-group
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"
role="group"
aria-label="radio-group-660118"
>
<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>
Prop | Type | Description | Default |
---|---|---|---|
darkMode | boolean | Determines whether or not the component appears in dark mode | false |
name | string | Sets the name of the input group | |
value | string , number | Sets the radio that will appear checked on page load, also makes the component a controlled component | |
className | string | Adds a className to the root element. | '' |
onChange | function | The event handler function for the 'onchange' event. Receives the associated event object as the first argument. | () => {} |
children | node | Can be any node; however, any <Radio /> components, will be treated as belonging to the <RadioGroup /> compound component, and will receive internal state from <RadioGroup /> | |
size | 'xsmall' , 'small' , 'default' | Sets the size for the Radios. Use of xsmall should be limited to only Charts | default |
Any other properties will be spread on the root element.
<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"
aria-checked="false"
disabled="true"
aria-disabled="true"
value="option-1"
/>
<span class="leafygreen-ui-1l7rt9l">Label Text Goes Here</span>
</label>
Prop | Type | Description | Default |
---|---|---|---|
value (Required) | string , number | Every <Radio /> needs a value prop. | |
className | string | Adds a className to the label | '' |
disabled | boolean | Indicates whether or not the radio can be clicked by a user | false |
children | node | Text that appears adjacent to the radio input; label text. | |
default | boolean | If <RadioGroup /> is uncontrolled, the default property makes this Radio checked on the initial render. | |
checked | boolean | Determines if <Radio /> will appear checked | false |
... | native input attributes | Any other props will be spread on the root input element |
FAQs
leafyGreen UI Kit RadioGroup
The npm package @leafygreen-ui/radio-group receives a total of 41,617 weekly downloads. As such, @leafygreen-ui/radio-group popularity was classified as popular.
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.