[JEWEL-640] Display Placeholders for Undecorated TextField/TextArea #3111
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Context
Currently our
TextField
/TextArea
composables don't show placeholder for undecorated versions. This PR fixes this.Main Changes
TextField
andTextArea
samples to also have an undecorated example.TextAreaContentWrapper
to remove code duplication between undecorated and decorated versions ofTextArea
.NoTextAreaDecorator
composable to expect optional placeholder data (just likeTextAreaDecorator
) and added a Box so that we can show the placeholder on top of theTextArea
area.UndecoratedTextFieldDecorationBox
that also has a Box just like the TextArea version, where we can place the placeholder on top.Evidences
Standalone
TextField
Screen.Recording.2025-07-01.at.11.24.08.mov
Screen.Recording.2025-07-01.at.11.09.11.mov
TextArea
Screen.Recording.2025-07-01.at.11.23.29.mov
Screen.Recording.2025-07-01.at.11.07.16.mov
IDE
TextField
Screen.Recording.2025-07-01.at.11.26.32.mov
Screen.Recording.2025-07-01.at.11.13.59.mov
TextArea
Screen.Recording.2025-07-01.at.11.26.06.mov
Screen.Recording.2025-07-01.at.11.13.29.mov
Release notes
Bug fixes
TextField
andTextArea
marked as undecorated now show placeholders (if they have any).