pxt-core 7.3.17 → 7.3.21
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 +9 -6
- package/built/pxtblockly.js +1359 -1448
- package/built/pxtblocks.d.ts +4 -4
- package/built/pxtblocks.js +35 -80
- package/built/pxtlib.d.ts +6 -1
- package/built/pxtlib.js +9 -6
- package/built/target.js +1 -1
- package/built/web/blockly.css +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/pxtblockly.js +1 -1
- package/built/web/pxtblocks.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/built/web/react-common.css +10 -5
- package/built/web/rtlblockly.css +1 -1
- package/built/web/rtlsemantic.css +2 -2
- package/built/web/semantic.css +2 -2
- package/built/web/skillmap/css/main.96b1b3f1.chunk.css +1 -0
- package/built/web/skillmap/js/2.7dd06a3a.chunk.js +2 -0
- package/built/web/skillmap/js/main.bdd63c80.chunk.js +1 -0
- package/localtypings/blockly.d.ts +12268 -7535
- package/localtypings/pxtarget.d.ts +1 -0
- package/package.json +2 -2
- package/theme/blockly-core.less +22 -13
- package/theme/melodyeditor.less +2 -2
- package/theme/print.less +1 -1
- package/theme/pxt.less +0 -1
- package/theme/toolbox.less +1 -0
- package/webapp/public/blockly/blockly_compressed.js +1269 -1286
- package/webapp/public/blockly/blocks_compressed.js +47 -65
- package/webapp/public/blockly/msg/js/en.js +8 -17
- package/webapp/public/blockly/msg/json/en.json +6 -15
- package/webapp/public/skillmap.html +2 -2
- package/built/web/skillmap/css/main.ad6de34e.chunk.css +0 -1
- package/built/web/skillmap/js/2.c64f6be2.chunk.js +0 -2
- package/built/web/skillmap/js/main.0fff4916.chunk.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxt-core",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.21",
|
|
4
4
|
"description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"TypeScript",
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"monaco-editor": "0.24.0",
|
|
126
126
|
"pouchdb": "7.2.1",
|
|
127
127
|
"pouchdb-adapter-memory": "7.2.1",
|
|
128
|
-
"pxt-blockly": "
|
|
128
|
+
"pxt-blockly": "4.0.5",
|
|
129
129
|
"react": "16.8.3",
|
|
130
130
|
"react-dom": "16.11.0",
|
|
131
131
|
"react-modal": "3.3.2",
|
package/theme/blockly-core.less
CHANGED
|
@@ -72,7 +72,7 @@ body.blocklyMinimalBody {
|
|
|
72
72
|
Blockly Text
|
|
73
73
|
*******************************/
|
|
74
74
|
|
|
75
|
-
.pxt-renderer {
|
|
75
|
+
.pxt-renderer.classic-theme {
|
|
76
76
|
text.blocklyFlyoutLabelText, .blocklyFlyoutButton text.blocklyText {
|
|
77
77
|
font-family: @pageFont !important;
|
|
78
78
|
}
|
|
@@ -90,12 +90,12 @@ body.blocklyMinimalBody {
|
|
|
90
90
|
font-style: italic;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
text.semanticIcon {
|
|
93
|
+
.blocklyEditableText>text.semanticIcon {
|
|
94
94
|
fill: #fff;
|
|
95
95
|
font-family: "Icons";
|
|
96
96
|
font-size: 19px;
|
|
97
97
|
}
|
|
98
|
-
text.semanticIcon.inverted {
|
|
98
|
+
.blocklyEditableText>text.semanticIcon.inverted {
|
|
99
99
|
fill: #000;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -107,6 +107,13 @@ body.blocklyMinimalBody {
|
|
|
107
107
|
color: white;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
+
/*******************************
|
|
111
|
+
Blockly Toolbox
|
|
112
|
+
*******************************/
|
|
113
|
+
|
|
114
|
+
.blocklyTreeIcon {
|
|
115
|
+
visibility: visible;
|
|
116
|
+
}
|
|
110
117
|
|
|
111
118
|
/*******************************
|
|
112
119
|
Blockly Flyout
|
|
@@ -216,17 +223,19 @@ text.blocklyCheckbox {
|
|
|
216
223
|
}
|
|
217
224
|
|
|
218
225
|
/* (arcade only) Sets the correct background color for the sprite image field */
|
|
219
|
-
.pxt-renderer
|
|
220
|
-
.
|
|
221
|
-
.
|
|
222
|
-
.
|
|
223
|
-
.
|
|
224
|
-
.
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
226
|
+
.pxt-renderer.classic-theme {
|
|
227
|
+
.blocklyNonEditableText > rect.blocklySpriteField,
|
|
228
|
+
.blocklyNonEditableText > rect.blocklyAnimationField,
|
|
229
|
+
.blocklyNonEditableText > rect.blocklyTilemapField,
|
|
230
|
+
.blocklyEditableText > rect.blocklySpriteField,
|
|
231
|
+
.blocklyEditableText > rect.blocklyAnimationField,
|
|
232
|
+
.blocklyEditableText > rect.blocklyTilemapField {
|
|
233
|
+
fill: #dedede;
|
|
234
|
+
stroke: #898989;
|
|
235
|
+
stroke-width: 1;
|
|
236
|
+
}
|
|
229
237
|
|
|
238
|
+
}
|
|
230
239
|
|
|
231
240
|
/*******************************
|
|
232
241
|
Blocks
|
package/theme/melodyeditor.less
CHANGED
|
@@ -250,8 +250,8 @@
|
|
|
250
250
|
}
|
|
251
251
|
|
|
252
252
|
.melody-content-div,
|
|
253
|
-
.pxt-renderer g.blocklyEditableText > &,
|
|
254
|
-
.pxt-renderer g.blocklyNonEditableText > & {
|
|
253
|
+
.pxt-renderer.classic-theme g.blocklyEditableText > &,
|
|
254
|
+
.pxt-renderer.classic-theme g.blocklyNonEditableText > & {
|
|
255
255
|
.melody-red {
|
|
256
256
|
fill: #A80000;
|
|
257
257
|
background: #A80000;
|
package/theme/print.less
CHANGED
package/theme/pxt.less
CHANGED