mirror of
https://github.com/zoriya/bubbles.git
synced 2026-08-05 04:36:07 +00:00
* chore(progress)!: migrate progress to lipgloss This removes the dependency on termenv and replaces it with lipgloss. This change also removes the WithColorProfile option, as it is no longer needed. The new API uses `color.Color` types for colors, which are more flexible and allow for more advanced color manipulation. * Update progress/progress_test.go Co-authored-by: Christian Rocha <christian@rocha.is> * Update progress/progress_test.go Co-authored-by: Christian Rocha <christian@rocha.is> * chore: go mod tidy --------- Co-authored-by: Christian Rocha <christian@rocha.is>
35 lines
1.3 KiB
AMPL
35 lines
1.3 KiB
AMPL
module github.com/charmbracelet/bubbles/v2
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/MakeNowJust/heredoc v1.0.0
|
|
github.com/atotto/clipboard v0.1.4
|
|
github.com/charmbracelet/bubbletea/v2 v2.0.0-alpha.2.0.20241126192050-a8ed96118b08
|
|
github.com/charmbracelet/harmonica v0.2.0
|
|
github.com/charmbracelet/lipgloss/v2 v2.0.0-alpha.2.0.20241121164047-8448a9be4804
|
|
github.com/charmbracelet/x/ansi v0.5.1
|
|
github.com/charmbracelet/x/exp/golden v0.0.0-20241011142426-46044092ad91
|
|
github.com/dustin/go-humanize v1.0.1
|
|
github.com/lucasb-eyer/go-colorful v1.2.0
|
|
github.com/mattn/go-runewidth v0.0.16
|
|
github.com/rivo/uniseg v0.4.7
|
|
github.com/sahilm/fuzzy v0.1.1
|
|
)
|
|
|
|
require (
|
|
github.com/aymanbagabas/go-udiff v0.2.0 // indirect
|
|
github.com/charmbracelet/colorprofile v0.1.8 // indirect
|
|
github.com/charmbracelet/x/cellbuf v0.0.6 // indirect
|
|
github.com/charmbracelet/x/term v0.2.1 // indirect
|
|
github.com/charmbracelet/x/vt v0.0.0-20241121165045-a3720547cbb4 // indirect
|
|
github.com/charmbracelet/x/wcwidth v0.0.0-20241113152101-0af7d04e9f32 // indirect
|
|
github.com/charmbracelet/x/windows v0.2.0 // indirect
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
|
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
|
|
golang.org/x/sync v0.9.0 // indirect
|
|
golang.org/x/sys v0.27.0 // indirect
|
|
golang.org/x/text v0.20.0 // indirect
|
|
)
|