Skip to content
This repository has been archived by the owner on Jul 20, 2024. It is now read-only.

build(deps): bump github.com/charmbracelet/bubbles from 0.13.0 to 0.14.0 #96

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 7, 2022

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps github.com/charmbracelet/bubbles from 0.13.0 to 0.14.0.

Release notes

Sourced from github.com/charmbracelet/bubbles's releases.

v0.14.0

Table Bubble

This feature release of Bubbles includes a brand new table bubble that you can use to show and select tabular data! Huge thanks to @​wesleimp for contributing this change ❤️.

See the example code for an example of how to use the table in your Bubble Tea applications.

Getting Started

Create a new table:

t := table.New(
	table.WithColumns(columns),
	table.WithRows(rows),
	table.WithFocused(true),
	table.WithHeight(7),
)

Alternatively,

t := table.New(table.WithColumns(columns))
t.SetRows(rows)
t.Focus()
t.SetHeight(7)

Style the table how you want:

s := table.DefaultStyles()
s.Header = s.Header.
	BorderStyle(lipgloss.NormalBorder()).
	BorderForeground(lipgloss.Color("240")).
	BorderBottom(true).
	Bold(false)
s.Selected = s.Selected.
	Foreground(lipgloss.Color("229")).
	Background(lipgloss.Color("57")).
	Bold(false)
t.SetStyles(s)

And then Update and Render (View) the table:

</tr></table> 

... (truncated)

Commits
  • 13f52d6 fix(table): append headers/columns to zero sized string slice
  • 278edd1 fix(viewport): properly truncate to size (#228)
  • 09e1f00 textarea: support dynamic prompts
  • c099d31 textarea: add some comments
  • db2a8b4 textarea: new bindings for "go to begin" / "go to end"
  • afd6f58 feat(table): add function to set cursor position (#219)
  • d44e242 fix(viewport): honor width and height settings
  • 776062e fix(table): correct keybinding for page down (#220)
  • 1c26128 textarea: add uppercase/lowercase/capitalize word right (#210)
  • 649f78e fix(textarea): pre-allocation of value (#213)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/charmbracelet/bubbles](https://github.com/charmbracelet/bubbles) from 0.13.0 to 0.14.0.
- [Release notes](https://github.com/charmbracelet/bubbles/releases)
- [Commits](charmbracelet/bubbles@v0.13.0...v0.14.0)

---
updated-dependencies:
- dependency-name: github.com/charmbracelet/bubbles
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Sep 7, 2022
@dependabot dependabot bot requested review from abdfnx and david-tomson September 7, 2022 13:40
@render
Copy link

render bot commented Sep 7, 2022

@abdfnx abdfnx merged commit e447f0c into main Sep 7, 2022
@abdfnx abdfnx deleted the dependabot/go_modules/github.com/charmbracelet/bubbles-0.14.0 branch September 7, 2022 13:45
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
No open projects
Status: Done 🤩
Development

Successfully merging this pull request may close these issues.

1 participant