File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -67,4 +67,17 @@ export Collapse from './Collapse';
67
67
export Fade from './Collapse' ;
68
68
69
69
export * as FormControls from './FormControls' ;
70
- export * as utils from './utils' ;
70
+
71
+ import childrenValueInputValidation from './utils/childrenValueInputValidation' ;
72
+ import createChainedFunction from './utils/createChainedFunction' ;
73
+ import domUtils from './utils/domUtils' ;
74
+ import ValidComponentChildren from './utils/ValidComponentChildren' ;
75
+ import CustomPropTypes from './utils/CustomPropTypes' ;
76
+
77
+ export const utils = {
78
+ childrenValueInputValidation,
79
+ createChainedFunction,
80
+ domUtils,
81
+ ValidComponentChildren,
82
+ CustomPropTypes
83
+ } ;
Original file line number Diff line number Diff line change
1
+ import deprecationWarning from './deprecationWarning' ;
2
+
1
3
export childrenValueInputValidation from './childrenValueInputValidation' ;
2
4
export createChainedFunction from './createChainedFunction' ;
3
- export CustomPropTypes from './CustomPropTypes' ;
4
5
export domUtils from './domUtils' ;
5
6
export ValidComponentChildren from './ValidComponentChildren' ;
7
+
8
+ deprecationWarning ( 'utils/CustomPropTypes' , 'npm install react-prop-types' ,
9
+ 'https://github.com/react-bootstrap/react-bootstrap/issues/937' ) ;
10
+ export CustomPropTypes from './CustomPropTypes' ;
You can’t perform that action at this time.
0 commit comments