Start · From 1.x to 2.0
From 1.x to 2.0

Start upgrade

Upgrade preparation

Please submit all your currently modified code and checkout a separate git branch to ensure that the git workspace is clean

Install Semi 2.0

Modify code

To modify the code related to breaking change, you can manually check the following incompatible list. Check the code one by one and modify it. In addition, we also provide a codemod cli tool to help you quickly upgrade to version 2.0.
1. Install the automatic upgrade tool globally:
2. Use semi-codemod-v2 to scan the project code and automatically modify breaking changes
If you want to know the specific scope of automatic changes made by codemod, you can check this document
Example of useCommand to be executed
When you want to scan and upgrade all files of the entire project
(The project path is root/workspace/demo-project)
semi-codemod-v2 root/workspace/demo-project
When you only want to scan and upgrade a single filesemi-codemod-v2 root/workspace/demo-project/testFile.jsx
When you only want to scan and upgrade a single file, but you only want to output the changes to the terminal without writing the actual changes to the filesemi-codemod-v2 root/workspace/demo-project/testFile.jsx --dry

codemod
3. For the part that can be recognized but cannot be automatically modified, codemod will prompt on the command line and throw a warning. You need to suggest to modify manually according to the prompts
warning All warning logs will be output in the semi-codemod-log.log file under ProjectPath, and you can check and modify them one by one according to the log.
4. Update the usage of Css Variable
If you use Semi's css variable in your code, in addition to using semi-codemod-v2, you also need to use the style-lint tool we provide to automatically update all css varable usage
  • Install Semi style-lint package
  • create or update .stylelintrc.json file
  • CSS Token updated from 1.x to 2.x
Automatic replacement depends on stylelint, only replaces the color variables in the style file or style attribute (the quoted value will not be replaced), it is recommended to search globally after the replacement, where there is no clean replacement
VS Code token replace
5. Update the theme package
If you use a custom theme package in your project, you need to go to Semi DSM (the upgraded version of the original Semi theme store) to release the 2.x version of the theme package. And install the new theme npm package into the project
6. Run your project for dev build. Modify the code segment that throws the error
Since codemod relies on the AST syntax tree for analysis and replacement, it is not ruled out that it cannot be detected by AST analysis. And because we refactored TS in version 2.x, the related type definitions will be stricter than 1.x. There may be cases where some type checking can pass in 1.x but fail to compile in 2.x. This type of case will be directly exposed during the construction phase, so you can directly modify the case by case accordingly.
At this point, you have completed all the upgrade steps🥳
Although we have considered the user's usage scenarios as much as possible, we still cannot rule out omissions or cases that cannot be detected by relying on AST analysis. The automatic modification/detection of codemod may not cover all scenarios. If you find a case that is not covered by the codemod, you can pull up oncall to give feedback.
Please perform regression testing on all pages with code modifications.

What are the incompatible changes in 2.0

🎁 Package name adjustment

v2.0 Semi is officially released to the public network npm, the package name needs to be adjusted, the original @ies prefix is removed, and the @douyinfe prefix is used.

🔍 Import path change

Import components

Import interface(TypeScript project)

All interface related changes can be found in Semi 1.x -> 2.0 TS interface change detailed record

Import locale language packages

  • Icon related
    • Icon component no longer supports type = xxx using built-in icons
    • Custom svg no longer supports plug-in configuration srcSvgPaths
    • The Button icon and iconType property no longer supports passing built-in icon names through strings
    • Dropdown deletes the iconType attribute and unifies it into the icon attribute
    • Navigation icon no longer support incoming by string, ReactNode needs to be passed in
    • Notification icon are no longer passed in by string, please use ReactNode uniformly
    • Banner iconcloseIcon are no longer passed in by string, please use ReactNode uniformly
    • Typography.Text icon are no longer passed in by string, please use ReactNode uniformly
    • Breadcrumb.Item icon are no longer passed in by string, please use ReactNode uniformly
  • AutoComplete officially discards the onChangeWithObject property
  • Remove onInputChange from Cascader triggerRender
  • Form no longer exports Label components from semi-ui/index.js
  • Tree onRightClick renamed onContextMenu
  • Upload dragable renamed draggable
  • Tooltip no longer supports the disabled attribute, and components that rely on Tooltip (such as Popover, Dropdown, etc.) transparently transmitted to Tooltip disabled will become invalid
  • Table
    • API that no longer responds when componentDidUpdate
      • defaultExpandAllRows, please replace with expandAllRows
      • defaultExpandRowKeys, please replace with expandRowKeys
      • defaultExpandAllGroupRows, please replace with expandAllGroupRows

🎨 Style incompatibility

  • CSS variable with semi prefix, for example --color-primary = > --semi-color-primary
    • Users who use Semi CSS Variable to implement features such as dark mode need to update the variables in custom CSS uniformly
    • Users who do not use Semi CSS Variable in custom components or pages need not pay attention and are not affected
  • In 2.x, the unified set the width and height of the illustration to 200 * 200px. If you want to simulate the width and height of 1.x, you can set style = {{width: 300, height: 150}} to the illustration.
  • The common className of the Icon component is changed from semi-icons to semi-icon, aligning component names

Plugin adjustment

If you use Semi plug-ins, such as @ies/semi-ui-plugin-webpack or @ies/semi-ui-plugin-eden etc. to achieve some advanced configuration, you need to understand the following changes:
  • Svg related
    • The iconLazyLoad, svgPaths, srcSvgPaths configurations are no longer supported.
  • Dark mode related
    • Local dark mode and bright mode no longer need to configure themeScope attributes in the plug-in, and the default is built-in. The usage method is updated from adding id #semi-ways-xxx to adding class .semi-ways-xxx.

Other adjustments

Icon/Illustration use adjustment

In the 0.x/1.x version of Semi, we strongly rely on svg-sprite-loader to convert svg files to svg symbols and insert body at runtime, so that we can use Icon icons only through < Icon type = 'xxx'/> in the form of string. While convenient to use, it also brings some problems: icon is introduced in full by default and cannot be shaken; svg-sprite-loader is strongly bound to webpack and cannot easily support Rollup, Vite, Snowpack and other construction schemes. Therefore, in 2.0, we removed the strong binding with svg-sprite-loader, and the consumption mode of Icon needs to be changed: Icon usage adjustment:
Illustration Adjustment:

Design Token adjustment

ComponentSass VariableBeforeAfter
Popconfirm$color-popconfirm_body-textvar(--semi-color-tertiary)var(--semi-color-text-2)
$color-popconfirm_header_alert-icon#fa7500var(--semi-color-warning)
Progress$spacing-progress_line_text-marginLeft15px$spacing-base
$spacing-progress_line_text-marginRight15px$spacing-base
Radio$spacing-radio_addon_buttonRadio_large-paddingY6px$spacing-base-tight / 2
$radius-radio_cardRadioGroup3pxvar(--semi-border-radius-small)

FAQ

Why has the reference path changed?

In 1.x, Semi uses source code publishing. It will not perform precompilation before performing npm publishing. The Scss and jsx/js of the component library will be compiled together with the business code. In 2.0, precompilation was performed before npm publishing. For ordinary users, precompilation can make Semi work out of the box: there is no need for users to compile Semi source files, and there is no need to introduce Semi plug-ins when using them. Since the compiled results are under lib/es, the reference path of the interface and language package has changed, but for component references, you do not need to change the original reference path (because package.json main attribute points to lib/es/index.js).

The project wants to upgrade to 2.0, but the Semi material is used in the project. The material is based on 1.x Semi. Can it be used at the same time?

No, the css class name of semi2.x is the same as that of semi1.x, and using it at the same time will cause style conflicts. If you encounter similar problems, please initiate an oncall in the Feishu group, and there will be a dedicated person to deal with it.

Why do CSS variables add semi prefixes?

Due to the increasing number of business micro front-end application scenarios, in order to avoid naming conflicts with other library CSS variables and avoid the problem of mutual influence of styles.

Why is the local dark/bright mode changed from add id to add class?

ID is semantically globally unique, while class does not. Using class is more in line with the specification.

Why has the size of the illustration changed?

When using illustrations, the width and height of the illustration of 1.x is 300 * 150px, which is caused by the nesting of the outer layer of the illustration svg. This situation leads to more white space left and right in the original illustration, which is not quite in line with expectations.

Encounter problems

We list all known incompatible changes and related impacts, but there may be some scenarios that we have not considered. If you encounter problems during the upgrade process, please feel free to communicate through the customer service group