mirror of
				https://github.com/Maks1mS/bubbles.git
				synced 2025-10-31 22:01:22 +03:00 
			
		
		
		
	chore: Miscellaneous minor fixes (#243)
* chore: remove internal use of deprecated NewModel * chore: miscellaneous comment fixes
This commit is contained in:
		| @@ -183,18 +183,18 @@ type Model struct { | ||||
| func New(items []Item, delegate ItemDelegate, width, height int) Model { | ||||
| 	styles := DefaultStyles() | ||||
|  | ||||
| 	sp := spinner.NewModel() | ||||
| 	sp := spinner.New() | ||||
| 	sp.Spinner = spinner.Line | ||||
| 	sp.Style = styles.Spinner | ||||
|  | ||||
| 	filterInput := textinput.NewModel() | ||||
| 	filterInput := textinput.New() | ||||
| 	filterInput.Prompt = "Filter: " | ||||
| 	filterInput.PromptStyle = styles.FilterPrompt | ||||
| 	filterInput.CursorStyle = styles.FilterCursor | ||||
| 	filterInput.CharLimit = 64 | ||||
| 	filterInput.Focus() | ||||
|  | ||||
| 	p := paginator.NewModel() | ||||
| 	p := paginator.New() | ||||
| 	p.Type = paginator.Dots | ||||
| 	p.ActiveDot = styles.ActivePaginationDot.String() | ||||
| 	p.InactiveDot = styles.InactivePaginationDot.String() | ||||
| @@ -221,7 +221,7 @@ func New(items []Item, delegate ItemDelegate, width, height int) Model { | ||||
| 		items:     items, | ||||
| 		Paginator: p, | ||||
| 		spinner:   sp, | ||||
| 		Help:      help.NewModel(), | ||||
| 		Help:      help.New(), | ||||
| 	} | ||||
|  | ||||
| 	m.updatePagination() | ||||
| @@ -538,7 +538,6 @@ func (m Model) SettingFilter() bool { | ||||
| // It's purely a convenience method for the following: | ||||
| // | ||||
| //	m.FilterState() == FilterApplied | ||||
| // | ||||
| func (m Model) IsFiltered() bool { | ||||
| 	return m.filterState == FilterApplied | ||||
| } | ||||
|   | ||||
| @@ -37,13 +37,12 @@ const ( | ||||
| 	defaultDamping   = 1.0 | ||||
| ) | ||||
|  | ||||
| // Option is used to set options in NewModel. For example: | ||||
| // Option is used to set options in New. For example: | ||||
| // | ||||
| //     progress := NewModel( | ||||
| //	    progress := New( | ||||
| //		       WithRamp("#ff0000", "#0000ff"), | ||||
| //		       WithoutPercentage(), | ||||
| //	    ) | ||||
| // | ||||
| type Option func(*Model) | ||||
|  | ||||
| // WithDefaultGradient sets a gradient fill with default colors. | ||||
|   | ||||
| @@ -85,7 +85,7 @@ var ( | ||||
| 	} | ||||
| ) | ||||
|  | ||||
| // Model contains the state for the spinner. Use NewModel to create new models | ||||
| // Model contains the state for the spinner. Use New to create new models | ||||
| // rather than using Model as a struct literal. | ||||
| type Model struct { | ||||
| 	// Spinner settings to use. See type Spinner. | ||||
| @@ -209,7 +209,6 @@ func Tick() tea.Msg { | ||||
| // Option is used to set options in New. For example: | ||||
| // | ||||
| //	spinner := New(WithSpinner(Dot)) | ||||
| // | ||||
| type Option func(*Model) | ||||
|  | ||||
| // WithSpinner is an option to set the spinner. | ||||
|   | ||||
| @@ -169,7 +169,7 @@ func (m Model) Focused() bool { | ||||
| } | ||||
|  | ||||
| // Focus sets the focus state on the model. When the model is in focus it can | ||||
| // receive keyboard input and the cursor will be hidden. | ||||
| // receive keyboard input and the cursor will be shown. | ||||
| func (m *Model) Focus() tea.Cmd { | ||||
| 	m.focus = true | ||||
| 	return m.Cursor.Focus() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user