pxt-core 9.3.8 → 9.3.9
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/cli.js +11 -4
- package/built/pxt.js +13 -4
- package/built/pxtlib.d.ts +1 -0
- package/built/pxtrunner.js +13 -1
- package/built/pxtsim.d.ts +1 -0
- package/built/pxtsim.js +2 -0
- package/built/server.js +2 -1
- 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 +2 -2
- package/built/web/pxtrunner.js +1 -1
- package/built/web/pxtsim.js +1 -1
- package/built/web/react-common-teachertool.css +13 -0
- package/built/web/rtlreact-common-teachertool.css +13 -0
- package/built/web/teachertool/css/main.a04db2f1.css +1 -0
- package/built/web/teachertool/js/main.e5ff478b.js +2 -0
- package/package.json +4 -2
- package/react-common/styles/react-common-teachertool-core.less +10 -0
- package/react-common/styles/react-common-teachertool.less +12 -0
- package/webapp/public/teachertool.html +36 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxt-core",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.9",
|
|
4
4
|
"description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TypeScript",
|
|
@@ -42,6 +42,8 @@
|
|
|
42
42
|
"built/web/multiplayer/js/*.js",
|
|
43
43
|
"built/web/kiosk/css/*.css",
|
|
44
44
|
"built/web/kiosk/js/*.js",
|
|
45
|
+
"built/web/teachertool/css/*.css",
|
|
46
|
+
"built/web/teachertool/js/*.js",
|
|
45
47
|
"pxtcompiler/ext-typescript/lib/lib.d.ts",
|
|
46
48
|
"pxtcompiler/ext-typescript/lib/typescript.js",
|
|
47
49
|
"pxtcompiler/ext-typescript/lib/typescriptServices.d.ts",
|
|
@@ -164,6 +166,6 @@
|
|
|
164
166
|
"test:lang": "gulp testlang",
|
|
165
167
|
"update": "gulp update",
|
|
166
168
|
"watch-streamer": "cd docs/static/streamer && tsc -t es6 --watch",
|
|
167
|
-
"prepare": "cd skillmap && npm install && cd .. && cd authcode && npm install && cd .. && cd multiplayer && npm install && cd .. && cd kiosk && npm install && cd .."
|
|
169
|
+
"prepare": "cd skillmap && npm install && cd .. && cd authcode && npm install && cd .. && cd multiplayer && npm install && cd .. && cd kiosk && npm install && cd .. && cd teachertool && npm install && cd .."
|
|
168
170
|
}
|
|
169
171
|
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is the same as react-common-teachertool.less except it doesn't import any
|
|
3
|
+
* variables from the target. This is used for pxt-core's css build
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// Import variables from pxt-core
|
|
7
|
+
@import "themes/default/globals/site.variables";
|
|
8
|
+
@import "themes/pxt/globals/site.variables";
|
|
9
|
+
|
|
10
|
+
@import "react-common.less";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Used for building react-common-teachertool.css
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
// Import variables from pxt-core
|
|
6
|
+
@import "themes/default/globals/site.variables";
|
|
7
|
+
@import "themes/pxt/globals/site.variables";
|
|
8
|
+
|
|
9
|
+
// Import the variables from the target
|
|
10
|
+
@import "site/globals/site.variables";
|
|
11
|
+
|
|
12
|
+
@import "react-common.less";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8"/>
|
|
5
|
+
<!-- <link rel="icon" href="/teachertool-data/favicon.ico" /> -->
|
|
6
|
+
<meta name="viewport" content="width=device-width,initial-scale=1"/>
|
|
7
|
+
<meta name="theme-color" content="#000000"/>
|
|
8
|
+
<meta name="description" content="MakeCode Teacher Tool. Automatically analyze and evaluate projects."/>
|
|
9
|
+
<link rel="stylesheet" data-rtl="/blb/rtlsemantic.css" href="/blb/semantic.css">
|
|
10
|
+
<link rel="stylesheet" href="/blb/icons.css">
|
|
11
|
+
<link rel="stylesheet" href="/blb/react-common-teachertool.css">
|
|
12
|
+
<!-- <link rel="apple-touch-icon" href="/teachertool-data/logo192.png" /> -->
|
|
13
|
+
<!--
|
|
14
|
+
manifest.json provides metadata used when your web app is installed on a
|
|
15
|
+
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
|
16
|
+
-->
|
|
17
|
+
<link rel="manifest" href="/teachertool-data/manifest.json"/>
|
|
18
|
+
<title>MakeCode Teacher Tool</title>
|
|
19
|
+
<script>var pxtConfig=null</script>
|
|
20
|
+
<script defer="defer" src="/blb/teachertool/js/main.e5ff478b.js"></script><link href="/blb/teachertool/css/main.a04db2f1.css" rel="stylesheet"></head>
|
|
21
|
+
<body>
|
|
22
|
+
<noscript>You need to enable JavaScript to run this app.</noscript>
|
|
23
|
+
|
|
24
|
+
<!-- @include tracking.html -->
|
|
25
|
+
<!-- @include tickevent.html -->
|
|
26
|
+
|
|
27
|
+
<!-- target.js is generated by the CLI -->
|
|
28
|
+
<script type="text/javascript" src="/blb/target.js"></script>
|
|
29
|
+
<script type="text/javascript" src="/blb/pxtlib.js"></script>
|
|
30
|
+
<script type="text/javascript" src="/blb/pxtsim.js"></script>
|
|
31
|
+
|
|
32
|
+
<div id="root"></div>
|
|
33
|
+
|
|
34
|
+
<!-- @include footer.html -->
|
|
35
|
+
</body>
|
|
36
|
+
</html>
|