Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(changesets): version packages (next-v1) #1311

Merged
merged 1 commit into from
May 12, 2023

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Apr 26, 2023

This PR was opened by the Changesets release 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 next-v1, this PR will be updated.

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

next-v1 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 next-v1.

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

Releases

@channel.io/bezier-react@1.0.0-next-v1.204

Minor Changes

  • #1310 b37f1971 Thanks @sungik-choi! - Enhance the accessibility of icons.

  • #1309 04e05209 Thanks @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.

    import {
      FeatureProvider,
      SmoothCornersFeature,
      BezierProvider,
    } from "@channel.io/bezier-react";
    
    root.render(
      <FeatureProvider features={[SmoothCornersFeature]}>
        <BezierProvider>
          <App />
        </BezierProvider>
      </FeatureProvider>
    );
  • #1317 b2629ece Thanks @sungik-choi! - Implement AlphaSmoothCornersBox.

    AlphaSmoothCornersBox is a simple div element with smooth corners.
    It is available by enabling the SmoothCornersFeature.

    <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.
  • #1326 620f864d Thanks @Jamie-channel! - Update icons

  • #1272 07dc6ed8 Thanks @sungik-choi! - Re-implement SegmentedControl component. Legacy components are exported to the LegacySegmentedControl namespace.

    SegmentedControl is component that looks like a combination of a radio and a button. They can be used in place of tabs and as input elements in modals. If you have more than five items, use a different element, such as a dropdown.

    SegmentedControl can be used as a radio group, tabs element depending on its type.

    // Anatomy of the SegmentedControl type="radiogroup"
    <SegmentedControl type="radiogroup">
      <SegmentedControlItem />
    </SegmentedControl>
    
    // Anatomy of the SegmentedControl type="tabs"
    <SegmentedControl type="tabs">
      <SegmentedControlTabList>
        <SegmentedControlItem />
      </SegmentedControlTabList>
    
      <SegmentedControlTabContent />
    </SegmentedControl>
  • #1320 5b6c2d5c Thanks @sungik-choi! - Re-implement CheckableAvatar component.

    • CheckableAvatar is a checkbox component that looks like Avatar.
    • It now behaves as a checkbox. Keyboard control is available.
    • Add forwardRef.
    const [checked, setChecked] = useState(false)
    // Controlled
    <CheckableAvatar
      name="John Doe"
      avatarUrl="..."
      checked={checked}
      onCheckedChange={setChecked}
    />
    // Uncontrolled
    <CheckableAvatar
      name="John Doe"
      avatarUrl="..."
      defaultChecked
    />

    BREAKING CHANGES

    • Change name of isChecked property to checked property.
    • Remove isCheckable property.
    • Remove checkedBackgroundColor property.
    • Remove checkableWrapperClassName property.
    • Remove checkableWrapperInterpolation property.

bezier-figma-plugin@0.2.0-next-v1.48

Minor Changes

Patch Changes

@github-actions github-actions bot requested a review from sungik-choi as a code owner April 26, 2023 11:18
@codecov
Copy link

codecov bot commented Apr 26, 2023

Codecov Report

Patch and project coverage have no change.

Comparison is base (2c2e973) 84.29% compared to head (8d060b7) 84.29%.

Additional details and impacted files
@@           Coverage Diff            @@
##           next-v1    #1311   +/-   ##
========================================
  Coverage    84.29%   84.29%           
========================================
  Files          309      309           
  Lines         3916     3916           
  Branches       802      802           
========================================
  Hits          3301     3301           
  Misses         545      545           
  Partials        70       70           

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@github-actions github-actions bot force-pushed the changeset-release/next-v1 branch 3 times, most recently from e5ffa31 to f9d16f1 Compare May 3, 2023 05:04
@github-actions github-actions bot force-pushed the changeset-release/next-v1 branch 10 times, most recently from 5e49fb8 to d5ee64d Compare May 12, 2023 06:29
@github-actions github-actions bot force-pushed the changeset-release/next-v1 branch 2 times, most recently from b7f0873 to 8d060b7 Compare May 12, 2023 06:31
@sungik-choi sungik-choi merged commit 3033ce0 into next-v1 May 12, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant