# choerodon-ui **Repository Path**: pgsql/choerodon-ui ## Basic Information - **Project Name**: choerodon-ui - **Description**: 一套企业级的 UI 设计语言和 React 实现 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 19 - **Created**: 2020-10-12 - **Last Updated**: 2021-06-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Choerodon UI An enterprise-class UI design language and React-based implementation. [中文 README](README-zh_CN.md) ## Features - Extracted from the interactive language and visual style of enterprise-level medium and backstage products. - A set of high-quality React components out of the box. - Written in TypeScript with predictable static types. - The whole package of development and design resources and tools. ## Environment Support - Modern browsers and Internet Explorer 9+ (with [polyfills](https://ant.design/docs/react/getting-started#Compatibility)) - Server-side Rendering - [Electron](http://electron.atom.io/) ## Install ```bash npm install choerodon-ui --save ``` ## Usage ```jsx import { DatePicker } from 'choerodon-ui'; import { Table } from 'choerodon-ui/pro'; ReactDOM.render(<><>, mountNode); ``` And import style manually: ```jsx import 'choerodon-ui/dist/choerodon-ui.css'; // or 'choerodon-ui/dist/choerodon-ui.less' import 'choerodon-ui/dist/choerodon-ui-pro.css'; // or 'choerodon-ui/dist/choerodon-ui-pro.less' ``` Or [import components on demand](https://choerodon.github.io/choerodon-ui/en/docs/other/introduce#%E6%8C%89%E9%9C%80%E5%8A%A0%E8%BD%BD) ### TypeScript See [Used in TypeScript](https://choerodon.github.io/choerodon-ui/en/docs/other/use-in-typescript) ## Internationalization See [i18n](https://choerodon.github.io/choerodon-ui/en/docs/other/i18n). ## Links - [Home page](https://choerodon.github.io/choerodon-ui/en) - [Components](https://choerodon.github.io/choerodon-ui/en/docs/other/introduce) - [Change Log](CHANGELOG.en-US.md) - [Scaffold Market](http://scaffold.ant.design) - [rc-components](http://react-component.github.io/) - [Customize Theme](https://choerodon.github.io/choerodon-ui/customize-theme) ## Local Development ```bash $ git clone https://github.com/choerodon/choerodon-ui.git $ cd choerodon-ui $ npm install $ npm start ``` ## Deployment ```bash $ npm run deploy ``` ## publish ```bash $ npm run pub ``` Open your browser and visit http://127.0.0.1:8001 , see more at https://choerodon.github.io/choerodon-ui/en/tutorials/introduction .