diff --git a/.changeset/dismissible-progress-toast.md b/.changeset/dismissible-progress-toast.md deleted file mode 100644 index 41382d7d7..000000000 --- a/.changeset/dismissible-progress-toast.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cube-dev/ui-kit": minor ---- - -Add `isDismissable` option to progress toasts. When enabled, a "Hide" action button appears during loading, allowing users to temporarily dismiss the toast. The toast will not re-appear during the same loading cycle after being dismissed. diff --git a/.changeset/rename-is-dismissible-to-is-dismissable.md b/.changeset/rename-is-dismissible-to-is-dismissable.md deleted file mode 100644 index 797ceea6d..000000000 --- a/.changeset/rename-is-dismissible-to-is-dismissable.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cube-dev/ui-kit": minor ---- - -Rename `isDismissible` prop to `isDismissable` in Banner and Notification components for consistency with other components (Dialog, LayoutPanel, etc.). This is a breaking change - update your code to use `isDismissable` instead of `isDismissible`. diff --git a/.changeset/restore-notifications.md b/.changeset/restore-notifications.md deleted file mode 100644 index 1a9031d8f..000000000 --- a/.changeset/restore-notifications.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cube-dev/ui-kit": minor ---- - -Add notification restore functionality. When an async action returns `false`, dismissed notifications can now be restored automatically. diff --git a/.changeset/update-progress-toast.md b/.changeset/update-progress-toast.md deleted file mode 100644 index db243eb24..000000000 --- a/.changeset/update-progress-toast.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cube-dev/ui-kit": patch ---- - -Improve progress toast updates. Progress toasts now update in-place instead of removing and re-adding, preventing unnecessary exit/enter animations when data changes. diff --git a/CHANGELOG.md b/CHANGELOG.md index 58a4b6d55..631fa0d94 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # @cube-dev/ui-kit +## 0.118.0 + +### Minor Changes + +- [#1056](https://github.com/cube-js/cube-ui-kit/pull/1056) [`fada43b6`](https://github.com/cube-js/cube-ui-kit/commit/fada43b6aa93232dc85af5e03a0c4737054b5683) Thanks [@tenphi](https://github.com/tenphi)! - Add `isDismissable` option to progress toasts. When enabled, a "Hide" action button appears during loading, allowing users to temporarily dismiss the toast. The toast will not re-appear during the same loading cycle after being dismissed. + +- [#1056](https://github.com/cube-js/cube-ui-kit/pull/1056) [`fada43b6`](https://github.com/cube-js/cube-ui-kit/commit/fada43b6aa93232dc85af5e03a0c4737054b5683) Thanks [@tenphi](https://github.com/tenphi)! - Rename `isDismissible` prop to `isDismissable` in Banner and Notification components for consistency with other components (Dialog, LayoutPanel, etc.). This is a breaking change - update your code to use `isDismissable` instead of `isDismissible`. + +- [#1056](https://github.com/cube-js/cube-ui-kit/pull/1056) [`fada43b6`](https://github.com/cube-js/cube-ui-kit/commit/fada43b6aa93232dc85af5e03a0c4737054b5683) Thanks [@tenphi](https://github.com/tenphi)! - Add notification restore functionality. When an async action returns `false`, dismissed notifications can now be restored automatically. + +### Patch Changes + +- [#1056](https://github.com/cube-js/cube-ui-kit/pull/1056) [`fada43b6`](https://github.com/cube-js/cube-ui-kit/commit/fada43b6aa93232dc85af5e03a0c4737054b5683) Thanks [@tenphi](https://github.com/tenphi)! - Improve progress toast updates. Progress toasts now update in-place instead of removing and re-adding, preventing unnecessary exit/enter animations when data changes. + ## 0.117.0 ### Minor Changes diff --git a/package.json b/package.json index 5dd2062ca..0dabddf99 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cube-dev/ui-kit", - "version": "0.117.0", + "version": "0.118.0", "type": "module", "description": "UIKit for Cube Projects", "repository": {