mirror of
https://github.com/shoelace-style/shoelace.git
synced 2026-01-12 02:59:13 +00:00
fixes #2107
This commit is contained in:
@@ -17,6 +17,7 @@ New versions of Shoelace are released as-needed and generally occur when a criti
|
|||||||
- Added support for <kbd>Enter</kbd> to `<sl-split-panel>` to align with ARIA APG's [window splitter pattern](https://www.w3.org/WAI/ARIA/apg/patterns/windowsplitter/) [#2234]
|
- Added support for <kbd>Enter</kbd> to `<sl-split-panel>` to align with ARIA APG's [window splitter pattern](https://www.w3.org/WAI/ARIA/apg/patterns/windowsplitter/) [#2234]
|
||||||
- Fixed a bug in `<sl-carousel>` that caused the navigation icons to be reversed
|
- Fixed a bug in `<sl-carousel>` that caused the navigation icons to be reversed
|
||||||
- Fixed a bug in `<sl-select>` that prevented label changes in `<sl-option>` from updating the controller [#1971]
|
- Fixed a bug in `<sl-select>` that prevented label changes in `<sl-option>` from updating the controller [#1971]
|
||||||
|
- Fixed a bug in `<sl-textarea>` that caused a console warning in Firefox when typing [#2107]
|
||||||
- Improved performance of `<sl-range>` by skipping positioning logic when tooltip isn't shown [#2064]
|
- Improved performance of `<sl-range>` by skipping positioning logic when tooltip isn't shown [#2064]
|
||||||
|
|
||||||
## 2.18.0
|
## 2.18.0
|
||||||
|
|||||||
@@ -202,7 +202,7 @@ export default class SlTextarea extends ShoelaceElement implements ShoelaceFormC
|
|||||||
this.input.style.height = 'auto';
|
this.input.style.height = 'auto';
|
||||||
this.input.style.height = `${this.input.scrollHeight}px`;
|
this.input.style.height = `${this.input.scrollHeight}px`;
|
||||||
} else {
|
} else {
|
||||||
(this.input.style.height as string | undefined) = undefined;
|
this.input.style.height = '';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user