File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " rc-picker" ,
3- "version" : " 4.8.2 " ,
3+ "version" : " 4.8.3 " ,
44 "description" : " React date & time picker" ,
55 "keywords" : [
66 " react" ,
Original file line number Diff line number Diff line change 11import type { Dayjs } from 'dayjs' ;
22import dayjs from 'dayjs' ;
3- import { noteOnce } from 'rc-util/lib/warning' ;
43import weekday from 'dayjs/plugin/weekday' ;
54import localeData from 'dayjs/plugin/localeData' ;
65import weekOfYear from 'dayjs/plugin/weekOfYear' ;
@@ -100,9 +99,13 @@ const parseLocale = (locale: string) => {
10099 return mapLocale || locale . split ( '_' ) [ 0 ] ;
101100} ;
102101
102+ /* istanbul ignore next */
103103const parseNoMatchNotice = ( ) => {
104- /* istanbul ignore next */
105- noteOnce ( false , 'Not match any format. Please help to fire a issue about this.' ) ;
104+ // zombieJ:
105+ // When user typing, its always miss match format.
106+ // This check is meaningless.
107+ // https://github.com/ant-design/ant-design/issues/51839
108+ // noteOnce(false, 'Not match any format. Please help to fire a issue about this.');
106109} ;
107110
108111const generateConfig : GenerateConfig < Dayjs > = {
You can’t perform that action at this time.
0 commit comments