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.
@@ -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 auto
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "7.5.35",
3
+ "version": "7.5.38",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
@@ -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() {