An enterprise-class UI design language and React UI library
Go to file
2016-04-29 23:51:30 +08:00
.github update codepen using npmcdn 2016-04-12 17:24:59 +08:00
components upgrade antd-tools and fix typo 2016-04-29 22:24:20 +08:00
docs Merge branch 'master' into develop-1.0.0 2016-04-29 23:51:30 +08:00
scripts Use full path reporter for lesshint 2016-04-29 17:04:56 +08:00
site fix site style 2016-04-29 13:42:23 +08:00
tests css modularize (#1448) 2016-04-27 20:44:36 +08:00
type-definitions add typings 2016-04-21 15:52:54 +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 upgrade eslint-config-airbnb version and fix some problems 2016-04-29 12:13:27 +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 Merge branch master into develop-1.0.0 2016-04-27 17:44:25 +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 remove duplicate eslint comment 2016-04-28 15:55:43 +08:00
LICENSE Fix outdated Copyright 2016-03-15 11:45:50 +08:00
package.json upgrade antd-tools and fix typo 2016-04-29 22:24:20 +08:00
README-zh_CN.md Add entry less file and update document (#1534) 2016-04-28 15:54:18 +08:00
README.md Add entry less file and update document (#1534) 2016-04-28 15:54:18 +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.

babel plugin config:

['antd', {
 style: 'css'
}]
import { DatePicker } from 'antd';

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