gwchq-textjam 0.1.4 → 0.1.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/dist/index.js +422 -61
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -323909,9 +323909,37 @@ var elementFromProps = map => {
|
|
|
323909
323909
|
};
|
|
323910
323910
|
/* harmony default export */ const PyodideRunner_VisualOutputPane = (VisualOutputPane);
|
|
323911
323911
|
;// ./src/assets/icons/split_view.svg
|
|
323912
|
-
|
|
323912
|
+
var _path;
|
|
323913
|
+
function split_view_extends() { return split_view_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, split_view_extends.apply(null, arguments); }
|
|
323914
|
+
|
|
323915
|
+
function SvgSplitView(props) {
|
|
323916
|
+
return /*#__PURE__*/external_react_.createElement("svg", split_view_extends({
|
|
323917
|
+
width: 20,
|
|
323918
|
+
height: 20,
|
|
323919
|
+
fill: "none",
|
|
323920
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
323921
|
+
}, props), _path || (_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
323922
|
+
d: "M2.5 17.5V9.167h15V17.5h-15zm1.667-1.667h11.666v-5H4.167v5zM2.5 9.167V2.5h15v6.667h-15zm1.667 0h11.666v-5H4.167v5z"
|
|
323923
|
+
})));
|
|
323924
|
+
}
|
|
323925
|
+
/* harmony default export */ const split_view = (SvgSplitView);
|
|
323913
323926
|
;// ./src/assets/icons/tabbed_view.svg
|
|
323914
|
-
|
|
323927
|
+
var tabbed_view_path, _path2;
|
|
323928
|
+
function tabbed_view_extends() { return tabbed_view_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, tabbed_view_extends.apply(null, arguments); }
|
|
323929
|
+
|
|
323930
|
+
function SvgTabbedView(props) {
|
|
323931
|
+
return /*#__PURE__*/external_react_.createElement("svg", tabbed_view_extends({
|
|
323932
|
+
width: 20,
|
|
323933
|
+
height: 20,
|
|
323934
|
+
fill: "none",
|
|
323935
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
323936
|
+
}, props), tabbed_view_path || (tabbed_view_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
323937
|
+
d: "M17.5 17.5v-15h-15v15h15zm-1.667-1.667H4.167V9.167h11.666v6.666zm0-8.333H4.167V4.167h11.666V7.5zm-7.5-.833H5V5h3.333v1.667z"
|
|
323938
|
+
})), _path2 || (_path2 = /*#__PURE__*/external_react_.createElement("path", {
|
|
323939
|
+
d: "M9.167 6.667H12.5V5H9.167v1.667z"
|
|
323940
|
+
})));
|
|
323941
|
+
}
|
|
323942
|
+
/* harmony default export */ const tabbed_view = (SvgTabbedView);
|
|
323915
323943
|
// EXTERNAL MODULE: ./node_modules/react-confirm-alert/lib/index.js
|
|
323916
323944
|
var react_confirm_alert_lib = __webpack_require__(23350);
|
|
323917
323945
|
;// ./node_modules/@remix-run/router/dist/router.js
|
|
@@ -331897,7 +331925,7 @@ var OutputViewToggle = () => {
|
|
|
331897
331925
|
disabled: codeRunTriggered || drawTriggered,
|
|
331898
331926
|
label: isSplitView ? t("outputViewToggle.buttonTabLabel") : t("outputViewToggle.buttonSplitLabel"),
|
|
331899
331927
|
title: isSplitView ? t("outputViewToggle.buttonTabTitle") : t("outputViewToggle.buttonSplitTitle"),
|
|
331900
|
-
ButtonIcon: isSplitView ?
|
|
331928
|
+
ButtonIcon: isSplitView ? tabbed_view : split_view,
|
|
331901
331929
|
buttonIconPosition: "right",
|
|
331902
331930
|
onClickHandler: isSplitView ? switchToTabbedView : switchToSplitView
|
|
331903
331931
|
})
|
|
@@ -331988,9 +332016,35 @@ var StopButton = _ref => {
|
|
|
331988
332016
|
};
|
|
331989
332017
|
/* harmony default export */ const RunButton_StopButton = (StopButton);
|
|
331990
332018
|
;// ./src/assets/icons/run.svg
|
|
331991
|
-
|
|
332019
|
+
var run_path;
|
|
332020
|
+
function run_extends() { return run_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, run_extends.apply(null, arguments); }
|
|
332021
|
+
|
|
332022
|
+
function SvgRun(props) {
|
|
332023
|
+
return /*#__PURE__*/external_react_.createElement("svg", run_extends({
|
|
332024
|
+
width: 11,
|
|
332025
|
+
height: 14,
|
|
332026
|
+
fill: "none",
|
|
332027
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
332028
|
+
}, props), run_path || (run_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
332029
|
+
d: "M0 14V0l11 7-11 7z"
|
|
332030
|
+
})));
|
|
332031
|
+
}
|
|
332032
|
+
/* harmony default export */ const run = (SvgRun);
|
|
331992
332033
|
;// ./src/assets/icons/stop.svg
|
|
331993
|
-
|
|
332034
|
+
var stop_path;
|
|
332035
|
+
function stop_extends() { return stop_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, stop_extends.apply(null, arguments); }
|
|
332036
|
+
|
|
332037
|
+
function SvgStop(props) {
|
|
332038
|
+
return /*#__PURE__*/external_react_.createElement("svg", stop_extends({
|
|
332039
|
+
width: 12,
|
|
332040
|
+
height: 12,
|
|
332041
|
+
fill: "none",
|
|
332042
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
332043
|
+
}, props), stop_path || (stop_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
332044
|
+
d: "M0 12V0h12v12H0z"
|
|
332045
|
+
})));
|
|
332046
|
+
}
|
|
332047
|
+
/* harmony default export */ const stop = (SvgStop);
|
|
331994
332048
|
;// ./src/components/RunButton/RunnerControls.jsx
|
|
331995
332049
|
|
|
331996
332050
|
|
|
@@ -332013,14 +332067,14 @@ var RunnerControls = _ref => {
|
|
|
332013
332067
|
return codeRunTriggered || drawTriggered ? /*#__PURE__*/(0,jsx_runtime.jsx)(RunButton_StopButton, {
|
|
332014
332068
|
embedded: embedded,
|
|
332015
332069
|
buttonText: t("runButton.stop"),
|
|
332016
|
-
ButtonIcon:
|
|
332070
|
+
ButtonIcon: stop,
|
|
332017
332071
|
buttonIconPosition: "right",
|
|
332018
332072
|
buttonOuter: skinny,
|
|
332019
332073
|
className: "btn--stop btn--primary".concat(skinny ? " btn--small" : "")
|
|
332020
332074
|
}) : /*#__PURE__*/(0,jsx_runtime.jsx)(RunButton_RunButton, {
|
|
332021
332075
|
embedded: embedded,
|
|
332022
332076
|
buttonText: t("runButton.run"),
|
|
332023
|
-
ButtonIcon:
|
|
332077
|
+
ButtonIcon: run,
|
|
332024
332078
|
buttonIconPosition: "right",
|
|
332025
332079
|
buttonOuter: skinny,
|
|
332026
332080
|
className: skinny ? "btn--small" : ""
|
|
@@ -332539,7 +332593,20 @@ var matchingRegexes = (regexArray, testString) => {
|
|
|
332539
332593
|
};
|
|
332540
332594
|
|
|
332541
332595
|
;// ./src/assets/icons/open_in_new_tab.svg
|
|
332542
|
-
|
|
332596
|
+
var open_in_new_tab_path;
|
|
332597
|
+
function open_in_new_tab_extends() { return open_in_new_tab_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, open_in_new_tab_extends.apply(null, arguments); }
|
|
332598
|
+
|
|
332599
|
+
function SvgOpenInNewTab(props) {
|
|
332600
|
+
return /*#__PURE__*/external_react_.createElement("svg", open_in_new_tab_extends({
|
|
332601
|
+
width: 16,
|
|
332602
|
+
height: 16,
|
|
332603
|
+
fill: "none",
|
|
332604
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
332605
|
+
}, props), open_in_new_tab_path || (open_in_new_tab_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
332606
|
+
d: "M2.167.5A1.68 1.68 0 00.5 2.167v11.666c0 .911.756 1.667 1.667 1.667h11.666a1.68 1.68 0 001.667-1.667V8h-1.667v5.833H2.167V2.167H8V.5H2.167zm7.5 0v1.667h2.988L4.91 9.91l1.178 1.178 7.744-7.744v2.988H15.5V.5H9.667z"
|
|
332607
|
+
})));
|
|
332608
|
+
}
|
|
332609
|
+
/* harmony default export */ const open_in_new_tab = (SvgOpenInNewTab);
|
|
332543
332610
|
;// ./src/components/Editor/Runners/HtmlRunner/HtmlRunner.jsx
|
|
332544
332611
|
|
|
332545
332612
|
/* eslint-disable react-hooks/exhaustive-deps */
|
|
@@ -332801,7 +332868,7 @@ function HtmlRunner() {
|
|
|
332801
332868
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("span", {
|
|
332802
332869
|
className: "htmlrunner-link__text",
|
|
332803
332870
|
children: t("output.newTab")
|
|
332804
|
-
}), /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
332871
|
+
}), /*#__PURE__*/(0,jsx_runtime.jsx)(open_in_new_tab, {})]
|
|
332805
332872
|
})]
|
|
332806
332873
|
}), !isEmbedded && isMobile ? /*#__PURE__*/(0,jsx_runtime.jsx)(RunButton_RunnerControls, {
|
|
332807
332874
|
skinny: true
|
|
@@ -334312,9 +334379,35 @@ eventManager.on(2
|
|
|
334312
334379
|
//# sourceMappingURL=react-toastify.esm.js.map
|
|
334313
334380
|
|
|
334314
334381
|
;// ./src/assets/icons/info.svg
|
|
334315
|
-
|
|
334382
|
+
var info_path;
|
|
334383
|
+
function info_extends() { return info_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, info_extends.apply(null, arguments); }
|
|
334384
|
+
|
|
334385
|
+
function SvgInfo(props) {
|
|
334386
|
+
return /*#__PURE__*/external_react_.createElement("svg", info_extends({
|
|
334387
|
+
width: 24,
|
|
334388
|
+
height: 24,
|
|
334389
|
+
fill: "none",
|
|
334390
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
334391
|
+
}, props), info_path || (info_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
334392
|
+
d: "M11 17h2v-6h-2v6zm1-8a.968.968 0 00.713-.288A.967.967 0 0013 8a.97.97 0 00-.287-.713A.97.97 0 0012 7a.967.967 0 00-.712.287A.968.968 0 0011 8c0 .283.096.52.288.712A.965.965 0 0012 9zm0 13a9.733 9.733 0 01-3.9-.788 10.092 10.092 0 01-3.175-2.137c-.9-.9-1.612-1.958-2.137-3.175A9.733 9.733 0 012 12c0-1.383.263-2.683.788-3.9a10.092 10.092 0 012.137-3.175c.9-.9 1.958-1.613 3.175-2.138A9.743 9.743 0 0112 2c1.383 0 2.683.262 3.9.787a10.105 10.105 0 013.175 2.138c.9.9 1.612 1.958 2.137 3.175A9.733 9.733 0 0122 12a9.733 9.733 0 01-.788 3.9 10.092 10.092 0 01-2.137 3.175c-.9.9-1.958 1.612-3.175 2.137A9.733 9.733 0 0112 22zm0-2c2.217 0 4.104-.779 5.663-2.337C19.221 16.104 20 14.217 20 12s-.779-4.104-2.337-5.663C16.104 4.779 14.217 4 12 4s-4.104.779-5.662 2.337C4.779 7.896 4 9.783 4 12s.78 4.104 2.338 5.663C7.896 19.221 9.783 20 12 20z"
|
|
334393
|
+
})));
|
|
334394
|
+
}
|
|
334395
|
+
/* harmony default export */ const info = (SvgInfo);
|
|
334316
334396
|
;// ./src/assets/icons/tick.svg
|
|
334317
|
-
|
|
334397
|
+
var tick_path;
|
|
334398
|
+
function tick_extends() { return tick_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, tick_extends.apply(null, arguments); }
|
|
334399
|
+
|
|
334400
|
+
function SvgTick(props) {
|
|
334401
|
+
return /*#__PURE__*/external_react_.createElement("svg", tick_extends({
|
|
334402
|
+
width: 18,
|
|
334403
|
+
height: 13,
|
|
334404
|
+
fill: "none",
|
|
334405
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
334406
|
+
}, props), tick_path || (tick_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
334407
|
+
d: "M6.55 13L.85 7.3l1.425-1.425L6.55 10.15 15.725.975 17.15 2.4 6.55 13z"
|
|
334408
|
+
})));
|
|
334409
|
+
}
|
|
334410
|
+
/* harmony default export */ const tick = (SvgTick);
|
|
334318
334411
|
;// ./node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js
|
|
334319
334412
|
function _assertThisInitialized(e) {
|
|
334320
334413
|
if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
@@ -337007,7 +337100,7 @@ var topCenterSettings = {
|
|
|
337007
337100
|
var showSavePrompt = () => {
|
|
337008
337101
|
react_toastify_esm_toast(src_i18n.t("notifications.savePrompt"), _objectSpread2(_objectSpread2({}, topCenterSettings), {}, {
|
|
337009
337102
|
className: "".concat(topCenterSettings.className, " toast--info"),
|
|
337010
|
-
icon:
|
|
337103
|
+
icon: info
|
|
337011
337104
|
}));
|
|
337012
337105
|
};
|
|
337013
337106
|
var showLoginPrompt = () => {
|
|
@@ -337018,7 +337111,7 @@ var showLoginPrompt = () => {
|
|
|
337018
337111
|
};
|
|
337019
337112
|
var showSavedMessage = () => {
|
|
337020
337113
|
react_toastify_esm_toast(src_i18n.t("notifications.projectSaved"), _objectSpread2(_objectSpread2({}, bottomCenterSettings), {}, {
|
|
337021
|
-
icon:
|
|
337114
|
+
icon: tick
|
|
337022
337115
|
}));
|
|
337023
337116
|
};
|
|
337024
337117
|
var showRenamedMessage = () => {
|
|
@@ -337027,9 +337120,35 @@ var showRenamedMessage = () => {
|
|
|
337027
337120
|
}));
|
|
337028
337121
|
};
|
|
337029
337122
|
;// ./src/assets/icons/cloud_tick.svg
|
|
337030
|
-
|
|
337123
|
+
var cloud_tick_path;
|
|
337124
|
+
function cloud_tick_extends() { return cloud_tick_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, cloud_tick_extends.apply(null, arguments); }
|
|
337125
|
+
|
|
337126
|
+
function SvgCloudTick(props) {
|
|
337127
|
+
return /*#__PURE__*/external_react_.createElement("svg", cloud_tick_extends({
|
|
337128
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
337129
|
+
height: 24,
|
|
337130
|
+
viewBox: "0 -960 960 960",
|
|
337131
|
+
width: 24
|
|
337132
|
+
}, props), cloud_tick_path || (cloud_tick_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
337133
|
+
d: "M414-280l226-226-58-58-169 169-84-84-57 57 142 142zM260-160q-91 0-155.5-63T40-377q0-78 47-139t123-78q25-92 100-149t170-57q117 0 198.5 81.5T760-520q69 8 114.5 59.5T920-340q0 75-52.5 127.5T740-160H260zm0-80h480q42 0 71-29t29-71q0-42-29-71t-71-29h-60v-80q0-83-58.5-141.5T480-720q-83 0-141.5 58.5T280-520h-20q-58 0-99 41t-41 99q0 58 41 99t99 41zm220-240z"
|
|
337134
|
+
})));
|
|
337135
|
+
}
|
|
337136
|
+
/* harmony default export */ const cloud_tick = (SvgCloudTick);
|
|
337031
337137
|
;// ./src/assets/icons/cloud_upload.svg
|
|
337032
|
-
|
|
337138
|
+
var cloud_upload_path;
|
|
337139
|
+
function cloud_upload_extends() { return cloud_upload_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, cloud_upload_extends.apply(null, arguments); }
|
|
337140
|
+
|
|
337141
|
+
function SvgCloudUpload(props) {
|
|
337142
|
+
return /*#__PURE__*/external_react_.createElement("svg", cloud_upload_extends({
|
|
337143
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
337144
|
+
height: 24,
|
|
337145
|
+
viewBox: "0 -960 960 960",
|
|
337146
|
+
width: 24
|
|
337147
|
+
}, props), cloud_upload_path || (cloud_upload_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
337148
|
+
d: "M260-160q-91 0-155.5-63T40-377q0-78 47-139t123-78q25-92 100-149t170-57q117 0 198.5 81.5T760-520q69 8 114.5 59.5T920-340q0 75-52.5 127.5T740-160H520q-33 0-56.5-23.5T440-240v-206l-64 62-56-56 160-160 160 160-56 56-64-62v206h220q42 0 71-29t29-71q0-42-29-71t-71-29h-60v-80q0-83-58.5-141.5T480-720q-83 0-141.5 58.5T280-520h-20q-58 0-99 41t-41 99q0 58 41 99t99 41h100v80H260zm220-280z"
|
|
337149
|
+
})));
|
|
337150
|
+
}
|
|
337151
|
+
/* harmony default export */ const cloud_upload = (SvgCloudUpload);
|
|
337033
337152
|
;// ./src/assets/stylesheets/SaveStatus.scss
|
|
337034
337153
|
// extracted by mini-css-extract-plugin
|
|
337035
337154
|
|
|
@@ -338221,7 +338340,7 @@ var SaveStatus = _ref => {
|
|
|
338221
338340
|
children: isPending ? /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
|
|
338222
338341
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
338223
338342
|
className: "save-status__icon",
|
|
338224
|
-
children: /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
338343
|
+
children: /*#__PURE__*/(0,jsx_runtime.jsx)(cloud_upload, {})
|
|
338225
338344
|
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
338226
338345
|
className: "save-status__text",
|
|
338227
338346
|
children: [t("saveStatus.saving"), "\u2026"]
|
|
@@ -338229,7 +338348,7 @@ var SaveStatus = _ref => {
|
|
|
338229
338348
|
}) : /*#__PURE__*/(0,jsx_runtime.jsxs)(jsx_runtime.Fragment, {
|
|
338230
338349
|
children: [/*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
338231
338350
|
className: "save-status__icon",
|
|
338232
|
-
children: /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
338351
|
+
children: /*#__PURE__*/(0,jsx_runtime.jsx)(cloud_tick, {})
|
|
338233
338352
|
}), /*#__PURE__*/(0,jsx_runtime.jsxs)("div", {
|
|
338234
338353
|
className: "save-status__text",
|
|
338235
338354
|
children: [t("saveStatus.saved"), " ", formatRelativeTime(lastSavedTime, time, locale, fallbackLng)]
|
|
@@ -338239,9 +338358,35 @@ var SaveStatus = _ref => {
|
|
|
338239
338358
|
};
|
|
338240
338359
|
/* harmony default export */ const SaveStatus_SaveStatus = (SaveStatus);
|
|
338241
338360
|
;// ./src/assets/icons/download.svg
|
|
338242
|
-
|
|
338361
|
+
var download_path;
|
|
338362
|
+
function download_extends() { return download_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, download_extends.apply(null, arguments); }
|
|
338363
|
+
|
|
338364
|
+
function SvgDownload(props) {
|
|
338365
|
+
return /*#__PURE__*/external_react_.createElement("svg", download_extends({
|
|
338366
|
+
width: 24,
|
|
338367
|
+
height: 24,
|
|
338368
|
+
fill: "none",
|
|
338369
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
338370
|
+
}, props), download_path || (download_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
338371
|
+
d: "M12 16l-5-5 1.4-1.45 2.6 2.6V4h2v8.15l2.6-2.6L17 11l-5 5zm-8 4v-5h2v3h12v-3h2v5H4z"
|
|
338372
|
+
})));
|
|
338373
|
+
}
|
|
338374
|
+
/* harmony default export */ const download = (SvgDownload);
|
|
338243
338375
|
;// ./src/assets/icons/pencil.svg
|
|
338244
|
-
|
|
338376
|
+
var pencil_path;
|
|
338377
|
+
function pencil_extends() { return pencil_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, pencil_extends.apply(null, arguments); }
|
|
338378
|
+
|
|
338379
|
+
function SvgPencil(props) {
|
|
338380
|
+
return /*#__PURE__*/external_react_.createElement("svg", pencil_extends({
|
|
338381
|
+
width: 24,
|
|
338382
|
+
height: 24,
|
|
338383
|
+
fill: "none",
|
|
338384
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
338385
|
+
}, props), pencil_path || (pencil_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
338386
|
+
d: "M5 19h1.4l8.625-8.625-1.4-1.4L5 17.6V19zM19.3 8.925l-4.25-4.2 1.4-1.4a1.92 1.92 0 011.413-.575 1.92 1.92 0 011.412.575l1.4 1.4c.383.383.583.846.6 1.388a1.806 1.806 0 01-.55 1.387L19.3 8.925zM17.85 10.4L7.25 21H3v-4.25l10.6-10.6 4.25 4.25zm-3.525-.725l-.7-.7 1.4 1.4-.7-.7z"
|
|
338387
|
+
})));
|
|
338388
|
+
}
|
|
338389
|
+
/* harmony default export */ const pencil = (SvgPencil);
|
|
338245
338390
|
;// ./node_modules/@raspberrypifoundation/design-system-react/dist/design-system-react.js
|
|
338246
338391
|
|
|
338247
338392
|
|
|
@@ -339641,7 +339786,7 @@ var ProjectName = _ref => {
|
|
|
339641
339786
|
className: "project-name__button",
|
|
339642
339787
|
"aria-label": t(isEditing ? "header.renameSave" : "header.renameProject"),
|
|
339643
339788
|
title: t(isEditing ? "header.renameSave" : "header.renameProject"),
|
|
339644
|
-
icon: isEditing ? /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
339789
|
+
icon: isEditing ? /*#__PURE__*/(0,jsx_runtime.jsx)(tick, {}) : /*#__PURE__*/(0,jsx_runtime.jsx)(pencil, {}),
|
|
339645
339790
|
onClick: isEditing ? updateName : onEditNameButtonClick,
|
|
339646
339791
|
type: isEditing ? "primary" : "tertiary"
|
|
339647
339792
|
})
|
|
@@ -339752,7 +339897,20 @@ var signUpEvent = webComponentCustomEvent("editor-signUp");
|
|
|
339752
339897
|
var quizReadyEvent = webComponentCustomEvent("editor-quizReady");
|
|
339753
339898
|
var themeUpdatedEvent = detail => webComponentCustomEvent("editor-themeUpdated", detail);
|
|
339754
339899
|
;// ./src/assets/icons/save.svg
|
|
339755
|
-
|
|
339900
|
+
var save_path;
|
|
339901
|
+
function save_extends() { return save_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, save_extends.apply(null, arguments); }
|
|
339902
|
+
|
|
339903
|
+
function SvgSave(props) {
|
|
339904
|
+
return /*#__PURE__*/external_react_.createElement("svg", save_extends({
|
|
339905
|
+
width: 24,
|
|
339906
|
+
height: 24,
|
|
339907
|
+
fill: "none",
|
|
339908
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
339909
|
+
}, props), save_path || (save_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
339910
|
+
d: "M3 21V3h14l4 4v14H3zm2-2h14V7.85L16.15 5H5v14zm7-1c.833 0 1.542-.292 2.125-.875A2.893 2.893 0 0015 15c0-.833-.292-1.542-.875-2.125A2.893 2.893 0 0012 12c-.833 0-1.542.292-2.125.875A2.893 2.893 0 009 15c0 .833.292 1.542.875 2.125A2.893 2.893 0 0012 18zm-6-8h9V6H6v4zm-1 9V5v14z"
|
|
339911
|
+
})));
|
|
339912
|
+
}
|
|
339913
|
+
/* harmony default export */ const save = (SvgSave);
|
|
339756
339914
|
;// ./src/components/SaveButton/SaveButton.jsx
|
|
339757
339915
|
|
|
339758
339916
|
|
|
@@ -339793,7 +339951,7 @@ var SaveButton = _ref => {
|
|
|
339793
339951
|
onClick: onClickSave,
|
|
339794
339952
|
text: t("header.save"),
|
|
339795
339953
|
textAlways: true,
|
|
339796
|
-
icon: /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
339954
|
+
icon: /*#__PURE__*/(0,jsx_runtime.jsx)(save, {}),
|
|
339797
339955
|
type: buttonType,
|
|
339798
339956
|
fill: fill
|
|
339799
339957
|
});
|
|
@@ -339836,7 +339994,7 @@ var ProjectBar = _ref => {
|
|
|
339836
339994
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(DownloadButton_DownloadButton, {
|
|
339837
339995
|
buttonText: t("header.download"),
|
|
339838
339996
|
className: "btn btn--tertiary project-bar__btn",
|
|
339839
|
-
Icon:
|
|
339997
|
+
Icon: download,
|
|
339840
339998
|
type: "tertiary"
|
|
339841
339999
|
})
|
|
339842
340000
|
}), loading === "success" && !readOnly && /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
@@ -339853,7 +340011,20 @@ var ProjectBar = _ref => {
|
|
|
339853
340011
|
};
|
|
339854
340012
|
/* harmony default export */ const ProjectBar_ProjectBar = (ProjectBar);
|
|
339855
340013
|
;// ./src/assets/icons/ellipsis_vertical.svg
|
|
339856
|
-
|
|
340014
|
+
var ellipsis_vertical_path;
|
|
340015
|
+
function ellipsis_vertical_extends() { return ellipsis_vertical_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, ellipsis_vertical_extends.apply(null, arguments); }
|
|
340016
|
+
|
|
340017
|
+
function SvgEllipsisVertical(props) {
|
|
340018
|
+
return /*#__PURE__*/external_react_.createElement("svg", ellipsis_vertical_extends({
|
|
340019
|
+
width: 4,
|
|
340020
|
+
height: 16,
|
|
340021
|
+
fill: "none",
|
|
340022
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
340023
|
+
}, props), ellipsis_vertical_path || (ellipsis_vertical_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
340024
|
+
d: "M2 16c-.55 0-1.02-.196-1.412-.587A1.927 1.927 0 010 14c0-.55.196-1.021.588-1.413A1.925 1.925 0 012 12c.55 0 1.021.196 1.413.587.391.392.587.863.587 1.413s-.196 1.021-.587 1.413A1.928 1.928 0 012 16zm0-6c-.55 0-1.02-.196-1.412-.588A1.923 1.923 0 010 8c0-.55.196-1.021.588-1.413A1.925 1.925 0 012 6c.55 0 1.021.196 1.413.587C3.804 6.979 4 7.45 4 8s-.196 1.02-.587 1.412A1.927 1.927 0 012 10zm0-6C1.45 4 .98 3.804.588 3.412A1.923 1.923 0 010 2C0 1.45.196.98.588.588A1.923 1.923 0 012 0c.55 0 1.021.196 1.413.588C3.804.979 4 1.45 4 2c0 .55-.196 1.02-.587 1.412A1.927 1.927 0 012 4z"
|
|
340025
|
+
})));
|
|
340026
|
+
}
|
|
340027
|
+
/* harmony default export */ const ellipsis_vertical = (SvgEllipsisVertical);
|
|
339857
340028
|
;// ./node_modules/@szhsin/react-menu/dist/es/_virtual/_rollupPluginBabelHelpers.js
|
|
339858
340029
|
function _rollupPluginBabelHelpers_extends() {
|
|
339859
340030
|
_rollupPluginBabelHelpers_extends = Object.assign ? Object.assign.bind() : function (target) {
|
|
@@ -341466,9 +341637,9 @@ var FileMenu = props => {
|
|
|
341466
341637
|
align: "start",
|
|
341467
341638
|
direction: "right",
|
|
341468
341639
|
menuButtonLabel: t("filePanel.fileMenu.label"),
|
|
341469
|
-
MenuButtonIcon:
|
|
341640
|
+
MenuButtonIcon: ellipsis_vertical,
|
|
341470
341641
|
menuOptions: [{
|
|
341471
|
-
icon:
|
|
341642
|
+
icon: pencil,
|
|
341472
341643
|
text: t("filePanel.fileMenu.renameItem"),
|
|
341473
341644
|
action: onClickRenameFile
|
|
341474
341645
|
}],
|
|
@@ -342466,15 +342637,84 @@ var SidebarPanel = props => {
|
|
|
342466
342637
|
};
|
|
342467
342638
|
/* harmony default export */ const Sidebar_SidebarPanel = (SidebarPanel);
|
|
342468
342639
|
;// ./src/assets/icons/file.svg
|
|
342469
|
-
|
|
342640
|
+
var file_path;
|
|
342641
|
+
function file_extends() { return file_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, file_extends.apply(null, arguments); }
|
|
342642
|
+
|
|
342643
|
+
function SvgFile(props) {
|
|
342644
|
+
return /*#__PURE__*/external_react_.createElement("svg", file_extends({
|
|
342645
|
+
width: 24,
|
|
342646
|
+
height: 24,
|
|
342647
|
+
fill: "none",
|
|
342648
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342649
|
+
}, props), file_path || (file_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342650
|
+
d: "M8 18h8v-2H8v2zm0-4h8v-2H8v2zm-4 8V2h10l6 6v14H4zm9-13V4H6v16h12V9h-5zM6 4v5-5 16V4z"
|
|
342651
|
+
})));
|
|
342652
|
+
}
|
|
342653
|
+
/* harmony default export */ const file = (SvgFile);
|
|
342470
342654
|
;// ./src/assets/icons/python_file.svg
|
|
342471
|
-
|
|
342655
|
+
var python_file_path;
|
|
342656
|
+
function python_file_extends() { return python_file_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, python_file_extends.apply(null, arguments); }
|
|
342657
|
+
|
|
342658
|
+
function SvgPythonFile(props) {
|
|
342659
|
+
return /*#__PURE__*/external_react_.createElement("svg", python_file_extends({
|
|
342660
|
+
"data-testid": "pythonIcon",
|
|
342661
|
+
width: 24,
|
|
342662
|
+
height: 24,
|
|
342663
|
+
fill: "none",
|
|
342664
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342665
|
+
}, props), python_file_path || (python_file_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342666
|
+
d: "M11.527 11.626H9.162c-1.656 0-2.72 1.065-2.72 2.72v2.129c0 .236-.119.355-.355.355H5.022c-1.064 0-1.892-.473-2.365-1.42-.355-.709-.591-1.419-.591-2.128-.119-1.301-.119-2.602.355-3.903.354-1.064 1.064-1.892 2.247-2.129h6.859c.118 0 .355 0 .355-.118v-.591s-.237-.119-.355-.119H7.506c-.355 0-.473-.118-.473-.473V4.412c0-.828.355-1.42 1.064-1.656.592-.236 1.183-.473 1.774-.591 1.42-.237 2.839-.237 4.258.118.591.118 1.182.355 1.655.71.474.473.828.946.71 1.655v4.258c0 1.656-.946 2.602-2.602 2.602-.828.118-1.655.118-2.365.118zM8.216 4.53c0 .473.354.946.946.946.473 0 .946-.473.946-.946s-.473-.828-.946-.946c-.592 0-.946.473-.946.946zm4.257 8.279h2.365c1.656 0 2.72-1.065 2.72-2.72v-2.13c0-.236.119-.354.355-.354h1.065c1.064 0 1.892.473 2.365 1.42.355.709.591 1.418.591 2.128.119 1.3.119 2.602-.355 3.903-.354 1.064-1.064 1.892-2.247 2.129h-6.859c-.118 0-.355 0-.355.118v.591s.237.118.355.118h4.021c.355 0 .473.119.473.473v1.538c0 .828-.355 1.42-1.064 1.656-.592.236-1.183.473-1.774.591-1.42.236-2.839.236-4.258-.118-.591-.119-1.182-.355-1.655-.71-.474-.473-.828-.946-.71-1.656V15.53c0-1.656.946-2.602 2.602-2.602.828-.118 1.655-.118 2.365-.118zm3.311 7.096c0-.473-.354-.947-.946-.947-.473 0-.946.474-.946.947s.473.828.946.946c.592 0 .947-.473.947-.946z"
|
|
342667
|
+
})));
|
|
342668
|
+
}
|
|
342669
|
+
/* harmony default export */ const python_file = (SvgPythonFile);
|
|
342472
342670
|
;// ./src/assets/icons/html_file.svg
|
|
342473
|
-
|
|
342671
|
+
var html_file_path;
|
|
342672
|
+
function html_file_extends() { return html_file_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, html_file_extends.apply(null, arguments); }
|
|
342673
|
+
|
|
342674
|
+
function SvgHtmlFile(props) {
|
|
342675
|
+
return /*#__PURE__*/external_react_.createElement("svg", html_file_extends({
|
|
342676
|
+
"data-testid": "htmlIcon",
|
|
342677
|
+
width: 24,
|
|
342678
|
+
height: 24,
|
|
342679
|
+
fill: "none",
|
|
342680
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342681
|
+
}, props), html_file_path || (html_file_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342682
|
+
d: "M2 11.125l7.5-7v3.25l-5.625 5 5.625 5v3.25l-7.5-7v-2.5zm20 2.625l-7.5 7v-3.375l5.75-5-5.75-5V4l7.5 7v2.75z"
|
|
342683
|
+
})));
|
|
342684
|
+
}
|
|
342685
|
+
/* harmony default export */ const html_file = (SvgHtmlFile);
|
|
342474
342686
|
;// ./src/assets/icons/css_file.svg
|
|
342475
|
-
|
|
342687
|
+
var css_file_path;
|
|
342688
|
+
function css_file_extends() { return css_file_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, css_file_extends.apply(null, arguments); }
|
|
342689
|
+
|
|
342690
|
+
function SvgCssFile(props) {
|
|
342691
|
+
return /*#__PURE__*/external_react_.createElement("svg", css_file_extends({
|
|
342692
|
+
"data-testid": "cssIcon",
|
|
342693
|
+
width: 18,
|
|
342694
|
+
height: 18,
|
|
342695
|
+
viewBox: "0 0 20 18",
|
|
342696
|
+
fill: "none",
|
|
342697
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342698
|
+
}, props), css_file_path || (css_file_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342699
|
+
d: "M2.053 17.638l.967-4.833H0v-2.537h3.624l.604-3.02h-3.14V4.711h3.744L5.798 0h3.383l-.966 4.711h3.382L12.564 0h3.382l-.966 4.711H18v2.537h-3.504l-.724 3.02h3.14v2.537h-3.624l-.966 4.833H8.939l.967-4.833H6.523l-.966 4.833H2.053zm8.336-7.37l.604-3.02H7.611l-.604 3.02h3.382z"
|
|
342700
|
+
})));
|
|
342701
|
+
}
|
|
342702
|
+
/* harmony default export */ const css_file = (SvgCssFile);
|
|
342476
342703
|
;// ./src/assets/icons/csv_file.svg
|
|
342477
|
-
|
|
342704
|
+
var csv_file_path;
|
|
342705
|
+
function csv_file_extends() { return csv_file_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, csv_file_extends.apply(null, arguments); }
|
|
342706
|
+
|
|
342707
|
+
function SvgCsvFile(props) {
|
|
342708
|
+
return /*#__PURE__*/external_react_.createElement("svg", csv_file_extends({
|
|
342709
|
+
width: 24,
|
|
342710
|
+
height: 24,
|
|
342711
|
+
fill: "none",
|
|
342712
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342713
|
+
}, props), csv_file_path || (csv_file_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342714
|
+
d: "M3 3v17.8h18V3H3zm2.9 3.7H11V8H5.9V6.7zm7 0H18V8h-5.1V6.7zm-7 3H11V11H5.9V9.7zm7 0H18V11h-5.1V9.7zm-7 3H11V14H5.9v-1.3zm7 0H18V14h-5.1v-1.3zm-7 3H11V17H5.9v-1.3zm7 0H18V17h-5.1v-1.3z"
|
|
342715
|
+
})));
|
|
342716
|
+
}
|
|
342717
|
+
/* harmony default export */ const csv_file = (SvgCsvFile);
|
|
342478
342718
|
;// ./src/utils/FileIcon.jsx
|
|
342479
342719
|
|
|
342480
342720
|
|
|
@@ -342489,30 +342729,43 @@ var FileIcon = _ref => {
|
|
|
342489
342729
|
} = _ref;
|
|
342490
342730
|
switch (ext) {
|
|
342491
342731
|
case FILE_EXTENSIONS.py:
|
|
342492
|
-
return /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
342732
|
+
return /*#__PURE__*/(0,jsx_runtime.jsx)(python_file, {
|
|
342493
342733
|
"data-testid": "pythonIcon"
|
|
342494
342734
|
});
|
|
342495
342735
|
case FILE_EXTENSIONS.html:
|
|
342496
|
-
return /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
342736
|
+
return /*#__PURE__*/(0,jsx_runtime.jsx)(html_file, {
|
|
342497
342737
|
"data-testid": "htmlIcon"
|
|
342498
342738
|
});
|
|
342499
342739
|
case FILE_EXTENSIONS.css:
|
|
342500
|
-
return /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
342740
|
+
return /*#__PURE__*/(0,jsx_runtime.jsx)(css_file, {
|
|
342501
342741
|
"data-testid": "cssIcon"
|
|
342502
342742
|
});
|
|
342503
342743
|
case FILE_EXTENSIONS.csv:
|
|
342504
|
-
return /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
342744
|
+
return /*#__PURE__*/(0,jsx_runtime.jsx)(csv_file, {
|
|
342505
342745
|
"data-testid": "csvIcon"
|
|
342506
342746
|
});
|
|
342507
342747
|
default:
|
|
342508
|
-
return /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
342748
|
+
return /*#__PURE__*/(0,jsx_runtime.jsx)(file, {
|
|
342509
342749
|
"data-testid": "defaultFileIcon"
|
|
342510
342750
|
});
|
|
342511
342751
|
}
|
|
342512
342752
|
};
|
|
342513
342753
|
/* harmony default export */ const utils_FileIcon = (FileIcon);
|
|
342514
342754
|
;// ./src/assets/icons/plus.svg
|
|
342515
|
-
|
|
342755
|
+
var plus_path;
|
|
342756
|
+
function plus_extends() { return plus_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, plus_extends.apply(null, arguments); }
|
|
342757
|
+
|
|
342758
|
+
function SvgPlus(props) {
|
|
342759
|
+
return /*#__PURE__*/external_react_.createElement("svg", plus_extends({
|
|
342760
|
+
width: 14,
|
|
342761
|
+
height: 14,
|
|
342762
|
+
fill: "none",
|
|
342763
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342764
|
+
}, props), plus_path || (plus_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342765
|
+
d: "M6 14V8H0V6h6V0h2v6h6v2H8v6H6z"
|
|
342766
|
+
})));
|
|
342767
|
+
}
|
|
342768
|
+
/* harmony default export */ const plus = (SvgPlus);
|
|
342516
342769
|
;// ./src/components/Menus/Sidebar/FilePanel/FilePanel.jsx
|
|
342517
342770
|
|
|
342518
342771
|
|
|
@@ -342563,7 +342816,7 @@ var FilePanel = _ref => {
|
|
|
342563
342816
|
var buttons = readOnly ? [] : [/*#__PURE__*/(0,jsx_runtime.jsx)(DesignSystemButton_DesignSystemButton, {
|
|
342564
342817
|
text: t("filePanel.newFileButton"),
|
|
342565
342818
|
textAways: true,
|
|
342566
|
-
icon: /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
342819
|
+
icon: /*#__PURE__*/(0,jsx_runtime.jsx)(plus, {}),
|
|
342567
342820
|
onClick: openNewFileModal,
|
|
342568
342821
|
className: "btn--primary",
|
|
342569
342822
|
fill: true
|
|
@@ -342599,9 +342852,35 @@ var FilePanel = _ref => {
|
|
|
342599
342852
|
};
|
|
342600
342853
|
/* harmony default export */ const FilePanel_FilePanel = (FilePanel);
|
|
342601
342854
|
;// ./src/assets/icons/double_arrow_left.svg
|
|
342602
|
-
|
|
342855
|
+
var double_arrow_left_path;
|
|
342856
|
+
function double_arrow_left_extends() { return double_arrow_left_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, double_arrow_left_extends.apply(null, arguments); }
|
|
342857
|
+
|
|
342858
|
+
function SvgDoubleArrowLeft(props) {
|
|
342859
|
+
return /*#__PURE__*/external_react_.createElement("svg", double_arrow_left_extends({
|
|
342860
|
+
width: 24,
|
|
342861
|
+
height: 24,
|
|
342862
|
+
fill: "none",
|
|
342863
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342864
|
+
}, props), double_arrow_left_path || (double_arrow_left_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342865
|
+
d: "M11 18l-6-6 6-6 1.4 1.4L7.825 12l4.575 4.6L11 18zm6.6 0l-6-6 6-6L19 7.4 14.425 12 19 16.6 17.6 18z"
|
|
342866
|
+
})));
|
|
342867
|
+
}
|
|
342868
|
+
/* harmony default export */ const double_arrow_left = (SvgDoubleArrowLeft);
|
|
342603
342869
|
;// ./src/assets/icons/double_arrow_right.svg
|
|
342604
|
-
|
|
342870
|
+
var double_arrow_right_path;
|
|
342871
|
+
function double_arrow_right_extends() { return double_arrow_right_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, double_arrow_right_extends.apply(null, arguments); }
|
|
342872
|
+
|
|
342873
|
+
function SvgDoubleArrowRight(props) {
|
|
342874
|
+
return /*#__PURE__*/external_react_.createElement("svg", double_arrow_right_extends({
|
|
342875
|
+
width: 24,
|
|
342876
|
+
height: 24,
|
|
342877
|
+
fill: "none",
|
|
342878
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
342879
|
+
}, props), double_arrow_right_path || (double_arrow_right_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
342880
|
+
d: "M6.4 18L5 16.6 9.575 12 5 7.4 6.4 6l6 6-6 6zm6.6 0l-1.4-1.4 4.575-4.6L11.6 7.4 13 6l6 6-6 6z"
|
|
342881
|
+
})));
|
|
342882
|
+
}
|
|
342883
|
+
/* harmony default export */ const double_arrow_right = (SvgDoubleArrowRight);
|
|
342605
342884
|
;// ./src/components/Menus/Sidebar/SidebarBarOption.jsx
|
|
342606
342885
|
|
|
342607
342886
|
|
|
@@ -342713,7 +342992,7 @@ var SidebarBar = props => {
|
|
|
342713
342992
|
className: "sidebar__bar-option-wrapper",
|
|
342714
342993
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(Button_Button, {
|
|
342715
342994
|
className: "sidebar__bar-option",
|
|
342716
|
-
ButtonIcon:
|
|
342995
|
+
ButtonIcon: double_arrow_left,
|
|
342717
342996
|
title: t("sidebar.collapse"),
|
|
342718
342997
|
onClickHandler: collapsePopOut
|
|
342719
342998
|
})
|
|
@@ -342721,7 +343000,7 @@ var SidebarBar = props => {
|
|
|
342721
343000
|
className: "sidebar__bar-option-wrapper",
|
|
342722
343001
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(Button_Button, {
|
|
342723
343002
|
className: "sidebar__bar-option",
|
|
342724
|
-
ButtonIcon:
|
|
343003
|
+
ButtonIcon: double_arrow_right,
|
|
342725
343004
|
title: t("sidebar.expand"),
|
|
342726
343005
|
onClickHandler: expandPopOut
|
|
342727
343006
|
})
|
|
@@ -342939,7 +343218,24 @@ function shouldUpdate(dependencies, newCookies, oldCookies) {
|
|
|
342939
343218
|
// extracted by mini-css-extract-plugin
|
|
342940
343219
|
|
|
342941
343220
|
;// ./src/assets/icons/select_buttons_tick.svg
|
|
342942
|
-
|
|
343221
|
+
var _rect, select_buttons_tick_path;
|
|
343222
|
+
function select_buttons_tick_extends() { return select_buttons_tick_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, select_buttons_tick_extends.apply(null, arguments); }
|
|
343223
|
+
|
|
343224
|
+
function SvgSelectButtonsTick(props) {
|
|
343225
|
+
return /*#__PURE__*/external_react_.createElement("svg", select_buttons_tick_extends({
|
|
343226
|
+
width: 24,
|
|
343227
|
+
height: 24,
|
|
343228
|
+
fill: "none",
|
|
343229
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
343230
|
+
}, props), _rect || (_rect = /*#__PURE__*/external_react_.createElement("rect", {
|
|
343231
|
+
width: 24,
|
|
343232
|
+
height: 24,
|
|
343233
|
+
rx: 12
|
|
343234
|
+
})), select_buttons_tick_path || (select_buttons_tick_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
343235
|
+
d: "M9.958 17l-4.75-4.75 1.188-1.187 3.562 3.562 7.646-7.646 1.188 1.188L9.958 17z"
|
|
343236
|
+
})));
|
|
343237
|
+
}
|
|
343238
|
+
/* harmony default export */ const select_buttons_tick = (SvgSelectButtonsTick);
|
|
342943
343239
|
;// ./src/utils/SelectButtons.jsx
|
|
342944
343240
|
|
|
342945
343241
|
|
|
@@ -342973,7 +343269,7 @@ var SelectButtons = _ref => {
|
|
|
342973
343269
|
htmlFor: "".concat(label, "-option").concat(i),
|
|
342974
343270
|
children: [option.Icon ? /*#__PURE__*/(0,jsx_runtime.jsx)(option.Icon, {}) : null, option.label, /*#__PURE__*/(0,jsx_runtime.jsx)("div", {
|
|
342975
343271
|
className: "select-buttons__tick".concat(option.value === value ? " select-buttons__tick--selected" : ""),
|
|
342976
|
-
children: /*#__PURE__*/(0,jsx_runtime.jsx)(
|
|
343272
|
+
children: /*#__PURE__*/(0,jsx_runtime.jsx)(select_buttons_tick, {})
|
|
342977
343273
|
})]
|
|
342978
343274
|
})]
|
|
342979
343275
|
}, i))
|
|
@@ -343026,11 +343322,50 @@ var ThemeToggle = () => {
|
|
|
343026
343322
|
};
|
|
343027
343323
|
/* harmony default export */ const ThemeToggle_ThemeToggle = (ThemeToggle);
|
|
343028
343324
|
;// ./src/assets/icons/font_icon_lg.svg
|
|
343029
|
-
|
|
343325
|
+
var font_icon_lg_path;
|
|
343326
|
+
function font_icon_lg_extends() { return font_icon_lg_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, font_icon_lg_extends.apply(null, arguments); }
|
|
343327
|
+
|
|
343328
|
+
function SvgFontIconLg(props) {
|
|
343329
|
+
return /*#__PURE__*/external_react_.createElement("svg", font_icon_lg_extends({
|
|
343330
|
+
width: 24,
|
|
343331
|
+
height: 24,
|
|
343332
|
+
fill: "none",
|
|
343333
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
343334
|
+
}, props), font_icon_lg_path || (font_icon_lg_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
343335
|
+
d: "M7.307 3c.465 0 .882.285 1.05.72l2.34 6.079-1.205 3.108a1.132 1.132 0 01-.052-.116l-.456-1.183H5.63l-.456 1.183a1.126 1.126 0 11-2.1-.81L6.26 3.72A1.126 1.126 0 017.309 3h-.002zm-.81 6.356h1.62l-.81-2.102-.81 2.102zm8.791-2.649a1.125 1.125 0 00-2.1 0L8.59 18.74a1.124 1.124 0 00-1.111 1.14 1.127 1.127 0 001.138 1.113h.68c.047.002.093.002.139 0l1.432-.005a1.124 1.124 0 001.123-1.06A1.127 1.127 0 0011 18.742l.574-1.501h5.332l.578 1.513a1.124 1.124 0 00-.993 1.185A1.127 1.127 0 0017.615 21l2.25-.006A1.124 1.124 0 0021 19.878a1.128 1.128 0 00-1.114-1.136l-1.122-2.936a1.14 1.14 0 00-.07-.184L15.29 6.709l-.002-.002zm.756 8.28h-3.611l1.805-4.726 1.806 4.726z"
|
|
343336
|
+
})));
|
|
343337
|
+
}
|
|
343338
|
+
/* harmony default export */ const font_icon_lg = (SvgFontIconLg);
|
|
343030
343339
|
;// ./src/assets/icons/font_icon_rg.svg
|
|
343031
|
-
|
|
343340
|
+
var font_icon_rg_path;
|
|
343341
|
+
function font_icon_rg_extends() { return font_icon_rg_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, font_icon_rg_extends.apply(null, arguments); }
|
|
343342
|
+
|
|
343343
|
+
function SvgFontIconRg(props) {
|
|
343344
|
+
return /*#__PURE__*/external_react_.createElement("svg", font_icon_rg_extends({
|
|
343345
|
+
width: 24,
|
|
343346
|
+
height: 24,
|
|
343347
|
+
fill: "none",
|
|
343348
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
343349
|
+
}, props), font_icon_rg_path || (font_icon_rg_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
343350
|
+
d: "M8.35 5c.362 0 .686.222.816.56l1.821 4.728-.938 2.417a.888.888 0 01-.04-.09l-.355-.92H7.046l-.354.92a.875.875 0 11-1.633-.63L7.535 5.56A.876.876 0 018.35 5zm-.63 4.943h1.26l-.63-1.635-.63 1.635zm6.837-2.06a.876.876 0 00-1.634 0l-3.575 9.36a.874.874 0 00-.864.886.877.877 0 00.885.865h.53a.874.874 0 00.107 0l1.114-.003a.874.874 0 00.67-1.44.875.875 0 00-.568-.306l.446-1.168h4.147l.45 1.177a.875.875 0 00-.499 1.508.874.874 0 00.601.238l1.75-.005a.874.874 0 00.633-1.49.874.874 0 00-.617-.261l-.872-2.284a.87.87 0 00-.055-.143L14.56 7.885l-.002-.002zm.588 6.44h-2.808l1.404-3.675 1.404 3.675z"
|
|
343351
|
+
})));
|
|
343352
|
+
}
|
|
343353
|
+
/* harmony default export */ const font_icon_rg = (SvgFontIconRg);
|
|
343032
343354
|
;// ./src/assets/icons/font_icon_sm.svg
|
|
343033
|
-
|
|
343355
|
+
var font_icon_sm_path;
|
|
343356
|
+
function font_icon_sm_extends() { return font_icon_sm_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, font_icon_sm_extends.apply(null, arguments); }
|
|
343357
|
+
|
|
343358
|
+
function SvgFontIconSm(props) {
|
|
343359
|
+
return /*#__PURE__*/external_react_.createElement("svg", font_icon_sm_extends({
|
|
343360
|
+
width: 24,
|
|
343361
|
+
height: 24,
|
|
343362
|
+
fill: "none",
|
|
343363
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
343364
|
+
}, props), font_icon_sm_path || (font_icon_sm_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
343365
|
+
d: "M9.393 7c.258 0 .49.158.583.4l1.3 3.377-.67 1.727a.628.628 0 01-.028-.064l-.254-.658H8.461l-.253.658a.625.625 0 11-1.166-.45L8.81 7.4a.626.626 0 01.583-.4h-.001zm-.45 3.531h.9l-.45-1.168-.45 1.168zm4.884-1.471a.626.626 0 00-1.168 0l-2.553 6.685a.625.625 0 00.015 1.25h.378a.612.612 0 00.077 0l.795-.002a.624.624 0 00.073-1.247l.32-.834h2.96l.322.84A.624.624 0 0015.12 17l1.25-.003a.624.624 0 00.451-1.064.625.625 0 00-.44-.188l-.623-1.63a.627.627 0 00-.04-.103l-1.89-4.952h-.001zm.42 4.6H12.24l1.003-2.626 1.004 2.625z"
|
|
343366
|
+
})));
|
|
343367
|
+
}
|
|
343368
|
+
/* harmony default export */ const font_icon_sm = (SvgFontIconSm);
|
|
343034
343369
|
;// ./src/components/Menus/Sidebar/SettingsPanel/FontSizeSelector/FontSizeSelector.jsx
|
|
343035
343370
|
|
|
343036
343371
|
|
|
@@ -343064,15 +343399,15 @@ var FontSizeSelector = () => {
|
|
|
343064
343399
|
options: [{
|
|
343065
343400
|
value: "small",
|
|
343066
343401
|
label: t("sidebar.settingsMenu.textSizeOptions.small"),
|
|
343067
|
-
Icon:
|
|
343402
|
+
Icon: font_icon_sm
|
|
343068
343403
|
}, {
|
|
343069
343404
|
value: "medium",
|
|
343070
343405
|
label: t("sidebar.settingsMenu.textSizeOptions.medium"),
|
|
343071
|
-
Icon:
|
|
343406
|
+
Icon: font_icon_rg
|
|
343072
343407
|
}, {
|
|
343073
343408
|
value: "large",
|
|
343074
343409
|
label: t("sidebar.settingsMenu.textSizeOptions.large"),
|
|
343075
|
-
Icon:
|
|
343410
|
+
Icon: font_icon_lg
|
|
343076
343411
|
}],
|
|
343077
343412
|
value: fontSize,
|
|
343078
343413
|
setValue: setFontSize
|
|
@@ -343106,9 +343441,35 @@ var SettingsPanel = () => {
|
|
|
343106
343441
|
};
|
|
343107
343442
|
/* harmony default export */ const SettingsPanel_SettingsPanel = (SettingsPanel);
|
|
343108
343443
|
;// ./src/assets/icons/home.svg
|
|
343109
|
-
|
|
343444
|
+
var home_path;
|
|
343445
|
+
function home_extends() { return home_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, home_extends.apply(null, arguments); }
|
|
343446
|
+
|
|
343447
|
+
function SvgHome(props) {
|
|
343448
|
+
return /*#__PURE__*/external_react_.createElement("svg", home_extends({
|
|
343449
|
+
width: 24,
|
|
343450
|
+
height: 24,
|
|
343451
|
+
fill: "none",
|
|
343452
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
343453
|
+
}, props), home_path || (home_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
343454
|
+
d: "M6 19h3v-6h6v6h3v-9l-6-4.5L6 10v9zm-2 2V9l8-6 8 6v12h-7v-6h-2v6H4z"
|
|
343455
|
+
})));
|
|
343456
|
+
}
|
|
343457
|
+
/* harmony default export */ const home = (SvgHome);
|
|
343110
343458
|
;// ./src/assets/icons/settings.svg
|
|
343111
|
-
|
|
343459
|
+
var settings_path;
|
|
343460
|
+
function settings_extends() { return settings_extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, settings_extends.apply(null, arguments); }
|
|
343461
|
+
|
|
343462
|
+
function SvgSettings(props) {
|
|
343463
|
+
return /*#__PURE__*/external_react_.createElement("svg", settings_extends({
|
|
343464
|
+
width: 24,
|
|
343465
|
+
height: 24,
|
|
343466
|
+
fill: "none",
|
|
343467
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
343468
|
+
}, props), settings_path || (settings_path = /*#__PURE__*/external_react_.createElement("path", {
|
|
343469
|
+
d: "M9.25 22l-.4-3.2a3.79 3.79 0 01-.613-.3 8.266 8.266 0 01-.562-.375L4.7 19.375l-2.75-4.75 2.575-1.95a2.387 2.387 0 01-.025-.338v-.675c0-.108.008-.22.025-.337L1.95 9.375l2.75-4.75 2.975 1.25c.183-.133.375-.258.575-.375.2-.117.4-.217.6-.3l.4-3.2h5.5l.4 3.2c.217.083.42.183.612.3.192.117.38.242.563.375l2.975-1.25 2.75 4.75-2.575 1.95c.017.117.025.23.025.338v.675c0 .108-.017.22-.05.337l2.575 1.95-2.75 4.75-2.95-1.25a6.842 6.842 0 01-.575.375c-.2.117-.4.217-.6.3l-.4 3.2h-5.5zm2.8-6.5c.967 0 1.792-.342 2.475-1.025A3.372 3.372 0 0015.55 12c0-.967-.342-1.792-1.025-2.475A3.373 3.373 0 0012.05 8.5c-.983 0-1.813.342-2.488 1.025A3.393 3.393 0 008.55 12c0 .967.337 1.792 1.012 2.475.676.683 1.505 1.025 2.488 1.025zm0-2c-.417 0-.77-.146-1.063-.438A1.446 1.446 0 0110.55 12c0-.417.146-.77.438-1.063a1.446 1.446 0 011.062-.437c.417 0 .77.146 1.063.438.291.291.437.645.437 1.062 0 .417-.146.77-.438 1.063a1.447 1.447 0 01-1.062.437zM11 20h1.975l.35-2.65c.517-.133.996-.33 1.438-.588.441-.258.845-.57 1.212-.937l2.475 1.025.975-1.7-2.15-1.625c.083-.233.142-.48.175-.738a6.153 6.153 0 000-1.575 3.535 3.535 0 00-.175-.737l2.15-1.625-.975-1.7-2.475 1.05a5.556 5.556 0 00-1.213-.962 5.607 5.607 0 00-1.437-.588L13 4h-1.975l-.35 2.65c-.517.133-.996.33-1.438.587-.441.259-.845.571-1.212.938L5.55 7.15l-.975 1.7 2.15 1.6c-.083.25-.142.5-.175.75s-.05.517-.05.8c0 .267.017.525.05.775s.092.5.175.75l-2.15 1.625.975 1.7 2.475-1.05c.367.383.77.704 1.212.962.442.259.921.455 1.438.588L11 20z"
|
|
343470
|
+
})));
|
|
343471
|
+
}
|
|
343472
|
+
/* harmony default export */ const settings = (SvgSettings);
|
|
343112
343473
|
;// ./src/assets/stylesheets/ProjectsPanel.scss
|
|
343113
343474
|
// extracted by mini-css-extract-plugin
|
|
343114
343475
|
|
|
@@ -343211,7 +343572,7 @@ var ProjectsPanel = () => {
|
|
|
343211
343572
|
children: /*#__PURE__*/(0,jsx_runtime.jsx)(DownloadButton_DownloadButton, {
|
|
343212
343573
|
buttonText: t("header.download"),
|
|
343213
343574
|
className: "projects-panel__download-button",
|
|
343214
|
-
Icon:
|
|
343575
|
+
Icon: download
|
|
343215
343576
|
})
|
|
343216
343577
|
}), isMobile && saveOptions]
|
|
343217
343578
|
});
|
|
@@ -343248,7 +343609,7 @@ var DownloadPanel = () => {
|
|
|
343248
343609
|
}), /*#__PURE__*/(0,jsx_runtime.jsx)(DownloadButton_DownloadButton, {
|
|
343249
343610
|
buttonText: t("downloadPanel.downloadButton"),
|
|
343250
343611
|
className: "btn btn--secondary download-panel__button",
|
|
343251
|
-
Icon:
|
|
343612
|
+
Icon: download,
|
|
343252
343613
|
fill: true
|
|
343253
343614
|
})]
|
|
343254
343615
|
}), !projectOwner && /*#__PURE__*/(0,jsx_runtime.jsx)(SaveButton_SaveButton, {
|
|
@@ -343285,7 +343646,7 @@ var Sidebar = _ref => {
|
|
|
343285
343646
|
} = useTranslation_useTranslation();
|
|
343286
343647
|
var menuOptions = [{
|
|
343287
343648
|
name: "projects",
|
|
343288
|
-
icon:
|
|
343649
|
+
icon: home,
|
|
343289
343650
|
title: t("sidebar.projects"),
|
|
343290
343651
|
position: "top",
|
|
343291
343652
|
panel: ProjectsPanel_ProjectsPanel
|
|
@@ -343297,13 +343658,13 @@ var Sidebar = _ref => {
|
|
|
343297
343658
|
panel: FilePanel_FilePanel
|
|
343298
343659
|
}, {
|
|
343299
343660
|
name: "download",
|
|
343300
|
-
icon:
|
|
343661
|
+
icon: save,
|
|
343301
343662
|
title: t("sidebar.download"),
|
|
343302
343663
|
position: "top",
|
|
343303
343664
|
panel: DownloadPanel_DownloadPanel
|
|
343304
343665
|
}, {
|
|
343305
343666
|
name: "settings",
|
|
343306
|
-
icon:
|
|
343667
|
+
icon: settings,
|
|
343307
343668
|
title: t("sidebar.settings"),
|
|
343308
343669
|
position: "bottom",
|
|
343309
343670
|
panel: SettingsPanel_SettingsPanel
|
|
@@ -348513,7 +348874,7 @@ const space = 32;
|
|
|
348513
348874
|
const pageUp = 33;
|
|
348514
348875
|
const pageDown = 34;
|
|
348515
348876
|
const end = 35;
|
|
348516
|
-
const
|
|
348877
|
+
const dnd_esm_home = 36;
|
|
348517
348878
|
const arrowLeft = 37;
|
|
348518
348879
|
const arrowUp = 38;
|
|
348519
348880
|
const arrowRight = 39;
|
|
@@ -348775,7 +349136,7 @@ function noop$1() {}
|
|
|
348775
349136
|
const scrollJumpKeys = {
|
|
348776
349137
|
[pageDown]: true,
|
|
348777
349138
|
[pageUp]: true,
|
|
348778
|
-
[
|
|
349139
|
+
[dnd_esm_home]: true,
|
|
348779
349140
|
[end]: true
|
|
348780
349141
|
};
|
|
348781
349142
|
function getDraggingBindings(actions, stop) {
|
|
@@ -381116,7 +381477,7 @@ const noSemi = 312,
|
|
|
381116
381477
|
const javascript_dist_space = [9, 10, 11, 12, 13, 32, 133, 160, 5760, 8192, 8193, 8194, 8195, 8196, 8197, 8198, 8199, 8200,
|
|
381117
381478
|
8201, 8202, 8232, 8233, 8239, 8287, 12288];
|
|
381118
381479
|
|
|
381119
|
-
const braceR = 125, semicolon = 59, dist_slash = 47, star = 42,
|
|
381480
|
+
const braceR = 125, semicolon = 59, dist_slash = 47, star = 42, dist_plus = 43, minus = 45, lt = 60, comma = 44,
|
|
381120
381481
|
dist_question = 63, dot = 46, dist_bracketL = 91;
|
|
381121
381482
|
|
|
381122
381483
|
const trackNewline = new ContextTracker({
|
|
@@ -381147,7 +381508,7 @@ const noSemicolonType = new ExternalTokenizer((input, stack) => {
|
|
|
381147
381508
|
|
|
381148
381509
|
const operatorToken = new ExternalTokenizer((input, stack) => {
|
|
381149
381510
|
let {next} = input;
|
|
381150
|
-
if (next ==
|
|
381511
|
+
if (next == dist_plus || next == minus) {
|
|
381151
381512
|
input.advance();
|
|
381152
381513
|
if (next == input.next) {
|
|
381153
381514
|
input.advance();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gwchq-textjam",
|
|
3
3
|
"description": "Embeddable React editor used in Raspberry Pi text-based projects.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.5",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/GirlsFirst/gwchq-textjam",
|
|
7
7
|
"author": "Girls Who Code HQ",
|