An enterprise-class UI design language and React UI library
Go to file
2016-09-01 11:53:55 +08:00
.github Update ISSUE_TEMPLATE.md 2016-07-08 16:14:21 +08:00
components deps: update rc-form and form's docs (#2873) 2016-09-01 11:48:38 +08:00
docs Merge branch '1.x-stable' 2016-08-22 17:05:37 +08:00
scripts Fix eslint 2016-07-30 14:31:36 +08:00
site site: translation of home and footer (#2855) 2016-09-01 11:53:55 +08:00
tests Merge branch '1.x-stable' 2016-07-11 14:57:38 +08:00
.babelrc revert d450db8 2016-05-20 11:20:34 +08:00
.editorconfig Add editorconfig 2015-07-15 20:33:48 +08:00
.eslintrc.js fix deprecated lint warning 2016-08-28 17:52:14 +08:00
.gitignore refactor to typescript 2016-06-22 13:19:48 +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
AUTHORS.txt chore: update AUTHORS.txt 2016-05-16 09:43:43 +08:00
CHANGELOG.md update changelog 2016-08-20 21:51:22 +08:00
CNAME Add CNAME 2015-06-04 11:58:07 +08:00
custom-typings.d.ts Merge branch "1.x-stable" 2016-08-31 15:00:13 +08:00
index.js chore: update index.js, close: #1846 (#2838) 2016-08-26 15:38:29 +08:00
LICENSE Fix outdated Copyright 2016-03-15 11:45:50 +08:00
package.json deps: update rc-form and form's docs (#2873) 2016-09-01 11:48:38 +08:00
README-zh_CN.md update links 2016-08-11 16:45:15 +08:00
README.md update links 2016-08-11 16:45:15 +08:00
tsconfig.json preserve for ts 2016-06-22 16:14:47 +08:00
typings.json refactor: add interface (#2638) 2016-08-10 09:46:56 +08:00
webpack.config.js refactor to typescript 2016-06-22 13:19:48 +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.

📢 Document Translation Recruitment

We are now working on translate components document to English, and we need some translator and reviewer. https://github.com/ant-design/ant-design/issues/1471

Features

  • An enterprise-class design language and high quality UI.
  • Graceful UI components out of the box, base on React Component.
  • A npm + webpack + babel + dora workflow.

Install

npm install antd

Usage

Use prebuilt bundle

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

And import style manually:

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

Use modularized antd

  • Use babel-plugin-antd (Recommended)

    // .babelrc
    {
      "plugins": [["antd", { style: "css" }]]
    }
    

    Then you can import components from antd directly.

    // import js and css modularly, parsed by babel-plugin-antd
    import { DatePicker } from 'antd';
    
  • Manually import

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

Browser Support

Normal browsers and Internet Explorer 8+.

IE8 issues

TypeScript

tsconfig.json

{
  "compilerOptions": {
    "moduleResolution": "node",
    "jsx": "preserve"
  }
}

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