An enterprise-class UI design language and React UI library
Go to file
2016-06-23 10:57:52 +08:00
.github Update ISSUE_TEMPLATE.md 2016-05-23 22:05:35 +08:00
components fix split 2016-06-23 10:57:52 +08:00
docs docs: use github new issue link directly (#2119) 2016-06-21 13:09:15 +08:00
scripts fix predeploy cmd 2016-05-23 21:47:06 +08:00
site Merge branch 'master' of github.com:ant-design/ant-design 2016-06-20 16:38:02 +08:00
tests Merge 1.x-stable 2016-06-22 22:56:55 +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 style: enable react/jsx-closing-bracket-location 2016-06-06 13:54:10 +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 1.5.1 2016-06-21 13:39:33 +08:00
CNAME Add CNAME 2015-06-04 11:58:07 +08:00
index.d.ts fix types 2016-06-19 14:20:19 +08:00
index.js fix dist 2016-06-22 13:31:04 +08:00
LICENSE Fix outdated Copyright 2016-03-15 11:45:50 +08:00
package.json Merge 1.x-stable 2016-06-22 22:56:55 +08:00
README-zh_CN.md Add 1.0.0 Changelog (#1614) 2016-05-10 14:22:05 +08:00
README.md Add CodePen boilerplate link 2016-06-01 17:03:06 +08:00
tsconfig.json preserve for ts 2016-06-22 16:14:47 +08:00
typings.json refactor to typescript 2016-06-22 13:19:48 +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 style.
  • Rich library of UI components 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! :)