Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
antd-extensions
Advanced tools
[![NPM Version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coverage-image]][coverage-url] ![][david-url] ![][dt-url] ![][license-url]
npm test
目前单元测试还在补充,望有志之士一起加入。 单测在组件目录下的tests中,写单测时请尽量保证覆盖率 > 95% 并考虑边界情况,如果不能做到测试用例全覆盖,优先覆盖底层逻辑。
npm install --save antd-extensions
ant-design的 DFocus 扩展组件库,帮助开发者选择需要的组件,并迅速进入角色。
完整 API 使用文档,请这边走
// 日期区间选择器
import React, { Component } from 'react'
import { TimeRangePicker } from 'antd-extensions'
class Example extends Component {
constructor(props) {
super(props)
this.state = {
value: {
type: 'CUSTOMIZE',
ranges: [1533081600000, 1534377600000]
}
}
}
_handleChange = value => {
console.log(`You're selection is ${JSON.stringify(value)}`)
this.setState({
value
})
}
render() {
return (
<TimeRangePicker
value={this.state.value}
onChange={this._handleChange}
labels={{
BTN_ALL: 'All',
BTN_LAST_WEEK: 'Last week',
BTN_LAST_MONTH: 'Last month',
BTN_CUSTOMIZE: 'Customize',
PLACEHOLDER_START: 'Start',
PLACEHOLDER_END: 'End'
}}
disabledDate={current =>
current &&
current >
moment()
.endOf('day')
.subtract(1, 'days')
}
/>
)
}
}
FAQs
[![NPM Version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Coverage Status][coverage-image]][coverage-url] ![][david-url] ![][dt-url] ![][license-url]
We found that antd-extensions 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
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.