diff --git a/docs/resources/changelog.md b/docs/resources/changelog.md index 47bdb754..b4d1bb56 100644 --- a/docs/resources/changelog.md +++ b/docs/resources/changelog.md @@ -27,6 +27,7 @@ This release includes a complete rewrite of `` to improve accessibili - Fixed a bug in `` where the checked/indeterminate states could get out of sync when using the `multiple` option [#1076](https://github.com/shoelace-style/shoelace/issues/1076) - Fixed a bug in `` that caused `sl-selection-change` to emit before the DOM updated [#1096](https://github.com/shoelace-style/shoelace/issues/1096) - Fixed a bug that prevented `` from submitting a default value of `on` when no value was provided [#1103](https://github.com/shoelace-style/shoelace/discussions/1103) +- Fixed a bug in `` that caused the scrollbar to show sometimes when using `resize="auto"` - Reorganized all components to make class structures more consistent - Updated some incorrect default values for design tokens in the docs [#1097](https://github.com/shoelace-style/shoelace/issues/1097) - Updated non-public fields to use the `private` keyword (these were previously private only by convention, but now TypeScript will warn you) diff --git a/src/components/textarea/textarea.styles.ts b/src/components/textarea/textarea.styles.ts index 1843054e..a1e8dded 100644 --- a/src/components/textarea/textarea.styles.ts +++ b/src/components/textarea/textarea.styles.ts @@ -164,5 +164,6 @@ export default css` .textarea--resize-auto .textarea__control { height: auto; resize: none; + overflow-y: hidden; } `;