ci(changesets): version packages (#2029)

Co-authored-by: Junior Garcia <jrgarciadev@gmail.com>
This commit is contained in:
github-actions[bot] 2024-03-03 20:54:23 -03:00 committed by GitHub
parent a030680e6a
commit 3a0f2c5610
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
56 changed files with 217 additions and 111 deletions

View File

@ -1,5 +0,0 @@
---
"@nextui-org/use-aria-multiselect": patch
---
fix won't display warning when placeholder (#2346)

View File

@ -1,5 +0,0 @@
---
"@nextui-org/theme": patch
---
Chip with dot variant is not properly styled

View File

@ -1,5 +0,0 @@
---
"@nextui-org/modal": patch
---
Fix typo in CSS variable accessor for modal transition

View File

@ -1,5 +0,0 @@
---
"@nextui-org/use-data-scroll-overflow": patch
---
fixed incorrect attribute names in clearOverflow (#2010)

View File

@ -1,5 +0,0 @@
---
"@nextui-org/input": patch
---
fixed input label overlapping issue (#2255)

View File

@ -1,5 +0,0 @@
---
"@nextui-org/autocomplete": patch
---
autocomplete, tabIndex is not passed on input

View File

@ -1,6 +0,0 @@
---
"@nextui-org/select": patch
"@nextui-org/input": patch
---
Fix #1979 labelPlacement is outside when not having a label for input, autocomplete and select components.

View File

@ -1,5 +0,0 @@
---
"@nextui-org/theme": patch
---
fixed incorrect RTL behaviour in toggle (#2266)

View File

@ -1,5 +0,0 @@
---
"@nextui-org/input": patch
---
Fix #1984 input clearable feature fixed

View File

@ -1,5 +0,0 @@
---
"@nextui-org/input": patch
---
Fix #2268, when using a number input and with a 0 for the initial value, the label (default or labelPlacement='inside') does not animate to the correct position. Even when the user is setting the value to 0, the label does not alter its state unless a number other than 0 is inputted.

View File

@ -1,5 +0,0 @@
---
"@nextui-org/spinner": patch
---
allow styling Spinner's label by passing classNames to the slot

View File

@ -1,5 +0,0 @@
---
"@nextui-org/theme": patch
---
fix(chip): fix isOneChar compound variants avoid chip malformed(#2350)

View File

@ -1,5 +0,0 @@
---
"@nextui-org/tooltip": patch
---
replaced "useLayoutEffect" with "useSafeLayoutEffect" in "useTooltip" hook to prevent unnecessary React warnings

View File

@ -1,6 +0,0 @@
---
"@nextui-org/pagination": patch
"@nextui-org/use-pagination": patch
---
fixed inversed RTL pagination arrows (#2292)

View File

@ -1,5 +0,0 @@
---
"@nextui-org/popover": patch
---
Add `updatePositionDeps` prop to popover component

View File

@ -1,5 +0,0 @@
---
"@nextui-org/progress": patch
---
fix incorrect strokeWidth in circular progress (#1790)

View File

@ -1,5 +0,0 @@
---
"@nextui-org/dropdown": patch
---
Fixed the bug: isDisabled does not disable dropdown

View File

@ -1,5 +0,0 @@
---
"@nextui-org/popover": patch
---
Fix #2025 isDismissable prop passed to the aria-popover hook.

View File

@ -1,5 +1,19 @@
# @nextui-org/autocomplete
## 2.0.10
### Patch Changes
- [#2375](https://github.com/nextui-org/nextui/pull/2375) [`e12f3faa8`](https://github.com/nextui-org/nextui/commit/e12f3faa81f804c22adfce8fd7458d68447a408b) Thanks [@kuri-sun](https://github.com/kuri-sun)! - autocomplete, tabIndex is not passed on input
- Updated dependencies [[`e4ba43b4e`](https://github.com/nextui-org/nextui/commit/e4ba43b4e39203566614ac0aa58e844e9421c86e), [`0ba165f0f`](https://github.com/nextui-org/nextui/commit/0ba165f0fd2257f5b8302b32a9f5eb1ecde8d890), [`436ba1cd8`](https://github.com/nextui-org/nextui/commit/436ba1cd8412dc044651ab38ff2ed770f35377ff), [`e6f36281c`](https://github.com/nextui-org/nextui/commit/e6f36281cb8bcf6784c2fee47860f618dea9346c), [`0b5cde7bc`](https://github.com/nextui-org/nextui/commit/0b5cde7bc4fc71231eb117f44052db2efdbdc595), [`a235e324b`](https://github.com/nextui-org/nextui/commit/a235e324b9ee0c7d4f6af23b086860ac112ff633), [`01aedcf09`](https://github.com/nextui-org/nextui/commit/01aedcf09b63daafef9ff5e0465040c0c91c809e)]:
- @nextui-org/input@2.1.17
- @nextui-org/spinner@2.0.25
- @nextui-org/popover@2.1.15
- @nextui-org/button@2.0.27
- @nextui-org/listbox@2.1.16
- @nextui-org/scroll-shadow@2.1.13
## 2.0.9
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/autocomplete",
"version": "2.0.9",
"version": "2.0.10",
"description": "An autocomplete combines a text input with a listbox, allowing users to filter a list of options to items matching a query.",
"keywords": [
"autocomplete"

View File

@ -1,5 +1,13 @@
# @nextui-org/button
## 2.0.27
### Patch Changes
- Updated dependencies [[`0b5cde7bc`](https://github.com/nextui-org/nextui/commit/0b5cde7bc4fc71231eb117f44052db2efdbdc595)]:
- @nextui-org/spinner@2.0.25
- @nextui-org/ripple@2.0.24
## 2.0.26
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/button",
"version": "2.0.26",
"version": "2.0.27",
"description": "Buttons allow users to perform actions and choose with a single tap.",
"keywords": [
"button"

View File

@ -1,5 +1,15 @@
# @nextui-org/dropdown
## 2.1.17
### Patch Changes
- [#2435](https://github.com/nextui-org/nextui/pull/2435) [`9b27da544`](https://github.com/nextui-org/nextui/commit/9b27da544e950cdb2bccd2d1a57ead772fd10dc1) Thanks [@kuri-sun](https://github.com/kuri-sun)! - Fixed the bug: isDisabled does not disable dropdown
- Updated dependencies [[`a235e324b`](https://github.com/nextui-org/nextui/commit/a235e324b9ee0c7d4f6af23b086860ac112ff633), [`01aedcf09`](https://github.com/nextui-org/nextui/commit/01aedcf09b63daafef9ff5e0465040c0c91c809e)]:
- @nextui-org/popover@2.1.15
- @nextui-org/menu@2.0.17
## 2.1.16
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/dropdown",
"version": "2.1.16",
"version": "2.1.17",
"description": "A dropdown displays a list of actions or options that a user can choose.",
"keywords": [
"dropdown"

View File

@ -1,5 +1,17 @@
# @nextui-org/input
## 2.1.17
### Patch Changes
- [#2371](https://github.com/nextui-org/nextui/pull/2371) [`e4ba43b4e`](https://github.com/nextui-org/nextui/commit/e4ba43b4e39203566614ac0aa58e844e9421c86e) Thanks [@wingkwong](https://github.com/wingkwong)! - fixed input label overlapping issue (#2255)
- [#2028](https://github.com/nextui-org/nextui/pull/2028) [`0ba165f0f`](https://github.com/nextui-org/nextui/commit/0ba165f0fd2257f5b8302b32a9f5eb1ecde8d890) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Fix #1979 labelPlacement is outside when not having a label for input, autocomplete and select components.
- [#2031](https://github.com/nextui-org/nextui/pull/2031) [`436ba1cd8`](https://github.com/nextui-org/nextui/commit/436ba1cd8412dc044651ab38ff2ed770f35377ff) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Fix #1984 input clearable feature fixed
- [#2274](https://github.com/nextui-org/nextui/pull/2274) [`e6f36281c`](https://github.com/nextui-org/nextui/commit/e6f36281cb8bcf6784c2fee47860f618dea9346c) Thanks [@Prakash7895](https://github.com/Prakash7895)! - Fix #2268, when using a number input and with a 0 for the initial value, the label (default or labelPlacement='inside') does not animate to the correct position. Even when the user is setting the value to 0, the label does not alter its state unless a number other than 0 is inputted.
## 2.1.16
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/input",
"version": "2.1.16",
"version": "2.1.17",
"description": "The input component is designed for capturing user input within a text field.",
"keywords": [
"input"

View File

@ -1,5 +1,11 @@
# @nextui-org/modal
## 2.0.29
### Patch Changes
- [#2426](https://github.com/nextui-org/nextui/pull/2426) [`fa27bccb3`](https://github.com/nextui-org/nextui/commit/fa27bccb37060cbf6a13a89f9e7b02f713c3cd43) Thanks [@markwilson](https://github.com/markwilson)! - Fix typo in CSS variable accessor for modal transition
## 2.0.28
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/modal",
"version": "2.0.28",
"version": "2.0.29",
"description": "Displays a dialog with a custom content that requires attention or provides additional information.",
"keywords": [
"modal"

View File

@ -1,5 +1,14 @@
# @nextui-org/pagination
## 2.0.27
### Patch Changes
- [#2393](https://github.com/nextui-org/nextui/pull/2393) [`dec7d411b`](https://github.com/nextui-org/nextui/commit/dec7d411b5c9cf1ddb9d74bf8ac897f306017835) Thanks [@wingkwong](https://github.com/wingkwong)! - fixed inversed RTL pagination arrows (#2292)
- Updated dependencies [[`dec7d411b`](https://github.com/nextui-org/nextui/commit/dec7d411b5c9cf1ddb9d74bf8ac897f306017835)]:
- @nextui-org/use-pagination@2.0.5
## 2.0.26
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/pagination",
"version": "2.0.26",
"version": "2.0.27",
"description": "The Pagination component allows you to display active page and navigate between multiple pages.",
"keywords": [
"pagination"

View File

@ -1,5 +1,16 @@
# @nextui-org/popover
## 2.1.15
### Patch Changes
- [#2390](https://github.com/nextui-org/nextui/pull/2390) [`a235e324b`](https://github.com/nextui-org/nextui/commit/a235e324b9ee0c7d4f6af23b086860ac112ff633) Thanks [@u3u](https://github.com/u3u)! - Add `updatePositionDeps` prop to popover component
- [#2032](https://github.com/nextui-org/nextui/pull/2032) [`01aedcf09`](https://github.com/nextui-org/nextui/commit/01aedcf09b63daafef9ff5e0465040c0c91c809e) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Fix #2025 isDismissable prop passed to the aria-popover hook.
- Updated dependencies []:
- @nextui-org/button@2.0.27
## 2.1.14
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/popover",
"version": "2.1.14",
"version": "2.1.15",
"description": "A popover is an overlay element positioned relative to a trigger.",
"keywords": [
"popover"

View File

@ -1,5 +1,11 @@
# @nextui-org/progress
## 2.0.25
### Patch Changes
- [#2410](https://github.com/nextui-org/nextui/pull/2410) [`0ce10269c`](https://github.com/nextui-org/nextui/commit/0ce10269c2eb5b89cdee13e493bc9e2e0b430be9) Thanks [@wingkwong](https://github.com/wingkwong)! - fix incorrect strokeWidth in circular progress (#1790)
## 2.0.24
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/progress",
"version": "2.0.24",
"version": "2.0.25",
"description": "Progress bars show either determinate or indeterminate progress of an operation over time.",
"keywords": [
"progress"

View File

@ -1,5 +1,12 @@
# @nextui-org/scroll-shadow
## 2.1.13
### Patch Changes
- Updated dependencies [[`5be104f72`](https://github.com/nextui-org/nextui/commit/5be104f72d717968f253c4bedb2abe323f083c72)]:
- @nextui-org/use-data-scroll-overflow@2.1.3
## 2.1.12
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/scroll-shadow",
"version": "2.1.12",
"version": "2.1.13",
"description": "A component that applies top and bottom shadows when content overflows on scroll.",
"keywords": [
"scroll-shadow"

View File

@ -1,5 +1,18 @@
# @nextui-org/select
## 2.1.21
### Patch Changes
- [#2028](https://github.com/nextui-org/nextui/pull/2028) [`0ba165f0f`](https://github.com/nextui-org/nextui/commit/0ba165f0fd2257f5b8302b32a9f5eb1ecde8d890) Thanks [@jrgarciadev](https://github.com/jrgarciadev)! - Fix #1979 labelPlacement is outside when not having a label for input, autocomplete and select components.
- Updated dependencies [[`d8b0ef528`](https://github.com/nextui-org/nextui/commit/d8b0ef528b341b25c2032fdc4530956d1d15a5ba), [`0b5cde7bc`](https://github.com/nextui-org/nextui/commit/0b5cde7bc4fc71231eb117f44052db2efdbdc595), [`a235e324b`](https://github.com/nextui-org/nextui/commit/a235e324b9ee0c7d4f6af23b086860ac112ff633), [`01aedcf09`](https://github.com/nextui-org/nextui/commit/01aedcf09b63daafef9ff5e0465040c0c91c809e)]:
- @nextui-org/use-aria-multiselect@2.1.4
- @nextui-org/spinner@2.0.25
- @nextui-org/popover@2.1.15
- @nextui-org/listbox@2.1.16
- @nextui-org/scroll-shadow@2.1.13
## 2.1.20
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/select",
"version": "2.1.20",
"version": "2.1.21",
"description": "A select displays a collapsible list of options and allows a user to select one of them.",
"keywords": [
"select"

View File

@ -1,5 +1,12 @@
# @nextui-org/slider
## 2.2.6
### Patch Changes
- Updated dependencies [[`bea1e1fde`](https://github.com/nextui-org/nextui/commit/bea1e1fde8358d03a16bb6a9e517de724b5d95e4)]:
- @nextui-org/tooltip@2.0.30
## 2.2.5
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/slider",
"version": "2.2.5",
"version": "2.2.6",
"description": "A slider allows a user to select one or more values within a range.",
"keywords": [
"slider"

View File

@ -1,5 +1,13 @@
# @nextui-org/snippet
## 2.0.31
### Patch Changes
- Updated dependencies [[`bea1e1fde`](https://github.com/nextui-org/nextui/commit/bea1e1fde8358d03a16bb6a9e517de724b5d95e4)]:
- @nextui-org/tooltip@2.0.30
- @nextui-org/button@2.0.27
## 2.0.30
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/snippet",
"version": "2.0.30",
"version": "2.0.31",
"description": "Display a snippet of copyable code for the command line.",
"keywords": [
"snippet"

View File

@ -1,5 +1,14 @@
# @nextui-org/spinner
## 2.0.25
### Patch Changes
- [#2325](https://github.com/nextui-org/nextui/pull/2325) [`0b5cde7bc`](https://github.com/nextui-org/nextui/commit/0b5cde7bc4fc71231eb117f44052db2efdbdc595) Thanks [@ali-idrizi](https://github.com/ali-idrizi)! - allow styling Spinner's label by passing classNames to the slot
- Updated dependencies []:
- @nextui-org/system-rsc@2.0.11
## 2.0.24
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/spinner",
"version": "2.0.24",
"version": "2.0.25",
"description": "Loaders express an unspecified wait time or display the length of a process.",
"keywords": [
"loading",

View File

@ -1,5 +1,11 @@
# @nextui-org/tooltip
## 2.0.30
### Patch Changes
- [#2021](https://github.com/nextui-org/nextui/pull/2021) [`bea1e1fde`](https://github.com/nextui-org/nextui/commit/bea1e1fde8358d03a16bb6a9e517de724b5d95e4) Thanks [@friedemannsommer](https://github.com/friedemannsommer)! - replaced "useLayoutEffect" with "useSafeLayoutEffect" in "useTooltip" hook to prevent unnecessary React warnings
## 2.0.29
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/tooltip",
"version": "2.0.29",
"version": "2.0.30",
"description": "A React Component for rendering dynamically positioned Tooltips",
"keywords": [
"tooltip"

View File

@ -1,5 +1,49 @@
# @nextui-org/react
## 2.2.10
### Patch Changes
- Updated dependencies [[`141887d38`](https://github.com/nextui-org/nextui/commit/141887d38c3b15a332b7d521448d4eb8e0743ba4), [`fa27bccb3`](https://github.com/nextui-org/nextui/commit/fa27bccb37060cbf6a13a89f9e7b02f713c3cd43), [`e4ba43b4e`](https://github.com/nextui-org/nextui/commit/e4ba43b4e39203566614ac0aa58e844e9421c86e), [`e12f3faa8`](https://github.com/nextui-org/nextui/commit/e12f3faa81f804c22adfce8fd7458d68447a408b), [`0ba165f0f`](https://github.com/nextui-org/nextui/commit/0ba165f0fd2257f5b8302b32a9f5eb1ecde8d890), [`37bed2368`](https://github.com/nextui-org/nextui/commit/37bed2368e2414a6eb3cf8744896a18ca7299a91), [`436ba1cd8`](https://github.com/nextui-org/nextui/commit/436ba1cd8412dc044651ab38ff2ed770f35377ff), [`e6f36281c`](https://github.com/nextui-org/nextui/commit/e6f36281cb8bcf6784c2fee47860f618dea9346c), [`0b5cde7bc`](https://github.com/nextui-org/nextui/commit/0b5cde7bc4fc71231eb117f44052db2efdbdc595), [`e83595e06`](https://github.com/nextui-org/nextui/commit/e83595e06f8225ea590491906109721d46e5dc1f), [`bea1e1fde`](https://github.com/nextui-org/nextui/commit/bea1e1fde8358d03a16bb6a9e517de724b5d95e4), [`dec7d411b`](https://github.com/nextui-org/nextui/commit/dec7d411b5c9cf1ddb9d74bf8ac897f306017835), [`a235e324b`](https://github.com/nextui-org/nextui/commit/a235e324b9ee0c7d4f6af23b086860ac112ff633), [`0ce10269c`](https://github.com/nextui-org/nextui/commit/0ce10269c2eb5b89cdee13e493bc9e2e0b430be9), [`9b27da544`](https://github.com/nextui-org/nextui/commit/9b27da544e950cdb2bccd2d1a57ead772fd10dc1), [`01aedcf09`](https://github.com/nextui-org/nextui/commit/01aedcf09b63daafef9ff5e0465040c0c91c809e)]:
- @nextui-org/theme@2.1.18
- @nextui-org/modal@2.0.29
- @nextui-org/input@2.1.17
- @nextui-org/autocomplete@2.0.10
- @nextui-org/select@2.1.21
- @nextui-org/spinner@2.0.25
- @nextui-org/tooltip@2.0.30
- @nextui-org/pagination@2.0.27
- @nextui-org/popover@2.1.15
- @nextui-org/progress@2.0.25
- @nextui-org/dropdown@2.1.17
- @nextui-org/accordion@2.0.28
- @nextui-org/avatar@2.0.24
- @nextui-org/badge@2.0.24
- @nextui-org/breadcrumbs@2.0.4
- @nextui-org/button@2.0.27
- @nextui-org/card@2.0.24
- @nextui-org/checkbox@2.0.25
- @nextui-org/chip@2.0.25
- @nextui-org/code@2.0.24
- @nextui-org/divider@2.0.25
- @nextui-org/image@2.0.24
- @nextui-org/kbd@2.0.25
- @nextui-org/link@2.0.26
- @nextui-org/listbox@2.1.16
- @nextui-org/menu@2.0.17
- @nextui-org/navbar@2.0.27
- @nextui-org/radio@2.0.25
- @nextui-org/ripple@2.0.24
- @nextui-org/scroll-shadow@2.1.13
- @nextui-org/skeleton@2.0.24
- @nextui-org/slider@2.2.6
- @nextui-org/snippet@2.0.31
- @nextui-org/spacer@2.0.24
- @nextui-org/switch@2.0.25
- @nextui-org/table@2.0.28
- @nextui-org/tabs@2.0.26
- @nextui-org/user@2.0.25
## 2.2.9
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/react",
"version": "2.2.9",
"version": "2.2.10",
"description": "🚀 Beautiful and modern React UI library.",
"author": "Junior Garcia <jrgarciadev@gmail.com>",
"homepage": "https://nextui.org",

View File

@ -1,5 +1,15 @@
# @nextui-org/theme
## 2.1.18
### Patch Changes
- [#2387](https://github.com/nextui-org/nextui/pull/2387) [`141887d38`](https://github.com/nextui-org/nextui/commit/141887d38c3b15a332b7d521448d4eb8e0743ba4) Thanks [@kuri-sun](https://github.com/kuri-sun)! - Chip with dot variant is not properly styled
- [#2392](https://github.com/nextui-org/nextui/pull/2392) [`37bed2368`](https://github.com/nextui-org/nextui/commit/37bed2368e2414a6eb3cf8744896a18ca7299a91) Thanks [@wingkwong](https://github.com/wingkwong)! - fixed incorrect RTL behaviour in toggle (#2266)
- [#2379](https://github.com/nextui-org/nextui/pull/2379) [`e83595e06`](https://github.com/nextui-org/nextui/commit/e83595e06f8225ea590491906109721d46e5dc1f) Thanks [@sudongyuer](https://github.com/sudongyuer)! - fix(chip): fix isOneChar compound variants avoid chip malformed(#2350)
## 2.1.17
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/theme",
"version": "2.1.17",
"version": "2.1.18",
"description": "The default theme for NextUI components",
"keywords": [
"theme",

View File

@ -1,5 +1,11 @@
# @nextui-org/use-aria-multiselect
## 2.1.4
### Patch Changes
- [#2377](https://github.com/nextui-org/nextui/pull/2377) [`d8b0ef528`](https://github.com/nextui-org/nextui/commit/d8b0ef528b341b25c2032fdc4530956d1d15a5ba) Thanks [@sudongyuer](https://github.com/sudongyuer)! - fix won't display warning when placeholder (#2346)
## 2.1.3
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-aria-multiselect",
"version": "2.1.3",
"version": "2.1.4",
"description": "Provides the behavior and accessibility implementation for a multi-select component.",
"keywords": [
"use-aria-multiselect"

View File

@ -1,5 +1,11 @@
# @nextui-org/use-data-scroll-overflow
## 2.1.3
### Patch Changes
- [#2050](https://github.com/nextui-org/nextui/pull/2050) [`5be104f72`](https://github.com/nextui-org/nextui/commit/5be104f72d717968f253c4bedb2abe323f083c72) Thanks [@wingkwong](https://github.com/wingkwong)! - fixed incorrect attribute names in clearOverflow (#2010)
## 2.1.2
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-data-scroll-overflow",
"version": "2.1.2",
"version": "2.1.3",
"description": "A hook to add data attributes when the element has top or bottom scroll.",
"keywords": [
"use-data-scroll-overflow"

View File

@ -1,5 +1,11 @@
# @nextui-org/use-pagination
## 2.0.5
### Patch Changes
- [#2393](https://github.com/nextui-org/nextui/pull/2393) [`dec7d411b`](https://github.com/nextui-org/nextui/commit/dec7d411b5c9cf1ddb9d74bf8ac897f306017835) Thanks [@wingkwong](https://github.com/wingkwong)! - fixed inversed RTL pagination arrows (#2292)
## 2.0.4
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@nextui-org/use-pagination",
"version": "2.0.4",
"version": "2.0.5",
"description": "State management hook for Pagination component, it lets you manage pagination with controlled and uncontrolled state",
"keywords": [
"use-pagination"