pxt-core 7.5.35 → 7.5.38
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 +5 -3
- package/built/pxtlib.js +3 -1
- package/built/pxtrunner.d.ts +0 -1
- package/built/pxtrunner.js +1 -2
- package/built/pxtsim.d.ts +0 -1
- package/built/pxtsim.js +2 -2
- package/built/target.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtembed.js +2 -2
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtrunner.js +1 -1
- package/built/web/pxtsim.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/localtypings/pxtarget.d.ts +2 -2
- package/package.json +1 -1
- package/webapp/public/run.html +1 -4
|
@@ -835,7 +835,7 @@ declare namespace ts.pxtc {
|
|
|
835
835
|
mutatePrefix?: string;
|
|
836
836
|
mutateDefaults?: string;
|
|
837
837
|
mutatePropertyEnum?: string;
|
|
838
|
-
inlineInputMode?: string; // can be inline, external, or
|
|
838
|
+
inlineInputMode?: string; // can be inline (horizontal), external (vertical), auto (default), or variable (based off currently expanded number of params)
|
|
839
839
|
expandableArgumentMode?: string; // can be disabled, enabled, or toggle
|
|
840
840
|
compileHiddenArguments?: boolean; // if true, compiles the values in expandable arguments even when collapsed
|
|
841
841
|
draggableParameters?: string; // can be reporter or variable; defaults to variable
|
|
@@ -1192,4 +1192,4 @@ declare namespace pxt.auth {
|
|
|
1192
1192
|
type: "skillmap-completion";
|
|
1193
1193
|
sourceURL: string;
|
|
1194
1194
|
}
|
|
1195
|
-
}
|
|
1195
|
+
}
|
package/package.json
CHANGED
package/webapp/public/run.html
CHANGED
|
@@ -106,7 +106,6 @@
|
|
|
106
106
|
var localToken = /local_token(?:[:=])([^&?]+)/i.exec(window.location.href);
|
|
107
107
|
var hex = !!/hex(?:[:=])1/i.exec(window.location.href);
|
|
108
108
|
var footer = !/nofooter(?:[:=])1/i.exec(window.location.href);
|
|
109
|
-
var hideSimButtons = !!/hidesimbuttons(?:[:=])1/i.exec(window.location.href);
|
|
110
109
|
var debugSim = !!/debugSim(?:[:=])1/i.exec(window.location.href);
|
|
111
110
|
var sims = document.getElementById('simulators');
|
|
112
111
|
var highContrast = !!/hc(?:[:=])1/i.exec(window.location.href);
|
|
@@ -181,7 +180,6 @@
|
|
|
181
180
|
code: files["main.ts"],
|
|
182
181
|
assets: JSON.stringify(files),
|
|
183
182
|
dependencies: Object.keys(deps).map(v => v + "=" + deps[v]),
|
|
184
|
-
hideSimButtons: hideSimButtons,
|
|
185
183
|
highContrast: highContrast,
|
|
186
184
|
light: light,
|
|
187
185
|
fullScreen: fullScreen,
|
|
@@ -241,8 +239,7 @@
|
|
|
241
239
|
fullScreen: fullScreen,
|
|
242
240
|
dependencies: deps ? decodeURIComponent(deps[1]).split(",") : undefined,
|
|
243
241
|
builtJsInfo: builtSimJs,
|
|
244
|
-
single: single
|
|
245
|
-
hideSimButtons: hideSimButtons
|
|
242
|
+
single: single
|
|
246
243
|
};
|
|
247
244
|
console.log('simulating script')
|
|
248
245
|
pxt.runner.simulateAsync(sims, options).then(function() {
|