diff --git a/.changeset/pre.json b/.changeset/pre.json index 0eb7a729c8..449698e201 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -9,6 +9,7 @@ }, "changesets": [ "afraid-kids-do", + "angry-squids-complain", "beige-rice-shout", "big-dingos-compete", "big-penguins-compare", @@ -78,8 +79,10 @@ "silent-mayflies-change", "silver-chefs-raise", "six-drinks-cheat", + "six-rabbits-change", "sixty-meals-drum", "small-suns-yawn", + "smart-bees-burn", "sour-pears-type", "spicy-peas-poke", "spicy-spies-pull", diff --git a/packages/bezier-figma-plugin/CHANGELOG.md b/packages/bezier-figma-plugin/CHANGELOG.md index 859e402d7b..2806628918 100644 --- a/packages/bezier-figma-plugin/CHANGELOG.md +++ b/packages/bezier-figma-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # bezier-figma-plugin +## 0.1.1-next-v1.48 + +### Patch Changes + +- Updated dependencies [[`b37f1971`](https://github.com/channel-io/bezier-react/commit/b37f1971fa3f8170ed85fc5daaabcebe4f8b7ecb), [`04e05209`](https://github.com/channel-io/bezier-react/commit/04e052097472743ff8d1f43a6192999c1770a559), [`b2629ece`](https://github.com/channel-io/bezier-react/commit/b2629ece4ffcee334fdb0554ed37ee29ed5fa9eb)]: + - @channel.io/bezier-react@1.0.0-next-v1.204 + ## 0.1.1-next-v1.47 ### Patch Changes diff --git a/packages/bezier-figma-plugin/package.json b/packages/bezier-figma-plugin/package.json index 11472f97b6..a43e55d246 100644 --- a/packages/bezier-figma-plugin/package.json +++ b/packages/bezier-figma-plugin/package.json @@ -1,6 +1,6 @@ { "name": "bezier-figma-plugin", - "version": "0.1.1-next-v1.47", + "version": "0.1.1-next-v1.48", "private": true, "description": "Figma plugin that helps build Bezier Design System and increase productivity.", "scripts": { diff --git a/packages/bezier-react/CHANGELOG.md b/packages/bezier-react/CHANGELOG.md index a03f4d5bc1..9443f74505 100644 --- a/packages/bezier-react/CHANGELOG.md +++ b/packages/bezier-react/CHANGELOG.md @@ -1,5 +1,47 @@ # @channel.io/bezier-react +## 1.0.0-next-v1.204 + +### Minor Changes + +- [#1310](https://github.com/channel-io/bezier-react/pull/1310) [`b37f1971`](https://github.com/channel-io/bezier-react/commit/b37f1971fa3f8170ed85fc5daaabcebe4f8b7ecb) Thanks [@sungik-choi](https://github.com/sungik-choi)! - Enhance the accessibility of icons. + +- [#1309](https://github.com/channel-io/bezier-react/pull/1309) [`04e05209`](https://github.com/channel-io/bezier-react/commit/04e052097472743ff8d1f43a6192999c1770a559) Thanks [@sungik-choi](https://github.com/sungik-choi)! - Add a `FeatureProvider` to make non-required features optional. + + BRAKING CHANGES + + The smooth corners feature is turned off by default. To make it behave the same as before, wrap the root of app in a `FeatureProvider`, as shown below. + + ```tsx + import { + FeatureProvider, + SmoothCornersFeature, + BezierProvider, + } from "@channel.io/bezier-react"; + + root.render( + + + + + + ); + ``` + +- [#1317](https://github.com/channel-io/bezier-react/pull/1317) [`b2629ece`](https://github.com/channel-io/bezier-react/commit/b2629ece4ffcee334fdb0554ed37ee29ed5fa9eb) Thanks [@sungik-choi](https://github.com/sungik-choi)! - Implement `AlphaSmoothCornersBox`. + + `AlphaSmoothCornersBox` is a simple `div` element with smooth corners. + It is available by enabling the `SmoothCornersFeature`. + + ```tsx + + + + ``` + + - Change to use `AlphaSmoothCornersBox` for `Avatar`'s internal implementation. `Avatar`'s border is now implemented as a box-shadow instead of a qseudo element. + - Change to use `AlphaSmoothCornersBox` for ellipsis icon of `AvatarGroup`'s internal implementation. + ## 1.0.0-next-v1.203 ### Minor Changes diff --git a/packages/bezier-react/package.json b/packages/bezier-react/package.json index e3f8810792..aefce875dc 100644 --- a/packages/bezier-react/package.json +++ b/packages/bezier-react/package.json @@ -1,6 +1,6 @@ { "name": "@channel.io/bezier-react", - "version": "1.0.0-next-v1.203", + "version": "1.0.0-next-v1.204", "description": "React components library that implements Bezier Design System.", "repository": { "type": "git",