快速搭建美观的 React 应用。由抖音前端与 UED 团队维护。 https://semi.design/

DaiQiangReal 8f2966f247 v2.78.0-alpha.2 7 months ago
.codesandbox 7648406c76 chore: update codesandbox ci.json, node 16 -> 20 1 year ago
.github 5623861d47 feat: add auto-reply-react19 yaml 7 months ago
.storybook 5e4741f343 feat: json-viewer-core hmr 10 months ago
.vscode f79576d9ce fix: autoComplete can't scroll when keyboard up and down, #1530 (#2501) 1 year ago
content ea14d967b3 docs: update docs 7 months ago
cypress 13ad6954d4 test: comment out ignored test cases 7 months ago
packages 8f2966f247 v2.78.0-alpha.2 7 months ago
plugins 395ecb1b03 feat: add docs of lab icon (#1956) 1 year ago
scripts d2908217fa test: count each component test code 10 months ago
search 708df1978f chore: update search data 3 years ago
src 573124c9e1 feat: support userGuide component (#2733) 7 months ago
static 7d72163a34 chore: add sitemap url to robots.txt 2 years ago
test 04773631a5 test: mdx/js cjs module compile by esbuild may cause error because missing strict mode, access variable before initialization 1 year ago
.commitlintrc.js f76bd5879d feat: init 4 years ago
.eslintignore f76bd5879d feat: init 4 years ago
.eslintrc.js 75fa2004e5 feat: add new component Json viewer (#2561) 10 months ago
.gitattributes 8337c6d90a Update .gitattributes 3 years ago
.gitignore 5e4741f343 feat: json-viewer-core hmr 10 months ago
.lighthouserc.js fb91638513 chore(ci): lighthouse (#380) 3 years ago
.npmrc 37f53d3a5e chore: update yarn.lock 3 years ago
.prettierrc.js f76bd5879d feat: init 4 years ago
.stylelintrc.js c5917caa93 chore: change stylelint rules 2 years ago
CODE_OF_CONDUCT.md 0e46959d60 Create CODE_OF_CONDUCT.md 4 years ago
CONTRIBUTING-en-US.md 847a1306fb docs: update contributing doc of lerna version (#2692) 8 months ago
CONTRIBUTING.md 847a1306fb docs: update contributing doc of lerna version (#2692) 8 months ago
LICENSE 15deb4dd41 Update LICENSE 4 years ago
README-zh_CN.md 581de64d5e docs: update component number 9 months ago
README.md c212ff6770 docs: extend install scripts with yarn, pnpm (#2708) 7 months ago
babel.config.js 73022d6c8a Plus/markdown render (#2196) 1 year ago
create_symlinks.sh 3a7a6d1e55 chore: update ci workflow node 16 -> node 20 (#2109) 1 year ago
cypress.config.ts f399585b94 fix: upload addOnPasting can't work in Sidesheet, close #2478 (#2480) 1 year ago
favicon.ico f76bd5879d feat: init 4 years ago
gatsby-browser.js f76bd5879d feat: init 4 years ago
gatsby-config.js 66559b4561 chore: add cdn config 2 years ago
gatsby-node.js 5e4741f343 feat: json-viewer-core hmr 10 months ago
gatsby-ssr.js f76bd5879d feat: init 4 years ago
jest.config.js 75fa2004e5 feat: add new component Json viewer (#2561) 10 months ago
lerna.json 8f2966f247 v2.78.0-alpha.2 7 months ago
nyc.config.js 591051eb86 test: add istanbul ignore to some file and update jest exclude config 3 years ago
package.json 5e4741f343 feat: json-viewer-core hmr 10 months ago
sitemap.xml f2cb371e0a chore: publish 2.77.0-beta.0 7 months ago
syncRegistry.sh 3a6dbc59b6 chore: add some package to sync script 10 months ago
tsconfig.eslint.json f76bd5879d feat: init 4 years ago
tsconfig.json a7dd89e4e1 chore: lint add space-infix-ops 1 year ago
yarn.lock 7fc194f4ff chore: udpate yarn.lock file 7 months ago

README-zh_CN.md

Semi-UI

现代、全面、灵活的设计系统和 UI 库。 致力打通 DesignOps & DevOps ,快速搭建美观的 React 应用。

[![LICENSE][license-badge]][license-url] [![NPM][npm-badge]][npm-url] [![FIGMA][figma-badge]][figma-url] ![Design Token][Design Token] [![CODECOV][codecov-badge]][codecov-url] [![Chromatic][chromatic-badge]][chromatic-url] [![Cypress][cypress-badge]][cypress-url] [![Twitter Follow](https://img.shields.io/twitter/follow/SemiDesignUI?style=social)](https://twitter.com/SemiDesignUI)

简体中文 | English

🎉 特性

  • 💪 70+高质量组件
  • 💅 Code2Design,根据不同主题自动生成 Figma UI Kit,保持代码与设计同源
  • 🚀 强大的 D2C (Design2Code)支持,Figma 设计稿一键转出真实代码,快速构建应用
  • 💕 完善的无障碍支持,为所有组件提供遵循 W3C 标准的键盘交互、焦点管理和语义化
  • 🎨 设计系统管理工具 Semi DSM,多达2000+ Design Token,快速定制你的专属设计系统
  • 🌍 国际化支持 20+ 语言,提供完备的多语言、多时区、RTL支持
  • ⚙️ 稳定的质量保障,覆盖单元测试、E2E测试、视觉回归测试等多种测试手段
  • 🥳 支持 SSR
  • 👏 使用 TypeScript, 良好的类型定义,基于 Foundation / Adapter 架构,源码易于阅读 / 贡献
  • 📦 轻松兼容 web components,提供完整适配方案,更适合用于构建 SDK、浏览器插件等需要 DOM 隔离的场景

🔥 安装

npm install @douyinfe/semi-ui

👍 组件使用

这是一个快速开始的例子:

import React from 'react';
import { createRoot } from 'react-dom/client';
import { Button, Form } from '@douyinfe/semi-ui';

const App = () => (
    <Form>
        <Form.Input field='name' initValue='semi design'></Form.Input>
        <Button htmlType='submit'>submit</Button>
    </Form>
);

const root = createRoot(document.querySelector('#app'));
root.render(<App />);

Semi UI 官网 拥有上千个支持实时调试的例子,欢迎体验使用。

⚡️ D2C 设计稿转代码

安装插件 Semi Figma Plugin. 数秒内将 Figma 转为真实前端代码,支持多种出码格式: JSX + SCSS / Emotion/Tailwind、 JSON Schema DSL

  • 支持 Figma Devmode,选中图层后,右侧可直接查看对应的真实代码

design2code

  • 或跳转至 Codesandbox 进行二次编辑

codesandboxdemo

🎨 DSM 设计系统管理

基于 Semi UI 定制你的专属设计系统, 提供高达 3000+ Token 允许你定义每一处细节. 并时刻在 Figma 与主题商店间保持同步。

dsmintro

📰 关注我们的动态

📌 文档

👌 平台支持

Semi UI 支持所有主流浏览器。

|chrome
chrome|firefox
firefox|safari
safari|IE/Edge
IE/Edge|electron
Electron| |--|--|--|--|--| | latest 2 versions | latest 2 versions | latest 2 versions | Edge | latest 2 versions |

👨‍👨‍👧‍👦 交流群

有任何问题可以进群交流,我们会及时给予解答和反馈。

加入飞书用户群.

💖 Thanks

Chromatic

感谢 Chromatic 提供可视化测试平台,帮助我们审查 UI 更改和提供视觉回归测试。

Cypress

感谢 Cypress 提供 E2E 测试。

感谢 VisActor 提供数据可视化解决方案。

👐 参与共建

Semi Design 欢迎社区开发者参与共建,衷心感谢每一位协作者的付出

阅读贡献指南了解我们的开发流程,包括开发规范、测试规范和构建规范等: CONTRIBUTING

🎈 协议

Semi UI 使用 MIT 协议