diff --git a/.changeset/deep-owls-hang.md b/.changeset/deep-owls-hang.md deleted file mode 100644 index 2910210fd6..0000000000 --- a/.changeset/deep-owls-hang.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calcom/atoms": minor ---- - -fix: EventTypeSettings Atom crashes on enabling `Lock timezone on booking` in advanced tab diff --git a/.changeset/forty-clubs-mate.md b/.changeset/forty-clubs-mate.md deleted file mode 100644 index fc0d7c5884..0000000000 --- a/.changeset/forty-clubs-mate.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@calcom/atoms": minor ---- - -Added new callback functions to the handleFormSubmit method in the EventTypeSettings and AvailabilitySettings atoms. The handleFormSubmit method now accepts an optional callbacks object with the following properties: - -- **onSuccess**: Called when the form submission is successful, allowing additional logic to be executed after the update. - -- **onError**: Called when an error occurs during form submission, providing details about the error to handle specific cases or display custom messages. diff --git a/.changeset/great-hands-lick.md b/.changeset/great-hands-lick.md deleted file mode 100644 index c75a4aaaa9..0000000000 --- a/.changeset/great-hands-lick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calcom/atoms": minor ---- - -Added showNoAvailabilityDialog prop to the Booker atom – a Boolean that controls whether the 'no availability' dialog is displayed \ No newline at end of file diff --git a/.changeset/mighty-wings-create.md b/.changeset/mighty-wings-create.md deleted file mode 100644 index 091fe4eebb..0000000000 --- a/.changeset/mighty-wings-create.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calcom/atoms": minor ---- - -feat: style calendar settings and availability overrides diff --git a/.changeset/shaggy-goats-flash.md b/.changeset/shaggy-goats-flash.md deleted file mode 100644 index 329a06e23f..0000000000 --- a/.changeset/shaggy-goats-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@calcom/atoms": minor ---- - -booker atom: allow toggling org and team info when booking round robin diff --git a/packages/platform/atoms/CHANGELOG.md b/packages/platform/atoms/CHANGELOG.md index caaba58968..08d5b88f13 100644 --- a/packages/platform/atoms/CHANGELOG.md +++ b/packages/platform/atoms/CHANGELOG.md @@ -1,5 +1,23 @@ ## 1.1.2 +## 1.3.0 + +### Minor Changes + +- [#23060](https://github.com/calcom/cal.com/pull/23060) [`293dd1a`](https://github.com/calcom/cal.com/commit/293dd1a1402fbc0748dffd5619a1b1aacaea9d60) Thanks [@SomayChauhan](https://github.com/SomayChauhan)! - fix: EventTypeSettings Atom crashes on enabling `Lock timezone on booking` in advanced tab + +- [#22911](https://github.com/calcom/cal.com/pull/22911) [`d3fbc73`](https://github.com/calcom/cal.com/commit/d3fbc73a3962a9bcca6a95870b146a97f4c7d996) Thanks [@SomayChauhan](https://github.com/SomayChauhan)! - Added new callback functions to the handleFormSubmit method in the EventTypeSettings and AvailabilitySettings atoms. The handleFormSubmit method now accepts an optional callbacks object with the following properties: + + - **onSuccess**: Called when the form submission is successful, allowing additional logic to be executed after the update. + + - **onError**: Called when an error occurs during form submission, providing details about the error to handle specific cases or display custom messages. + +- [#23052](https://github.com/calcom/cal.com/pull/23052) [`fc2e81e`](https://github.com/calcom/cal.com/commit/fc2e81e89a6e320c7346dad3259dd51ed700fb30) Thanks [@SomayChauhan](https://github.com/SomayChauhan)! - Added showNoAvailabilityDialog prop to the Booker atom – a Boolean that controls whether the 'no availability' dialog is displayed + +- [#22976](https://github.com/calcom/cal.com/pull/22976) [`abe92cd`](https://github.com/calcom/cal.com/commit/abe92cd693f33d20113f5357a960baec042e5256) Thanks [@supalarry](https://github.com/supalarry)! - feat: style calendar settings and availability overrides + +- [#22956](https://github.com/calcom/cal.com/pull/22956) [`d18e233`](https://github.com/calcom/cal.com/commit/d18e23378b699e734e9dbbdf93225b02a9059ff4) Thanks [@supalarry](https://github.com/supalarry)! - booker atom: allow toggling org and team info when booking round robin + ## 1.2.0 ### Minor Changes diff --git a/packages/platform/atoms/package.json b/packages/platform/atoms/package.json index 8e5b4b60a2..2a6d6b24b5 100644 --- a/packages/platform/atoms/package.json +++ b/packages/platform/atoms/package.json @@ -4,7 +4,7 @@ "type": "module", "description": "Customizable UI components to integrate scheduling into your product.", "authors": "Cal.com, Inc.", - "version": "1.2.0", + "version": "1.3.0", "scripts": { "dev": "yarn vite build --watch & npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify --watch", "build": "NODE_OPTIONS='--max_old_space_size=12288' rm -rf dist && yarn vite build && npx tailwindcss -i ./globals.css -o ./globals.min.css --postcss --minify && mkdir ./dist/packages/prisma-client && cp -rf ../../../node_modules/.prisma/client/*.d.ts ./dist/packages/prisma-client",