sample-cross-fx 1.6.0-beta.7142 → 1.6.0-beta.7147

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;
@@ -54459,12 +54449,20 @@ function dispatchToRoot(event) {
54459
54449
  event.processed = true;
54460
54450
  }
54461
54451
  }
54452
+ function getFallback(fallbackComponent, params) {
54453
+ if (typeof fallbackComponent === 'string') {
54454
+ const empty = undefined;
54455
+ return () => /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)('piral-extension', {
54456
+ name: fallbackComponent,
54457
+ params,
54458
+ empty
54459
+ });
54460
+ }
54461
+ return undefined;
54462
+ }
54462
54463
  function emitRenderEvent(source, name, params, sourceRef, fallbackComponent) {
54463
54464
  const target = findTarget(source);
54464
- const empty = typeof fallbackComponent === 'string' ? () => /*#__PURE__*/(0,react__WEBPACK_IMPORTED_MODULE_0__.createElement)('piral-extension', {
54465
- name: fallbackComponent,
54466
- params
54467
- }) : undefined;
54465
+ const empty = getFallback(fallbackComponent, params);
54468
54466
  const order = typeof sourceRef !== 'undefined' ? elements => {
54469
54467
  const oldItems = elements.map((el, id) => ({
54470
54468
  id,
@@ -54498,7 +54496,7 @@ function emitRenderEvent(source, name, params, sourceRef, fallbackComponent) {
54498
54496
  delayEmit();
54499
54497
  }
54500
54498
  function emitPiralEvent(type, args) {
54501
- document.body.dispatchEvent(new CustomEvent(eventNames.piral, {
54499
+ document.body.dispatchEvent(new CustomEvent(eventNames.forward, {
54502
54500
  bubbles: false,
54503
54501
  detail: {
54504
54502
  type,
@@ -54516,28 +54514,22 @@ function emitNavigateEvent(source, to, replace = false, state) {
54516
54514
  }
54517
54515
  }));
54518
54516
  }
54519
- function attachEvents(host, render, navigate, forward) {
54520
- eventParents.push(host);
54517
+ function attachLocalEvents(host, render, navigate) {
54521
54518
  host.addEventListener(eventNames.render, render, false);
54522
54519
  host.addEventListener(eventNames.navigate, navigate, false);
54523
- if (eventParents.length === 1) {
54524
- document.body.addEventListener(eventNames.piral, forward, false);
54525
- }
54520
+ // install proxy handlers
54521
+ globalEventNames.forEach(eventName => host.addEventListener(eventName, dispatchToRoot));
54522
+ // register host as event parent
54523
+ eventParents.push(host);
54526
54524
  return () => {
54527
- eventParents.splice(eventParents.indexOf(host), 1);
54528
54525
  host.removeEventListener(eventNames.render, render, false);
54529
54526
  host.removeEventListener(eventNames.navigate, navigate, false);
54530
- if (eventParents.length === 0) {
54531
- document.body.removeEventListener(eventNames.piral, forward, false);
54532
- }
54527
+ // uninstall proxy handlers
54528
+ globalEventNames.forEach(eventName => host.removeEventListener(eventName, dispatchToRoot));
54529
+ // unregister host as event parent
54530
+ eventParents.splice(eventParents.indexOf(host), 1);
54533
54531
  };
54534
54532
  }
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
54533
 
54542
54534
  /***/ }),
54543
54535
 
@@ -54779,13 +54771,18 @@ function initialize(scriptUrl, publicPath, opts = {}) {
54779
54771
  }
54780
54772
  function createBootLoader(scriptUrl, extraScriptUrls) {
54781
54773
  const publicPath = computePath();
54782
- return opts => {
54783
- if (typeof window.$blazorLoader === 'undefined') {
54774
+ return async opts => {
54775
+ const first = typeof window.$blazorLoader === 'undefined';
54776
+ if (first) {
54784
54777
  window.dispatchEvent(new CustomEvent('loading-blazor-core'));
54785
54778
  // we load all satellite scripts before we initialize blazor
54786
54779
  window.$blazorLoader = Promise.all(extraScriptUrls.map(addScript)).then(() => initialize(scriptUrl, publicPath, opts));
54787
54780
  }
54788
- return window.$blazorLoader;
54781
+ const config = await window.$blazorLoader;
54782
+ return {
54783
+ config,
54784
+ first
54785
+ };
54789
54786
  };
54790
54787
  }
54791
54788
 
@@ -57182,6 +57179,9 @@ __webpack_require__.r(__webpack_exports__);
57182
57179
 
57183
57180
 
57184
57181
 
57182
+ const renderHtmlEvent = 'render-html';
57183
+ const renderContentEvent = 'render-content';
57184
+ const forwardEventEvent = 'forward-event';
57185
57185
  const RootListener = () => {
57186
57186
  const context = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalStateContext)();
57187
57187
  react__WEBPACK_IMPORTED_MODULE_0__.useLayoutEffect(() => {
@@ -57208,11 +57208,21 @@ const RootListener = () => {
57208
57208
  context.showPortal(portalId, portal);
57209
57209
  target.dispose = dispose;
57210
57210
  };
57211
- document.body.addEventListener('render-html', renderHtml, false);
57212
- window.addEventListener('render-content', renderContent, false);
57211
+ const forwardEvent = ev => {
57212
+ ev.stopPropagation();
57213
+ const {
57214
+ type,
57215
+ args
57216
+ } = ev.detail;
57217
+ context.emit(type, args);
57218
+ };
57219
+ document.body.addEventListener(renderHtmlEvent, renderHtml, false);
57220
+ document.body.addEventListener(forwardEventEvent, forwardEvent, false);
57221
+ window.addEventListener(renderContentEvent, renderContent, false);
57213
57222
  return () => {
57214
- document.body.removeEventListener('render-html', renderHtml, false);
57215
- window.removeEventListener('render-content', renderContent, false);
57223
+ document.body.removeEventListener(renderHtmlEvent, renderHtml, false);
57224
+ document.body.removeEventListener(forwardEventEvent, forwardEvent, false);
57225
+ window.removeEventListener(renderContentEvent, renderContent, false);
57216
57226
  };
57217
57227
  }
57218
57228
  }, [context]);
@@ -57644,7 +57654,7 @@ function ExtensionSlot(props) {
57644
57654
  } = props;
57645
57655
  const extensions = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalState)(s => s.registry.extensions[name] || _utils__WEBPACK_IMPORTED_MODULE_3__.none);
57646
57656
  const isEmpty = extensions.length === 0 && (0,piral_base__WEBPACK_IMPORTED_MODULE_4__.isfunc)(empty);
57647
- const content = isEmpty ? [(0,_utils__WEBPACK_IMPORTED_MODULE_1__.defaultRender)(empty(), 'empty')] : order(extensions).map(({
57657
+ const content = isEmpty ? [(0,_utils__WEBPACK_IMPORTED_MODULE_1__.defaultRender)(empty(params), 'empty')] : order(extensions).map(({
57648
57658
  component: Component,
57649
57659
  reference,
57650
57660
  defaults = {}
@@ -60652,12 +60662,12 @@ function installPiralDebug(options) {
60652
60662
  debug: debugApiVersion,
60653
60663
  instance: {
60654
60664
  name: "sample-cross-fx",
60655
- version: "1.6.0-beta.7142",
60665
+ version: "1.6.0-beta.7147",
60656
60666
  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
60667
  },
60658
60668
  build: {
60659
- date: "2024-06-05T14:32:21.253Z",
60660
- cli: "1.6.0-beta.7142",
60669
+ date: "2024-06-07T09:09:43.186Z",
60670
+ cli: "1.6.0-beta.7147",
60661
60671
  compat: "1"
60662
60672
  }
60663
60673
  };
@@ -72341,7 +72351,7 @@ __webpack_require__.r(__webpack_exports__);
72341
72351
 
72342
72352
 
72343
72353
  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.6.0-beta.7142"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.6.0-beta.7142"]=_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__
72354
+ 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.7147"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.6.0-beta.7147"]=_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
72355
  }
72346
72356
 
72347
72357
 
@@ -227551,4 +227561,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(piral
227551
227561
 
227552
227562
  /******/ })()
227553
227563
  ;
227554
- //# sourceMappingURL=index.c71d9f.js.map
227564
+ //# sourceMappingURL=index.6cdad4.js.map