An enterprise-class UI design language and React UI library
Go to file
2016-05-12 12:10:26 +08:00
.github fix codepen links 2016-05-11 02:02:23 +08:00
components Fix TreeSelect placeholder, close #1657 2016-05-12 12:10:26 +08:00
docs update docs 2016-05-11 17:50:51 +08:00
scripts Use full path reporter for lesshint 2016-04-29 17:04:56 +08:00
site Add site loading, close #1632 2016-05-11 19:18:54 +08:00
tests fix test case 2016-05-11 16:49:05 +08:00
type-definitions add params to ModalFunc (#1620) 2016-05-10 11:06:37 +08:00
.babelrc css modularize (#1448) 2016-04-27 20:44:36 +08:00
.editorconfig Add editorconfig 2015-07-15 20:33:48 +08:00
.eslintrc.js style: enable comma-dangle 2016-05-11 09:32:33 +08:00
.gitignore chore for style 2016-03-23 18:52:27 +08:00
.lesshintrc Fix lesshint problems 2016-04-29 17:03:28 +08:00
.travis.yml update .travis.yml 2016-03-28 17:47:18 +08:00
404.html fix 404 redirect 2016-05-11 14:39:21 +08:00
AUTHORS.txt chore: add AUTHORS.txt 2016-02-23 10:43:57 +08:00
CHANGELOG.md update changelog 2016-05-11 19:20:21 +08:00
CNAME Add CNAME 2015-06-04 11:58:07 +08:00
index.html fix root id 2016-05-11 19:23:11 +08:00
index.js Fix missing Tag component in built package and add test case, close #1638 2016-05-11 15:29:08 +08:00
LICENSE Fix outdated Copyright 2016-03-15 11:45:50 +08:00
package.json bump 1.0.1 2016-05-11 18:02:19 +08:00
README-zh_CN.md Add 1.0.0 Changelog (#1614) 2016-05-10 14:22:05 +08:00
README.md update docs 2016-05-11 16:08:28 +08:00
webpack.config.js css modularize (#1448) 2016-04-27 20:44:36 +08:00

Ant Design npm package NPM downloads Dependency Status Join the chat at https://gitter.im/ant-design/ant-design

An enterprise-class UI design language and React-based implementation.

Features

  • An enterprise-class design language and high quality UI style.
  • Rich library of UI components base on React Component.
  • A npm + webpack + babel + dora workflow.

Install

npm install antd

Usage example

Use prebuilt bundle

import { DatePicker } from 'antd';
ReactDOM.render(<DatePicker />, mountNode);

Import style:

import 'antd/dist/antd.css';  // or 'antd/dist/antd.less'

Use modularized antd

import DatePicker from 'antd/lib/date-picker';  // just for js

We recommend use babel-plugin-antd with config:

['antd', {
  style: 'css'
}]
import { DatePicker } from 'antd'; // automatically parse and require js and css modularly

No need to import style manually.

Browser Support

Normal browsers and Internet Explorer 8+.

IE8 issues

TypeScript

///<reference path='./node_modules/antd/type-definitions/antd.d.ts'/>
...

Contributing

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! :)