sample-cross-fx 1.6.0-beta.7193 → 1.6.0-beta.7201
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/app/{index.16807a.js → index.19c62a.js} +371 -30
- package/app/{index.16807a.js.map → index.19c62a.js.map} +1 -1
- package/app/index.d.ts +23 -0
- package/app/index.html +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +20 -20
|
@@ -54405,6 +54405,7 @@ function createDependencyLoader(convert) {
|
|
|
54405
54405
|
__webpack_require__.r(__webpack_exports__);
|
|
54406
54406
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
54407
54407
|
/* harmony export */ attachLocalEvents: () => (/* binding */ attachLocalEvents),
|
|
54408
|
+
/* harmony export */ blazorRootId: () => (/* binding */ blazorRootId),
|
|
54408
54409
|
/* harmony export */ emitNavigateEvent: () => (/* binding */ emitNavigateEvent),
|
|
54409
54410
|
/* harmony export */ emitPiralEvent: () => (/* binding */ emitPiralEvent),
|
|
54410
54411
|
/* harmony export */ emitRenderEvent: () => (/* binding */ emitRenderEvent),
|
|
@@ -54489,15 +54490,15 @@ function getProps(name, params, sourceRef, fallbackComponent) {
|
|
|
54489
54490
|
order
|
|
54490
54491
|
};
|
|
54491
54492
|
}
|
|
54492
|
-
function emitUpdateEvent(
|
|
54493
|
-
const
|
|
54493
|
+
function emitUpdateEvent(target, name, params, sourceRef, fallbackComponent) {
|
|
54494
|
+
const container = findTarget(target);
|
|
54494
54495
|
const eventInit = {
|
|
54495
54496
|
detail: getProps(name, params, sourceRef, fallbackComponent)
|
|
54496
54497
|
};
|
|
54497
|
-
|
|
54498
|
+
container.dispatchEvent(new CustomEvent(eventNames.update, eventInit));
|
|
54498
54499
|
}
|
|
54499
|
-
function emitRenderEvent(
|
|
54500
|
-
const
|
|
54500
|
+
function emitRenderEvent(target, name, params, sourceRef, fallbackComponent) {
|
|
54501
|
+
const container = findTarget(target);
|
|
54501
54502
|
const eventInit = {
|
|
54502
54503
|
bubbles: true,
|
|
54503
54504
|
detail: {
|
|
@@ -54511,11 +54512,16 @@ function emitRenderEvent(source, name, params, sourceRef, fallbackComponent) {
|
|
|
54511
54512
|
}
|
|
54512
54513
|
};
|
|
54513
54514
|
const delayEmit = () => requestAnimationFrame(() => {
|
|
54514
|
-
if (!isRooted(
|
|
54515
|
-
|
|
54516
|
-
}
|
|
54517
|
-
|
|
54515
|
+
if (!isRooted(container)) {
|
|
54516
|
+
return container.dispatchEvent(new CustomEvent(eventNames.render, eventInit));
|
|
54517
|
+
}
|
|
54518
|
+
const eventParent = eventParents[0];
|
|
54519
|
+
const root = document.getElementById(blazorRootId);
|
|
54520
|
+
// this would be used exclusively by providers
|
|
54521
|
+
if (eventParent && root.getAttribute('render') === 'modern') {
|
|
54522
|
+
return eventParent.dispatchEvent(new CustomEvent(eventNames.render, eventInit));
|
|
54518
54523
|
}
|
|
54524
|
+
delayEmit();
|
|
54519
54525
|
});
|
|
54520
54526
|
delayEmit();
|
|
54521
54527
|
}
|
|
@@ -54528,8 +54534,9 @@ function emitPiralEvent(type, args) {
|
|
|
54528
54534
|
}
|
|
54529
54535
|
}));
|
|
54530
54536
|
}
|
|
54531
|
-
function emitNavigateEvent(
|
|
54532
|
-
findTarget(
|
|
54537
|
+
function emitNavigateEvent(target, to, replace = false, state) {
|
|
54538
|
+
const container = findTarget(target);
|
|
54539
|
+
container.dispatchEvent(new CustomEvent(eventNames.navigate, {
|
|
54533
54540
|
bubbles: true,
|
|
54534
54541
|
detail: {
|
|
54535
54542
|
to,
|
|
@@ -54614,7 +54621,7 @@ function createBase() {
|
|
|
54614
54621
|
el.href = baseUrl;
|
|
54615
54622
|
return document.head.appendChild(el);
|
|
54616
54623
|
}
|
|
54617
|
-
function prepareForStartup() {
|
|
54624
|
+
async function prepareForStartup() {
|
|
54618
54625
|
const originalApplyHotReload = window.Blazor._internal.applyHotReload;
|
|
54619
54626
|
const queue = [];
|
|
54620
54627
|
const applyChanges = api => {
|
|
@@ -54629,15 +54636,19 @@ function prepareForStartup() {
|
|
|
54629
54636
|
window.Blazor._internal.applyHotReload = function (...args) {
|
|
54630
54637
|
queue.push(() => originalApplyHotReload.apply(this, args));
|
|
54631
54638
|
};
|
|
54632
|
-
|
|
54639
|
+
const capabilities = await getCapabilities();
|
|
54640
|
+
if (capabilities.includes('custom-element')) {
|
|
54641
|
+
document.getElementById(_events__WEBPACK_IMPORTED_MODULE_0__.blazorRootId).setAttribute('render', 'modern');
|
|
54642
|
+
}
|
|
54643
|
+
return {
|
|
54633
54644
|
capabilities,
|
|
54634
54645
|
applyChanges
|
|
54635
|
-
}
|
|
54646
|
+
};
|
|
54636
54647
|
}
|
|
54637
54648
|
function createBlazorStarter(publicPath) {
|
|
54638
54649
|
const root = document.body.appendChild(document.createElement('div'));
|
|
54639
54650
|
root.style.display = 'contents';
|
|
54640
|
-
root.id =
|
|
54651
|
+
root.id = _events__WEBPACK_IMPORTED_MODULE_0__.blazorRootId;
|
|
54641
54652
|
if (publicPath) {
|
|
54642
54653
|
const baseElement = document.head.querySelector('base') || createBase();
|
|
54643
54654
|
const originalBase = baseElement.href;
|
|
@@ -57586,7 +57597,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
57586
57597
|
/* harmony export */ });
|
|
57587
57598
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
57588
57599
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
57589
|
-
/* harmony import */ var
|
|
57600
|
+
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react-dom */ "../../../node_modules/react-dom/index.js");
|
|
57601
|
+
/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./components */ "../../framework/piral-core/esm/components/components.js");
|
|
57602
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/foreign.js");
|
|
57603
|
+
|
|
57604
|
+
|
|
57590
57605
|
|
|
57591
57606
|
|
|
57592
57607
|
/**
|
|
@@ -57610,6 +57625,27 @@ class ErrorBoundary extends react__WEBPACK_IMPORTED_MODULE_0__.Component {
|
|
|
57610
57625
|
error
|
|
57611
57626
|
});
|
|
57612
57627
|
}
|
|
57628
|
+
componentDidUpdate(_, prevState) {
|
|
57629
|
+
const {
|
|
57630
|
+
error
|
|
57631
|
+
} = this.state;
|
|
57632
|
+
if (error && !prevState.error) {
|
|
57633
|
+
const {
|
|
57634
|
+
piral,
|
|
57635
|
+
errorType
|
|
57636
|
+
} = this.props;
|
|
57637
|
+
const pilet = piral.meta.name;
|
|
57638
|
+
(0,_utils__WEBPACK_IMPORTED_MODULE_2__.defer)(() => {
|
|
57639
|
+
const container = (0,react_dom__WEBPACK_IMPORTED_MODULE_1__.findDOMNode)(this);
|
|
57640
|
+
piral.emit('unhandled-error', {
|
|
57641
|
+
container,
|
|
57642
|
+
errorType,
|
|
57643
|
+
error,
|
|
57644
|
+
pilet
|
|
57645
|
+
});
|
|
57646
|
+
});
|
|
57647
|
+
}
|
|
57648
|
+
}
|
|
57613
57649
|
render() {
|
|
57614
57650
|
const {
|
|
57615
57651
|
children,
|
|
@@ -57623,7 +57659,7 @@ class ErrorBoundary extends react__WEBPACK_IMPORTED_MODULE_0__.Component {
|
|
|
57623
57659
|
const rest = renderProps;
|
|
57624
57660
|
if (error) {
|
|
57625
57661
|
const pilet = piral.meta.name;
|
|
57626
|
-
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(
|
|
57662
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_3__.RegisteredErrorInfo, {
|
|
57627
57663
|
type: errorType,
|
|
57628
57664
|
error: error,
|
|
57629
57665
|
pilet: pilet,
|
|
@@ -57631,7 +57667,7 @@ class ErrorBoundary extends react__WEBPACK_IMPORTED_MODULE_0__.Component {
|
|
|
57631
57667
|
});
|
|
57632
57668
|
}
|
|
57633
57669
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(react__WEBPACK_IMPORTED_MODULE_0__.Suspense, {
|
|
57634
|
-
fallback: /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(
|
|
57670
|
+
fallback: /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_3__.RegisteredLoadingIndicator, null)
|
|
57635
57671
|
}, children);
|
|
57636
57672
|
}
|
|
57637
57673
|
}
|
|
@@ -59185,7 +59221,7 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59185
59221
|
origin: this.origin
|
|
59186
59222
|
}
|
|
59187
59223
|
});
|
|
59188
|
-
|
|
59224
|
+
(0,_utils__WEBPACK_IMPORTED_MODULE_3__.defer)(() => window.dispatchEvent(ev));
|
|
59189
59225
|
}
|
|
59190
59226
|
}
|
|
59191
59227
|
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_3__.componentName, PiralComponent);
|
|
@@ -59711,6 +59747,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
59711
59747
|
/* harmony export */ componentName: () => (/* binding */ componentName),
|
|
59712
59748
|
/* harmony export */ contentName: () => (/* binding */ contentName),
|
|
59713
59749
|
/* harmony export */ convertComponent: () => (/* binding */ convertComponent),
|
|
59750
|
+
/* harmony export */ defer: () => (/* binding */ defer),
|
|
59714
59751
|
/* harmony export */ extensionName: () => (/* binding */ extensionName),
|
|
59715
59752
|
/* harmony export */ portalName: () => (/* binding */ portalName),
|
|
59716
59753
|
/* harmony export */ renderInDom: () => (/* binding */ renderInDom),
|
|
@@ -59754,6 +59791,9 @@ function renderInDom(context, element, component, props) {
|
|
|
59754
59791
|
}
|
|
59755
59792
|
return attachDomPortal('root', context, element, component, props);
|
|
59756
59793
|
}
|
|
59794
|
+
function defer(cb) {
|
|
59795
|
+
setTimeout(cb, 0);
|
|
59796
|
+
}
|
|
59757
59797
|
|
|
59758
59798
|
/***/ }),
|
|
59759
59799
|
|
|
@@ -60465,14 +60505,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
60465
60505
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
60466
60506
|
/* harmony export */ installPiralDebug: () => (/* binding */ installPiralDebug)
|
|
60467
60507
|
/* harmony export */ });
|
|
60468
|
-
/* harmony import */ var
|
|
60508
|
+
/* harmony import */ var _ExtensionCatalogue__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ExtensionCatalogue */ "../../utilities/piral-debug-utils/esm/ExtensionCatalogue.js");
|
|
60469
60509
|
/* harmony import */ var _decycle__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./decycle */ "../../utilities/piral-debug-utils/esm/decycle.js");
|
|
60510
|
+
/* harmony import */ var _overlay__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./overlay */ "../../utilities/piral-debug-utils/esm/overlay.js");
|
|
60470
60511
|
/* harmony import */ var _visualizer__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./visualizer */ "../../utilities/piral-debug-utils/esm/visualizer.js");
|
|
60471
60512
|
/* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./state */ "../../utilities/piral-debug-utils/esm/state.js");
|
|
60472
60513
|
|
|
60473
60514
|
|
|
60474
60515
|
|
|
60475
60516
|
|
|
60517
|
+
|
|
60476
60518
|
function installPiralDebug(options) {
|
|
60477
60519
|
const {
|
|
60478
60520
|
getGlobalState,
|
|
@@ -60540,6 +60582,15 @@ function installPiralDebug(options) {
|
|
|
60540
60582
|
}
|
|
60541
60583
|
}
|
|
60542
60584
|
},
|
|
60585
|
+
errorOverlay: {
|
|
60586
|
+
value: initialSettings.errorOverlay,
|
|
60587
|
+
type: 'boolean',
|
|
60588
|
+
label: 'Show error overlay',
|
|
60589
|
+
group: 'extensions',
|
|
60590
|
+
onChange(value) {
|
|
60591
|
+
setValue(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.errorOverlay, value ? 'on' : 'off');
|
|
60592
|
+
}
|
|
60593
|
+
},
|
|
60543
60594
|
extensionCatalogue: {
|
|
60544
60595
|
value: initialSettings.extensionCatalogue,
|
|
60545
60596
|
type: 'boolean',
|
|
@@ -60687,12 +60738,12 @@ function installPiralDebug(options) {
|
|
|
60687
60738
|
debug: debugApiVersion,
|
|
60688
60739
|
instance: {
|
|
60689
60740
|
name: "sample-cross-fx",
|
|
60690
|
-
version: "1.6.0-beta.
|
|
60741
|
+
version: "1.6.0-beta.7201",
|
|
60691
60742
|
dependencies: "@angular/common,@angular/compiler,@angular/core,@angular/platform-browser,@angular/platform-browser-dynamic,@webcomponents/webcomponentsjs,angular,aurelia-framework,aurelia-templating-binding,aurelia-templating-resources,aurelia-pal-browser,aurelia-event-aggregator,aurelia-history-browser,hyperapp,inferno,inferno-create-element,mithril,lit-element,solid-js,solid-js/web,piral-ng/common,preact,riot,rxjs,vue,zone.js,tslib,react,react-dom,react-router,react-router-dom"
|
|
60692
60743
|
},
|
|
60693
60744
|
build: {
|
|
60694
|
-
date: "2024-06-
|
|
60695
|
-
cli: "1.6.0-beta.
|
|
60745
|
+
date: "2024-06-21T14:24:47.799Z",
|
|
60746
|
+
cli: "1.6.0-beta.7201",
|
|
60696
60747
|
compat: "1"
|
|
60697
60748
|
}
|
|
60698
60749
|
};
|
|
@@ -60772,12 +60823,18 @@ function installPiralDebug(options) {
|
|
|
60772
60823
|
};
|
|
60773
60824
|
document.body.dispatchEvent = function (ev) {
|
|
60774
60825
|
if (ev.type.startsWith('piral-')) {
|
|
60826
|
+
const name = ev.type.replace('piral-', '');
|
|
60827
|
+
const args = ev.detail.arg;
|
|
60775
60828
|
events.unshift({
|
|
60776
60829
|
id: events.length.toString(),
|
|
60777
|
-
name
|
|
60778
|
-
args: (0,_decycle__WEBPACK_IMPORTED_MODULE_2__.decycle)(
|
|
60830
|
+
name,
|
|
60831
|
+
args: (0,_decycle__WEBPACK_IMPORTED_MODULE_2__.decycle)(args),
|
|
60779
60832
|
time: Date.now()
|
|
60780
60833
|
});
|
|
60834
|
+
if (name === 'unhandled-error' && args.errorType && typeof customElements !== 'undefined' && sessionStorage.getItem(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.errorOverlay) !== 'off') {
|
|
60835
|
+
const ErrorOverlay = customElements.get(_overlay__WEBPACK_IMPORTED_MODULE_3__.overlayId);
|
|
60836
|
+
document.body.appendChild(new ErrorOverlay(args));
|
|
60837
|
+
}
|
|
60781
60838
|
sendMessage({
|
|
60782
60839
|
events,
|
|
60783
60840
|
type: 'events'
|
|
@@ -60794,7 +60851,8 @@ function installPiralDebug(options) {
|
|
|
60794
60851
|
hardRefresh: sessionStorage.getItem(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.hardRefresh) === 'on',
|
|
60795
60852
|
viewOrigins: sessionStorage.getItem(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.viewOrigins) === 'on',
|
|
60796
60853
|
extensionCatalogue: sessionStorage.getItem(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.extensionCatalogue) !== 'off',
|
|
60797
|
-
clearConsole: sessionStorage.getItem(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.clearConsole) === 'on'
|
|
60854
|
+
clearConsole: sessionStorage.getItem(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.clearConsole) === 'on',
|
|
60855
|
+
errorOverlay: sessionStorage.getItem(_state__WEBPACK_IMPORTED_MODULE_0__.settingsKeys.errorOverlay) !== 'off'
|
|
60798
60856
|
});
|
|
60799
60857
|
}
|
|
60800
60858
|
});
|
|
@@ -60831,7 +60889,7 @@ function installPiralDebug(options) {
|
|
|
60831
60889
|
});
|
|
60832
60890
|
integrate({
|
|
60833
60891
|
routes: {
|
|
60834
|
-
[initialSettings.cataloguePath]:
|
|
60892
|
+
[initialSettings.cataloguePath]: _ExtensionCatalogue__WEBPACK_IMPORTED_MODULE_4__.ExtensionCatalogue
|
|
60835
60893
|
},
|
|
60836
60894
|
onChange(previous, current, changed) {
|
|
60837
60895
|
if (changed.state) {
|
|
@@ -61036,6 +61094,287 @@ function installPiletEmulator(requestPilets, options) {
|
|
|
61036
61094
|
|
|
61037
61095
|
/***/ }),
|
|
61038
61096
|
|
|
61097
|
+
/***/ "../../utilities/piral-debug-utils/esm/overlay.js":
|
|
61098
|
+
/*!********************************************************!*\
|
|
61099
|
+
!*** ../../utilities/piral-debug-utils/esm/overlay.js ***!
|
|
61100
|
+
\********************************************************/
|
|
61101
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
61102
|
+
|
|
61103
|
+
"use strict";
|
|
61104
|
+
__webpack_require__.r(__webpack_exports__);
|
|
61105
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
61106
|
+
/* harmony export */ overlayId: () => (/* binding */ overlayId)
|
|
61107
|
+
/* harmony export */ });
|
|
61108
|
+
// Create an element with provided attributes and optional children
|
|
61109
|
+
function h(e, attrs = {}, ...children) {
|
|
61110
|
+
const elem = document.createElement(e);
|
|
61111
|
+
for (const [k, v] of Object.entries(attrs)) {
|
|
61112
|
+
elem.setAttribute(k, v);
|
|
61113
|
+
}
|
|
61114
|
+
elem.append(...children);
|
|
61115
|
+
return elem;
|
|
61116
|
+
}
|
|
61117
|
+
// set :host styles to make playwright detect the element as visible
|
|
61118
|
+
const templateStyle = /*css*/`
|
|
61119
|
+
:host {
|
|
61120
|
+
position: fixed;
|
|
61121
|
+
top: 0;
|
|
61122
|
+
left: 0;
|
|
61123
|
+
width: 100%;
|
|
61124
|
+
height: 100%;
|
|
61125
|
+
z-index: 99999;
|
|
61126
|
+
--monospace: 'SFMono-Regular', Consolas,
|
|
61127
|
+
'Liberation Mono', Menlo, Courier, monospace;
|
|
61128
|
+
--red: #ff5555;
|
|
61129
|
+
--yellow: #e2aa53;
|
|
61130
|
+
--purple: #cfa4ff;
|
|
61131
|
+
--cyan: #2dd9da;
|
|
61132
|
+
--dim: #c9c9c9;
|
|
61133
|
+
|
|
61134
|
+
--window-background: #181818;
|
|
61135
|
+
--window-color: #d8d8d8;
|
|
61136
|
+
}
|
|
61137
|
+
|
|
61138
|
+
.backdrop {
|
|
61139
|
+
position: fixed;
|
|
61140
|
+
z-index: 99999;
|
|
61141
|
+
top: 0;
|
|
61142
|
+
left: 0;
|
|
61143
|
+
width: 100%;
|
|
61144
|
+
height: 100%;
|
|
61145
|
+
overflow-y: scroll;
|
|
61146
|
+
margin: 0;
|
|
61147
|
+
background: rgba(0, 0, 0, 0.66);
|
|
61148
|
+
}
|
|
61149
|
+
|
|
61150
|
+
.window {
|
|
61151
|
+
font-family: var(--monospace);
|
|
61152
|
+
line-height: 1.5;
|
|
61153
|
+
max-width: 80vw;
|
|
61154
|
+
color: var(--window-color);
|
|
61155
|
+
box-sizing: border-box;
|
|
61156
|
+
margin: 30px auto;
|
|
61157
|
+
padding: 2.5vh 4vw;
|
|
61158
|
+
position: relative;
|
|
61159
|
+
background: var(--window-background);
|
|
61160
|
+
border-radius: 6px 6px 8px 8px;
|
|
61161
|
+
box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
|
|
61162
|
+
overflow: hidden;
|
|
61163
|
+
border-top: 8px solid var(--red);
|
|
61164
|
+
direction: ltr;
|
|
61165
|
+
text-align: left;
|
|
61166
|
+
}
|
|
61167
|
+
|
|
61168
|
+
pre {
|
|
61169
|
+
font-family: var(--monospace);
|
|
61170
|
+
font-size: 16px;
|
|
61171
|
+
margin-top: 0;
|
|
61172
|
+
margin-bottom: 1em;
|
|
61173
|
+
overflow-x: scroll;
|
|
61174
|
+
scrollbar-width: none;
|
|
61175
|
+
}
|
|
61176
|
+
|
|
61177
|
+
pre::-webkit-scrollbar {
|
|
61178
|
+
display: none;
|
|
61179
|
+
}
|
|
61180
|
+
|
|
61181
|
+
pre.frame::-webkit-scrollbar {
|
|
61182
|
+
display: block;
|
|
61183
|
+
height: 5px;
|
|
61184
|
+
}
|
|
61185
|
+
|
|
61186
|
+
pre.frame::-webkit-scrollbar-thumb {
|
|
61187
|
+
background: #999;
|
|
61188
|
+
border-radius: 5px;
|
|
61189
|
+
}
|
|
61190
|
+
|
|
61191
|
+
pre.frame {
|
|
61192
|
+
scrollbar-width: thin;
|
|
61193
|
+
}
|
|
61194
|
+
|
|
61195
|
+
.message {
|
|
61196
|
+
line-height: 1.3;
|
|
61197
|
+
font-weight: 600;
|
|
61198
|
+
white-space: pre-wrap;
|
|
61199
|
+
}
|
|
61200
|
+
|
|
61201
|
+
.message-body {
|
|
61202
|
+
color: var(--red);
|
|
61203
|
+
}
|
|
61204
|
+
|
|
61205
|
+
.plugin {
|
|
61206
|
+
color: var(--purple);
|
|
61207
|
+
}
|
|
61208
|
+
|
|
61209
|
+
.file {
|
|
61210
|
+
color: var(--cyan);
|
|
61211
|
+
margin-bottom: 0;
|
|
61212
|
+
white-space: pre-wrap;
|
|
61213
|
+
word-break: break-all;
|
|
61214
|
+
}
|
|
61215
|
+
|
|
61216
|
+
.frame {
|
|
61217
|
+
color: var(--yellow);
|
|
61218
|
+
}
|
|
61219
|
+
|
|
61220
|
+
.stack {
|
|
61221
|
+
font-size: 13px;
|
|
61222
|
+
color: var(--dim);
|
|
61223
|
+
}
|
|
61224
|
+
|
|
61225
|
+
.tip {
|
|
61226
|
+
font-size: 13px;
|
|
61227
|
+
color: #999;
|
|
61228
|
+
border-top: 1px dotted #999;
|
|
61229
|
+
padding-top: 13px;
|
|
61230
|
+
line-height: 1.8;
|
|
61231
|
+
}
|
|
61232
|
+
|
|
61233
|
+
code {
|
|
61234
|
+
font-size: 13px;
|
|
61235
|
+
font-family: var(--monospace);
|
|
61236
|
+
color: var(--yellow);
|
|
61237
|
+
}
|
|
61238
|
+
|
|
61239
|
+
.file-link {
|
|
61240
|
+
text-decoration: underline;
|
|
61241
|
+
cursor: pointer;
|
|
61242
|
+
}
|
|
61243
|
+
|
|
61244
|
+
kbd {
|
|
61245
|
+
line-height: 1.5;
|
|
61246
|
+
font-family: ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
|
61247
|
+
font-size: 0.75rem;
|
|
61248
|
+
font-weight: 700;
|
|
61249
|
+
background-color: rgb(38, 40, 44);
|
|
61250
|
+
color: rgb(166, 167, 171);
|
|
61251
|
+
padding: 0.15rem 0.3rem;
|
|
61252
|
+
border-radius: 0.25rem;
|
|
61253
|
+
border-width: 0.0625rem 0.0625rem 0.1875rem;
|
|
61254
|
+
border-style: solid;
|
|
61255
|
+
border-color: rgb(54, 57, 64);
|
|
61256
|
+
border-image: initial;
|
|
61257
|
+
}
|
|
61258
|
+
`;
|
|
61259
|
+
// Error Template
|
|
61260
|
+
const createTemplate = () => h('div', {
|
|
61261
|
+
class: 'backdrop',
|
|
61262
|
+
part: 'backdrop'
|
|
61263
|
+
}, h('div', {
|
|
61264
|
+
class: 'window',
|
|
61265
|
+
part: 'window'
|
|
61266
|
+
}, h('pre', {
|
|
61267
|
+
class: 'message',
|
|
61268
|
+
part: 'message'
|
|
61269
|
+
}, h('span', {
|
|
61270
|
+
class: 'plugin',
|
|
61271
|
+
part: 'plugin'
|
|
61272
|
+
}), h('span', {
|
|
61273
|
+
class: 'message-body',
|
|
61274
|
+
part: 'message-body'
|
|
61275
|
+
})), h('pre', {
|
|
61276
|
+
class: 'file',
|
|
61277
|
+
part: 'file'
|
|
61278
|
+
}), h('pre', {
|
|
61279
|
+
class: 'frame',
|
|
61280
|
+
part: 'frame'
|
|
61281
|
+
}), h('pre', {
|
|
61282
|
+
class: 'stack',
|
|
61283
|
+
part: 'stack'
|
|
61284
|
+
}), h('div', {
|
|
61285
|
+
class: 'tip',
|
|
61286
|
+
part: 'tip'
|
|
61287
|
+
}, 'Click outside, press ', h('kbd', {}, 'Esc'), ' key, or fix the code to dismiss.', h('br'), 'You can also disable this overlay by setting ', h('code', {
|
|
61288
|
+
part: 'config-option-name'
|
|
61289
|
+
}, 'dbg:error-overlay'), ' to ', h('code', {
|
|
61290
|
+
part: 'config-option-value'
|
|
61291
|
+
}, '"off"'), ' in ', h('code', {
|
|
61292
|
+
part: 'config-file-name'
|
|
61293
|
+
}, 'sessionStorage'), '.')), h('style', {}, templateStyle));
|
|
61294
|
+
const fileRE = /(?:[a-zA-Z]:\\|\/).*?:\d+:\d+/g;
|
|
61295
|
+
const codeframeRE = /^(?:>?\s*\d+\s+\|.*|\s+\|\s*\^.*)\r?\n/gm;
|
|
61296
|
+
const overlayId = 'piral-error-overlay';
|
|
61297
|
+
if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
61298
|
+
class ErrorOverlay extends HTMLElement {
|
|
61299
|
+
constructor(props, links = true) {
|
|
61300
|
+
super();
|
|
61301
|
+
const {
|
|
61302
|
+
error,
|
|
61303
|
+
pilet,
|
|
61304
|
+
errorType
|
|
61305
|
+
} = props;
|
|
61306
|
+
this.root = this.attachShadow({
|
|
61307
|
+
mode: 'open'
|
|
61308
|
+
});
|
|
61309
|
+
this.root.appendChild(createTemplate());
|
|
61310
|
+
codeframeRE.lastIndex = 0;
|
|
61311
|
+
const hasFrame = error.frame && codeframeRE.test(error.frame);
|
|
61312
|
+
const message = hasFrame ? error.message.replace(codeframeRE, '') : error.message;
|
|
61313
|
+
if (pilet) {
|
|
61314
|
+
this.text('.plugin', `[${pilet}] `);
|
|
61315
|
+
}
|
|
61316
|
+
this.text('.message-body', message.trim());
|
|
61317
|
+
const [file] = (error.loc?.file || error.id || 'unknown file').split(`?`);
|
|
61318
|
+
if (error.loc) {
|
|
61319
|
+
this.text('.file', `${file}:${error.loc.line}:${error.loc.column}`, links);
|
|
61320
|
+
} else if (error.id) {
|
|
61321
|
+
this.text('.file', file);
|
|
61322
|
+
}
|
|
61323
|
+
if (hasFrame) {
|
|
61324
|
+
this.text('.frame', error.frame.trim());
|
|
61325
|
+
}
|
|
61326
|
+
this.text('.stack', error.stack, links);
|
|
61327
|
+
this.root.querySelector('.window').addEventListener('click', e => {
|
|
61328
|
+
e.stopPropagation();
|
|
61329
|
+
});
|
|
61330
|
+
this.addEventListener('click', () => {
|
|
61331
|
+
this.close();
|
|
61332
|
+
});
|
|
61333
|
+
this.closeOnEsc = e => {
|
|
61334
|
+
if (e.key === 'Escape' || e.code === 'Escape') {
|
|
61335
|
+
this.close();
|
|
61336
|
+
}
|
|
61337
|
+
};
|
|
61338
|
+
document.addEventListener('keydown', this.closeOnEsc);
|
|
61339
|
+
}
|
|
61340
|
+
text(selector, text, linkFiles = false) {
|
|
61341
|
+
const el = this.root.querySelector(selector);
|
|
61342
|
+
if (linkFiles) {
|
|
61343
|
+
let curIndex = 0;
|
|
61344
|
+
let match;
|
|
61345
|
+
fileRE.lastIndex = 0;
|
|
61346
|
+
while (match = fileRE.exec(text)) {
|
|
61347
|
+
const {
|
|
61348
|
+
0: file,
|
|
61349
|
+
index
|
|
61350
|
+
} = match;
|
|
61351
|
+
if (index != null) {
|
|
61352
|
+
const frag = text.slice(curIndex, index);
|
|
61353
|
+
el.appendChild(document.createTextNode(frag));
|
|
61354
|
+
const link = document.createElement('a');
|
|
61355
|
+
link.textContent = file;
|
|
61356
|
+
link.className = 'file-link';
|
|
61357
|
+
link.onclick = () => {
|
|
61358
|
+
console.log('Clicked');
|
|
61359
|
+
};
|
|
61360
|
+
el.appendChild(link);
|
|
61361
|
+
curIndex += frag.length + file.length;
|
|
61362
|
+
}
|
|
61363
|
+
}
|
|
61364
|
+
} else {
|
|
61365
|
+
el.textContent = text;
|
|
61366
|
+
}
|
|
61367
|
+
}
|
|
61368
|
+
close() {
|
|
61369
|
+
this.parentNode?.removeChild(this);
|
|
61370
|
+
document.removeEventListener('keydown', this.closeOnEsc);
|
|
61371
|
+
}
|
|
61372
|
+
}
|
|
61373
|
+
customElements.define(overlayId, ErrorOverlay);
|
|
61374
|
+
}
|
|
61375
|
+
|
|
61376
|
+
/***/ }),
|
|
61377
|
+
|
|
61039
61378
|
/***/ "../../utilities/piral-debug-utils/esm/routeRefresh.js":
|
|
61040
61379
|
/*!*************************************************************!*\
|
|
61041
61380
|
!*** ../../utilities/piral-debug-utils/esm/routeRefresh.js ***!
|
|
@@ -61087,7 +61426,8 @@ const settingsKeys = {
|
|
|
61087
61426
|
viewOrigins: 'dbg:view-origins',
|
|
61088
61427
|
extensionCatalogue: 'dbg:extension-catalogue',
|
|
61089
61428
|
clearConsole: 'dbg:clear-console',
|
|
61090
|
-
persistSettings: 'dbg:persist-settings-data'
|
|
61429
|
+
persistSettings: 'dbg:persist-settings-data',
|
|
61430
|
+
errorOverlay: 'dbg:error-overlay'
|
|
61091
61431
|
};
|
|
61092
61432
|
const persistKey = settingsKeys.persistSettings;
|
|
61093
61433
|
const persistSettings = !!localStorage.getItem(persistKey);
|
|
@@ -61150,6 +61490,7 @@ function getInitialSettings(defaultValues) {
|
|
|
61150
61490
|
viewOrigins: getValue(settingsKeys.viewOrigins, defaultValues.viewOrigins, false),
|
|
61151
61491
|
extensionCatalogue: getValue(settingsKeys.extensionCatalogue, defaultValues.extensionCatalogue, true),
|
|
61152
61492
|
clearConsole: getValue(settingsKeys.clearConsole, defaultValues.clearConsole, false),
|
|
61493
|
+
errorOverlay: getValue(settingsKeys.errorOverlay, defaultValues.errorOverlay, true),
|
|
61153
61494
|
persistSettings,
|
|
61154
61495
|
cataloguePath: '/$debug-extension-catalogue'
|
|
61155
61496
|
};
|
|
@@ -72376,7 +72717,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72376
72717
|
|
|
72377
72718
|
|
|
72378
72719
|
function fillDependencies(deps) {
|
|
72379
|
-
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_19__;deps["@angular/common@16.2.9"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_19__;deps["@angular/compiler"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/compiler@16.2.9"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/core"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_20__;deps["@angular/core@16.2.9"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_20__;deps["@angular/platform-browser"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_21__;deps["@angular/platform-browser@16.2.9"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_21__;deps["@angular/platform-browser-dynamic"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_22__;deps["@angular/platform-browser-dynamic@16.2.9"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_22__;deps["@webcomponents/webcomponentsjs"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_1__;deps["@webcomponents/webcomponentsjs@2.6.0"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_1__;deps["angular"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_2__;deps["angular@1.8.3"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_2__;deps["aurelia-framework"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_3__;deps["aurelia-framework@1.4.1"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_3__;deps["aurelia-templating-binding"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_4__;deps["aurelia-templating-binding@1.6.0"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_4__;deps["aurelia-templating-resources"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_5__;deps["aurelia-templating-resources@1.14.3"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_5__;deps["aurelia-pal-browser"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-pal-browser@1.8.1"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-event-aggregator"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-event-aggregator@1.0.3"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-history-browser"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_8__;deps["aurelia-history-browser@1.4.0"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_8__;deps["hyperapp"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_9__;deps["hyperapp@1.2.10"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_9__;deps["inferno"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_10__;deps["inferno@7.4.11"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_10__;deps["inferno-create-element"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_11__;deps["inferno-create-element@7.4.11"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_11__;deps["mithril"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_12__;deps["mithril@2.2.2"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_12__;deps["lit-element"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_13__;deps["lit-element@2.5.1"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_13__;deps["solid-js"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_23__;deps["solid-js@1.8.2"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_23__;deps["solid-js/web"]=_node_modules_solid_js_web_dist_dev_js__WEBPACK_IMPORTED_MODULE_24__;deps["piral-ng/common"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng/common@1.6.0-beta.
|
|
72720
|
+
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_19__;deps["@angular/common@16.2.9"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_19__;deps["@angular/compiler"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/compiler@16.2.9"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/core"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_20__;deps["@angular/core@16.2.9"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_20__;deps["@angular/platform-browser"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_21__;deps["@angular/platform-browser@16.2.9"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_21__;deps["@angular/platform-browser-dynamic"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_22__;deps["@angular/platform-browser-dynamic@16.2.9"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_22__;deps["@webcomponents/webcomponentsjs"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_1__;deps["@webcomponents/webcomponentsjs@2.6.0"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_1__;deps["angular"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_2__;deps["angular@1.8.3"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_2__;deps["aurelia-framework"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_3__;deps["aurelia-framework@1.4.1"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_3__;deps["aurelia-templating-binding"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_4__;deps["aurelia-templating-binding@1.6.0"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_4__;deps["aurelia-templating-resources"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_5__;deps["aurelia-templating-resources@1.14.3"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_5__;deps["aurelia-pal-browser"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-pal-browser@1.8.1"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-event-aggregator"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-event-aggregator@1.0.3"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-history-browser"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_8__;deps["aurelia-history-browser@1.4.0"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_8__;deps["hyperapp"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_9__;deps["hyperapp@1.2.10"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_9__;deps["inferno"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_10__;deps["inferno@7.4.11"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_10__;deps["inferno-create-element"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_11__;deps["inferno-create-element@7.4.11"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_11__;deps["mithril"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_12__;deps["mithril@2.2.2"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_12__;deps["lit-element"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_13__;deps["lit-element@2.5.1"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_13__;deps["solid-js"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_23__;deps["solid-js@1.8.2"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_23__;deps["solid-js/web"]=_node_modules_solid_js_web_dist_dev_js__WEBPACK_IMPORTED_MODULE_24__;deps["piral-ng/common"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng/common@1.6.0-beta.7201"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.6.0-beta.7201"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["preact"]=_node_modules_preact_dist_preact_module_js__WEBPACK_IMPORTED_MODULE_14__;deps["preact@10.18.1"]=_node_modules_preact_dist_preact_module_js__WEBPACK_IMPORTED_MODULE_14__;deps["riot"]=_node_modules_riot_riot_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["riot@4.14.0"]=_node_modules_riot_riot_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["rxjs"]=_node_modules_rxjs_dist_esm5_index_js__WEBPACK_IMPORTED_MODULE_26__;deps["rxjs@7.5.6"]=_node_modules_rxjs_dist_esm5_index_js__WEBPACK_IMPORTED_MODULE_26__;deps["vue"]=_node_modules_vue_dist_vue_runtime_esm_js__WEBPACK_IMPORTED_MODULE_27__;deps["vue@2.7.14"]=_node_modules_vue_dist_vue_runtime_esm_js__WEBPACK_IMPORTED_MODULE_27__;deps["zone.js"]=_node_modules_zone_js_fesm2015_zone_js__WEBPACK_IMPORTED_MODULE_16__;deps["zone.js@0.13.3"]=_node_modules_zone_js_fesm2015_zone_js__WEBPACK_IMPORTED_MODULE_16__;deps["tslib"]=_node_modules_tslib_tslib_es6_js__WEBPACK_IMPORTED_MODULE_28__;deps["tslib@2.5.2"]=_node_modules_tslib_tslib_es6_js__WEBPACK_IMPORTED_MODULE_28__;deps["react"]=_node_modules_react_index_js__WEBPACK_IMPORTED_MODULE_17__;deps["react@18.2.0"]=_node_modules_react_index_js__WEBPACK_IMPORTED_MODULE_17__;deps["react-dom"]=/*#__PURE__*/ (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_18___namespace_cache || (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_18___namespace_cache = __webpack_require__.t(_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_18__, 2)));deps["react-dom@18.2.0"]=/*#__PURE__*/ (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_18___namespace_cache || (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_18___namespace_cache = __webpack_require__.t(_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_18__, 2)));deps["react-router"]=_node_modules_react_router_esm_react_router_js__WEBPACK_IMPORTED_MODULE_29__;deps["react-router@5.3.4"]=_node_modules_react_router_esm_react_router_js__WEBPACK_IMPORTED_MODULE_29__;deps["react-router-dom"]=_node_modules_react_router_dom_esm_react_router_dom_js__WEBPACK_IMPORTED_MODULE_30__;deps["react-router-dom@5.3.4"]=_node_modules_react_router_dom_esm_react_router_dom_js__WEBPACK_IMPORTED_MODULE_30__
|
|
72380
72721
|
}
|
|
72381
72722
|
|
|
72382
72723
|
|
|
@@ -227586,4 +227927,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(piral
|
|
|
227586
227927
|
|
|
227587
227928
|
/******/ })()
|
|
227588
227929
|
;
|
|
227589
|
-
//# sourceMappingURL=index.
|
|
227930
|
+
//# sourceMappingURL=index.19c62a.js.map
|