pxt-core 12.3.20 → 12.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/cli.js +2 -2
- package/built/pxt.js +213 -63
- package/built/pxtcompiler.js +7 -2
- package/built/pxtlib.d.ts +14 -5
- package/built/pxtlib.js +204 -59
- package/built/target.js +1 -1
- package/built/targetlight.js +1 -1
- package/built/tests/blocksrunner.js +19 -8
- package/built/tests/blockssetup.js +19 -8
- package/built/web/main.js +2 -2
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxtasseteditor.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/pxtworker.js +1 -1
- package/built/web/react-common-authcode.css +1 -1
- package/built/web/react-common-multiplayer.css +1 -1
- package/built/web/react-common-skillmap.css +1 -1
- package/built/web/rtlreact-common-authcode.css +1 -1
- package/built/web/rtlreact-common-multiplayer.css +1 -1
- package/built/web/rtlreact-common-skillmap.css +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/runnerembed.js +1 -1
- package/built/web/semantic.css +1 -1
- package/localtypings/pxtarget.d.ts +1 -0
- package/package.json +1 -1
- package/react-common/styles/react-common-variables.less +1 -1
|
@@ -1016,6 +1016,7 @@ declare namespace ts.pxtc {
|
|
|
1016
1016
|
_expandedDef?: ParsedBlockDef;
|
|
1017
1017
|
_untranslatedBlock?: string; // The block definition before it was translated
|
|
1018
1018
|
_untranslatedJsDoc?: string // the jsDoc before it was translated
|
|
1019
|
+
_untranslatedParamDefl?: pxt.Map<string>; // the parameter defaults before they were translated
|
|
1019
1020
|
_translatedLanguageCode?: string // the language this block has been translated into
|
|
1020
1021
|
_shadowOverrides?: pxt.Map<string>;
|
|
1021
1022
|
jsDoc?: string;
|
package/package.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* Checkboxes *
|
|
24
24
|
****************************************************/
|
|
25
25
|
|
|
26
|
-
@checkboxFocusOutline: var(--pxt-
|
|
26
|
+
@checkboxFocusOutline: var(--pxt-focus-border) solid 3px;
|
|
27
27
|
|
|
28
28
|
/****************************************************
|
|
29
29
|
* EditorToggle *
|