mirror of
https://github.com/zoriya/bubbles.git
synced 2026-08-16 01:43:21 +00:00
feat(table): add SetColumns method to set columns
This commit is contained in:
+6
-1
@@ -280,6 +280,12 @@ func (m *Model) SetRows(r []Row) {
|
|||||||
m.UpdateViewport()
|
m.UpdateViewport()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// SetColumns set a new columns state.
|
||||||
|
func (m *Model) SetColumns(c []Column) {
|
||||||
|
m.cols = c
|
||||||
|
m.UpdateViewport()
|
||||||
|
}
|
||||||
|
|
||||||
// SetWidth sets the width of the viewport of the table.
|
// SetWidth sets the width of the viewport of the table.
|
||||||
func (m *Model) SetWidth(w int) {
|
func (m *Model) SetWidth(w int) {
|
||||||
m.viewport.Width = w
|
m.viewport.Width = w
|
||||||
@@ -326,7 +332,6 @@ func (m *Model) MoveUp(n int) {
|
|||||||
m.viewport.YOffset = clamp(m.viewport.YOffset+n, 1, m.viewport.Height)
|
m.viewport.YOffset = clamp(m.viewport.YOffset+n, 1, m.viewport.Height)
|
||||||
}
|
}
|
||||||
m.UpdateViewport()
|
m.UpdateViewport()
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// MoveDown moves the selection down by any number of row.
|
// MoveDown moves the selection down by any number of row.
|
||||||
|
|||||||
Reference in New Issue
Block a user