Tom Select
Basic Select

The "Basic Select" component provides a simple dropdown menu for selecting options from a list. It's a fundamental UI element for collecting user input in the form of a single choice from multiple options.

Example code / preview
            <!-- BEGIN: Basic Select -->
<div>
    <label>Basic</label>
    <div class="mt-2">
        <select data-placeholder="Select your favorite actors" class="tom-select w-full">
            <option value="1">Leonardo DiCaprio</option>
            <option value="2">Johnny Deep</option>
            <option value="3">Robert Downey, Jr</option>
            <option value="4">Samuel L. Jackson</option>
            <option value="5">Morgan Freeman</option>
        </select>
    </div>
</div>
<!-- END: Basic Select -->
<!-- BEGIN: Nested Select -->
<div class="mt-3">
    <label>Nested</label>
    <div class="mt-2">
        <select data-placeholder="Select your favorite actors" class="tom-select w-full">
            <optgroup label="American Actors">
                <option value="1">Leonardo DiCaprio</option>
                <option value="2">Johnny Deep</option>
                <option value="3">Robert Downey, Jr</option>
                <option value="4">Samuel L. Jackson</option>
                <option value="5">Morgan Freeman</option>
            </optgroup>
            <optgroup label="American Actresses">
                <option value="6">Scarlett Johansson</option>
                <option value="7">Jessica Alba</option>
                <option value="8">Jennifer Lawrence</option>
                <option value="9">Emma Stone</option>
                <option value="10">Angelina Jolie</option>
            </optgroup>
        </select>
    </div>
</div>
<!-- END: Nested Select -->
        

The "Basic Select" component provides a straightforward way to incorporate dropdown menus into your web application. By following the steps outlined above, you can easily create and customize dropdowns to collect user input or make selections from a list of options.

Multiple Select

The "Multiple Select" component allows users to select multiple options from a list. It's a versatile UI element often used in scenarios where users need to make multiple selections, such as choosing multiple items from a list of available options.

Example code / preview
            <select data-placeholder="Select your favorite actors" multiple="multiple" class="tom-select w-full">
    <option value="1" selected>Leonardo DiCaprio</option>
    <option value="2">Johnny Deep</option>
    <option value="3" selected>Robert Downey, Jr</option>
    <option value="4">Samuel L. Jackson</option>
    <option value="5">Morgan Freeman</option>
</select>
        

The "Multiple Select" component using TomSelect provides an easy and user-friendly way for users to make multiple selections from a list of options. It's highly customizable and can be adapted to various use cases in your web application.

Header

The "TomSelect" component is a versatile select input library that allows you to create customized dropdowns and multi-select inputs. In this section, we'll explore how to enhance your "TomSelect" component by adding a header to the dropdown. This can be particularly useful when you want to provide context or group items within the dropdown.

Example code / preview
            <select data-placeholder="Select your favorite actors" data-header="Actors" multiple="multiple" class="tom-select w-full">
    <option value="1">Leonardo DiCaprio</option>
    <option value="2" selected>Johnny Deep</option>
    <option value="3" selected>Robert Downey, Jr</option>
    <option value="4">Samuel L. Jackson</option>
    <option value="5" selected>Morgan Freeman</option>
</select>
        

By adding a header to your "TomSelect" component, you can provide valuable context and grouping for the options within the dropdown. This enhances the user experience and helps users make informed selections. Customize the header title to match your application's requirements and design. The "TomSelect" library offers various plugins to further extend the functionality of your select inputs.

Input Group

The "TomSelect" component, combined with an input group, allows you to create a stylish and functional select input with a custom icon or character preceding it. This is useful when you want to provide additional context to the select input.

Example code / preview
@
            <div class="flex">
    <div class="flex">
        <div class="z-30 -mr-1 flex w-10 items-center justify-center rounded-l border bg-slate-100 text-slate-600 dark:border-darkmode-800 dark:bg-darkmode-700 dark:text-slate-400">
            @
        </div>
        <select class="tom-select w-full">
            <option value="1">Leonardo DiCaprio</option>
            <option value="2">Johnny Deep</option>
            <option value="3">Robert Downey, Jr</option>
            <option value="4">Samuel L. Jackson</option>
            <option value="5">Morgan Freeman</option>
        </select>
    </div>
</div>
        

Combining the "TomSelect" component with an input group allows you to create a select input with a personalized icon or character preceding it. This feature enhances the user interface and provides a unique visual representation for your select input, making it more user-friendly and visually appealing.

Disabled

The "TomSelect" component can be easily configured to be disabled, preventing users from interacting with it. This feature is useful when you want to display a select input that should not be altered or selected by the user.

Example code / preview
            <select disabled="disabled" class="tom-select w-full">
    <option value="1">Leonardo DiCaprio</option>
    <option value="2">Johnny Deep</option>
    <option value="3">Robert Downey, Jr</option>
    <option value="4">Samuel L. Jackson</option>
    <option value="5">Morgan Freeman</option>
</select>
        

The "TomSelect" component can be easily disabled by setting the disabled attribute to true, making it unselectable and preventing user interaction. This feature is particularly useful when you want to display a select input that is for informational purposes only and should not be altered by users. You can customize the appearance and content of the disabled "TomSelect" to fit your application's style and layout. Incorporate it into your application as needed to create a user-friendly and accessible interface.

Disabled Option

The "TomSelect" component allows you to create select inputs with disabled options. Disabled options are elements within the dropdown menu that cannot be selected by users. This can be helpful for providing additional context or indicating unavailable choices within a select input.

Example code / preview
            <select class="tom-select w-full">
    <option value="1" disabled>Leonardo DiCaprio</option>
    <option value="2">Johnny Deep</option>
    <option value="3">Robert Downey, Jr</option>
    <option value="4" disabled>Samuel L. Jackson</option>
    <option value="5">Morgan Freeman</option>
</select>
        

The "TomSelect" component allows you to include disabled options within a select input. These disabled options are displayed in the dropdown menu but cannot be selected by users. You can use disabled options to provide additional information or indicate choices that are currently unavailable.

Component API

In this section, you will find detailed information about the available props, classes, and options that can be used with the component. Understanding these properties is essential for customizing and configuring the component to suit your specific requirements.

Below is a list of props that can be passed to the component:

TomSelect
Prop Type Description
`value` `string` or `string[]` The selected value(s) in the TomSelect component.
`onOptionAdd` `(value: string) => void` A callback function that is called when an option is added.
`onChange` `(value: `string` or `string[]`) => void` A callback function that is called when the selected value(s) change.
`options` `TomSettings` TomSelect configuration options.
`getRef` `(el: TomSelectElement) => void` A function that receives a reference to the TomSelect input element.