Components

Select

Choose a single option from a dropdown list.

For lists of up to 5 items, consider using checkboxes or radio buttons instead.
Copy to clipboard

Small

A smaller select element for more compact layouts.

Custom select

An alternative to the browser's native select element. Typically used when you need custom option styling like icons, images, and other treatments.

This variant is only available in the Pro version of Flux.
Photography
Design services
Web development
Accounting
Legal services
Consulting
Other

The
button
slot

If you need full control over the button used to trigger the custom select, you can use the
button
slot to render it yourself.
Copy to clipboard

Clearable

If you want to make the selected value clearable, you can use the
clearable
prop to add an "x" button to the right side of the input:
Copy to clipboard

Options with images/icons

One distinct advantage of using a custom listbox select over the native
<select>
element is that you can now add icons and images to your options.
Owner
Administrator
Member
Viewer

Searchable select

The searchable select variant makes navigating large option lists easier for your users.

This variant is only available in the Pro version of Flux.
Photography
Design services
Web development
Accounting
Legal services
Consulting
Other
No results found

The
search
slot

If you need full control over the search field inside the listbox, you can use the
search
slot to render it yourself.
Copy to clipboard

Multiple select

Allow your users to select multiple options from a list of options.

This variant is only available in the Pro version of Flux.
Photography
Design services
Web development
Accounting
Legal services
Consulting
Other

Selected suffix

By default, when more than one option is selected, the suffix " selected" will be appended to the number of selected options. You can customize this language by passing a
selected-suffix
prop to the select component.
Copy to clipboard
If you pass a custom suffix, and need localization, you can use the
__()
helper function to translate the suffix:
Copy to clipboard

Checkbox indicator

If you prefer a checkbox indicator instead of the default checkmark icon, you can use the
indicator="checkbox"
prop.
Copy to clipboard

Clearing search

By default, a searchable select will clear the search input when the user selects an option. If you want to disable this behavior, you can use the
clear="close"
prop to only clear the search input when the user closes the select.
Copy to clipboard

Combobox

A versatile combobox that can be used for anything from basic autocomplete to complex multi-selects.

This variant is only available in the Pro version of Flux.
Photography
Design services
Web development
Accounting
Legal services
Consulting
Other
No results found

The
input
slot

If you need full control over the input element used to trigger the combobox, you can use the
input
slot to render it yourself.
Copy to clipboard

Dynamic options

If you want to dynamically generate options on the server, you can use the :filter="false" prop to disable client-side filtering.

This variant is only available in the Pro version of Flux.
Copy to clipboard

Reference

flux:select

Prop
Description
wire:model
Binds the select to a Livewire property. See the wire:model documentation for more information.
name
Name attribute for the select. Automatically set when using
wire:model
.
placeholder
Text displayed when no option is selected.
label
Label text displayed above the select. When provided, wraps the select in a
flux:field
component with an adjacent
flux:label
component. See the field component.
description
Help text displayed below the select. When provided alongside
label
, appears between the label and select within the
flux:field
wrapper. See the field component.
description-trailing
The description provided will be displayed below the select instead of above it.
badge
Badge text displayed at the end of the
flux:label
component when the
label
prop is provided.
size
Size of the select. Options:
sm
,
xs
.
variant
Visual style of the select. Options:
default
(native select),
listbox
,
combobox
.
multiple
Allows selecting multiple options (listbox and combobox variants only).
filter
If
false
, disables client-side filtering.
searchable
Adds a search input to filter options (listbox and combobox variants only).
clearable
Displays a clear button when an option is selected (listbox and combobox variants only).
selected-suffix
Text appended to the number of selected options in multiple mode (listbox variant only).
clear
When to clear the search input. Options:
select
(default),
close
(listbox and combobox variants only).
disabled
Prevents user interaction with the select.
invalid
Applies error styling to the select.
Slot
Description
default
The select options.
trigger
Custom trigger content. Typically the
select.button
or
select.input
component (listbox and combobox variants only).
Attribute
Description
data-flux-select
Applied to the root element for styling and identification.

flux:select.option

Prop
Description
value
Value associated with the option.
disabled
Prevents selecting the option.
Slot
Description
default
The option content (can include icons, images, etc. in listbox variant).

flux:select.button

Prop
Description
placeholder
Text displayed when no option is selected.
invalid
Applies error styling to the button.
size
Size of the button. Options:
sm
,
xs
.
disabled
Prevents selecting the option.
clearable
Displays a clear button when an option is selected.

flux:select.input

Prop
Description
placeholder
Text displayed when no option is selected.
invalid
Applies error styling to the input.
size
Size of the input. Options:
sm
,
xs
.
Copyright © 2025 Wireable LLC ·Terms of Service
Built with by
Caleb Porzio and Hugo Sainte-Marie