pxt-core 7.4.25 → 7.4.28
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/built/pxt.js +3 -2
- package/built/pxtblockly.js +817 -696
- package/built/pxtblocks.d.ts +47 -9
- package/built/pxtblocks.js +247 -65
- package/built/pxtcompiler.js +1 -0
- package/built/pxteditor.js +2 -2
- package/built/pxtlib.js +2 -2
- package/built/target.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtasseteditor.js +1 -1
- package/built/web/pxtblockly.js +2 -2
- package/built/web/pxtblocks.js +1 -1
- package/built/web/pxtcompiler.js +1 -1
- package/built/web/pxteditor.js +1 -1
- package/built/web/pxtembed.js +2 -2
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/localtypings/pxtarget.d.ts +2 -0
- package/package.json +2 -2
- package/webapp/public/blockly/blockly_compressed.js +570 -631
- package/webapp/public/run.html +32 -5
package/built/pxt.js
CHANGED
|
@@ -113477,7 +113477,7 @@ var ts;
|
|
|
113477
113477
|
return r;
|
|
113478
113478
|
}
|
|
113479
113479
|
pxtc.emptyExtInfo = emptyExtInfo;
|
|
113480
|
-
const numberAttributes = ["weight", "imageLiteral", "topblockWeight"];
|
|
113480
|
+
const numberAttributes = ["weight", "imageLiteral", "topblockWeight", "inlineInputModeLimit"];
|
|
113481
113481
|
const booleanAttributes = [
|
|
113482
113482
|
"advanced",
|
|
113483
113483
|
"handlerStatement",
|
|
@@ -115528,7 +115528,7 @@ var pxt;
|
|
|
115528
115528
|
id,
|
|
115529
115529
|
type: "tilemap" /* Tilemap */,
|
|
115530
115530
|
meta: {
|
|
115531
|
-
displayName: id
|
|
115531
|
+
displayName: name || id
|
|
115532
115532
|
},
|
|
115533
115533
|
data: data
|
|
115534
115534
|
});
|
|
@@ -139245,6 +139245,7 @@ var ts;
|
|
|
139245
139245
|
let snippet;
|
|
139246
139246
|
if (preDefinedSnippet) {
|
|
139247
139247
|
snippet = [preDefinedSnippet];
|
|
139248
|
+
snippetPrefix = undefined;
|
|
139248
139249
|
}
|
|
139249
139250
|
else {
|
|
139250
139251
|
snippet = [fnName];
|