Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@channel.io/bezier-codemod
Advanced tools
Codemod transformations to help upgrade app using Bezier design system.
Codemod transformations to help upgrade app using Bezier design system.
In your terminal, navigate into your project's folder, then run:
npx @channel.io/bezier-codemod
icons-to-bezier-icons
Update the import syntax for the icon source moved from @channel.io/bezier-react
to @channel.io/bezier-icons
.
For example:
import React from 'react'
import {
AllIcon,
Button,
CheckIcon as CheckIconSource,
Icon,
type IconName,
IconSize,
} from '@channel.io/bezier-react'
import Foo from './foo'
Transforms into:
import React from 'react'
import {
AllIcon,
CheckIcon as CheckIconSource,
type IconName,
} from '@channel.io/bezier-icons'
import { Button, Icon, IconSize } from '@channel.io/bezier-react'
import Foo from './foo'
v2-enum-member-to-string-literal
Replace deprecated enum usage to string literal.
For example:
import {
ProgressBar,
ProgressBarSize,
ProgressBarVariant,
} from '@channel.io/bezier-react'
export default () => (
<ProgressBar
width="100%"
size={ProgressBarSize.M}
variant={ProgressBarVariant.GreenAlt}
value={uploadProgressPercentage / 100}
/>
)
Transforms into:
import { ProgressBar } from '@channel.io/bezier-react'
export default () => (
<ProgressBar
width="100%"
size="m"
variant="green-alt"
value={uploadProgressPercentage / 100}
/>
)
v2-foundation-to-css-variable
Replace foundation to css variable
You can also use individual transform function such as foundation-to-css-theme
, foundation-to-css-rounding
, and so on.
For example:
import { styled } from '@channel.io/bezier-react'
const Wrapper = styled.div`
color: ${({ foundation }) => foundation?.theme?.['txt-black-dark']};
${({ foundation }) => foundation?.rounding.round12};
${({ foundation }) =>
foundation?.border?.getBorder(0.5, foundation.theme['bdr-black-light'], {
top: false,
right: false,
left: false,
})};
${({ foundation }) => foundation?.elevation?.ev1()};
margin-bottom: ${({ foundation }) => foundation?.spacing.s6};
${({ foundation }) => foundation?.transition?.getTransitionsCSS('color')};
`
Transforms into:
import { styled } from '@channel.io/bezier-react'
const Wrapper = styled.div`
color: var(--txt-black-dark);
overflow: hidden;
border-radius: var(--radius-12);
border-color: var(--bdr-black-light);
border-style: none none solid none;
border-width: 0.5px;
background-color: var(--bg-white-low);
box-shadow: var(--ev-1);
margin-bottom: 16px;
transition: color var(--transition-s);
`
v2-interpolation-to-css-variable
Replace various interpolation such as Typography
, ZIndex
, InputWrapperStyle
, Rounding
to css variable
For example:
import {
styled,
Typography,
inputWrapperStyle,
focusedInputWrapperStyle,
erroredInputWrapperStyle,
ZIndex,
Rounding,
} from '@channel.io/bezier-react'
const Wrapper = styled.div`
${Typography.Size11};
${inputWrapperStyle};
${({ focus }) => focus && focusedInputWrapperStyle};
${erroredInputWrapperStyle};
${inputPlaceholderStyle};
z-index: ${ZIndex.Hide};
${Rounding.round12};
`
Transforms into:
import { styled } from '@channel.io/bezier-react'
const Wrapper = styled.div`
/* NOTE: Do not use font-related css variables below separately, use Text component instead */
font-size: var(--typography-size-11-font-size);
line-height: var(--typography-size-11-line-height);
box-shadow: var(--input-box-shadow);
${({ focus }) =>
focus &&
css`
box-shadow: var(--input-box-shadow-focused);
`};
box-shadow: var(--input-box-shadow-invalid);
&::placeholder {
color: var(--txt-black-dark);
}
z-index: var(--z-index-hidden);
overflow: hidden;
border-radius: var(--radius-12);
`
It also handles when ZIndex
is used in object.
import { ZIndex } from '@channel.io/bezier-react'
export const OVERLAY_POSITION1 = {
zIndex: ZIndex.Modal,
}
Transforms into:
export const OVERLAY_POSITION1 = {
zIndex: 'var(--z-index-modal)',
}
v2-import-from-bezier-to-styled-components
Switch library to import styled
, css
, StyleSheetManager
, keyframes
, createGlobalStyle
, ServerStyleSheet
object from @channel.io/bezier-react
to styled-components
For example:
import { styled, Button, css } from '@channel.io/bezier-react'
export const Wrapper = styled(Button)`
${css`
background: red;
`}
`
Transforms into:
import styled, { css } from 'styled-components'
import { Button } from '@channel.io/bezier-react'
export const Wrapper = styled(Button)`
${css`
background: red;
`}
`
Legacy
prefix to components to be deprecated and remove Alpha
prefix from experimental componentsv2-remove-alpha-from-alpha-components
Components to be deprecated
Stack
HStack
VStack
StackItem
Spacer
Experimental components
AlphaStack
AlphaCenter
For example:
import {
VStack,
StackItem,
AlphaStack,
AlphaCenter,
} from '@channel.io/bezier-react'
function Foo() {
return (
<VStack>
<StackItem>
<div />
</StackItem>
<StackItem>
<div />
</StackItem>
</VStack>
)
}
function Bar() {
return (
<AlphaStack direction="horizontal">
<div />
<div />
</AlphaStack>
)
}
function Baz() {
return (
<AlphaCenter>
<div />
</AlphaCenter>
)
}
Transforms into:
import {
LegacyVStack,
LegacyStackItem,
Stack,
Center,
} from '@channel.io/bezier-react'
function Foo() {
return (
<LegacyVStack>
<LegacyStackItem>
<div />
</LegacyStackItem>
<LegacyStackItem>
<div />
</LegacyStackItem>
</LegacyVStack>
)
}
function Bar() {
return (
<Stack direction="horizontal">
<div />
<div />
</Stack>
)
}
function Baz() {
return (
<Center>
<div />
</Center>
)
}
Text
v2-text-component-interface
Replace Typography
enum with string literal and change marginAll
property to short.
For example:
import { Text, styled, Typography } from '@channel.io/bezier-react'
function Foo() {
return (
<Text
typo={Typography.Size13}
marginAll={4}
>
title
</Text>
)
}
const Title = styled(Text).attrs({
typo: Typography.Size13,
marginAll: 4,
})``
Transforms into:
import { Text, styled } from '@channel.io/bezier-react'
function Foo() {
return (
<Text
typo="13"
margin={4}
>
title
</Text>
)
}
const Title = styled(Text).attrs({
typo: '13',
margin: 4,
})``
FAQs
Codemod transformations to help upgrade app using Bezier design system.
We found that @channel.io/bezier-codemod demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.