Socket
Book a DemoInstallSign in
Socket

@rmwc/checkbox

Package Overview
Dependencies
Maintainers
1
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rmwc/checkbox

RMWC Checkbox component

Source
npmnpm
Version
4.0.1
Version published
Maintainers
1
Created
Source

Checkboxes

Checkboxes allow the user to select multiple options from a set.

  • Module @rmwc/checkbox
  • Import styles:
    • import '@material/checkbox/dist/mdc.checkbox.css';
    • import '@material/form-field/dist/mdc.form-field.css';
  • MDC Docs: https://material.io/develop/web/components/input-controls/checkboxes/
import { Checkbox } from '@rmwc/checkbox';

{/* Controlled with change handlers */}
<Checkbox
  checked={this.state.cookiesChecked || false}
  onChange={evt => this.setState({cookiesChecked: evt.target.checked})}>
  Cookies
</Checkbox>

{/* Standard Checkbox */}
<Checkbox>Pizza</Checkbox>

{/* Using the label prop */}
<Checkbox label="Icecream" />

{/* Making a "half" checked, indeterminate Checkbox */}
<Checkbox indeterminate>Broccoli</Checkbox>
import { DocumentComponent } from '@rmwc/base/utils/document-component';
import * as docs from './docgen.json';

<DocumentComponent docs={docs} displayName="Checkbox" />

Keywords

rmwc

FAQs

Package last updated on 28 Nov 2018

Did you know?

Socket

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.

Install

Related posts