docs: add InputArea documentation page#247
Merged
mattrothenberg merged 3 commits intomainfrom Mar 18, 2026
Merged
Conversation
commit: |
Contributor
Docs PreviewCommit: |
geoquant
approved these changes
Mar 18, 2026
- Create dedicated doc page for InputArea component - Add InputAreaDemo.tsx with 11 demo examples - Fix HomeGrid route (was incorrectly linking to /input) - Add InputArea to sidebar navigation - Enable InputArea in command palette search
Converts input-area.astro to input-area.mdx to match the new docs site format from the MDX migration. Adds accessibility section.
bf9b0bd to
7d3ee5b
Compare
Use FieldBase.Control with render callback to properly connect the textarea to the Field context. Clicking the label now focuses the textarea as expected.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
InputArea was missing its own documentation page — the home grid was incorrectly linking it to the Input component page.
Changes:
/components/input-areadoc page with full examples (sizes, errors, rows, labels, tooltips)InputAreaDemo.tsxwith 11 demo functionsinput-area→/components/input-area(was/components/input)Files changed:
src/pages/components/input-area.astro(new)src/components/demos/InputAreaDemo.tsx(new)src/components/demos/HomeGrid.tsx(route fix)src/components/SidebarNav.tsx(nav entry)src/components/SearchDialog.tsx(search enablement)