File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed
Expand file tree Collapse file tree 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';
6767export Fade from './Collapse' ;
6868
6969export * 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+
13export childrenValueInputValidation from './childrenValueInputValidation' ;
24export createChainedFunction from './createChainedFunction' ;
3- export CustomPropTypes from './CustomPropTypes' ;
45export domUtils from './domUtils' ;
56export 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