An enterprise-class UI design language and React UI library
Go to file
2016-09-22 10:09:22 +08:00
.github update issue template 2016-09-13 23:02:34 +08:00
components docs: udpate demo detail, close: #3111 2016-09-22 10:09:22 +08:00
docs docs: translate titles of pattern 2016-09-21 14:03:22 +08:00
scripts Fix eslint 2016-07-30 14:31:36 +08:00
site docs: udpate demo detail, close: #3111 2016-09-22 10:09:22 +08:00
tests Merge branch '1.x-stable' 2016-07-11 14:57:38 +08:00
typings deps: upgrade dependencies (#3017) 2016-09-18 10:12:21 +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 eslint warning, eslint/eslint#4828 2016-09-10 11:18:07 +08:00
.gitignore feat: 为Modal组件的confirm、success、error、warning、info 子组件增加快捷键,模仿原生体验。 (#3061) 2016-09-20 08:58:20 +08:00
.lesshintrc fix lesshint 2016-09-08 11:14:39 +08:00
.travis.yml update .travis.yml 2016-03-28 17:48:19 +08:00
AUTHORS.txt renew AUTHORS.txt 2016-09-08 17:04:31 +08:00
CHANGELOG.md docs: fix change log 2016-09-14 15:05:45 +08:00
CNAME Add CNAME 2015-06-04 11:58:07 +08:00
index.js docs: rename babel-plugin-antd to babel-plugin-import (#3089) 2016-09-20 17:17:49 +08:00
LICENSE Fix outdated Copyright 2016-03-15 11:45:50 +08:00
package.json deps: upgrade antd-tools to work with babel-plugin-import 2016-09-21 14:25:27 +08:00
README-zh_CN.md docs: rename babel-plugin-antd to babel-plugin-import (#3089) 2016-09-20 17:17:49 +08:00
README.md docs: rename babel-plugin-antd to babel-plugin-import (#3089) 2016-09-20 17:17:49 +08:00
tsconfig.json deps: hello moment (#2887) 2016-09-09 13:55:21 +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-import (Recommended)

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

    Then you can import components from antd directly.

    // import js and css modularly, parsed by babel-plugin-import
    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! :)