blockly-fluid 1.3.5 → 1.3.6

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.
Files changed (2) hide show
  1. package/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -320,6 +320,8 @@ module.exports = (Blockly, { generator: languageGeneratorFallback, generators: l
320
320
  validator: (value) => {
321
321
  if (!value) return "0";
322
322
  if (/^-?\d*\.?\d*$/.test(value)) return value;
323
+
324
+ return "0";
323
325
  }
324
326
  }
325
327
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blockly-fluid",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
4
4
  "description": "A flexible proxy wrapper for Blockly blocks.",
5
5
  "main": "index.js",
6
6
  "scripts": {