Skip to content

Commit 7f9f992

Browse files
committed
docs: changelog
1 parent 56036fb commit 7f9f992

File tree

3 files changed

+80
-77
lines changed

3 files changed

+80
-77
lines changed

packages/react/CHANGELOG.md

+30-29
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,34 @@ description: All notable changes will be documented in this file.
66

77
## [Unreleased]
88

9-
### Fixed
10-
11-
- **Color Picker, Hover Card, Tooltip**: Fix issue where placement could intermittently shift due to
12-
`data-placement` being updated
13-
14-
- **File Upload**
15-
16-
- Fixed an issue where change event is not fired when dropping files into the dropzone
17-
- Fixed an issue where `api.setClipboardFiles(...)` was still called when file upload is disabled
18-
- Fixed an issue where machine transitions to `dragging` when disabled
19-
- Fixed an issue where rejected files could not be deleted using the item delete trigger
20-
- Exposed disabled state via `api.disabled`
9+
### Added
2110

22-
- **Tour**: Fixed an issue where dialog tour step doesn't sync its z-index with the content
11+
- **DatePicker**:
12+
- Added `minView` and `maxView` options for better control over the displayed views, allowing to
13+
create Month and Year pickers.
14+
- Introduced a new `parse` method to convert input values into valid dates, complementing the
15+
`format` option for enhanced UX
16+
- Added `locale` and `timeZone` options to the `format` method
17+
- Introduced `placeholder` context property to customize the input's placeholder text
2318

24-
### Added
19+
### Fixed
2520

26-
- **Date Picker**
27-
- Added support for `minView` and `maxView` to provide better control of the datepicker views,
28-
making it easier to build month and year only pickers
29-
- Added new `parse` method to parse input value and return valid date, paired with `format` option
30-
for better UX
31-
- Added `locale` and `timeZone` to the `format` method
32-
- Added support for `placeholder` context property to customize input placeholder text
33-
- Fixed an issue where entering very large invalid dates in input field would cause crash
34-
- Fixed an issue in year view where user is unable to select year when `min` and `max` dates are
35-
less than 1 year and overlap 2 unique years
21+
- **ColorPicker, HoverCard, Tooltip**:
22+
- Fixed intermittent placement shifts caused by updates to the `data-placement` attribute
23+
- **FileUpload**:
24+
- Resolved an issue where the change event wasn’t triggered when files were dropped into the
25+
dropzone
26+
- Fixed an issue where `context.setClipboardFiles(...)` was called despite file upload being
27+
disabled
28+
- Addressed an issue where the machine transitioned to the `dragging` state even when disabled
29+
- Fixed an issue preventing rejected files from being deleted via the item delete trigger
30+
- Exposed the disabled state via `context.disabled`
31+
- **Tour**:
32+
- Fixed an issue where the dialog tour step did not synchronize its z-index with the content
33+
- **Date Picker**:
34+
- Fixed a crash that occurred when entering very large invalid dates in the input field
35+
- Fixed an issue in the year view where selecting a year was not possible when the `min` and `max`
36+
dates were less than one year apart and overlapped two distinct years
3637

3738
## [4.8.1] - 2025-01-14
3839

@@ -211,7 +212,7 @@ description: All notable changes will be documented in this file.
211212

212213
### Fixed
213214

214-
- **TagsInput**: Resolved an issue where `api.addTag(...)` was not functioning correctly.
215+
- **TagsInput**: Resolved an issue where `context.addTag(...)` was not functioning correctly.
215216
- **RatingGroup**: Fixed a bug where both the rating group and rating item received focus when
216217
`readOnly` was set to `true`.
217218
- **Combobox**: Corrected behavior where `getSelectionValue` was called multiple times; it now
@@ -469,7 +470,7 @@ toaster.create({
469470

470471
- **Pagination**
471472

472-
- Expose `api.count` property
473+
- Expose `context.count` property
473474

474475
### Changed
475476

@@ -777,8 +778,8 @@ export const Provider = () => {
777778
### Highlights
778779

779780
The 3.0 release brings significant enhancements and some breaking changes for a more streamlined and
780-
flexible API. Key updates include new components and types, improved form integration, and forward
781-
compatibility with React 19. Here are some of the highlights:
781+
flexible CONTEXT. Key updates include new components and types, improved form integration, and
782+
forward compatibility with React 19. Here are some of the highlights:
782783

783784
### Added
784785

@@ -1129,7 +1130,7 @@ only highlight some key changes. Please refer to the documentation for each comp
11291130
change.
11301131
- Breaking changes have been implemented in `Accordion`, `ColorPicker`, `DatePicker`, `Dialog`,
11311132
`RadioGroup`, `SegmentGroup`, `TagsInput`, `Toast`, and `ToggleGroup` to achieve a consistent and
1132-
more intuitive API.
1133+
more intuitive CONTEXT.
11331134
- Resolved various bugs and addressed accessibility issues across all components.
11341135

11351136
### Stability and Support

packages/solid/CHANGELOG.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,34 @@ description: All notable changes will be documented in this file.
66

77
## [Unreleased]
88

9-
### Fixed
10-
11-
- **Color Picker, Hover Card, Tooltip**: Fix issue where placement could intermittently shift due to
12-
`data-placement` being updated
13-
14-
- **File Upload**
15-
16-
- Fixed an issue where change event is not fired when dropping files into the dropzone
17-
- Fixed an issue where `api.setClipboardFiles(...)` was still called when file upload is disabled
18-
- Fixed an issue where machine transitions to `dragging` when disabled
19-
- Fixed an issue where rejected files could not be deleted using the item delete trigger
20-
- Exposed disabled state via `api.disabled`
9+
### Added
2110

22-
- **Tour**: Fixed an issue where dialog tour step doesn't sync its z-index with the content
11+
- **DatePicker**:
12+
- Added `minView` and `maxView` options for better control over the displayed views, allowing to
13+
create Month and Year pickers.
14+
- Introduced a new `parse` method to convert input values into valid dates, complementing the
15+
`format` option for enhanced UX
16+
- Added `locale` and `timeZone` options to the `format` method
17+
- Introduced `placeholder` context property to customize the input's placeholder text
2318

24-
### Added
19+
### Fixed
2520

26-
- **Date Picker**
27-
- Added support for `minView` and `maxView` to provide better control of the datepicker views,
28-
making it easier to build month and year only pickers
29-
- Added new `parse` method to parse input value and return valid date, paired with `format` option
30-
for better UX
31-
- Added `locale` and `timeZone` to the `format` method
32-
- Added support for `placeholder` context property to customize input placeholder text
33-
- Fixed an issue where entering very large invalid dates in input field would cause crash
34-
- Fixed an issue in year view where user is unable to select year when `min` and `max` dates are
35-
less than 1 year and overlap 2 unique years
21+
- **ColorPicker, HoverCard, Tooltip**:
22+
- Fixed intermittent placement shifts caused by updates to the `data-placement` attribute
23+
- **FileUpload**:
24+
- Resolved an issue where the change event wasn’t triggered when files were dropped into the
25+
dropzone
26+
- Fixed an issue where `context.setClipboardFiles(...)` was called despite file upload being
27+
disabled
28+
- Addressed an issue where the machine transitioned to the `dragging` state even when disabled
29+
- Fixed an issue preventing rejected files from being deleted via the item delete trigger
30+
- Exposed the disabled state via `context.disabled`
31+
- **Tour**:
32+
- Fixed an issue where the dialog tour step did not synchronize its z-index with the content
33+
- **Date Picker**:
34+
- Fixed a crash that occurred when entering very large invalid dates in the input field
35+
- Fixed an issue in the year view where selecting a year was not possible when the `min` and `max`
36+
dates were less than one year apart and overlapped two distinct years
3637

3738
## [4.9.0] - 2025-01-14
3839

packages/vue/CHANGELOG.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,34 @@ description: All notable changes will be documented in this file.
66

77
## [Unreleased]
88

9-
### Fixed
10-
11-
- **Color Picker, Hover Card, Tooltip**: Fix issue where placement could intermittently shift due to
12-
`data-placement` being updated
13-
14-
- **File Upload**
15-
16-
- Fixed an issue where change event is not fired when dropping files into the dropzone
17-
- Fixed an issue where `api.setClipboardFiles(...)` was still called when file upload is disabled
18-
- Fixed an issue where machine transitions to `dragging` when disabled
19-
- Fixed an issue where rejected files could not be deleted using the item delete trigger
20-
- Exposed disabled state via `api.disabled`
9+
### Added
2110

22-
- **Tour**: Fixed an issue where dialog tour step doesn't sync its z-index with the content
11+
- **DatePicker**:
12+
- Added `minView` and `maxView` options for better control over the displayed views, allowing to
13+
create Month and Year pickers.
14+
- Introduced a new `parse` method to convert input values into valid dates, complementing the
15+
`format` option for enhanced UX
16+
- Added `locale` and `timeZone` options to the `format` method
17+
- Introduced `placeholder` context property to customize the input's placeholder text
2318

24-
### Added
19+
### Fixed
2520

26-
- **Date Picker**
27-
- Added support for `minView` and `maxView` to provide better control of the datepicker views,
28-
making it easier to build month and year only pickers
29-
- Added new `parse` method to parse input value and return valid date, paired with `format` option
30-
for better UX
31-
- Added `locale` and `timeZone` to the `format` method
32-
- Added support for `placeholder` context property to customize input placeholder text
33-
- Fixed an issue where entering very large invalid dates in input field would cause crash
34-
- Fixed an issue in year view where user is unable to select year when `min` and `max` dates are
35-
less than 1 year and overlap 2 unique years
21+
- **ColorPicker, HoverCard, Tooltip**:
22+
- Fixed intermittent placement shifts caused by updates to the `data-placement` attribute
23+
- **FileUpload**:
24+
- Resolved an issue where the change event wasn’t triggered when files were dropped into the
25+
dropzone
26+
- Fixed an issue where `context.setClipboardFiles(...)` was called despite file upload being
27+
disabled
28+
- Addressed an issue where the machine transitioned to the `dragging` state even when disabled
29+
- Fixed an issue preventing rejected files from being deleted via the item delete trigger
30+
- Exposed the disabled state via `context.disabled`
31+
- **Tour**:
32+
- Fixed an issue where the dialog tour step did not synchronize its z-index with the content
33+
- **Date Picker**:
34+
- Fixed a crash that occurred when entering very large invalid dates in the input field
35+
- Fixed an issue in the year view where selecting a year was not possible when the `min` and `max`
36+
dates were less than one year apart and overlapped two distinct years
3637

3738
## [4.8.0] - 2025-01-14
3839

0 commit comments

Comments
 (0)