pxt-core 7.5.52 → 8.0.1
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 +3 -3
- package/built/pxtlib.d.ts +2 -1
- package/built/pxtlib.js +3 -3
- package/built/target.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.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 +9 -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/package.json +1 -1
- package/react-common/components/share/ShareInfo.tsx +21 -0
- package/react-common/styles/controls/Button.less +5 -0
- package/react-common/styles/controls/Modal.less +7 -1
- package/theme/serial.less +5 -0
package/package.json
CHANGED
|
@@ -89,6 +89,21 @@ export const ShareInfo = (props: ShareInfoProps) => {
|
|
|
89
89
|
}
|
|
90
90
|
}
|
|
91
91
|
|
|
92
|
+
const handleDeviceShareClick = async () => {
|
|
93
|
+
pxt.tickEvent("share.device");
|
|
94
|
+
|
|
95
|
+
const shareOpts = {
|
|
96
|
+
title: document.title,
|
|
97
|
+
url: shareData.url,
|
|
98
|
+
text: lf("Check out my new MakeCode project!"),
|
|
99
|
+
};
|
|
100
|
+
|
|
101
|
+
// TODO: Fix this; typing for navigator not included in the lib typing we use in tsconfig
|
|
102
|
+
if ((navigator as any)?.canShare?.(shareOpts)) {
|
|
103
|
+
return navigator.share(shareOpts);
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
|
|
92
107
|
const embedOptions = [{
|
|
93
108
|
name: "code",
|
|
94
109
|
label: lf("Code"),
|
|
@@ -209,6 +224,12 @@ export const ShareInfo = (props: ShareInfoProps) => {
|
|
|
209
224
|
url={shareData?.url}
|
|
210
225
|
type='twitter'
|
|
211
226
|
heading={lf("Share on Twitter")} />
|
|
227
|
+
{navigator.share && <Button className="circle-button device-share"
|
|
228
|
+
title={lf("Show device share options")}
|
|
229
|
+
ariaLabel={lf("Show device share options")}
|
|
230
|
+
leftIcon={"icon share"}
|
|
231
|
+
onClick={handleDeviceShareClick}
|
|
232
|
+
/>}
|
|
212
233
|
<Button
|
|
213
234
|
className="menu-button project-qrcode"
|
|
214
235
|
buttonRef={handleQRCodeButtonRef}
|
|
@@ -268,6 +268,11 @@
|
|
|
268
268
|
color: @buttonTextColorDarkBackground;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
.common-button.device-share {
|
|
272
|
+
background: #333333;
|
|
273
|
+
color: @buttonTextColorDarkBackground;
|
|
274
|
+
}
|
|
275
|
+
|
|
271
276
|
/****************************************************
|
|
272
277
|
* High Contrast *
|
|
273
278
|
****************************************************/
|
|
@@ -24,6 +24,12 @@
|
|
|
24
24
|
overflow: hidden;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
+
@media @mobileAndBelow {
|
|
28
|
+
.common-modal {
|
|
29
|
+
width: 95%;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
27
33
|
.common-modal-header {
|
|
28
34
|
background-color: @modalHeaderBackgroundColor;
|
|
29
35
|
|
|
@@ -142,4 +148,4 @@
|
|
|
142
148
|
.common-modal {
|
|
143
149
|
border: 1px solid @highContrastTextColor;
|
|
144
150
|
}
|
|
145
|
-
}
|
|
151
|
+
}
|