mantine-combobox
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: mantine-combobox description: > Build custom dropdown/select/autocomplete/multiselect components using Mantine's Combobox primitives.
Malicious tool definition detected
Tool: references/api.md Description: # Combobox API Reference ## Table of Contents - [useCombobox hook](#usecombobox-hook) - [Combobox (root)](#combobox-root) - [Sub-components](#sub-components) - [CSS variables & Styles API](#css-variables--styles-api) --- ## useCombobox hook ```tsx const combobox = useCombobox(options?: UseComboboxOptions); ``` **Options:** ```ts interface UseComboboxOptions { defaultOpened?: boolean; opened?: boolean; onOpenedChange?: (opened: boolean) => void; onDropdownClos
Malicious tool definition detected
Tool: references/patterns.md Description: # Combobox Implementation Patterns ## Table of Contents - [Basic select (button trigger)](#basic-select-button-trigger) - [Searchable select (input trigger)](#searchable-select-input-trigger) - [Multi-select with pills](#multi-select-with-pills) - [Options with groups](#options-with-groups) - [Custom option rendering](#custom-option-rendering) - [Clear button](#clear-button) - [Form integration (hidden input)](#form-integration-hidden-input) - [Nothing f