pxt-core 7.5.25 → 7.5.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 +43 -40
- package/built/pxtcompiler.d.ts +0 -1
- package/built/pxtcompiler.js +9 -25
- package/built/pxtlib.js +13 -12
- package/built/pxtpy.js +21 -3
- package/built/target.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtcompiler.js +1 -1
- package/built/web/pxtembed.js +1 -1
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtpy.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/common-docs/faq.md +1 -1
- package/docfiles/domains-template.html +1 -1
- package/localtypings/pxtarget.d.ts +2 -0
- package/localtypings/pxtpackage.d.ts +4 -0
- package/package.json +1 -1
package/common-docs/faq.md
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
|
|
33
33
|
<title>Reachable MakeCode domains</title>
|
|
34
34
|
|
|
35
|
-
<link rel="stylesheet" href="
|
|
35
|
+
<link rel="stylesheet" href="/doccdn/semantic.css" type="text/css">
|
|
36
36
|
<style>
|
|
37
37
|
/* styles are inlined here as we don't want depednency on another file for checking the domains */
|
|
38
38
|
/* Global --------------------------------------------------------------------------- */
|
|
@@ -790,6 +790,7 @@ declare namespace ts.pxtc {
|
|
|
790
790
|
imageLiteralScale?: number; // button sizing between 0.6 and 2, default is 1
|
|
791
791
|
weight?: number;
|
|
792
792
|
parts?: string;
|
|
793
|
+
hiddenParts?: string; // allows an extesion to declaratively hide a part
|
|
793
794
|
trackArgs?: number[];
|
|
794
795
|
advanced?: boolean;
|
|
795
796
|
deprecated?: boolean;
|
|
@@ -1043,6 +1044,7 @@ declare namespace ts.pxtc {
|
|
|
1043
1044
|
extensionFiles: pxt.Map<string>;
|
|
1044
1045
|
yotta?: pxt.YottaConfig;
|
|
1045
1046
|
platformio?: pxt.PlatformIOConfig;
|
|
1047
|
+
codal?: pxt.CodalJson;
|
|
1046
1048
|
npmDependencies?: pxt.Map<string>;
|
|
1047
1049
|
sha: string;
|
|
1048
1050
|
compileData: string;
|