Skip to content

Commit 32078db

Browse files
committed
chore: update
1 parent 1ce0054 commit 32078db

File tree

9 files changed

+57
-10
lines changed

9 files changed

+57
-10
lines changed

packages/react/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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

packages/react/src/components/sizer/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { anatomy as sizerAnatomy } from './sizer.anatomy'
1+
export { sizerAnatomy } from './sizer.anatomy'
22
export { SizerContent, type SizerContentBaseProps, type SizerContentProps } from './sizer-content'
33
export { SizerRoot, type SizerRootBaseProps, type SizerRootProps } from './sizer-root'
44
export { SizerRootProvider, type SizerRootProviderBaseProps, type SizerRootProviderProps } from './sizer-root-provider'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { 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()

packages/solid/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
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

packages/solid/src/components/sizer/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export { anatomy as sizerAnatomy } from './sizer.anatomy'
1+
export { sizerAnatomy } from './sizer.anatomy'
22
export { SizerContent, type SizerContentBaseProps, type SizerContentProps } from './sizer-content'
33
export { SizerRoot, type SizerRootBaseProps, type SizerRootProps } from './sizer-root'
44
export { SizerRootProvider, type SizerRootProviderBaseProps, type SizerRootProviderProps } from './sizer-root-provider'
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { 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()

packages/svelte/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff 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

packages/vue/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { 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()

0 commit comments

Comments
 (0)