pxt-core 7.5.2 → 7.5.5
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 +61 -46
- package/built/pxt.js +256 -91
- package/built/pxtblockly.js +652 -657
- package/built/pxtblocks.d.ts +1 -0
- package/built/pxtblocks.js +98 -42
- package/built/pxtcompiler.js +45 -4
- package/built/pxtlib.d.ts +7 -2
- package/built/pxtlib.js +77 -39
- package/built/pxtpy.js +73 -2
- package/built/server.js +4 -0
- package/built/target.js +1 -1
- package/built/web/authcode/css/main.1cf9dc37.css +2 -0
- package/built/web/authcode/js/main.03da4c20.js +2 -0
- 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 +2 -2
- package/built/web/pxtblocks.js +1 -1
- package/built/web/pxtcompiler.js +1 -1
- package/built/web/pxtembed.js +2 -2
- package/built/web/pxtlib.js +1 -1
- package/built/web/pxtpy.js +1 -1
- package/built/web/pxtworker.js +1 -1
- package/built/web/react-common-authcode.css +6200 -0
- package/built/web/react-common-skillmap.css +1 -1
- package/built/web/rtlreact-common-skillmap.css +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/built/web/skillmap/css/{main.e0620cee.chunk.css → main.73b22966.chunk.css} +1 -1
- package/built/web/skillmap/js/{2.f7cdfd75.chunk.js → 2.3e47a285.chunk.js} +2 -2
- package/built/web/skillmap/js/main.2485091f.chunk.js +1 -0
- package/common-docs/faq.md +1 -1
- package/common-docs/translate.md +2 -2
- package/docfiles/apptracking.html +1 -1
- package/docfiles/tracking.html +1 -1
- package/localtypings/projectheader.d.ts +6 -0
- package/package.json +5 -3
- package/pxtarget.json +1 -1
- package/react-common/components/controls/Button.tsx +4 -1
- package/react-common/components/controls/EditorToggle.tsx +153 -0
- package/react-common/components/controls/FocusList.tsx +120 -0
- package/react-common/components/controls/Input.tsx +4 -4
- package/react-common/components/controls/Link.tsx +36 -0
- package/react-common/components/controls/MenuBar.tsx +5 -95
- package/react-common/components/controls/MenuDropdown.tsx +4 -1
- package/react-common/components/controls/Textarea.tsx +103 -0
- package/react-common/components/share/GifInfo.tsx +63 -0
- package/react-common/components/share/GifRecorder.tsx +97 -0
- package/react-common/components/share/Share.tsx +49 -0
- package/react-common/components/share/ShareInfo.tsx +186 -0
- package/react-common/components/share/SocialButton.tsx +53 -0
- package/react-common/styles/controls/Button.less +4 -0
- package/react-common/styles/controls/EditorToggle.less +271 -0
- package/react-common/styles/controls/Modal.less +7 -5
- package/react-common/styles/controls/Textarea.less +81 -0
- package/react-common/styles/react-common-authcode-core.less +10 -0
- package/react-common/styles/react-common-authcode.less +12 -0
- package/react-common/styles/react-common-variables.less +19 -0
- package/react-common/styles/react-common.less +3 -0
- package/react-common/styles/share/share.less +116 -0
- package/theme/image-editor/imageEditor.less +8 -116
- package/webapp/public/authcode.html +1 -0
- package/webapp/public/blockly/blockly_compressed.js +554 -615
- package/webapp/public/index.html +1 -1
- package/webapp/public/run.html +32 -5
- package/webapp/public/skillmap.html +2 -2
- package/built/web/skillmap/js/main.f6866fc6.chunk.js +0 -1
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
1
3
|
.common-modal-container {
|
|
2
4
|
position: fixed;
|
|
3
5
|
display: flex;
|
|
@@ -7,12 +9,12 @@
|
|
|
7
9
|
left: 0;
|
|
8
10
|
right: 0;
|
|
9
11
|
bottom: 0;
|
|
10
|
-
background-color:
|
|
12
|
+
background-color: @modalOverlayColor;
|
|
11
13
|
z-index: @modalDimmerZIndex;
|
|
12
14
|
}
|
|
13
15
|
|
|
14
16
|
.common-modal-container.fullscreen {
|
|
15
|
-
z-index:
|
|
17
|
+
z-index: @modalFullscreenZIndex;
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
.common-modal {
|
|
@@ -44,7 +46,7 @@
|
|
|
44
46
|
}
|
|
45
47
|
|
|
46
48
|
.common-modal-body {
|
|
47
|
-
background-color: @
|
|
49
|
+
background-color: @pageBackground;
|
|
48
50
|
min-height: 4rem;
|
|
49
51
|
padding: 1.25rem 1.5rem;
|
|
50
52
|
}
|
|
@@ -77,7 +79,7 @@
|
|
|
77
79
|
}
|
|
78
80
|
|
|
79
81
|
.fullscreen > .common-modal > .common-modal-header {
|
|
80
|
-
background-color:
|
|
82
|
+
background-color: @primaryColor;
|
|
81
83
|
color: white;
|
|
82
84
|
margin-bottom: 0;
|
|
83
85
|
|
|
@@ -99,7 +101,7 @@
|
|
|
99
101
|
|
|
100
102
|
.fullscreen > .common-modal > .common-modal-body {
|
|
101
103
|
flex-grow: 1;
|
|
102
|
-
background-color:
|
|
104
|
+
background-color: @homeScreenBackground;
|
|
103
105
|
padding: 1rem;
|
|
104
106
|
max-height: unset;
|
|
105
107
|
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/****************************************************
|
|
2
|
+
* Textarea *
|
|
3
|
+
****************************************************/
|
|
4
|
+
|
|
5
|
+
.common-textarea-group {
|
|
6
|
+
position: relative;
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: stretch;
|
|
9
|
+
border-radius: 2px;
|
|
10
|
+
border: 1px solid @textareaBorderColor;
|
|
11
|
+
background: @textareaBackgroundColor;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.common-textarea-group:focus::after,
|
|
15
|
+
.common-textarea-group:focus-within::after {
|
|
16
|
+
content: "";
|
|
17
|
+
position: absolute;
|
|
18
|
+
inset: -1px;
|
|
19
|
+
border: 2px solid @textareaBorderColorFocus;
|
|
20
|
+
border-radius: 2px;
|
|
21
|
+
pointer-events: none;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.common-textarea {
|
|
25
|
+
width: 100%;
|
|
26
|
+
min-width: 0;
|
|
27
|
+
padding: 0.5rem;
|
|
28
|
+
color: @textareaTextColor;
|
|
29
|
+
border: none;
|
|
30
|
+
outline: 0;
|
|
31
|
+
background: none transparent;
|
|
32
|
+
text-overflow: ellipsis;
|
|
33
|
+
resize: none;
|
|
34
|
+
|
|
35
|
+
&.resize-both { resize: both; }
|
|
36
|
+
&.resize-horizontal { resize: horizontal; }
|
|
37
|
+
&.resize-vertical { resize: vertical; }
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
/****************************************************
|
|
42
|
+
* Textarea Label *
|
|
43
|
+
****************************************************/
|
|
44
|
+
|
|
45
|
+
.common-textarea-label {
|
|
46
|
+
display: block;
|
|
47
|
+
font-size: 14px;
|
|
48
|
+
font-weight: 600;
|
|
49
|
+
padding: 0.3rem 0;
|
|
50
|
+
overflow-wrap: break-word;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
/****************************************************
|
|
54
|
+
* Disabled Textarea *
|
|
55
|
+
****************************************************/
|
|
56
|
+
|
|
57
|
+
.common-textarea-wrapper.disabled {
|
|
58
|
+
.common-textarea-group {
|
|
59
|
+
cursor: default;
|
|
60
|
+
border: 1px solid @textareaBackgroundColorDisabled;
|
|
61
|
+
background: @textareaBackgroundColorDisabled;
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/****************************************************
|
|
66
|
+
* High Contrast *
|
|
67
|
+
****************************************************/
|
|
68
|
+
|
|
69
|
+
.high-contrast {
|
|
70
|
+
.common-textarea {
|
|
71
|
+
color: @highContrastTextColor;
|
|
72
|
+
border-color: @highContrastTextColor;
|
|
73
|
+
background-color: @highContrastBackgroundColor;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.common-textarea-group:focus::after,
|
|
77
|
+
.common-textarea-group:focus-within::after {
|
|
78
|
+
border-color: @highContrastHighlightColor;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is the same as react-common-skillmap.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-skillmap.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";
|
|
@@ -45,7 +45,9 @@
|
|
|
45
45
|
@modalHeaderBackgroundColor: @modalBodyBackgroundColor;
|
|
46
46
|
@modalFooterBackgroundColor: #f9fafb;
|
|
47
47
|
@modalSeparatorBorder: 1px solid rgba(34, 36, 38, .15);
|
|
48
|
+
@modalOverlayColor: rgba(0, 0, 0, 0.5);
|
|
48
49
|
@modalDimmerZIndex: 1000;
|
|
50
|
+
@modalFullscreenZIndex: @modalDimmerZIndex;
|
|
49
51
|
|
|
50
52
|
|
|
51
53
|
/****************************************************
|
|
@@ -74,6 +76,23 @@
|
|
|
74
76
|
@inputButtonColor: rgb(0, 120, 212);
|
|
75
77
|
@inputButtonColorHover: rgb(16, 110, 190);
|
|
76
78
|
|
|
79
|
+
/****************************************************
|
|
80
|
+
* Textarea *
|
|
81
|
+
****************************************************/
|
|
82
|
+
|
|
83
|
+
@textareaTextColor: @commonTextColor;
|
|
84
|
+
@textareaBorderColor: @commonBorderColor;
|
|
85
|
+
@textareaBorderColorFocus: rgb(0, 120, 212);
|
|
86
|
+
@textareaBackgroundColor: #ffffff;
|
|
87
|
+
@textareaBackgroundColorDisabled: @commonBackgroundDisabledColor;
|
|
88
|
+
|
|
89
|
+
/****************************************************
|
|
90
|
+
* EditorToggle *
|
|
91
|
+
****************************************************/
|
|
92
|
+
@editorToggleBackgroundColor: rgba(52,73,94,.4);
|
|
93
|
+
@editorToggleBorderColor: rgba(52,73,94,.2);
|
|
94
|
+
@editorToggleBorderWidth: 3px;
|
|
95
|
+
|
|
77
96
|
/****************************************************
|
|
78
97
|
* High Contrast *
|
|
79
98
|
****************************************************/
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
@import "profile/profile.less";
|
|
2
|
+
@import "share/share.less";
|
|
2
3
|
@import "controls/Button.less";
|
|
3
4
|
@import "controls/Checkbox.less";
|
|
5
|
+
@import "controls/EditorToggle.less";
|
|
4
6
|
@import "controls/Icon.less";
|
|
5
7
|
@import "controls/Input.less";
|
|
6
8
|
@import "controls/MenuDropdown.less";
|
|
7
9
|
@import "controls/Modal.less";
|
|
8
10
|
@import "controls/Spinner.less";
|
|
11
|
+
@import "controls/Textarea.less";
|
|
9
12
|
@import "./react-common-variables.less";
|
|
10
13
|
|
|
11
14
|
@import "fontawesome-free/less/solid.less";
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
.sharedialog.fullscreen.common-modal-container > .common-modal > .common-modal-body {
|
|
2
|
+
padding: 0;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.project-share {
|
|
6
|
+
display: flex;
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.project-share-simulator {
|
|
11
|
+
flex: 1;
|
|
12
|
+
height: 100%;
|
|
13
|
+
background-color: @simulatorBackground;
|
|
14
|
+
|
|
15
|
+
#shareLoanedSimulator {
|
|
16
|
+
position: relative;
|
|
17
|
+
top: 50%;
|
|
18
|
+
transform: translateY(-50%);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.simframe {
|
|
22
|
+
padding-bottom: 56.25%!important;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.project-share-info {
|
|
27
|
+
display: flex;
|
|
28
|
+
flex-direction: column;
|
|
29
|
+
justify-content: center;
|
|
30
|
+
flex: 1;
|
|
31
|
+
|
|
32
|
+
> div {
|
|
33
|
+
margin-bottom: 1rem;
|
|
34
|
+
flex-shrink: 0;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.project-share-thumbnail {
|
|
39
|
+
display: flex;
|
|
40
|
+
flex-direction: column;
|
|
41
|
+
|
|
42
|
+
.project-thumbnail-placeholder,
|
|
43
|
+
img {
|
|
44
|
+
margin: 0.3rem 0;
|
|
45
|
+
width: 15rem;
|
|
46
|
+
height: 11.25rem;
|
|
47
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.fullscreen {
|
|
52
|
+
.project-share > div {
|
|
53
|
+
padding: 2rem;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.project-share-info {
|
|
57
|
+
flex: unset;
|
|
58
|
+
width: 28rem;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/////////////////////////////////////////
|
|
63
|
+
// Embed //
|
|
64
|
+
/////////////////////////////////////////
|
|
65
|
+
|
|
66
|
+
.project-share-actions {
|
|
67
|
+
display: flex;
|
|
68
|
+
|
|
69
|
+
.share-button {
|
|
70
|
+
width: 3rem;
|
|
71
|
+
padding: 1rem 0.75rem;
|
|
72
|
+
|
|
73
|
+
i {
|
|
74
|
+
margin: 0;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
/////////////////////////////////////////
|
|
81
|
+
// Gif Recorder //
|
|
82
|
+
/////////////////////////////////////////
|
|
83
|
+
|
|
84
|
+
.gif-recorder {
|
|
85
|
+
position: absolute;
|
|
86
|
+
display: flex;
|
|
87
|
+
flex-direction: column;
|
|
88
|
+
align-items: center;
|
|
89
|
+
|
|
90
|
+
bottom: 0;
|
|
91
|
+
left: calc(~'(100vw - 25rem)/2');
|
|
92
|
+
padding: 1rem;
|
|
93
|
+
transform: translateX(-50%);
|
|
94
|
+
background: @white;
|
|
95
|
+
border: @teal;
|
|
96
|
+
border-radius: 0.2rem;
|
|
97
|
+
font-family: @segoeUIFont;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.gif-recorder-label,
|
|
101
|
+
.thumbnail-label {
|
|
102
|
+
margin-bottom: 0.5rem;
|
|
103
|
+
font-family: @segoeUIFont;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.gif-recorder-actions {
|
|
107
|
+
display: flex;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.thumbnail-image,
|
|
111
|
+
.thumbnail-placeholder {
|
|
112
|
+
display: flex;
|
|
113
|
+
background-color: rgba(0, 0, 0, 0.05);
|
|
114
|
+
width: 24.5rem;
|
|
115
|
+
height: 18.375rem;
|
|
116
|
+
}
|
|
@@ -103,6 +103,14 @@
|
|
|
103
103
|
flex: 1;
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
+
.image-editor-header-center {
|
|
107
|
+
flex: 1.5;
|
|
108
|
+
display: flex;
|
|
109
|
+
justify-content: center;
|
|
110
|
+
align-items: center;
|
|
111
|
+
position: relative;
|
|
112
|
+
}
|
|
113
|
+
|
|
106
114
|
.image-editor-header-right {
|
|
107
115
|
display: flex;
|
|
108
116
|
justify-content: flex-end;
|
|
@@ -146,10 +154,6 @@
|
|
|
146
154
|
flex: 3!important;
|
|
147
155
|
}
|
|
148
156
|
|
|
149
|
-
.image-editor-header-left {
|
|
150
|
-
display: none;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
157
|
.gallery-editor-toggle {
|
|
154
158
|
margin-left: .25rem!important;
|
|
155
159
|
flex-shrink: 1;
|
|
@@ -186,118 +190,6 @@
|
|
|
186
190
|
|
|
187
191
|
}
|
|
188
192
|
|
|
189
|
-
.gallery-editor-toggle {
|
|
190
|
-
display: flex;
|
|
191
|
-
flex-direction: row;
|
|
192
|
-
position: relative;
|
|
193
|
-
|
|
194
|
-
height: 2.25rem;
|
|
195
|
-
line-height: 2.25rem;
|
|
196
|
-
|
|
197
|
-
background-color: #4572cf;
|
|
198
|
-
border: 2px solid #4067b3;
|
|
199
|
-
border-radius: 5px;
|
|
200
|
-
width: 24rem;
|
|
201
|
-
margin-top: 0.25rem;
|
|
202
|
-
|
|
203
|
-
margin-left: auto;
|
|
204
|
-
margin-right: auto;
|
|
205
|
-
cursor: pointer;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.gallery-editor-toggle.right {
|
|
209
|
-
.gallery-editor-toggle-handle {
|
|
210
|
-
/* Subtract small margin for rightmost element */
|
|
211
|
-
transform: translateX(calc(16rem - 0.2rem));
|
|
212
|
-
}
|
|
213
|
-
.gallery-editor-toggle-right {
|
|
214
|
-
color: #4B7BEC;
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
|
|
218
|
-
.gallery-editor-toggle.center {
|
|
219
|
-
.gallery-editor-toggle-handle {
|
|
220
|
-
transform: translateX(8rem);
|
|
221
|
-
}
|
|
222
|
-
.gallery-editor-toggle-center {
|
|
223
|
-
color: #4B7BEC;
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.gallery-editor-toggle.left {
|
|
228
|
-
.gallery-editor-toggle-left {
|
|
229
|
-
color: #4B7BEC;
|
|
230
|
-
}
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.gallery-editor-toggle.no-gallery {
|
|
234
|
-
width: 16rem;
|
|
235
|
-
|
|
236
|
-
.gallery-editor-toggle-handle {
|
|
237
|
-
width: 50%;
|
|
238
|
-
}
|
|
239
|
-
.gallery-editor-toggle-label {
|
|
240
|
-
flex-basis: 50%;
|
|
241
|
-
}
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
.gallery-editor-toggle.no-gallery.right {
|
|
245
|
-
.gallery-editor-toggle-handle {
|
|
246
|
-
transform: translateX(8rem);
|
|
247
|
-
}
|
|
248
|
-
}
|
|
249
|
-
|
|
250
|
-
// Microsoft Edge has a bug related to relative z-indices that prevents the handle
|
|
251
|
-
// from appearing below the text, so instead we make the handle transparent and have the text
|
|
252
|
-
// show through
|
|
253
|
-
.gallery-editor-toggle.edge {
|
|
254
|
-
.gallery-editor-toggle-label, .gallery-editor-toggle-label-right, .gallery-editor-toggle-label-left, .gallery-editor-toggle-label-center {
|
|
255
|
-
color: #ffffff;
|
|
256
|
-
z-index: auto;
|
|
257
|
-
}
|
|
258
|
-
.gallery-editor-toggle-handle {
|
|
259
|
-
opacity: 0.3;
|
|
260
|
-
}
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
.gallery-editor-toggle-label {
|
|
264
|
-
display: flex;
|
|
265
|
-
align-items: center;
|
|
266
|
-
justify-content: center;
|
|
267
|
-
flex-basis: 33%;
|
|
268
|
-
text-align: center;
|
|
269
|
-
color: #ffffff;
|
|
270
|
-
z-index: 1;
|
|
271
|
-
transition: color 0.3s;
|
|
272
|
-
user-select: none;
|
|
273
|
-
|
|
274
|
-
& > i.icon {
|
|
275
|
-
display: flex;
|
|
276
|
-
align-items: center;
|
|
277
|
-
justify-content: center;
|
|
278
|
-
flex-shrink: 0;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
span {
|
|
282
|
-
overflow: hidden;
|
|
283
|
-
text-overflow: ellipsis;
|
|
284
|
-
flex-shrink: 1;
|
|
285
|
-
white-space: nowrap;
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
.gallery-editor-toggle-handle {
|
|
290
|
-
width: 33%;
|
|
291
|
-
height: 2rem;
|
|
292
|
-
background-color: white;
|
|
293
|
-
border-radius: 5px;
|
|
294
|
-
position: absolute;
|
|
295
|
-
left: 0;
|
|
296
|
-
|
|
297
|
-
transform: translateX(0);
|
|
298
|
-
transition: transform 0.3s;
|
|
299
|
-
}
|
|
300
|
-
|
|
301
193
|
.gallery-editor-show-tiles {
|
|
302
194
|
position: absolute;
|
|
303
195
|
height: 2.3rem;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<!doctype html><html lang="@locale@"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>MakeCode Device Auth</title><link rel="stylesheet" data-rtl="/blb/rtlsemantic.css" href="/blb/semantic.css"><link rel="stylesheet" href="/blb/icons.css"><link rel="stylesheet" href="/blb/react-common-authcode.css"><script defer="defer" src="/blb/authcode/js/main.03da4c20.js"></script><link href="/blb/authcode/css/main.1cf9dc37.css" rel="stylesheet"></head><body><noscript>You need to enable JavaScript to run this app.</noscript><script type="text/javascript" src="/blb/target.js"></script><script type="text/javascript" src="/blb/pxtlib.js"></script><div id="root"></div><script>var pxtConfig=null</script></body></html>
|