mirror of
https://github.com/charmbracelet/gum
synced 2026-03-15 06:05:45 +01:00
* feat: Adding Return Column to table command Consider a table of ID Name Description 1 Task1 Task description It would be good to select the row but retrieve the ID for example for further processing like 'task 1 delete' when first row was selected * feat: Return Column boundary check fixed * Update table/options.go --------- Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
20 lines
1.1 KiB
Go
20 lines
1.1 KiB
Go
package table
|
|
|
|
import "github.com/charmbracelet/gum/style"
|
|
|
|
// Options is the customization options for the table command.
|
|
type Options struct {
|
|
Separator string `short:"s" help:"Row separator" default:","`
|
|
Columns []string `short:"c" help:"Column names"`
|
|
Widths []int `short:"w" help:"Column widths"`
|
|
Height int `help:"Table height" default:"0"`
|
|
Print bool `short:"p" help:"static print" default:"false"`
|
|
File string `short:"f" help:"file path" default:""`
|
|
Border string `short:"b" help:"border style" default:"rounded" enum:"rounded,thick,normal,hidden,double,none"`
|
|
|
|
BorderStyle style.Styles `embed:"" prefix:"border." envprefix:"GUM_TABLE_BORDER_"`
|
|
CellStyle style.Styles `embed:"" prefix:"cell." envprefix:"GUM_TABLE_CELL_"`
|
|
HeaderStyle style.Styles `embed:"" prefix:"header." envprefix:"GUM_TABLE_HEADER_"`
|
|
SelectedStyle style.Styles `embed:"" prefix:"selected." set:"defaultForeground=212" envprefix:"GUM_TABLE_SELECTED_"`
|
|
ReturnColumn int `short:"r" help:"Which column number should be returned instead of whole row as string. Default=0 returns whole Row" default:"0"`
|
|
}
|