File tree Expand file tree Collapse file tree 9 files changed +57
-10
lines changed Expand file tree Collapse file tree 9 files changed +57
-10
lines changed Original file line number Diff line number Diff line change 11## [ Unreleased]
22
3+ ### Added
4+
5+ - ** Marquee** [ New] : Initial release of marquee component for continuously scrolling content
6+
7+ ### Fixed
8+
9+ - ** Angle Slider** : Resolved an issue where dragging the thumb from non-center positions caused unexpected value jumps.
10+ The thumb now maintains consistent positioning relative to the initial click point.
11+
12+ - ** Slider** : Fixed a problem where the thumb offset shifted dynamically during dragging, resulting in value jumps. The
13+ offset now remains constant from the pointer throughout the drag operation.
14+
315## [ 5.26.2] - 2025-10-18
416
517### Fixed
Original file line number Diff line number Diff line change 1- export { anatomy as sizerAnatomy } from './sizer.anatomy'
1+ export { sizerAnatomy } from './sizer.anatomy'
22export { SizerContent , type SizerContentBaseProps , type SizerContentProps } from './sizer-content'
33export { SizerRoot , type SizerRootBaseProps , type SizerRootProps } from './sizer-root'
44export { SizerRootProvider , type SizerRootProviderBaseProps , type SizerRootProviderProps } from './sizer-root-provider'
Original file line number Diff line number Diff line change 11import { createAnatomy } from '@zag-js/anatomy'
22
3- export const anatomy = createAnatomy ( 'sizer' ) . parts ( 'root' , 'content' )
3+ export const sizerAnatomy = createAnatomy ( 'sizer' ) . parts ( 'root' , 'content' )
44
5- export const parts = anatomy . build ( )
5+ export const parts = sizerAnatomy . build ( )
Original file line number Diff line number Diff line change 11## [ Unreleased]
22
3+ ### Added
4+
5+ - ** Marquee** [ New] : Initial release of marquee component for continuously scrolling content
6+
7+ ### Fixed
8+
9+ - ** Angle Slider** : Resolved an issue where dragging the thumb from non-center positions caused unexpected value jumps.
10+ The thumb now maintains consistent positioning relative to the initial click point.
11+
12+ - ** Slider** : Fixed a problem where the thumb offset shifted dynamically during dragging, resulting in value jumps. The
13+ offset now remains constant from the pointer throughout the drag operation.
14+
315## [ 5.26.2] - 2025-10-18
416
517### Fixed
Original file line number Diff line number Diff line change 1- export { anatomy as sizerAnatomy } from './sizer.anatomy'
1+ export { sizerAnatomy } from './sizer.anatomy'
22export { SizerContent , type SizerContentBaseProps , type SizerContentProps } from './sizer-content'
33export { SizerRoot , type SizerRootBaseProps , type SizerRootProps } from './sizer-root'
44export { SizerRootProvider , type SizerRootProviderBaseProps , type SizerRootProviderProps } from './sizer-root-provider'
Original file line number Diff line number Diff line change 11import { createAnatomy } from '@zag-js/anatomy'
22
3- export const anatomy = createAnatomy ( 'sizer' ) . parts ( 'root' , 'content' )
3+ export const sizerAnatomy = createAnatomy ( 'sizer' ) . parts ( 'root' , 'content' )
44
5- export const parts = anatomy . build ( )
5+ export const parts = sizerAnatomy . build ( )
Original file line number Diff line number Diff line change @@ -6,6 +6,21 @@ description: All notable changes will be documented in this file.
66
77## [ Unreleased]
88
9+ ### Added
10+
11+ - ** Marquee** [ New] : Initial release of marquee component for continuously scrolling content
12+
13+ ### Fixed
14+
15+ - ** Angle Slider** : Resolved an issue where dragging the thumb from non-center positions caused unexpected value jumps.
16+ The thumb now maintains consistent positioning relative to the initial click point.
17+
18+ - ** Slider** : Fixed a problem where the thumb offset shifted dynamically during dragging, resulting in value jumps. The
19+ offset now remains constant from the pointer throughout the drag operation.
20+
21+ - ** Svelte** : Refactored ` mergeProps ` to return class values as arrays, delegating resolution to Svelte's native class
22+ handling for improved support of conditional classes and objects.
23+
924## [ 5.11.2] - 2025-10-18
1025
1126### Fixed
Original file line number Diff line number Diff line change 11## [ Unreleased]
22
3+ ### Added
4+
5+ - ** Marquee** [ New] : Initial release of marquee component for continuously scrolling content
6+
37### Fixed
48
9+ - ** Angle Slider** : Resolved an issue where dragging the thumb from non-center positions caused unexpected value jumps.
10+ The thumb now maintains consistent positioning relative to the initial click point.
11+
12+ - ** Slider** : Fixed a problem where the thumb offset shifted dynamically during dragging, resulting in value jumps. The
13+ offset now remains constant from the pointer throughout the drag operation.
14+
515- ** Dialog** : Fix issue where ` Dialog.Backdrop ` does not respect exit animations when closing. The backdrop now properly
616 uses the presence composable to enable CSS transitions and animations on close.
717
Original file line number Diff line number Diff line change 11import { createAnatomy } from '@zag-js/anatomy'
22
3- export const anatomy = createAnatomy ( 'sizer' ) . parts ( 'root' , 'content' )
3+ export const sizerAnatomy = createAnatomy ( 'sizer' ) . parts ( 'root' , 'content' )
44
5- export const parts = anatomy . build ( )
6-
7- export { anatomy as sizerAnatomy }
5+ export const parts = sizerAnatomy . build ( )
You can’t perform that action at this time.
0 commit comments