Skip to content
Merged

v2.7.11 #5404

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d40c744
fix(date-picker): error state (#5317)
Vishvsalvi May 26, 2025
ee4d2eb
fix(theme): clear button in mobile (#5252)
Vishvsalvi Jun 1, 2025
8df9716
fix(toast): icons (#5246)
wingkwong Jun 1, 2025
8c26137
refactor: migrate eslint to v9 (#5267)
wingkwong Jun 1, 2025
74e4dec
fix(autocomplete): persist last selected item position (#5286)
wingkwong Jun 1, 2025
06fe3a3
chore(deps): bump framer-motion version (#5287)
wingkwong Jun 1, 2025
d09e602
chore(docs): supplement onAction & selectionBehavior (#5289)
wingkwong Jun 1, 2025
360b2e7
fix(autocomplete): ensure focused item matches selected item after fi…
KumJungMin Jun 1, 2025
01f5421
fix: broken components in stories (#5291)
wingkwong Jun 1, 2025
1d62208
chore(deps): bump RA versions (#5310)
wingkwong Jun 1, 2025
dcd6244
chore(docs): update meta data (#5311)
wingkwong Jun 1, 2025
6129e4b
docs(layout.tsx): added text-foreground (#5316)
Vishvsalvi Jun 1, 2025
718dc24
feat(tabs): add click handling for tab items in tests and implementat…
liaoyinglong Jun 1, 2025
9433bff
fix issues in tabs examples (#2405)
zhengjitf Jun 1, 2025
6e9247a
chore(docs): add missing onValueChange in CheckboxGroup (#5332)
wingkwong Jun 1, 2025
63a1a67
ci(changesets): version packages (#5323)
github-actions[bot] Jun 1, 2025
1f8cb07
Merge branch 'main' of github.com:heroui-inc/heroui into canary
jrgarciadev Jun 1, 2025
1e23994
chore(deps): bump RA versions (#5361)
wingkwong Jun 7, 2025
2aeb33f
chore(docs): remove herohack announcement (#5363)
Vishvsalvi Jun 7, 2025
ff4b1b2
fix(theme): consistent faded styling for isInvalid in InputOtp and Da…
anuj-kuralkar Jun 8, 2025
ace931b
fix(theme): helperWrapper padding (#5350)
Vishvsalvi Jun 9, 2025
f1abe16
fix(autocomplete): onClear (#5365)
wingkwong Jun 9, 2025
ad807be
fix(number-input): only allow number type (#5368)
wingkwong Jun 9, 2025
0d217e4
refactor: optimization (#5362)
wingkwong Jun 9, 2025
15b3e9e
ci(changesets): version packages (#5364)
github-actions[bot] Jun 9, 2025
273ebe5
chore: merged with main
jrgarciadev Jun 16, 2025
14f4089
Merge branch 'main' of github.com:heroui-inc/heroui into canary
jrgarciadev Jun 16, 2025
7dff993
chore(deps): bump RA versions (#5382)
wingkwong Jun 17, 2025
dd63b83
fix(tabs): onClick (#5378)
wingkwong Jun 17, 2025
be6a1db
refactor: remove `@interationalized/date` from system (#5374)
wingkwong Jun 17, 2025
66dad48
fix(docs): correct display of the "Toast" component in the Safari bro…
novsource Jun 19, 2025
3a6e0c5
ci(changesets): version packages (#5394)
github-actions[bot] Jun 20, 2025
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
5 changes: 4 additions & 1 deletion apps/docs/content/components/toast/placement.raw.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ export default function App() {

return (
<>
<ToastProvider placement={placement} toastOffset={placement.includes("top") ? 60 : 0} />
<div className="fixed z-[100]">
<ToastProvider placement={placement} toastOffset={placement.includes("top") ? 60 : 0} />
</div>

<div className="flex flex-wrap gap-2">
{[
["Top Left", "top-left"],
Expand Down
4 changes: 3 additions & 1 deletion apps/docs/content/components/toast/simple.raw.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ import {addToast, Button, ToastProvider} from "@heroui/react";
export default function App() {
return (
<>
<ToastProvider />
<div className="fixed z-[100]">
<ToastProvider />
</div>
<div className="flex flex-wrap gap-2">
<Button
onPress={() => {
Expand Down
8 changes: 4 additions & 4 deletions apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
"@iconify/react": "5.0.2",
"@internationalized/date": "3.8.2",
"@radix-ui/react-scroll-area": "^1.0.5",
"@react-aria/focus": "3.20.4",
"@react-aria/focus": "3.20.5",
"@react-aria/i18n": "3.12.10",
"@react-aria/interactions": "3.25.2",
"@react-aria/selection": "3.24.2",
"@react-aria/interactions": "3.25.3",
"@react-aria/selection": "3.24.3",
"@react-aria/ssr": "3.9.9",
"@react-aria/utils": "3.29.1",
"@react-aria/visually-hidden": "3.8.24",
"@react-aria/visually-hidden": "3.8.25",
"@react-stately/data": "3.13.1",
"@react-stately/tree": "3.9.0",
"@rehooks/local-storage": "^2.4.5",
Expand Down
13 changes: 13 additions & 0 deletions packages/components/accordion/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @heroui/accordion

## 2.2.19

### Patch Changes

- [#5382](https://github.com/heroui-inc/heroui/pull/5382) [`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf) Thanks [@wingkwong](https://github.com/wingkwong)! - bump RA versions

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

- Updated dependencies [[`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf)]:
- @heroui/use-aria-accordion@2.2.14
- @heroui/aria-utils@2.2.19
- @heroui/framer-utils@2.1.18

## 2.2.18

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/components/accordion/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/accordion",
"version": "2.2.18",
"version": "2.2.19",
"description": "Collapse display a list of high-level options that can expand/collapse to reveal more information.",
"keywords": [
"react",
Expand Down Expand Up @@ -44,7 +44,7 @@
"react-dom": ">=18 || >=19.0.0-rc.0",
"framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
"@heroui/theme": ">=2.4.6",
"@heroui/system": ">=2.4.7"
"@heroui/system": ">=2.4.17"
},
"dependencies": {
"@heroui/aria-utils": "workspace:*",
Expand All @@ -55,8 +55,8 @@
"@heroui/divider": "workspace:*",
"@heroui/use-aria-accordion": "workspace:*",
"@heroui/dom-animation": "workspace:*",
"@react-aria/interactions": "3.25.2",
"@react-aria/focus": "3.20.4",
"@react-aria/interactions": "3.25.3",
"@react-aria/focus": "3.20.5",
"@react-aria/utils": "3.29.1",
"@react-stately/tree": "3.9.0",
"@react-types/accordion": "3.0.0-alpha.26",
Expand Down
9 changes: 9 additions & 0 deletions packages/components/alert/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @heroui/alert

## 2.2.22

### Patch Changes

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

- Updated dependencies [[`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf), [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed)]:
- @heroui/button@2.2.22

## 2.2.21

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/components/alert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/alert",
"version": "2.2.21",
"version": "2.2.22",
"description": "Alerts are temporary notifications that provide concise feedback about an action or event.",
"keywords": [
"alert"
Expand Down Expand Up @@ -41,7 +41,7 @@
"react": ">=18 || >=19.0.0-rc.0",
"react-dom": ">=18 || >=19.0.0-rc.0",
"@heroui/theme": ">=2.4.6",
"@heroui/system": ">=2.4.7"
"@heroui/system": ">=2.4.17"
},
"dependencies": {
"@heroui/react-utils": "workspace:*",
Expand Down
17 changes: 17 additions & 0 deletions packages/components/autocomplete/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @heroui/autocomplete

## 2.3.23

### Patch Changes

- [#5382](https://github.com/heroui-inc/heroui/pull/5382) [`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf) Thanks [@wingkwong](https://github.com/wingkwong)! - bump RA versions

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

- Updated dependencies [[`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf), [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed)]:
- @heroui/listbox@2.3.21
- @heroui/popover@2.3.22
- @heroui/button@2.2.22
- @heroui/input@2.4.22
- @heroui/scroll-shadow@2.3.15
- @heroui/form@2.1.21
- @heroui/aria-utils@2.2.19

## 2.3.22

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/components/autocomplete/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/autocomplete",
"version": "2.3.22",
"version": "2.3.23",
"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"
Expand Down Expand Up @@ -34,7 +34,7 @@
"postpack": "clean-package restore"
},
"peerDependencies": {
"@heroui/system": ">=2.4.7",
"@heroui/system": ">=2.4.17",
"@heroui/theme": ">=2.4.6",
"framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
"react": ">=18 || >=19.0.0-rc.0",
Expand All @@ -52,7 +52,7 @@
"@heroui/shared-icons": "workspace:*",
"@heroui/shared-utils": "workspace:*",
"@heroui/use-safe-layout-effect": "workspace:*",
"@react-aria/combobox": "3.12.4",
"@react-aria/combobox": "3.12.5",
"@react-aria/i18n": "3.12.10",
"@react-aria/utils": "3.29.1",
"@react-stately/combobox": "3.10.6",
Expand Down
8 changes: 8 additions & 0 deletions packages/components/avatar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @heroui/avatar

## 2.2.18

### Patch Changes

- [#5382](https://github.com/heroui-inc/heroui/pull/5382) [`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf) Thanks [@wingkwong](https://github.com/wingkwong)! - bump RA versions

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

## 2.2.17

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/components/avatar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/avatar",
"version": "2.2.17",
"version": "2.2.18",
"description": "The Avatar component is used to represent a user, and displays the profile picture, initials or fallback icon.",
"keywords": [
"avatar"
Expand Down Expand Up @@ -37,14 +37,14 @@
"react": ">=18 || >=19.0.0-rc.0",
"react-dom": ">=18 || >=19.0.0-rc.0",
"@heroui/theme": ">=2.4.6",
"@heroui/system": ">=2.4.7"
"@heroui/system": ">=2.4.17"
},
"dependencies": {
"@heroui/shared-utils": "workspace:*",
"@heroui/react-utils": "workspace:*",
"@heroui/use-image": "workspace:*",
"@react-aria/interactions": "3.25.2",
"@react-aria/focus": "3.20.4",
"@react-aria/interactions": "3.25.3",
"@react-aria/focus": "3.20.5",
"@react-aria/utils": "3.29.1"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/components/badge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @heroui/badge

## 2.2.14

### Patch Changes

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

## 2.2.13

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/components/badge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/badge",
"version": "2.2.13",
"version": "2.2.14",
"description": "Badges are used as a small numerical value or status descriptor for UI elements.",
"keywords": [
"badge"
Expand Down Expand Up @@ -37,7 +37,7 @@
"react": ">=18 || >=19.0.0-rc.0",
"react-dom": ">=18 || >=19.0.0-rc.0",
"@heroui/theme": ">=2.4.6",
"@heroui/system": ">=2.4.7"
"@heroui/system": ">=2.4.17"
},
"dependencies": {
"@heroui/shared-utils": "workspace:*",
Expand Down
8 changes: 8 additions & 0 deletions packages/components/breadcrumbs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @heroui/breadcrumbs

## 2.2.18

### Patch Changes

- [#5382](https://github.com/heroui-inc/heroui/pull/5382) [`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf) Thanks [@wingkwong](https://github.com/wingkwong)! - bump RA versions

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

## 2.2.17

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/components/breadcrumbs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/breadcrumbs",
"version": "2.2.17",
"version": "2.2.18",
"description": "Breadcrumbs display a hierarchy of links to the current page or resource in an application.",
"keywords": [
"breadcrumbs"
Expand Down Expand Up @@ -37,14 +37,14 @@
"react": ">=18 || >=19.0.0-rc.0",
"react-dom": ">=18 || >=19.0.0-rc.0",
"@heroui/theme": ">=2.4.6",
"@heroui/system": ">=2.4.7"
"@heroui/system": ">=2.4.17"
},
"dependencies": {
"@heroui/react-utils": "workspace:*",
"@heroui/shared-utils": "workspace:*",
"@heroui/shared-icons": "workspace:*",
"@react-aria/focus": "3.20.4",
"@react-aria/breadcrumbs": "3.5.25",
"@react-aria/focus": "3.20.5",
"@react-aria/breadcrumbs": "3.5.26",
"@react-aria/utils": "3.29.1",
"@react-types/breadcrumbs": "3.7.14"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/components/button/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @heroui/button

## 2.2.22

### Patch Changes

- [#5382](https://github.com/heroui-inc/heroui/pull/5382) [`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf) Thanks [@wingkwong](https://github.com/wingkwong)! - bump RA versions

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

- Updated dependencies [[`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf), [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed)]:
- @heroui/use-aria-button@2.2.16
- @heroui/ripple@2.2.17
- @heroui/spinner@2.2.19

## 2.2.21

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/components/button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/button",
"version": "2.2.21",
"version": "2.2.22",
"description": "Buttons allow users to perform actions and choose with a single tap.",
"keywords": [
"button"
Expand Down Expand Up @@ -38,17 +38,17 @@
"react-dom": ">=18 || >=19.0.0-rc.0",
"framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
"@heroui/theme": ">=2.4.6",
"@heroui/system": ">=2.4.7"
"@heroui/system": ">=2.4.17"
},
"dependencies": {
"@heroui/shared-utils": "workspace:*",
"@heroui/react-utils": "workspace:*",
"@heroui/use-aria-button": "workspace:*",
"@heroui/ripple": "workspace:*",
"@heroui/spinner": "workspace:*",
"@react-aria/interactions": "3.25.2",
"@react-aria/interactions": "3.25.3",
"@react-aria/utils": "3.29.1",
"@react-aria/focus": "3.20.4",
"@react-aria/focus": "3.20.5",
"@react-types/shared": "3.30.0"
},
"devDependencies": {
Expand Down
15 changes: 15 additions & 0 deletions packages/components/calendar/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @heroui/calendar

## 2.2.22

### Patch Changes

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - remove `@interationalized/date` from system

- [#5382](https://github.com/heroui-inc/heroui/pull/5382) [`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf) Thanks [@wingkwong](https://github.com/wingkwong)! - bump RA versions

- [#5374](https://github.com/heroui-inc/heroui/pull/5374) [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed) Thanks [@wingkwong](https://github.com/wingkwong)! - bump system peer dependencies

- Updated dependencies [[`7dff993`](https://github.com/heroui-inc/heroui/commit/7dff993e1d11e8f915d1e9c1201396e9b5b53dbf), [`be6a1db`](https://github.com/heroui-inc/heroui/commit/be6a1dbf40507af164ebdbe085eda6cceb98aeed)]:
- @heroui/use-aria-button@2.2.16
- @heroui/button@2.2.22
- @heroui/framer-utils@2.1.18

## 2.2.21

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/components/calendar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@heroui/calendar",
"version": "2.2.21",
"version": "2.2.22",
"description": "A calendar displays one or more date grids and allows users to select a single date.",
"keywords": [
"calendar"
Expand Down Expand Up @@ -34,7 +34,7 @@
"postpack": "clean-package restore"
},
"peerDependencies": {
"@heroui/system": ">=2.4.7",
"@heroui/system": ">=2.4.17",
"@heroui/theme": ">=2.4.6",
"framer-motion": ">=11.5.6 || >=12.0.0-alpha.1",
"react": ">=18 || >=19.0.0-rc.0",
Expand All @@ -49,16 +49,16 @@
"@heroui/button": "workspace:*",
"@heroui/dom-animation": "workspace:*",
"@internationalized/date": "3.8.2",
"@react-aria/calendar": "3.8.2",
"@react-aria/focus": "3.20.4",
"@react-aria/calendar": "3.8.3",
"@react-aria/focus": "3.20.5",
"@react-aria/i18n": "3.12.10",
"@react-stately/calendar": "3.8.2",
"@react-types/button": "3.12.2",
"@react-aria/visually-hidden": "3.8.24",
"@react-aria/visually-hidden": "3.8.25",
"@react-aria/utils": "3.29.1",
"@react-stately/utils": "3.10.7",
"@react-types/calendar": "3.7.2",
"@react-aria/interactions": "3.25.2",
"@react-aria/interactions": "3.25.3",
"@react-types/shared": "3.30.0",
"scroll-into-view-if-needed": "3.0.10"
},
Expand Down
Loading
Loading