ci(changesets): version packages (alpha) #1967
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 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, runchangeset pre exit
onalpha
.Releases
@channel.io/bezier-react@2.0.0-alpha.10
Major Changes
Breaking Changes: Remove
TooltipProvider
and Property updates inTooltip
component (#1974) by @sungik-choiTooltipProvider
andTooltipProviderProps
.Tooltip
component was implemented via radix-ui's Tooltip, which required the use of aTooltipProvider
, which caused all subcomponents to be re-rendered and caused a performance hit. We decided that the ability to share hover delay time betweenTooltip
components viaTooltipProvider
was not a feature we needed, even with the performance penalty. Also, by providingTooltipProvider
built-in toAppProvider
, we were unnecessarily importing modules from our library usage that didn't requireTooltip
.Tooltip
component now contains aTooltipProvider
inside it.Minor Changes:
delayShow
prop from300
to0
.Breaking changes: Remove
testId
and related properties (#1971) by @sungik-choiNo longer supports
testId
and related properties(e.g.wrapperTestId
).testId
is a property used internally by the library for testing with testing-library (getByTestId
). We don't see a need to expose this as a public API, so we remove it.If you were using it, please replace it with the
data-testid
property. See https://testing-library.com/docs/queries/bytestid/.Breaking Changes: Deprecated modules for internal use (#1963) by @sungik-choi
useEventHandler
anduseMergeRefs
hook.useId
hook. UseuseId
hook ofreact
instead.getRootElement
hook. UseuseWindow
hook instead.StyleUtils
andStringUtils
utils.Breaking Changes: Deprecate support for
styled-components
related modules (#1962) by @sungik-choiuseToken
hook and components to replace itLightFoundation
andDarkFoundation
Spacing
ev1
,ev2
,ev3
,ev4
,ev5
andev6
createThemes
,Theme
,SemanticNames
,LightTheme
andDarkTheme
TransitionDuration
andTransition
Border
Typography
,TypoAbsoluteNumber
,LineHeightAbsoluteNumber
andTypographyType
absoluteCenter
,disableAutoMinimum
,hideScrollbars
andellipsis
ThemeVarsAdditionalType
andThemeVars
GlobalStyle
Foundation
GlobalStyleProp
createGlobalStyle
,styled
,css
,FoundationProvider
,useFoundation
,keyframes
,StyleSheetManager
andServerStyleSheet
BezierProvider
. Use theAppProvider
insteadgap
andtouchableHover
mixins. Please implement and use your owninputTextStyle
,inputPlaceholderStyle
,inputWrapperStyle
,focusedInputWrapperStyle
anderroredInputWrapperStyle
. Please migrate using@channel.io/bezier-codemod
'sv2-interpolation-to-css-variable
transformer.Minor Changes
Banner
will now render content even if thecontent
prop is not a string. The same applies to link-related props. (#1972) by @sungik-choiAdd
useRootElement
hook. It is only available toWindowProvider
children, and provides easy access to the root element of window context value. (#1981) by @sungik-choiPatch Changes