ant-design/README.md

152 lines
6.1 KiB
Markdown
Raw Normal View History

2015-12-06 17:40:04 +08:00
<p align="center">
<a href="http://ant.design">
<img width="320" src="https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg">
</a>
</p>
2016-10-17 09:37:55 +08:00
# Ant Design
2016-11-22 14:56:55 +08:00
2016-10-17 09:37:55 +08:00
[![](https://img.shields.io/travis/ant-design/ant-design.svg?style=flat-square)](https://travis-ci.org/ant-design/ant-design)
2017-03-08 14:32:29 +08:00
[![Codecov](https://img.shields.io/codecov/c/github/ant-design/ant-design/master.svg?style=flat-square)](https://codecov.io/gh/ant-design/ant-design/branch/master)
2017-01-30 18:09:37 +08:00
[![Dependency Status](https://img.shields.io/gemnasium/react-component/trigger.svg?style=flat-square)](https://gemnasium.com/ant-design/ant-design)
2016-11-22 14:56:55 +08:00
2016-11-22 15:02:21 +08:00
[![npm package](https://img.shields.io/npm/v/antd.svg?style=flat-square)](https://www.npmjs.org/package/antd)
[![NPM downloads](http://img.shields.io/npm/dm/antd.svg?style=flat-square)](https://npmjs.org/package/antd)
2017-03-10 19:28:13 +08:00
[![Percentage of issues still open](http://isitmaintained.com/badge/open/ant-design/ant-design.svg)](http://isitmaintained.com/project/ant-design/ant-design "Percentage of issues still open")
2017-04-11 18:07:53 +08:00
[![Gitter](https://badges.gitter.im/ant-design/ant-design-english.svg)](https://gitter.im/ant-design/ant-design-english?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) (English)
[![Join the chat at https://gitter.im/ant-design/ant-design](https://img.shields.io/gitter/room/ant-design/ant-design.svg?style=flat-square)](https://gitter.im/ant-design/ant-design?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)(中文)
2015-07-30 17:46:27 +08:00
An enterprise-class UI design language and React-based implementation.
2015-06-14 18:28:08 +08:00
2016-12-23 18:06:28 +08:00
[中文 README](README-zh_CN.md)
## Features
2015-06-14 18:28:08 +08:00
2017-01-22 01:19:04 +08:00
- An enterprise-class UI design language for web applications.
2017-01-22 01:15:14 +08:00
- A set of high-quality React components out of the box.
2016-11-15 14:44:35 +08:00
- Written in TypeScript with complete define types.
2017-01-17 00:10:37 +08:00
- A npm + webpack + [dva](https://github.com/dvajs/dva) front-end development workflow.
2015-07-08 20:08:19 +08:00
2017-03-13 15:49:15 +08:00
## Environment Support
2017-05-27 14:18:14 +08:00
* Modern browsers and Internet Explorer 9+ (with [polyfills](https://ant.design/docs/react/getting-started#Compatibility))
2017-03-13 15:49:15 +08:00
* Server-side Rendering
* [Electron](http://electron.atom.io/)
2016-12-06 15:42:50 +08:00
## Let's build a better antd together [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
2016-11-23 12:10:09 +08:00
2017-08-14 22:25:12 +08:00
`antd` is an open source project; improvements are welcomed. If you are interested in contributing to `antd`, you can watch this repository, join in [discussion](https://github.com/ant-design/ant-design/issues?q=is%3Aopen+is%3Aissue+label%3ADiscussion), or try to implement some [features which have been accepted](https://github.com/ant-design/ant-design/issues?q=is%3Aopen+is%3Aissue+label%3A%22PR+welcome%22). Actually, there are [many ways](https://opensource.guide/how-to-contribute/) to contribute. And we are always happy to [offer collaborator permission](https://github.com/ant-design/ant-design/issues/3222) for some active contributors.
2016-11-23 12:10:09 +08:00
2015-11-02 20:37:38 +08:00
## Install
```bash
npm install antd
```
2016-05-23 22:48:09 +08:00
## Usage
2015-07-03 12:21:29 +08:00
2015-12-16 15:04:51 +08:00
```jsx
import { DatePicker } from 'antd';
ReactDOM.render(<DatePicker />, mountNode);
```
2015-10-27 22:17:54 +08:00
2016-05-23 22:48:09 +08:00
And import style manually:
2015-12-08 18:05:01 +08:00
```jsx
import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'
2015-12-08 18:05:01 +08:00
```
2016-04-28 12:41:37 +08:00
### Use modularized antd
2017-09-12 19:00:09 +08:00
- Manually import
```jsx
import DatePicker from 'antd/lib/date-picker'; // for js
import 'antd/lib/date-picker/style/css'; // for css
// import 'antd/lib/date-picker/style'; // that will import less
```
- Use [babel-plugin-import](https://github.com/ant-design/babel-plugin-import)
2016-05-11 16:06:51 +08:00
2016-05-23 22:56:42 +08:00
```js
2017-02-07 17:20:59 +08:00
// .babelrc or babel-loader option
2016-05-23 22:56:42 +08:00
{
2017-03-02 00:34:18 +08:00
"plugins": [
["import", { libraryName: "antd", style: "css" }] // `style: true` for less
]
2016-05-23 22:56:42 +08:00
}
```
2016-04-28 12:41:37 +08:00
2017-03-02 00:34:18 +08:00
Then you can import components from antd, equivalent to import manually below.
2016-04-28 12:41:37 +08:00
2016-05-23 22:56:42 +08:00
```jsx
// import js and css modularly, parsed by babel-plugin-import
2016-06-23 13:27:23 +08:00
import { DatePicker } from 'antd';
2016-05-23 22:56:42 +08:00
```
2016-06-23 13:27:23 +08:00
2017-03-13 15:49:15 +08:00
### TypeScript
2016-04-21 15:52:54 +08:00
2016-11-21 17:50:42 +08:00
```js
2017-03-12 15:20:25 +08:00
// tsconfig.json
2016-05-27 16:01:52 +08:00
{
"compilerOptions": {
"moduleResolution": "node",
2016-09-30 09:51:55 +08:00
"jsx": "preserve",
"allowSyntheticDefaultImports": true
2016-05-27 16:01:52 +08:00
}
}
2016-04-21 15:52:54 +08:00
```
2017-03-23 15:11:35 +08:00
> Note:
> - set `allowSyntheticDefaultImports` to prevent `error TS1192: Module 'react' has no default export`.
> - Don't use @types/antd, antd provide a built-in ts definition already.
2017-03-07 16:29:30 +08:00
#### Use [ts-import-plugin](https://github.com/Brooooooklyn/ts-import-plugin) with modularized antd
```js
{
loader: "ts-loader", // or awesome-typescript-loader
options {
getCustomTransformers: () => ({
before: [ tsImportPluginFactory({ libraryName: "antd", style: "css" }) ]
})
}
}
```
2017-03-12 15:20:25 +08:00
## Internationalization
See [i18n](http://ant.design/docs/react/i18n).
## Links
2015-06-14 18:28:08 +08:00
- [Home page](http://ant.design/)
2016-09-28 19:22:52 +08:00
- [UI library](http://ant.design/docs/react/introduce)
2016-11-14 11:08:26 +08:00
- [Change Log](CHANGELOG.en-US.md)
2017-07-05 07:23:16 +08:00
- [Official Scaffold Tool](https://github.com/dvajs/dva-cli/)
2017-05-13 16:12:35 +08:00
- [Development Tool](http://ant-tool.github.io/)
- [Scaffold Market](http://scaffold.ant.design)
2017-03-12 15:20:25 +08:00
- [rc-components](http://react-component.github.io/)
2016-07-29 13:52:05 +08:00
- [Mobile UI](http://mobile.ant.design)
2016-11-09 18:17:41 +08:00
- [Motion](https://motion.ant.design)
2016-03-31 00:20:10 +08:00
- [Developer Instruction](https://github.com/ant-design/ant-design/wiki/Development)
2016-06-23 13:27:23 +08:00
- [Versioning Release Note](https://github.com/ant-design/ant-design/wiki/%E8%BD%AE%E5%80%BC%E8%A7%84%E5%88%99%E5%92%8C%E7%89%88%E6%9C%AC%E5%8F%91%E5%B8%83%E6%B5%81%E7%A8%8B)
2016-01-17 15:18:28 +08:00
- [FAQ](https://github.com/ant-design/ant-design/wiki/FAQ)
2016-08-31 16:03:35 +08:00
- [CodePen boilerplate](http://codepen.io/benjycui/pen/KgPZrE?editors=001) for bug reports
2016-08-11 16:45:15 +08:00
- [Awesome Ant Design](https://github.com/websemantics/awesome-ant-design)
2016-11-26 16:07:01 +08:00
- [Customize Theme](http://ant.design/docs/react/customize-theme)
2016-11-09 18:17:41 +08:00
2017-03-12 15:20:25 +08:00
## Development
```bash
$ git clone git@github.com:ant-design/ant-design.git
$ npm install
$ npm start
```
2017-03-29 11:34:21 +08:00
Open your browser and visit http://127.0.0.1:8001 , see more at https://github.com/ant-design/ant-design/wiki/Development .
2017-03-12 15:20:25 +08:00
## Contributing
2017-08-14 22:25:12 +08:00
We welcome all contributions. Please read our [CONTRIBUTING.md](https://github.com/ant-design/ant-design/blob/master/.github/CONTRIBUTING.md) first. You can submit any ideas as [pull requests](https://github.com/ant-design/ant-design/pulls) or as [GitHub issues](https://github.com/ant-design/ant-design/issues). If you'd like to improve code, check out the [Development Instructions](https://github.com/ant-design/ant-design/wiki/Development) and have a good time! :)