Skip to content

Commit

Permalink
Publish (#3611)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## @ariakit/core@0.4.5

-   Added new `undo` utils.
-   Added new experimental Tag components.
-   Added DOM utils: `isTextbox`, `getTextboxValue`.
-   Added event function: `getInputType`.
- Added new
[`resetValue`](https://ariakit.org/reference/use-combobox-store#resetvalue)
method to combobox store.
-   Improved JSDocs.

## @ariakit/react@0.4.5

### Multi-selectable Combobox with inline autocomplete

When rendering a [Multi-selectable
Combobox](https://ariakit.org/examples/combobox-multiple) with the
[`autoComplete`](https://ariakit.org/reference/combobox#autocomplete)
prop set to `"inline"` or `"both"`, the completion string will no longer
be inserted into the input upon deselecting an item. This is because the
completion string generally represents an addition action, whereas
deselecting an item is a removal action.

### Other updates

- Updated [`Combobox`](https://ariakit.org/reference/combobox) to no
longer use `ReactDOM.flushSync` when updating the value.
- Added new
[`resetValueOnSelect`](https://ariakit.org/reference/combobox-item#resetvalueonselect)
prop to [`ComboboxItem`](https://ariakit.org/reference/combobox-item).
- Added new
[`resetValue`](https://ariakit.org/reference/use-combobox-store#resetvalue)
method to combobox store.
-   Improved JSDocs.
-   Updated dependencies: `@ariakit/react-core@0.4.5`

## @ariakit/react-core@0.4.5

### Multi-selectable Combobox with inline autocomplete

When rendering a [Multi-selectable
Combobox](https://ariakit.org/examples/combobox-multiple) with the
[`autoComplete`](https://ariakit.org/reference/combobox#autocomplete)
prop set to `"inline"` or `"both"`, the completion string will no longer
be inserted into the input upon deselecting an item. This is because the
completion string generally represents an addition action, whereas
deselecting an item is a removal action.

### Other updates

-   Added new experimental Tag components.
- Updated [`Combobox`](https://ariakit.org/reference/combobox) to no
longer use `ReactDOM.flushSync` when updating the value.
- Added new
[`resetValueOnSelect`](https://ariakit.org/reference/combobox-item#resetvalueonselect)
prop to [`ComboboxItem`](https://ariakit.org/reference/combobox-item).
- Added new
[`resetValue`](https://ariakit.org/reference/use-combobox-store#resetvalue)
method to combobox store.
-   Added experimental `ComboboxValue` component.
-   Improved JSDocs.
-   Updated dependencies: `@ariakit/core@0.4.5`

## @ariakit/test@0.3.14

-   Added `within` function to queries.
-   Updated dependencies: `@ariakit/core@0.4.5`

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Mar 28, 2024
1 parent e750f7f commit 7251a3a
Show file tree
Hide file tree
Showing 20 changed files with 58 additions and 79 deletions.
5 changes: 0 additions & 5 deletions .changeset/3579-tag-module-1.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/3579-tag-module-2.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/3608-dom-utils-1.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/3608-dom-utils-2.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/3609-ariakit-test-within.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/3610-combobox-remove-flush-sync.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/3640-combobox-item-reset-value-on-select-1.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/3640-combobox-item-reset-value-on-select-2.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/3641-combobox-value.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/3642-combobox-multiple-inline-autocomplete.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/improve-jsdocs.md

This file was deleted.

14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions packages/ariakit-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @ariakit/core

## 0.4.5

- Added new `undo` utils.
- Added new experimental Tag components.
- Added DOM utils: `isTextbox`, `getTextboxValue`.
- Added event function: `getInputType`.
- Added new [`resetValue`](https://ariakit.org/reference/use-combobox-store#resetvalue) method to combobox store.
- Improved JSDocs.

## 0.4.4

### Combobox `autoFocusOnHide` behavior
Expand Down
2 changes: 1 addition & 1 deletion packages/ariakit-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ariakit/core",
"version": "0.4.4",
"version": "0.4.5",
"description": "Ariakit core",
"sideEffects": false,
"license": "MIT",
Expand Down
16 changes: 16 additions & 0 deletions packages/ariakit-react-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @ariakit/react-core

## 0.4.5

### Multi-selectable Combobox with inline autocomplete

When rendering a [Multi-selectable Combobox](https://ariakit.org/examples/combobox-multiple) with the [`autoComplete`](https://ariakit.org/reference/combobox#autocomplete) prop set to `"inline"` or `"both"`, the completion string will no longer be inserted into the input upon deselecting an item. This is because the completion string generally represents an addition action, whereas deselecting an item is a removal action.

### Other updates

- Added new experimental Tag components.
- Updated [`Combobox`](https://ariakit.org/reference/combobox) to no longer use `ReactDOM.flushSync` when updating the value.
- Added new [`resetValueOnSelect`](https://ariakit.org/reference/combobox-item#resetvalueonselect) prop to [`ComboboxItem`](https://ariakit.org/reference/combobox-item).
- Added new [`resetValue`](https://ariakit.org/reference/use-combobox-store#resetvalue) method to combobox store.
- Added experimental `ComboboxValue` component.
- Improved JSDocs.
- Updated dependencies: `@ariakit/core@0.4.5`

## 0.4.4

### Combobox `autoFocusOnHide` behavior
Expand Down
4 changes: 2 additions & 2 deletions packages/ariakit-react-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ariakit/react-core",
"version": "0.4.4",
"version": "0.4.5",
"description": "Ariakit React core",
"sideEffects": false,
"license": "MIT",
Expand Down Expand Up @@ -30,7 +30,7 @@
"core"
],
"dependencies": {
"@ariakit/core": "0.4.4",
"@ariakit/core": "0.4.5",
"@floating-ui/dom": "^1.0.0",
"use-sync-external-store": "^1.2.0"
},
Expand Down
14 changes: 14 additions & 0 deletions packages/ariakit-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @ariakit/react

## 0.4.5

### Multi-selectable Combobox with inline autocomplete

When rendering a [Multi-selectable Combobox](https://ariakit.org/examples/combobox-multiple) with the [`autoComplete`](https://ariakit.org/reference/combobox#autocomplete) prop set to `"inline"` or `"both"`, the completion string will no longer be inserted into the input upon deselecting an item. This is because the completion string generally represents an addition action, whereas deselecting an item is a removal action.

### Other updates

- Updated [`Combobox`](https://ariakit.org/reference/combobox) to no longer use `ReactDOM.flushSync` when updating the value.
- Added new [`resetValueOnSelect`](https://ariakit.org/reference/combobox-item#resetvalueonselect) prop to [`ComboboxItem`](https://ariakit.org/reference/combobox-item).
- Added new [`resetValue`](https://ariakit.org/reference/use-combobox-store#resetvalue) method to combobox store.
- Improved JSDocs.
- Updated dependencies: `@ariakit/react-core@0.4.5`

## 0.4.4

### Combobox `autoFocusOnHide` behavior
Expand Down
4 changes: 2 additions & 2 deletions packages/ariakit-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ariakit/react",
"version": "0.4.4",
"version": "0.4.5",
"description": "Toolkit for building accessible web apps with React",
"sideEffects": false,
"license": "MIT",
Expand Down Expand Up @@ -37,7 +37,7 @@
"components"
],
"dependencies": {
"@ariakit/react-core": "0.4.4"
"@ariakit/react-core": "0.4.5"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
Expand Down
5 changes: 5 additions & 0 deletions packages/ariakit-test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# @ariakit/test

## 0.3.14

- Added `within` function to queries.
- Updated dependencies: `@ariakit/core@0.4.5`

## 0.3.13

- Updated dependencies: `@ariakit/core@0.4.4`
Expand Down
4 changes: 2 additions & 2 deletions packages/ariakit-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ariakit/test",
"version": "0.3.13",
"version": "0.3.14",
"description": "Ariakit test utils",
"sideEffects": false,
"license": "MIT",
Expand Down Expand Up @@ -29,7 +29,7 @@
"react"
],
"dependencies": {
"@ariakit/core": "0.4.4",
"@ariakit/core": "0.4.5",
"@testing-library/dom": "^8.0.0 || ^9.0.0"
},
"peerDependencies": {
Expand Down

0 comments on commit 7251a3a

Please sign in to comment.