bubble-table icon indicating copy to clipboard operation
bubble-table copied to clipboard

A customizable, interactive table component for the Bubble Tea framework

Results 31 bubble-table issues
Sort by recently updated
recently updated
newest added

It would be nice if you can have a row border also. Maybe a table option `WithRowBorder`. Unless there is a way to add it, but all my attempts broke...

Hey, not sure if I am doing something wrong, but I am trying to draw only the bottom border on the headers, without top/left/right ones. I tried with: ``` func...

Using this library can you edit the data in the table?

I want to display a bubble-table as a sub-section of my entire terminal UI layout. The problem is that when multi-line is enabled, contents of a cell overflow into the...

Currently sorting (in either direction) is available by sorting strings or numbers. I think a usecase that probably will happen also quite a bit would be to sort by a...

This PR implements [#213](https://github.com/Evertras/bubble-table/issues/213) and adds support for literal token matches. It also replaces the inline fuzzy filter function with a more mature function of the module github.com/lithammer/fuzzysearch.

(I don't know if bubbletea uses the term tick, but I assume it, because the ELM model suggests so) I have a weird issue: I wanted to have a blinking...

This is something `fzf` has implemented, which is very handy. Precede a filter token with the quote character to make the matching literal. E.g.: `'prod fsog` ... searches for literal...

enhancement

Is it possible to update table data at runtime? I want to add certain interactive features (just like visidata does), for example: change the sort order, remove columns, add dynamic...

enhancement

Here's how I setup my column headers: ```go // setup column data for idx, header := range data.headers { columns[idx] = table.NewFlexColumn(strings.ToLower(header), header, lengths[idx]).WithFiltered(true).WithStyle(Highlighted) } filtertbl := FilterTable{ maxColumns: len(data.headers),...