Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
mantinedev avatar

Mantine Combobox

  • 2.1k installs
  • 58 repo stars
  • Updated February 19, 2026
  • mantinedev/skills

Mantine Combobox primitives skill.

About

The mantine-combobox skill builds custom dropdown select autocomplete multiselect and tags UI using Mantine Combobox primitives. Core workflow creates useCombobox store renders Combobox Target Dropdown Options handles onOptionSubmit filtering and custom option rendering. Built-in Select Autocomplete TagsInput are Combobox-based. Use creating searchable dropdowns multi-select tags input customizing option render adding custom filtering or any useCombobox Combobox.Target Combobox.Option task in React Mantine apps. useCombobox store with open close hooks. Combobox Target Dropdown Options structure. Custom select autocomplete multiselect tags. onOptionSubmit and custom filtering. Foundation under Mantine Select components. Mantine Combobox primitives skill. User asks Mantine Combobox useCombobox.

  • useCombobox store with open close hooks.
  • Combobox Target Dropdown Options structure.
  • Custom select autocomplete multiselect tags.
  • onOptionSubmit and custom filtering.
  • Foundation under Mantine Select components.

Mantine Combobox by the numbers

  • 2,070 all-time installs (skills.sh)
  • +133 installs in the week ending Aug 5, 2026 (Skillselion tracking)
  • Ranked #235 of 2,245 Frontend Development skills by installs in the Skillselion catalog
  • Security screen: MEDIUM risk (skills.sh audit)
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

mantine-combobox capabilities & compatibility

Capabilities
custom dropdowns · tags input
Use cases
frontend · ui design
npx skills add https://github.com/mantinedev/skills --skill mantine-combobox

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs2.1k
repo stars58
Security audit3 / 3 scanners passed
Last updatedFebruary 19, 2026
Repositorymantinedev/skills

Custom Mantine searchable select?

Build custom Mantine Combobox select autocomplete multiselect and tags inputs with useCombobox primitives.

Who is it for?

React devs using Mantine UI.

Skip if: Non-React stacks.

When should I use this skill?

User asks Mantine Combobox useCombobox.

What you get

Combobox-based dropdown or tags input.

  • useCombobox hook usage
  • Combobox component TSX
  • Styles API theming config

By the numbers

  • Documents useCombobox loop option defaulting to true for keyboard boundary navigation

Files

SKILL.mdMarkdownGitHub ↗

Mantine Combobox Skill

Overview

Combobox provides low-level primitives for building any select-like UI. The built-in Select, Autocomplete, and TagsInput components are all built on top of it.

Core Workflow

1. Create the store

const combobox = useCombobox({
  onDropdownClose: () => combobox.resetSelectedOption(),
  onDropdownOpen: () => combobox.selectFirstOption(),
});

2. Render structure

<Combobox store={combobox} onOptionSubmit={handleSubmit}>
  <Combobox.Target>
    <InputBase
      component="button"
      pointer
      rightSection={<Combobox.Chevron />}
      onClick={() => combobox.toggleDropdown()}
    >
      {value || <Input.Placeholder>Pick value</Input.Placeholder>}
    </InputBase>
  </Combobox.Target>
  <Combobox.Dropdown>
    <Combobox.Options>
      {options.map((item) => (
        <Combobox.Option value={item} key={item}>{item}</Combobox.Option>
      ))}
    </Combobox.Options>
  </Combobox.Dropdown>
</Combobox>

3. Handle submit

const handleSubmit = (val: string) => {
  setValue(val);
  combobox.closeDropdown();
};

Target Types

ScenarioUse
Button trigger (no text input)<Combobox.Target targetType="button">
Input trigger<Combobox.Target> (default)
Pills + separate input (multi-select)<Combobox.DropdownTarget> + <Combobox.EventsTarget>

References

  • [`references/api.md`](references/api.md) — Full API: useCombobox options and store, all sub-component props, CSS variables, Styles API selectors
  • [`references/patterns.md`](references/patterns.md) — Code examples: searchable select, multi-select with pills, groups, custom rendering, clear button, form integration

Related skills

How it compares

Pick mantine-combobox for Mantine-specific Combobox composition; pick generic React autocomplete skills when the project does not use Mantine.

FAQ

First step?

Create useCombobox store with dropdown callbacks.

Structure?

Combobox Target InputBase Dropdown Options.

Built-ins relation?

Select Autocomplete TagsInput built on Combobox.

Is Mantine Combobox safe to install?

skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.