Versions in this module Expand all Collapse all v0 v0.0.8 Feb 8, 2026 Changes in this version + func Command(children ...g.Node) g.Node + func CommandDialog(trigger g.Node, children ...g.Node) g.Node + func CommandEmpty(message string) g.Node + func CommandGroup(heading string, children ...g.Node) g.Node + func CommandInput(opts ...CommandInputOption) g.Node + func CommandItem(text string, opts ...CommandItemOption) g.Node + func CommandList(children ...g.Node) g.Node + func CommandSeparator() g.Node + func CommandShortcut(keys ...string) g.Node + type CommandInputOption func(*CommandInputProps) + func WithIcon(icon g.Node) CommandInputOption + func WithInputAttrs(attrs ...g.Node) CommandInputOption + func WithInputClass(class string) CommandInputOption + func WithPlaceholder(text string) CommandInputOption + func WithShowClear() CommandInputOption + type CommandInputProps struct + Attrs []g.Node + Class string + Icon g.Node + Placeholder string + ShowClear bool + type CommandItemOption func(*CommandItemProps) + func WithDisabled(disabled bool) CommandItemOption + func WithItemAttrs(attrs ...g.Node) CommandItemOption + func WithItemClass(class string) CommandItemOption + func WithItemIcon(icon g.Node) CommandItemOption + func WithOnSelect(expr string) CommandItemOption + func WithShortcut(keys ...string) CommandItemOption + func WithValue(value string) CommandItemOption + type CommandItemProps struct + Attrs []g.Node + Class string + Disabled bool + Icon g.Node + OnSelect string + Shortcut []string + Value string