<p align="center">
<a href="https://ant.design">
<img width="200" src="https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg">
</a>
</p>
<h1 align="center">Ant Design</h1>
<div align="center">
An enterprise-class UI design language and React UI library.
[![CI status][github-action-image]][github-action-url] [![codecov][codecov-image]][codecov-url] [![NPM version][npm-image]][npm-url] [![NPM downloads][download-image]][download-url]
[![][bundlephobia-image]][bundlephobia-url] [![][bundlesize-js-image]][unpkg-js-url] [![FOSSA Status][fossa-image]][fossa-url] [![Covered by Argos Visual Testing][argos-ci-image]][argos-ci-url]
[![Follow Twitter][twitter-image]][twitter-url] [![Renovate status][renovate-image]][renovate-dashboard-url] [![][issues-helper-image]][issues-helper-url] [![dumi][dumi-image]][dumi-url] [![Issues need help][help-wanted-image]][help-wanted-url]
[npm-image]: http://img.shields.io/npm/v/antd.svg?style=flat-square
[npm-url]: http://npmjs.org/package/antd
[github-action-image]: https://github.com/ant-design/ant-design/workflows/%E2%9C%85%20test/badge.svg
[github-action-url]: https://github.com/ant-design/ant-design/actions?query=workflow%3A%22%E2%9C%85+test%22
[codecov-image]: https://img.shields.io/codecov/c/github/ant-design/ant-design/master.svg?style=flat-square
[codecov-url]: https://codecov.io/gh/ant-design/ant-design/branch/master
[download-image]: https://img.shields.io/npm/dm/antd.svg?style=flat-square
[download-url]: https://npmjs.org/package/antd
[fossa-image]: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fant-design%2Fant-design.svg?type=shield
[fossa-url]: https://app.fossa.io/projects/git%2Bgithub.com%2Fant-design%2Fant-design?ref=badge_shield
[help-wanted-image]: https://flat.badgen.net/github/label-issues/ant-design/ant-design/help%20wanted/open
[help-wanted-url]: https://github.com/ant-design/ant-design/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22
[twitter-image]: https://img.shields.io/twitter/follow/AntDesignUI.svg?label=Ant%20Design
[twitter-url]: https://twitter.com/AntDesignUI
[bundlesize-js-image]: https://img.badgesize.io/https:/unpkg.com/antd/dist/antd.min.js?label=antd.min.js&compression=gzip&style=flat-square
[unpkg-js-url]: https://unpkg.com/browse/antd/dist/antd.min.js
[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/antd?style=flat-square
[bundlephobia-url]: https://bundlephobia.com/package/antd
[issues-helper-image]: https://img.shields.io/badge/using-actions--cool-blue?style=flat-square
[issues-helper-url]: https://github.com/actions-cool
[renovate-image]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg?style=flat-square
[renovate-dashboard-url]: https://github.com/ant-design/ant-design/issues/32498
[dumi-image]: https://img.shields.io/badge/docs%20by-dumi-blue?style=flat-square
[dumi-url]: https://github.com/umijs/dumi
[argos-ci-image]: https://argos-ci.com/badge.svg
[argos-ci-url]: https://app.argos-ci.com/ant-design/ant-design/reference
</div>
[![](https://user-images.githubusercontent.com/507615/209472919-6f7e8561-be8c-4b0b-9976-eb3c692aa20a.png)](https://ant.design)
English | [ä¸æ](./README-zh_CN.md)
## ⨠Features
- ð Enterprise-class UI designed for web applications.
- ð¦ A set of high-quality React components out of the box.
- ð¡ Written in TypeScript with predictable static types.
- âï¸ Whole package of design resources and development tools.
- ð Internationalization support for dozens of languages.
- ð¨ Powerful theme customization based on CSS-in-JS.
## ð¥ Environment Support
- Modern browsers
- Server-side Rendering
- [Electron](https://www.electronjs.org/)
| [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/edge/edge_48x48.png" alt="Edge" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Edge | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/firefox/firefox_48x48.png" alt="Firefox" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Firefox | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/chrome/chrome_48x48.png" alt="Chrome" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Chrome | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/safari/safari_48x48.png" alt="Safari" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Safari | [<img src="https://raw.githubusercontent.com/alrra/browser-logos/master/src/electron/electron_48x48.png" alt="Electron" width="24px" height="24px" />](http://godban.github.io/browsers-support-badges/)<br>Electron |
| --- | --- | --- | --- | --- |
| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
## ð¦ Install
```bash
npm install antd
```
```bash
yarn add antd
```
```bash
pnpm add antd
```
## ð¨ Usage
```jsx
import React from 'react';
import { Button, DatePicker } from 'antd';
const App = () => (
<>
<Button type="primary">PRESS ME</Button>
<DatePicker placeholder="select date" />
</>
);
```
### TypeScript
`antd` is written in TypeScript with complete definitions, check [Use in TypeScript](https://ant.design/docs/react/use-in-typescript) to get started.
## ð Internationalization
Dozens of languages are supported in `antd`, see [i18n](https://ant.design/docs/react/i18n).
## ð Links
- [Home page](https://ant.design/)
- [Components Overview](https://ant.design/components/overview)
- [Ant Design Pro](http://pro.ant.design/)
- [Change Log](CHANGELOG.en-US.md)
- [rc-components](http://react-component.github.io/)
- [Mobile UI](http://mobile.ant.design)
- [Mini Program UI](http://mini.ant.design)
- [Ant Design Pro Components](https://procomponents.ant.design)
- [Ant Design Charts](https://charts.ant.design)
- [Ant Design Icons](https://github.com/ant-design/ant-design-icons)
- [Ant Design Colors](https://github.com/ant-design/ant-design-colors)
- [Landing Pages](https://landing.ant.design)
- [Motion](https://motion.ant.design)
- [Scaffold Market](http://scaffold.ant.design)
- [Developer Instruction](https://github.com/ant-design/ant-design/wiki/Development)
- [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)
- [FAQ](https://ant.design/docs/react/faq)
- [CodeSandbox Template](https://u.ant.design/codesandbox-repro) for bug reports
- [Customize Theme](https://ant.design/docs/react/customize-theme)
- [How to Apply for Being A Collaborator](https://github.com/ant-design/ant-design/wiki/Collaborators#how-to-apply-for-being-a-collaborator)
## â¨ï¸ Development
Use Gitpod, a free online dev environment for GitHub.
[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/ant-design/ant-design)
Or clone locally:
```bash
$ git clone git@github.com:ant-design/ant-design.git
$ cd ant-design
$ npm install
$ npm start
```
Open your browser and visit http://127.0.0.1:8001 , see more at [Development](https://github.com/ant-design/ant-design/wiki/Development).
## ð¤ Contributing [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
Read our [contributing guide](https://ant.design/docs/react/contributing) and let's build a better antd together.
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! :)
If you are a collaborator, please follow ou
没有合适的资源?快使用搜索试试~ 我知道了~
ant-design-5.9.4.zip
共2000个文件
md:1129个
tsx:493个
ts:238个
需积分: 0 0 下载量 187 浏览量
更新于2024-08-25
收藏 4.76MB ZIP 举报
ant-design,一套企业级 UI 设计语言和 React 组件库
提炼自企业级中后台产品的交互语言和视觉风格
开箱即用的高质量 React 组件
收起资源包目录
ant-design-5.9.4.zip (2000个子文件)
CNAME 11B
reset.css 4KB
global.css 228B
.editorconfig 172B
.gitkeep 0B
template.html 743B
index.html 357B
.eslintrc.js 7KB
mirror-modal.js 4KB
.jest.js 2KB
webpack.config.js 2KB
setup.js 2KB
.antd-tools.config.js 1KB
.stylelintrc.js 1KB
use-client.test.js 956B
.jest.image.js 783B
.jest.node.js 753B
index-style-only.js 734B
.jest.site.js 732B
lib.test.js 584B
.depslintrc.js 486B
jest-puppeteer.config.js 358B
dist.test.js 335B
index-with-locales.js 307B
.remarkrc.js 193B
loading.js 150B
index.js 74B
contributors.json 25KB
package.json 11KB
zh-CN.json 7KB
en-US.json 7KB
example.json 1KB
tsconfig.json 835B
renovate.json 573B
biome.json 324B
tsconfig.json 117B
ci.json 73B
LICENSE 1KB
CHANGELOG.zh-CN.md 140KB
CHANGELOG.en-US.md 137KB
migrate-less-variables.zh-CN.md 39KB
migrate-less-variables.en-US.md 39KB
index.zh-CN.md 34KB
index.en-US.md 33KB
index.zh-CN.md 20KB
index.en-US.md 20KB
github-actions-workflow.en-US.md 19KB
faq.zh-CN.md 18KB
github-actions-workflow.zh-CN.md 18KB
faq.en-US.md 16KB
copywriting.zh-CN.md 16KB
index.en-US.md 15KB
index.zh-CN.md 15KB
use-with-umi.en-US.md 14KB
use-with-umi.zh-CN.md 14KB
customize-theme.en-US.md 14KB
customize-theme.zh-CN.md 14KB
copywriting.en-US.md 13KB
index.zh-CN.md 13KB
index.en-US.md 12KB
index.en-US.md 12KB
testing-migrate.en-US.md 11KB
index.zh-CN.md 11KB
index.en-US.md 11KB
contributor-development-maintenance-guide.zh-CN.md 11KB
migration-v5.en-US.md 11KB
migration-v5.zh-CN.md 11KB
icon.zh-CN.md 11KB
testing-migrate.zh-CN.md 11KB
contributor-development-maintenance-guide.en-US.md 11KB
index.zh-CN.md 11KB
issue-helper.en-US.md 10KB
issue-helper.zh-CN.md 10KB
index.en-US.md 10KB
research-navigation.zh-CN.md 10KB
index.en-US.md 10KB
research-form.zh-CN.md 10KB
index.zh-CN.md 10KB
buttons.zh-CN.md 10KB
data-format.zh-CN.md 10KB
index.en-US.md 10KB
index.zh-CN.md 9KB
index.zh-CN.md 9KB
README-zh_CN.md 9KB
shadow.zh-CN.md 9KB
virtual-table.en-US.md 9KB
resources.zh-CN.md 9KB
README.md 9KB
visual.zh-CN.md 9KB
suspense.en-US.md 9KB
virtual-table.zh-CN.md 9KB
suspense.zh-CN.md 8KB
buttons.en-US.md 8KB
index.zh-CN.md 8KB
index.en-US.md 8KB
data-list.en-US.md 8KB
introduce.zh-CN.md 8KB
visualization-page.en-US.md 8KB
index.en-US.md 8KB
server-side-rendering.en-US.md 8KB
共 2000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 20
资源推荐
资源预览
资源评论
160 浏览量
2020-07-14 上传
179 浏览量
2024-06-08 上传
180 浏览量
2012-05-09 上传
2023-08-03 上传
186 浏览量
2022-04-07 上传
5星 · 资源好评率100%
173 浏览量
2024-09-03 上传
2009-08-22 上传
5星 · 资源好评率100%
109 浏览量
2017-03-26 上传
2023-03-31 上传
资源评论
a3737337
- 粉丝: 0
- 资源: 2869
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 职工安全教育培训档案.docx
- 职业技术学院差旅费审批表.docx
- 职业技术学院教学事故责任认定申诉表.doc
- 职业技术学院取消学生考试资格审批表.docx
- 职业学院年招生政治考察表.doc
- 质保金到期付款证明.docx
- 智慧教室使用审批单.doc
- 中等职业学校专业课教师面试测试标准.doc
- 重大事项和重点工作实施单位监督记录表.docx
- 专业教学计划调整申请表.docx
- 专业核心课程设置表.docx
- 势能法求解含齿根裂纹的直齿轮时变啮合刚度,根据Wu文献并结合其它文献采用MATLAB编写的含齿根裂纹的时变啮合刚度程序,同时考虑了齿轮变位情况 另有考虑双齿啮合时,齿基刚度重复计算的修正程序 如有
- 直流无刷电机控制(FOC):速度闭环模式 直流无刷电机控制(FOC):电流模式 直流无刷电机控制(FOC):位置模式
- 工业互联网试题及答案 单选
- 基于 TransUnet 对房屋建筑图纸图像语义的分割实战【包含代码+数据集,一键运行】
- 西门子 博途 通讯库,可以通过标签寻址 可以用于C++,.Net及Labview开发的上位机 产品亮点 支持控制器类型S7-200, S7-1200, S7-1500, S7-300, S7-400
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功