feat: Add Grow column support and dependency cleanup#12
Merged
Conversation
Columns with Grow = true expand to fill remaining terminal width after fixed columns are allocated. Multiple grow columns share remaining space evenly. Includes 7 tests covering all edge cases.
…and update TimeWarp packages - Remove unused package groups: Microsoft Extensions, Mediator, Serilog, OpenTelemetry, Aspire, Benchmark packages, MCP Server, FluentValidation - Update TimeWarp.Amuru 1.0.0-beta.17 -> 1.0.0-beta.19 - Update TimeWarp.Nuru 3.0.0-beta.47 -> 3.0.0-beta.54 - Update Microsoft.CodeAnalysis.NetAnalyzers 10.0.101 -> 10.0.103 - Remove TimeWarp.Terminal and TimeWarp.OptionsValidation (unused) - Remove TimeWarp.Builder and TimeWarp.Jaribu (likely unused) 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
The dev-cli was referencing Mediator packages that were removed from the central package management. The Nuru Endpoint DSL doesn't require Mediator - it uses its own source generator. 🤖 Generated with [opencode](https://opencode.ai) Co-Authored-By: opencode <noreply@opencode.ai>
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
This PR adds flexbox-style Grow column support to the Table widget and cleans up unused dependencies.
Features
Grow = trueexpand to fill remaining terminal width after fixed columns are allocated. Multiple grow columns share remaining space evenly.Chores
Files Changed
source/timewarp-terminal/widgets/table-column.cs- Added Grow propertysource/timewarp-terminal/widgets/table-widget.cs- Grow column logictests/table-widget-07-grow.cs- New test suitesamples/table-widget.cs- Grow column exampleDirectory.Packages.props- Dependency cleanupsource/Directory.Build.props- Version bumpTesting