We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42ffa0e commit 551f0a0Copy full SHA for 551f0a0
1 file changed
src/ProgressBar.js
@@ -1,3 +1,6 @@
1
+/* eslint react/prop-types: [1, {ignore: ["className", "bsStyle"]}]*/
2
+/* BootstrapMixin contains `bsStyle` type validation */
3
+
4
import React, { cloneElement, PropTypes } from 'react';
5
import Interpolate from './Interpolate';
6
import BootstrapMixin from './BootstrapMixin';
@@ -14,7 +17,9 @@ const ProgressBar = React.createClass({
14
17
srOnly: PropTypes.bool,
15
18
striped: PropTypes.bool,
16
19
active: PropTypes.bool,
- children: onlyProgressBar
20
+ children: onlyProgressBar,
21
+ interpolateClass: PropTypes.node,
22
+ isChild: PropTypes.bool
23
},
24
25
mixins: [BootstrapMixin],
0 commit comments