An enterprise-class UI design language and React-based implementation.
- An enterprise-class UI design language for web applications.
- A set of high-quality React components out of the box.
- Written in TypeScript with complete define types.
- A npm + webpack + dva front-end development workflow.
antd
is an open source project, improvements are welcomed. If you are interested in contributing to antd
, you can watch this repository, join in discussion, or try to implement some features which have been accepted.
npm install antd
import { DatePicker } from 'antd';
ReactDOM.render(<DatePicker />, mountNode);
And import style manually:
import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'
-
Use babel-plugin-import (Recommended)
// .babelrc { "plugins": [["import", { libraryName: "antd", style: "css" }]] }
Then you can import components from antd directly.
// import js and css modularly, parsed by babel-plugin-import import { DatePicker } from 'antd';
-
Manual import
import DatePicker from 'antd/lib/date-picker'; // just for js import 'antd/lib/date-picker/style/css'; // with style
- Browser: Modern browsers and Internet Explorer 9+.
- Server-side Rendering
- Electron
tsconfig.json
{
"compilerOptions": {
"moduleResolution": "node",
"jsx": "preserve",
"allowSyntheticDefaultImports": true
}
}
Note: set
allowSyntheticDefaultImports
to preventerror TS1192: Module 'react' has no default export
.
- Home page
- UI library
- Change Log
- Scaffold tool
- Development tool
- React components
- Mobile UI
- Motion
- Developer Instruction
- Versioning Release Note
- Boilerplates
- FAQ
- CodePen boilerplate for bug reports
- Awesome Ant Design
- Customize Theme
We welcome all contributions, please read our CONTRIBUTING.md first. You can submit any ideas as pull requests or as GitHub issues. If you'd like to improve code, check out the Development Instructions and have a good time! :)
Follow Semantic Versioning 2.0.0.
- Weekly release: patch version at the end of every week for routine bugfix.
- Monthly release: minor version at the end of every month for new features.
- Emergence release: emergence patch anytime if necessary for urgent bugfix.
- Major version release is not included in this schedule for breadking change and new features.