react-blockly-component
Advanced tools
Sorry, the diff of this file is too big to display
+4
-0
@@ -0,1 +1,5 @@ | ||
| # Version 3.0.3 - September 7, 2018 | ||
| * Make `type` an optional prop because categories don't always use it | ||
| # Version 3.0.2 - May 5, 2018 | ||
@@ -2,0 +6,0 @@ |
@@ -11,3 +11,3 @@ var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; | ||
| const BlockPropType = PropTypes.shape({ | ||
| type: PropTypes.string.isRequired, | ||
| type: PropTypes.string, | ||
| shadow: PropTypes.bool, | ||
@@ -25,3 +25,3 @@ fields: PropTypes.object, | ||
| const categoryPropsNonRecursive = { | ||
| type: PropTypes.string.isRequired, | ||
| type: PropTypes.string, | ||
| name: PropTypes.string, | ||
@@ -28,0 +28,0 @@ custom: PropTypes.string, |
+1
-1
| { | ||
| "name": "react-blockly-component", | ||
| "version": "3.0.2", | ||
| "version": "3.0.3", | ||
| "description": "A React wrapper for the Blockly visual programming editor", | ||
@@ -5,0 +5,0 @@ "main": "dist-modules", |
@@ -9,3 +9,3 @@ import React from 'react'; | ||
| const BlockPropType = PropTypes.shape({ | ||
| type: PropTypes.string.isRequired, | ||
| type: PropTypes.string, | ||
| shadow: PropTypes.bool, | ||
@@ -23,3 +23,3 @@ fields: PropTypes.object, | ||
| const categoryPropsNonRecursive = { | ||
| type: PropTypes.string.isRequired, | ||
| type: PropTypes.string, | ||
| name: PropTypes.string, | ||
@@ -26,0 +26,0 @@ custom: PropTypes.string, |
2455614
7.73%26
4%