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
|
@@ -821,7 +821,9 @@ declare namespace ts.pxtc {
|
|
|
821
821
|
mutateDefaults?: string;
|
|
822
822
|
mutatePropertyEnum?: string;
|
|
823
823
|
inlineInputMode?: string; // can be inline, external, or auto
|
|
824
|
+
inlineInputModeLimit?: number; // the number of expanded arguments at which to switch from inline to external. only applies when inlineInputMode=variable and expandableArgumentsMode=enabled
|
|
824
825
|
expandableArgumentMode?: string; // can be disabled, enabled, or toggle
|
|
826
|
+
expandableArgumentBreaks?: string; // a comma separated list of how many arguments to reveal/hide each time + or - is pressed on a block. only applies when expandableArgumentsMode=enabled
|
|
825
827
|
draggableParameters?: string; // can be reporter or variable; defaults to variable
|
|
826
828
|
|
|
827
829
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxt-core",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.28",
|
|
4
4
|
"description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TypeScript",
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
"monaco-editor": "0.24.0",
|
|
130
130
|
"pouchdb": "7.2.1",
|
|
131
131
|
"pouchdb-adapter-memory": "7.2.1",
|
|
132
|
-
"pxt-blockly": "4.0.
|
|
132
|
+
"pxt-blockly": "4.0.13",
|
|
133
133
|
"react": "16.8.3",
|
|
134
134
|
"react-dom": "16.11.0",
|
|
135
135
|
"react-modal": "3.3.2",
|