Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/tags-input-enter-key-hint.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@zag-js/tags-input": patch
---

Set `enterKeyHint` to `"done"` on the input element so mobile virtual keyboards show a "Done" button that triggers tag
addition.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

> For v0.x changelog, see the [v0 branch](https://github.com/chakra-ui/zag/blob/v0/CHANGELOG.md)

## [1.38.2](./#1.38.2) - 2026-03-25

### Fixed

- **Dialog / Drawer**: Avoid setting inline `pointer-events` when modal, letting the dismissable layer manage it
instead.

## [1.38.1](./#1.38.1) - 2026-03-25

### Fixed
Expand Down
1 change: 1 addition & 0 deletions packages/machines/tags-input/src/tags-input.connect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ export function connect<T extends PropTypes>(
autoComplete: "off",
autoCorrect: "off",
autoCapitalize: "none",
enterKeyHint: "done",
disabled: disabled || readOnly,
placeholder: empty ? prop("placeholder") : undefined,
onInput(event) {
Expand Down
Loading