sample-cross-fx 1.5.6 → 1.6.0-beta.7144

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.
@@ -53999,14 +53999,15 @@ function makeUrl(href) {
53999
53999
  }
54000
54000
  function createConverter(lazy, opts, language, logLevel) {
54001
54001
  const bootLoader = (0,_interop__WEBPACK_IMPORTED_MODULE_1__.createBootLoader)(_infra_codegen__WEBPACK_IMPORTED_MODULE_0__["default"].url, _infra_codegen__WEBPACK_IMPORTED_MODULE_0__["default"].satellites);
54002
- const boot = opts => bootLoader(opts).then(async res => {
54003
- const [_, capabilities] = res;
54004
- if (capabilities.includes('logging')) {
54005
- if (typeof logLevel === 'number') {
54006
- await (0,_interop__WEBPACK_IMPORTED_MODULE_1__.setLogLevel)(logLevel);
54007
- }
54002
+ const boot = opts => bootLoader(opts).then(async ({
54003
+ config,
54004
+ first
54005
+ }) => {
54006
+ const [_, capabilities] = config;
54007
+ if (typeof logLevel === 'number' && capabilities.includes('logging')) {
54008
+ await (0,_interop__WEBPACK_IMPORTED_MODULE_1__.setLogLevel)(logLevel);
54008
54009
  }
54009
- if (capabilities.includes('events')) {
54010
+ if (first && capabilities.includes('events')) {
54010
54011
  const eventDispatcher = document.body.dispatchEvent;
54011
54012
  // listen to all events for forwarding them
54012
54013
  document.body.dispatchEvent = function (ev) {
@@ -54032,7 +54033,7 @@ function createConverter(lazy, opts, language, logLevel) {
54032
54033
  }
54033
54034
  }
54034
54035
  window.dispatchEvent(new CustomEvent('loaded-blazor-core'));
54035
- return res;
54036
+ return config;
54036
54037
  });
54037
54038
  let loader = !lazy && boot(opts);
54038
54039
  let listener = undefined;
@@ -54056,10 +54057,9 @@ function createConverter(lazy, opts, language, logLevel) {
54056
54057
  } = data;
54057
54058
  const nav = ctx.navigation;
54058
54059
  el.setAttribute('data-blazor-pilet-root', 'true');
54059
- (0,_events__WEBPACK_IMPORTED_MODULE_2__.addGlobalEventListeners)(el);
54060
54060
  locals.state = 'fresh';
54061
54061
  locals.next = noop;
54062
- locals.dispose = (0,_events__WEBPACK_IMPORTED_MODULE_2__.attachEvents)(el, ev => {
54062
+ locals.dispose = (0,_events__WEBPACK_IMPORTED_MODULE_2__.attachLocalEvents)(el, ev => {
54063
54063
  ev.stopPropagation();
54064
54064
  const {
54065
54065
  target,
@@ -54074,13 +54074,6 @@ function createConverter(lazy, opts, language, logLevel) {
54074
54074
  replace
54075
54075
  } = ev.detail;
54076
54076
  replace ? nav.replace(to, state) : nav.push(to, state);
54077
- }, ev => {
54078
- ev.stopPropagation();
54079
- const {
54080
- type,
54081
- args
54082
- } = ev.detail;
54083
- piral.emit(type, args);
54084
54077
  });
54085
54078
  function mountClassic(config) {
54086
54079
  return (0,_interop__WEBPACK_IMPORTED_MODULE_1__.activate)(moduleName, props).then(refId => {
@@ -54148,7 +54141,6 @@ function createConverter(lazy, opts, language, logLevel) {
54148
54141
  });
54149
54142
  },
54150
54143
  unmount(el, locals) {
54151
- (0,_events__WEBPACK_IMPORTED_MODULE_2__.removeGlobalEventListeners)(el);
54152
54144
  el.removeAttribute('data-blazor-pilet-root');
54153
54145
  locals.dispose();
54154
54146
  enqueueChange(locals, locals.unmount);
@@ -54408,12 +54400,10 @@ function createDependencyLoader(convert) {
54408
54400
  "use strict";
54409
54401
  __webpack_require__.r(__webpack_exports__);
54410
54402
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
54411
- /* harmony export */ addGlobalEventListeners: () => (/* binding */ addGlobalEventListeners),
54412
- /* harmony export */ attachEvents: () => (/* binding */ attachEvents),
54403
+ /* harmony export */ attachLocalEvents: () => (/* binding */ attachLocalEvents),
54413
54404
  /* harmony export */ emitNavigateEvent: () => (/* binding */ emitNavigateEvent),
54414
54405
  /* harmony export */ emitPiralEvent: () => (/* binding */ emitPiralEvent),
54415
- /* harmony export */ emitRenderEvent: () => (/* binding */ emitRenderEvent),
54416
- /* harmony export */ removeGlobalEventListeners: () => (/* binding */ removeGlobalEventListeners)
54406
+ /* harmony export */ emitRenderEvent: () => (/* binding */ emitRenderEvent)
54417
54407
  /* harmony export */ });
54418
54408
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
54419
54409
  /* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
@@ -54426,7 +54416,7 @@ const globalEventNames = ['abort', 'blur', 'change', 'error', 'focus', 'load', '
54426
54416
  const eventNames = {
54427
54417
  render: 'render-blazor-extension',
54428
54418
  navigate: 'navigate-blazor',
54429
- piral: 'piral-blazor'
54419
+ forward: 'forward-event'
54430
54420
  };
54431
54421
  function isRooted(target) {
54432
54422
  let parent = target.parentElement;
@@ -54498,7 +54488,7 @@ function emitRenderEvent(source, name, params, sourceRef, fallbackComponent) {
54498
54488
  delayEmit();
54499
54489
  }
54500
54490
  function emitPiralEvent(type, args) {
54501
- document.body.dispatchEvent(new CustomEvent(eventNames.piral, {
54491
+ document.body.dispatchEvent(new CustomEvent(eventNames.forward, {
54502
54492
  bubbles: false,
54503
54493
  detail: {
54504
54494
  type,
@@ -54516,28 +54506,18 @@ function emitNavigateEvent(source, to, replace = false, state) {
54516
54506
  }
54517
54507
  }));
54518
54508
  }
54519
- function attachEvents(host, render, navigate, forward) {
54520
- eventParents.push(host);
54509
+ function attachLocalEvents(host, render, navigate) {
54521
54510
  host.addEventListener(eventNames.render, render, false);
54522
54511
  host.addEventListener(eventNames.navigate, navigate, false);
54523
- if (eventParents.length === 1) {
54524
- document.body.addEventListener(eventNames.piral, forward, false);
54525
- }
54512
+ // install proxy handlers
54513
+ globalEventNames.forEach(eventName => host.addEventListener(eventName, dispatchToRoot));
54526
54514
  return () => {
54527
- eventParents.splice(eventParents.indexOf(host), 1);
54528
54515
  host.removeEventListener(eventNames.render, render, false);
54529
54516
  host.removeEventListener(eventNames.navigate, navigate, false);
54530
- if (eventParents.length === 0) {
54531
- document.body.removeEventListener(eventNames.piral, forward, false);
54532
- }
54517
+ // uninstall proxy handlers
54518
+ globalEventNames.forEach(eventName => host.removeEventListener(eventName, dispatchToRoot));
54533
54519
  };
54534
54520
  }
54535
- function addGlobalEventListeners(el) {
54536
- globalEventNames.forEach(eventName => el.addEventListener(eventName, dispatchToRoot));
54537
- }
54538
- function removeGlobalEventListeners(el) {
54539
- globalEventNames.forEach(eventName => el.removeEventListener(eventName, dispatchToRoot));
54540
- }
54541
54521
 
54542
54522
  /***/ }),
54543
54523
 
@@ -54779,13 +54759,18 @@ function initialize(scriptUrl, publicPath, opts = {}) {
54779
54759
  }
54780
54760
  function createBootLoader(scriptUrl, extraScriptUrls) {
54781
54761
  const publicPath = computePath();
54782
- return opts => {
54783
- if (typeof window.$blazorLoader === 'undefined') {
54762
+ return async opts => {
54763
+ const first = typeof window.$blazorLoader === 'undefined';
54764
+ if (first) {
54784
54765
  window.dispatchEvent(new CustomEvent('loading-blazor-core'));
54785
54766
  // we load all satellite scripts before we initialize blazor
54786
54767
  window.$blazorLoader = Promise.all(extraScriptUrls.map(addScript)).then(() => initialize(scriptUrl, publicPath, opts));
54787
54768
  }
54788
- return window.$blazorLoader;
54769
+ const config = await window.$blazorLoader;
54770
+ return {
54771
+ config,
54772
+ first
54773
+ };
54789
54774
  };
54790
54775
  }
54791
54776
 
@@ -57182,6 +57167,9 @@ __webpack_require__.r(__webpack_exports__);
57182
57167
 
57183
57168
 
57184
57169
 
57170
+ const renderHtmlEvent = 'render-html';
57171
+ const renderContentEvent = 'render-content';
57172
+ const forwardEventEvent = 'forward-event';
57185
57173
  const RootListener = () => {
57186
57174
  const context = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalStateContext)();
57187
57175
  react__WEBPACK_IMPORTED_MODULE_0__.useLayoutEffect(() => {
@@ -57208,11 +57196,21 @@ const RootListener = () => {
57208
57196
  context.showPortal(portalId, portal);
57209
57197
  target.dispose = dispose;
57210
57198
  };
57211
- document.body.addEventListener('render-html', renderHtml, false);
57212
- window.addEventListener('render-content', renderContent, false);
57199
+ const forwardEvent = ev => {
57200
+ ev.stopPropagation();
57201
+ const {
57202
+ type,
57203
+ args
57204
+ } = ev.detail;
57205
+ context.emit(type, args);
57206
+ };
57207
+ document.body.addEventListener(renderHtmlEvent, renderHtml, false);
57208
+ document.body.addEventListener(forwardEventEvent, forwardEvent, false);
57209
+ window.addEventListener(renderContentEvent, renderContent, false);
57213
57210
  return () => {
57214
- document.body.removeEventListener('render-html', renderHtml, false);
57215
- window.removeEventListener('render-content', renderContent, false);
57211
+ document.body.removeEventListener(renderHtmlEvent, renderHtml, false);
57212
+ document.body.removeEventListener(forwardEventEvent, forwardEvent, false);
57213
+ window.removeEventListener(renderContentEvent, renderContent, false);
57216
57214
  };
57217
57215
  }
57218
57216
  }, [context]);
@@ -60652,12 +60650,12 @@ function installPiralDebug(options) {
60652
60650
  debug: debugApiVersion,
60653
60651
  instance: {
60654
60652
  name: "sample-cross-fx",
60655
- version: "1.5.6",
60653
+ version: "1.6.0-beta.7144",
60656
60654
  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"
60657
60655
  },
60658
60656
  build: {
60659
- date: "2024-05-21T20:46:37.057Z",
60660
- cli: "1.5.6",
60657
+ date: "2024-06-06T11:57:17.439Z",
60658
+ cli: "1.6.0-beta.7144",
60661
60659
  compat: "1"
60662
60660
  }
60663
60661
  };
@@ -72341,7 +72339,7 @@ __webpack_require__.r(__webpack_exports__);
72341
72339
 
72342
72340
 
72343
72341
  function fillDependencies(deps) {
72344
- 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.5.6"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.5.6"]=_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__
72342
+ 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.7144"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.6.0-beta.7144"]=_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__
72345
72343
  }
72346
72344
 
72347
72345
 
@@ -227551,4 +227549,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(piral
227551
227549
 
227552
227550
  /******/ })()
227553
227551
  ;
227554
- //# sourceMappingURL=index.95d3ff.js.map
227552
+ //# sourceMappingURL=index.e3dfeb.js.map