Skip to content

Commit f6d32c4

Browse files
committed
[changed] deprecate 'utils/CustomPropTypes' exporting
1 parent 00b4457 commit f6d32c4

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

src/index.js

+14-1
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,17 @@ export Collapse from './Collapse';
6767
export Fade from './Collapse';
6868

6969
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+
};

src/utils/index.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
import deprecationWarning from './deprecationWarning';
2+
13
export childrenValueInputValidation from './childrenValueInputValidation';
24
export createChainedFunction from './createChainedFunction';
3-
export CustomPropTypes from './CustomPropTypes';
45
export domUtils from './domUtils';
56
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';

0 commit comments

Comments
 (0)