Skip to content

Latest commit

 

History

History
203 lines (133 loc) · 6.49 KB

docs.mdx

File metadata and controls

203 lines (133 loc) · 6.49 KB

import CodeView from '../../../shared/components/CodeView'; import CodeBlock from '../../../shared/components/CodeBlock'; import Blockquote from '../../../shared/components/Blockquote'; import StylingHooksTable from '../../../shared/components/StylingHooksTable'; import * as CheckboxExamples from './base/example'; import * as CheckboxFormElementExamples from './form-element/example'; import { getDisplayElementById } from '../../shared/helpers'; import { MobileNotice, MobileBlurb } from '../../shared/doc-text';

A checkable input that communicates if an option is true, false or indeterminate

{getDisplayElementById(CheckboxExamples.default)}

About Checkbox

The ability to style checkboxes with CSS varies across browsers. To ensure that checkboxes look the same everywhere, we use a custom DOM. Pay close attention to the markup, because all elements must exist for the styles to work.

Accessibility

Groups of checkboxes should be marked up using the fieldset and legend element. This helps someone using assistive technology to understand the question they're answering with the group of checkboxes. The fieldset is placed around the whole group and the legend contains the question.

Custom checkboxes are created by applying the .slds-checkbox class to a <label> element. To remain accessible to all user agents, place <input> with type="checkbox" inside the <label> element. The <input> is then visually hidden, and the styling is placed on a span with the .slds-checkbox_faux class. The styling of the span changes based on whether the checkbox is selected or focused by using a pseudo-element. A second span with .slds-form-element__label contains the label text.

When a single checkbox is required, <div class="slds-checkbox"> should get <abbr class="slds-required" title="required">*</abbr> added to the DOM, directly before the <input type="checkbox" /> for visual indication that the checkbox is required.

When a checkbox group is required, the <fieldset> should receive the class .slds-is-required. The <legend> should then get <abbr class="slds-required" title="required">*</abbr> added to the DOM for visual indication that the checkbox group is required.

As SLDS checkboxes rely on the :checked pseudo selector, and the indeterminate state is only accessible via JavaScript, the use of a CSS class on the input will be necessary to implement this in SLDS. Use JavaScript to add the class when the indeterminate property is set to true on the input.

Mobile

{getDisplayElementById(CheckboxExamples.default)}

Base

The base variant of a checkbox is a single boolean value. The base checkbox is consumed by both a grouped checkbox and a checkbox within a form element.

The form element variant accommodates a top level label and additional functionality such as like help text and read only mode. Help text is not supported on a single checkbox.

{getDisplayElementById(CheckboxExamples.default)}

States

Required

{getDisplayElementById(CheckboxExamples.states, 'required')} {getDisplayElementById(CheckboxExamples.states, 'required')}

Error

{getDisplayElementById(CheckboxExamples.states, 'error')}

{getDisplayElementById(CheckboxExamples.states, 'error')}

Disabled

{getDisplayElementById(CheckboxExamples.states, 'disabled')}
Checked and Disabled
{getDisplayElementById(CheckboxExamples.states, 'checked-and-disabled')}

Examples

Group

{getDisplayElementById(CheckboxExamples.examples, 'group')}

{getDisplayElementById(CheckboxExamples.examples, 'group')}

Required
{getDisplayElementById(CheckboxExamples.examples, 'group-required')}

{getDisplayElementById(CheckboxExamples.examples, 'group-required')}

Error
{getDisplayElementById(CheckboxExamples.examples, 'group-error')}

{getDisplayElementById(CheckboxExamples.examples, 'group-error')}

Disabled
{getDisplayElementById(CheckboxExamples.examples, 'group-disabled')}

RTL (right to left direction)

{getDisplayElementById(CheckboxExamples.examples, 'rtl')}

Form Element

{getDisplayElementById(CheckboxFormElementExamples.default)}

States

Checked

{getDisplayElementById(CheckboxFormElementExamples.states, 'checked')}

Disabled

{getDisplayElementById(CheckboxFormElementExamples.states, 'disabled')}

Checked and Disabled

{getDisplayElementById( CheckboxFormElementExamples.states, 'checked-disabled' )}

Error

{getDisplayElementById(CheckboxFormElementExamples.states, 'error')}

Required

{getDisplayElementById(CheckboxFormElementExamples.states, 'required')}

View mode

View mode is the read only state of a checkbox form element.

Unchecked

{getDisplayElementById( CheckboxFormElementExamples.states, 'view-mode-unchecked' )}

Checked

{getDisplayElementById( CheckboxFormElementExamples.states, 'view-mode-checked' )}

Examples

With help text

{getDisplayElementById( CheckboxFormElementExamples.examples, 'help-text-icon' )}

Required with help text

{getDisplayElementById( CheckboxFormElementExamples.examples, 'required-help-text-icon' )}

Required with help text with tooltip

{getDisplayElementById( CheckboxFormElementExamples.examples, 'required-help-text-icon-tooltip' )}

Styling Hooks Overview