sample-cross-fx 1.8.0-beta.7544 → 1.8.0-beta.7655
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.
|
@@ -54448,6 +54448,7 @@ function dispatchToRoot(event) {
|
|
|
54448
54448
|
if ((0,_navigation__WEBPACK_IMPORTED_MODULE_1__.isInternalNavigation)(event)) {
|
|
54449
54449
|
(0,_navigation__WEBPACK_IMPORTED_MODULE_1__.performInternalNavigation)(event);
|
|
54450
54450
|
}
|
|
54451
|
+
const MutationEvent = window.MutationEvent;
|
|
54451
54452
|
if ((typeof MutationEvent === 'undefined' || !(event instanceof MutationEvent)) && !event.processed) {
|
|
54452
54453
|
const eventClone = new event.constructor(event.type, event);
|
|
54453
54454
|
document.getElementById(blazorRootId)?.dispatchEvent(eventClone);
|
|
@@ -59056,15 +59057,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
59056
59057
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
59057
59058
|
/* harmony export */ renderElement: () => (/* binding */ renderElement)
|
|
59058
59059
|
/* harmony export */ });
|
|
59059
|
-
/* harmony import */ var
|
|
59060
|
+
/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../components */ "../../framework/piral-core/lib/components/ExtensionSlot.js");
|
|
59061
|
+
/* harmony import */ var _app_codegen__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../app.codegen */ "../../framework/piral-core/app.codegen");
|
|
59060
59062
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/lib/utils/helpers.js");
|
|
59061
59063
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/lib/utils/extension.js");
|
|
59062
59064
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/lib/utils/compare.js");
|
|
59063
|
-
/* harmony import */ var
|
|
59065
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/lib/utils/foreign.js");
|
|
59066
|
+
|
|
59064
59067
|
|
|
59065
59068
|
|
|
59066
59069
|
if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
59067
|
-
const contents = 'contents';
|
|
59068
59070
|
/**
|
|
59069
59071
|
* This is a nice abstraction allowing anyone to actually use the extension system
|
|
59070
59072
|
* brought by Piral. Not all props of the extension system are actually exposed.
|
|
@@ -59145,7 +59147,7 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59145
59147
|
}
|
|
59146
59148
|
}
|
|
59147
59149
|
connectedCallback() {
|
|
59148
|
-
this
|
|
59150
|
+
(0,_app_codegen__WEBPACK_IMPORTED_MODULE_3__.applyStyle)(this);
|
|
59149
59151
|
if (this.isConnected) {
|
|
59150
59152
|
this.dispatchEvent(new CustomEvent('render-html', {
|
|
59151
59153
|
bubbles: true,
|
|
@@ -59179,7 +59181,7 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59179
59181
|
return ['name', 'params', 'empty-skips-render'];
|
|
59180
59182
|
}
|
|
59181
59183
|
}
|
|
59182
|
-
customElements.define(
|
|
59184
|
+
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_4__.extensionName, PiralExtension);
|
|
59183
59185
|
/**
|
|
59184
59186
|
* This is a boundary to host elements from other frameworks - effectively vanishing
|
|
59185
59187
|
* at runtime.
|
|
@@ -59192,10 +59194,10 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59192
59194
|
*/
|
|
59193
59195
|
class PiralPortal extends HTMLElement {
|
|
59194
59196
|
connectedCallback() {
|
|
59195
|
-
this
|
|
59197
|
+
(0,_app_codegen__WEBPACK_IMPORTED_MODULE_3__.applyStyle)(this);
|
|
59196
59198
|
}
|
|
59197
59199
|
}
|
|
59198
|
-
customElements.define(
|
|
59200
|
+
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_4__.portalName, PiralPortal);
|
|
59199
59201
|
/**
|
|
59200
59202
|
* This is a virtual element to aggregate rendering from other frameworks, mostly
|
|
59201
59203
|
* used like piral-portal, but without context-hosting capabilities. This would
|
|
@@ -59209,10 +59211,10 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59209
59211
|
*/
|
|
59210
59212
|
class PiralSlot extends HTMLElement {
|
|
59211
59213
|
connectedCallback() {
|
|
59212
|
-
this
|
|
59214
|
+
(0,_app_codegen__WEBPACK_IMPORTED_MODULE_3__.applyStyle)(this);
|
|
59213
59215
|
}
|
|
59214
59216
|
}
|
|
59215
|
-
customElements.define(
|
|
59217
|
+
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_4__.slotName, PiralSlot);
|
|
59216
59218
|
/**
|
|
59217
59219
|
* This is a virtual element to render children defined in React / by Piral in other
|
|
59218
59220
|
* frameworks.
|
|
@@ -59240,7 +59242,7 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59240
59242
|
this.dispose = _utils__WEBPACK_IMPORTED_MODULE_0__.noop;
|
|
59241
59243
|
}
|
|
59242
59244
|
connectedCallback() {
|
|
59243
|
-
this
|
|
59245
|
+
(0,_app_codegen__WEBPACK_IMPORTED_MODULE_3__.applyStyle)(this);
|
|
59244
59246
|
const cid = this.getAttribute('cid');
|
|
59245
59247
|
const content = PiralContent.contentAssignments[cid];
|
|
59246
59248
|
const portal = this.closest('piral-portal');
|
|
@@ -59264,7 +59266,7 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59264
59266
|
window.assignContent = (cid, content) => {
|
|
59265
59267
|
PiralContent.contentAssignments[cid] = content;
|
|
59266
59268
|
};
|
|
59267
|
-
customElements.define(
|
|
59269
|
+
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_4__.contentName, PiralContent);
|
|
59268
59270
|
/**
|
|
59269
59271
|
* This is a virtual element to indicate that the contained content is
|
|
59270
59272
|
* rendered from a micro frontend's component. It will be used by the
|
|
@@ -59280,7 +59282,7 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59280
59282
|
return this.getAttribute('origin');
|
|
59281
59283
|
}
|
|
59282
59284
|
connectedCallback() {
|
|
59283
|
-
this
|
|
59285
|
+
(0,_app_codegen__WEBPACK_IMPORTED_MODULE_3__.applyStyle)(this);
|
|
59284
59286
|
this.deferEvent('add-component');
|
|
59285
59287
|
}
|
|
59286
59288
|
disconnectedCallback() {
|
|
@@ -59293,14 +59295,14 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59293
59295
|
origin: this.origin
|
|
59294
59296
|
}
|
|
59295
59297
|
});
|
|
59296
|
-
(0,
|
|
59298
|
+
(0,_utils__WEBPACK_IMPORTED_MODULE_4__.defer)(() => window.dispatchEvent(ev));
|
|
59297
59299
|
}
|
|
59298
59300
|
}
|
|
59299
|
-
customElements.define(
|
|
59301
|
+
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_4__.componentName, PiralComponent);
|
|
59300
59302
|
}
|
|
59301
59303
|
function renderElement(context, element, props) {
|
|
59302
59304
|
if (typeof window !== 'undefined') {
|
|
59303
|
-
let [id, portal] = (0,
|
|
59305
|
+
let [id, portal] = (0,_utils__WEBPACK_IMPORTED_MODULE_4__.renderInDom)(context, element, _components__WEBPACK_IMPORTED_MODULE_5__.ExtensionSlot, props);
|
|
59304
59306
|
const evName = 'extension-props-changed';
|
|
59305
59307
|
const handler = ev => update(ev.detail);
|
|
59306
59308
|
const dispose = () => {
|
|
@@ -59308,7 +59310,7 @@ function renderElement(context, element, props) {
|
|
|
59308
59310
|
element.removeEventListener(evName, handler);
|
|
59309
59311
|
};
|
|
59310
59312
|
const update = newProps => {
|
|
59311
|
-
[id, portal] = (0,
|
|
59313
|
+
[id, portal] = (0,_utils__WEBPACK_IMPORTED_MODULE_4__.changeDomPortal)(id, portal, context, element, _components__WEBPACK_IMPORTED_MODULE_5__.ExtensionSlot, newProps);
|
|
59312
59314
|
};
|
|
59313
59315
|
element.addEventListener(evName, handler);
|
|
59314
59316
|
return [dispose, update];
|
|
@@ -60900,12 +60902,12 @@ function installPiralDebug(options) {
|
|
|
60900
60902
|
debug: debugApiVersion,
|
|
60901
60903
|
instance: {
|
|
60902
60904
|
name: "sample-cross-fx",
|
|
60903
|
-
version: "1.8.0-beta.
|
|
60905
|
+
version: "1.8.0-beta.7655",
|
|
60904
60906
|
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"
|
|
60905
60907
|
},
|
|
60906
60908
|
build: {
|
|
60907
|
-
date: "2024-
|
|
60908
|
-
cli: "1.8.0-beta.
|
|
60909
|
+
date: "2024-12-15T15:14:00.262Z",
|
|
60910
|
+
cli: "1.8.0-beta.7655",
|
|
60909
60911
|
compat: "1"
|
|
60910
60912
|
}
|
|
60911
60913
|
};
|
|
@@ -61138,6 +61140,8 @@ function decycle(obj) {
|
|
|
61138
61140
|
return `<error>`;
|
|
61139
61141
|
} else if (_value instanceof Node) {
|
|
61140
61142
|
return `<node>`;
|
|
61143
|
+
} else if (_value['$$typeof'] === Symbol.for('react.element')) {
|
|
61144
|
+
return '<react.element>';
|
|
61141
61145
|
} else if (typeof _value === 'object') {
|
|
61142
61146
|
for (let i = 0; i < objects.length; i++) {
|
|
61143
61147
|
if (objects[i] === _value) {
|
|
@@ -72780,6 +72784,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72780
72784
|
var _node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_18___namespace_cache;
|
|
72781
72785
|
__webpack_require__.r(__webpack_exports__);
|
|
72782
72786
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
72787
|
+
/* harmony export */ applyStyle: () => (/* binding */ applyStyle),
|
|
72783
72788
|
/* harmony export */ createDefaultState: () => (/* binding */ createDefaultState),
|
|
72784
72789
|
/* harmony export */ createNavigation: () => (/* reexport safe */ piral_core_lib_defaults_navigator_v5_js__WEBPACK_IMPORTED_MODULE_31__.createNavigation),
|
|
72785
72790
|
/* harmony export */ createRedirect: () => (/* reexport safe */ piral_core_lib_defaults_navigator_v5_js__WEBPACK_IMPORTED_MODULE_31__.createRedirect),
|
|
@@ -72878,8 +72883,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72878
72883
|
|
|
72879
72884
|
|
|
72880
72885
|
|
|
72886
|
+
function applyStyle(element) {
|
|
72887
|
+
element.style.display = 'contents';
|
|
72888
|
+
}
|
|
72889
|
+
|
|
72890
|
+
|
|
72881
72891
|
function fillDependencies(deps) {
|
|
72882
|
-
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.8.0-beta.
|
|
72892
|
+
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.8.0-beta.7655"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.8.0-beta.7655"]=_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__
|
|
72883
72893
|
}
|
|
72884
72894
|
|
|
72885
72895
|
|
|
@@ -220055,7 +220065,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
220055
220065
|
var load = loader8[REGISTRY][id];
|
|
220056
220066
|
if (load) return load;
|
|
220057
220067
|
var importerSetters = [];
|
|
220058
|
-
var ns = Object.create(null);
|
|
220068
|
+
var ns = /* @__PURE__ */Object.create(null);
|
|
220059
220069
|
if (toStringTag$1) Object.defineProperty(ns, toStringTag$1, {
|
|
220060
220070
|
value: "Module"
|
|
220061
220071
|
});
|
|
@@ -220123,17 +220133,34 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
220123
220133
|
});
|
|
220124
220134
|
return load = loader8[REGISTRY][id] = {
|
|
220125
220135
|
id,
|
|
220136
|
+
// importerSetters, the setters functions registered to this dependency
|
|
220137
|
+
// we retain this to add more later
|
|
220126
220138
|
i: importerSetters,
|
|
220139
|
+
// module namespace object
|
|
220127
220140
|
n: ns,
|
|
220141
|
+
// extra module information for import assertion
|
|
220142
|
+
// shape like: { assert: { type: 'xyz' } }
|
|
220128
220143
|
m: meta,
|
|
220144
|
+
// instantiate
|
|
220129
220145
|
I: instantiatePromise,
|
|
220146
|
+
// link
|
|
220130
220147
|
L: linkPromise,
|
|
220148
|
+
// whether it has hoisted exports
|
|
220131
220149
|
h: false,
|
|
220150
|
+
// On instantiate completion we have populated:
|
|
220151
|
+
// dependency load records
|
|
220132
220152
|
d: void 0,
|
|
220153
|
+
// execution function
|
|
220133
220154
|
e: void 0,
|
|
220155
|
+
// On execution we have populated:
|
|
220156
|
+
// the execution error if any
|
|
220134
220157
|
er: void 0,
|
|
220158
|
+
// in the case of TLA, the execution promise
|
|
220135
220159
|
E: void 0,
|
|
220160
|
+
// On execution, L, I, E cleared
|
|
220161
|
+
// Promise for top-level completion
|
|
220136
220162
|
C: void 0,
|
|
220163
|
+
// parent instantiator / executor
|
|
220137
220164
|
p: void 0
|
|
220138
220165
|
};
|
|
220139
220166
|
}
|
|
@@ -220160,7 +220187,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
220160
220187
|
return load.n;
|
|
220161
220188
|
});
|
|
220162
220189
|
}
|
|
220163
|
-
var nullContext = Object.freeze(Object.create(null));
|
|
220190
|
+
var nullContext = Object.freeze( /* @__PURE__ */Object.create(null));
|
|
220164
220191
|
function postOrderExec(loader8, load, seen) {
|
|
220165
220192
|
if (seen[load.id]) return;
|
|
220166
220193
|
seen[load.id] = true;
|
|
@@ -220485,7 +220512,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
220485
220512
|
}));
|
|
220486
220513
|
});
|
|
220487
220514
|
if (wasmContentType.test(contentType)) return (WebAssembly.compileStreaming ? WebAssembly.compileStreaming(res) : res.arrayBuffer().then(WebAssembly.compile)).then(function (module) {
|
|
220488
|
-
if (!global2.System.wasmModules) global2.System.wasmModules = Object.create(null);
|
|
220515
|
+
if (!global2.System.wasmModules) global2.System.wasmModules = /* @__PURE__ */Object.create(null);
|
|
220489
220516
|
global2.System.wasmModules[url] = module;
|
|
220490
220517
|
var deps = [];
|
|
220491
220518
|
var setterSources = [];
|
|
@@ -220524,7 +220551,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
220524
220551
|
if (toStringTag && module[toStringTag] === "Module") {
|
|
220525
220552
|
ns = module;
|
|
220526
220553
|
} else {
|
|
220527
|
-
ns = Object.assign(Object.create(null), module);
|
|
220554
|
+
ns = Object.assign( /* @__PURE__ */Object.create(null), module);
|
|
220528
220555
|
if (toStringTag) Object.defineProperty(ns, toStringTag, {
|
|
220529
220556
|
value: "Module"
|
|
220530
220557
|
});
|
|
@@ -220610,8 +220637,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
220610
220637
|
System2.constructor = SystemJS;
|
|
220611
220638
|
var firstNamedDefine, firstName;
|
|
220612
220639
|
function setRegisterRegistry(systemInstance) {
|
|
220613
|
-
systemInstance.registerRegistry = Object.create(null);
|
|
220614
|
-
systemInstance.namedRegisterAliases = Object.create(null);
|
|
220640
|
+
systemInstance.registerRegistry = /* @__PURE__ */Object.create(null);
|
|
220641
|
+
systemInstance.namedRegisterAliases = /* @__PURE__ */Object.create(null);
|
|
220615
220642
|
}
|
|
220616
220643
|
var register = systemJSPrototype.register;
|
|
220617
220644
|
systemJSPrototype.register = function (name, deps, declare, metas) {
|
|
@@ -221599,9 +221626,13 @@ function createListener(state = {}) {
|
|
|
221599
221626
|
return events;
|
|
221600
221627
|
}
|
|
221601
221628
|
|
|
221602
|
-
/*!
|
|
221603
|
-
|
|
221604
|
-
|
|
221629
|
+
/*! Bundled license information:
|
|
221630
|
+
|
|
221631
|
+
systemjs/dist/system.js:
|
|
221632
|
+
(*!
|
|
221633
|
+
* SystemJS 6.14.2
|
|
221634
|
+
*)
|
|
221635
|
+
*/
|
|
221605
221636
|
|
|
221606
221637
|
/***/ }),
|
|
221607
221638
|
|
|
@@ -228089,4 +228120,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(piral
|
|
|
228089
228120
|
|
|
228090
228121
|
/******/ })()
|
|
228091
228122
|
;
|
|
228092
|
-
//# sourceMappingURL=index.
|
|
228123
|
+
//# sourceMappingURL=index.b99a96.js.map
|