TypeScript CSS JavaScript Other
Permalink
Failed to load latest commit information.
.github Update CONTRIBUTING.zh-CN.md Dec 21, 2017
components Add demo for row-click selection Jan 15, 2018
docs update doc Jan 12, 2018
scripts site: update generateColorLess.js Dec 8, 2017
site Fixing typo on homepage (#8962) Jan 14, 2018
tests Remove babel-plugin-add-module-exports (#8888) Jan 13, 2018
typings Fix implicit any error for Carousel Nov 22, 2017
.babelrc Revert "test: remove useless config" May 27, 2017
.codecov.yml Set codecov default branch Mar 8, 2017
.editorconfig Add editorconfig Jul 15, 2015
.eslintignore fix: form type (#7245) Aug 18, 2017
.eslintrc.js re alt Jan 5, 2018
.gitignore Ignore package-lock.json Oct 9, 2017
.jest.js Remove allowSyntheticDefaultImports (#8218) Nov 17, 2017
.jest.node.js Remove allowSyntheticDefaultImports (#8218) Nov 17, 2017
.stylelintrc Upgrade dev deps and fix lints (#8358) Nov 29, 2017
.travis.yml Add bisheng build in travis test Nov 21, 2017
AUTHORS.txt Locale/nb-NO (#7122) Aug 9, 2017
CHANGELOG.en-US.md Bump 3.1.3 Jan 13, 2018
CHANGELOG.zh-CN.md Bump 3.1.3 Jan 13, 2018
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md Jun 24, 2017
LICENSE Fix outdated Copyright Mar 15, 2016
README-zh_CN.md Revise contributing document (#8550) Dec 15, 2017
README.md Revise contributing document (#8550) Dec 15, 2017
index-with-locales.js Remove babel-plugin-add-module-exports (#8888) Jan 13, 2018
index.js adjust entry file (#4594) Jan 13, 2017
package.json Bump 3.1.3 Jan 13, 2018
tsconfig.json Enable noImplicitAny Nov 22, 2017
tsconfig.test.json Remove allowSyntheticDefaultImports (#8218) Nov 17, 2017
webpack.config.js Oops. Oct 19, 2017

README.md

Ant Design

Codecov Dependency Status

npm package NPM downloads Percentage of issues still open Gitter (English) Join the chat at https://gitter.im/ant-design/ant-design(中文)

An enterprise-class UI design language and React-based implementation.

中文 README

3.0 Released Now! 🎉🎉🎉

Announcing Ant Design 3.0

Features

  • An enterprise-class UI design language for web applications.
  • A set of high-quality React components out of the box.
  • Written in TypeScript with complete define types.
  • A npm + webpack + dva front-end development workflow.

Environment Support

  • Modern browsers and Internet Explorer 9+ (with polyfills)
  • Server-side Rendering
  • Electron

Let's build a better antd together PRs Welcome

Read our contributing guide.

Install

npm install antd --save

Usage

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

And import style manually:

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

Or import components on demand

TypeScript

See Use in TypeScript

Internationalization

See i18n.

Links

Development

$ git clone git@github.com:ant-design/ant-design.git
$ npm install
$ npm start

Open your browser and visit http://127.0.0.1:8001 , see more at https://github.com/ant-design/ant-design/wiki/Development .

Contributing

We welcome all contributions. Please read our CONTRIBUTING.md first. You can submit any ideas as pull requests or as GitHub issues. If you'd like to improve code, check out the Development Instructions and have a good time! :)