An enterprise-class UI design language and React UI library
Go to file
2016-05-10 15:15:09 +08:00
.github Update ISSUE_TEMPLATE.md 2016-05-07 13:12:10 +08:00
components upgrade eslint-config-airbnb and fix lints 2016-05-10 15:15:09 +08:00
docs improve site style 2016-05-10 14:44:23 +08:00
scripts Use full path reporter for lesshint 2016-04-29 17:04:56 +08:00
site upgrade eslint-config-airbnb and fix lints 2016-05-10 15:15:09 +08:00
tests css modularize (#1448) 2016-04-27 20:44:36 +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 fix lint and wait eslint/eslint#6024 publish 2016-05-06 15:49:59 +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 docs: update links 2016-04-27 17:03:17 +08:00
AUTHORS.txt chore: add AUTHORS.txt 2016-02-23 10:43:57 +08:00
CHANGELOG.md Add 1.0.0 Changelog (#1614) 2016-05-10 14:22:05 +08:00
CNAME Add CNAME 2015-06-04 11:58:07 +08:00
index.html css modularize (#1448) 2016-04-27 20:44:36 +08:00
index.js check NODE_ENV 2016-04-30 11:06:55 +08:00
LICENSE Fix outdated Copyright 2016-03-15 11:45:50 +08:00
package.json upgrade eslint-config-airbnb and fix lints 2016-05-10 15:15:09 +08:00
README-zh_CN.md Add 1.0.0 Changelog (#1614) 2016-05-10 14:22:05 +08:00
README.md Add 1.0.0 Changelog (#1614) 2016-05-10 14:22:05 +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

use babel-plugin-antd with config:

['antd', {
  style: 'css'
}]
import { DatePicker } from 'antd'; // automatically parse and require 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! :)