Changelog
All notable changes will be documented in this file.
[Unreleased]
Changed
- Renamed
Environment
toEnvironmentProvider
for consistency with other providers.
[3.0.0-2] - 2024-05-15
Changed
- Integrated latest
@zag-js
.
Fixed
- Fixed initial flicker of
Accordion
content
[3.0.0-1] - 2024-05-02
Removed
- BREAKING: Removed
dir
andgetRootNode
from all components. UseLocale
andEnvironment
to set the direction and root node.
Changed
- Exposed hidden inputs for various components like
Checkbox
,RadioGroup
,PinInput
,TagsInput
, andNumberInput
to allow for better integration with form libraries. - Made the
id
attribute optional for<Combobox.ItemGroup>
and removedhtmlFor
from<Combobox.ItemGroupLabel>
.
- <Combobox.ItemGroup id="framework">
- <Combobox.ItemGroupLabel htmlFor="framework">Frameworks</Combobox.ItemGroupLabel>
+ <Combobox.ItemGroup>
+ <Combobox.ItemGroupLabel>Frameworks</Combobox.ItemGroupLabel>
- Made the
id
attribute optional for<Select.ItemGroup>
and removedhtmlFor
from<Select.ItemGroupLabel>
.
- <Select.ItemGroup id="framework">
- <Select.ItemGroupLabel htmlFor="framework">Frameworks</Select.ItemGroupLabel>
+ <Select.ItemGroup>
+ <Select.ItemGroupLabel>Frameworks</Select.ItemGroupLabel>
- Improve forward compatibility of
ark
factory with React 19 by supportingref
as normal prop.
[3.0.0-0] - 2024-04-10
Added
- Exposed component-related types to keep imports clean and orderly.
import { Avatar } from '@ark-ui/react'
export const Example = () => {
// New: Use `Avatar` import to declare types.
const handleLoadingStatusChange = (details: Avatar.StatusChangeDetails) => {
console.log(details.status)
}
return (
<Avatar.Root onLoadingStatusChange={handleLoadingStatusChange}>
<Avatar.Fallback>PA</Avatar.Fallback>
<Avatar.Image src="https://i.pravatar.cc/300" alt="avatar" />
</Avatar.Root>
)
}
- Added a
Context
component to allow access to the internal machine API. Previously, it was only possible to access the internal API at the root level, which is manageable for small components but could lead to cumbersome composition in larger components. Additionally, this pattern clashed with theasChild
composition pattern we use.
export const Basic = () => (
<Popover.Root>
<Popover.Trigger>Open</Popover.Trigger>
<Popover.Positioner>
<Popover.Context>
{(api) => (
<Popover.Content>
<Popover.Title onClick={() => api.close()}>Title</Popover.Title>
<Popover.Description>Description</Popover.Description>
</Popover.Content>
)}
</Popover.Context>
</Popover.Positioner>
</Popover.Root>
)
- Added new
Format
component to format bytes and numbers. - Added
defaultOpen
toTooltip
Changed
- Changed the
Menu
component. Please refer to the documentation for more information.
Fixed
- Resolved an issue in
DatePicker
where themin
andmax
props did not support date string values.
Removed
- BREAKING: Removed the option to access the internal API from various Root components. Use the new
Context
component instead. This change will help in streamlining theasChild
composition pattern. - Removed the unused
parse
prop from theDatePicker
component.
[2.2.3] - 2024-03-05
Fixed
- Resolved an issue with using
Locale
in Next.js projects. - Resolved an issue with
Toast
not updating its toasts and count properties when creating one or more toasts.
[2.2.2] - 2024-02-27
Fixed
- Resolved an issue that a disabled
Accordion.Item
could still be opened.
[2.2.1] - 2024-02-27
Changed
- Updated to latest
@ark-ui/anatomy
version.
[2.2.0] - 2024-02-27
Added
- Added
Collapsible
component. - Added support for
defaultExpandedIds
in theTreeView
component.
Changed
- Enhanced the performance of the Ark
factory
by utilizingmemo
to avoid unnecessary re-renders. - Integrated
Collapsible
intoAccordion
, allowing theAccordion
component to utilizeCollapsible
for animating the opening and closing of content.d
@keyframes slideDown {
from {
height: 0;
}
to {
height: var(--height);
}
}
@keyframes slideUp {
from {
height: var(--height);
}
to {
height: 0;
}
}
[data-scope='accordion'][data-part='item-content'][data-state='open'] {
animation: slideDown 250ms;
}
[data-scope='accordion'][data-part='item-content'][data-state='closed'] {
animation: slideUp 200ms;
}
Fixed
- Updated the return type of
createToaster
for comprehensive IntelliSense support when styling theToaster
component. - Revised
TreeView
to utilizedefaultSelectedIds
instead ofdefaultFocusedId
. - Resolved an issue with using
factory
in Next.js projects. - Fixed a bug where the disabled
Tooltip
would flash upon hovering and clicking the trigger.
[2.1.1] - 2024-02-14
Fixed
- Resolved an issue where the
Clipboard
component was missing a specifier in the@ark-ui/react
package.
[2.1.0] - 2024-02-14
Added
- Introduced
Clipboard
component. Refer to the documentation for details. - Implemented programmable control over the open state for
ColorPicker
,DatePicker
,Dialog
,HoverCard
,Menu
,Popover
,Select
, andTooltip
. - Added a
PresetTrigger
part to theDatePicker
component, enabling custom triggers for common date presets (e.g., Last 7 days, Last 30 days). - Enhanced the
DatePicker.Control
component to support multiple inputs by introducing an optionalindex
attribute toDatePicker.Input
. Example usage:
<DatePicker.Control>
<DatePicker.Input index={0} />
<DatePicker.Input index={1} />
</DatePicker.Control>
Changed
- Refined the
TreeView
component API for streamlined component usage. See the documentation for details.
Fixed
- Resolved unintentional interactions when clicking the scrollbar.
- Addressed an issue where positioned components failed to adjust to window resizing.
- Corrected a behavior where restoring scroll position triggered a smooth scroll effect back to the starting point.
- Rectified a problem in
Combobox
,Menu
, andSelect
where scrolling into view inadvertently scrolled the body element. - Fixed a discrepancy in
DatePicker
regarding the incorrect display of weeks when settingstartOfWeek
. - Solved an issue in the
Editable
preventing text deletion upon reachingmaxLength
. - Corrected an issue in the
Select
where an item group's labelid
was misdirected. - Adjusted
Select
to use the correctid
for thearia-activedescendant
attribute.
[2.0.2] - 2024-02-10
Added
- Exported
SelectionDetails
type for theMenu
component.
Changed
- Updated
Dialog.Description
andPopover.Description
elements fromp
todiv
for better paragraph handling. - Altered
TreeView.BranchTrigger
element frombutton
todiv
for accessibility enhancements.
Fixed
- Fix issue where
@types/react@18.2.8
broke current typings inPortal
- Fix issue where
Select
component submits its first option when used in a form, even if there is no value selected.
[2.0.1] - 2024-01-30
Fixed
- Resolved an issue that for some components the types were not being generated correctly.
[2.0.0] - 2024-01-30
Added
- Added
TreeView
component - Updated
@zag-js
dependencies to their latest versions, enhancing performance for all components.
Changed
- Breaking Change: Renamed the root types for all components to
<ComponentName>RootProps
. Like shown for theAvatar
component below:
- import type { AvatarProps } from "@ark-ui/react"
+ import type { AvatarRootProps } from "@ark-ui/react"
- Breaking Change: Removed the
.Root
suffix for provider component likePresence
andEnvironment
.
- <Presence.Root>...</Presence.Root>
+ <Presence>...</Presence>
-
Breaking Change: Renamed the
indicator
part toview
in theProgress
component to more accurately reflect its functionality. -
Added the
ItemPreview
component to theTagsInput
component. See the example below:
<TagsInput.Item key={index} index={index} value={value}>
+ <TagsInput.ItemPreview>
<TagsInput.ItemText>{value}</TagsInput.ItemText>
<TagsInput.ItemDeleteTrigger>Delete</TagsInput.ItemDeleteTrigger>
+ </TagsInput.ItemPreview>
<TagsInput.ItemInput />
</TagsInput.Item>
- Refactored the
Progress
component to usediv
elements instead ofnav
for semantic correctness.
Fixed
- Fixed an issue on touch devices where selecting an item within
Combobox
,Menu
, orSelect
triggered a click event on the element behind the portalled content. - Fixed an issue in
PinInput
where pasting a value filled all inputs instead of populating them one per input.
[1.3.0] - 2024-01-17
Added
- Added the
Progress
component. - Added
valueAsString
toonValueChange
inDatePicker
callback details - Exported change details typings, for example
AccordionValueChangeDetails
orDialogOpenChangeDetails
- Redesign
Portal
component to supportgetRootNode
anddisabled
props
Changed
- Replaced the styling props for indicator with CSS variables in
RadioGroup
,SegmentGroup
, andTabs
.
Fixed
- Added missing
placeholder
prop toSelectValueTextProps
type. - Changed
PopoverDescriptionProps
type fromdiv
top
- Fixed multiple rerenders on
Select
component with Next.js or RemixuseSearchParams
- Fixed the issue where setting
disabled
onCombobox
does not reflect in combobox item - Fix an issue that breaks the
Combobox
when clicking on the input while the menu is open - Fixed the issue where
DatePicker
initial value isn't set when using controlled context - Resolved an issue that
Menu
option item could not be activated by keyboard
[1.2.1] - 2023-12-13
Fixed
- Resolved an issue where the
ark
factory type was not being exported correctly.
[1.2.0] - 2023-12-13
Added
- Added the
ToastGroup
component. - Added entrypoint for the
ark
factory at@ark-ui/react/factory
Changed
- Revised the
FileUpload
component. Check out the documentation for more information.
Fixed
- Added an explicit return type for the
Portal
component to resolve an issue with online code editors. - Resolved an issue where the
present
prop in the disclosure-type component was not being respected. - Resolved an issue where the
ark
function would log a warning when theasChild
prop was set tofalse
. - Fixed an issue where keyboard interactions within a submenu would bubble up to the parent
Menu
. - Fixed an issue with hydration mismatch in the
Portal
component.
[1.1.0] - 2023-11-21
Added
- Added render function to the
NumberInput
component - Added
FileUpload
component
Changed
- Revised the
ColorPicker
component. Check out the documentation for more information.
Fixed
- Resolved an issue where the
Toast
component would throw a warning when multiple toasts were rendered at the same time.
[1.0.1] - 2023-11-10
Fixed
- Resolved an issue where the
Dialog
component would not animate on exit. - Resolved various issues for
Menu
when lazy mounted. - Resolved an issue where
MenuTrigger
could still work even when disabled. - Resolved an issue where components like
Dialog
,Popover
etc would not invokeonExitComplete
- Fixed an issue where placement of the
Combobox
could be incorrect when lazy mounted.
[1.0.0] - 2023-11-09
We are happy to announce the release of @ark-ui/react@1.0.0
. This release includes a number of breaking changes, new features, and bug fixes. Since our last release over two months ago, we will only highlight some key changes. Please refer to the documentation for each component to learn more.
Highlights
- Revised the
Presence
component:lazyMount
andunmountOnExit
have been added at the root level. For some disclosure components likeTabs
andAccordion
, this constitutes a breaking change. - Breaking changes have been implemented in
Accordion
,ColorPicker
,DatePicker
,Dialog
,RadioGroup
,SegmentGroup
,TagsInput
,Toast
, andToggleGroup
to achieve a consistent and more intuitive API. - Resolved various bugs and addressed accessibility issues across all components.
Stability and Support
With the release of version 1.0.0, we are moving towards a more stable version of @ark-ui/react
. Future updates will strive to avoid breaking changes, ensuring a smoother experience for our users. If you encounter any issues while upgrading, please do not hesitate to open an issue on our GitHub repository. Your feedback is invaluable in helping us improve.
[0.15.0] - 2023-09-14
Added
- Added
ToggleGroup
component - Added
type HTMLArkProps
that can be used together with theark
factory fn to create a type that can be used withasChild
prop.
Changed
- Revised
Comoobox
component to support multiple selection - Revised
Select
component to support multiple selection
Fixed
- Fix issue where event callbacks that use
flushSync
did not have a stable reference, resulting in a noticable blocking re-renders.Affected components:
Slider
,RangeSlider
,NumberInput
,ColorPicker
[0.14.0] - 2023-08-29
Changed
- Changed
MenuItem
from abutton
to adiv
element. Accordion
: Remove support for passing value asstring
. The value property must be an array of strings.Combobox
: RemoveselectInputOnFocus
option in favor of userland controlTagsInput
: RenameonHighlight
toonFocusChange
Removed
- Removed
'use client'
annotation fromcompose-refs
function. - Removed
Switchinput
. This component is no longer required. TagsInput
: RemovedonTagUpdate
useonChange
instead.Switch
: RemoveddefaultChecked
in favor ofdefaultIsChecked
[0.13.1] - 2023-08-13
Changed
- Removed
'use client'
annotation fromfactory
function.
[0.13.0] - 2023-08-13
Changed
- BREAKING: Renamed
SegmentIndicator
toSegmentGroupIndicator
to match the naming convention of other components.
[0.12.0] - 2023-08-13
Added
- Added supoort for
defaultChecked
toCheckbox
component. - Added supoort for
defaultChecked
toSwitch
component. - Exposed
ark
factory function.
Fixed
- Fixed the display name for
EditableCancelTrigger
component.
Removed
- BREAKING: Removed
RadioInput
. This component is no longer required. - BREAKING: Removed
SegmentInput
. This component is no longer required.
[0.11.0] - 2023-08-08
Added
- Added
ComboboxOptionGroup
andComboboxClearTrigger
components to theCombobox
component. - Added
DatePickerPositioner
component to theDatePicker
component to help with positioning the calendar. - Added
ComboboxOptionGroupLabel
to theCombobox
component. This component can be used to render a label for a group of options in theComboboxOptionGroup
component.
Changed
- BREAKING: Renamed
TagsInputField
toTagsInputInput
to match the naming convention of other input components. - BREAKING: Renamed
NumberInputField
toNumberInputInput
to match the naming convention of other input components. - BREAKING: Renamed
PinInputField
toPinInputInput
to match the naming convention of other input components.
Removed
- BREAKING: Removed
CheckboxInput
. This component is no longer required.
[0.10.0] - 2023-08-02
Added
- Developers can now set default options for all
Toast
components in their application, ensuring a consistent look and feel across the board. - Updated number input
onChange
handler to allow synchronous updates to the value when using the scrubber.
Changed
- Improved TypeScript typings in our factory functions. The changes allow for more accurate type inference for the
ref
property when dealing with both intrinsic HTML elements and custom React components.
[0.9.0] - 2023-07-21
Added
- To improve performance and reduce initial load times, we've introduced two new properties to the
AccordionContent
,ComboboxContent
,DialogBackdrop
,DialogContent
,HoverCardContent
,PopoverContent
,SelectContent
, andTooltipContent
components. ThelazyMount
property allows for on-demand rendering of content, while theunmountOnExit
property enables the removal of the component from the DOM once it's no longer required, ensuring better resource management and cleaner code.
[0.8.1] - 2023-07-19
Fixed
- Resolved an issue that NextJS would throw a false error because of
use client
annotation.
Removed
- Removed
isOpen
fromPopover
. Please useopen
instead.
[0.8.0] - 2023-07-19
Added
- Enhanced
Carousel
component: IntroducedCarouselIndicator
andCarouselIndicatorGroup
components. These sub-components offer finer control over the carousel navigation, enabling users to directly access desired carousel slides. - Introduced
Presence
component, a new utility designed to delay the unmount of child components to assist with animation processes. - Added support to animate the
Dialog
,Tooltip
andPopover
elements using thePresence
component. Check out the documentation for these components to learn more. - Expose
use<X>Context
for all components that use context.
[0.7.3] - 2023-07-10
Fixed
- Resolved an issue where the
SegmentGroup
component would not animate on the first click. - Fixed an issue where standalone imports were not working as expected.
- Resolved an issue whre the
Toast
component would not render custom content.
[0.7.2] - 2023-06-30
Fixed
- Resolved an issue that types accross various components were not being exported correctly.
[0.7.1] - 2023-06-27
Added
- Support for standalone component imports: Developers can now import individual components, such as
@ark-ui/react/src/srctabs
instead of the full@ark-ui/react
package. This is a significant feature for those working with bundlers that do not support tree-shaking. By allowing imports of individual components, we ensure a reduced bundle size when the full package import is not necessary.
[0.7.0] - 2023-06-23
Added
- Added
SegmentGroup
component
[0.6.0] - 2023-06-03
Added
- Added
Avatar
component - Introduced an optional
defaulPage
property toPagination
- Introduced an optional
defaultSize
property toSplitter
- Introduced the
onLongPress
property toPressable
Changed
- Exposed direct access to the
Splitter
component's internal API, enabling more control over the component's state - Updated all
@zag-js
dependencies to their latest versions
[0.5.0] - 2023-05-25
Removed
- Removed
AccordionIcon
[0.4.0] - 2023-05-23
Added
- Add
DatePicker
Changed
- Update
Checkbox
. Controlindeterminate
state inchecked
prop
Fixed
- Fix a typo in the
SwitchProps
type
[0.3.0] - 2023-05-11
Added
- Add
Switch
- Add support for
asChild
[0.2.0] - 2023-04-29
Added
- Add
ColorPicker
[0.1.0] - 2023-04-17
Added
- Add
Accordion
- Add
Carousel
- Add
Checkbox
- Add
Combobox
- Add
DatePicker
- Add
Dialog
- Add
Editable
- Add
HoverCard
- Add
Menu
- Add
NumberInput
- Add
Pagination
- Add
PinInput
- Add
Popover
- Add
Pressable
- Add
RadioGroup
- Add
RangeSlider
- Add
RatingGroup
- Add
Select
- Add
Slider
- Add
Splitter
- Add
Tabs
- Add
TagsInput
- Add
Toast
- Add
Tooltip