Skip to content

Latest commit

 

History

History
1501 lines (819 loc) · 55.3 KB

CHANGELOG.md

File metadata and controls

1501 lines (819 loc) · 55.3 KB

Change Log

14.0.1

Patch Changes

  • #3534 68e0057 Thanks @castastrophe! - Fixes a bug in the content of the dist/index-theme.css file.

    Expected index-theme.css to include the component selectors with component-level custom properties mapped to the --system prefixed ones in order to allow a component to support various contexts.

    Expected output example for the index-theme.css:

    .spectrum-ActionButton {
     --spectrum-actionbutton-background-color-default: var(--system-action-button-background-color-default);
     --spectrum-actionbutton-background-color-hover: var(--system-action-button-background-color-hover);
    
  • Updated dependencies [68e0057]:

14.0.0

Major Changes

  • #2786 6c19fcf Thanks @pfulton! - ## Breaking change

    This major update creates a bridge between the Spectrum 1 (S1) and Spectrum 2 (S2) designs, dubbed "Spectrum 2 Foundations". These do NOT reflect a fully migrated S2 component. This approach allows consumers to swap the appearance of their components between S1, Express, and S2 by leveraging a "system" layer that remaps the necessary component-level tokens to the appropriate token dataset.

    For these components to appear S2, you must load the assets with the @spectrum-css/tokens at v16 or higher.

    For S1 or Express, load assets with the @spectrum-css/tokens at v14.x or v15.x.

    If you are looking to implement a fully S2 design, please explore the next tag releases instead of using this foundations release. This release is used in Spectrum Web Components 1.x.

    Deprecations

    The metadata folder containing the mods.md and metadata.json assets has been removed from source. To find information about the components including what selectors, modifiers, and passthroughs are used, please see the dist/metadata.json asset shipped with every component containing CSS.

    The index-vars.css asset has been removed in this release as it was previously deprecated and is no longer maintained. Please use the index.css or index-base.css

    File usage

    If you are rendering components and need only the S2 Foundations styles, you can make use of the index.css asset which contains all the base styles plus the system mappings for S2 Foundations.

    If you are using this version to publish only an S1 or Express component, you can use the index-base.css plus the desired themes/(spectrum|express).css file.

    To render a component that can be easily swapped between the S2 Foundations, S1, or Express contexts, load index-base.css with the index-theme.css file and leverage the appropriate context classes (.spectrum--legacy for S1 and .spectrum--express for Express).

Patch Changes

13.6.1

Patch Changes

13.6.0

Minor Changes

  • #3359 c8194b0 Thanks @cdransf! - This resolves our remaining stylelint issues around undefined tokens, rule order, unused values and color syntax.

    • Updates invalid color syntax from rgba(N, N, N, N) to rgba(N N N / N).
    • In cases of duplicate properties, preserves the property that would be applied given current code structure.
    • Updates misnamed tokens to use valid tokens (table/index.css).
  • #3502 562396e Thanks @castastrophe! - Simplify how the --system properties are mapped. By updating the logic in the postcss-add-theming-layer, we are now shipping cleaner, more readable --system property names. These custom properties are documented as NOT a part of the component API so although these result in a change to the custom property names, it does not impact the properties that are in the API and so do not constitute a breaking change. Expect to see no change to how component theming works or any visual regressions as a result of this change.

Patch Changes

13.5.0

Minor Changes

Patch Changes

13.4.0

Minor Changes

  • #3197 1eac198 Thanks @cdransf! - Replaces all of occurrences of --spectrum-component-pill-edge-to-text-_ (intended to be used as padding) in the button component with the appropriate corner-radius-_ tokens.

13.3.0

Minor Changes

  • #3086 d49ea11 Thanks @aramos-adobe! - Adds the ability to disable text wrapping within the button component's label by applying the class .spectrum-Button--noWrap to .spectrum-Button. If the text overflows the maximum allowed width of the button, an ellipsis ... indicator will show. Please note that this option is not a part of the design specification and should be used carefully, with consideration of this overflow behavior and the readability of the button's content.

13.2.0

Minor Changes

  • #3078 06491f3 Thanks @cdransf! - Includes fixes and updates to the colors used in forced-colors / high contrast mode. In Windows high contrast, a different background was showing behind the label text, as a result of extra text readability backplates being rendered. forced-color-adjust: none is now applied to the child label element to fix this. The appropriate ButtonFace/ButtonText system colors are also now defined instead of relying on the default. The existing use of Highlight is now paired with HighlightText to ensure contrast by using a matching foreground/background pair.

13.1.3

Patch Changes

13.1.2

Patch Changes

13.1.1

Patch Changes

13.1.0

Minor Changes

Build optmizations to support minification

Output for all component CSS files is now being run through a lightweight optimizer (cssnano) which significantly reduces unnecessary whitespace. These changes reduce file size but should not have any impact on the rendering of the component. By removing unnecessary whitespace from var functions, we are making it easier to effectively minify our provided CSS assets.

Patch Changes

  • Updated peerDependencies [7f45ea9]:
    • @spectrum-css/icon@>=7
    • @spectrum-css/progresscircle@>=3
    • @spectrum-css/tokens@>=14

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

13.0.0

🗓 2024-04-18 • 📝 Commits

✨ Features

*use storybook v8 (#2604)(166ab23)

🐛 Bug fixes

  • **button:**pending state width, transition ([#2570](https://github.com/adobe/spectrum-css/issues/2570))([7b67bff](https://github.com/adobe/spectrum-css/commit/7b67bff))
    

    *feat!: postcss config build and script; remove gulp (#2466)(b0f337b), closes#2466

    	###
    	🛑 BREAKING CHANGES
    
    		*
    		- Removes component-builder & component-builder-simple for script leveraging postcss
    
  • Imports added to index.css and themes/express.css

12.0.2

🗓 2024-03-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

12.0.1

🗓 2024-02-26 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

12.0.0

🗓 2024-02-20 • 📝 Commits

🐛 Bug fixes

  • **button:**support for wrapping text (#2248)(3f14a86)

    ###
    🛑 BREAKING CHANGES
    
    	*
    	**button:** changes vertical flex alignment to start.
    

Previously when the button had an icon and the text was wrapping, the icon was vertically aligned center and the text was aligned center.

This fixes this to match with the design spec: for the version of the button that uses a workflow icon, the icon should stay aligned to the top, and the text should be aligned left (start). This uses the defined token for the space between the top of the component and the workflow icon (--spectrum-component-top-to-workflow-icon-*).

  • docs(button): rename storybook control to layout

Rename Storybook control for stacking buttons to "layout" with specified options, which is a more appropriate name. The control has also been made visible.

  • fix(button): support any existing use of ui icons

Support any existing use of ui icons with the updated wrapping behavior. And add Chromatic only testing of them to the Wrapping story.

Workflow icons are intended, with the use of the spectrum-component-top-to-workflow-icon tokens, but UI icons have not yet been specifically excluded in guidelines and are currently in use within SplitButton in this library. This keeps UI icons that are smaller than the intended workflow icon, better vertically centered with the text within the button.

  • feat(button): mod property for icon margin top

Add a mod property to make it easy to modify the margin-block-start of the icon, in case of alignment issues with icons that are not the intended workflow sizes.

11.3.1

🗓 2024-02-16 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.3.0

🗓 2024-02-15 • 📝 Commits

✨ Features

  • **button:**pending state(0b82dd9)

11.2.1

🗓 2024-02-06

Note: Version bump only for package @spectrum-css/button

11.2.0

🗓 2024-02-05 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.1.0

🗓 2024-01-29 • 📝 Commits

✨ Features

  • **overlay,commons:**deprecate overlay; migrate references to commons (#2429)(7eecd96)

🐛 Bug fixes

  • **commons:**rename and deprecate mods referencing global tokens (#2423)(3a49432)

11.0.19

🗓 2024-01-16 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.18

🗓 2023-12-12 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.17

🗓 2023-12-04 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.16

🗓 2023-11-15 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.15

🗓 2023-11-13 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.14

🗓 2023-11-09 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.13

🗓 2023-10-13 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.12

🗓 2023-09-26 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.11

🗓 2023-09-18 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.10

🗓 2023-09-14 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.9

🗓 2023-09-13 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.8

🗓 2023-09-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.7

🗓 2023-09-01 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.6

🗓 2023-08-31 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.5

🗓 2023-08-31 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.4

🗓 2023-08-29 • 📝 Commits

🔙 Reverts

*gulp and build updates (#2121)(03a37f5), closes#2099

11.0.3

🗓 2023-08-22 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.2

🗓 2023-08-22 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.1

🗓 2023-08-18 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

11.0.0

🗓 2023-08-16 • 📝 Commits

*refactor(button)!: replace focus-ring with focus-visible(5ec4849)

	###
	🛑 BREAKING CHANGES

		*
		use native focus-visible pseudo class for focus styling on button and basebutton

10.1.14

🗓 2023-08-10 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.13

🗓 2023-08-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.12

🗓 2023-08-03 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.11

🗓 2023-07-24 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.10

🗓 2023-07-17 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.9

🗓 2023-07-14 • 📝 Commits

🐛 Bug fixes

  • **button:**add explicit highcontrast variables for disabled color (#1985)(8697c37)

10.1.8

🗓 2023-07-11 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.7

🗓 2023-06-29 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.6

🗓 2023-06-21 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.5

🗓 2023-06-15 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.4

🗓 2023-06-12 • 📝 Commits

🐛 Bug fixes

*restore files to pre-formatted state(491dbcb)

10.1.3

🗓 2023-06-02 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.2

🗓 2023-06-01 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.1

🗓 2023-05-23 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.1.0

🗓 2023-05-22 • 📝 Commits

✨ Features

10.0.11

🗓 2023-05-18 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.10

🗓 2023-05-17 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.9

🗓 2023-05-11 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.8

🗓 2023-05-10 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.7

🗓 2023-05-10 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.6

🗓 2023-05-08 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.5

🗓 2023-05-04 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.4

🗓 2023-05-02 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.3

🗓 2023-04-26 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.2

🗓 2023-04-25 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.1

🗓 2023-04-25 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

10.0.0

🗓 2023-04-25 • 📝 Commits

  • fix(button)!: height and accessibility fixes (#1794) (132576a), closes #1794

🛑 BREAKING CHANGES

  • removes: --mod-button-padding-label-top & --mod-button-padding-label-bottom. Use: --mod-button-top-to-text& --mod-button-bottom-to-text instead.

Additional changes:

  • fix(button): update aria-labels for icon only variant
  • fix(button): remove unneeded isOpen attribute
  • fix(button): override icon size for icon only
  • fix(button): update line height
  • fix(button): update button padding with custom tokens
  • fix(button): remove unneeded aria-labels

9.1.6

🗓 2023-04-21 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.1.5

🗓 2023-04-20 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.1.4

🗓 2023-04-17 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.1.3

🗓 2023-04-17 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.1.2

🗓 2023-04-14 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.1.1

🗓 2023-04-11 • 📝 Commits

🐛 Bug fixes

9.1.0

🗓 2023-04-10 • 📝 Commits

✨ Features

9.0.14

🗓 2023-04-06 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.13

🗓 2023-04-04 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.12

🗓 2023-04-03 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.11

🗓 2023-03-31 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.10

🗓 2023-03-27 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.9

🗓 2023-03-21 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.8

🗓 2023-03-13 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.7

🗓 2023-03-09 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.6

🗓 2023-03-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.5

🗓 2023-03-01 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.4

🗓 2023-02-28 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.3

🗓 2023-02-24 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.2

🗓 2023-02-21 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.1

🗓 2023-02-06 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

9.0.0

🗓 2023-02-01 • 📝 Commits

  • chore(tokens)!: use latest dependency & fix build error (#1591) (f2532e7), closes #1591

🛑 BREAKING CHANGES

  • uses latest @adobe/spectrum-tokens dependency which includes token renames

8.0.0

🗓 2023-02-01 • 📝 Commits

  • feat(button)!: migrating button to core-tokens (CSS-97) (#1479) (0640be0), closes #1479

🛑 BREAKING CHANGES

  • migrates the Button to core tokens

7.0.0

🗓 2023-01-31 • 📝 Commits

  • feat(button)!: migrating button to core-tokens (CSS-97) (#1479) (0640be0), closes #1479

🛑 BREAKING CHANGES

  • migrates the Button to core tokens

7.0.0-beta.5

🗓 2023-01-26 • 📝 Commits

✨ Features

  • button!: core token migration for button (28786ab)
  • fix label padding (9f1517a)
  • logical padding (bc7bb10)
  • migrating to core tokens v5.0.0 (6e640ba)

6.0.21

🗓 2023-01-27 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.20

🗓 2023-01-25 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.19

🗓 2023-01-18 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.18

🗓 2023-01-13 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.17

🗓 2022-12-16 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.16

🗓 2022-12-14 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.15

🗓 2022-12-13 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.14

🗓 2022-11-11 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.13

🗓 2022-06-16 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.12

🗓 2022-06-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.11

🗓 2022-05-09 • 📝 Commits

🐛 Bug fixes

6.0.10

🗓 2022-04-28 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.9

🗓 2022-04-08 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.8

🗓 2022-03-22 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.7

🗓 2022-03-17 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.6

🗓 2022-03-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.5

🗓 2022-03-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.4

🗓 2022-02-23 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.3

🗓 2022-02-16 • 📝 Commits

🐛 Bug fixes

6.0.2

🗓 2022-02-01 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.1

🗓 2022-01-26 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

6.0.0

🗓 2022-01-05 • 📝 Commits

✨ Features

  • add back component-level variables for Button, fix Accent color in Express (#1342) (36bf0c3)
  • break out ClearButton and LogicButton into their own packages (3cc0a5f)
  • new Button API (e0ee36c)

🐛 Bug fixes

  • don't override staticWhite/staticBlack with staticNone (741c0cf)
  • focus-ring color for staticWhite/staticBlack (52958d9)
  • unbreak the build (d595cad)
  • update peer dependencies (97810cf)

🛑 BREAKING CHANGES

  • CTA was renamed to Accent, Quiet is gone in favor of outline, and Fill is added

5.0.0

🗓 2022-01-05 • 📝 Commits

✨ Features

  • add back component-level variables for Button, fix Accent color in Express (#1342) (e8ed59e)

5.0.0-beta.0

🗓 2021-12-14 • 📝 Commits

✨ Features

  • break out ClearButton and LogicButton into their own packages (a2092ab)
  • new Button API (0b9e101)

🐛 Bug fixes

  • don't override staticWhite/staticBlack with staticNone (5c72803)
  • focus-ring color for staticWhite/staticBlack (f7bdffe)
  • unbreak the build (123add2)

🛑 BREAKING CHANGES

  • CTA was renamed to Accent, Quiet is gone in favor of outline, and Fill is added

4.1.4

🗓 2021-12-06 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

4.1.3

🗓 2021-11-16 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

4.1.2

🗓 2021-11-10 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

4.1.1

🗓 2021-11-09 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

4.1.0

🗓 2021-11-08 • 📝 Commits

✨ Features

  • make ClearButton build again, unblock CCX (#1304) (ae9399a)

🐛 Bug fixes

  • refine the focus indicator per spectrum (094e115)
  • updating version number on vars (f535b49)
  • windows HCM (48bc74e)

4.0.1

🗓 2021-10-25 • 📝 Commits

🐛 Bug fixes

  • refine the focus indicator per spectrum (094e115)
  • updating version number on vars (f535b49)

4.0.0

🗓 2021-09-29 • 📝 Commits

🐛 Bug fixes

  • refine the focus indicator per spectrum (094e115)
  • updating version number on vars (f535b49)

4.0.0-alpha.2

🗓 2021-08-16 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

4.0.0-alpha.1

🗓 2021-06-17 • 📝 Commits

🐛 Bug fixes

  • adjusted button label padding (2c8ba8c)
  • adjusted left padding in button (fc655a5)

4.0.0-alpha.0

🗓 2021-05-12 • 📝 Commits

🐛 Bug fixes

  • add missing scale imports for button (c32a552)
  • renamed warning button variant to negative (1e029eb)

🛑 BREAKING CHANGES

  • .spectrum-Button--warning is now .spectrum-Button--negative

3.0.3-alpha.0

🗓 2021-04-27 • 📝 Commits

🐛 Bug fixes

  • updated focus ring tokens to assume keyboard focus state (2db4755)

3.0.2

🗓 2021-04-15 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

3.0.1

🗓 2021-03-10 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

3.0.0

🗓 2021-02-02 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

3.0.0-beta.6

🗓 2020-12-04 • 📝 Commits

✨ Features

🐛 Bug fixes

  • add back missing Button focus-ring (bfe3692)
  • correct height of small Button (2221e0a)
  • missing token used by SplitButton (0828cb1)
  • override Button font-weight while we wait for it to be fixed in DNA (7ffd05a)
  • remove Button font-weight hack (5261e40)
  • unbreak the build for SplitButton (7c98dd5)
  • update main, resolved conflicts (d7880a2)

🛑 BREAKING CHANGES

  • .spectrum-FieldButton has been removed, use .spectrum-ActionButton instead
  • t-shirt size must be added for button to work (i.e. .spectrum-Button--sizeM)
  • .spectrum-ActionButton is no longer part of the button component, use the actionbutton component

3.0.0-beta.5

🗓 2020-10-20 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

3.0.0-beta.4

🗓 2020-09-23 • 📝 Commits

🐛 Bug fixes

  • actionButton focus-ring active state visual issue #755 (#777) (64af508)
  • fix the issues caused by component rename (#778) (e1d180c)
  • removed deprecated tokens in button (281027d)
  • resolving conflicts with main (8cafffa)
  • wip fix more components (b74dbb8)
  • workflow icon size change to medium (#917) (a609ee6)

3.0.0-beta.3

🗓 2020-06-19 • 📝 Commits

🐛 Bug fixes

  • correct OverBackground ClearButton focus-ring, fixes #730 (#733) (5a34fa4)

3.0.0-beta.2

🗓 2020-05-14 • 📝 Commits

🛑 BREAKING CHANGES

  • Tool button has been removed

  • fix: interaction on mobile, text select

  • feat: add Emphasized Action Button

  • docs: add exampes for Quiet Emphasized Action Button

fix: correct Quiet Emphasized Action Button

  • feat: button group
  • Button group no longer supports Action Button, just normal buttons
  • Margins have been removed from adjacent buttons. Use ButtonGroup instead.

3.0.0-beta.1

🗓 2020-03-12 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

3.0.0-beta.0

🗓 2020-03-09 • 📝 Commits

✨ Features

  • make Button support RTL (0f5aa5c)

2.2.0

🗓 2020-03-06 • 📝 Commits

✨ Features

2.1.0

🗓 2020-02-10 • 📝 Commits

✨ Features

🐛 Bug fixes

2.0.3

🗓 2019-12-14 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

2.0.2

🗓 2019-11-08 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

2.0.1

🗓 2019-11-07 • 📝 Commits

Note: Version bump only for package @spectrum-css/button

2.0.0

🗓 2019-10-08

✨ Features