Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(skip-to-content): use Carbon's SkipToContent component, update focus styles #398

Merged
merged 18 commits into from
Apr 1, 2020

Conversation

jendowns
Copy link
Contributor

@jendowns jendowns commented Feb 25, 2020

Affected issues

Originally our SkipToContent link had border: 0 due to the use of the hidden mixin. The component is not a typical button, but it should "appear" as a focused button (not a un-focused button) when it is tabbed to.

This PR fixes that by matching Carbon's styles.

Proposed changes

@jendowns jendowns requested a review from a team as a code owner February 25, 2020 17:44
@jendowns jendowns requested a review from SimonFinney February 25, 2020 17:44
@netlify
Copy link

netlify bot commented Feb 25, 2020

Deploy preview for ibm-security ready!

Built with commit 507f52a

https://deploy-preview-398--ibm-security.netlify.com

@SimonFinney
Copy link
Contributor

Sorry @jendowns , I'm only seeing this now - I added the focus-outline mixin in https://github.com/carbon-design-system/ibm-security/pull/285/files#diff-3384391611d359dc312ba198cda6bcdaR111 , and it doesn't appear to have any unintended side effects - https://deploy-preview-285--ibm-security.netlify.com/?path=/story/patterns-unstable-shell--skip-to-content

Are there any issues with that approach versus what is proposed here?

@jendowns
Copy link
Contributor Author

@SimonFinney In both cases I believe the hidden mixin is being used, which was the root of the original issue I think.

The solution you have in the Shell refactor is cool but IMO it would be best to mimic what Carbon is doing as much as possible. In this case I think everything is copied from the Carbon version except for positioning, because Cameron had originally requested it be centered, I think.

@jendowns
Copy link
Contributor Author

jendowns commented Mar 9, 2020

@SimonFinney did you have any thoughts about the comment above?

@Deriohig
Copy link
Contributor

Deriohig commented Mar 16, 2020

I don't quite understand all the context here, but I think that hardcoding something that can potentially be applied as a mixin is good practise even if its not exactly what carbon is doing. It provides consistency and the ability to change things globally. But again, dont really know the background to approve this or not;
Answering these might help; what does the hidden mixins role play in preventing a mixin being used here if we think it might provide benefit? and can you expand on why you think a mixin is the wrong approach for this ?

@jendowns
Copy link
Contributor Author

jendowns commented Mar 16, 2020

@Deriohig @SimonFinney Looking at this again, there are several problems with the approach that is in the UNSTABLE__Shell (which was merged into the next branch).

UNSTABLE__Shell style variation:

You can see the UNSTABLE__Shell version that @SimonFinney wanted to emulate here: https://next--ibm-security.netlify.com/?path=/story/patterns-unstable-shell--skip-to-content

Most notably the way it's written, it's not completely "hidden" when inactive. It sits on top of content & has a set width/height.

Screen Shot 2020-03-16 at 10 41 46 AM

And then when focussed, the way it is being shown is with clip: auto which is not ideal:
Screen Shot 2020-03-16 at 10 41 26 AM

(Also, small issue: the button is mis-shapen / incorrect)

My variation

The Carbon styles I copied here keep the component completely hidden -- TRULY hidden -- until it is focused.

Screen Shot 2020-03-16 at 10 41 57 AM

Screen Shot 2020-03-16 at 10 40 51 AM

The issue this PR is specifically addressing is the use of a hidden mixin that had unintended reset side effects.

So again I really recommend that we emulate Carbon here and ensure that the UNSTABLE__Shell also keeps those correct skip-to-link styles (since that was merged in next, I have added a link to these comments in #434 so the "not-hidden" button can be addressed, probably when THIS fix gets merged into dev then next?). But yeah as it stands, the UNSTABLE__Shell's skip-to-link is not correctly hidden or correctly shown & that needs to be addressed, not emulated here. There isn't an easy mixin we can use for this; we need these styles.

@jendowns
Copy link
Contributor Author

jendowns commented Mar 16, 2020

Ah one more thing, to specifically address the proposed use of the focus-outline mixin --

We are targeting a 4px width border here, to make the button clearly visible. 4px is not available via the focus-outline mixin: https://github.com/carbon-design-system/carbon/blob/master/packages/components/src/globals/scss/_helper-mixins.scss#L65 (which is likely why Carbon isn't using that mixin, either)

So to summarize -- we shouldn't use the hidden mixin (which this PR is trying to fix) and we shouldn't use the focus-outline mixin (it's not sufficient).

@jendowns
Copy link
Contributor Author

@SimonFinney just a reminder that this is ready to review & I've added more explanation about the change in comments above. 👍

@SimonFinney
Copy link
Contributor

@jendowns From what I can see, the fix for what you're describing above is achievable by moving the margin values that are currently set in &__link to the focus declaration - the other values are the same output of the hidden mixin and feel redundant to reproduce in this case.

@jendowns
Copy link
Contributor Author

jendowns commented Mar 26, 2020

@SimonFinney unfortunately, the hidden mixin has unintended consequences & led me to make this issue. Carbon is not currently using it for their Skip link, either.

Above I showed how the current situation with the hidden mixin isn't sufficient, and I also showed how the focus-outline mixin is not sufficient. I would like to draw your attention to Carbon's approach, which I am mimicking here. It is very complete, and it ensures that the button is properly hidden when it needs to be (not with the hidden mixin) and very visible, with an extra thick border, when focused: https://github.com/carbon-design-system/carbon/blob/master/packages/components/src/components/ui-shell/_header.scss#L304

@SimonFinney
Copy link
Contributor

SimonFinney commented Mar 26, 2020

So I understand this better, what are the differences between the following screenshot (taken from next with the margin removed), and the screenshot you posted above?

Screenshot 2020-03-26 at 19 05 22

I'd like to avoid unnecessary repetition where possible, so I'm not fully grasping how this is providing anything different.

@jendowns
Copy link
Contributor Author

@SimonFinney are you taking issue with margin: -1px? What is it you are trying to show me here?

In next, the margins exist and therefore the un-focused button takes up space.

In this PR, the margins are -1px without focus, therefore they don't take up space.

@@ -103,22 +103,34 @@
&__skip-to-content {
display: flex;
position: relative;
height: 0;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please note that I just removed this height rule, based on guidance about ensuring that the "hidden" content doesn't actually have a zero height: https://webaim.org/techniques/css/invisiblecontent/

We want the child of this element, the actual link, to be readable by a screenreader.

@SimonFinney
Copy link
Contributor

@jendowns I created a quick PR to illustrate my suggestions above, please take a look and let me know if you have any questions! #459

Copy link
Contributor Author

@jendowns jendowns left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@SimonFinney In thinking about this PR, it seems like a round-about way of relying on Carbon's approach to their SkipToContent link. And it occurred to me that the best way to use their approach was to import their component 👍

With this change, we are importing the SkipToContent component from Carbon and using it, instead of creating our own. We are still keeping the same class names, for consistency. Also there are still a couple required style overrides. But the vast majority of custom styles for this link can be removed now. 👍

Please take another look when you get a chance -- thanks!

padding: $button-padding;
clip: auto;
}
font-weight: 600;
Copy link
Contributor Author

@jendowns jendowns Mar 27, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

had to add this weight because as I was checking the component with DAP, the latest ruleset now flags it for not having enough contrast + weight:

Screen Shot 2020-03-27 at 3 14 00 PM

@jendowns jendowns changed the title fix(skip-to-content): update focus styles and mimic Carbon's uishell version fix(skip-to-content): use Carbon's SkipToContent component, update focus styles Mar 27, 2020
margin-top: $header__spacing__padding;
margin-left: -$toolbar__sizing__width;
transition: unset;
z-index: z($layer: floating);
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something worth noting here -- floating is 10,000, and Carbon's SkipToContent is set to 9,999 by default.

@SimonFinney
Copy link
Contributor

Interesting! My only thought here is if we're going to significantly adjust the appearance of the work, we should pull in design ( @cameroncalder ) for a visual review

@SimonFinney SimonFinney requested a review from a team March 31, 2020 08:38
@jendowns
Copy link
Contributor Author

@SimonFinney this has been reviewed by @cameroncalder in Slack (instead of bolded text, needed to change gray10 to white). Please review again. 🙏

Copy link
Contributor

@SimonFinney SimonFinney left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great! LGTM! 💯

@jendowns jendowns merged commit 43cc09c into dev Apr 1, 2020
@jendowns jendowns deleted the skip-to-content-focus branch April 1, 2020 13:38
SimonFinney pushed a commit that referenced this pull request Apr 1, 2020
## [1.19.2-prerelease.1](v1.19.1...v1.19.2-prerelease.1) (2020-04-01)

### Bug Fixes

* **skip-to-content:** use Carbon's SkipToContent component, update focus styles ([#398](#398)) ([43cc09c](43cc09c))
@SimonFinney
Copy link
Contributor

🎉 This PR is included in version 1.19.2-prerelease.1 🎉

The release is available on:

Your semantic-release bot 📦🚀

SimonFinney pushed a commit that referenced this pull request Apr 7, 2020
# [1.20.0](v1.19.1...v1.20.0) (2020-04-07)

### Bug Fixes

* **nav:** accommodate single child ([#471](#471)) ([7591f11](7591f11))
* **skip-to-content:** use Carbon's SkipToContent component, update focus styles ([#398](#398)) ([43cc09c](43cc09c))

### Features

* **decorator:** deprecate inert prop and fix color contrast ([#441](#441)) ([c22bbb1](c22bbb1))
* **exports:** export all Carbon components to be superseded by Carbon for IBM Security ([#445](#445)) ([3932ed4](3932ed4))
@SimonFinney
Copy link
Contributor

🎉 This PR is included in version 1.20.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

SimonFinney added a commit that referenced this pull request Jul 9, 2020
* fix: restructure individual styles (#63)

* fix: remove global sass references and fast sass loader (#36)

* fix(accordion): make component styles modular (#41)

* fix: remove global sass references and fast sass loader

* fix(accordion): make component styles modular

* chore: use relevant type package

* fix: modular styles for proxied components (#45)

* fix: remove global sass references and fast sass loader

* fix: modular styles for proxied components

* chore: add theme tokens

* fix(shell): restructure shell styles (#42)

* fix(shell): restructure shell styles

* fix(storybook): modularise container imports

* fix(themes): fix themes reference

* refactor(themes): rename imports

* fix: modular styles for tag, tagwall, panel, tearsheet (#83)

* fix: remove global sass references and fast sass loader

* fix(tag): modularise styles

* fix(tagwall): modularise styles

* fix(tagwallfilter): modular styles

* fix(tearsheet): modular styles

* fix(tearsheet): remove background mixin

* fix(portal): modular styles

* fix(panel): modular styles

* fix(tagwallfilter): add text input to mixins

* fix: scrolling on tearsheet

* chore: remove underscore

* fix(scrollgradient): update for isolated  styles

* chore: updates based on PR feedback

* chore: add mini-units mixins and fix broken partial import

* chore(modular-styles): add multiple components (#114)

* fix(card): modularise styles

* chore(modular-styles): add card, delimited list, error page, external link, etc.

* chore(combo-buton): modularise styles

* feat(styles): modularise multiple component styles (#167)

* fix(ica): modularise styles

* fix(non-entitled-section): modularise styles

* fix(notification): modularise component styles

* fix(pill): modularise styles

* fix(search-bar): modularise styles

* feat(modular-styles): modularise components (#185)

* feat(modular-styles): modularise components

* fix(styles): add prefix import

* chore: fix Yarn dependencies

* feat(modular-styles): add remaining imports, update source import (#241)

* feat(modular-styles): update `DatePicker`, `Tile`, and `Toggle`

* feat(modular-styles): add multiple components

* fix(modular-styles): fix import

* feat(modular-styles): finalise imports

* docs(theme): update Storybook imports

* chore: format styles

* fix(theme): revert order (#432)

* fix(date-picker): revert styles (#431)

Co-authored-by: j1mie <[email protected]>

* chore(release): 1.18.1-prerelease.8 [skip ci]

## [1.18.1-prerelease.8](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.7...v1.18.1-prerelease.8) (2020-03-12)

### Bug Fixes

* restructure individual styles ([#63](https://github.com/carbon-design-system/ibm-security/issues/63)) ([d41ef37](https://github.com/carbon-design-system/ibm-security/commit/d41ef379c6339d1b8ad5588349aa9c0ae2b58ef8)), closes [#36](https://github.com/carbon-design-system/ibm-security/issues/36) [#41](https://github.com/carbon-design-system/ibm-security/issues/41) [#45](https://github.com/carbon-design-system/ibm-security/issues/45) [#42](https://github.com/carbon-design-system/ibm-security/issues/42) [#83](https://github.com/carbon-design-system/ibm-security/issues/83) [#114](https://github.com/carbon-design-system/ibm-security/issues/114) [#167](https://github.com/carbon-design-system/ibm-security/issues/167) [#185](https://github.com/carbon-design-system/ibm-security/issues/185) [#241](https://github.com/carbon-design-system/ibm-security/issues/241) [#432](https://github.com/carbon-design-system/ibm-security/issues/432) [#431](https://github.com/carbon-design-system/ibm-security/issues/431)

* fix(portal): replace old snapshots with a11y & event bubbling tests (#380)

* fix(portal): update test structure, remove old snapshots

* fix(portal): update portal tests

* fix(portal): update tests

* fix(portal): update event bubbling tests

* fix(portal): remove initialFocus test

* fix(portal): restore file comments to test file

* fix(portal): update test id for stopPropagationEvents

* test(portal): remove cleanup from tests

* chore(release): 1.18.1-prerelease.9 [skip ci]

## [1.18.1-prerelease.9](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.8...v1.18.1-prerelease.9) (2020-03-13)

### Bug Fixes

* **portal:** replace old snapshots with a11y & event bubbling tests ([#380](https://github.com/carbon-design-system/ibm-security/issues/380)) ([ac5fbef](https://github.com/carbon-design-system/ibm-security/commit/ac5fbefbfb9a3db54dc56e38c53bd643d0432a96))

* fix(nonentitled-section): add a11y test, fix issue with repeated alt attribute value (#357)

* fix(nonentitled-section): add a11y test and remove snapshots

* fix(nonentitled-section): a11y issue with link image

* fix(ne-section: add tests for additional props, remove unused prop

* Update src/components/NonEntitledSection/__tests__/NonEntitledSection.spec.js

Co-Authored-By: Diego Hernandez <[email protected]>

Co-authored-by: Diego Hernandez <[email protected]>

* chore(release): 1.18.1-prerelease.10 [skip ci]

## [1.18.1-prerelease.10](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.9...v1.18.1-prerelease.10) (2020-03-13)

### Bug Fixes

* **nonentitled-section:** add a11y test, fix issue with repeated alt attribute value ([#357](https://github.com/carbon-design-system/ibm-security/issues/357)) ([3c9f1dd](https://github.com/carbon-design-system/ibm-security/commit/3c9f1ddb91502bc4382636c7eb01801fa6062985))

* docs(breadcrumb): update story to reflect the same story in Carbon (#425)

Co-authored-by: Deriohig <[email protected]>

* fix(card): update card and skeleton tests, update default alt attr value (#364)

* fix(card): update card tests, add a11y tests, remove snapshots, update alt attr

* fix(card): add cardskeleton a11y test

* test(card): add more tests for props

* chore(release): 1.18.1-prerelease.11 [skip ci]

## [1.18.1-prerelease.11](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.10...v1.18.1-prerelease.11) (2020-03-16)

### Bug Fixes

* **card:** update card and skeleton tests, update default alt attr value ([#364](https://github.com/carbon-design-system/ibm-security/issues/364)) ([ef3ccdf](https://github.com/carbon-design-system/ibm-security/commit/ef3ccdfaf94974ab96507434b26661cc90a59400))

* fix(data-decorator): add unit and a11y tests, remove snapshots (#348)

* fix(data-decorator): add a11y tests and remove snapshots

* fix(data-decorator): add open mock test

* fix(data-decorator): update a11y test ids

* fix(data-decorator): update tests

* fix(decorator): update tests and remove snapshots

* fix(decorator): add scoreDescription prop to describe score icon

* fix(data-decorator): ensure that scorethreshold and scoredesc props are passed to inner decorator

* test(decorator): add more rigorous tests for props etc

* fix(decorator): update default for scoreDescription prop

* test(data-decorator): use panel namespace for query selector in failing test

* chore(release): 1.18.1-prerelease.12 [skip ci]

## [1.18.1-prerelease.12](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.11...v1.18.1-prerelease.12) (2020-03-16)

### Bug Fixes

* **data-decorator:** add unit and a11y tests, remove snapshots ([#348](https://github.com/carbon-design-system/ibm-security/issues/348)) ([9b345d3](https://github.com/carbon-design-system/ibm-security/commit/9b345d3409a20da5ba155ce1c15638a1d84ddb04))

* fix(header-notification): add visible hover state to clear button (#437)

* fix(header-notification): add visible hover state and class name to clear button

* fix(header-notification): remove extra class

* chore(release): 1.18.1-prerelease.13 [skip ci]

## [1.18.1-prerelease.13](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.12...v1.18.1-prerelease.13) (2020-03-16)

### Bug Fixes

* **header-notification:** add visible hover state to clear button ([#437](https://github.com/carbon-design-system/ibm-security/issues/437)) ([59e0a22](https://github.com/carbon-design-system/ibm-security/commit/59e0a22ca846ae17b7b9fc7a84f674131bbad4f8))

* fix(stacked-notification): update tests and remove old snapshots (#381)

* fix(stacked-notification): update tests and remove old snapshots

* test(stacked-notification): add tests for all props

* chore(release): 1.18.1-prerelease.14 [skip ci]

## [1.18.1-prerelease.14](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.13...v1.18.1-prerelease.14) (2020-03-17)

### Bug Fixes

* **stacked-notification:** update tests and remove old snapshots ([#381](https://github.com/carbon-design-system/ibm-security/issues/381)) ([97e4ff3](https://github.com/carbon-design-system/ibm-security/commit/97e4ff3d636de67b0a46a5e042d38c363347e42a))

* fix(loading-message): update tests, move spread attribute  (#369)

* fix(loading-message): update tests, move spread attribute

* docs(loading-message): update loading test comments

* test(loading-message): update tests per feedback

* text(loading-message): add test if active prop is true

* test(loading-message): fix typo in test block

* test(loading-message): remove redundant test

* chore(release): 1.18.1-prerelease.15 [skip ci]

## [1.18.1-prerelease.15](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.14...v1.18.1-prerelease.15) (2020-03-17)

### Bug Fixes

* **loading-message:** update tests, move spread attribute  ([#369](https://github.com/carbon-design-system/ibm-security/issues/369)) ([d7b74e3](https://github.com/carbon-design-system/ibm-security/commit/d7b74e38ae8fa85735cec47fbb61d7771cca4639))

* fix(profile-image): add a11y tests, update test structure, add spread attribute (#386)

* fix(profile-image): add a11y tests, update test structure, add spread attribute

* test(profile-image): add tests for profile object

* chore(release): 1.18.1-prerelease.16 [skip ci]

## [1.18.1-prerelease.16](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.15...v1.18.1-prerelease.16) (2020-03-19)

### Bug Fixes

* **profile-image:** add a11y tests, update test structure, add spread attribute ([#386](https://github.com/carbon-design-system/ibm-security/issues/386)) ([9443d2e](https://github.com/carbon-design-system/ibm-security/commit/9443d2e0d61da531d056cb57de97cc75af80ae97))

* feat: update to Carbon 10.10.0 release (#417)

* feat: upgrade to carbon 10.10.0 release

* fix(filter-panel-search): update tests to use getplaceholdertext

* test(external-link): fix path to component

* test(snapshots): update snapshots to reflect carbon updates

* docs(progress-indicator): update story to reflect new vertical alignment prop

* chore: update yarn lock files

* chore(release): 1.19.0-prerelease.1 [skip ci]

# [1.19.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.16...v1.19.0-prerelease.1) (2020-03-19)

### Features

* update to Carbon 10.10.0 release ([#417](https://github.com/carbon-design-system/ibm-security/issues/417)) ([fd29071](https://github.com/carbon-design-system/ibm-security/commit/fd2907136691e327492cd27a1bf68ddfc0efb571))

* test(api): add snapshot test for public API interface (#429)

* fix(data-table): update subcomponent exports to avoid max range callstack error

* chore: add react-is dependency

* fix(data-table): remove old exports test

* feat: add api exports snapshot test

* chore: add react-is offline file

* chore: update snapshot of public api

* chore: update public api snapshot

* test(api): update imports in public api interface test

* docs(api-test): remove eslint override

* test(api): update public api interface snapshot

* test(api): restore import placement, update snapshot

* fix(status-icon): add a11y tests, update test structure, remove old snapshots (#387)

* fix(status-icon): add a11y tests, update test structure, remove old snapshots

* test(status-icon): add tests to check each status

* test(status-icon): update test text

* test(status-icon): apply PR feedback to undefined status tests

* chore(release): 1.19.0-prerelease.2 [skip ci]

# [1.19.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.1...v1.19.0-prerelease.2) (2020-03-19)

### Bug Fixes

* **status-icon:** add a11y tests, update test structure, remove old snapshots ([#387](https://github.com/carbon-design-system/ibm-security/issues/387)) ([1d370b0](https://github.com/carbon-design-system/ibm-security/commit/1d370b0272b1f0563c8c64b48f8a90714423d61b))

* test(public-api): sort components to ignore order (#448)

* feat(exports): export `ListBox`, reformat entry point (#438)

* fix(list-box): export component, reorganise exports

* feat(exports): export Carbon, superseded by Carbon for IBM Security

* refactor(exports): revert changes

* test(public-api): update snapshot

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.19.0-prerelease.3 [skip ci]

# [1.19.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.2...v1.19.0-prerelease.3) (2020-03-20)

### Features

* **exports:** export `ListBox`, reformat entry point ([#438](https://github.com/carbon-design-system/ibm-security/issues/438)) ([373adbc](https://github.com/carbon-design-system/ibm-security/commit/373adbc62ba94c4788254f30ba152e64cb0e4c6e))

* fix(status-indicator): add a11y tests, update testing structure, apply minor fixes (#388)

* fix(status-step): add tests, fix empty desc, update label prop info

* fix(status-indicator): deprecate unused prop retry.description

* fix(status-indicator): add a11y tests and update test structure

* fix(status-step): ensure that required props are in tests

* fix(status-indicator): ensure that retry button is wrapped in li

* fix(status-indicator): ensure that statusstep in indicator tests have required props

* test(status-indicator): update indicator and step tests

* test(api): update public api interface snapshot

* chore(release): 1.19.0-prerelease.4 [skip ci]

# [1.19.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.3...v1.19.0-prerelease.4) (2020-03-23)

### Bug Fixes

* **status-indicator:** add a11y tests, update testing structure, apply minor fixes ([#388](https://github.com/carbon-design-system/ibm-security/issues/388)) ([dbf160b](https://github.com/carbon-design-system/ibm-security/commit/dbf160b04a47564db1698b043d3228872292d0d4))

* chore(release): 1.19.0 [skip ci]

# [1.19.0](https://github.com/carbon-design-system/ibm-security/compare/v1.18.0...v1.19.0) (2020-03-24)

### Bug Fixes

* **button:** update testing structure, props docs, and add a11y test ([#362](https://github.com/carbon-design-system/ibm-security/issues/362)) ([0ee20bf](https://github.com/carbon-design-system/ibm-security/commit/0ee20bfa3ae02bd4e4cef5a2a5b15ef03aca0827))
* **card:** update card and skeleton tests, update default alt attr value ([#364](https://github.com/carbon-design-system/ibm-security/issues/364)) ([ef3ccdf](https://github.com/carbon-design-system/ibm-security/commit/ef3ccdfaf94974ab96507434b26661cc90a59400))
* **checkbox-skeleton:** correctly export skeleton component ([#422](https://github.com/carbon-design-system/ibm-security/issues/422)) ([911e8f8](https://github.com/carbon-design-system/ibm-security/commit/911e8f845aff3783298827ed83ee023ffff32c71))
* **data-decorator:** add unit and a11y tests, remove snapshots ([#348](https://github.com/carbon-design-system/ibm-security/issues/348)) ([9b345d3](https://github.com/carbon-design-system/ibm-security/commit/9b345d3409a20da5ba155ce1c15638a1d84ddb04))
* **filter-panel:** add a11y tests to subcomponents, use test keyword ([#375](https://github.com/carbon-design-system/ibm-security/issues/375)) ([a04cb8f](https://github.com/carbon-design-system/ibm-security/commit/a04cb8f5e4c4ee4d4b0d5eee5c8142528fde5898))
* **header-notification:** add visible hover state to clear button ([#437](https://github.com/carbon-design-system/ibm-security/issues/437)) ([59e0a22](https://github.com/carbon-design-system/ibm-security/commit/59e0a22ca846ae17b7b9fc7a84f674131bbad4f8))
* **loading-message:** update tests, move spread attribute  ([#369](https://github.com/carbon-design-system/ibm-security/issues/369)) ([d7b74e3](https://github.com/carbon-design-system/ibm-security/commit/d7b74e38ae8fa85735cec47fbb61d7771cca4639))
* **nonentitled-section:** add a11y test, fix issue with repeated alt attribute value ([#357](https://github.com/carbon-design-system/ibm-security/issues/357)) ([3c9f1dd](https://github.com/carbon-design-system/ibm-security/commit/3c9f1ddb91502bc4382636c7eb01801fa6062985))
* **portal:** replace old snapshots with a11y & event bubbling tests ([#380](https://github.com/carbon-design-system/ibm-security/issues/380)) ([ac5fbef](https://github.com/carbon-design-system/ibm-security/commit/ac5fbefbfb9a3db54dc56e38c53bd643d0432a96))
* **profile-image:** add a11y tests, update test structure, add spread attribute ([#386](https://github.com/carbon-design-system/ibm-security/issues/386)) ([9443d2e](https://github.com/carbon-design-system/ibm-security/commit/9443d2e0d61da531d056cb57de97cc75af80ae97))
* **stacked-notification:** update tests and remove old snapshots ([#381](https://github.com/carbon-design-system/ibm-security/issues/381)) ([97e4ff3](https://github.com/carbon-design-system/ibm-security/commit/97e4ff3d636de67b0a46a5e042d38c363347e42a))
* **status-icon:** add a11y tests, update test structure, remove old snapshots ([#387](https://github.com/carbon-design-system/ibm-security/issues/387)) ([1d370b0](https://github.com/carbon-design-system/ibm-security/commit/1d370b0272b1f0563c8c64b48f8a90714423d61b))
* **status-indicator:** add a11y tests, update testing structure, apply minor fixes ([#388](https://github.com/carbon-design-system/ibm-security/issues/388)) ([dbf160b](https://github.com/carbon-design-system/ibm-security/commit/dbf160b04a47564db1698b043d3228872292d0d4))
* restructure individual styles ([#63](https://github.com/carbon-design-system/ibm-security/issues/63)) ([d41ef37](https://github.com/carbon-design-system/ibm-security/commit/d41ef379c6339d1b8ad5588349aa9c0ae2b58ef8)), closes [#36](https://github.com/carbon-design-system/ibm-security/issues/36) [#41](https://github.com/carbon-design-system/ibm-security/issues/41) [#45](https://github.com/carbon-design-system/ibm-security/issues/45) [#42](https://github.com/carbon-design-system/ibm-security/issues/42) [#83](https://github.com/carbon-design-system/ibm-security/issues/83) [#114](https://github.com/carbon-design-system/ibm-security/issues/114) [#167](https://github.com/carbon-design-system/ibm-security/issues/167) [#185](https://github.com/carbon-design-system/ibm-security/issues/185) [#241](https://github.com/carbon-design-system/ibm-security/issues/241) [#432](https://github.com/carbon-design-system/ibm-security/issues/432) [#431](https://github.com/carbon-design-system/ibm-security/issues/431)
* **string-formatter:** update tests ([#413](https://github.com/carbon-design-system/ibm-security/issues/413)) ([e5edb22](https://github.com/carbon-design-system/ibm-security/commit/e5edb225f2a0f3d1ac239832778c49a7bee399ef))
* **summary-card:** add a11y and unit tests ([#337](https://github.com/carbon-design-system/ibm-security/issues/337)) ([78ceb90](https://github.com/carbon-design-system/ibm-security/commit/78ceb9011c692fd51088403230b21b83473cf85f))
* **summary-card-action:** remove overflow hidden so tooltip can be shown ([#420](https://github.com/carbon-design-system/ibm-security/issues/420)) ([fb72d41](https://github.com/carbon-design-system/ibm-security/commit/fb72d418b1a41802fe8162cc0f10ef1ab134cb6f))
* **trending-card:** reformat tests and remove snapshots ([#346](https://github.com/carbon-design-system/ibm-security/issues/346)) ([423f352](https://github.com/carbon-design-system/ibm-security/commit/423f3529963ceb41033604adf8a108c244ba1d6c))

### Features

* **exports:** export `ListBox`, reformat entry point ([#438](https://github.com/carbon-design-system/ibm-security/issues/438)) ([373adbc](https://github.com/carbon-design-system/ibm-security/commit/373adbc62ba94c4788254f30ba152e64cb0e4c6e))
* update to Carbon 10.10.0 release ([#417](https://github.com/carbon-design-system/ibm-security/issues/417)) ([fd29071](https://github.com/carbon-design-system/ibm-security/commit/fd2907136691e327492cd27a1bf68ddfc0efb571))

* chore(lint): update browserslist and remove compat comment (#451)

* test(accordion): remove unused imported prefix (#452)

* fix(scroll-gradient): apply scroll state styles to direct children only (#454)

* fix(scroll-gradient): apply gradient styles to direct children only

* fix(scroll-gradient): apply scroll state styles to direct children only

* chore(type-layout): remove unrelated change in story

* chore(release): 1.19.0-prerelease.5 [skip ci]

# [1.19.0-prerelease.5](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.4...v1.19.0-prerelease.5) (2020-03-25)

### Bug Fixes

* **scroll-gradient:** apply scroll state styles to direct children only ([#454](https://github.com/carbon-design-system/ibm-security/issues/454)) ([9b5edab](https://github.com/carbon-design-system/ibm-security/commit/9b5edab9c35636c6e41c757bc89ccab839ef37d6))

* chore: format `dev`

* fix(step-indicator): update tests, remove old snapshots (#390)

* fix(step-indicator): add a11y test, remove old snapshots

* fix(step-indicator): clean up tests

* fix(step-indicator): add test for step custom class

* fix(step-indicator): remove unnecessary prop value change in component code

* fix(step-indicator): add test for currentStep=null

* test(step-indicator): update tests, add tests for step

* test(step-indicator): remove redundant test

* chore(release): 1.19.0-prerelease.6 [skip ci]

# [1.19.0-prerelease.6](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.5...v1.19.0-prerelease.6) (2020-03-27)

### Bug Fixes

* **step-indicator:** update tests, remove old snapshots ([#390](https://github.com/carbon-design-system/ibm-security/issues/390)) ([ea00783](https://github.com/carbon-design-system/ibm-security/commit/ea00783f570cbc68a85cb9d8b23538cfd93b7734))

* docs(contributing): update directions for forking the repo (#443)

* docs(contributing): update directions for forking the repo

* docs(contributing): update heading punctuation

* docs(contributing): update headings

* docs(contributing): update heading number

* docs(contributing): update heading number

* docs(contributing): update list numbering

* docs(contributing): remove extra new lines

* chore(release): 1.19.1-prerelease.1 [skip ci]

## [1.19.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0...v1.19.1-prerelease.1) (2020-03-31)

### Bug Fixes

* **scroll-gradient:** apply scroll state styles to direct children only ([#454](https://github.com/carbon-design-system/ibm-security/issues/454)) ([9b5edab](https://github.com/carbon-design-system/ibm-security/commit/9b5edab9c35636c6e41c757bc89ccab839ef37d6))
* **step-indicator:** update tests, remove old snapshots ([#390](https://github.com/carbon-design-system/ibm-security/issues/390)) ([ea00783](https://github.com/carbon-design-system/ibm-security/commit/ea00783f570cbc68a85cb9d8b23538cfd93b7734))

* chore(release): 1.19.1 [skip ci]

## [1.19.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0...v1.19.1) (2020-03-31)

### Bug Fixes

* **scroll-gradient:** apply scroll state styles to direct children only ([#454](https://github.com/carbon-design-system/ibm-security/issues/454)) ([9b5edab](https://github.com/carbon-design-system/ibm-security/commit/9b5edab9c35636c6e41c757bc89ccab839ef37d6))
* **step-indicator:** update tests, remove old snapshots ([#390](https://github.com/carbon-design-system/ibm-security/issues/390)) ([ea00783](https://github.com/carbon-design-system/ibm-security/commit/ea00783f570cbc68a85cb9d8b23538cfd93b7734))

* fix(skip-to-content): use Carbon's SkipToContent component, update focus styles (#398)

* fix(skip-to-content): update focus styles and mimic Carbon's uishell version

* fix(skip-link): remove 0 height rule from link wrapper

* fix(skip-to-content): use carbon component and minimize styles

* fix(skip-to-content): restore top margin

* fix(skip-to-content): fix focus and left position

* fix(skip-to-content): change text color to white

* chore(release): 1.19.2-prerelease.1 [skip ci]

## [1.19.2-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.1...v1.19.2-prerelease.1) (2020-04-01)

### Bug Fixes

* **skip-to-content:** use Carbon's SkipToContent component, update focus styles ([#398](https://github.com/carbon-design-system/ibm-security/issues/398)) ([43cc09c](https://github.com/carbon-design-system/ibm-security/commit/43cc09c5382ff9668c033bdca30b3c4e1dfe5333))

* feat(decorator): deprecate inert prop and fix color contrast (#441)

* fix(decorator): update colors to be more accessibile

* fix(decorator): do not add interactive classes if inert

* fix(decorator): update snapshot

* feat(decorator): deprecate inert prop, make inert by default, update stories

* docs(themes): commit autogenerated theme doc updates

* Update src/components/DataDecorator/Decorator/Decorator.js

Co-Authored-By: Diego Hernandez <[email protected]>

* fix(decorator): inert styles by default, add interactive class, update active focus outline

* fix(decorator): update tests to reflect inert prop deprecation

* docs(decorator): capitalize word in demo

Co-authored-by: Diego Hernandez <[email protected]>

* chore(release): 1.20.0-prerelease.1 [skip ci]

# [1.20.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.2-prerelease.1...v1.20.0-prerelease.1) (2020-04-01)

### Features

* **decorator:** deprecate inert prop and fix color contrast ([#441](https://github.com/carbon-design-system/ibm-security/issues/441)) ([c22bbb1](https://github.com/carbon-design-system/ibm-security/commit/c22bbb110ee88b7db664be45c5a33d15e0a85035))

* feat(exports): export all Carbon components to be superseded by Carbon for IBM Security (#445)

* fix(list-box): export component, reorganise exports

* feat(exports): export Carbon, superseded by Carbon for IBM Security

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.20.0-prerelease.2 [skip ci]

# [1.20.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0-prerelease.1...v1.20.0-prerelease.2) (2020-04-02)

### Features

* **exports:** export all Carbon components to be superseded by Carbon for IBM Security ([#445](https://github.com/carbon-design-system/ibm-security/issues/445)) ([3932ed4](https://github.com/carbon-design-system/ibm-security/commit/3932ed4168da71784db659a0934efe8fbdc02008))

* fix(nav): accommodate single child (#471)

* chore(release): 1.20.0-prerelease.3 [skip ci]

# [1.20.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0-prerelease.2...v1.20.0-prerelease.3) (2020-04-03)

### Bug Fixes

* **nav:** accommodate single child ([#471](https://github.com/carbon-design-system/ibm-security/issues/471)) ([7591f11](https://github.com/carbon-design-system/ibm-security/commit/7591f113a71b3c94370272efc159172d6225d925))

* chore(release): 1.20.0 [skip ci]

# [1.20.0](https://github.com/carbon-design-system/ibm-security/compare/v1.19.1...v1.20.0) (2020-04-07)

### Bug Fixes

* **nav:** accommodate single child ([#471](https://github.com/carbon-design-system/ibm-security/issues/471)) ([7591f11](https://github.com/carbon-design-system/ibm-security/commit/7591f113a71b3c94370272efc159172d6225d925))
* **skip-to-content:** use Carbon's SkipToContent component, update focus styles ([#398](https://github.com/carbon-design-system/ibm-security/issues/398)) ([43cc09c](https://github.com/carbon-design-system/ibm-security/commit/43cc09c5382ff9668c033bdca30b3c4e1dfe5333))

### Features

* **decorator:** deprecate inert prop and fix color contrast ([#441](https://github.com/carbon-design-system/ibm-security/issues/441)) ([c22bbb1](https://github.com/carbon-design-system/ibm-security/commit/c22bbb110ee88b7db664be45c5a33d15e0a85035))
* **exports:** export all Carbon components to be superseded by Carbon for IBM Security ([#445](https://github.com/carbon-design-system/ibm-security/issues/445)) ([3932ed4](https://github.com/carbon-design-system/ibm-security/commit/3932ed4168da71784db659a0934efe8fbdc02008))

* fix(reset): ensure reset is not compiled in output CSS (#465)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.20.1-prerelease.1 [skip ci]

## [1.20.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0...v1.20.1-prerelease.1) (2020-04-07)

### Bug Fixes

* **reset:** ensure reset is not compiled in output CSS ([#465](https://github.com/carbon-design-system/ibm-security/issues/465)) ([d7c7ebb](https://github.com/carbon-design-system/ibm-security/commit/d7c7ebbb6dc7133a876088b97c6af76be4f55c28))

* fix(nav-item): remove active state for external links (#484)

* chore(release): 1.20.1-prerelease.2 [skip ci]

## [1.20.1-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.20.1-prerelease.1...v1.20.1-prerelease.2) (2020-04-14)

### Bug Fixes

* **nav-item:** remove active state for external links ([#484](https://github.com/carbon-design-system/ibm-security/issues/484)) ([446ac3d](https://github.com/carbon-design-system/ibm-security/commit/446ac3d79f3b3cf86ca7460bb745fb7889d26c93))

* feat(truncated-list): create component (#469)

* feat(truncated-list): create component

* refactor(filter-panel-accordion-item): use truncated list

* fix(truncated-list): toggle button styles

* fix(filter-panel-accordion): list style

* fix(truncated-list): spacing

* fix(truncated-list): add icon back in

* feat(truncated-list): remove icons

* fix(filter-panel-accordion-item): expand button label

* chore(release): 1.21.0-prerelease.1 [skip ci]

# [1.21.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.20.1-prerelease.2...v1.21.0-prerelease.1) (2020-04-15)

### Features

* **truncated-list:** create component ([#469](https://github.com/carbon-design-system/ibm-security/issues/469)) ([886a173](https://github.com/carbon-design-system/ibm-security/commit/886a173cffea9fbea43a2360ef3208e728338f31))

* docs(storybook): update storybook sidebar with package info and version (#488)

* docs(storybook): update storybook sidebar with package info and version

* docs(storybook): wrap text in brandTitle in code tag

* fix(theme): add CSS custom property flag (#464)

* fix(theme): add CSS custom property flag

* fix(theme): add CSS custom property flag

* docs(theme): update copyright information

* fix(themes): create unique flag

* docs(theme): add comment for theme generation

* docs(themes): update feature flag documentation

* docs(themes): update feature flag documentation

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.21.0-prerelease.2 [skip ci]

# [1.21.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0-prerelease.1...v1.21.0-prerelease.2) (2020-04-16)

### Bug Fixes

* **theme:** add CSS custom property flag ([#464](https://github.com/carbon-design-system/ibm-security/issues/464)) ([ec620d1](https://github.com/carbon-design-system/ibm-security/commit/ec620d178b7d357a3b38d8b2875355e60a670684))

* test(scss): update script to include all potential imports (#474)

* test(scss): update script to include all potential imports

* test(scss): update script to include all potential imports

* test(scss): update script to include all potential imports

* chore(glob): add offline dependency

Co-authored-by: Jen Downs <[email protected]>

* Allow link to open in new tab on error page (#480)

* Allow link to open in new tab on error page

* Update src/components/ErrorPage/ErrorPage.js

Co-Authored-By: Jen Downs <[email protected]>

* open in same tab if external is false, and new tab if external is true

Co-authored-by: Jen Downs <[email protected]>

* fix(scss): fix broken imports (#494)

* chore(release): 1.21.0-prerelease.3 [skip ci]

# [1.21.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0-prerelease.2...v1.21.0-prerelease.3) (2020-04-20)

### Bug Fixes

* **scss:** fix broken imports ([#494](https://github.com/carbon-design-system/ibm-security/issues/494)) ([9965e09](https://github.com/carbon-design-system/ibm-security/commit/9965e09121ebb495bde90a61edd7853441d8f71e))

* fix(themes): add token ignore list for CSS custom properties (#492)

* fix(theme): add CSS custom property flag

* fix(theme): add CSS custom property flag

* docs(theme): update copyright information

* fix(themes): create unique flag

* docs(theme): add comment for theme generation

* chore: initial commit

* docs(themes): update feature flag documentation

* docs(themes): update feature flag documentation

* fix(tokens): create theming blacklist

* fix(themes): add blacklist for CSS custom property generation

* fix(tokens): filter by color

* fix(tokens): filter by color

* fix(themes): update variable naming

* chore(release): 1.21.0-prerelease.4 [skip ci]

# [1.21.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0-prerelease.3...v1.21.0-prerelease.4) (2020-04-20)

### Bug Fixes

* **themes:** add token ignore list for CSS custom properties ([#492](https://github.com/carbon-design-system/ibm-security/issues/492)) ([52efd0c](https://github.com/carbon-design-system/ibm-security/commit/52efd0cb5afba7d23571c74fac24ad95fc76e3ef))

* chore(release): 1.21.0 [skip ci]

# [1.21.0](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0...v1.21.0) (2020-04-21)

### Bug Fixes

* **nav-item:** remove active state for external links ([#484](https://github.com/carbon-design-system/ibm-security/issues/484)) ([446ac3d](https://github.com/carbon-design-system/ibm-security/commit/446ac3d79f3b3cf86ca7460bb745fb7889d26c93))
* **reset:** ensure reset is not compiled in output CSS ([#465](https://github.com/carbon-design-system/ibm-security/issues/465)) ([d7c7ebb](https://github.com/carbon-design-system/ibm-security/commit/d7c7ebbb6dc7133a876088b97c6af76be4f55c28))
* **scss:** fix broken imports ([#494](https://github.com/carbon-design-system/ibm-security/issues/494)) ([9965e09](https://github.com/carbon-design-system/ibm-security/commit/9965e09121ebb495bde90a61edd7853441d8f71e))
* **theme:** add CSS custom property flag ([#464](https://github.com/carbon-design-system/ibm-security/issues/464)) ([ec620d1](https://github.com/carbon-design-system/ibm-security/commit/ec620d178b7d357a3b38d8b2875355e60a670684))
* **themes:** add token ignore list for CSS custom properties ([#492](https://github.com/carbon-design-system/ibm-security/issues/492)) ([52efd0c](https://github.com/carbon-design-system/ibm-security/commit/52efd0cb5afba7d23571c74fac24ad95fc76e3ef))

### Features

* **truncated-list:** create component ([#469](https://github.com/carbon-design-system/ibm-security/issues/469)) ([886a173](https://github.com/carbon-design-system/ibm-security/commit/886a173cffea9fbea43a2360ef3208e728338f31))

* feat(button): permit disable toggle for `loading` (#495)

* fix(button): permit disable toggle for `loading`

* fix(button): permit disable toggle for `loading`

* fix(themes): update variable naming

* docs(button): update `loading` prop description

* chore(release): 1.22.0-prerelease.1 [skip ci]

# [1.22.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0...v1.22.0-prerelease.1) (2020-04-22)

### Features

* **button:** permit disable toggle for `loading` ([#495](https://github.com/carbon-design-system/ibm-security/issues/495)) ([f61b900](https://github.com/carbon-design-system/ibm-security/commit/f61b900351308f4b39019173a6263fbb033022f7))

* fix(theme): move ignore list to variables for use across partials (#502)

* chore(release): 1.22.0-prerelease.2 [skip ci]

# [1.22.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0-prerelease.1...v1.22.0-prerelease.2) (2020-04-22)

### Bug Fixes

* **theme:** move ignore list to variables for use across partials ([#502](https://github.com/carbon-design-system/ibm-security/issues/502)) ([ca89c83](https://github.com/carbon-design-system/ibm-security/commit/ca89c8373dc1ecf142adb7f61469979bf7e86b9d))

* fix(breadcrumb): reset containing `ol` browser defaults (#505)

* chore(release): 1.22.0-prerelease.3 [skip ci]

# [1.22.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0-prerelease.2...v1.22.0-prerelease.3) (2020-04-23)

### Bug Fixes

* **breadcrumb:** reset containing `ol` browser defaults ([#505](https://github.com/carbon-design-system/ibm-security/issues/505)) ([dc1d689](https://github.com/carbon-design-system/ibm-security/commit/dc1d689e9649aad89641910041966476d1c5216f))

* test(filter-panel): prevent extra attrs from generating warnings in tests (#510)

* chore(release): 1.22.0 [skip ci]

# [1.22.0](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0...v1.22.0) (2020-04-28)

### Bug Fixes

* **breadcrumb:** reset containing `ol` browser defaults ([#505](https://github.com/carbon-design-system/ibm-security/issues/505)) ([dc1d689](https://github.com/carbon-design-system/ibm-security/commit/dc1d689e9649aad89641910041966476d1c5216f))
* **theme:** move ignore list to variables for use across partials ([#502](https://github.com/carbon-design-system/ibm-security/issues/502)) ([ca89c83](https://github.com/carbon-design-system/ibm-security/commit/ca89c8373dc1ecf142adb7f61469979bf7e86b9d))

### Features

* **button:** permit disable toggle for `loading` ([#495](https://github.com/carbon-design-system/ibm-security/issues/495)) ([f61b900](https://github.com/carbon-design-system/ibm-security/commit/f61b900351308f4b39019173a6263fbb033022f7))

* chore: add missing required children props to test renders (#507)

* test(summary-card-footer): add children to test renders

* test(summary-card-body): add children to test renders

* test(time-indicator): add children to test render

* test(summary-card): add missing children prop to test render

* fix(tagwall): accommodate truncation in tags and list items (#513)

* fix(tagwall): accommodate truncation in tags and list items

* chore(tagwall): import carbon helper classes scss

* chore: update snapshots to reflect tagwall updates

* fix(tagwall): add title attribute

* chore: update tagwall related snapshots to reflect title attr updates

* fix(filter): import helper classes scss

* chore(release): 1.22.1-prerelease.1 [skip ci]

## [1.22.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0...v1.22.1-prerelease.1) (2020-04-29)

### Bug Fixes

* **tagwall:** accommodate truncation in tags and list items ([#513](https://github.com/carbon-design-system/ibm-security/issues/513)) ([89ee097](https://github.com/carbon-design-system/ibm-security/commit/89ee097c762f705b162339fab87b2255dae018eb))

* docs(tearsheet): add id to input in small tearsheet demo (#516)

* fix(checkbox): override border color for focus state (#518)

* fix(checkbox): override border color for focus state

* Update src/components/Checkbox/_index.scss

Co-authored-by: Simon Finney <[email protected]>

Co-authored-by: Simon Finney <[email protected]>

* chore(release): 1.22.1-prerelease.2 [skip ci]

## [1.22.1-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.1...v1.22.1-prerelease.2) (2020-04-30)

### Bug Fixes

* **checkbox:** override border color for focus state ([#518](https://github.com/carbon-design-system/ibm-security/issues/518)) ([fd6c682](https://github.com/carbon-design-system/ibm-security/commit/fd6c68209d587e5dfd975005d3de8dfc4f46e8bc))

* docs(radio-button): remove checked knob from story so component is interactive (#520)

* fix(transition): migrate internals (#503)

* fix(transition): migrate internals

* fix(transition): migrate internals

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.22.1-prerelease.3 [skip ci]

## [1.22.1-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.2...v1.22.1-prerelease.3) (2020-05-03)

### Bug Fixes

* **transition:** migrate internals ([#503](https://github.com/carbon-design-system/ibm-security/issues/503)) ([03a0bb3](https://github.com/carbon-design-system/ibm-security/commit/03a0bb3799a6240ab0f5e00489ab6d991eb4ad86))

* fix(data-table): prevent overflow cell `z-index` from leaking (#499)

* chore(release): 1.22.1-prerelease.4 [skip ci]

## [1.22.1-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.3...v1.22.1-prerelease.4) (2020-05-06)

### Bug Fixes

* **data-table:** prevent overflow cell `z-index` from leaking ([#499](https://github.com/carbon-design-system/ibm-security/issues/499)) ([4ca6105](https://github.com/carbon-design-system/ibm-security/commit/4ca6105de22e670fce8af38de45c39e0f52757b5))

* fix(date-picker): update hardcoded color values to tokens (#528)

* chore(release): 1.22.1-prerelease.5 [skip ci]

## [1.22.1-prerelease.5](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.4...v1.22.1-prerelease.5) (2020-05-07)

### Bug Fixes

* **date-picker:** update hardcoded color values to tokens ([#528](https://github.com/carbon-design-system/ibm-security/issues/528)) ([1b23efa](https://github.com/carbon-design-system/ibm-security/commit/1b23efa2400f49128eec3e0f79a44f2ec82febf6))

* fix(stacked-notification): improve proptype info and clear proptype errors (#508)

* test(stacked-notification): add missing status icon description prop to tests

* fix(stacked-notification): include StatusIconDescription prop and improve proptype info

* fix(stacked-notification): update iconDescription prop

* chore: update public api snapshot to reflect proptype changes

* chore(release): 1.22.1-prerelease.6 [skip ci]

## [1.22.1-prerelease.6](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.5...v1.22.1-prerelease.6) (2020-05-08)

### Bug Fixes

* **stacked-notification:** improve proptype info and clear proptype errors ([#508](https://github.com/carbon-design-system/ibm-security/issues/508)) ([2b1ad19](https://github.com/carbon-design-system/ibm-security/commit/2b1ad19c9af91969e2e11df84bc7295fa68ee13e))

* fix(type-layout): use `ui-03` for subtle border (#527)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.22.1-prerelease.7 [skip ci]

## [1.22.1-prerelease.7](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.6...v1.22.1-prerelease.7) (2020-05-08)

### Bug Fixes

* **type-layout:** use `ui-03` for subtle border ([#527](https://github.com/carbon-design-system/ibm-security/issues/527)) ([436fd6f](https://github.com/carbon-design-system/ibm-security/commit/436fd6f787849a500bf92a17f5497269c684e30c))

* fix(nav): update type checking for rhl (#522)

* fix(nav): update type checking for rhl

* fix(nav): compare child component name before rendering navlist

* chore(release): 1.22.1-prerelease.8 [skip ci]

## [1.22.1-prerelease.8](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.7...v1.22.1-prerelease.8) (2020-05-11)

### Bug Fixes

* **nav:** update type checking for rhl ([#522](https://github.com/carbon-design-system/ibm-security/issues/522)) ([f392831](https://github.com/carbon-design-system/ibm-security/commit/f39283183f6f87335523d52b9d3695f951b5ccd7))

* chore(release): 1.22.1 [skip ci]

## [1.22.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0...v1.22.1) (2020-05-12)

### Bug Fixes

* **checkbox:** override border color for focus state ([#518](https://github.com/carbon-design-system/ibm-security/issues/518)) ([fd6c682](https://github.com/carbon-design-system/ibm-security/commit/fd6c68209d587e5dfd975005d3de8dfc4f46e8bc))
* **data-table:** prevent overflow cell `z-index` from leaking ([#499](https://github.com/carbon-design-system/ibm-security/issues/499)) ([4ca6105](https://github.com/carbon-design-system/ibm-security/commit/4ca6105de22e670fce8af38de45c39e0f52757b5))
* **date-picker:** update hardcoded color values to tokens ([#528](https://github.com/carbon-design-system/ibm-security/issues/528)) ([1b23efa](https://github.com/carbon-design-system/ibm-security/commit/1b23efa2400f49128eec3e0f79a44f2ec82febf6))
* **nav:** update type checking for rhl ([#522](https://github.com/carbon-design-system/ibm-security/issues/522)) ([f392831](https://github.com/carbon-design-system/ibm-security/commit/f39283183f6f87335523d52b9d3695f951b5ccd7))
* **stacked-notification:** improve proptype info and clear proptype errors ([#508](https://github.com/carbon-design-system/ibm-security/issues/508)) ([2b1ad19](https://github.com/carbon-design-system/ibm-security/commit/2b1ad19c9af91969e2e11df84bc7295fa68ee13e))
* **tagwall:** accommodate truncation in tags and list items ([#513](https://github.com/carbon-design-system/ibm-security/issues/513)) ([89ee097](https://github.com/carbon-design-system/ibm-security/commit/89ee097c762f705b162339fab87b2255dae018eb))
* **transition:** migrate internals ([#503](https://github.com/carbon-design-system/ibm-security/issues/503)) ([03a0bb3](https://github.com/carbon-design-system/ibm-security/commit/03a0bb3799a6240ab0f5e00489ab6d991eb4ad86))
* **type-layout:** use `ui-03` for subtle border ([#527](https://github.com/carbon-design-system/ibm-security/issues/527)) ([436fd6f](https://github.com/carbon-design-system/ibm-security/commit/436fd6f787849a500bf92a17f5497269c684e30c))

* fix(loading-message): display message with overlay (#500)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.22.2-prerelease.1 [skip ci]

## [1.22.2-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1...v1.22.2-prerelease.1) (2020-05-12)

### Bug Fixes

* **loading-message:** display message with overlay ([#500](https://github.com/carbon-design-system/ibm-security/issues/500)) ([3602fa8](https://github.com/carbon-design-system/ibm-security/commit/3602fa81ccf2870dd1e039dc86d446a8568d4c07))

* fix(decorator): update icons, add critical severity (#532)

* fix(decorator): update severity icons, add critical icon for max score

* fix(data-decorator): remove unused constants file

* fix(decorator): update critical icon

* fix(decorator): update unknown svg

* fix(data-decorator): restore constants file

* chore(release): 1.22.2-prerelease.2 [skip ci]

## [1.22.2-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.22.2-prerelease.1...v1.22.2-prerelease.2) (2020-05-12)

### Bug Fixes

* **decorator:** update icons, add critical severity ([#532](https://github.com/carbon-design-system/ibm-security/issues/532)) ([8a5a9f1](https://github.com/carbon-design-system/ibm-security/commit/8a5a9f1025b4d9c21007f7daa8315e54c3a2ce53))

* feat(google-analytics): add property (#506)

* feat(google-analytics): add property

* feat(analytics): test environment deploy

* feat(analytics): test environment deploy

* feat(analytics): test environment deploy

* feat(analytics): add conditional to initialise on `master`

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.23.0-prerelease.1 [skip ci]

# [1.23.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.2-prerelease.2...v1.23.0-prerelease.1) (2020-05-13)

### Features

* **google-analytics:** add property ([#506](https://github.com/carbon-design-system/ibm-security/issues/506)) ([8fbccfe](https://github.com/carbon-design-system/ibm-security/commit/8fbccfe18bde43bffcbdc897d73b88882bf13280))

* docs(select): fix story file comment (#538)

* feat(filter-panel-checkbox-with-overflow-menu): create component (#486)

* feat(filter-panel-checkbox-with-overflow-menu): create

* refactor(filter-panel-checkbox-with-overflow-menu): use cleaner focus logic

* feat(focus): create and utilize component focus hook

* feat(filter-panel-checkbox-withh-overflow-menu):  match container width

* fix(filter-panel-checkbox-withh-overflow-menu): position bug

* fix(filter-panel-search): blur delay to give users more time

* test(filter-panel-checkbox-with-overflow-menu): wip a11y fix

* test: wip

* fix: address changes requested

* revert(npm): testing dependency updates

* chore: remove yarn report

* revert(yarn): offline file changes

* revert(yarn): lockfile updates

* fix(filter-panel-checkbox-with-overflow-menu): remove unnecessary props

* test: fix broken changes

* fix(storybook): more info links

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.23.0-prerelease.2 [skip ci]

# [1.23.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0-prerelease.1...v1.23.0-prerelease.2) (2020-05-15)

### Features

* **filter-panel-checkbox-with-overflow-menu:** create component ([#486](https://github.com/carbon-design-system/ibm-security/issues/486)) ([d9631d3](https://github.com/carbon-design-system/ibm-security/commit/d9631d38911027906351872aa2498f1474a04d4a))

* feat(tearsheet): add ability to remove sidebar (#540)

* chore(release): 1.23.0-prerelease.3 [skip ci]

# [1.23.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0-prerelease.2...v1.23.0-prerelease.3) (2020-05-15)

### Features

* **tearsheet:** add ability to remove sidebar ([#540](https://github.com/carbon-design-system/ibm-security/issues/540)) ([9d7c928](https://github.com/carbon-design-system/ibm-security/commit/9d7c9284a53ffdf8ddce53d971eda24968e1509e))

* chore(release): 1.23.0 [skip ci]

# [1.23.0](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1...v1.23.0) (2020-05-19)

### Bug Fixes

* **decorator:** update icons, add critical severity ([#532](https://github.com/carbon-design-system/ibm-security/issues/532)) ([8a5a9f1](https://github.com/carbon-design-system/ibm-security/commit/8a5a9f1025b4d9c21007f7daa8315e54c3a2ce53))
* **loading-message:** display message with overlay ([#500](https://github.com/carbon-design-system/ibm-security/issues/500)) ([3602fa8](https://github.com/carbon-design-system/ibm-security/commit/3602fa81ccf2870dd1e039dc86d446a8568d4c07))

### Features

* **filter-panel-checkbox-with-overflow-menu:** create component ([#486](https://github.com/carbon-design-system/ibm-security/issues/486)) ([d9631d3](https://github.com/carbon-design-system/ibm-security/commit/d9631d38911027906351872aa2498f1474a04d4a))
* **google-analytics:** add property ([#506](https://github.com/carbon-design-system/ibm-security/issues/506)) ([8fbccfe](https://github.com/carbon-design-system/ibm-security/commit/8fbccfe18bde43bffcbdc897d73b88882bf13280))
* **tearsheet:** add ability to remove sidebar ([#540](https://github.com/carbon-design-system/ibm-security/issues/540)) ([9d7c928](https://github.com/carbon-design-system/ibm-security/commit/9d7c9284a53ffdf8ddce53d971eda24968e1509e))

* fix(decorator): change interactive decorator text color (#537)

* fix(decorator): change interactive decorator text color

* fix(decorator): update styles

* fix(decorator): remove bx--link class and update styles

* fix(decorator): move active type style

* fix(decorator): fix typo and move style

* chore(release): 1.23.1-prerelease.1 [skip ci]

## [1.23.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0...v1.23.1-prerelease.1) (2020-05-19)

### Bug Fixes

* **decorator:** change interactive decorator text color ([#537](https://github.com/carbon-design-system/ibm-security/issues/537)) ([092d486](https://github.com/carbon-design-system/ibm-security/commit/092d4866335bb1df640f7bb03182e5be1bc6acaa))

* test(a11y): replace aat package with accessibility-checker (#547)

* test(a11y): replace aat package with accessibility-checker

* test(a11y): formatting config file

* chore: commit yarn offline file

* feat(tagwall): apply id to each tag, allow extra attrs for tags (#531)

* fix(tagwall): apply id from items prop to tags, allow extra tag props

* fix(tagwall): adjust tag styles so text and close btn are not centered

* test(tagwall): update snapshots to reflect prop changes

* fix(tagwall): update proptype and snapshot

* test(tagwall): update snapshot

* chore(release): 1.24.0-prerelease.1 [skip ci]

# [1.24.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.23.1-prerelease.1...v1.24.0-prerelease.1) (2020-05-20)

### Features

* **tagwall:** apply id to each tag, allow extra attrs for tags ([#531](https://github.com/carbon-design-system/ibm-security/issues/531)) ([a09614e](https://github.com/carbon-design-system/ibm-security/commit/a09614e22a7af4f4d41cfa27ab0f41d460096343))

* fix(combo-button): use id for keys, allow id attr, update stories (#548)

* fix(combo-button): use id for keys, allow id attr, update stories

* docs(combo-button): add id to story demo

* test(combo-button): include id in tests, update snapshots

* chore(release): 1.24.0-prerelease.2 [skip ci]

# [1.24.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0-prerelease.1...v1.24.0-prerelease.2) (2020-05-21)

### Bug Fixes

* **combo-button:** use id for keys, allow id attr, update stories ([#548](https://github.com/carbon-design-system/ibm-security/issues/548)) ([769e957](https://github.com/carbon-design-system/ibm-security/commit/769e957adc29e5307fe4261194112b3972cd9821))

* fix(storybook): add keys to theme components (#550)

* chore(release): 1.24.0-prerelease.3 [skip ci]

# [1.24.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0-prerelease.2...v1.24.0-prerelease.3) (2020-05-21)

### Bug Fixes

* **storybook:** add keys to theme components ([#550](https://github.com/carbon-design-system/ibm-security/issues/550)) ([c01d328](https://github.com/carbon-design-system/ibm-security/commit/c01d328c59abc3e80a410932fd25f280a30d12f0))

* fix(card): add spread attribute to component wrapper (#559)

* chore(release): 1.24.0-prerelease.4 [skip ci]

# [1.24.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0-prerelease.3...v1.24.0-prerelease.4) (2020-05-25)

### Bug Fixes

* **card:** add spread attribute to component wrapper ([#559](https://github.com/carbon-design-system/ibm-security/issues/559)) ([e0466fb](https://github.com/carbon-design-system/ibm-security/commit/e0466fbe6210ef9546181c8a005d8e2a184d1101))

* chore(release): 1.24.0 [skip ci]

# [1.24.0](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0...v1.24.0) (2020-05-26)

### Bug Fixes

* **card:** add spread attribute to component wrapper ([#559](https://github.com/carbon-design-system/ibm-security/issues/559)) ([e0466fb](https://github.com/carbon-design-system/ibm-security/commit/e0466fbe6210ef9546181c8a005d8e2a184d1101))
* **combo-button:** use id for keys, allow id attr, update stories ([#548](https://github.com/carbon-design-system/ibm-security/issues/548)) ([769e957](https://github.com/carbon-design-system/ibm-security/commit/769e957adc29e5307fe4261194112b3972cd9821))
* **decorator:** change interactive decorator text color ([#537](https://github.com/carbon-design-system/ibm-security/issues/537)) ([092d486](https://github.com/carbon-design-system/ibm-security/commit/092d4866335bb1df640f7bb03182e5be1bc6acaa))
* **storybook:** add keys to theme components ([#550](https://github.com/carbon-design-system/ibm-security/issues/550)) ([c01d328](https://github.com/carbon-design-system/ibm-security/commit/c01d328c59abc3e80a410932fd25f280a30d12f0))

### Features

* **tagwall:** apply id to each tag, allow extra attrs for tags ([#531](https://github.com/carbon-design-system/ibm-security/issues/531)) ([a09614e](https://github.com/carbon-design-system/ibm-security/commit/a09614e22a7af4f4d41cfa27ab0f41d460096343))

* fix(header): inherit height to accommodate breadcrumb shadow (#554)

* fix(header): inherit height to accommodate breadcrumb shadow

* fix(header): inherit height to accommodate breadcrumb shadow

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.24.1-prerelease.1 [skip ci]

## [1.24.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0...v1.24.1-prerelease.1) (2020-05-26)

### Bug Fixes

* **header:** inherit height to accommodate breadcrumb shadow ([#554](https://github.com/carbon-design-system/ibm-security/issues/554)) ([0d0e048](https://github.com/carbon-design-system/ibm-security/commit/0d0e048cb247fa17b3f3e2bed72dec47852f4944))

* feat(filter-panel): allow for string counts (#567)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.25.0-prerelease.1 [skip ci]

# [1.25.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.24.1-prerelease.1...v1.25.0-prerelease.1) (2020-05-26)

### Features

* **filter-panel:** allow for string counts ([#567](https://github.com/carbon-design-system/ibm-security/issues/567)) ([6a02cc0](https://github.com/carbon-design-system/ibm-security/commit/6a02cc01ad3341c76fe1953dc9554f6e460268ab))

* fix(data-table): fix sorting styles (#570)

* chore(release): 1.25.0-prerelease.2 [skip ci]

# [1.25.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.1...v1.25.0-prerelease.2) (2020-05-27)

### Bug Fixes

* **data-table:** fix sorting styles ([#570](https://github.com/carbon-design-system/ibm-security/issues/570)) ([4be9cb3](https://github.com/carbon-design-system/ibm-security/commit/4be9cb37540d4a285e777ecf40d2156b525c6bb0))

* build(storybook): remove static assets from package (#560)

* fix(wizard): add className prop and spread attribute (#572)

* fix(wizard): add className prop and spread attribute

* chore: update snapshots to reflect recent changes

* docs(carbon): add issue template (#574)

* chore(release): 1.25.0-prerelease.3 [skip ci]

# [1.25.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.2...v1.25.0-prerelease.3) (2020-05-28)

### Bug Fixes

* **wizard:** add className prop and spread attribute ([#572](https://github.com/carbon-design-system/ibm-security/issues/572)) ([0655fec](https://github.com/carbon-design-system/ibm-security/commit/0655fec5ffa4dcd2a13f22433e15cdd9b9a91bc6))

* feat(filter-panel): use new heading prop, change title prop to string (#558)

* feat(filter-panel): add new prop for title attribute on filter panel labels

* docs(filter-panel): update story with new prop usage

* fix(filter-panel): update prop desc

* feat(filter-panel): add heading node prop and update title prop

* chore: update public api snapshot

* fix(filter-panel): add title prop to checkbox

* test(filter-panel): update tests to reflect changes to heading and title props

* test(filter-panel): update tests

* test(filter-panel): add test for title node

* fix(filter-panel): set filter panel label's title to undefined by default

* docs(filter-panel): add title prop to fitlerpanelcheckbox in story, cleanup story

* chore: update public api snapshot

* docs(filter-panel): update stories

* fix(filter-panel): set accordion title prop to undefined by default

* chore(release): 1.25.0-prerelease.4 [skip ci]

# [1.25.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.3...v1.25.0-prerelease.4) (2020-05-28)

### Features

* **filter-panel:** use new heading prop, change title prop to string ([#558](https://github.com/carbon-design-system/ibm-security/issues/558)) ([1fc986f](https://github.com/carbon-design-system/ibm-security/commit/1fc986ffac4ee4912bc7cbc9991c6109a613917b))

* chore: merge `dev` into `next`

* test(scss): add SCSS testing suite and snapshot (#578)

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(scss): add import tests

* test(scss): update snapshot test to match CI

* test(scss): update snapshot test to match CI

* chore: ignore `css-gridish`

* test: defer init of accessibility-checker and update the jest test command (#581)

* test: update ci test command

* test: upgrade accessibility-checker package and config

* chore: commit updated offline mirror files

* test: update test timeout

* test: defer initialization of accessibility-checker

* test: update test command

* test: revert defer initialization of accessibility-checker

* test: defer initialization of accessibility-checker, use default timeout for jest test

* test: restore prev accessibility-checker config

* fix(step-indicator): update hover text color (#584)

* fix(panel-content): move panel + panelv2 padding to PanelContent (#583)

* fix(panel-content): move panel + panelv2 padding to PanelContent

* chore: update scss snapshot

* chore(release): 1.25.0-prerelease.5 [skip ci]

# [1.25.0-prerelease.5](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.4...v1.25.0-prerelease.5) (2020-06-03)

### Bug Fixes

* **panel-content:** move panel + panelv2 padding to PanelContent ([#583](https://github.com/carbon-design-system/ibm-security/issues/583)) ([4c467f6](https://github.com/carbon-design-system/ibm-security/commit/4c467f6bb80422d880f1606101db35636d247750))
* **step-indicator:** update hover text color ([#584](https://github.com/carbon-design-system/ibm-security/issues/584)) ([e76a2d9](https://github.com/carbon-design-system/ibm-security/commit/e76a2d9a320bc391d445337f0926f3f56a260d1d))

* chore(a11y): update configuration (#585)

* chore(release): 1.25.0 [skip ci]

# [1.25.0](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0...v1.25.0) (2020-06-03)

### Bug Fixes

* **data-table:** fix sorting styles ([#570](https://github.com/carbon-design-system/ibm-security/issues/570)) ([4be9cb3](https://github.com/carbon-design-system/ibm-security/commit/4be9cb37540d4a285e777ecf40d2156b525c6bb0))
* **header:** inherit height to accommodate breadcrumb shadow ([#554](https://github.com/carbon-design-system/ibm-security/issues/554)) ([0d0e048](https://github.com/carbon-design-system/ibm-security/commit/0d0e048cb247fa17b3f3e2bed72dec47852f4944))
* **panel-content:** move panel + panelv2 padding to PanelContent ([#583](https://github.com/carbon-design-system/ibm-security/issues/583)) ([4c467f6](https://github.com/carbon-design-system/ibm-security/commit/4c467f6bb80422d880f1606101db35636d247750))
* **step-indicator:** update hover text color ([#584](https://github.com/carbon-design-system/ibm-security/issues/584)) ([e76a2d9](https://github.com/carbon-design-system/ibm-security/commit/e76a2d9a320bc391d445337f0926f3f56a260d1d))
* **wizard:** add className prop and spread attribute ([#572](https://github.com/carbon-design-system/ibm-security/issues/572)) ([0655fec](https://github.com/carbon-design-system/ibm-security/commit/0655fec5ffa4dcd2a13f22433e15cdd9b9a91bc6))

### Features

* **filter-panel:** allow for string counts ([#567](https://github.com/carbon-design-system/ibm-security/issues/567)) ([6a02cc0](https://github.com/carbon-design-system/ibm-security/commit/6a02cc01ad3341c76fe1953dc9554f6e460268ab))
* **filter-panel:** use new heading prop, change title prop to string ([#558](https://github.com/carbon-design-system/ibm-security/issues/558)) ([1fc986f](https://github.com/carbon-design-system/ibm-security/commit/1fc986ffac4ee4912bc7cbc9991c6109a613917b))

* chore: merge `dev` into `next`

* chore: merge `dev` into `next`

* chore: upgrade Node version

* chor…
SimonFinney added a commit that referenced this pull request Jul 23, 2020
* fix: restructure individual styles (#63)

* fix: remove global sass references and fast sass loader (#36)

* fix(accordion): make component styles modular (#41)

* fix: remove global sass references and fast sass loader

* fix(accordion): make component styles modular

* chore: use relevant type package

* fix: modular styles for proxied components (#45)

* fix: remove global sass references and fast sass loader

* fix: modular styles for proxied components

* chore: add theme tokens

* fix(shell): restructure shell styles (#42)

* fix(shell): restructure shell styles

* fix(storybook): modularise container imports

* fix(themes): fix themes reference

* refactor(themes): rename imports

* fix: modular styles for tag, tagwall, panel, tearsheet (#83)

* fix: remove global sass references and fast sass loader

* fix(tag): modularise styles

* fix(tagwall): modularise styles

* fix(tagwallfilter): modular styles

* fix(tearsheet): modular styles

* fix(tearsheet): remove background mixin

* fix(portal): modular styles

* fix(panel): modular styles

* fix(tagwallfilter): add text input to mixins

* fix: scrolling on tearsheet

* chore: remove underscore

* fix(scrollgradient): update for isolated  styles

* chore: updates based on PR feedback

* chore: add mini-units mixins and fix broken partial import

* chore(modular-styles): add multiple components (#114)

* fix(card): modularise styles

* chore(modular-styles): add card, delimited list, error page, external link, etc.

* chore(combo-buton): modularise styles

* feat(styles): modularise multiple component styles (#167)

* fix(ica): modularise styles

* fix(non-entitled-section): modularise styles

* fix(notification): modularise component styles

* fix(pill): modularise styles

* fix(search-bar): modularise styles

* feat(modular-styles): modularise components (#185)

* feat(modular-styles): modularise components

* fix(styles): add prefix import

* chore: fix Yarn dependencies

* feat(modular-styles): add remaining imports, update source import (#241)

* feat(modular-styles): update `DatePicker`, `Tile`, and `Toggle`

* feat(modular-styles): add multiple components

* fix(modular-styles): fix import

* feat(modular-styles): finalise imports

* docs(theme): update Storybook imports

* chore: format styles

* fix(theme): revert order (#432)

* fix(date-picker): revert styles (#431)

Co-authored-by: j1mie <[email protected]>

* chore(release): 1.18.1-prerelease.8 [skip ci]

## [1.18.1-prerelease.8](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.7...v1.18.1-prerelease.8) (2020-03-12)

### Bug Fixes

* restructure individual styles ([#63](https://github.com/carbon-design-system/ibm-security/issues/63)) ([d41ef37](https://github.com/carbon-design-system/ibm-security/commit/d41ef379c6339d1b8ad5588349aa9c0ae2b58ef8)), closes [#36](https://github.com/carbon-design-system/ibm-security/issues/36) [#41](https://github.com/carbon-design-system/ibm-security/issues/41) [#45](https://github.com/carbon-design-system/ibm-security/issues/45) [#42](https://github.com/carbon-design-system/ibm-security/issues/42) [#83](https://github.com/carbon-design-system/ibm-security/issues/83) [#114](https://github.com/carbon-design-system/ibm-security/issues/114) [#167](https://github.com/carbon-design-system/ibm-security/issues/167) [#185](https://github.com/carbon-design-system/ibm-security/issues/185) [#241](https://github.com/carbon-design-system/ibm-security/issues/241) [#432](https://github.com/carbon-design-system/ibm-security/issues/432) [#431](https://github.com/carbon-design-system/ibm-security/issues/431)

* fix(portal): replace old snapshots with a11y & event bubbling tests (#380)

* fix(portal): update test structure, remove old snapshots

* fix(portal): update portal tests

* fix(portal): update tests

* fix(portal): update event bubbling tests

* fix(portal): remove initialFocus test

* fix(portal): restore file comments to test file

* fix(portal): update test id for stopPropagationEvents

* test(portal): remove cleanup from tests

* chore(release): 1.18.1-prerelease.9 [skip ci]

## [1.18.1-prerelease.9](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.8...v1.18.1-prerelease.9) (2020-03-13)

### Bug Fixes

* **portal:** replace old snapshots with a11y & event bubbling tests ([#380](https://github.com/carbon-design-system/ibm-security/issues/380)) ([ac5fbef](https://github.com/carbon-design-system/ibm-security/commit/ac5fbefbfb9a3db54dc56e38c53bd643d0432a96))

* fix(nonentitled-section): add a11y test, fix issue with repeated alt attribute value (#357)

* fix(nonentitled-section): add a11y test and remove snapshots

* fix(nonentitled-section): a11y issue with link image

* fix(ne-section: add tests for additional props, remove unused prop

* Update src/components/NonEntitledSection/__tests__/NonEntitledSection.spec.js

Co-Authored-By: Diego Hernandez <[email protected]>

Co-authored-by: Diego Hernandez <[email protected]>

* chore(release): 1.18.1-prerelease.10 [skip ci]

## [1.18.1-prerelease.10](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.9...v1.18.1-prerelease.10) (2020-03-13)

### Bug Fixes

* **nonentitled-section:** add a11y test, fix issue with repeated alt attribute value ([#357](https://github.com/carbon-design-system/ibm-security/issues/357)) ([3c9f1dd](https://github.com/carbon-design-system/ibm-security/commit/3c9f1ddb91502bc4382636c7eb01801fa6062985))

* docs(breadcrumb): update story to reflect the same story in Carbon (#425)

Co-authored-by: Deriohig <[email protected]>

* fix(card): update card and skeleton tests, update default alt attr value (#364)

* fix(card): update card tests, add a11y tests, remove snapshots, update alt attr

* fix(card): add cardskeleton a11y test

* test(card): add more tests for props

* chore(release): 1.18.1-prerelease.11 [skip ci]

## [1.18.1-prerelease.11](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.10...v1.18.1-prerelease.11) (2020-03-16)

### Bug Fixes

* **card:** update card and skeleton tests, update default alt attr value ([#364](https://github.com/carbon-design-system/ibm-security/issues/364)) ([ef3ccdf](https://github.com/carbon-design-system/ibm-security/commit/ef3ccdfaf94974ab96507434b26661cc90a59400))

* fix(data-decorator): add unit and a11y tests, remove snapshots (#348)

* fix(data-decorator): add a11y tests and remove snapshots

* fix(data-decorator): add open mock test

* fix(data-decorator): update a11y test ids

* fix(data-decorator): update tests

* fix(decorator): update tests and remove snapshots

* fix(decorator): add scoreDescription prop to describe score icon

* fix(data-decorator): ensure that scorethreshold and scoredesc props are passed to inner decorator

* test(decorator): add more rigorous tests for props etc

* fix(decorator): update default for scoreDescription prop

* test(data-decorator): use panel namespace for query selector in failing test

* chore(release): 1.18.1-prerelease.12 [skip ci]

## [1.18.1-prerelease.12](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.11...v1.18.1-prerelease.12) (2020-03-16)

### Bug Fixes

* **data-decorator:** add unit and a11y tests, remove snapshots ([#348](https://github.com/carbon-design-system/ibm-security/issues/348)) ([9b345d3](https://github.com/carbon-design-system/ibm-security/commit/9b345d3409a20da5ba155ce1c15638a1d84ddb04))

* fix(header-notification): add visible hover state to clear button (#437)

* fix(header-notification): add visible hover state and class name to clear button

* fix(header-notification): remove extra class

* chore(release): 1.18.1-prerelease.13 [skip ci]

## [1.18.1-prerelease.13](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.12...v1.18.1-prerelease.13) (2020-03-16)

### Bug Fixes

* **header-notification:** add visible hover state to clear button ([#437](https://github.com/carbon-design-system/ibm-security/issues/437)) ([59e0a22](https://github.com/carbon-design-system/ibm-security/commit/59e0a22ca846ae17b7b9fc7a84f674131bbad4f8))

* fix(stacked-notification): update tests and remove old snapshots (#381)

* fix(stacked-notification): update tests and remove old snapshots

* test(stacked-notification): add tests for all props

* chore(release): 1.18.1-prerelease.14 [skip ci]

## [1.18.1-prerelease.14](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.13...v1.18.1-prerelease.14) (2020-03-17)

### Bug Fixes

* **stacked-notification:** update tests and remove old snapshots ([#381](https://github.com/carbon-design-system/ibm-security/issues/381)) ([97e4ff3](https://github.com/carbon-design-system/ibm-security/commit/97e4ff3d636de67b0a46a5e042d38c363347e42a))

* fix(loading-message): update tests, move spread attribute  (#369)

* fix(loading-message): update tests, move spread attribute

* docs(loading-message): update loading test comments

* test(loading-message): update tests per feedback

* text(loading-message): add test if active prop is true

* test(loading-message): fix typo in test block

* test(loading-message): remove redundant test

* chore(release): 1.18.1-prerelease.15 [skip ci]

## [1.18.1-prerelease.15](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.14...v1.18.1-prerelease.15) (2020-03-17)

### Bug Fixes

* **loading-message:** update tests, move spread attribute  ([#369](https://github.com/carbon-design-system/ibm-security/issues/369)) ([d7b74e3](https://github.com/carbon-design-system/ibm-security/commit/d7b74e38ae8fa85735cec47fbb61d7771cca4639))

* fix(profile-image): add a11y tests, update test structure, add spread attribute (#386)

* fix(profile-image): add a11y tests, update test structure, add spread attribute

* test(profile-image): add tests for profile object

* chore(release): 1.18.1-prerelease.16 [skip ci]

## [1.18.1-prerelease.16](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.15...v1.18.1-prerelease.16) (2020-03-19)

### Bug Fixes

* **profile-image:** add a11y tests, update test structure, add spread attribute ([#386](https://github.com/carbon-design-system/ibm-security/issues/386)) ([9443d2e](https://github.com/carbon-design-system/ibm-security/commit/9443d2e0d61da531d056cb57de97cc75af80ae97))

* feat: update to Carbon 10.10.0 release (#417)

* feat: upgrade to carbon 10.10.0 release

* fix(filter-panel-search): update tests to use getplaceholdertext

* test(external-link): fix path to component

* test(snapshots): update snapshots to reflect carbon updates

* docs(progress-indicator): update story to reflect new vertical alignment prop

* chore: update yarn lock files

* chore(release): 1.19.0-prerelease.1 [skip ci]

# [1.19.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.18.1-prerelease.16...v1.19.0-prerelease.1) (2020-03-19)

### Features

* update to Carbon 10.10.0 release ([#417](https://github.com/carbon-design-system/ibm-security/issues/417)) ([fd29071](https://github.com/carbon-design-system/ibm-security/commit/fd2907136691e327492cd27a1bf68ddfc0efb571))

* test(api): add snapshot test for public API interface (#429)

* fix(data-table): update subcomponent exports to avoid max range callstack error

* chore: add react-is dependency

* fix(data-table): remove old exports test

* feat: add api exports snapshot test

* chore: add react-is offline file

* chore: update snapshot of public api

* chore: update public api snapshot

* test(api): update imports in public api interface test

* docs(api-test): remove eslint override

* test(api): update public api interface snapshot

* test(api): restore import placement, update snapshot

* fix(status-icon): add a11y tests, update test structure, remove old snapshots (#387)

* fix(status-icon): add a11y tests, update test structure, remove old snapshots

* test(status-icon): add tests to check each status

* test(status-icon): update test text

* test(status-icon): apply PR feedback to undefined status tests

* chore(release): 1.19.0-prerelease.2 [skip ci]

# [1.19.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.1...v1.19.0-prerelease.2) (2020-03-19)

### Bug Fixes

* **status-icon:** add a11y tests, update test structure, remove old snapshots ([#387](https://github.com/carbon-design-system/ibm-security/issues/387)) ([1d370b0](https://github.com/carbon-design-system/ibm-security/commit/1d370b0272b1f0563c8c64b48f8a90714423d61b))

* test(public-api): sort components to ignore order (#448)

* feat(exports): export `ListBox`, reformat entry point (#438)

* fix(list-box): export component, reorganise exports

* feat(exports): export Carbon, superseded by Carbon for IBM Security

* refactor(exports): revert changes

* test(public-api): update snapshot

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.19.0-prerelease.3 [skip ci]

# [1.19.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.2...v1.19.0-prerelease.3) (2020-03-20)

### Features

* **exports:** export `ListBox`, reformat entry point ([#438](https://github.com/carbon-design-system/ibm-security/issues/438)) ([373adbc](https://github.com/carbon-design-system/ibm-security/commit/373adbc62ba94c4788254f30ba152e64cb0e4c6e))

* fix(status-indicator): add a11y tests, update testing structure, apply minor fixes (#388)

* fix(status-step): add tests, fix empty desc, update label prop info

* fix(status-indicator): deprecate unused prop retry.description

* fix(status-indicator): add a11y tests and update test structure

* fix(status-step): ensure that required props are in tests

* fix(status-indicator): ensure that retry button is wrapped in li

* fix(status-indicator): ensure that statusstep in indicator tests have required props

* test(status-indicator): update indicator and step tests

* test(api): update public api interface snapshot

* chore(release): 1.19.0-prerelease.4 [skip ci]

# [1.19.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.3...v1.19.0-prerelease.4) (2020-03-23)

### Bug Fixes

* **status-indicator:** add a11y tests, update testing structure, apply minor fixes ([#388](https://github.com/carbon-design-system/ibm-security/issues/388)) ([dbf160b](https://github.com/carbon-design-system/ibm-security/commit/dbf160b04a47564db1698b043d3228872292d0d4))

* chore(release): 1.19.0 [skip ci]

# [1.19.0](https://github.com/carbon-design-system/ibm-security/compare/v1.18.0...v1.19.0) (2020-03-24)

### Bug Fixes

* **button:** update testing structure, props docs, and add a11y test ([#362](https://github.com/carbon-design-system/ibm-security/issues/362)) ([0ee20bf](https://github.com/carbon-design-system/ibm-security/commit/0ee20bfa3ae02bd4e4cef5a2a5b15ef03aca0827))
* **card:** update card and skeleton tests, update default alt attr value ([#364](https://github.com/carbon-design-system/ibm-security/issues/364)) ([ef3ccdf](https://github.com/carbon-design-system/ibm-security/commit/ef3ccdfaf94974ab96507434b26661cc90a59400))
* **checkbox-skeleton:** correctly export skeleton component ([#422](https://github.com/carbon-design-system/ibm-security/issues/422)) ([911e8f8](https://github.com/carbon-design-system/ibm-security/commit/911e8f845aff3783298827ed83ee023ffff32c71))
* **data-decorator:** add unit and a11y tests, remove snapshots ([#348](https://github.com/carbon-design-system/ibm-security/issues/348)) ([9b345d3](https://github.com/carbon-design-system/ibm-security/commit/9b345d3409a20da5ba155ce1c15638a1d84ddb04))
* **filter-panel:** add a11y tests to subcomponents, use test keyword ([#375](https://github.com/carbon-design-system/ibm-security/issues/375)) ([a04cb8f](https://github.com/carbon-design-system/ibm-security/commit/a04cb8f5e4c4ee4d4b0d5eee5c8142528fde5898))
* **header-notification:** add visible hover state to clear button ([#437](https://github.com/carbon-design-system/ibm-security/issues/437)) ([59e0a22](https://github.com/carbon-design-system/ibm-security/commit/59e0a22ca846ae17b7b9fc7a84f674131bbad4f8))
* **loading-message:** update tests, move spread attribute  ([#369](https://github.com/carbon-design-system/ibm-security/issues/369)) ([d7b74e3](https://github.com/carbon-design-system/ibm-security/commit/d7b74e38ae8fa85735cec47fbb61d7771cca4639))
* **nonentitled-section:** add a11y test, fix issue with repeated alt attribute value ([#357](https://github.com/carbon-design-system/ibm-security/issues/357)) ([3c9f1dd](https://github.com/carbon-design-system/ibm-security/commit/3c9f1ddb91502bc4382636c7eb01801fa6062985))
* **portal:** replace old snapshots with a11y & event bubbling tests ([#380](https://github.com/carbon-design-system/ibm-security/issues/380)) ([ac5fbef](https://github.com/carbon-design-system/ibm-security/commit/ac5fbefbfb9a3db54dc56e38c53bd643d0432a96))
* **profile-image:** add a11y tests, update test structure, add spread attribute ([#386](https://github.com/carbon-design-system/ibm-security/issues/386)) ([9443d2e](https://github.com/carbon-design-system/ibm-security/commit/9443d2e0d61da531d056cb57de97cc75af80ae97))
* **stacked-notification:** update tests and remove old snapshots ([#381](https://github.com/carbon-design-system/ibm-security/issues/381)) ([97e4ff3](https://github.com/carbon-design-system/ibm-security/commit/97e4ff3d636de67b0a46a5e042d38c363347e42a))
* **status-icon:** add a11y tests, update test structure, remove old snapshots ([#387](https://github.com/carbon-design-system/ibm-security/issues/387)) ([1d370b0](https://github.com/carbon-design-system/ibm-security/commit/1d370b0272b1f0563c8c64b48f8a90714423d61b))
* **status-indicator:** add a11y tests, update testing structure, apply minor fixes ([#388](https://github.com/carbon-design-system/ibm-security/issues/388)) ([dbf160b](https://github.com/carbon-design-system/ibm-security/commit/dbf160b04a47564db1698b043d3228872292d0d4))
* restructure individual styles ([#63](https://github.com/carbon-design-system/ibm-security/issues/63)) ([d41ef37](https://github.com/carbon-design-system/ibm-security/commit/d41ef379c6339d1b8ad5588349aa9c0ae2b58ef8)), closes [#36](https://github.com/carbon-design-system/ibm-security/issues/36) [#41](https://github.com/carbon-design-system/ibm-security/issues/41) [#45](https://github.com/carbon-design-system/ibm-security/issues/45) [#42](https://github.com/carbon-design-system/ibm-security/issues/42) [#83](https://github.com/carbon-design-system/ibm-security/issues/83) [#114](https://github.com/carbon-design-system/ibm-security/issues/114) [#167](https://github.com/carbon-design-system/ibm-security/issues/167) [#185](https://github.com/carbon-design-system/ibm-security/issues/185) [#241](https://github.com/carbon-design-system/ibm-security/issues/241) [#432](https://github.com/carbon-design-system/ibm-security/issues/432) [#431](https://github.com/carbon-design-system/ibm-security/issues/431)
* **string-formatter:** update tests ([#413](https://github.com/carbon-design-system/ibm-security/issues/413)) ([e5edb22](https://github.com/carbon-design-system/ibm-security/commit/e5edb225f2a0f3d1ac239832778c49a7bee399ef))
* **summary-card:** add a11y and unit tests ([#337](https://github.com/carbon-design-system/ibm-security/issues/337)) ([78ceb90](https://github.com/carbon-design-system/ibm-security/commit/78ceb9011c692fd51088403230b21b83473cf85f))
* **summary-card-action:** remove overflow hidden so tooltip can be shown ([#420](https://github.com/carbon-design-system/ibm-security/issues/420)) ([fb72d41](https://github.com/carbon-design-system/ibm-security/commit/fb72d418b1a41802fe8162cc0f10ef1ab134cb6f))
* **trending-card:** reformat tests and remove snapshots ([#346](https://github.com/carbon-design-system/ibm-security/issues/346)) ([423f352](https://github.com/carbon-design-system/ibm-security/commit/423f3529963ceb41033604adf8a108c244ba1d6c))

### Features

* **exports:** export `ListBox`, reformat entry point ([#438](https://github.com/carbon-design-system/ibm-security/issues/438)) ([373adbc](https://github.com/carbon-design-system/ibm-security/commit/373adbc62ba94c4788254f30ba152e64cb0e4c6e))
* update to Carbon 10.10.0 release ([#417](https://github.com/carbon-design-system/ibm-security/issues/417)) ([fd29071](https://github.com/carbon-design-system/ibm-security/commit/fd2907136691e327492cd27a1bf68ddfc0efb571))

* chore(lint): update browserslist and remove compat comment (#451)

* test(accordion): remove unused imported prefix (#452)

* fix(scroll-gradient): apply scroll state styles to direct children only (#454)

* fix(scroll-gradient): apply gradient styles to direct children only

* fix(scroll-gradient): apply scroll state styles to direct children only

* chore(type-layout): remove unrelated change in story

* chore(release): 1.19.0-prerelease.5 [skip ci]

# [1.19.0-prerelease.5](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.4...v1.19.0-prerelease.5) (2020-03-25)

### Bug Fixes

* **scroll-gradient:** apply scroll state styles to direct children only ([#454](https://github.com/carbon-design-system/ibm-security/issues/454)) ([9b5edab](https://github.com/carbon-design-system/ibm-security/commit/9b5edab9c35636c6e41c757bc89ccab839ef37d6))

* chore: format `dev`

* fix(step-indicator): update tests, remove old snapshots (#390)

* fix(step-indicator): add a11y test, remove old snapshots

* fix(step-indicator): clean up tests

* fix(step-indicator): add test for step custom class

* fix(step-indicator): remove unnecessary prop value change in component code

* fix(step-indicator): add test for currentStep=null

* test(step-indicator): update tests, add tests for step

* test(step-indicator): remove redundant test

* chore(release): 1.19.0-prerelease.6 [skip ci]

# [1.19.0-prerelease.6](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0-prerelease.5...v1.19.0-prerelease.6) (2020-03-27)

### Bug Fixes

* **step-indicator:** update tests, remove old snapshots ([#390](https://github.com/carbon-design-system/ibm-security/issues/390)) ([ea00783](https://github.com/carbon-design-system/ibm-security/commit/ea00783f570cbc68a85cb9d8b23538cfd93b7734))

* docs(contributing): update directions for forking the repo (#443)

* docs(contributing): update directions for forking the repo

* docs(contributing): update heading punctuation

* docs(contributing): update headings

* docs(contributing): update heading number

* docs(contributing): update heading number

* docs(contributing): update list numbering

* docs(contributing): remove extra new lines

* chore(release): 1.19.1-prerelease.1 [skip ci]

## [1.19.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0...v1.19.1-prerelease.1) (2020-03-31)

### Bug Fixes

* **scroll-gradient:** apply scroll state styles to direct children only ([#454](https://github.com/carbon-design-system/ibm-security/issues/454)) ([9b5edab](https://github.com/carbon-design-system/ibm-security/commit/9b5edab9c35636c6e41c757bc89ccab839ef37d6))
* **step-indicator:** update tests, remove old snapshots ([#390](https://github.com/carbon-design-system/ibm-security/issues/390)) ([ea00783](https://github.com/carbon-design-system/ibm-security/commit/ea00783f570cbc68a85cb9d8b23538cfd93b7734))

* chore(release): 1.19.1 [skip ci]

## [1.19.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.0...v1.19.1) (2020-03-31)

### Bug Fixes

* **scroll-gradient:** apply scroll state styles to direct children only ([#454](https://github.com/carbon-design-system/ibm-security/issues/454)) ([9b5edab](https://github.com/carbon-design-system/ibm-security/commit/9b5edab9c35636c6e41c757bc89ccab839ef37d6))
* **step-indicator:** update tests, remove old snapshots ([#390](https://github.com/carbon-design-system/ibm-security/issues/390)) ([ea00783](https://github.com/carbon-design-system/ibm-security/commit/ea00783f570cbc68a85cb9d8b23538cfd93b7734))

* fix(skip-to-content): use Carbon's SkipToContent component, update focus styles (#398)

* fix(skip-to-content): update focus styles and mimic Carbon's uishell version

* fix(skip-link): remove 0 height rule from link wrapper

* fix(skip-to-content): use carbon component and minimize styles

* fix(skip-to-content): restore top margin

* fix(skip-to-content): fix focus and left position

* fix(skip-to-content): change text color to white

* chore(release): 1.19.2-prerelease.1 [skip ci]

## [1.19.2-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.1...v1.19.2-prerelease.1) (2020-04-01)

### Bug Fixes

* **skip-to-content:** use Carbon's SkipToContent component, update focus styles ([#398](https://github.com/carbon-design-system/ibm-security/issues/398)) ([43cc09c](https://github.com/carbon-design-system/ibm-security/commit/43cc09c5382ff9668c033bdca30b3c4e1dfe5333))

* feat(decorator): deprecate inert prop and fix color contrast (#441)

* fix(decorator): update colors to be more accessibile

* fix(decorator): do not add interactive classes if inert

* fix(decorator): update snapshot

* feat(decorator): deprecate inert prop, make inert by default, update stories

* docs(themes): commit autogenerated theme doc updates

* Update src/components/DataDecorator/Decorator/Decorator.js

Co-Authored-By: Diego Hernandez <[email protected]>

* fix(decorator): inert styles by default, add interactive class, update active focus outline

* fix(decorator): update tests to reflect inert prop deprecation

* docs(decorator): capitalize word in demo

Co-authored-by: Diego Hernandez <[email protected]>

* chore(release): 1.20.0-prerelease.1 [skip ci]

# [1.20.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.19.2-prerelease.1...v1.20.0-prerelease.1) (2020-04-01)

### Features

* **decorator:** deprecate inert prop and fix color contrast ([#441](https://github.com/carbon-design-system/ibm-security/issues/441)) ([c22bbb1](https://github.com/carbon-design-system/ibm-security/commit/c22bbb110ee88b7db664be45c5a33d15e0a85035))

* feat(exports): export all Carbon components to be superseded by Carbon for IBM Security (#445)

* fix(list-box): export component, reorganise exports

* feat(exports): export Carbon, superseded by Carbon for IBM Security

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.20.0-prerelease.2 [skip ci]

# [1.20.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0-prerelease.1...v1.20.0-prerelease.2) (2020-04-02)

### Features

* **exports:** export all Carbon components to be superseded by Carbon for IBM Security ([#445](https://github.com/carbon-design-system/ibm-security/issues/445)) ([3932ed4](https://github.com/carbon-design-system/ibm-security/commit/3932ed4168da71784db659a0934efe8fbdc02008))

* fix(nav): accommodate single child (#471)

* chore(release): 1.20.0-prerelease.3 [skip ci]

# [1.20.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0-prerelease.2...v1.20.0-prerelease.3) (2020-04-03)

### Bug Fixes

* **nav:** accommodate single child ([#471](https://github.com/carbon-design-system/ibm-security/issues/471)) ([7591f11](https://github.com/carbon-design-system/ibm-security/commit/7591f113a71b3c94370272efc159172d6225d925))

* chore(release): 1.20.0 [skip ci]

# [1.20.0](https://github.com/carbon-design-system/ibm-security/compare/v1.19.1...v1.20.0) (2020-04-07)

### Bug Fixes

* **nav:** accommodate single child ([#471](https://github.com/carbon-design-system/ibm-security/issues/471)) ([7591f11](https://github.com/carbon-design-system/ibm-security/commit/7591f113a71b3c94370272efc159172d6225d925))
* **skip-to-content:** use Carbon's SkipToContent component, update focus styles ([#398](https://github.com/carbon-design-system/ibm-security/issues/398)) ([43cc09c](https://github.com/carbon-design-system/ibm-security/commit/43cc09c5382ff9668c033bdca30b3c4e1dfe5333))

### Features

* **decorator:** deprecate inert prop and fix color contrast ([#441](https://github.com/carbon-design-system/ibm-security/issues/441)) ([c22bbb1](https://github.com/carbon-design-system/ibm-security/commit/c22bbb110ee88b7db664be45c5a33d15e0a85035))
* **exports:** export all Carbon components to be superseded by Carbon for IBM Security ([#445](https://github.com/carbon-design-system/ibm-security/issues/445)) ([3932ed4](https://github.com/carbon-design-system/ibm-security/commit/3932ed4168da71784db659a0934efe8fbdc02008))

* fix(reset): ensure reset is not compiled in output CSS (#465)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.20.1-prerelease.1 [skip ci]

## [1.20.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0...v1.20.1-prerelease.1) (2020-04-07)

### Bug Fixes

* **reset:** ensure reset is not compiled in output CSS ([#465](https://github.com/carbon-design-system/ibm-security/issues/465)) ([d7c7ebb](https://github.com/carbon-design-system/ibm-security/commit/d7c7ebbb6dc7133a876088b97c6af76be4f55c28))

* fix(nav-item): remove active state for external links (#484)

* chore(release): 1.20.1-prerelease.2 [skip ci]

## [1.20.1-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.20.1-prerelease.1...v1.20.1-prerelease.2) (2020-04-14)

### Bug Fixes

* **nav-item:** remove active state for external links ([#484](https://github.com/carbon-design-system/ibm-security/issues/484)) ([446ac3d](https://github.com/carbon-design-system/ibm-security/commit/446ac3d79f3b3cf86ca7460bb745fb7889d26c93))

* feat(truncated-list): create component (#469)

* feat(truncated-list): create component

* refactor(filter-panel-accordion-item): use truncated list

* fix(truncated-list): toggle button styles

* fix(filter-panel-accordion): list style

* fix(truncated-list): spacing

* fix(truncated-list): add icon back in

* feat(truncated-list): remove icons

* fix(filter-panel-accordion-item): expand button label

* chore(release): 1.21.0-prerelease.1 [skip ci]

# [1.21.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.20.1-prerelease.2...v1.21.0-prerelease.1) (2020-04-15)

### Features

* **truncated-list:** create component ([#469](https://github.com/carbon-design-system/ibm-security/issues/469)) ([886a173](https://github.com/carbon-design-system/ibm-security/commit/886a173cffea9fbea43a2360ef3208e728338f31))

* docs(storybook): update storybook sidebar with package info and version (#488)

* docs(storybook): update storybook sidebar with package info and version

* docs(storybook): wrap text in brandTitle in code tag

* fix(theme): add CSS custom property flag (#464)

* fix(theme): add CSS custom property flag

* fix(theme): add CSS custom property flag

* docs(theme): update copyright information

* fix(themes): create unique flag

* docs(theme): add comment for theme generation

* docs(themes): update feature flag documentation

* docs(themes): update feature flag documentation

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.21.0-prerelease.2 [skip ci]

# [1.21.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0-prerelease.1...v1.21.0-prerelease.2) (2020-04-16)

### Bug Fixes

* **theme:** add CSS custom property flag ([#464](https://github.com/carbon-design-system/ibm-security/issues/464)) ([ec620d1](https://github.com/carbon-design-system/ibm-security/commit/ec620d178b7d357a3b38d8b2875355e60a670684))

* test(scss): update script to include all potential imports (#474)

* test(scss): update script to include all potential imports

* test(scss): update script to include all potential imports

* test(scss): update script to include all potential imports

* chore(glob): add offline dependency

Co-authored-by: Jen Downs <[email protected]>

* Allow link to open in new tab on error page (#480)

* Allow link to open in new tab on error page

* Update src/components/ErrorPage/ErrorPage.js

Co-Authored-By: Jen Downs <[email protected]>

* open in same tab if external is false, and new tab if external is true

Co-authored-by: Jen Downs <[email protected]>

* fix(scss): fix broken imports (#494)

* chore(release): 1.21.0-prerelease.3 [skip ci]

# [1.21.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0-prerelease.2...v1.21.0-prerelease.3) (2020-04-20)

### Bug Fixes

* **scss:** fix broken imports ([#494](https://github.com/carbon-design-system/ibm-security/issues/494)) ([9965e09](https://github.com/carbon-design-system/ibm-security/commit/9965e09121ebb495bde90a61edd7853441d8f71e))

* fix(themes): add token ignore list for CSS custom properties (#492)

* fix(theme): add CSS custom property flag

* fix(theme): add CSS custom property flag

* docs(theme): update copyright information

* fix(themes): create unique flag

* docs(theme): add comment for theme generation

* chore: initial commit

* docs(themes): update feature flag documentation

* docs(themes): update feature flag documentation

* fix(tokens): create theming blacklist

* fix(themes): add blacklist for CSS custom property generation

* fix(tokens): filter by color

* fix(tokens): filter by color

* fix(themes): update variable naming

* chore(release): 1.21.0-prerelease.4 [skip ci]

# [1.21.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0-prerelease.3...v1.21.0-prerelease.4) (2020-04-20)

### Bug Fixes

* **themes:** add token ignore list for CSS custom properties ([#492](https://github.com/carbon-design-system/ibm-security/issues/492)) ([52efd0c](https://github.com/carbon-design-system/ibm-security/commit/52efd0cb5afba7d23571c74fac24ad95fc76e3ef))

* chore(release): 1.21.0 [skip ci]

# [1.21.0](https://github.com/carbon-design-system/ibm-security/compare/v1.20.0...v1.21.0) (2020-04-21)

### Bug Fixes

* **nav-item:** remove active state for external links ([#484](https://github.com/carbon-design-system/ibm-security/issues/484)) ([446ac3d](https://github.com/carbon-design-system/ibm-security/commit/446ac3d79f3b3cf86ca7460bb745fb7889d26c93))
* **reset:** ensure reset is not compiled in output CSS ([#465](https://github.com/carbon-design-system/ibm-security/issues/465)) ([d7c7ebb](https://github.com/carbon-design-system/ibm-security/commit/d7c7ebbb6dc7133a876088b97c6af76be4f55c28))
* **scss:** fix broken imports ([#494](https://github.com/carbon-design-system/ibm-security/issues/494)) ([9965e09](https://github.com/carbon-design-system/ibm-security/commit/9965e09121ebb495bde90a61edd7853441d8f71e))
* **theme:** add CSS custom property flag ([#464](https://github.com/carbon-design-system/ibm-security/issues/464)) ([ec620d1](https://github.com/carbon-design-system/ibm-security/commit/ec620d178b7d357a3b38d8b2875355e60a670684))
* **themes:** add token ignore list for CSS custom properties ([#492](https://github.com/carbon-design-system/ibm-security/issues/492)) ([52efd0c](https://github.com/carbon-design-system/ibm-security/commit/52efd0cb5afba7d23571c74fac24ad95fc76e3ef))

### Features

* **truncated-list:** create component ([#469](https://github.com/carbon-design-system/ibm-security/issues/469)) ([886a173](https://github.com/carbon-design-system/ibm-security/commit/886a173cffea9fbea43a2360ef3208e728338f31))

* feat(button): permit disable toggle for `loading` (#495)

* fix(button): permit disable toggle for `loading`

* fix(button): permit disable toggle for `loading`

* fix(themes): update variable naming

* docs(button): update `loading` prop description

* chore(release): 1.22.0-prerelease.1 [skip ci]

# [1.22.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0...v1.22.0-prerelease.1) (2020-04-22)

### Features

* **button:** permit disable toggle for `loading` ([#495](https://github.com/carbon-design-system/ibm-security/issues/495)) ([f61b900](https://github.com/carbon-design-system/ibm-security/commit/f61b900351308f4b39019173a6263fbb033022f7))

* fix(theme): move ignore list to variables for use across partials (#502)

* chore(release): 1.22.0-prerelease.2 [skip ci]

# [1.22.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0-prerelease.1...v1.22.0-prerelease.2) (2020-04-22)

### Bug Fixes

* **theme:** move ignore list to variables for use across partials ([#502](https://github.com/carbon-design-system/ibm-security/issues/502)) ([ca89c83](https://github.com/carbon-design-system/ibm-security/commit/ca89c8373dc1ecf142adb7f61469979bf7e86b9d))

* fix(breadcrumb): reset containing `ol` browser defaults (#505)

* chore(release): 1.22.0-prerelease.3 [skip ci]

# [1.22.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0-prerelease.2...v1.22.0-prerelease.3) (2020-04-23)

### Bug Fixes

* **breadcrumb:** reset containing `ol` browser defaults ([#505](https://github.com/carbon-design-system/ibm-security/issues/505)) ([dc1d689](https://github.com/carbon-design-system/ibm-security/commit/dc1d689e9649aad89641910041966476d1c5216f))

* test(filter-panel): prevent extra attrs from generating warnings in tests (#510)

* chore(release): 1.22.0 [skip ci]

# [1.22.0](https://github.com/carbon-design-system/ibm-security/compare/v1.21.0...v1.22.0) (2020-04-28)

### Bug Fixes

* **breadcrumb:** reset containing `ol` browser defaults ([#505](https://github.com/carbon-design-system/ibm-security/issues/505)) ([dc1d689](https://github.com/carbon-design-system/ibm-security/commit/dc1d689e9649aad89641910041966476d1c5216f))
* **theme:** move ignore list to variables for use across partials ([#502](https://github.com/carbon-design-system/ibm-security/issues/502)) ([ca89c83](https://github.com/carbon-design-system/ibm-security/commit/ca89c8373dc1ecf142adb7f61469979bf7e86b9d))

### Features

* **button:** permit disable toggle for `loading` ([#495](https://github.com/carbon-design-system/ibm-security/issues/495)) ([f61b900](https://github.com/carbon-design-system/ibm-security/commit/f61b900351308f4b39019173a6263fbb033022f7))

* chore: add missing required children props to test renders (#507)

* test(summary-card-footer): add children to test renders

* test(summary-card-body): add children to test renders

* test(time-indicator): add children to test render

* test(summary-card): add missing children prop to test render

* fix(tagwall): accommodate truncation in tags and list items (#513)

* fix(tagwall): accommodate truncation in tags and list items

* chore(tagwall): import carbon helper classes scss

* chore: update snapshots to reflect tagwall updates

* fix(tagwall): add title attribute

* chore: update tagwall related snapshots to reflect title attr updates

* fix(filter): import helper classes scss

* chore(release): 1.22.1-prerelease.1 [skip ci]

## [1.22.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0...v1.22.1-prerelease.1) (2020-04-29)

### Bug Fixes

* **tagwall:** accommodate truncation in tags and list items ([#513](https://github.com/carbon-design-system/ibm-security/issues/513)) ([89ee097](https://github.com/carbon-design-system/ibm-security/commit/89ee097c762f705b162339fab87b2255dae018eb))

* docs(tearsheet): add id to input in small tearsheet demo (#516)

* fix(checkbox): override border color for focus state (#518)

* fix(checkbox): override border color for focus state

* Update src/components/Checkbox/_index.scss

Co-authored-by: Simon Finney <[email protected]>

Co-authored-by: Simon Finney <[email protected]>

* chore(release): 1.22.1-prerelease.2 [skip ci]

## [1.22.1-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.1...v1.22.1-prerelease.2) (2020-04-30)

### Bug Fixes

* **checkbox:** override border color for focus state ([#518](https://github.com/carbon-design-system/ibm-security/issues/518)) ([fd6c682](https://github.com/carbon-design-system/ibm-security/commit/fd6c68209d587e5dfd975005d3de8dfc4f46e8bc))

* docs(radio-button): remove checked knob from story so component is interactive (#520)

* fix(transition): migrate internals (#503)

* fix(transition): migrate internals

* fix(transition): migrate internals

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.22.1-prerelease.3 [skip ci]

## [1.22.1-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.2...v1.22.1-prerelease.3) (2020-05-03)

### Bug Fixes

* **transition:** migrate internals ([#503](https://github.com/carbon-design-system/ibm-security/issues/503)) ([03a0bb3](https://github.com/carbon-design-system/ibm-security/commit/03a0bb3799a6240ab0f5e00489ab6d991eb4ad86))

* fix(data-table): prevent overflow cell `z-index` from leaking (#499)

* chore(release): 1.22.1-prerelease.4 [skip ci]

## [1.22.1-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.3...v1.22.1-prerelease.4) (2020-05-06)

### Bug Fixes

* **data-table:** prevent overflow cell `z-index` from leaking ([#499](https://github.com/carbon-design-system/ibm-security/issues/499)) ([4ca6105](https://github.com/carbon-design-system/ibm-security/commit/4ca6105de22e670fce8af38de45c39e0f52757b5))

* fix(date-picker): update hardcoded color values to tokens (#528)

* chore(release): 1.22.1-prerelease.5 [skip ci]

## [1.22.1-prerelease.5](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.4...v1.22.1-prerelease.5) (2020-05-07)

### Bug Fixes

* **date-picker:** update hardcoded color values to tokens ([#528](https://github.com/carbon-design-system/ibm-security/issues/528)) ([1b23efa](https://github.com/carbon-design-system/ibm-security/commit/1b23efa2400f49128eec3e0f79a44f2ec82febf6))

* fix(stacked-notification): improve proptype info and clear proptype errors (#508)

* test(stacked-notification): add missing status icon description prop to tests

* fix(stacked-notification): include StatusIconDescription prop and improve proptype info

* fix(stacked-notification): update iconDescription prop

* chore: update public api snapshot to reflect proptype changes

* chore(release): 1.22.1-prerelease.6 [skip ci]

## [1.22.1-prerelease.6](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.5...v1.22.1-prerelease.6) (2020-05-08)

### Bug Fixes

* **stacked-notification:** improve proptype info and clear proptype errors ([#508](https://github.com/carbon-design-system/ibm-security/issues/508)) ([2b1ad19](https://github.com/carbon-design-system/ibm-security/commit/2b1ad19c9af91969e2e11df84bc7295fa68ee13e))

* fix(type-layout): use `ui-03` for subtle border (#527)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.22.1-prerelease.7 [skip ci]

## [1.22.1-prerelease.7](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.6...v1.22.1-prerelease.7) (2020-05-08)

### Bug Fixes

* **type-layout:** use `ui-03` for subtle border ([#527](https://github.com/carbon-design-system/ibm-security/issues/527)) ([436fd6f](https://github.com/carbon-design-system/ibm-security/commit/436fd6f787849a500bf92a17f5497269c684e30c))

* fix(nav): update type checking for rhl (#522)

* fix(nav): update type checking for rhl

* fix(nav): compare child component name before rendering navlist

* chore(release): 1.22.1-prerelease.8 [skip ci]

## [1.22.1-prerelease.8](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1-prerelease.7...v1.22.1-prerelease.8) (2020-05-11)

### Bug Fixes

* **nav:** update type checking for rhl ([#522](https://github.com/carbon-design-system/ibm-security/issues/522)) ([f392831](https://github.com/carbon-design-system/ibm-security/commit/f39283183f6f87335523d52b9d3695f951b5ccd7))

* chore(release): 1.22.1 [skip ci]

## [1.22.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.0...v1.22.1) (2020-05-12)

### Bug Fixes

* **checkbox:** override border color for focus state ([#518](https://github.com/carbon-design-system/ibm-security/issues/518)) ([fd6c682](https://github.com/carbon-design-system/ibm-security/commit/fd6c68209d587e5dfd975005d3de8dfc4f46e8bc))
* **data-table:** prevent overflow cell `z-index` from leaking ([#499](https://github.com/carbon-design-system/ibm-security/issues/499)) ([4ca6105](https://github.com/carbon-design-system/ibm-security/commit/4ca6105de22e670fce8af38de45c39e0f52757b5))
* **date-picker:** update hardcoded color values to tokens ([#528](https://github.com/carbon-design-system/ibm-security/issues/528)) ([1b23efa](https://github.com/carbon-design-system/ibm-security/commit/1b23efa2400f49128eec3e0f79a44f2ec82febf6))
* **nav:** update type checking for rhl ([#522](https://github.com/carbon-design-system/ibm-security/issues/522)) ([f392831](https://github.com/carbon-design-system/ibm-security/commit/f39283183f6f87335523d52b9d3695f951b5ccd7))
* **stacked-notification:** improve proptype info and clear proptype errors ([#508](https://github.com/carbon-design-system/ibm-security/issues/508)) ([2b1ad19](https://github.com/carbon-design-system/ibm-security/commit/2b1ad19c9af91969e2e11df84bc7295fa68ee13e))
* **tagwall:** accommodate truncation in tags and list items ([#513](https://github.com/carbon-design-system/ibm-security/issues/513)) ([89ee097](https://github.com/carbon-design-system/ibm-security/commit/89ee097c762f705b162339fab87b2255dae018eb))
* **transition:** migrate internals ([#503](https://github.com/carbon-design-system/ibm-security/issues/503)) ([03a0bb3](https://github.com/carbon-design-system/ibm-security/commit/03a0bb3799a6240ab0f5e00489ab6d991eb4ad86))
* **type-layout:** use `ui-03` for subtle border ([#527](https://github.com/carbon-design-system/ibm-security/issues/527)) ([436fd6f](https://github.com/carbon-design-system/ibm-security/commit/436fd6f787849a500bf92a17f5497269c684e30c))

* fix(loading-message): display message with overlay (#500)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.22.2-prerelease.1 [skip ci]

## [1.22.2-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1...v1.22.2-prerelease.1) (2020-05-12)

### Bug Fixes

* **loading-message:** display message with overlay ([#500](https://github.com/carbon-design-system/ibm-security/issues/500)) ([3602fa8](https://github.com/carbon-design-system/ibm-security/commit/3602fa81ccf2870dd1e039dc86d446a8568d4c07))

* fix(decorator): update icons, add critical severity (#532)

* fix(decorator): update severity icons, add critical icon for max score

* fix(data-decorator): remove unused constants file

* fix(decorator): update critical icon

* fix(decorator): update unknown svg

* fix(data-decorator): restore constants file

* chore(release): 1.22.2-prerelease.2 [skip ci]

## [1.22.2-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.22.2-prerelease.1...v1.22.2-prerelease.2) (2020-05-12)

### Bug Fixes

* **decorator:** update icons, add critical severity ([#532](https://github.com/carbon-design-system/ibm-security/issues/532)) ([8a5a9f1](https://github.com/carbon-design-system/ibm-security/commit/8a5a9f1025b4d9c21007f7daa8315e54c3a2ce53))

* feat(google-analytics): add property (#506)

* feat(google-analytics): add property

* feat(analytics): test environment deploy

* feat(analytics): test environment deploy

* feat(analytics): test environment deploy

* feat(analytics): add conditional to initialise on `master`

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.23.0-prerelease.1 [skip ci]

# [1.23.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.22.2-prerelease.2...v1.23.0-prerelease.1) (2020-05-13)

### Features

* **google-analytics:** add property ([#506](https://github.com/carbon-design-system/ibm-security/issues/506)) ([8fbccfe](https://github.com/carbon-design-system/ibm-security/commit/8fbccfe18bde43bffcbdc897d73b88882bf13280))

* docs(select): fix story file comment (#538)

* feat(filter-panel-checkbox-with-overflow-menu): create component (#486)

* feat(filter-panel-checkbox-with-overflow-menu): create

* refactor(filter-panel-checkbox-with-overflow-menu): use cleaner focus logic

* feat(focus): create and utilize component focus hook

* feat(filter-panel-checkbox-withh-overflow-menu):  match container width

* fix(filter-panel-checkbox-withh-overflow-menu): position bug

* fix(filter-panel-search): blur delay to give users more time

* test(filter-panel-checkbox-with-overflow-menu): wip a11y fix

* test: wip

* fix: address changes requested

* revert(npm): testing dependency updates

* chore: remove yarn report

* revert(yarn): offline file changes

* revert(yarn): lockfile updates

* fix(filter-panel-checkbox-with-overflow-menu): remove unnecessary props

* test: fix broken changes

* fix(storybook): more info links

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.23.0-prerelease.2 [skip ci]

# [1.23.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0-prerelease.1...v1.23.0-prerelease.2) (2020-05-15)

### Features

* **filter-panel-checkbox-with-overflow-menu:** create component ([#486](https://github.com/carbon-design-system/ibm-security/issues/486)) ([d9631d3](https://github.com/carbon-design-system/ibm-security/commit/d9631d38911027906351872aa2498f1474a04d4a))

* feat(tearsheet): add ability to remove sidebar (#540)

* chore(release): 1.23.0-prerelease.3 [skip ci]

# [1.23.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0-prerelease.2...v1.23.0-prerelease.3) (2020-05-15)

### Features

* **tearsheet:** add ability to remove sidebar ([#540](https://github.com/carbon-design-system/ibm-security/issues/540)) ([9d7c928](https://github.com/carbon-design-system/ibm-security/commit/9d7c9284a53ffdf8ddce53d971eda24968e1509e))

* chore(release): 1.23.0 [skip ci]

# [1.23.0](https://github.com/carbon-design-system/ibm-security/compare/v1.22.1...v1.23.0) (2020-05-19)

### Bug Fixes

* **decorator:** update icons, add critical severity ([#532](https://github.com/carbon-design-system/ibm-security/issues/532)) ([8a5a9f1](https://github.com/carbon-design-system/ibm-security/commit/8a5a9f1025b4d9c21007f7daa8315e54c3a2ce53))
* **loading-message:** display message with overlay ([#500](https://github.com/carbon-design-system/ibm-security/issues/500)) ([3602fa8](https://github.com/carbon-design-system/ibm-security/commit/3602fa81ccf2870dd1e039dc86d446a8568d4c07))

### Features

* **filter-panel-checkbox-with-overflow-menu:** create component ([#486](https://github.com/carbon-design-system/ibm-security/issues/486)) ([d9631d3](https://github.com/carbon-design-system/ibm-security/commit/d9631d38911027906351872aa2498f1474a04d4a))
* **google-analytics:** add property ([#506](https://github.com/carbon-design-system/ibm-security/issues/506)) ([8fbccfe](https://github.com/carbon-design-system/ibm-security/commit/8fbccfe18bde43bffcbdc897d73b88882bf13280))
* **tearsheet:** add ability to remove sidebar ([#540](https://github.com/carbon-design-system/ibm-security/issues/540)) ([9d7c928](https://github.com/carbon-design-system/ibm-security/commit/9d7c9284a53ffdf8ddce53d971eda24968e1509e))

* fix(decorator): change interactive decorator text color (#537)

* fix(decorator): change interactive decorator text color

* fix(decorator): update styles

* fix(decorator): remove bx--link class and update styles

* fix(decorator): move active type style

* fix(decorator): fix typo and move style

* chore(release): 1.23.1-prerelease.1 [skip ci]

## [1.23.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0...v1.23.1-prerelease.1) (2020-05-19)

### Bug Fixes

* **decorator:** change interactive decorator text color ([#537](https://github.com/carbon-design-system/ibm-security/issues/537)) ([092d486](https://github.com/carbon-design-system/ibm-security/commit/092d4866335bb1df640f7bb03182e5be1bc6acaa))

* test(a11y): replace aat package with accessibility-checker (#547)

* test(a11y): replace aat package with accessibility-checker

* test(a11y): formatting config file

* chore: commit yarn offline file

* feat(tagwall): apply id to each tag, allow extra attrs for tags (#531)

* fix(tagwall): apply id from items prop to tags, allow extra tag props

* fix(tagwall): adjust tag styles so text and close btn are not centered

* test(tagwall): update snapshots to reflect prop changes

* fix(tagwall): update proptype and snapshot

* test(tagwall): update snapshot

* chore(release): 1.24.0-prerelease.1 [skip ci]

# [1.24.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.23.1-prerelease.1...v1.24.0-prerelease.1) (2020-05-20)

### Features

* **tagwall:** apply id to each tag, allow extra attrs for tags ([#531](https://github.com/carbon-design-system/ibm-security/issues/531)) ([a09614e](https://github.com/carbon-design-system/ibm-security/commit/a09614e22a7af4f4d41cfa27ab0f41d460096343))

* fix(combo-button): use id for keys, allow id attr, update stories (#548)

* fix(combo-button): use id for keys, allow id attr, update stories

* docs(combo-button): add id to story demo

* test(combo-button): include id in tests, update snapshots

* chore(release): 1.24.0-prerelease.2 [skip ci]

# [1.24.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0-prerelease.1...v1.24.0-prerelease.2) (2020-05-21)

### Bug Fixes

* **combo-button:** use id for keys, allow id attr, update stories ([#548](https://github.com/carbon-design-system/ibm-security/issues/548)) ([769e957](https://github.com/carbon-design-system/ibm-security/commit/769e957adc29e5307fe4261194112b3972cd9821))

* fix(storybook): add keys to theme components (#550)

* chore(release): 1.24.0-prerelease.3 [skip ci]

# [1.24.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0-prerelease.2...v1.24.0-prerelease.3) (2020-05-21)

### Bug Fixes

* **storybook:** add keys to theme components ([#550](https://github.com/carbon-design-system/ibm-security/issues/550)) ([c01d328](https://github.com/carbon-design-system/ibm-security/commit/c01d328c59abc3e80a410932fd25f280a30d12f0))

* fix(card): add spread attribute to component wrapper (#559)

* chore(release): 1.24.0-prerelease.4 [skip ci]

# [1.24.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0-prerelease.3...v1.24.0-prerelease.4) (2020-05-25)

### Bug Fixes

* **card:** add spread attribute to component wrapper ([#559](https://github.com/carbon-design-system/ibm-security/issues/559)) ([e0466fb](https://github.com/carbon-design-system/ibm-security/commit/e0466fbe6210ef9546181c8a005d8e2a184d1101))

* chore(release): 1.24.0 [skip ci]

# [1.24.0](https://github.com/carbon-design-system/ibm-security/compare/v1.23.0...v1.24.0) (2020-05-26)

### Bug Fixes

* **card:** add spread attribute to component wrapper ([#559](https://github.com/carbon-design-system/ibm-security/issues/559)) ([e0466fb](https://github.com/carbon-design-system/ibm-security/commit/e0466fbe6210ef9546181c8a005d8e2a184d1101))
* **combo-button:** use id for keys, allow id attr, update stories ([#548](https://github.com/carbon-design-system/ibm-security/issues/548)) ([769e957](https://github.com/carbon-design-system/ibm-security/commit/769e957adc29e5307fe4261194112b3972cd9821))
* **decorator:** change interactive decorator text color ([#537](https://github.com/carbon-design-system/ibm-security/issues/537)) ([092d486](https://github.com/carbon-design-system/ibm-security/commit/092d4866335bb1df640f7bb03182e5be1bc6acaa))
* **storybook:** add keys to theme components ([#550](https://github.com/carbon-design-system/ibm-security/issues/550)) ([c01d328](https://github.com/carbon-design-system/ibm-security/commit/c01d328c59abc3e80a410932fd25f280a30d12f0))

### Features

* **tagwall:** apply id to each tag, allow extra attrs for tags ([#531](https://github.com/carbon-design-system/ibm-security/issues/531)) ([a09614e](https://github.com/carbon-design-system/ibm-security/commit/a09614e22a7af4f4d41cfa27ab0f41d460096343))

* fix(header): inherit height to accommodate breadcrumb shadow (#554)

* fix(header): inherit height to accommodate breadcrumb shadow

* fix(header): inherit height to accommodate breadcrumb shadow

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.24.1-prerelease.1 [skip ci]

## [1.24.1-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0...v1.24.1-prerelease.1) (2020-05-26)

### Bug Fixes

* **header:** inherit height to accommodate breadcrumb shadow ([#554](https://github.com/carbon-design-system/ibm-security/issues/554)) ([0d0e048](https://github.com/carbon-design-system/ibm-security/commit/0d0e048cb247fa17b3f3e2bed72dec47852f4944))

* feat(filter-panel): allow for string counts (#567)

Co-authored-by: Jen Downs <[email protected]>

* chore(release): 1.25.0-prerelease.1 [skip ci]

# [1.25.0-prerelease.1](https://github.com/carbon-design-system/ibm-security/compare/v1.24.1-prerelease.1...v1.25.0-prerelease.1) (2020-05-26)

### Features

* **filter-panel:** allow for string counts ([#567](https://github.com/carbon-design-system/ibm-security/issues/567)) ([6a02cc0](https://github.com/carbon-design-system/ibm-security/commit/6a02cc01ad3341c76fe1953dc9554f6e460268ab))

* fix(data-table): fix sorting styles (#570)

* chore(release): 1.25.0-prerelease.2 [skip ci]

# [1.25.0-prerelease.2](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.1...v1.25.0-prerelease.2) (2020-05-27)

### Bug Fixes

* **data-table:** fix sorting styles ([#570](https://github.com/carbon-design-system/ibm-security/issues/570)) ([4be9cb3](https://github.com/carbon-design-system/ibm-security/commit/4be9cb37540d4a285e777ecf40d2156b525c6bb0))

* build(storybook): remove static assets from package (#560)

* fix(wizard): add className prop and spread attribute (#572)

* fix(wizard): add className prop and spread attribute

* chore: update snapshots to reflect recent changes

* docs(carbon): add issue template (#574)

* chore(release): 1.25.0-prerelease.3 [skip ci]

# [1.25.0-prerelease.3](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.2...v1.25.0-prerelease.3) (2020-05-28)

### Bug Fixes

* **wizard:** add className prop and spread attribute ([#572](https://github.com/carbon-design-system/ibm-security/issues/572)) ([0655fec](https://github.com/carbon-design-system/ibm-security/commit/0655fec5ffa4dcd2a13f22433e15cdd9b9a91bc6))

* feat(filter-panel): use new heading prop, change title prop to string (#558)

* feat(filter-panel): add new prop for title attribute on filter panel labels

* docs(filter-panel): update story with new prop usage

* fix(filter-panel): update prop desc

* feat(filter-panel): add heading node prop and update title prop

* chore: update public api snapshot

* fix(filter-panel): add title prop to checkbox

* test(filter-panel): update tests to reflect changes to heading and title props

* test(filter-panel): update tests

* test(filter-panel): add test for title node

* fix(filter-panel): set filter panel label's title to undefined by default

* docs(filter-panel): add title prop to fitlerpanelcheckbox in story, cleanup story

* chore: update public api snapshot

* docs(filter-panel): update stories

* fix(filter-panel): set accordion title prop to undefined by default

* chore(release): 1.25.0-prerelease.4 [skip ci]

# [1.25.0-prerelease.4](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.3...v1.25.0-prerelease.4) (2020-05-28)

### Features

* **filter-panel:** use new heading prop, change title prop to string ([#558](https://github.com/carbon-design-system/ibm-security/issues/558)) ([1fc986f](https://github.com/carbon-design-system/ibm-security/commit/1fc986ffac4ee4912bc7cbc9991c6109a613917b))

* test(scss): add SCSS testing suite and snapshot (#578)

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(css): add CSS snapshot, bundle size snapshot

* test(scss): add import tests

* test(scss): update snapshot test to match CI

* test(scss): update snapshot test to match CI

* chore: ignore `css-gridish`

* test: defer init of accessibility-checker and update the jest test command (#581)

* test: update ci test command

* test: upgrade accessibility-checker package and config

* chore: commit updated offline mirror files

* test: update test timeout

* test: defer initialization of accessibility-checker

* test: update test command

* test: revert defer initialization of accessibility-checker

* test: defer initialization of accessibility-checker, use default timeout for jest test

* test: restore prev accessibility-checker config

* fix(step-indicator): update hover text color (#584)

* fix(panel-content): move panel + panelv2 padding to PanelContent (#583)

* fix(panel-content): move panel + panelv2 padding to PanelContent

* chore: update scss snapshot

* chore(release): 1.25.0-prerelease.5 [skip ci]

# [1.25.0-prerelease.5](https://github.com/carbon-design-system/ibm-security/compare/v1.25.0-prerelease.4...v1.25.0-prerelease.5) (2020-06-03)

### Bug Fixes

* **panel-content:** move panel + panelv2 padding to PanelContent ([#583](https://github.com/carbon-design-system/ibm-security/issues/583)) ([4c467f6](https://github.com/carbon-design-system/ibm-security/commit/4c467f6bb80422d880f1606101db35636d247750))
* **step-indicator:** update hover text color ([#584](https://github.com/carbon-design-system/ibm-security/issues/584)) ([e76a2d9](https://github.com/carbon-design-system/ibm-security/commit/e76a2d9a320bc391d445337f0926f3f56a260d1d))

* chore(a11y): update configuration (#585)

* chore(release): 1.25.0 [skip ci]

# [1.25.0](https://github.com/carbon-design-system/ibm-security/compare/v1.24.0...v1.25.0) (2020-06-03)

### Bug Fixes

* **data-table:** fix sorting styles ([#570](https://github.com/carbon-design-system/ibm-security/issues/570)) ([4be9cb3](https://github.com/carbon-design-system/ibm-security/commit/4be9cb37540d4a285e777ecf40d2156b525c6bb0))
* **header:** inherit height to accommodate breadcrumb shadow ([#554](https://github.com/carbon-design-system/ibm-security/issues/554)) ([0d0e048](https://github.com/carbon-design-system/ibm-security/commit/0d0e048cb247fa17b3f3e2bed72dec47852f4944))
* **panel-content:** move panel + panelv2 padding to PanelContent ([#583](https://github.com/carbon-design-system/ibm-security/issues/583)) ([4c467f6](https://github.com/carbon-design-system/ibm-security/commit/4c467f6bb80422d880f1606101db35636d247750))
* **step-indicator:** update hover text color ([#584](https://github.com/carbon-design-system/ibm-security/issues/584)) ([e76a2d9](https://github.com/carbon-design-system/ibm-security/commit/e76a2d9a320bc391d445337f0926f3f56a260d1d))
* **wizard:** add className prop and spread attribute ([#572](https://github.com/carbon-design-system/ibm-security/issues/572)) ([0655fec](https://github.com/carbon-design-system/ibm-security/commit/0655fec5ffa4dcd2a13f22433e15cdd9b9a91bc6))

### Features

* **filter-panel:** allow for string counts ([#567](https://github.com/carbon-design-system/ibm-security/issues/567)) ([6a02cc0](https://github.com/carbon-design-system/ibm-security/commit/6a02cc01ad3341c76fe1953dc9554f6e460268ab))
* **filter-panel:** use new heading prop, change title prop to string ([#558](https://github.com/carbon-design-system/ibm-security/issues/558)) ([1fc986f](https://github.com/carbon-design-system/ibm-security/commit/1fc986ffac4ee4912bc7cbc9991c6109a613917b))

* docs(data-table): update skeleton story (#594)

* feat(step-indicator): update internals (#593)

* chore(step-indicator): update internals

…
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

SkipToContent link does not have proper focus state
3 participants