pxt-core 8.0.1 → 8.0.4

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.
@@ -405,6 +405,7 @@
405
405
  addRow("https://immersivereaderprod.cognitiveservices.azure.com");
406
406
  addRow("https://github.com");
407
407
  addRow("https://raw.githubusercontent.com/")
408
+ addRow("https://microsoft.github.io/");
408
409
 
409
410
  </script>
410
411
 
@@ -43,7 +43,7 @@
43
43
 
44
44
  <div class="ui main container mainbody script-content">
45
45
  <iframe id="embed-frame" class="script-embed" src="/@versionsuff@#sandbox:@id@"
46
- sandbox="allow-popups allow-forms allow-scripts allow-same-origin" frameborder="0"></iframe>
46
+ sandbox="allow-popups allow-forms allow-scripts allow-same-origin allow-downloads" frameborder="0"></iframe>
47
47
  <div class="script-bookend">
48
48
  <div id="abuse-message" class="ui tiny blue message">
49
49
  <div class="ui grid padded">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pxt-core",
3
- "version": "8.0.1",
3
+ "version": "8.0.4",
4
4
  "description": "Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors",
5
5
  "keywords": [
6
6
  "TypeScript",
@@ -212,7 +212,7 @@ export const ShareInfo = (props: ShareInfoProps) => {
212
212
  onBlur={handleCopyBlur} />
213
213
  </div>
214
214
  <div className="project-share-actions">
215
- <Button className="circle-button gray"
215
+ <Button className="circle-button gray embed mobile-portrait-hidden"
216
216
  title={lf("Show embed code")}
217
217
  leftIcon="fas fa-code"
218
218
  onClick={handleEmbedClick} />
@@ -4,16 +4,33 @@
4
4
  @largeMonitorBreakpoint: 1200px;
5
5
  @widescreenMonitorBreakpoint: 1920px;
6
6
 
7
+ @largestMobilePortraitScreen: (@mobileBreakpoint + 100px);
7
8
  @largestMobileScreen: (@tabletBreakpoint - 1px);
8
9
  @largestTabletScreen: (@computerBreakpoint - 1px);
9
10
  @largestSmallMonitor: (@largeMonitorBreakpoint - 1px);
10
11
  @largestLargeMonitor: (@widescreenMonitorBreakpoint - 1px);
11
12
 
13
+ @portraitMobileAndBelow: ~"only screen and (max-width: @{largestMobilePortraitScreen})";
12
14
  @mobileAndBelow: ~"only screen and (max-width: @{largestMobileScreen})";
13
15
  @tabletAndBelow: ~"only screen and (max-width: @{largestTabletScreen})";
14
16
  @computerAndBelow: ~"only screen and (max-width: @{largestSmallMonitor})";
15
17
  @largeMonitorAndBelow: ~"only screen and (max-width: @{largestLargeMonitor})";
16
18
 
19
+ /****************************************************
20
+ * Mobile Portrait *
21
+ ****************************************************/
22
+
23
+ @media only screen and (min-width: @portraitMobileAndBelow) {
24
+ .mobile-portrait-only {
25
+ display: none !important;
26
+ }
27
+ }
28
+
29
+ @media @mobileAndBelow {
30
+ .mobile-portrait-hidden {
31
+ display: none !important;
32
+ }
33
+ }
17
34
 
18
35
  /****************************************************
19
36
  * Mobile *
@@ -115,10 +115,6 @@ body.blocklyMinimalBody {
115
115
  visibility: visible;
116
116
  }
117
117
 
118
- .blocklyTreeIcon.blocklyTreeIconserial {
119
- font-family: 'brand-icons';
120
- }
121
-
122
118
  i.icon.blocklyTreeButton {
123
119
  float: right;
124
120
  line-height: 40px;
package/theme/serial.less CHANGED
@@ -17,7 +17,8 @@
17
17
  height: 90%;
18
18
  padding: 1rem;
19
19
 
20
- #serialCsv {
20
+ #serialCsv,
21
+ #serialCsvViewLatest {
21
22
  display: none;
22
23
  }
23
24
 
@@ -28,6 +29,12 @@
28
29
  &.csv-view {
29
30
  #serialCsv {
30
31
  display: block;
32
+
33
+ table:last-child thead {
34
+ position: sticky;
35
+ top: -0.75rem;
36
+ box-shadow: inset 0 2px 0 #ddd, inset 0 -2px 0 #ddd;
37
+ }
31
38
  }
32
39
 
33
40
  #serialCharts,
@@ -36,6 +43,24 @@
36
43
  .csv-hide {
37
44
  display: none;
38
45
  }
46
+
47
+ #serialCsvViewLatest {
48
+ display: block;
49
+ position: absolute;
50
+ margin-left: auto;
51
+ margin-right: auto;
52
+ text-align: center;
53
+ left: 0;
54
+ right: 0;
55
+ max-width: 15rem;
56
+ margin-top: -3em;
57
+ }
58
+
59
+ &.hide-view-latest {
60
+ #serialCsvViewLatest {
61
+ display: none;
62
+ }
63
+ }
39
64
  }
40
65
 
41
66
  &.no-toggle #serial-editor-toggle {
@@ -130,7 +155,7 @@
130
155
  }
131
156
  }
132
157
  #serialConsole.nochart {
133
- height: calc(100% - 2.5rem);
158
+ height: calc(100% - 12.5rem);
134
159
  }
135
160
 
136
161
  #serialConsole span {
@@ -189,6 +189,10 @@ span.blocklyTreeIcon {
189
189
  vertical-align: middle;
190
190
  }
191
191
 
192
+ .blocklyTreeIcon.brandIcon {
193
+ font-family: 'brand-icons';
194
+ }
195
+
192
196
  div.blocklyTreeIcon span {
193
197
  vertical-align: middle;
194
198
  }