An enterprise-class UI design language and React-based implementation.
- An enterprise-class design language and high quality UI.
- Graceful UI components out of the box, base on React Component.
- Written in TypeScript with complete define types.
- A npm + webpack + babel + dora + dva development framework.
antd
is an open source project, any reasonable improvement is welcomed. If you are interested in contributing to antd
, you can watch this repository and join in discussion, or try to implement some features which had 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';
-
Manually 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 a GitHub issue. If you'd like to improve code, check out the Development Instruction and have a good time! :)
- Weekly release: patch version at the end of every week.
- Monthly release: minor version at the end of every month.
- Emergence release: emergence patch anytime if necessary.
- Major version release is not included in this schedule.