Skip to content

Commit

Permalink
ci(changesets): version packages (next-v1)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 3, 2023
1 parent b2629ec commit f9d16f1
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
},
"changesets": [
"afraid-kids-do",
"angry-squids-complain",
"beige-rice-shout",
"big-dingos-compete",
"big-penguins-compare",
Expand Down Expand Up @@ -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",
Expand Down
7 changes: 7 additions & 0 deletions packages/bezier-figma-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/bezier-figma-plugin/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
42 changes: 42 additions & 0 deletions packages/bezier-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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(
<FeatureProvider features={[SmoothCornersFeature]}>
<BezierProvider>
<App />
</BezierProvider>
</FeatureProvider>
);
```

- [#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
<FeatureProvider features={[SmoothCornersFeature]}>
<AlphaSmoothCornersBox />
</FeatureProvider>
```

- 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
Expand Down
2 changes: 1 addition & 1 deletion packages/bezier-react/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

0 comments on commit f9d16f1

Please sign in to comment.