shinkansen-sprockets 1.0.64 → 1.0.65

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shinkansen-sprockets",
3
- "version": "1.0.64",
3
+ "version": "1.0.65",
4
4
  "description": "Shinkansen Sprockets",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -46,9 +46,9 @@ export default class Group extends Component {
46
46
  Group.propTypes = {
47
47
  onChange: PropTypes.func,
48
48
  children: PropTypes.oneOfType([
49
- PropTypes.element,
49
+ PropTypes.node,
50
50
  PropTypes.arrayOf(
51
- PropTypes.element
51
+ PropTypes.node
52
52
  )
53
53
  ])
54
54
  }
@@ -81,9 +81,9 @@ Sprocket.propTypes = {
81
81
  title: PropTypes.string,
82
82
  onChange: PropTypes.func,
83
83
  children: PropTypes.oneOfType([
84
- PropTypes.element,
84
+ PropTypes.node,
85
85
  PropTypes.arrayOf(
86
- PropTypes.element
86
+ PropTypes.node
87
87
  )
88
88
  ])
89
89
  }