Add SelectableList and InputField components#4
Merged
ryanoneill merged 1 commit intomainfrom Dec 31, 2025
Merged
Conversation
- SelectableList: generic scrollable list with keyboard navigation - Navigation: Up, Down, First, Last, PageUp, PageDown - Selection tracking with change events - Focusable with visual feedback - InputField: text input with cursor navigation - Character insertion and deletion - Cursor movement (Left, Right, Home, End, word jumps) - Word-level deletion support - Placeholder text and Unicode support Bumps version to 0.2.0. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4 +/- ##
==========================================
+ Coverage 93.45% 93.62% +0.17%
==========================================
Files 24 26 +2
Lines 2124 2385 +261
==========================================
+ Hits 1985 2233 +248
- Misses 139 152 +13 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
ryanoneill
added a commit
that referenced
this pull request
Apr 3, 2026
File manager demonstrating FileBrowser with sorting/filtering, CodeBlock with syntax highlighting and line numbers, DiffViewer, SplitPanel with resizable panes, Breadcrumb path navigation, CommandPalette, and FocusManager + ViewContext focus routing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This was referenced Apr 3, 2026
ryanoneill
added a commit
that referenced
this pull request
Apr 3, 2026
File manager demonstrating FileBrowser with sorting/filtering, CodeBlock with syntax highlighting and line numbers, DiffViewer, SplitPanel with resizable panes, Breadcrumb path navigation, CommandPalette, and FocusManager + ViewContext focus routing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
ryanoneill
added a commit
that referenced
this pull request
Apr 13, 2026
…, 0.15.0) Calling with_markdown(true) or set_markdown_enabled(true) without the markdown Cargo feature is now a compile error instead of a silent no-op. This was sharp edge #4 from the 0.11 review, three rounds in. The getter markdown_enabled() stays available everywhere (returns false by default). The field stays on the struct but can never be set to true without the feature. Customer: "#[cfg(feature = \"markdown\")] on the method itself, so calling it without the feature is a compile error pointing at the missing feature. Loudest possible failure, no runtime cost." Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
3 tasks
ryanoneill
added a commit
that referenced
this pull request
Apr 13, 2026
…, 0.15.0) (#424) Calling with_markdown(true) or set_markdown_enabled(true) without the markdown Cargo feature is now a compile error instead of a silent no-op. This was sharp edge #4 from the 0.11 review, three rounds in. The getter markdown_enabled() stays available everywhere (returns false by default). The field stays on the struct but can never be set to true without the feature. Customer: "#[cfg(feature = \"markdown\")] on the method itself, so calling it without the feature is a compile error pointing at the missing feature. Loudest possible failure, no runtime cost." Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
SelectableList<T>component for scrollable lists with keyboard navigationInputFieldcomponent for text input with cursor navigationSelectableList Features
Clone + Display)SelectionChangedandSelectedoutput eventsInputField Features
Test plan
🤖 Generated with Claude Code