@jsenv/core 24.5.7 → 24.6.3
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/browser_runtime/browser_runtime-c7288751.js +58 -41
- package/dist/browser_runtime/browser_runtime-c7288751.js.map +3 -1
- package/dist/build_manifest.js +4 -4
- package/dist/compile_proxy/asset-manifest.json +1 -1
- package/dist/compile_proxy/{compile_proxy-501d6fa3.html → compile_proxy-28148b58.html} +26 -21
- package/dist/compile_proxy/{compile_proxy.html__inline__20-cbaf7522.js.map → compile_proxy.html__inline__20-4887fb1d.js.map} +3 -3
- package/dist/event_source_client/event_source_client-9f14c8b9.js +11 -5
- package/dist/event_source_client/event_source_client-9f14c8b9.js.map +1 -1
- package/dist/redirector/asset-manifest.json +1 -1
- package/dist/redirector/{redirector-d614cffb.html → redirector-3c05dbb2.html} +26 -21
- package/dist/redirector/{redirector.html__inline__15-2953c307.js.map → redirector.html__inline__15-19e529b9.js.map} +3 -3
- package/dist/toolbar/asset-manifest.json +1 -1
- package/dist/toolbar/{toolbar-c23caf7b.html → toolbar-bab473ea.html} +61 -36
- package/dist/toolbar/{toolbar.main-bdbf37d1.js.map → toolbar.main-eb8acf83.js.map} +3 -3
- package/dist/toolbar_injector/asset-manifest.json +1 -1
- package/dist/toolbar_injector/{toolbar_injector-52ec0940.js → toolbar_injector-5e32f96a.js} +11 -10
- package/dist/toolbar_injector/{toolbar_injector-52ec0940.js.map → toolbar_injector-5e32f96a.js.map} +4 -3
- package/package.json +33 -32
- package/readme.md +13 -15
- package/src/buildProject.js +1 -2
- package/src/executeTestPlan.js +12 -6
- package/src/internal/browser_detection/user_agent_data.js +1 -1
- package/src/internal/browser_launcher/executeHtmlFile.js +2 -1
- package/src/internal/browser_launcher/from_playwright.js +4 -0
- package/src/internal/building/buildUsingRollup.js +15 -9
- package/src/internal/building/rollup_plugin_jsenv.js +65 -53
- package/src/internal/compiling/js-compilation-service/jsenvTransform.js +3 -0
- package/src/internal/compiling/js-compilation-service/transformJs.js +6 -1
- package/src/internal/executing/createSummaryLog.js +30 -4
- package/src/internal/executing/executeConcurrently.js +22 -8
- package/src/internal/executing/executePlan.js +12 -6
- package/src/internal/executing/executionLogs.js +14 -4
- package/src/internal/executing/gc.js +9 -0
- package/src/internal/logs/byte.js +10 -0
|
@@ -1907,7 +1907,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
1907
1907
|
<script type="systemjs-importmap">
|
|
1908
1908
|
{
|
|
1909
1909
|
"imports": {
|
|
1910
|
-
"./toolbar.main.js": "./toolbar.main-
|
|
1910
|
+
"./toolbar.main.js": "./toolbar.main-eb8acf83.js"
|
|
1911
1911
|
}
|
|
1912
1912
|
}</script>
|
|
1913
1913
|
<script>
|
|
@@ -1915,11 +1915,11 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
1915
1915
|
// and a promise the toolbar injector can listen to act on the toolbar
|
|
1916
1916
|
// or we could just consider all communication should pass by postmessage
|
|
1917
1917
|
</script>
|
|
1918
|
-
<script>System.register([],
|
|
1918
|
+
<script>System.register([], function () {
|
|
1919
1919
|
'use strict';
|
|
1920
|
-
return {
|
|
1921
|
-
execute: (function () {
|
|
1922
1920
|
|
|
1921
|
+
return {
|
|
1922
|
+
execute: function () {
|
|
1923
1923
|
/* eslint-disable no-eq-null, eqeqeq */
|
|
1924
1924
|
function arrayLikeToArray(arr, len) {
|
|
1925
1925
|
if (len == null || len > arr.length) len = arr.length;
|
|
@@ -1932,15 +1932,16 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
1932
1932
|
return arr2;
|
|
1933
1933
|
}
|
|
1934
1934
|
|
|
1935
|
-
var arrayWithoutHoles =
|
|
1935
|
+
var arrayWithoutHoles = function (arr) {
|
|
1936
1936
|
if (Array.isArray(arr)) return arrayLikeToArray(arr);
|
|
1937
|
-
}
|
|
1937
|
+
};
|
|
1938
1938
|
|
|
1939
1939
|
function _iterableToArray(iter) {
|
|
1940
1940
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
1941
1941
|
}
|
|
1942
|
-
|
|
1943
1942
|
/* eslint-disable consistent-return */
|
|
1943
|
+
|
|
1944
|
+
|
|
1944
1945
|
function unsupportedIterableToArray(o, minLen) {
|
|
1945
1946
|
if (!o) return;
|
|
1946
1947
|
if (typeof o === "string") return arrayLikeToArray(o, minLen);
|
|
@@ -1950,13 +1951,13 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
1950
1951
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return arrayLikeToArray(o, minLen);
|
|
1951
1952
|
}
|
|
1952
1953
|
|
|
1953
|
-
var nonIterableSpread =
|
|
1954
|
+
var nonIterableSpread = function () {
|
|
1954
1955
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
1955
|
-
}
|
|
1956
|
+
};
|
|
1956
1957
|
|
|
1957
|
-
var _toConsumableArray =
|
|
1958
|
+
var _toConsumableArray = function (arr) {
|
|
1958
1959
|
return arrayWithoutHoles(arr) || _iterableToArray(arr) || unsupportedIterableToArray(arr) || nonIterableSpread();
|
|
1959
|
-
}
|
|
1960
|
+
};
|
|
1960
1961
|
|
|
1961
1962
|
var nativeTypeOf = function nativeTypeOf(obj) {
|
|
1962
1963
|
return typeof obj;
|
|
@@ -2089,7 +2090,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2089
2090
|
return relativeUrl;
|
|
2090
2091
|
};
|
|
2091
2092
|
|
|
2092
|
-
var _defineProperty =
|
|
2093
|
+
var _defineProperty = function (obj, key, value) {
|
|
2093
2094
|
// Shortcircuit the slow defineProperty path when possible.
|
|
2094
2095
|
// We are trying to avoid issues where setters defined on the
|
|
2095
2096
|
// prototype cause side effects under the fast path of simple
|
|
@@ -2107,7 +2108,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2107
2108
|
}
|
|
2108
2109
|
|
|
2109
2110
|
return obj;
|
|
2110
|
-
}
|
|
2111
|
+
};
|
|
2111
2112
|
|
|
2112
2113
|
function ownKeys(object, enumerableOnly) {
|
|
2113
2114
|
var keys = Object.keys(object);
|
|
@@ -2147,7 +2148,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2147
2148
|
return target;
|
|
2148
2149
|
}
|
|
2149
2150
|
|
|
2150
|
-
var objectWithoutPropertiesLoose =
|
|
2151
|
+
var objectWithoutPropertiesLoose = function (source, excluded) {
|
|
2151
2152
|
if (source === null) return {};
|
|
2152
2153
|
var target = {};
|
|
2153
2154
|
var sourceKeys = Object.keys(source);
|
|
@@ -2161,9 +2162,9 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2161
2162
|
}
|
|
2162
2163
|
|
|
2163
2164
|
return target;
|
|
2164
|
-
}
|
|
2165
|
+
};
|
|
2165
2166
|
|
|
2166
|
-
var _objectWithoutProperties =
|
|
2167
|
+
var _objectWithoutProperties = function (source, excluded) {
|
|
2167
2168
|
if (source === null) return {};
|
|
2168
2169
|
var target = objectWithoutPropertiesLoose(source, excluded);
|
|
2169
2170
|
var key;
|
|
@@ -2181,9 +2182,10 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2181
2182
|
}
|
|
2182
2183
|
|
|
2183
2184
|
return target;
|
|
2184
|
-
}
|
|
2185
|
-
|
|
2185
|
+
};
|
|
2186
2186
|
/* eslint-env browser */
|
|
2187
|
+
|
|
2188
|
+
|
|
2187
2189
|
function _await$5(value, then, direct) {
|
|
2188
2190
|
if (direct) {
|
|
2189
2191
|
return then ? then(value) : value;
|
|
@@ -2795,6 +2797,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2795
2797
|
disableIframeOverflowOnParentWindow();
|
|
2796
2798
|
}
|
|
2797
2799
|
};
|
|
2800
|
+
|
|
2798
2801
|
var iframeOverflowEnabled = false;
|
|
2799
2802
|
|
|
2800
2803
|
var enableIframeOverflowOnParentWindow = function enableIframeOverflowOnParentWindow() {
|
|
@@ -2841,12 +2844,15 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2841
2844
|
return iframe.contentWindow === window;
|
|
2842
2845
|
});
|
|
2843
2846
|
};
|
|
2847
|
+
|
|
2844
2848
|
var forceHideElement = function forceHideElement(element) {
|
|
2845
2849
|
element.setAttribute("data-force-hide", "");
|
|
2846
2850
|
};
|
|
2851
|
+
|
|
2847
2852
|
var removeForceHideElement = function removeForceHideElement(element) {
|
|
2848
2853
|
element.removeAttribute("data-force-hide");
|
|
2849
2854
|
};
|
|
2855
|
+
|
|
2850
2856
|
var setStyles = function setStyles(element, styles) {
|
|
2851
2857
|
var elementStyle = element.style;
|
|
2852
2858
|
var restoreStyles = Object.keys(styles).map(function (styleName) {
|
|
@@ -2873,12 +2879,15 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2873
2879
|
});
|
|
2874
2880
|
};
|
|
2875
2881
|
};
|
|
2882
|
+
|
|
2876
2883
|
var toolbarSectionIsActive = function toolbarSectionIsActive(element) {
|
|
2877
2884
|
return element.hasAttribute("data-active");
|
|
2878
2885
|
};
|
|
2886
|
+
|
|
2879
2887
|
var activateToolbarSection = function activateToolbarSection(element) {
|
|
2880
2888
|
element.setAttribute("data-active", "");
|
|
2881
2889
|
};
|
|
2890
|
+
|
|
2882
2891
|
var deactivateToolbarSection = function deactivateToolbarSection(element) {
|
|
2883
2892
|
element.removeAttribute("data-active");
|
|
2884
2893
|
};
|
|
@@ -2946,9 +2955,9 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2946
2955
|
};
|
|
2947
2956
|
|
|
2948
2957
|
return stop;
|
|
2949
|
-
};
|
|
2958
|
+
}; // handle data-last-interaction attr on html (focusring)
|
|
2959
|
+
|
|
2950
2960
|
|
|
2951
|
-
// handle data-last-interaction attr on html (focusring)
|
|
2952
2961
|
window.addEventListener("mousedown", function (mousedownEvent) {
|
|
2953
2962
|
if (mousedownEvent.defaultPrevented) {
|
|
2954
2963
|
return;
|
|
@@ -2992,23 +3001,28 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
2992
3001
|
showTooltip(element);
|
|
2993
3002
|
}
|
|
2994
3003
|
};
|
|
3004
|
+
|
|
2995
3005
|
var hideTooltip = function hideTooltip(element) {
|
|
2996
3006
|
element.removeAttribute("data-tooltip-visible");
|
|
2997
3007
|
element.removeAttribute("data-tooltip-auto-visible");
|
|
2998
3008
|
updateIframeOverflowOnParentWindow();
|
|
2999
3009
|
};
|
|
3010
|
+
|
|
3000
3011
|
var showTooltip = function showTooltip(element) {
|
|
3001
3012
|
element.setAttribute("data-tooltip-visible", "");
|
|
3002
3013
|
updateIframeOverflowOnParentWindow();
|
|
3003
3014
|
};
|
|
3015
|
+
|
|
3004
3016
|
var autoShowTooltip = function autoShowTooltip(element) {
|
|
3005
3017
|
element.setAttribute("data-tooltip-auto-visible", "");
|
|
3006
3018
|
updateIframeOverflowOnParentWindow();
|
|
3007
3019
|
};
|
|
3020
|
+
|
|
3008
3021
|
var removeAutoShowTooltip = function removeAutoShowTooltip(element) {
|
|
3009
3022
|
element.removeAttribute("data-tooltip-auto-visible");
|
|
3010
3023
|
updateIframeOverflowOnParentWindow();
|
|
3011
3024
|
};
|
|
3025
|
+
|
|
3012
3026
|
var hideAllTooltip = function hideAllTooltip() {
|
|
3013
3027
|
var elementsWithTooltip = Array.from(document.querySelectorAll("[data-tooltip-visible]"));
|
|
3014
3028
|
elementsWithTooltip.forEach(function (elementWithTooltip) {
|
|
@@ -3032,10 +3046,12 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3032
3046
|
var settingsAreVisible = function settingsAreVisible() {
|
|
3033
3047
|
return toolbarSectionIsActive(document.querySelector("#settings"));
|
|
3034
3048
|
};
|
|
3049
|
+
|
|
3035
3050
|
var hideSettings = function hideSettings() {
|
|
3036
3051
|
deactivateToolbarSection(document.querySelector("#settings"));
|
|
3037
3052
|
updateIframeOverflowOnParentWindow();
|
|
3038
3053
|
};
|
|
3054
|
+
|
|
3039
3055
|
var showSettings = function showSettings() {
|
|
3040
3056
|
activateToolbarSection(document.querySelector("#settings"));
|
|
3041
3057
|
updateIframeOverflowOnParentWindow();
|
|
@@ -3137,6 +3153,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3137
3153
|
var notificationAvailable = typeof window.Notification === "function";
|
|
3138
3154
|
var notificationPreference = createPreference("notification");
|
|
3139
3155
|
var arrayOfOpenedNotifications = [];
|
|
3156
|
+
|
|
3140
3157
|
var renderToolbarNotification = function renderToolbarNotification() {
|
|
3141
3158
|
var notifCheckbox = document.querySelector("#toggle-notifs");
|
|
3142
3159
|
|
|
@@ -3189,6 +3206,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3189
3206
|
|
|
3190
3207
|
updatePermission();
|
|
3191
3208
|
};
|
|
3209
|
+
|
|
3192
3210
|
var notifyExecutionResult = function notifyExecutionResult(executedFileRelativeUrl, execution, previousExecution) {
|
|
3193
3211
|
var notificationEnabled = getNotificationPreference();
|
|
3194
3212
|
if (!notificationEnabled) return;
|
|
@@ -3287,10 +3305,10 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3287
3305
|
}) : function () {
|
|
3288
3306
|
return Promise.resolve("default");
|
|
3289
3307
|
};
|
|
3290
|
-
|
|
3291
3308
|
var DARK_THEME = "dark";
|
|
3292
3309
|
var LIGHT_THEME = "light";
|
|
3293
3310
|
var themePreference = createPreference("theme");
|
|
3311
|
+
|
|
3294
3312
|
var renderToolbarTheme = function renderToolbarTheme() {
|
|
3295
3313
|
var theme = getThemePreference();
|
|
3296
3314
|
var checkbox = document.querySelector("#checkbox-dark-theme");
|
|
@@ -3322,6 +3340,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3322
3340
|
};
|
|
3323
3341
|
|
|
3324
3342
|
var animationPreference = createPreference("animation");
|
|
3343
|
+
|
|
3325
3344
|
var renderToolbarAnimation = function renderToolbarAnimation() {
|
|
3326
3345
|
var animCheckbox = document.querySelector("#toggle-anims");
|
|
3327
3346
|
animCheckbox.checked = getAnimationPreference();
|
|
@@ -3496,10 +3515,12 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3496
3515
|
// },
|
|
3497
3516
|
// })
|
|
3498
3517
|
|
|
3518
|
+
|
|
3499
3519
|
var WINDOW_MEDIUM_WIDTH = 570;
|
|
3520
|
+
|
|
3500
3521
|
var renderExecutionInToolbar = function renderExecutionInToolbar(_ref) {
|
|
3501
|
-
var executedFileRelativeUrl = _ref.executedFileRelativeUrl;
|
|
3502
|
-
|
|
3522
|
+
var executedFileRelativeUrl = _ref.executedFileRelativeUrl; // reset file execution indicator ui
|
|
3523
|
+
|
|
3503
3524
|
applyExecutionIndicator();
|
|
3504
3525
|
removeForceHideElement(document.querySelector("#execution-indicator")); // apply responsive design on fileInput if needed + add listener on resize screen
|
|
3505
3526
|
|
|
@@ -3753,12 +3774,13 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3753
3774
|
return highestVersion === version;
|
|
3754
3775
|
});
|
|
3755
3776
|
};
|
|
3756
|
-
|
|
3757
3777
|
/*
|
|
3758
3778
|
* Prefer window.navigator.userAgentData before resorting to
|
|
3759
3779
|
* window.navigator.userAgent because of
|
|
3760
3780
|
* https://blog.chromium.org/2021/09/user-agent-reduction-origin-trial-and-dates.html
|
|
3761
3781
|
*/
|
|
3782
|
+
|
|
3783
|
+
|
|
3762
3784
|
var detectFromUserAgentData = function detectFromUserAgentData() {
|
|
3763
3785
|
var userAgentData = window.navigator.userAgentData;
|
|
3764
3786
|
|
|
@@ -3769,7 +3791,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3769
3791
|
var brands = userAgentData.brands;
|
|
3770
3792
|
var i = 0;
|
|
3771
3793
|
|
|
3772
|
-
while (i < brands.
|
|
3794
|
+
while (i < brands.length) {
|
|
3773
3795
|
var _brands$i = brands[i],
|
|
3774
3796
|
brand = _brands$i.brand,
|
|
3775
3797
|
version = _brands$i.version;
|
|
@@ -3790,10 +3812,12 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3790
3812
|
var match = string.match(regexp);
|
|
3791
3813
|
return match && match.length > 0 ? match[1] || undefined : undefined;
|
|
3792
3814
|
};
|
|
3815
|
+
|
|
3793
3816
|
var secondMatch = function secondMatch(regexp, string) {
|
|
3794
3817
|
var match = string.match(regexp);
|
|
3795
3818
|
return match && match.length > 1 ? match[2] || undefined : undefined;
|
|
3796
3819
|
};
|
|
3820
|
+
|
|
3797
3821
|
var userAgentToVersion = function userAgentToVersion(userAgent) {
|
|
3798
3822
|
return firstMatch(/version\/(\d+(\.?_?\d+)+)/i, userAgent) || undefined;
|
|
3799
3823
|
};
|
|
@@ -3926,6 +3950,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3926
3950
|
return null;
|
|
3927
3951
|
}; // TODO
|
|
3928
3952
|
|
|
3953
|
+
|
|
3929
3954
|
var detectIOS = function detectIOS() {
|
|
3930
3955
|
return navigatorToBrowser(window.navigator);
|
|
3931
3956
|
};
|
|
@@ -3949,9 +3974,8 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3949
3974
|
}
|
|
3950
3975
|
|
|
3951
3976
|
return null;
|
|
3952
|
-
};
|
|
3977
|
+
}; // https://github.com/Ahmdrza/detect-browser/blob/26254f85cf92795655a983bfd759d85f3de850c6/detect-browser.js#L1
|
|
3953
3978
|
|
|
3954
|
-
// https://github.com/Ahmdrza/detect-browser/blob/26254f85cf92795655a983bfd759d85f3de850c6/detect-browser.js#L1
|
|
3955
3979
|
|
|
3956
3980
|
var detectorCompose = function detectorCompose(detectors) {
|
|
3957
3981
|
return function () {
|
|
@@ -3974,6 +3998,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
3974
3998
|
|
|
3975
3999
|
var detector = detectorCompose([detectFromUserAgentData, // keep this first
|
|
3976
4000
|
detectOpera, detectInternetExplorer, detectEdge, detectFirefox, detectChrome, detectSafari, detectElectron, detectIOS, detectAndroid]);
|
|
4001
|
+
|
|
3977
4002
|
var detectBrowser = function detectBrowser() {
|
|
3978
4003
|
var _ref = detector() || {},
|
|
3979
4004
|
_ref$name = _ref.name,
|
|
@@ -4170,10 +4195,10 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
4170
4195
|
var detectSupportedFeatures = _async$1(function (_ref4) {
|
|
4171
4196
|
var featuresReport = _ref4.featuresReport,
|
|
4172
4197
|
failFastOnFeatureDetection = _ref4.failFastOnFeatureDetection,
|
|
4173
|
-
inlineImportMapIntoHTML = _ref4.inlineImportMapIntoHTML;
|
|
4174
|
-
// start testing importmap support first and not in paralell
|
|
4198
|
+
inlineImportMapIntoHTML = _ref4.inlineImportMapIntoHTML; // start testing importmap support first and not in paralell
|
|
4175
4199
|
// so that there is not module script loaded beore importmap is injected
|
|
4176
4200
|
// it would log an error in chrome console and return undefined
|
|
4201
|
+
|
|
4177
4202
|
return _await(supportsImportmap({
|
|
4178
4203
|
// chrome supports inline but not remote importmap
|
|
4179
4204
|
// https://github.com/WICG/import-maps/issues/235
|
|
@@ -4327,6 +4352,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
4327
4352
|
}; // const cssImportAssertions = await supportsCssImportAssertions()
|
|
4328
4353
|
// console.log({ cssImportAssertions })
|
|
4329
4354
|
|
|
4355
|
+
|
|
4330
4356
|
var renderCompilationInToolbar = function renderCompilationInToolbar(_ref) {
|
|
4331
4357
|
var compileGroup = _ref.compileGroup;
|
|
4332
4358
|
var browserSupportRootNode = document.querySelector("#browser_support");
|
|
@@ -4454,16 +4480,15 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
4454
4480
|
}
|
|
4455
4481
|
|
|
4456
4482
|
var customCompilerCount = customCompilerPatterns.length;
|
|
4457
|
-
|
|
4458
|
-
if (customCompilerCount === 0) ; else {
|
|
4483
|
+
if (customCompilerCount === 0) ;else {
|
|
4459
4484
|
parts.push("".concat(customCompilerCount, " custom compilers enabled: ").concat(customCompilerPatterns));
|
|
4460
4485
|
}
|
|
4461
|
-
|
|
4462
4486
|
return "\n- ".concat(parts.join("\n- "));
|
|
4463
4487
|
};
|
|
4464
4488
|
|
|
4465
4489
|
var livereloadingAvailableOnServer = false;
|
|
4466
4490
|
var parentEventSourceClient = window.parent.__jsenv_event_source_client__;
|
|
4491
|
+
|
|
4467
4492
|
var initToolbarEventSource = function initToolbarEventSource(_ref) {
|
|
4468
4493
|
var livereloading = _ref.livereloading;
|
|
4469
4494
|
removeForceHideElement(document.querySelector("#eventsource-indicator"));
|
|
@@ -4540,6 +4565,7 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
4540
4565
|
};
|
|
4541
4566
|
|
|
4542
4567
|
var WINDOW_SMALL_WIDTH = 420;
|
|
4568
|
+
|
|
4543
4569
|
var makeToolbarResponsive = function makeToolbarResponsive() {
|
|
4544
4570
|
// apply responsive design on toolbar icons if needed + add listener on resize screen
|
|
4545
4571
|
// ideally we should listen breakpoint once, for now restore toolbar
|
|
@@ -4887,12 +4913,11 @@ html[data-toolbar-visible] #toolbar-trigger {
|
|
|
4887
4913
|
hideToolbar();
|
|
4888
4914
|
});
|
|
4889
4915
|
sendEventToParent("toolbar_ready");
|
|
4890
|
-
|
|
4891
|
-
})
|
|
4916
|
+
}
|
|
4892
4917
|
};
|
|
4893
|
-
})
|
|
4918
|
+
});
|
|
4894
4919
|
|
|
4895
|
-
//# sourceMappingURL=toolbar.main-
|
|
4920
|
+
//# sourceMappingURL=toolbar.main-eb8acf83.js.map</script>
|
|
4896
4921
|
|
|
4897
4922
|
|
|
4898
4923
|
</body></html>
|