pxt-core 9.3.20 → 9.3.22
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 +22 -2
- package/built/pxtlib.js +22 -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/pxtembed.js +1 -1
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/localtypings/pxtarget.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1153,6 +1153,7 @@ declare namespace pxt.tutorial {
|
|
|
1153
1153
|
code: string[]; // all code
|
|
1154
1154
|
language?: string; // language of code snippet (ts or python)
|
|
1155
1155
|
templateCode?: string;
|
|
1156
|
+
templateLanguage?: string; // language of template code
|
|
1156
1157
|
metadata?: TutorialMetadata;
|
|
1157
1158
|
assetFiles?: pxt.Map<string>;
|
|
1158
1159
|
jres?: string; // JRES to be used when generating hints; necessary for tilemaps
|
|
@@ -1258,6 +1259,7 @@ declare namespace pxt.tutorial {
|
|
|
1258
1259
|
tutorialCode?: string[]; // all tutorial code bundled
|
|
1259
1260
|
tutorialRecipe?: boolean; // micro tutorial running within the context of a script
|
|
1260
1261
|
templateCode?: string;
|
|
1262
|
+
templateLanguage?: string;
|
|
1261
1263
|
mergeHeaderId?: string;
|
|
1262
1264
|
mergeCarryoverCode?: boolean;
|
|
1263
1265
|
autoexpandStep?: boolean; // autoexpand tutorial card if instruction text overflows
|