picker icon indicating copy to clipboard operation
picker copied to clipboard

📅 All Date Pickers you need.

Results 196 picker issues
Sort by recently updated
recently updated
newest added

Similar issue to `react-component/select`; https://github.com/react-component/select/issues/977 `event.which` is [deprecated](https://developer.mozilla.org/en-US/docs/Web/API/UIEvent/which) which is causing issues with `@testing-library/user-event` `v14`; https://github.com/testing-library/user-event/issues/1137 > **Deprecated:** This feature is no longer recommended. Though some browsers might still support...

Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `[email protected]` for the project I'm working on. Here is the diff that solved...

仍然显示year在panel上, 但是禁止onclick事件, user只能点击月份, 年份被禁止

I configured the format to be "DD/MM/YYYY", but the tester found that when the mouse moved into some date boxes, the format was still "YYYY-MM-DD". I checked the rc-picker source...

### 动机 ref:https://github.com/ant-design/ant-design/issues/45416#issuecomment-1770304575 ### 问题背景 ref:https://github.com/ant-design/ant-design/issues/45416#issuecomment-1770289687 ### 解决方案 修改 rc-picker 默认格式化优先使用 locale 中的 format: - weekFormat - monthFormat - quarterFormat - yearFormat - dateTimeFormat - dateFormat 从问题背景可以得知,这原本应该属于 antd3 的 feature,但是在升级为...

rc-picker version: 3.8.1 antd version: 5.6.0 luxon version: 3.3.0 When we set the luxon config to `Settings.throwOnInvalid = true` we get an error when we open up the antd date...

抱歉,没有按照规范提issues,也没有开放discussions,我简单概括一下。 我这边的业务的需求月份是16个月,并且想要antd的的日期范围选择器的交互效果。 我感觉需要从这里入手进行代码修改,我尝试了修改,发现没我想象的那么简单,可以给点建议吗

目前title默认为选中的值,是否可以开放出,由prop中的title来指定?

目前的 disabledDate 的设计是一个完全自由开放的设计,它可以是禁用连续的日期,可以是禁用独立的日期。 在渲染面板的时候,就会需要查找面板选项范围内是否存在可选的值,这样在极端情况下:即 year 面板,整年都不可选,则需要执行 365 次 disabledDate 才能推断出该年不可选。整个 year 面板最坏的情况是 3(列表) * 4 (行)* 365 次,相信没有人能接受这个性能吧😂。 所以我建议是不是在 year/month 视图不要应用 disabledDate,用户反正最终是要选到 date 上,能保证 date 的disabled 正常就可以了。或者是另外提供 disabledMonth、disabledYear 来解决性能问题