pxt-core 7.3.21 → 7.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/pxtblockly.js +1448 -1359
- package/built/pxtblocks.d.ts +4 -4
- package/built/pxtblocks.js +80 -35
- package/built/target.js +1 -1
- package/built/web/blockly.css +1 -1
- package/built/web/main.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/rtlblockly.css +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/localtypings/blockly.d.ts +6555 -11288
- package/package.json +2 -2
- package/theme/blockly-core.less +13 -22
- package/theme/melodyeditor.less +2 -2
- package/theme/print.less +1 -1
- package/theme/toolbox.less +0 -1
- package/webapp/public/blockly/blockly_compressed.js +1286 -1269
- package/webapp/public/blockly/blocks_compressed.js +65 -47
- package/webapp/public/blockly/msg/js/en.js +17 -8
- package/webapp/public/blockly/msg/json/en.json +15 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pxt-core",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.22",
|
|
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": "3.0.35",
|
|
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 {
|
|
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
|
-
|
|
93
|
+
text.semanticIcon {
|
|
94
94
|
fill: #fff;
|
|
95
95
|
font-family: "Icons";
|
|
96
96
|
font-size: 19px;
|
|
97
97
|
}
|
|
98
|
-
|
|
98
|
+
text.semanticIcon.inverted {
|
|
99
99
|
fill: #000;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -107,13 +107,6 @@ body.blocklyMinimalBody {
|
|
|
107
107
|
color: white;
|
|
108
108
|
}
|
|
109
109
|
|
|
110
|
-
/*******************************
|
|
111
|
-
Blockly Toolbox
|
|
112
|
-
*******************************/
|
|
113
|
-
|
|
114
|
-
.blocklyTreeIcon {
|
|
115
|
-
visibility: visible;
|
|
116
|
-
}
|
|
117
110
|
|
|
118
111
|
/*******************************
|
|
119
112
|
Blockly Flyout
|
|
@@ -223,20 +216,18 @@ text.blocklyCheckbox {
|
|
|
223
216
|
}
|
|
224
217
|
|
|
225
218
|
/* (arcade only) Sets the correct background color for the sprite image field */
|
|
226
|
-
.pxt-renderer.
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
stroke-width: 1;
|
|
236
|
-
}
|
|
237
|
-
|
|
219
|
+
.pxt-renderer .blocklyNonEditableText > rect.blocklySpriteField,
|
|
220
|
+
.pxt-renderer .blocklyNonEditableText > rect.blocklyAnimationField,
|
|
221
|
+
.pxt-renderer .blocklyNonEditableText > rect.blocklyTilemapField,
|
|
222
|
+
.pxt-renderer .blocklyEditableText > rect.blocklySpriteField,
|
|
223
|
+
.pxt-renderer .blocklyEditableText > rect.blocklyAnimationField,
|
|
224
|
+
.pxt-renderer .blocklyEditableText > rect.blocklyTilemapField {
|
|
225
|
+
fill: #dedede;
|
|
226
|
+
stroke: #898989;
|
|
227
|
+
stroke-width: 1;
|
|
238
228
|
}
|
|
239
229
|
|
|
230
|
+
|
|
240
231
|
/*******************************
|
|
241
232
|
Blocks
|
|
242
233
|
*******************************/
|
package/theme/melodyeditor.less
CHANGED
|
@@ -250,8 +250,8 @@
|
|
|
250
250
|
}
|
|
251
251
|
|
|
252
252
|
.melody-content-div,
|
|
253
|
-
.pxt-renderer
|
|
254
|
-
.pxt-renderer
|
|
253
|
+
.pxt-renderer g.blocklyEditableText > &,
|
|
254
|
+
.pxt-renderer g.blocklyNonEditableText > & {
|
|
255
255
|
.melody-red {
|
|
256
256
|
fill: #A80000;
|
|
257
257
|
background: #A80000;
|
package/theme/print.less
CHANGED