Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
76d9294
refactor(input): extract inner element render into virtual hook
desmondinho May 10, 2026
010dea0
feat(textarea): add LumexTextarea component
desmondinho May 10, 2026
a7df08f
test(textarea): cover rendering, parameters, and debounce behavior
desmondinho May 10, 2026
105ba4b
docs(textarea): add page, examples, and navigation entries
desmondinho May 10, 2026
726bb71
fix(textarea): bind value via attribute instead of element content
desmondinho May 11, 2026
d49cb54
refactor(textarea): render own DOM matching HeroUI layout
desmondinho May 11, 2026
e089f31
refactor(input): drop unused RenderInputElement hook
desmondinho May 11, 2026
26e0de3
style(textarea): add missing label-placement compound rules
desmondinho May 11, 2026
13287cf
style(textarea): gate outside-label absolute positioning on non-multi…
desmondinho May 11, 2026
ba098fc
style(textarea): suppress floating-label scale and translate for insi…
desmondinho May 11, 2026
6471408
style(textarea): restore floating-label scale on inside label
desmondinho May 11, 2026
f4b7dfe
docs(textarea): drop mt-2 hack from start/end content icons
desmondinho May 14, 2026
3b17a13
style(textarea): hide scrollbar on the textarea
desmondinho May 14, 2026
9d5f71b
style(textarea): apply size-based label text-size for both placements
desmondinho May 14, 2026
273188b
style(input): restore shrink-0 on label baseline
desmondinho May 14, 2026
eb62ce7
feat(textarea): expose data-autosize-disabled to allow manual resize
desmondinho May 14, 2026
d479a50
style(textarea): always apply resize-none on the textarea
desmondinho May 14, 2026
8c8ec3a
docs(textarea): tighten Autosize and StartEndContent example layouts
desmondinho May 14, 2026
406581c
chore(*): coderabbit suggestions
desmondinho May 14, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style(input): restore shrink-0 on label baseline
Lost in an earlier `git reset --hard` that reverted the data-autosize-disabled
commit and also discarded an uncommitted local edit on the file. Restoring
to the intended baseline.
  • Loading branch information
desmondinho committed May 14, 2026
commit 273188b203f9ce90872384412a08730d934c6ebb
1 change: 1 addition & 0 deletions src/LumexUI/Styles/InputField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ internal static class InputField
.Add( "pointer-events-none" )
.Add( "subpixel-antialiased" )
.Add( "pe-2" )
.Add( "shrink-0" )
.Add( "max-w-full" )
.Add( "text-ellipsis" )
.Add( "overflow-hidden" )
Expand Down