Lumeo

Command

A command palette for searching and executing actions.

Installation

dotnet add package Lumeo

One-time app setup (AddLumeo(), CSS & JS) is covered in the installation guide.

Usage

@using Lumeo

<Command />

When to Use

  • Command palettes for power users to quickly find and execute actions
  • Search interfaces with categorized, filterable results
  • Keyboard-driven navigation for switching between pages or features
Suggestions
Actions
Actions
Navigation

API Reference

Command

Prop Type Default Description
ChildContentRenderFragment?nullCommand palette content (input, list, groups).
Classstring?nullAdditional CSS classes.
AdditionalAttributesDictionary<string, object>?nullAdditional HTML attributes.

CommandInput

Prop Type Default Description
Placeholderstring"Type a command or search..."Placeholder text for the search input.
Classstring?nullAdditional CSS classes.
AdditionalAttributesDictionary<string, object>?nullAdditional HTML attributes.

CommandList

Prop Type Default Description
ChildContentRenderFragment?nullScrollable list of command groups and items.
Classstring?nullAdditional CSS classes.
AdditionalAttributesDictionary<string, object>?nullAdditional HTML attributes.

CommandGroup

Prop Type Default Description
ChildContentRenderFragment?nullGroup items.
Headingstring?nullOptional heading label displayed above the group items.
Classstring?nullAdditional CSS classes.
AdditionalAttributesDictionary<string, object>?nullAdditional HTML attributes.

CommandItem

Prop Type Default Description
ChildContentRenderFragment?nullItem content (icon and label).
OnSelectEventCallbackCallback invoked when the item is selected.
DisabledboolfalseDisables the item.
Shortcutstring?nullKeyboard shortcut displayed as Kbd badges on the right.
FilterValuestring?nullText used for filtering. Items without a FilterValue are always visible.
Classstring?nullAdditional CSS classes.
AdditionalAttributesDictionary<string, object>?nullAdditional HTML attributes.

CommandEmpty

Prop Type Default Description
ChildContentRenderFragment?nullCustom empty state content. Defaults to "No results found."
Classstring?nullAdditional CSS classes.
AdditionalAttributesDictionary<string, object>?nullAdditional HTML attributes.

CommandSeparator

Prop Type Default Description
Classstring?nullAdditional CSS classes.
AdditionalAttributesDictionary<string, object>?nullAdditional HTML attributes.
  • Select — For choosing a single value from a predefined list
  • Combobox — For searchable dropdown selection with autocomplete
  • DropdownMenu — For contextual action menus triggered by a button