diff --git a/packages/babel-plugin-orbit-components/CHANGELOG.md b/packages/babel-plugin-orbit-components/CHANGELOG.md index 453e89ca85..4cab0d76f2 100644 --- a/packages/babel-plugin-orbit-components/CHANGELOG.md +++ b/packages/babel-plugin-orbit-components/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.1.23](https://github.com/kiwicom/orbit/compare/@kiwicom/babel-plugin-orbit-components@5.1.22...@kiwicom/babel-plugin-orbit-components@5.1.23) (2024-11-21) + +**Note:** Version bump only for package @kiwicom/babel-plugin-orbit-components + + + + + ## [5.1.22](https://github.com/kiwicom/orbit/compare/@kiwicom/babel-plugin-orbit-components@5.1.21...@kiwicom/babel-plugin-orbit-components@5.1.22) (2024-11-07) **Note:** Version bump only for package @kiwicom/babel-plugin-orbit-components diff --git a/packages/babel-plugin-orbit-components/package.json b/packages/babel-plugin-orbit-components/package.json index 92595f2bd6..c50bce4e70 100644 --- a/packages/babel-plugin-orbit-components/package.json +++ b/packages/babel-plugin-orbit-components/package.json @@ -1,7 +1,7 @@ { "name": "@kiwicom/babel-plugin-orbit-components", "description": "A babel plugin for transforming destructured imports to granular ones.", - "version": "5.1.22", + "version": "5.1.23", "author": "kiwicom", "repository": { "type": "git", @@ -28,6 +28,6 @@ "test": "yarn test:file && yarn test:compile && node scripts/testRequire.js" }, "devDependencies": { - "@kiwicom/orbit-components": "^17.2.1" + "@kiwicom/orbit-components": "^18.0.0" } } diff --git a/packages/orbit-components/CHANGELOG.md b/packages/orbit-components/CHANGELOG.md index 00c7dc2094..f7f3da2d83 100644 --- a/packages/orbit-components/CHANGELOG.md +++ b/packages/orbit-components/CHANGELOG.md @@ -3,6 +3,40 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [18.0.0](https://github.com/kiwicom/orbit/compare/@kiwicom/orbit-components@17.2.1...@kiwicom/orbit-components@18.0.0) (2024-11-21) + + +### Bug Fixes + +* **Seat:** id was not being applied to SeatLegend ([cebf4c6](https://github.com/kiwicom/orbit/commit/cebf4c61b53495c484ff370caed0ee9736a2068a)) + + +### Features + +* **Checkbox:** remove readOnly prop ([47706f1](https://github.com/kiwicom/orbit/commit/47706f19584c7443ab0a180a668595b3c0e2e1fb)) +* **Heading:** add role and level conditional props ([995ceca](https://github.com/kiwicom/orbit/commit/995cecad5bbd7f553df2707a6c7b890fbc8a0f28)) +* **Radio:** remove readOnly prop ([6d6b95c](https://github.com/kiwicom/orbit/commit/6d6b95cb455f3a71289bc67b5491ddc5c65b8495)) +* **Seat:** add aria-labelledby string prop ([1483f4c](https://github.com/kiwicom/orbit/commit/1483f4cdbda399390a6ec477659a61651fa28fb7)) +* **Seat:** change type of label and price props to string ([cee5c2a](https://github.com/kiwicom/orbit/commit/cee5c2a23c5480a0d97ab64bc4ece79d1451f14c)) +* **SeatLegend:** add aria-label string prop ([3f7da74](https://github.com/kiwicom/orbit/commit/3f7da74e702847d80eb486632ad08bc0c5f3fb5c)) +* **Seat:** remove default values from title and description props ([290bf21](https://github.com/kiwicom/orbit/commit/290bf2100be4686f499c0bfa173e89aea2bba96d)) + + +### BREAKING CHANGES + +* **Seat:** `label` and `price` props now only accept string. +They no longer accept ReactNode +* **Seat:** `title` and `description` props no longer have default values. +They can be manually set with text to be announced by screen readers. +* **Checkbox:** readOnly prop no longer available. +Use disabled instead. +* **Radio:** readOnly prop no longer available. +Use disabled instead. + + + + + ## [17.2.1](https://github.com/kiwicom/orbit/compare/@kiwicom/orbit-components@17.2.0...@kiwicom/orbit-components@17.2.1) (2024-11-07) diff --git a/packages/orbit-components/package.json b/packages/orbit-components/package.json index 4e3da80e03..0d8e7abede 100644 --- a/packages/orbit-components/package.json +++ b/packages/orbit-components/package.json @@ -1,6 +1,6 @@ { "name": "@kiwicom/orbit-components", - "version": "17.2.1", + "version": "18.0.0", "description": "Orbit-components is a React component library which provides developers with the easiest possible way of building Kiwi.com’s products.", "sideEffects": false, "author": "Kiwi.com",