Skip to content

Commit da0b892

Browse files
committed
refactor: migrate imports to charm.land/lipgloss
1 parent a10cfdd commit da0b892

File tree

20 files changed

+23
-33
lines changed

20 files changed

+23
-33
lines changed

cursor/cursor.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
tea "charm.land/bubbletea/v2"
11-
"github.com/charmbracelet/lipgloss/v2"
11+
"charm.land/lipgloss/v2"
1212
)
1313

1414
const defaultBlinkSpeed = time.Millisecond * 530

filepicker/filepicker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
"charm.land/bubbles/v2/key"
1515
tea "charm.land/bubbletea/v2"
16-
"github.com/charmbracelet/lipgloss/v2"
16+
"charm.land/lipgloss/v2"
1717
"github.com/dustin/go-humanize"
1818
)
1919

go.mod

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ go 1.24.2
44

55
require (
66
charm.land/bubbletea/v2 v2.0.0-beta.6.0.20251104195021-b8645799fe45
7+
charm.land/lipgloss/v2 v2.0.0-beta.3.0.20251104200114-3aae28661422
78
github.com/MakeNowJust/heredoc v1.0.0
89
github.com/atotto/clipboard v0.1.4
9-
github.com/charmbracelet/bubbles/v2 v2.0.0-beta.1
1010
github.com/charmbracelet/harmonica v0.2.0
11-
github.com/charmbracelet/lipgloss/v2 v2.0.0-beta.3.0.20251103214348-d3032608aa74
1211
github.com/charmbracelet/x/ansi v0.10.3
1312
github.com/charmbracelet/x/exp/golden v0.0.0-20250806222409-83e3a29d542f
1413
github.com/dustin/go-humanize v1.0.1
@@ -20,19 +19,18 @@ require (
2019

2120
require (
2221
github.com/aymanbagabas/go-udiff v0.3.1 // indirect
23-
github.com/charmbracelet/bubbletea/v2 v2.0.0-beta.1 // indirect
2422
github.com/charmbracelet/colorprofile v0.3.2 // indirect
2523
github.com/charmbracelet/ultraviolet v0.0.0-20251104185819-20e68c88fe84 // indirect
26-
github.com/charmbracelet/x/cellbuf v0.0.13 // indirect
27-
github.com/charmbracelet/x/input v0.3.4 // indirect
2824
github.com/charmbracelet/x/term v0.2.2 // indirect
2925
github.com/charmbracelet/x/termios v0.1.1 // indirect
3026
github.com/charmbracelet/x/windows v0.2.2 // indirect
3127
github.com/clipperhouse/displaywidth v0.4.1 // indirect
3228
github.com/clipperhouse/stringish v0.1.1 // indirect
3329
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
30+
github.com/kylelemons/godebug v1.1.0 // indirect
3431
github.com/muesli/cancelreader v0.2.2 // indirect
3532
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
33+
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
3634
golang.org/x/sync v0.17.0 // indirect
3735
golang.org/x/sys v0.37.0 // indirect
3836
)

go.sum

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,23 @@
11
charm.land/bubbletea/v2 v2.0.0-beta.6.0.20251104195021-b8645799fe45 h1:fTulbdntGS0fp4xLeDO1+myFIwJNBNXO0pZ6SHs1oM0=
22
charm.land/bubbletea/v2 v2.0.0-beta.6.0.20251104195021-b8645799fe45/go.mod h1:001PaYn0OSAHMEEZ5d2Oh3E6hA6vs5LtYvQOAZgIiao=
3+
charm.land/lipgloss/v2 v2.0.0-beta.3.0.20251104200114-3aae28661422 h1:LcW3SSv1EZvlb9pfaVZIZyHrPVRJdb0adgX+tWPYl0k=
4+
charm.land/lipgloss/v2 v2.0.0-beta.3.0.20251104200114-3aae28661422/go.mod h1:0EJAlA1PDGb+2RyyC02yDSPDwvpegDefu74HC9Blg5o=
35
github.com/MakeNowJust/heredoc v1.0.0 h1:cXCdzVdstXyiTqTvfqk9SDHpKNjxuom+DOlyEeQ4pzQ=
46
github.com/MakeNowJust/heredoc v1.0.0/go.mod h1:mG5amYoWBHf8vpLOuehzbGGw0EHxpZZ6lCpQ4fNJ8LE=
57
github.com/atotto/clipboard v0.1.4 h1:EH0zSVneZPSuFR11BlR9YppQTVDbh5+16AmcJi4g1z4=
68
github.com/atotto/clipboard v0.1.4/go.mod h1:ZY9tmq7sm5xIbd9bOK4onWV4S6X0u6GY7Vn0Yu86PYI=
79
github.com/aymanbagabas/go-udiff v0.3.1 h1:LV+qyBQ2pqe0u42ZsUEtPiCaUoqgA9gYRDs3vj1nolY=
810
github.com/aymanbagabas/go-udiff v0.3.1/go.mod h1:G0fsKmG+P6ylD0r6N/KgQD/nWzgfnl8ZBcNLgcbrw8E=
9-
github.com/charmbracelet/bubbles/v2 v2.0.0-beta.1 h1:swACzss0FjnyPz1enfX56GKkLiuKg5FlyVmOLIlU2kE=
10-
github.com/charmbracelet/bubbles/v2 v2.0.0-beta.1/go.mod h1:6HamsBKWqEC/FVHuQMHgQL+knPyvHH55HwJDHl/adMw=
11-
github.com/charmbracelet/bubbletea/v2 v2.0.0-beta.1 h1:RvpXiXuPAuaKCHPCsE/lK5+zztnNDTSCa0CpeeIKdDU=
12-
github.com/charmbracelet/bubbletea/v2 v2.0.0-beta.1/go.mod h1:qbcZLI5z8R49v9xBdU5V5Dh5D2uccx8wSwBqxQyErqc=
1311
github.com/charmbracelet/colorprofile v0.3.2 h1:9J27WdztfJQVAQKX2WOlSSRB+5gaKqqITmrvb1uTIiI=
1412
github.com/charmbracelet/colorprofile v0.3.2/go.mod h1:mTD5XzNeWHj8oqHb+S1bssQb7vIHbepiebQ2kPKVKbI=
1513
github.com/charmbracelet/harmonica v0.2.0 h1:8NxJWRWg/bzKqqEaaeFNipOu77YR5t8aSwG4pgaUBiQ=
1614
github.com/charmbracelet/harmonica v0.2.0/go.mod h1:KSri/1RMQOZLbw7AHqgcBycp8pgJnQMYYT8QZRqZ1Ao=
17-
github.com/charmbracelet/lipgloss/v2 v2.0.0-beta.3.0.20251103214348-d3032608aa74 h1:2N+CxpUFM6Rrx+xT7XaqM9pp/psOFlxKWa5R7rP/lck=
18-
github.com/charmbracelet/lipgloss/v2 v2.0.0-beta.3.0.20251103214348-d3032608aa74/go.mod h1:RfXmCdNs2F4MVJjBVQp5RZYXR05MiRAHN4GHwWmsNIA=
1915
github.com/charmbracelet/ultraviolet v0.0.0-20251104185819-20e68c88fe84 h1:v0Lpf/xY3wsJ3WQw0hrX4tbR5T2v79U177XublKL2sU=
2016
github.com/charmbracelet/ultraviolet v0.0.0-20251104185819-20e68c88fe84/go.mod h1:v1E3tTRQE3uaU0K1BrF/kgjAMGEPhkIYebanPBZ6Sdo=
2117
github.com/charmbracelet/x/ansi v0.10.3 h1:3WoV9XN8uMEnFRZZ+vBPRy59TaIWa+gJodS4Vg5Fut0=
2218
github.com/charmbracelet/x/ansi v0.10.3/go.mod h1:uQt8bOrq/xgXjlGcFMc8U2WYbnxyjrKhnvTQluvfCaE=
23-
github.com/charmbracelet/x/cellbuf v0.0.13 h1:/KBBKHuVRbq1lYx5BzEHBAFBP8VcQzJejZ/IA3iR28k=
24-
github.com/charmbracelet/x/cellbuf v0.0.13/go.mod h1:xe0nKWGd3eJgtqZRaN9RjMtK7xUYchjzPr7q6kcvCCs=
2519
github.com/charmbracelet/x/exp/golden v0.0.0-20250806222409-83e3a29d542f h1:pk6gmGpCE7F3FcjaOEKYriCvpmIN4+6OS/RD0vm4uIA=
2620
github.com/charmbracelet/x/exp/golden v0.0.0-20250806222409-83e3a29d542f/go.mod h1:IfZAMTHB6XkZSeXUqriemErjAWCCzT0LwjKFYCZyw0I=
27-
github.com/charmbracelet/x/input v0.3.4 h1:Mujmnv/4DaitU0p+kIsrlfZl/UlmeLKw1wAP3e1fMN0=
28-
github.com/charmbracelet/x/input v0.3.4/go.mod h1:JI8RcvdZWQIhn09VzeK3hdp4lTz7+yhiEdpEQtZN+2c=
2921
github.com/charmbracelet/x/term v0.2.2 h1:xVRT/S2ZcKdhhOuSP4t5cLi5o+JxklsoEObBSgfgZRk=
3022
github.com/charmbracelet/x/term v0.2.2/go.mod h1:kF8CY5RddLWrsgVwpw4kAa6TESp6EB5y3uxGLeCqzAI=
3123
github.com/charmbracelet/x/termios v0.1.1 h1:o3Q2bT8eqzGnGPOYheoYS8eEleT5ZVNYNy8JawjaNZY=

help/help.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
"charm.land/bubbles/v2/key"
88
tea "charm.land/bubbletea/v2"
9-
"github.com/charmbracelet/lipgloss/v2"
9+
"charm.land/lipgloss/v2"
1010
)
1111

1212
// KeyMap is a map of keybindings used to generate help. Since it's an

list/defaultitem.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77

88
"charm.land/bubbles/v2/key"
99
tea "charm.land/bubbletea/v2"
10-
"github.com/charmbracelet/lipgloss/v2"
10+
"charm.land/lipgloss/v2"
1111
"github.com/charmbracelet/x/ansi"
1212
)
1313

list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"time"
1313

1414
tea "charm.land/bubbletea/v2"
15-
"github.com/charmbracelet/lipgloss/v2"
15+
"charm.land/lipgloss/v2"
1616
"github.com/charmbracelet/x/ansi"
1717
"github.com/sahilm/fuzzy"
1818

list/style.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package list
22

33
import (
44
"charm.land/bubbles/v2/textinput"
5-
"github.com/charmbracelet/lipgloss/v2"
5+
"charm.land/lipgloss/v2"
66
)
77

88
const (

progress/progress.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
tea "charm.land/bubbletea/v2"
1313
"github.com/charmbracelet/harmonica"
14-
"github.com/charmbracelet/lipgloss/v2"
14+
"charm.land/lipgloss/v2"
1515
"github.com/charmbracelet/x/ansi"
1616
"github.com/lucasb-eyer/go-colorful"
1717
)

progress/progress_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"strings"
55
"testing"
66

7-
"github.com/charmbracelet/lipgloss/v2"
7+
"charm.land/lipgloss/v2"
88
)
99

1010
const (

0 commit comments

Comments
 (0)