Skip to content

Commit

Permalink
ci(changesets): version packages (alpha) (#2077)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to alpha, this PR
will be updated.

⚠️⚠️⚠️⚠️⚠️⚠️

`alpha` is currently in **pre mode** so this branch has prereleases
rather than normal releases. If you want to exit prereleases, run
`changeset pre exit` on `alpha`.

⚠️⚠️⚠️⚠️⚠️⚠️

# Releases
## @channel.io/[email protected]

### Major Changes

- **Breaking Changes: `AlphaSmoothCornersBox` component is now
`SmoothCornersBox` component.**
([#2079](#2079)) by
@sungik-choi

### Minor Changes

- Add the `TooltipPrimitive` component, which is the same as the
[`Tooltip` component in
radix-ui](https://www.radix-ui.com/primitives/docs/components/tooltip).
You can use it by importing it from the `/alpha` path.
([#2049](#2049)) by
@sungik-choi

    ```tsx
    import {
      TooltipPrimitive,
      TooltipPrimitiveArrow,
      TooltipPrimitiveContent,
      TooltipPrimitivePortal,
      TooltipPrimitiveProvider,
      TooltipPrimitiveTrigger,
    } from "@channel.io/bezier-react/alpha";
    ```

- Add the `DialogPrimitive` component, which is the same as the
[`Dialog` component in
radix-ui](https://www.radix-ui.com/primitives/docs/components/dialog).
You can use it by importing it from the `/alpha` path.
([#2049](#2049)) by
@sungik-choi

    ```tsx
    import {
      DialogPrimitive,
      DialogPrimitiveClose,
      DialogPrimitiveContent,
      DialogPrimitiveDescription,
      DialogPrimitiveOverlay,
      DialogPrimitivePortal,
      DialogPrimitiveTitle,
      DialogPrimitiveTrigger,
    } from "@channel.io/bezier-react/alpha";
    ```

## [email protected]

### Patch Changes

- Enhance icon extract logic by catching error
([#2073](#2073)) by
@yangwooseong

-   Updated dependencies
    -   @channel.io/[email protected]

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Mar 19, 2024
1 parent 9802f9c commit 2fe23e3
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"early-garlics-smoke",
"early-tables-taste",
"eight-hounds-smoke",
"eight-turtles-relax",
"eighty-crabs-argue",
"eighty-steaks-play",
"empty-jars-shop",
Expand All @@ -41,6 +42,7 @@
"giant-terms-impress",
"gold-gorillas-shout",
"good-dodos-obey",
"great-socks-jam",
"great-ties-hunt",
"grumpy-flowers-trade",
"healthy-rocks-tap",
Expand Down Expand Up @@ -86,11 +88,13 @@
"six-humans-occur",
"six-lemons-admire",
"sixty-cows-fetch",
"sixty-goats-eat",
"slimy-lobsters-sparkle",
"small-readers-compare",
"smart-geese-provide",
"smart-ravens-rescue",
"soft-months-film",
"soft-parents-work",
"sour-dogs-sin",
"stale-nails-study",
"strange-colts-beg",
Expand Down
9 changes: 9 additions & 0 deletions packages/bezier-figma-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# bezier-figma-plugin

## 0.5.0-alpha.8

### Patch Changes

- Enhance icon extract logic by catching error ([#2073](https://github.com/channel-io/bezier-react/pull/2073)) by @yangwooseong

- Updated dependencies
- @channel.io/[email protected]

## 0.5.0-alpha.7

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions 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.5.0-alpha.7",
"version": "0.5.0-alpha.8",
"private": true,
"description": "Figma plugin that helps build Bezier design system and increase productivity.",
"repository": {
Expand Down Expand Up @@ -39,7 +39,7 @@
},
"dependencies": {
"@channel.io/bezier-icons": "0.22.0",
"@channel.io/bezier-react": "2.0.0-alpha.19",
"@channel.io/bezier-react": "2.0.0-alpha.20",
"octokit": "^3.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
Expand Down
36 changes: 36 additions & 0 deletions packages/bezier-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @channel.io/bezier-react

## 2.0.0-alpha.20

### Major Changes

- **Breaking Changes: `AlphaSmoothCornersBox` component is now `SmoothCornersBox` component.** ([#2079](https://github.com/channel-io/bezier-react/pull/2079)) by @sungik-choi

### Minor Changes

- Add the `TooltipPrimitive` component, which is the same as the [`Tooltip` component in radix-ui](https://www.radix-ui.com/primitives/docs/components/tooltip). You can use it by importing it from the `/alpha` path. ([#2049](https://github.com/channel-io/bezier-react/pull/2049)) by @sungik-choi

```tsx
import {
TooltipPrimitive,
TooltipPrimitiveArrow,
TooltipPrimitiveContent,
TooltipPrimitivePortal,
TooltipPrimitiveProvider,
TooltipPrimitiveTrigger,
} from "@channel.io/bezier-react/alpha";
```

- Add the `DialogPrimitive` component, which is the same as the [`Dialog` component in radix-ui](https://www.radix-ui.com/primitives/docs/components/dialog). You can use it by importing it from the `/alpha` path. ([#2049](https://github.com/channel-io/bezier-react/pull/2049)) by @sungik-choi

```tsx
import {
DialogPrimitive,
DialogPrimitiveClose,
DialogPrimitiveContent,
DialogPrimitiveDescription,
DialogPrimitiveOverlay,
DialogPrimitivePortal,
DialogPrimitiveTitle,
DialogPrimitiveTrigger,
} from "@channel.io/bezier-react/alpha";
```

## 2.0.0-alpha.19

### Patch 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": "2.0.0-alpha.19",
"version": "2.0.0-alpha.20",
"description": "React components library that implements Bezier design system.",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2060,7 +2060,7 @@ __metadata:
languageName: unknown
linkType: soft

"@channel.io/bezier-react@npm:2.0.0-alpha.19, @channel.io/bezier-react@workspace:packages/bezier-react":
"@channel.io/bezier-react@npm:2.0.0-alpha.20, @channel.io/bezier-react@workspace:packages/bezier-react":
version: 0.0.0-use.local
resolution: "@channel.io/bezier-react@workspace:packages/bezier-react"
dependencies:
Expand Down Expand Up @@ -8434,7 +8434,7 @@ __metadata:
resolution: "bezier-figma-plugin@workspace:packages/bezier-figma-plugin"
dependencies:
"@channel.io/bezier-icons": "npm:0.22.0"
"@channel.io/bezier-react": "npm:2.0.0-alpha.19"
"@channel.io/bezier-react": "npm:2.0.0-alpha.20"
"@figma/plugin-typings": "npm:^1.87.0"
"@types/react": "npm:^18.2.59"
"@types/react-dom": "npm:^18.2.19"
Expand Down

0 comments on commit 2fe23e3

Please sign in to comment.