Versions in this module Expand all Collapse all v1 v1.0.6 Oct 14, 2024 Changes in this version + type Form interface + GetContent func() string + Submit func() (bool, string) + Update func(msg tea.Msg) tea.Cmd + View func() string + type Input struct + ContentText string + func NewInput(promptText string) *Input + func (s *Input) GetContent() string + func (s *Input) Submit() (bool, string) + func (s *Input) Update(msg tea.Msg) tea.Cmd + func (s Input) View() string + type Selector struct + func NewSelector(promptText string, options []SelectorItem) *Selector + func (s *Selector) GetContent() string + func (s *Selector) Submit() (bool, string) + func (s *Selector) Update(msg tea.Msg) tea.Cmd + func (s Selector) View() string + type SelectorItem struct + Label string + Title string