@salesforce-ux/slds-input-radio-group
v0.1.7
Published
The Radio Group element is a control that wraps a number of Radios and allows the user to select one value out of the set. While similar to a Checkbox element, only one Radio element in a particular set can be selected at any given time.
Downloads
14
Readme
Getting Started
About
The input-radio-group component for the Salesforce Lightning Design System.
Installation
npm i @salesforce-ux/slds-input-radio-group
Usage
Lightning Web Component
Import the CSS
After installation, you need to import the component's CSS into your LWC component module. To do this, use the @import
CSS syntax within the CSS file of your component module.
/* myComponent.css */
@import '@salesforce-ux/slds-input-radio-group/dist/input-radio-group.compiled.css';
The *.compiled.css
files in the /dist
folder have all the component's dependencies rolled up into one file. If you choose to import your modules explicitly, you should the *.css
files in the /dist
folder.
Decorate the HTML to match specification
Additionally, you will need to decorate the HTML of your LWC component template to have all the named part
attributes in the component's specification.