Skip to content

ithanshui/ant-design

Folders and files

NameName
Last commit message
Last commit date

Latest commit

db3cbb7 · Sep 14, 2016
Aug 31, 2016
Sep 13, 2016
Sep 11, 2016
Jul 30, 2016
Aug 20, 2016
Jul 9, 2016
May 20, 2016
Jul 15, 2015
Jul 9, 2016
May 27, 2016
Sep 8, 2016
Mar 28, 2016
May 16, 2016
Sep 14, 2016
Jun 4, 2015
Mar 15, 2016
Aug 31, 2016
Aug 31, 2016
Aug 30, 2016
Jun 6, 2016
Sep 14, 2016
May 27, 2016
Jun 6, 2016

Repository files navigation

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. ant-design#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"
  }
}

Links

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

About

🐜 One design language

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CSS 47.8%
  • TypeScript 39.9%
  • JavaScript 11.9%
  • HTML 0.4%