
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
An enterprise-class UI design language and React-based implementation.
We are now working on translate components document to English, and we need some translator and reviewer. https://github.com/ant-design/ant-design/issues/1471
npm install antd
import { DatePicker } from 'antd';
ReactDOM.render(<DatePicker />, mountNode);
And import style manually:
import 'antd/dist/antd.css'; // or 'antd/dist/antd.less'
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
Normal browsers and Internet Explorer 8+.
tsconfig.json
{
"compilerOptions": {
"moduleResolution": "node",
"jsx": "preserve"
}
}
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! :)
FAQs
一个 UI 设计语言
We found that hdkd demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.