sp-checkbox

Overview API Changelog

Overview

Section titled Overview

<sp-checkbox> allow users to select multiple items from a list of independent options, or to mark an individual option as selected.

Should I use a checkbox or a switch? Use a switch when activating something instead of selecting.

Usage

Section titled Usage

See it on NPM! How big is this package in your project? Try it on webcomponents.dev

yarn add @spectrum-web-components/checkbox

Import the side effectful registration of <sp-checkbox> via:

import '@spectrum-web-components/checkbox/sp-checkbox.js';

When looking to leverage the Checkbox base class as a type and/or for extension purposes, do so via:

import { Checkbox } from '@spectrum-web-components/checkbox';

Anatomy

Section titled Anatomy

A checkbox consists of a box that can be checked or unchecked, and a label that describes its purpose. The checkbox can also be in an indeterminate state, which is visually distinct from both checked and unchecked states.

Options

Section titled Options

Sizes

Section titled Sizes
Small
<sp-field-group horizontal label="Small Checkboxes">
    <sp-checkbox size="s">Small</sp-checkbox>
    <sp-checkbox size="s" checked>Small Checked</sp-checkbox>
    <sp-checkbox size="s" indeterminate>Small Indeterminate</sp-checkbox>
</sp-field-group>
Medium
<sp-field-group horizontal label="Medium Checkboxes">
    <sp-checkbox size="m">Medium</sp-checkbox>
    <sp-checkbox size="m" checked>Medium Checked</sp-checkbox>
    <sp-checkbox size="m" indeterminate>Medium Indeterminate</sp-checkbox>
</sp-field-group>
Large
<sp-field-group horizontal label="Large Checkboxes">
    <sp-checkbox size="l">Large</sp-checkbox>
    <sp-checkbox size="l" checked>Large Checked</sp-checkbox>
    <sp-checkbox size="l" indeterminate>Large Indeterminate</sp-checkbox>
</sp-field-group>
Extra Large
<sp-field-group horizontal label="Extra Large Checkboxes">
    <sp-checkbox size="xl">Extra Large</sp-checkbox>
    <sp-checkbox size="xl" checked>Extra Large Checked</sp-checkbox>
    <sp-checkbox size="xl" indeterminate>Extra Large Indeterminate</sp-checkbox>
</sp-field-group>

Variants

Section titled Variants
Standard Checkboxes

Standard checkboxes are the default style for checkboxes. They are optimal for application panels where all visual elements are monochrome in order to direct focus to the content.

<div style="display: flex; justify-content: space-between;">
    <div style="display: flex; flex-direction: column;">
        <h4 class="spectrum-Heading--subtitle1">Default</h4>
        <sp-checkbox>Web component</sp-checkbox>
        <sp-checkbox checked>Web component</sp-checkbox>
        <sp-checkbox indeterminate>Web component</sp-checkbox>
    </div>

    <div style="display: flex; flex-direction: column;">
        <h4 class="spectrum-Heading--subtitle1">Invalid</h4>
        <sp-checkbox invalid>Web component</sp-checkbox>
        <sp-checkbox checked invalid>Web component</sp-checkbox>
        <sp-checkbox indeterminate invalid>Web component</sp-checkbox>
    </div>

    <div style="display: flex; flex-direction: column;">
        <h4 class="spectrum-Heading--subtitle1">Disabled</h4>
        <sp-checkbox disabled>Web component</sp-checkbox>
        <sp-checkbox checked disabled>Web component</sp-checkbox>
        <sp-checkbox indeterminate disabled>Web component</sp-checkbox>
    </div>
</div>
Emphasized Checkboxes

Emphasized checkboxes are a secondary style for checkboxes. The blue color provides a visual prominence that is optimal for forms, settings, lists or grids of assets, etc. where the checkboxes need to be noticed.

<div style="display: flex; justify-content: space-between;">
    <div style="display: flex; flex-direction: column;">
        <h4 class="spectrum-Heading--subtitle1">Default</h4>
        <sp-checkbox emphasized>Web component</sp-checkbox>
        <sp-checkbox emphasized checked>Web component</sp-checkbox>
        <sp-checkbox emphasized indeterminate>Web component</sp-checkbox>
    </div>

    <div style="display: flex; flex-direction: column;">
        <h4 class="spectrum-Heading--subtitle1">Invalid</h4>
        <sp-checkbox emphasized invalid>Web component</sp-checkbox>
        <sp-checkbox emphasized checked invalid>Web component</sp-checkbox>
        <sp-checkbox emphasized indeterminate invalid>
            Web component
        </sp-checkbox>
    </div>

    <div style="display: flex; flex-direction: column;">
        <h4 class="spectrum-Heading--subtitle1">Disabled</h4>
        <sp-checkbox emphasized disabled>Web component</sp-checkbox>
        <sp-checkbox emphasized checked disabled>Web component</sp-checkbox>
        <sp-checkbox emphasized indeterminate disabled>
            Web component
        </sp-checkbox>
    </div>
</div>

States

Section titled States

Invalid

Section titled Invalid

The invalid attribute indicates that the checkbox's value is invalid. When set, appropriate ARIA attributes will be automatically applied.

<sp-checkbox invalid>Invalid</sp-checkbox>

Disabled

Section titled Disabled

The disabled attribute prevents the checkbox from receiving focus or events. The checkbox will appear faded.

<sp-checkbox disabled>Disabled</sp-checkbox>

Indeterminate

Section titled Indeterminate

The indeterminate attribute sets the checkbox to an indeterminate state, visually distinct from both checked and unchecked states.

<sp-checkbox indeterminate>Indeterminate</sp-checkbox>

Read-only

Section titled Read-only

Checkboxes have a readonly attribute for when they’re in the disabled state but still need their labels to be shown. This allows for content to be copied, but not interacted with or changed.

<sp-checkbox readonly>Read-only</sp-checkbox>

Behaviors

Section titled Behaviors

Handling events

Section titled Handling events

Event handlers for clicks and other user actions can be registered on an <sp-checkbox> as they would a standard <input type="checkbox"> element.

<sp-checkbox
    id="checkbox-example"
    onclick="spAlert(this, '<sp-checkbox> clicked!')"
>
    Check this box to see an onclick alert.
</sp-checkbox>

Accessibility

Section titled Accessibility

Checkboxes are accessible by default, rendered in HTML using the <input type="checkbox"> element. When the checkbox is set as indeterminate or invalid, the appropriate ARIA state attribute will automatically be applied.

Include a label

Section titled Include a label

Every checkbox must have a label that clearly describes its purpose. The label can be provided as content within the <sp-checkbox> element.

<sp-checkbox>Send me text messages.</sp-checkbox>
Section titled Label groups of related checkboxes

Sets of checkboxes should always have a clear label that describes what the list of options represents and guides users what to do. This is important for accessibility, since a screen reader will read the label before each option. (See field group's label documentation for more information.)

<sp-field-group label="Select your toppings">
    <sp-checkbox>Ketchup</sp-checkbox>
    <sp-checkbox>Mustard</sp-checkbox>
    <sp-checkbox>Pickles</sp-checkbox>
</sp-field-group>

Keyboard Navigation

Section titled Keyboard Navigation

Checkboxes can be toggled using the Space key when focused. They follow the standard tab order of the page.

Screen readers

Section titled Screen readers

Screen readers interpret checkboxes by announcing their role, label, current state, and role to the user. This allows users relying on assistive technology to understand and interact with the checkbox effectively.

When focused, a screen reader will announce:

  • The label (text provided inside the or associated with it)
  • The state: "checked", "not checked", or "partially checked" (when indeterminate is set)
  • The role: "checkbox"
  • If the checkbox is marked as invalid, it may also announce "invalid entry" depending on the screen reader.

API

Attributes and Properties

Section titled Attributes and Properties
Property Attribute Type Default Description checked checked boolean false disabled disabled boolean false Disable this control. It will not receive focus or events emphasized emphasized boolean false indeterminate indeterminate boolean false invalid invalid boolean false name name string | undefined readonly readonly boolean false tabIndex tabindex number 0

Slots

Section titled Slots
Name Description default slot content to display as the label for the Checkbox

Events

Section titled Events
Name Type Description change Event Announces a change in the `checked` property of a Checkbox

Changelog

Patch Changes

Section titled Patch Changes
  • #5228 a4de4c7 Thanks @renovate! - 📝 #3617 Thanks @marissahuysentruyt!

    Adds a ::before pseudo element to properly target the checkbox checked input + box element. The selector update, specifically in the invalid + checked + hover state should now get the proper error background color, as opposed to the default background color.

  • Updated dependencies []:

    • @spectrum-web-components/icon@1.5.0
    • @spectrum-web-components/icons-ui@1.5.0
    • @spectrum-web-components/base@1.5.0
    • @spectrum-web-components/shared@1.5.0

1.4.0

Section titled 1.4.0

Patch Changes

Section titled Patch Changes
  • Updated dependencies []:
    • @spectrum-web-components/icon@1.4.0
    • @spectrum-web-components/icons-ui@1.4.0
    • @spectrum-web-components/base@1.4.0
    • @spectrum-web-components/shared@1.4.0

1.3.0

Section titled 1.3.0

Patch Changes

Section titled Patch Changes
  • #5176 468314f Thanks @TarunAdobe! - 1. chore(checkbox): updated to latest css v10.1.1 for s2 fast follow

    1. chore(dialog): The error property was not properly deprecated with a full migration plan in place. This has caused confusion and false sense of urgency for consumers to migrate. We are removing it to eliminate those pain points for consumers while we take a deep look at our dialogs and patterns.
    2. chore(menu): updated to latest css v9.1.1 for s2 fast follow
    3. fix(overlay): sp-overlay with type="manual" should close on pressing ESC key. When the last item is on overlay stack we are triggering the close method on esc key event.
  • Updated dependencies []:

    • @spectrum-web-components/icon@1.3.0
    • @spectrum-web-components/icons-ui@1.3.0
    • @spectrum-web-components/base@1.3.0
    • @spectrum-web-components/shared@1.3.0

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

1.2.0 (2025-02-27)

Section titled

Features

Section titled Features
  • reactive-controllers: Migrate to Colorjs from Tinycolor (#4713) (9d740f0)

1.1.2 (2025-02-12)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

1.1.1 (2025-01-29)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

1.1.0 (2025-01-29)

Section titled

Bug Fixes

Section titled Bug Fixes
  • lock prerelease versions for Spectrum CSS (#5014) (8aa7734)

1.0.3 (2024-12-09)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

1.0.1 (2024-11-11)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

1.0.0 (2024-10-31)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.49.0 (2024-10-15)

Section titled

Features

Section titled Features
  • add static-color to replace static (#4808) (43cf086)

0.48.1 (2024-10-01)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.48.0 (2024-09-17)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.47.2 (2024-09-03)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.47.1 (2024-08-27)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.47.0 (2024-08-20)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.46.0 (2024-08-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.45.0 (2024-07-30)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.44.0 (2024-07-15)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.43.0 (2024-06-11)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.42.5 (2024-05-24)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.42.4 (2024-05-14)

Section titled

Bug Fixes

Section titled Bug Fixes
  • base: move lit imports to base (#4416) (b7cb07e)

0.42.3 (2024-05-01)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.42.2 (2024-04-03)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.42.1 (2024-04-02)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.42.0 (2024-03-19)

Section titled

Features

Section titled Features
  • asset: use core tokens (99e76f4)

0.41.2 (2024-03-05)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.41.1 (2024-02-22)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.41.0 (2024-02-13)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.40.5 (2024-02-05)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.40.4 (2024-01-29)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.40.3 (2024-01-11)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.40.2 (2023-12-18)

Section titled

Bug Fixes

Section titled Bug Fixes
  • checkbox: add missing readonly prop (#3859) (35b5649)

0.40.1 (2023-12-05)

Section titled

Performance Improvements

Section titled Performance Improvements
  • checkbox: refactor architecture for more rendering perf and DOM element count (7c2277f)

0.40.0 (2023-11-16)

Section titled

Features

Section titled Features
  • textfield: added name attribute to textfield (#3752) (593005a)

0.39.4 (2023-11-02)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.39.3 (2023-10-18)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.39.2 (2023-10-13)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.39.1 (2023-10-06)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.39.0 (2023-09-25)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.38.0 (2023-09-05)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.37.0 (2023-08-18)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.36.0 (2023-08-18)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.35.0 (2023-07-31)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.34.0 (2023-07-11)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.33.2 (2023-06-14)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.33.0 (2023-06-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.32.0 (2023-06-01)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.31.0 (2023-05-17)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.30.0 (2023-05-03)

Section titled 0.30.0 (2023-05-03)

Bug Fixes

Section titled Bug Fixes
  • #353 with a temporary override (e6b4e37)
  • add support for "readonly" attribute (4bce3b7)
  • add t-shirt sizing to Thumbnail and support for "xxs"/"xs" sizes (520a642)
  • checkbox: allow events to be cancelled on checkboxbase (aab568c)
  • checkbox: work around specificity changes when processing Spectrum CSS and cover with tests (d53a871)
  • complete deprecation of "quiet" attribute in checkbox and radio (29d8452)
  • correct @element jsDoc listing across library (c97a632)
  • ensure [disabled] styling (4c067eb)
  • ensure aria attributes based on state (6369ff3)
  • ensure aria attributes based on state (6ee43de)
  • ensure browser understandable extensions (f4e59f7)
  • focusable style (48ea3e7)
  • implement "emphasized" styles (750bbe7)
  • include "type" in package.json, generate custom-elements.json (1a8d716)
  • include default export in the "exports" fields (f32407d)
  • include the "types" entry in package.json files (b432f59)
  • move hover/focus hoisting into conditioning (15ac2f7)
  • prevent tabindex=-1 elements from placing focus on their host (1ac1293)
  • reduce cycles (66a4efb)
  • shared: prevent focusable returning focus to host (745f7b0)
  • stop merging selectors in a way that alters the cascade (369388f)
  • support a wider number of sizes (ee44978)
  • textfield: remove use of sp-icons-* (9a5c213)
  • update configuration for Spectrum CSS processing for specificity (5c2e21e)
  • update latest Spectrum CSS beta releases (d8d3acc)
  • update side effect listings (8160d3a)
  • update to latest spectrum-css packages (a5ca19f)
  • use icons without "size" values (3fc7c91)
  • use latest @spectrum-css/* versions (c35eb86)

Features

Section titled Features
  • action-button: add action button pattern (03ac00a)
  • action-group: add action-group pattern (d2de766)
  • add and use icons-ui package (d9c3ab2)
  • add t-shirt sizing with visual regressions to checkbox and picker elements (ce47ec8)
  • adopt DNA@7 base Spectrum CSS (e08cafd)
  • card: upgrade to Spectrum CSS v3.0.0 (84cf1a9)
  • checkbox: update spectrum css input (e894cb4)
  • conditionally load focus-visible polyfill (6b5e5cf)
  • field-group: add field-group pattern (f8d265c)
  • include all Dev Mode files in side effects (f70817c)
  • leverage "exports" field in package.json (321abd7)
  • shared pkg versions, devmode define warning, registry-conflicts docs (6e49565)
  • tabs: add sp-tab-panel element (b17d276)
  • use :focus-visable (via polyfill) instead of :focus (11c6fc7)
  • use @adobe/spectrum-css@2.15.1 (3918888)
  • use 3.0.0-beta.* release for styles (877b485)
  • use latest exports specification (a7ecf4b)

Performance Improvements

Section titled Performance Improvements
  • use "sideEffects" listing in package.json (7271614)
  • use imported TypeScript helpers instead of inlining them (cc2bd0a)

Reverts

Section titled Reverts
  • Revert "chore: release new versions" (a6d655d)

0.14.14 (2023-04-24)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.13 (2023-04-05)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.12 (2023-03-22)

Section titled

Bug Fixes

Section titled Bug Fixes
  • move hover/focus hoisting into conditioning (15ac2f7)

0.14.11 (2023-03-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.10 (2023-02-23)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.9 (2023-02-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.8 (2023-01-23)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.7 (2023-01-09)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.6 (2022-12-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.5 (2022-11-21)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.4 (2022-11-14)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.3 (2022-10-28)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.2 (2022-10-17)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.1 (2022-10-10)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.14.0 (2022-08-09)

Section titled

Features

Section titled Features
  • include all Dev Mode files in side effects (f70817c)

0.13.6 (2022-08-04)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.13.5 (2022-07-18)

Section titled

Bug Fixes

Section titled Bug Fixes
  • checkbox: allow events to be cancelled on checkboxbase (aab568c)

0.13.4 (2022-06-29)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.13.3 (2022-06-07)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.13.2 (2022-05-27)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.13.1 (2022-05-12)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.13.0 (2022-04-21)

Section titled

Features

Section titled Features
  • conditionally load focus-visible polyfill (6b5e5cf)

0.12.7 (2022-03-30)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.12.6 (2022-03-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.12.5 (2022-03-04)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.12.4 (2022-02-22)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.12.3 (2022-01-26)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.12.2 (2022-01-07)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.12.1 (2021-12-13)

Section titled

Bug Fixes

Section titled Bug Fixes
  • add t-shirt sizing to Thumbnail and support for "xxs"/"xs" sizes (520a642)

0.12.0 (2021-11-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.11.1 (2021-11-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.11.0 (2021-11-02)

Section titled

Features

Section titled Features
  • adopt DNA@7 base Spectrum CSS (e08cafd)

0.10.9 (2021-10-12)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.8 (2021-09-20)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.7 (2021-09-13)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.6 (2021-08-24)

Section titled

Bug Fixes

Section titled Bug Fixes
  • correct @element jsDoc listing across library (c97a632)

0.10.5 (2021-08-03)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.4 (2021-07-22)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.3 (2021-07-01)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.2 (2021-06-16)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.1 (2021-06-07)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.10.0 (2021-05-24)

Section titled

Bug Fixes

Section titled Bug Fixes
  • prevent tabindex=-1 elements from placing focus on their host (1ac1293)

Features

Section titled Features
  • tabs: add sp-tab-panel element (b17d276)

0.9.6 (2021-05-12)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.9.5 (2021-04-09)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.9.4 (2021-03-29)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.9.3 (2021-03-22)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.9.2 (2021-03-22)

Section titled

Bug Fixes

Section titled Bug Fixes
  • add support for "readonly" attribute (4bce3b7)
  • reduce cycles (66a4efb)

0.9.1 (2021-03-05)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.9.0 (2021-03-04)

Section titled

Bug Fixes

Section titled Bug Fixes
  • support a wider number of sizes (ee44978)

Features

Section titled Features
  • use latest exports specification (a7ecf4b)

0.8.0 (2021-02-11)

Section titled

Bug Fixes

Section titled Bug Fixes
  • update to latest spectrum-css packages (a5ca19f)

Features

Section titled Features
  • add t-shirt sizing with visual regressions to checkbox and picker elements (ce47ec8)

0.7.2 (2021-02-02)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.7.1 (2021-01-28)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.7.0 (2021-01-21)

Section titled

Bug Fixes

Section titled Bug Fixes
  • complete deprecation of "quiet" attribute in checkbox and radio (29d8452)
  • ensure [disabled] styling (4c067eb)
  • implement "emphasized" styles (750bbe7)
  • include the "types" entry in package.json files (b432f59)
  • stop merging selectors in a way that alters the cascade (369388f)
  • update configuration for Spectrum CSS processing for specificity (5c2e21e)
  • update latest Spectrum CSS beta releases (d8d3acc)
  • use icons without "size" values (3fc7c91)
  • use latest @spectrum-css/* versions (c35eb86)

Features

Section titled Features
  • action-button: add action button pattern (03ac00a)
  • checkbox: update spectrum css input (e894cb4)
  • field-group: add field-group pattern (f8d265c)

0.6.0 (2021-01-13)

Section titled

Bug Fixes

Section titled Bug Fixes
  • implement "emphasized" styles (750bbe7)
  • include the "types" entry in package.json files (b432f59)
  • stop merging selectors in a way that alters the cascade (369388f)
  • update latest Spectrum CSS beta releases (d8d3acc)
  • use icons without "size" values (3fc7c91)
  • use latest @spectrum-css/* versions (c35eb86)

Features

Section titled Features
  • action-button: add action button pattern (03ac00a)
  • checkbox: update spectrum css input (e894cb4)
  • field-group: add field-group pattern (f8d265c)

0.5.4 (2020-10-12)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.5.3 (2020-10-12)

Section titled

Bug Fixes

Section titled Bug Fixes
  • checkbox: work around specificity changes when processing Spectrum CSS and cover with tests (d53a871)
  • include default export in the "exports" fields (f32407d)

0.5.2 (2020-09-25)

Section titled

Bug Fixes

Section titled Bug Fixes
  • update side effect listings (8160d3a)

0.5.1 (2020-09-14)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.5.0 (2020-08-31)

Section titled

Features

Section titled Features
  • action-group: add action-group pattern (d2de766)
  • card: upgrade to Spectrum CSS v3.0.0 (84cf1a9)
  • use 3.0.0-beta.* release for styles (877b485)

0.4.4 (2020-08-19)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.4.3 (2020-07-27)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.4.2 (2020-07-24)

Section titled

Bug Fixes

Section titled Bug Fixes
  • ensure browser understandable extensions (f4e59f7)

0.4.1 (2020-07-22)

Section titled

Bug Fixes

Section titled Bug Fixes
  • shared: prevent focusable returning focus to host (745f7b0)

0.4.0 (2020-07-17)

Section titled

Features

Section titled Features
  • leverage "exports" field in package.json (321abd7)

0.3.2 (2020-06-08)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.3.1 (2020-05-08)

Section titled

Bug Fixes

Section titled Bug Fixes
  • ensure aria attributes based on state (6369ff3)
  • ensure aria attributes based on state (6ee43de)

0.3.0 (2020-04-16)

Section titled

Bug Fixes

Section titled Bug Fixes
  • textfield: remove use of sp-icons-* (9a5c213)

Features

Section titled Features
  • add and use icons-ui package (d9c3ab2)

Performance Improvements

Section titled Performance Improvements
  • use "sideEffects" listing in package.json (7271614)

0.2.12 (2020-04-10)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.11 (2020-04-07)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.10 (2020-03-11)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.9 (2020-02-05)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.8 (2020-02-01)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.7 (2020-01-30)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.6 (2020-01-06)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.5 (2019-12-12)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.4 (2019-12-09)

Section titled

Bug Fixes

Section titled Bug Fixes
  • #353 with a temporary override (e6b4e37)

0.2.3 (2019-12-03)

Section titled

Bug Fixes

Section titled Bug Fixes
  • focusable style (48ea3e7)

0.2.2 (2019-12-02)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.2.1 (2019-11-27)

Section titled

Bug Fixes

Section titled Bug Fixes
  • include "type" in package.json, generate custom-elements.json (1a8d716)

0.2.0 (2019-11-19)

Section titled

Features

Section titled Features
  • use :focus-visable (via polyfill) instead of :focus (11c6fc7)
  • use @adobe/spectrum-css@2.15.1 (3918888)

0.1.5 (2019-11-01)

Section titled

Note: Version bump only for package @spectrum-web-components/checkbox

0.1.4 (2019-10-14)

Section titled

Performance Improvements

Section titled Performance Improvements
  • use imported TypeScript helpers instead of inlining them (cc2bd0a)

0.1.3 (2019-10-03)

Section titled 0.1.3 (2019-10-03)

Note: Version bump only for package @spectrum-web-components/checkbox