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 1
1
{
2
2
"name" : " rc-picker" ,
3
- "version" : " 4.8.2 " ,
3
+ "version" : " 4.8.3 " ,
4
4
"description" : " React date & time picker" ,
5
5
"keywords" : [
6
6
" react" ,
Original file line number Diff line number Diff line change 1
1
import type { Dayjs } from 'dayjs' ;
2
2
import dayjs from 'dayjs' ;
3
- import { noteOnce } from 'rc-util/lib/warning' ;
4
3
import weekday from 'dayjs/plugin/weekday' ;
5
4
import localeData from 'dayjs/plugin/localeData' ;
6
5
import weekOfYear from 'dayjs/plugin/weekOfYear' ;
@@ -100,9 +99,13 @@ const parseLocale = (locale: string) => {
100
99
return mapLocale || locale . split ( '_' ) [ 0 ] ;
101
100
} ;
102
101
102
+ /* istanbul ignore next */
103
103
const 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.');
106
109
} ;
107
110
108
111
const generateConfig : GenerateConfig < Dayjs > = {
You can’t perform that action at this time.
0 commit comments