Skip to content

Commit

Permalink
Merge branch 'release/v1.48.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnacioBecerra committed Jun 27, 2023
2 parents a174300 + 5502d6c commit 1920d7c
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 11 deletions.
38 changes: 38 additions & 0 deletions web-components/packages/carbon-web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,44 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.29.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-06-27)

**Note:** Version bump only for package @carbon/web-components





# [1.29.0-rc.3](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-06-27)


### Bug Fixes

* **multi-select:** move filterable attribute out of scope for styles ([#10608](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10608)) ([1c1cf35](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/1c1cf35ced1d73c9b0558ce474edd124ce773da8))





# [1.29.0-rc.2](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-06-23)

**Note:** Version bump only for package @carbon/web-components





# [1.29.0-rc.1](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-06-22)


### Bug Fixes

* **masthead:** Esc to close Cloud Masthead ([#10555](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10555)) ([#10588](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10588)) ([06cd69d](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/commit/06cd69dec6d91cafb358e078d8d083ae62edfc13)), closes [#10174](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/issues/10174)





# [1.29.0-rc.0](https://github.com/carbon-design-system/carbon-for-ibm-dotcom/compare/@carbon/[email protected]...@carbon/[email protected]) (2023-06-09)


Expand Down
2 changes: 1 addition & 1 deletion web-components/packages/carbon-web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@carbon/web-components",
"version": "1.29.0-rc.0",
"version": "1.29.0",
"publishConfig": {
"access": "public"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// Copyright IBM Corp. 2019, 2022
// Copyright IBM Corp. 2019, 2023
//
// This source code is licensed under the Apache-2.0 license found in the
// LICENSE file in the root directory of this source tree.
Expand Down Expand Up @@ -37,13 +37,12 @@ $css--plex: true !default;
outline: none;
}
}
}

&[filterable] {
.#{$prefix}--list-box__field:focus-within {
outline: 2px solid $focus;
outline-offset: -2px;
}
}
:host(#{$prefix}-multi-select[filterable])
.#{$prefix}--list-box__field:focus-within {
outline: 2px solid $focus;
outline-offset: -2px;
}

:host(#{$prefix}-multi-select[type='inline']) {
Expand Down Expand Up @@ -80,10 +79,10 @@ $css--plex: true !default;
flex-direction: row;
}
}
}

&[filtered] {
display: none;
}
:host(#{$prefix}-multi-select-item[filtered]) {
display: none;
}

:host(#{$prefix}-multi-select-item[size='sm']) {
Expand Down

0 comments on commit 1920d7c

Please sign in to comment.