Documentation
¶
Overview ¶
Package layouts defines the available table layouts
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RowsFromColoredColumns ¶
func RowsFromColoredColumns(c []ColoredColumn) []string
RowsFromColoredColumns returns the rows of the colored columns
Types ¶
type ColoredColumn ¶
ColoredColumn is a column with a color
func GreenColumn ¶
func GreenColumn(column string) ColoredColumn
GreenColumn returns a green colored column
func YellowColumn ¶
func YellowColumn(column string) ColoredColumn
YellowColumn returns a yellow colored column
type TableLayout ¶
type TableLayout string
TableLayout is the type for table layouts
const ( // Default defines the standard, rounded-corner layout for Minder tables. Default TableLayout = "default" // Condensed defines a thin-border layout for dense data. Condensed TableLayout = "condensed" // Heavy defines a bold-border layout for high-visibility tables. Heavy TableLayout = "heavy" )
Click to show internal directories.
Click to hide internal directories.