bundle

Overview Changelog

Overview

Section titled Overview

@spectrum-web-components/bundle is a master dependency that allows a project to import any and all of the Spectrum Web Components. While it is a great approach to prototyping, the fact that it versions all of the Spectrum Web Components packages collectively means that depending on it can leave you with a lot of package updates to manage at any one version change. For a more predictable upgrade process we suggest that you depend upon individual packages directly, but hope you find this bundle productive when initially trying to get into the act of developing with Spectrum Web Components.

Usage

Section titled Usage

See it on NPM! How big is this package in your project?

yarn add @spectrum-web-components/bundle

Import the side effectful registrations of the bundled components:

import '@spectrum-web-components/bundle/elements.js';

When looking to leverage their base classes as a type and/or for extension purposes, do so via something like the following for the ActionButton base class:

import { ActionButton } from '@spectrum-web-components/bundle';

Anatomy

Section titled Anatomy

The bundle consists of several key parts:

  • All Spectrum Web Component element registrations
  • Base classes for all components available for type checking and extension
  • Namespaced icon exports for UI and workflow icons

Options

Section titled Options

Component Registration

Section titled Component Registration

Import all component registrations at once for rapid prototyping:

import '@spectrum-web-components/bundle/elements.js';

This registers all available Spectrum Web Components for use in your application.

Type Imports

Section titled Type Imports

Import individual component classes for type checking and extension purposes:

import { ActionButton } from '@spectrum-web-components/bundle';
import { Button } from '@spectrum-web-components/bundle';
import { Tooltip } from '@spectrum-web-components/bundle';

Behaviors

Section titled Behaviors

Icon Handling

Section titled Icon Handling

While this bundle directly re-exports the majority of functionality as they would be exported from their own packages, icon packages that export template literals are handled differently. Due to the large number of exports that they feature, each of these packages is namespaced when included in the bundle.

UI Icons
Section titled UI Icons

@spectrum-web-components/icons-ui is renamed to UIIcons when leveraging the bundle. This means that you can use UI icons in your code by importing them from @spectrum-web-components/bundle/icons.js:

import { UIIcons } from '@spectrum-web-components/bundle/icons.js';

console.log(UIIcons.AsteriskIcon());

/***
TemplateResult {strings: Array[1], values: Array[0], type: "html", processor: DefaultTemplateProcessor, constructor: Object}
***/
Workflow Icons
Section titled Workflow Icons

@spectrum-web-components/icons-workflow is namespaced to IconsWorkflow when leveraging the bundle. This means that you can use workflow icons in your code by importing them from @spectrum-web-components/bundle/icons.js:

import { IconsWorkflow } from '@spectrum-web-components/bundle/icons.js';

console.log(IconsWorkflow.CircleIcon());

/***
TemplateResult {strings: Array[1], values: Array[0], type: "html", processor: DefaultTemplateProcessor, constructor: Object}
***/

Version Management

Section titled Version Management

The bundle versions all Spectrum Web Components packages collectively. This means:

  • A single version bump updates all components simultaneously
  • You may receive updates for components you're not actively using
  • For production applications, consider depending on individual packages for more granular control

Accessibility

Section titled Accessibility

All components included in the bundle follow WCAG accessibility guidelines. Each component maintains its own accessibility features as documented in their individual package documentation. Refer to the specific component documentation pages for detailed accessibility information.

Changelog

Patch Changes

Section titled Patch Changes
  • Updated dependencies [7d23140, 7d23140, 4880da4, bdf54c1, dbba861, 72d807c, 14ebeb9, 7d23140, 7d23140, 7d23140, 72d807c, 72d807c]:
    • @spectrum-web-components/button@1.9.0
    • @spectrum-web-components/combobox@1.9.0
    • @spectrum-web-components/menu@1.9.0
    • @spectrum-web-components/icons-workflow@1.9.0
    • @spectrum-web-components/picker@1.9.0
    • @spectrum-web-components/textfield@1.9.0
    • @spectrum-web-components/progress-circle@1.9.0
    • @spectrum-web-components/reactive-controllers@1.9.0
    • @spectrum-web-components/help-text@1.9.0
    • @spectrum-web-components/field-label@1.9.0
    • @spectrum-web-components/action-bar@1.9.0
    • @spectrum-web-components/action-button@1.9.0
    • @spectrum-web-components/alert-banner@1.9.0
    • @spectrum-web-components/button-group@1.9.0
    • @spectrum-web-components/coachmark@1.9.0
    • @spectrum-web-components/dialog@1.9.0
    • @spectrum-web-components/infield-button@1.9.0
    • @spectrum-web-components/picker-button@1.9.0
    • @spectrum-web-components/search@1.9.0
    • @spectrum-web-components/tags@1.9.0
    • @spectrum-web-components/toast@1.9.0
    • @spectrum-web-components/breadcrumbs@1.9.0
    • @spectrum-web-components/action-group@1.9.0
    • @spectrum-web-components/action-menu@1.9.0
    • @spectrum-web-components/card@1.9.0
    • @spectrum-web-components/contextual-help@1.9.0
    • @spectrum-web-components/color-field@1.9.0
    • @spectrum-web-components/number-field@1.9.0
    • @spectrum-web-components/accordion@1.9.0
    • @spectrum-web-components/color-area@1.9.0
    • @spectrum-web-components/color-slider@1.9.0
    • @spectrum-web-components/color-wheel@1.9.0
    • @spectrum-web-components/icon@1.9.0
    • @spectrum-web-components/meter@1.9.0
    • @spectrum-web-components/overlay@1.9.0
    • @spectrum-web-components/progress-bar@1.9.0
    • @spectrum-web-components/radio@1.9.0
    • @spectrum-web-components/sidenav@1.9.0
    • @spectrum-web-components/slider@1.9.0
    • @spectrum-web-components/swatch@1.9.0
    • @spectrum-web-components/tabs@1.9.0
    • @spectrum-web-components/tooltip@1.9.0
    • @spectrum-web-components/tray@1.9.0
    • @spectrum-web-components/grid@1.9.0
    • @spectrum-web-components/field-group@1.9.0
    • @spectrum-web-components/checkbox@1.9.0
    • @spectrum-web-components/icons-ui@1.9.0
    • @spectrum-web-components/table@1.9.0
    • @spectrum-web-components/popover@1.9.0
    • @spectrum-web-components/truncated@1.9.0
    • @spectrum-web-components/top-nav@1.9.0
    • @spectrum-web-components/switch@1.9.0
    • @spectrum-web-components/asset@1.9.0
    • @spectrum-web-components/avatar@1.9.0
    • @spectrum-web-components/badge@1.9.0
    • @spectrum-web-components/clear-button@1.9.0
    • @spectrum-web-components/close-button@1.9.0
    • @spectrum-web-components/color-handle@1.9.0
    • @spectrum-web-components/color-loupe@1.9.0
    • @spectrum-web-components/divider@1.9.0
    • @spectrum-web-components/dropzone@1.9.0
    • @spectrum-web-components/icons@1.9.0
    • @spectrum-web-components/iconset@1.9.0
    • @spectrum-web-components/illustrated-message@1.9.0
    • @spectrum-web-components/link@1.9.0
    • @spectrum-web-components/modal@1.9.0
    • @spectrum-web-components/split-view@1.9.0
    • @spectrum-web-components/status-light@1.9.0
    • @spectrum-web-components/thumbnail@1.9.0
    • @spectrum-web-components/underlay@1.9.0
    • @spectrum-web-components/base@1.9.0
    • @spectrum-web-components/shared@1.9.0
    • @spectrum-web-components/styles@1.9.0
    • @spectrum-web-components/theme@1.9.0

1.8.0

Section titled 1.8.0

Patch Changes

Section titled Patch Changes
  • Updated dependencies [a292dc7, cc6e91e, 77bdef6, c3d5558, 6c2acaf, 14486d6, f27ab09, ee1bae6, dcd2cd3, 15be17d, f8da034, 99ab45e, b0570bc, aa411d0, d5f2909, 14486d6, eae4332, 826a2d5]:
    • @spectrum-web-components/progress-bar@1.8.0
    • @spectrum-web-components/combobox@1.8.0
    • @spectrum-web-components/styles@1.8.0
    • @spectrum-web-components/color-wheel@1.8.0
    • @spectrum-web-components/picker@1.8.0
    • @spectrum-web-components/overlay@1.8.0
    • @spectrum-web-components/menu@1.8.0
    • @spectrum-web-components/switch@1.8.0
    • @spectrum-web-components/clear-button@1.8.0
    • @spectrum-web-components/button@1.8.0
    • @spectrum-web-components/card@1.8.0
    • @spectrum-web-components/contextual-help@1.8.0
    • @spectrum-web-components/slider@1.8.0
    • @spectrum-web-components/link@1.8.0
    • @spectrum-web-components/grid@1.8.0
    • @spectrum-web-components/divider@1.8.0
    • @spectrum-web-components/illustrated-message@1.8.0
    • @spectrum-web-components/theme@1.8.0
    • @spectrum-web-components/truncated@1.8.0
    • @spectrum-web-components/action-menu@1.8.0
    • @spectrum-web-components/popover@1.8.0
    • @spectrum-web-components/tooltip@1.8.0
    • @spectrum-web-components/breadcrumbs@1.8.0
    • @spectrum-web-components/action-bar@1.8.0
    • @spectrum-web-components/action-button@1.8.0
    • @spectrum-web-components/alert-banner@1.8.0
    • @spectrum-web-components/button-group@1.8.0
    • @spectrum-web-components/coachmark@1.8.0
    • @spectrum-web-components/dialog@1.8.0
    • @spectrum-web-components/infield-button@1.8.0
    • @spectrum-web-components/picker-button@1.8.0
    • @spectrum-web-components/search@1.8.0
    • @spectrum-web-components/tags@1.8.0
    • @spectrum-web-components/toast@1.8.0
    • @spectrum-web-components/action-group@1.8.0
    • @spectrum-web-components/tabs@1.8.0
    • @spectrum-web-components/number-field@1.8.0
    • @spectrum-web-components/top-nav@1.8.0
    • @spectrum-web-components/accordion@1.8.0
    • @spectrum-web-components/asset@1.8.0
    • @spectrum-web-components/avatar@1.8.0
    • @spectrum-web-components/badge@1.8.0
    • @spectrum-web-components/checkbox@1.8.0
    • @spectrum-web-components/close-button@1.8.0
    • @spectrum-web-components/color-area@1.8.0
    • @spectrum-web-components/color-field@1.8.0
    • @spectrum-web-components/color-handle@1.8.0
    • @spectrum-web-components/color-loupe@1.8.0
    • @spectrum-web-components/color-slider@1.8.0
    • @spectrum-web-components/dropzone@1.8.0
    • @spectrum-web-components/field-group@1.8.0
    • @spectrum-web-components/field-label@1.8.0
    • @spectrum-web-components/help-text@1.8.0
    • @spectrum-web-components/icon@1.8.0
    • @spectrum-web-components/icons@1.8.0
    • @spectrum-web-components/icons-ui@1.8.0
    • @spectrum-web-components/icons-workflow@1.8.0
    • @spectrum-web-components/iconset@1.8.0
    • @spectrum-web-components/meter@1.8.0
    • @spectrum-web-components/modal@1.8.0
    • @spectrum-web-components/progress-circle@1.8.0
    • @spectrum-web-components/radio@1.8.0
    • @spectrum-web-components/sidenav@1.8.0
    • @spectrum-web-components/split-view@1.8.0
    • @spectrum-web-components/status-light@1.8.0
    • @spectrum-web-components/swatch@1.8.0
    • @spectrum-web-components/table@1.8.0
    • @spectrum-web-components/textfield@1.8.0
    • @spectrum-web-components/thumbnail@1.8.0
    • @spectrum-web-components/tray@1.8.0
    • @spectrum-web-components/underlay@1.8.0
    • @spectrum-web-components/base@1.8.0
    • @spectrum-web-components/reactive-controllers@1.8.0
    • @spectrum-web-components/shared@1.8.0

1.7.0

Section titled 1.7.0

Patch Changes

Section titled Patch Changes
  • Updated dependencies [1126cf2, ae9dcf8, 3aeafdd, a646ae8, 56f2ff4, c1669d2, 8da375b, 94dd388, cde976d]:
    • @spectrum-web-components/styles@1.7.0
    • @spectrum-web-components/card@1.7.0
    • @spectrum-web-components/menu@1.7.0
    • @spectrum-web-components/overlay@1.7.0
    • @spectrum-web-components/action-button@1.7.0
    • @spectrum-web-components/tabs@1.7.0
    • @spectrum-web-components/split-view@1.7.0
    • @spectrum-web-components/textfield@1.7.0
    • @spectrum-web-components/sidenav@1.7.0
    • @spectrum-web-components/tooltip@1.7.0
    • @spectrum-web-components/illustrated-message@1.7.0
    • @spectrum-web-components/theme@1.7.0
    • @spectrum-web-components/truncated@1.7.0
    • @spectrum-web-components/breadcrumbs@1.7.0
    • @spectrum-web-components/combobox@1.7.0
    • @spectrum-web-components/picker@1.7.0
    • @spectrum-web-components/contextual-help@1.7.0
    • @spectrum-web-components/popover@1.7.0
    • @spectrum-web-components/action-group@1.7.0
    • @spectrum-web-components/action-menu@1.7.0
    • @spectrum-web-components/top-nav@1.7.0
    • @spectrum-web-components/color-field@1.7.0
    • @spectrum-web-components/number-field@1.7.0
    • @spectrum-web-components/search@1.7.0
    • @spectrum-web-components/slider@1.7.0
    • @spectrum-web-components/action-bar@1.7.0
    • @spectrum-web-components/accordion@1.7.0
    • @spectrum-web-components/alert-banner@1.7.0
    • @spectrum-web-components/asset@1.7.0
    • @spectrum-web-components/avatar@1.7.0
    • @spectrum-web-components/badge@1.7.0
    • @spectrum-web-components/button@1.7.0
    • @spectrum-web-components/button-group@1.7.0
    • @spectrum-web-components/checkbox@1.7.0
    • @spectrum-web-components/clear-button@1.7.0
    • @spectrum-web-components/close-button@1.7.0
    • @spectrum-web-components/coachmark@1.7.0
    • @spectrum-web-components/color-area@1.7.0
    • @spectrum-web-components/color-handle@1.7.0
    • @spectrum-web-components/color-loupe@1.7.0
    • @spectrum-web-components/color-slider@1.7.0
    • @spectrum-web-components/color-wheel@1.7.0
    • @spectrum-web-components/dialog@1.7.0
    • @spectrum-web-components/divider@1.7.0
    • @spectrum-web-components/dropzone@1.7.0
    • @spectrum-web-components/field-group@1.7.0
    • @spectrum-web-components/field-label@1.7.0
    • @spectrum-web-components/help-text@1.7.0
    • @spectrum-web-components/icon@1.7.0
    • @spectrum-web-components/icons@1.7.0
    • @spectrum-web-components/icons-ui@1.7.0
    • @spectrum-web-components/icons-workflow@1.7.0
    • @spectrum-web-components/iconset@1.7.0
    • @spectrum-web-components/infield-button@1.7.0
    • @spectrum-web-components/link@1.7.0
    • @spectrum-web-components/meter@1.7.0
    • @spectrum-web-components/modal@1.7.0
    • @spectrum-web-components/picker-button@1.7.0
    • @spectrum-web-components/progress-bar@1.7.0
    • @spectrum-web-components/progress-circle@1.7.0
    • @spectrum-web-components/radio@1.7.0
    • @spectrum-web-components/status-light@1.7.0
    • @spectrum-web-components/swatch@1.7.0
    • @spectrum-web-components/switch@1.7.0
    • @spectrum-web-components/table@1.7.0
    • @spectrum-web-components/tags@1.7.0
    • @spectrum-web-components/thumbnail@1.7.0
    • @spectrum-web-components/toast@1.7.0
    • @spectrum-web-components/tray@1.7.0
    • @spectrum-web-components/underlay@1.7.0
    • @spectrum-web-components/base@1.7.0
    • @spectrum-web-components/grid@1.7.0
    • @spectrum-web-components/reactive-controllers@1.7.0
    • @spectrum-web-components/shared@1.7.0

1.6.0

Section titled 1.6.0

Patch Changes

Section titled Patch Changes
  • Updated dependencies [02af616, 03a4439, f6cebbd, 3c3bc2b, 00eb0a8, 74386e8, 700489f, 9e15a66, a9727d2, 53f3769]:
    • @spectrum-web-components/slider@1.6.0
    • @spectrum-web-components/popover@1.6.0
    • @spectrum-web-components/icons-workflow@1.6.0
    • @spectrum-web-components/picker@1.6.0
    • @spectrum-web-components/button@1.6.0
    • @spectrum-web-components/number-field@1.6.0
    • @spectrum-web-components/tooltip@1.6.0
    • @spectrum-web-components/infield-button@1.6.0
    • @spectrum-web-components/textfield@1.6.0
    • @spectrum-web-components/search@1.6.0
    • @spectrum-web-components/styles@1.6.0
    • @spectrum-web-components/close-button@1.6.0
    • @spectrum-web-components/dropzone@1.6.0
    • @spectrum-web-components/illustrated-message@1.6.0
    • @spectrum-web-components/menu@1.6.0
    • @spectrum-web-components/status-light@1.6.0
    • @spectrum-web-components/switch@1.6.0
    • @spectrum-web-components/table@1.6.0
    • @spectrum-web-components/tabs@1.6.0
    • @spectrum-web-components/toast@1.6.0
    • @spectrum-web-components/overlay@1.6.0
    • @spectrum-web-components/action-bar@1.6.0
    • @spectrum-web-components/combobox@1.6.0
    • @spectrum-web-components/contextual-help@1.6.0
    • @spectrum-web-components/action-group@1.6.0
    • @spectrum-web-components/action-menu@1.6.0
    • @spectrum-web-components/alert-banner@1.6.0
    • @spectrum-web-components/breadcrumbs@1.6.0
    • @spectrum-web-components/card@1.6.0
    • @spectrum-web-components/dialog@1.6.0
    • @spectrum-web-components/help-text@1.6.0
    • @spectrum-web-components/action-button@1.6.0
    • @spectrum-web-components/button-group@1.6.0
    • @spectrum-web-components/coachmark@1.6.0
    • @spectrum-web-components/picker-button@1.6.0
    • @spectrum-web-components/tags@1.6.0
    • @spectrum-web-components/truncated@1.6.0
    • @spectrum-web-components/color-field@1.6.0
    • @spectrum-web-components/theme@1.6.0
    • @spectrum-web-components/top-nav@1.6.0
    • @spectrum-web-components/field-group@1.6.0
    • @spectrum-web-components/radio@1.6.0
    • @spectrum-web-components/accordion@1.6.0
    • @spectrum-web-components/asset@1.6.0
    • @spectrum-web-components/avatar@1.6.0
    • @spectrum-web-components/badge@1.6.0
    • @spectrum-web-components/checkbox@1.6.0
    • @spectrum-web-components/clear-button@1.6.0
    • @spectrum-web-components/color-area@1.6.0
    • @spectrum-web-components/color-handle@1.6.0
    • @spectrum-web-components/color-loupe@1.6.0
    • @spectrum-web-components/color-slider@1.6.0
    • @spectrum-web-components/color-wheel@1.6.0
    • @spectrum-web-components/divider@1.6.0
    • @spectrum-web-components/field-label@1.6.0
    • @spectrum-web-components/icon@1.6.0
    • @spectrum-web-components/icons@1.6.0
    • @spectrum-web-components/icons-ui@1.6.0
    • @spectrum-web-components/iconset@1.6.0
    • @spectrum-web-components/link@1.6.0
    • @spectrum-web-components/meter@1.6.0
    • @spectrum-web-components/modal@1.6.0
    • @spectrum-web-components/progress-bar@1.6.0
    • @spectrum-web-components/progress-circle@1.6.0
    • @spectrum-web-components/sidenav@1.6.0
    • @spectrum-web-components/split-view@1.6.0
    • @spectrum-web-components/swatch@1.6.0
    • @spectrum-web-components/thumbnail@1.6.0
    • @spectrum-web-components/tray@1.6.0
    • @spectrum-web-components/underlay@1.6.0
    • @spectrum-web-components/base@1.6.0
    • @spectrum-web-components/grid@1.6.0
    • @spectrum-web-components/reactive-controllers@1.6.0
    • @spectrum-web-components/shared@1.6.0

1.5.0

Section titled 1.5.0

Patch Changes

Section titled Patch Changes
  • Updated dependencies [86bcd12, 165a904, a4de4c7, 4e06533, fa4be70, daeb11f, 8f8735c, e19e55f, 6c58f50, fa4be70, 4c2f908, a69accb, c7efe31, 5a3bc6d]:
    • @spectrum-web-components/menu@1.5.0
    • @spectrum-web-components/accordion@1.5.0
    • @spectrum-web-components/action-bar@1.5.0
    • @spectrum-web-components/alert-banner@1.5.0
    • @spectrum-web-components/asset@1.5.0
    • @spectrum-web-components/avatar@1.5.0
    • @spectrum-web-components/badge@1.5.0
    • @spectrum-web-components/button-group@1.5.0
    • @spectrum-web-components/card@1.5.0
    • @spectrum-web-components/color-area@1.5.0
    • @spectrum-web-components/color-handle@1.5.0
    • @spectrum-web-components/color-loupe@1.5.0
    • @spectrum-web-components/color-slider@1.5.0
    • @spectrum-web-components/color-wheel@1.5.0
    • @spectrum-web-components/divider@1.5.0
    • @spectrum-web-components/field-label@1.5.0
    • @spectrum-web-components/help-text@1.5.0
    • @spectrum-web-components/illustrated-message@1.5.0
    • @spectrum-web-components/link@1.5.0
    • @spectrum-web-components/modal@1.5.0
    • @spectrum-web-components/sidenav@1.5.0
    • @spectrum-web-components/split-view@1.5.0
    • @spectrum-web-components/styles@1.5.0
    • @spectrum-web-components/tags@1.5.0
    • @spectrum-web-components/tray@1.5.0
    • @spectrum-web-components/underlay@1.5.0
    • @spectrum-web-components/checkbox@1.5.0
    • @spectrum-web-components/button@1.5.0
    • @spectrum-web-components/picker-button@1.5.0
    • @spectrum-web-components/breadcrumbs@1.5.0
    • @spectrum-web-components/overlay@1.5.0
    • @spectrum-web-components/color-field@1.5.0
    • @spectrum-web-components/action-button@1.5.0
    • @spectrum-web-components/combobox@1.5.0
    • @spectrum-web-components/tabs@1.5.0
    • @spectrum-web-components/number-field@1.5.0
    • @spectrum-web-components/picker@1.5.0
    • @spectrum-web-components/dialog@1.5.0
    • @spectrum-web-components/coachmark@1.5.0
    • @spectrum-web-components/meter@1.5.0
    • @spectrum-web-components/progress-bar@1.5.0
    • @spectrum-web-components/slider@1.5.0
    • @spectrum-web-components/field-group@1.5.0
    • @spectrum-web-components/radio@1.5.0
    • @spectrum-web-components/textfield@1.5.0
    • @spectrum-web-components/theme@1.5.0
    • @spectrum-web-components/truncated@1.5.0
    • @spectrum-web-components/switch@1.5.0
    • @spectrum-web-components/table@1.5.0
    • @spectrum-web-components/infield-button@1.5.0
    • @spectrum-web-components/search@1.5.0
    • @spectrum-web-components/toast@1.5.0
    • @spectrum-web-components/contextual-help@1.5.0
    • @spectrum-web-components/popover@1.5.0
    • @spectrum-web-components/tooltip@1.5.0
    • @spectrum-web-components/action-group@1.5.0
    • @spectrum-web-components/action-menu@1.5.0
    • @spectrum-web-components/top-nav@1.5.0
    • @spectrum-web-components/clear-button@1.5.0
    • @spectrum-web-components/close-button@1.5.0
    • @spectrum-web-components/dropzone@1.5.0
    • @spectrum-web-components/icon@1.5.0
    • @spectrum-web-components/icons@1.5.0
    • @spectrum-web-components/icons-ui@1.5.0
    • @spectrum-web-components/icons-workflow@1.5.0
    • @spectrum-web-components/iconset@1.5.0
    • @spectrum-web-components/progress-circle@1.5.0
    • @spectrum-web-components/status-light@1.5.0
    • @spectrum-web-components/swatch@1.5.0
    • @spectrum-web-components/thumbnail@1.5.0
    • @spectrum-web-components/base@1.5.0
    • @spectrum-web-components/grid@1.5.0
    • @spectrum-web-components/reactive-controllers@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 [2a0422e, 3cca7ea, 72dbe62, 46cd782, e247de9, 6618422, 1fc141c, 70f5f6f, 82212f4]:
    • @spectrum-web-components/picker@1.4.0
    • @spectrum-web-components/menu@1.4.0
    • @spectrum-web-components/contextual-help@1.4.0
    • @spectrum-web-components/styles@1.4.0
    • @spectrum-web-components/action-button@1.4.0
    • @spectrum-web-components/overlay@1.4.0
    • @spectrum-web-components/color-field@1.4.0
    • @spectrum-web-components/action-menu@1.4.0
    • @spectrum-web-components/breadcrumbs@1.4.0
    • @spectrum-web-components/combobox@1.4.0
    • @spectrum-web-components/card@1.4.0
    • @spectrum-web-components/illustrated-message@1.4.0
    • @spectrum-web-components/theme@1.4.0
    • @spectrum-web-components/truncated@1.4.0
    • @spectrum-web-components/action-group@1.4.0
    • @spectrum-web-components/popover@1.4.0
    • @spectrum-web-components/tooltip@1.4.0
    • @spectrum-web-components/slider@1.4.0
    • @spectrum-web-components/action-bar@1.4.0
    • @spectrum-web-components/accordion@1.4.0
    • @spectrum-web-components/alert-banner@1.4.0
    • @spectrum-web-components/asset@1.4.0
    • @spectrum-web-components/avatar@1.4.0
    • @spectrum-web-components/badge@1.4.0
    • @spectrum-web-components/button@1.4.0
    • @spectrum-web-components/button-group@1.4.0
    • @spectrum-web-components/checkbox@1.4.0
    • @spectrum-web-components/clear-button@1.4.0
    • @spectrum-web-components/close-button@1.4.0
    • @spectrum-web-components/coachmark@1.4.0
    • @spectrum-web-components/color-area@1.4.0
    • @spectrum-web-components/color-handle@1.4.0
    • @spectrum-web-components/color-loupe@1.4.0
    • @spectrum-web-components/color-slider@1.4.0
    • @spectrum-web-components/color-wheel@1.4.0
    • @spectrum-web-components/dialog@1.4.0
    • @spectrum-web-components/divider@1.4.0
    • @spectrum-web-components/dropzone@1.4.0
    • @spectrum-web-components/field-group@1.4.0
    • @spectrum-web-components/field-label@1.4.0
    • @spectrum-web-components/help-text@1.4.0
    • @spectrum-web-components/icon@1.4.0
    • @spectrum-web-components/icons@1.4.0
    • @spectrum-web-components/icons-ui@1.4.0
    • @spectrum-web-components/icons-workflow@1.4.0
    • @spectrum-web-components/iconset@1.4.0
    • @spectrum-web-components/infield-button@1.4.0
    • @spectrum-web-components/link@1.4.0
    • @spectrum-web-components/meter@1.4.0
    • @spectrum-web-components/modal@1.4.0
    • @spectrum-web-components/number-field@1.4.0
    • @spectrum-web-components/picker-button@1.4.0
    • @spectrum-web-components/progress-bar@1.4.0
    • @spectrum-web-components/progress-circle@1.4.0
    • @spectrum-web-components/radio@1.4.0
    • @spectrum-web-components/search@1.4.0
    • @spectrum-web-components/sidenav@1.4.0
    • @spectrum-web-components/split-view@1.4.0
    • @spectrum-web-components/status-light@1.4.0
    • @spectrum-web-components/swatch@1.4.0
    • @spectrum-web-components/switch@1.4.0
    • @spectrum-web-components/table@1.4.0
    • @spectrum-web-components/tabs@1.4.0
    • @spectrum-web-components/tags@1.4.0
    • @spectrum-web-components/textfield@1.4.0
    • @spectrum-web-components/thumbnail@1.4.0
    • @spectrum-web-components/toast@1.4.0
    • @spectrum-web-components/top-nav@1.4.0
    • @spectrum-web-components/tray@1.4.0
    • @spectrum-web-components/underlay@1.4.0
    • @spectrum-web-components/base@1.4.0
    • @spectrum-web-components/grid@1.4.0
    • @spectrum-web-components/reactive-controllers@1.4.0
    • @spectrum-web-components/shared@1.4.0

1.3.0

Section titled 1.3.0

Patch Changes

Section titled Patch Changes
  • Updated dependencies [ea38ef0, 468314f]:
    • @spectrum-web-components/reactive-controllers@1.3.0
    • @spectrum-web-components/action-menu@1.3.0
    • @spectrum-web-components/picker@1.3.0
    • @spectrum-web-components/menu@1.3.0
    • @spectrum-web-components/checkbox@1.3.0
    • @spectrum-web-components/dialog@1.3.0
    • @spectrum-web-components/overlay@1.3.0
    • @spectrum-web-components/accordion@1.3.0
    • @spectrum-web-components/action-group@1.3.0
    • @spectrum-web-components/button@1.3.0
    • @spectrum-web-components/coachmark@1.3.0
    • @spectrum-web-components/color-area@1.3.0
    • @spectrum-web-components/color-slider@1.3.0
    • @spectrum-web-components/color-wheel@1.3.0
    • @spectrum-web-components/field-label@1.3.0
    • @spectrum-web-components/meter@1.3.0
    • @spectrum-web-components/number-field@1.3.0
    • @spectrum-web-components/progress-bar@1.3.0
    • @spectrum-web-components/radio@1.3.0
    • @spectrum-web-components/sidenav@1.3.0
    • @spectrum-web-components/slider@1.3.0
    • @spectrum-web-components/swatch@1.3.0
    • @spectrum-web-components/tabs@1.3.0
    • @spectrum-web-components/tags@1.3.0
    • @spectrum-web-components/tooltip@1.3.0
    • @spectrum-web-components/tray@1.3.0
    • @spectrum-web-components/grid@1.3.0
    • @spectrum-web-components/breadcrumbs@1.3.0
    • @spectrum-web-components/combobox@1.3.0
    • @spectrum-web-components/card@1.3.0
    • @spectrum-web-components/switch@1.3.0
    • @spectrum-web-components/table@1.3.0
    • @spectrum-web-components/contextual-help@1.3.0
    • @spectrum-web-components/popover@1.3.0
    • @spectrum-web-components/truncated@1.3.0
    • @spectrum-web-components/action-bar@1.3.0
    • @spectrum-web-components/action-button@1.3.0
    • @spectrum-web-components/alert-banner@1.3.0
    • @spectrum-web-components/button-group@1.3.0
    • @spectrum-web-components/infield-button@1.3.0
    • @spectrum-web-components/picker-button@1.3.0
    • @spectrum-web-components/search@1.3.0
    • @spectrum-web-components/toast@1.3.0
    • @spectrum-web-components/top-nav@1.3.0
    • @spectrum-web-components/asset@1.3.0
    • @spectrum-web-components/avatar@1.3.0
    • @spectrum-web-components/badge@1.3.0
    • @spectrum-web-components/clear-button@1.3.0
    • @spectrum-web-components/close-button@1.3.0
    • @spectrum-web-components/color-field@1.3.0
    • @spectrum-web-components/color-handle@1.3.0
    • @spectrum-web-components/color-loupe@1.3.0
    • @spectrum-web-components/divider@1.3.0
    • @spectrum-web-components/dropzone@1.3.0
    • @spectrum-web-components/field-group@1.3.0
    • @spectrum-web-components/help-text@1.3.0
    • @spectrum-web-components/icon@1.3.0
    • @spectrum-web-components/icons@1.3.0
    • @spectrum-web-components/icons-ui@1.3.0
    • @spectrum-web-components/icons-workflow@1.3.0
    • @spectrum-web-components/iconset@1.3.0
    • @spectrum-web-components/illustrated-message@1.3.0
    • @spectrum-web-components/link@1.3.0
    • @spectrum-web-components/modal@1.3.0
    • @spectrum-web-components/progress-circle@1.3.0
    • @spectrum-web-components/split-view@1.3.0
    • @spectrum-web-components/status-light@1.3.0
    • @spectrum-web-components/textfield@1.3.0
    • @spectrum-web-components/thumbnail@1.3.0
    • @spectrum-web-components/underlay@1.3.0
    • @spectrum-web-components/base@1.3.0
    • @spectrum-web-components/shared@1.3.0
    • @spectrum-web-components/styles@1.3.0
    • @spectrum-web-components/theme@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

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

1.1.2 (2025-02-12)

Section titled

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

1.1.1 (2025-01-29)

Section titled

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

1.1.0 (2025-01-29)

Section titled

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

1.0.3 (2024-12-09)

Section titled

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

1.0.1 (2024-11-11)

Section titled

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

1.0.0 (2024-10-31)

Section titled

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

0.49.0 (2024-10-15)

Section titled

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

0.48.1 (2024-10-01)

Section titled

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

0.48.0 (2024-09-17)

Section titled

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

0.47.2 (2024-09-03)

Section titled

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

0.47.1 (2024-08-27)

Section titled

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

0.47.0 (2024-08-20)

Section titled

Features

Section titled Features
  • breadcrumbs: add Breadcrumbs component (#4578) (acd4b5e)

0.46.0 (2024-08-08)

Section titled

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

0.45.0 (2024-07-30)

Section titled

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

0.44.0 (2024-07-15)

Section titled

Features

Section titled Features
  • alert-banner: add alert banner component (#4266) (10d456e)
  • contextual-help: add contextual help pattern (#4285) (a259aa3)

0.43.0 (2024-06-11)

Section titled

Features

Section titled Features
  • contextual-help: add contextual help pattern (#4285) (a259aa3)

0.42.5 (2024-05-24)

Section titled

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

0.42.4 (2024-05-14)

Section titled

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

0.42.3 (2024-05-01)

Section titled

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

0.42.2 (2024-04-03)

Section titled

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

0.42.1 (2024-04-02)

Section titled

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

0.42.0 (2024-03-19)

Section titled

Bug Fixes

Section titled Bug Fixes
  • color-field: added missing dependencies (#4141) (b3bb23a)
  • truncated: add truncated package (#4163) (4ba0480)

Reverts

Section titled Reverts
  • Revert "Truncated element (#4125)" (#4160) (da88bbe), closes #4125 #4160

0.41.2 (2024-03-05)

Section titled

Bug Fixes

Section titled Bug Fixes
  • color-field: add color-field package (#3870) (5081634)

0.41.1 (2024-02-22)

Section titled

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

0.41.0 (2024-02-13)

Section titled

Features

Section titled Features
  • coachmark: rename "sp-coachmark" to "sp-coachmark-indicator", add "sp-coachmark" (#3639) (a94389c)

0.40.5 (2024-02-05)

Section titled

Bug Fixes

Section titled Bug Fixes
  • combobox: add combobox pattern (#3894) (47d7d71), closes #3887

0.40.4 (2024-01-29)

Section titled

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

0.40.3 (2024-01-11)

Section titled

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

0.40.2 (2023-12-18)

Section titled

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

0.40.1 (2023-12-05)

Section titled

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

0.40.0 (2023-11-16)

Section titled

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

0.39.4 (2023-11-02)

Section titled

Bug Fixes

Section titled Bug Fixes
  • infield-button: add infield-button package (057b885)

0.39.3 (2023-10-18)

Section titled

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

0.39.2 (2023-10-13)

Section titled

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

0.39.1 (2023-10-06)

Section titled

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

0.39.0 (2023-09-25)

Section titled

Bug Fixes

Section titled Bug Fixes
  • alert-dialog: add Alert Dialog package (#3501) (1062847)

0.38.0 (2023-09-05)

Section titled

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

0.37.0 (2023-08-18)

Section titled

Features

Section titled Features
  • overlay: ship Overlay API v2 (67b5d1b)

0.36.0 (2023-08-18)

Section titled

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

0.35.0 (2023-07-31)

Section titled

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

0.34.0 (2023-07-11)

Section titled

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

0.33.2 (2023-06-14)

Section titled

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

0.33.1 (2023-06-14)

Section titled

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

0.33.0 (2023-06-08)

Section titled

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

0.32.0 (2023-06-01)

Section titled

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

0.31.0 (2023-05-17)

Section titled

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

0.30.0 (2023-05-03)

Section titled 0.30.0 (2023-05-03)

Features

Section titled Features
  • tabs: update bundle setup and readme (0249b94)

0.29.5 (2023-04-24)

Section titled

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

0.29.4 (2023-04-05)

Section titled

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

0.29.3 (2023-03-22)

Section titled

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

0.29.2 (2023-03-08)

Section titled

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

0.29.1 (2023-02-23)

Section titled

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

0.29.0 (2023-02-21)

Section titled

Features

Section titled Features
  • tabs: update bundle setup and readme (0249b94)

0.28.9 (2023-02-13)

Section titled

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

0.28.8 (2023-02-08)

Section titled

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

0.28.7 (2023-01-23)

Section titled

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

0.28.6 (2023-01-09)

Section titled

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

0.28.5 (2022-12-08)

Section titled

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

0.28.4 (2022-11-21)

Section titled

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

0.28.3 (2022-11-14)

Section titled

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

0.28.2 (2022-10-28)

Section titled

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

0.28.1 (2022-10-17)

Section titled

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

0.28.0 (2022-10-10)

Section titled

Features

Section titled Features
  • add Picker Button pattern (31337b8)

0.27.3 (2022-09-15)

Section titled

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

0.27.2 (2022-09-14)

Section titled

Bug Fixes

Section titled Bug Fixes
  • add docs and address PR comments (568062a)

0.27.1 (2022-08-24)

Section titled

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

0.27.0 (2022-08-09)

Section titled

Features

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

0.26.3 (2022-08-04)

Section titled

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

0.26.2 (2022-07-20)

Section titled

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

0.26.1 (2022-07-18)

Section titled

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

0.26.0 (2022-06-29)

Section titled

Features

Section titled Features
  • add swatch pattern (0cdc04b)

0.25.1 (2022-06-07)

Section titled

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

0.25.0 (2022-05-27)

Section titled

Features

Section titled Features
  • add badge component (cabfdfe)

0.24.12 (2022-05-12)

Section titled

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

0.24.11 (2022-04-21)

Section titled

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

0.24.10 (2022-03-30)

Section titled

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

0.24.9 (2022-03-08)

Section titled

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

0.24.8 (2022-03-08)

Section titled

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

0.24.7 (2022-03-04)

Section titled

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

0.24.6 (2022-02-22)

Section titled

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

0.24.5 (2022-02-03)

Section titled

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

0.24.4 (2022-02-02)

Section titled

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

0.24.3 (2022-01-26)

Section titled

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

0.24.2 (2022-01-26)

Section titled

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

0.24.1 (2022-01-07)

Section titled

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

0.24.0 (2021-12-13)

Section titled

Features

Section titled Features
  • add Help Text pattern (fdbb812)

0.23.0 (2021-11-08)

Section titled

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

0.22.12 (2021-11-08)

Section titled

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

0.22.11 (2021-11-02)

Section titled

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

0.22.10 (2021-10-12)

Section titled

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

0.22.9 (2021-10-05)

Section titled

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

0.22.8 (2021-09-20)

Section titled

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

0.22.7 (2021-09-13)

Section titled

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

0.22.6 (2021-08-24)

Section titled

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

0.22.5 (2021-08-17)

Section titled

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

0.22.4 (2021-08-03)

Section titled

Bug Fixes

Section titled Bug Fixes
  • allow "updateComplete" to resolve to a boolean like the LitElement default (6127946)

0.22.3 (2021-07-22)

Section titled

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

0.22.2 (2021-07-01)

Section titled

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

0.22.1 (2021-06-16)

Section titled

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

0.22.0 (2021-06-11)

Section titled

Features

Section titled Features
  • multi-handle slider implementation (8d5a743), closes #1385

0.21.2 (2021-06-07)

Section titled

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

0.21.1 (2021-05-25)

Section titled

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

0.21.0 (2021-05-24)

Section titled

Bug Fixes

Section titled Bug Fixes
  • tray: add tray pattern (0915fa5)

Features

Section titled Features
  • number-field: add number field pattern (384ab34)
  • tabs: add sp-tab-panel element (b17d276)

0.20.2 (2021-05-12)

Section titled

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

0.20.1 (2021-04-15)

Section titled

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

0.20.0 (2021-04-09)

Section titled

Features

Section titled Features
  • split icons into their own export (98dac4c)

0.19.5 (2021-03-29)

Section titled

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

0.19.4 (2021-03-22)

Section titled

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

0.19.3 (2021-03-22)

Section titled

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

0.19.2 (2021-03-05)

Section titled

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

0.19.1 (2021-03-04)

Section titled

Bug Fixes

Section titled Bug Fixes
  • bundle: bundle does not export its own custom-elements.json (a362886)

0.19.0 (2021-03-04)

Section titled

Features

Section titled Features
  • thumbnail: add the thumbnail package (56935d5)
  • use latest exports specification (a7ecf4b)

0.18.0 (2021-02-19)

Section titled

Bug Fixes

Section titled Bug Fixes
  • correct dependency graph (69165eb)

Features

Section titled Features
  • setup SplitView component from rebase main (32f3272)

0.17.3 (2021-02-11)

Section titled

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

0.17.2 (2021-02-02)

Section titled

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

0.17.1 (2021-01-28)

Section titled

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

0.17.0 (2021-01-21)

Section titled

Bug Fixes

Section titled Bug Fixes
  • include the "types" entry in package.json files (b432f59)

Features

Section titled Features
  • action-button: add action button pattern (03ac00a)
  • field-group: add field-group pattern (f8d265c)
  • field-label: add field label pattern (2fa7c7e)
  • meter: add meter pattern (fa092ba)

0.16.0 (2021-01-13)

Section titled

Bug Fixes

Section titled Bug Fixes
  • include the "types" entry in package.json files (b432f59)

Features

Section titled Features
  • action-button: add action button pattern (03ac00a)
  • field-group: add field-group pattern (f8d265c)
  • field-label: add field label pattern (2fa7c7e)
  • meter: add meter pattern (fa092ba)

0.15.6 (2020-11-20)

Section titled

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

0.15.5 (2020-10-12)

Section titled

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

0.15.4 (2020-10-12)

Section titled

Bug Fixes

Section titled Bug Fixes
  • include default export in the "exports" fields (f32407d)

0.15.3 (2020-09-25)

Section titled

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

0.15.2 (2020-09-15)

Section titled

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

0.15.1 (2020-09-14)

Section titled

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

0.15.0 (2020-08-31)

Section titled

Features

Section titled Features
  • accordion: add accordion pattern (97529d8)
  • action-group: add action-group pattern (d2de766)
  • quick-actions: add quick-actions pattern (3664b51)
  • split-button: add split-button pattern (4833a59)

0.14.6 (2020-08-19)

Section titled

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

0.14.5 (2020-08-13)

Section titled

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

0.14.4 (2020-08-13)

Section titled

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

0.14.3 (2020-08-05)

Section titled

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

0.14.2 (2020-07-27)

Section titled

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

0.14.1 (2020-07-24)

Section titled

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

0.14.0 (2020-07-22)

Section titled

Features

Section titled Features
  • asset: add the asset pattern (a7c00bb)

0.13.0 (2020-07-17)

Section titled

Bug Fixes

Section titled Bug Fixes
  • include element is bundle side effects (ce320f8)

Features

Section titled Features
  • bar-loader: add bar-loader pattern (eff18e7)
  • leverage "exports" field in package.json (321abd7)

0.12.0 (2020-06-08)

Section titled

Features

Section titled Features
  • button-group: add ButtonGroup pattern (c4d85b5)

0.11.0 (2020-05-12)

Section titled

Features

Section titled Features
  • add dialog, dialog-wrapped, and underlay elements (3df9050)

0.10.1 (2020-05-08)

Section titled

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

0.10.0 (2020-05-08)

Section titled

Features

Section titled Features
  • tags: add tags pattern (ae91865)

0.9.1 (2020-04-21)

Section titled

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

0.9.0 (2020-04-16)

Section titled

Features

Section titled Features
  • rule: add Spectrum rule pattern and apply to docs (f4c52ae)

Performance Improvements

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

0.8.1 (2020-04-10)

Section titled

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

0.8.0 (2020-04-07)

Section titled

Features

Section titled Features
  • coachmark: add coachmark pattern (f53ae70)
  • icons-workflow: add workflow icons package (6b09287)

0.7.9 (2020-03-27)

Section titled

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

0.7.8 (2020-03-25)

Section titled

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

0.7.7 (2020-03-16)

Section titled

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

0.7.6 (2020-03-13)

Section titled

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

0.7.5 (2020-03-11)

Section titled

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

0.7.4 (2020-02-24)

Section titled

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

0.7.3 (2020-02-05)

Section titled

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

0.7.2 (2020-02-01)

Section titled

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

0.7.1 (2020-01-30)

Section titled

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

0.7.0 (2020-01-06)

Section titled

Bug Fixes

Section titled Bug Fixes
  • factor theme to use a single DOM node (7641228), closes #154

Features

Section titled Features
  • join overlay-root and overlay-trigger as overlay (dcde42c)

0.6.1 (2019-12-12)

Section titled

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

0.6.0 (2019-12-09)

Section titled

Features

Section titled Features
  • toast: add "sp-toast" pattern (d0a5f00)

0.5.3 (2019-12-03)

Section titled

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

0.5.2 (2019-12-02)

Section titled

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

0.5.1 (2019-11-27)

Section titled

Bug Fixes

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

0.5.0 (2019-11-19)

Section titled

Features

Section titled Features
  • circleloader: add circleloader component (ebab180)

0.4.2 (2019-11-19)

Section titled

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

0.4.1 (2019-11-01)

Section titled

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

0.4.0 (2019-10-23)

Section titled

Bug Fixes

Section titled Bug Fixes
  • status-light: review comments for status-light (80caa08)
  • status-light: update version in bundle pjson (a8eabdb)

Features

Section titled Features
  • status-light: add status-light component (e3a5b3d)

0.3.0 (2019-10-18)

Section titled

Features

Section titled Features
  • avatar: add avatar component (a6882b4)

0.2.2 (2019-10-16)

Section titled

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

0.2.1 (2019-10-16)

Section titled

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

0.2.0 (2019-10-14)

Section titled

Features

Section titled Features
  • bundle: add search (0e00123)
  • bundle: include sp-actionbar (af4b09f)

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/bundle