2015-12-09 16:58:20 +08:00
2015-12-04 17:40:09 +08:00
2015-12-10 12:14:48 +08:00
2015-12-07 15:43:49 +08:00
2015-07-15 20:33:48 +08:00
2015-12-01 16:54:29 +08:00
2015-07-02 12:36:12 +08:00
2015-11-26 19:36:00 +08:00
2015-09-17 16:40:12 +08:00
2015-11-03 10:40:27 +08:00
2015-10-19 19:50:55 +08:00
2015-12-04 17:12:46 +08:00
2015-06-04 11:58:07 +08:00
2015-05-07 18:50:36 +08:00
2015-10-20 16:47:55 +08:00
2015-11-23 15:20:42 +08:00
2015-12-03 16:28:45 +08:00
2015-10-20 17:10:21 +08:00

Ant Design npm package NPM downloads 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 graphical design language and framework for financial applications.
  • Rich library of UI components base on React Component.
  • A npm + webpack + babel workflow, supporting ES2015.

Install

npm install antd

Usage example

  • Use all components

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

    import DatePicker from 'antd/lib/date-picker';
    ReactDOM.render(<DatePicker />, mountNode);
    

Import style:

// only need to import once in entry module
import 'antd/lib/index.css';
// or less for modifyVars
import 'antd/style/index.less';

Browser Support

Normal browsers and Internet Explorer 8+.

Contributing

We welcome all contributions, please submit any ideas as pull requests or as a GitHub issue.

Languages
TypeScript 99.5%
JavaScript 0.3%