File size: 2,148 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
title: Chakra 3.19 - Combobox Is Here
description: "Introducing the Combobox and new features"
type: release
version: "3.19"
authors: ["esther"]
publishedAt: "2025-05-15"
---

We’ve just shipped Chakra UI v3.19! This release introduces two new components -
the **[Combobox](/docs/components/combobox)** and the
**[Download Trigger](/docs/components/download-trigger)**, along with quality
improvements to make building with Chakra even smoother.

## Combobox

The Combobox is a versatile input component that combines a text input with a
listbox, allowing users to filter a list of options and select single or
multiple values.

Comboboxes are deceptively tricky, you want keyboard support, screen reader
accessibility, filtering, controlled/uncontrolled behavior, and easy
customization. We built this so you don't have to wire all that up yourself.

### Basic Usage

The basic combobox provides a searchable dropdown with single selection.

<ExampleTabs name="combobox-basic" />

### Multi-Items Select

Pass the `multiple` prop to the `Combobox.Root` to enable multiple selection.
This allows users to select multiple items from the list.

<ExampleTabs name="combobox-with-multiple" />

## Download Trigger

The DownloadTrigger component makes it simple to trigger file downloads directly
from your UI. It comes in handy when you're offering downloadable reports,
exporting images, or triggering async-generated files.

### Basic Usage

Pass the data you want to download to the `data` prop, and specify the
`fileName` and `mimeType` of the file.

<ExampleTabs name="download-trigger-basic" />

### Promise

You can trigger downloads from a promise that returns a `Blob`, `File`, or
`string`.

<ExampleTabs name="download-trigger-with-promise" />

## Other Improvements

### System

- Fix issue where passing `d` prop to `chakra.path` adds it to styles not as a
  direct attribute.

- Fix issue where responsive semantic tokens did not get applied.

### Select

- Fix issue where indicator group doesn't align correctly in RTL layouts.

## Upgrading

To upgrade to the latest version, run:

```bash
npm install @chakra-ui/react@latest
```