sample-cross-fx 1.6.0-beta.7147 → 1.6.0-beta.7175
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.
|
@@ -53998,12 +53998,14 @@ function makeUrl(href) {
|
|
|
53998
53998
|
return href;
|
|
53999
53999
|
}
|
|
54000
54000
|
function createConverter(lazy, opts, language, logLevel) {
|
|
54001
|
+
let configurable = false;
|
|
54001
54002
|
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
54003
|
const boot = opts => bootLoader(opts).then(async ({
|
|
54003
54004
|
config,
|
|
54004
54005
|
first
|
|
54005
54006
|
}) => {
|
|
54006
54007
|
const [_, capabilities] = config;
|
|
54008
|
+
configurable = capabilities.includes('configurable');
|
|
54007
54009
|
if (typeof logLevel === 'number' && capabilities.includes('logging')) {
|
|
54008
54010
|
await (0,_interop__WEBPACK_IMPORTED_MODULE_1__.setLogLevel)(logLevel);
|
|
54009
54011
|
}
|
|
@@ -54063,9 +54065,11 @@ function createConverter(lazy, opts, language, logLevel) {
|
|
|
54063
54065
|
ev.stopPropagation();
|
|
54064
54066
|
const {
|
|
54065
54067
|
target,
|
|
54066
|
-
props
|
|
54068
|
+
props,
|
|
54069
|
+
configure
|
|
54067
54070
|
} = ev.detail;
|
|
54068
54071
|
piral.renderHtmlExtension(target, props);
|
|
54072
|
+
configurable && configure();
|
|
54069
54073
|
}, ev => {
|
|
54070
54074
|
ev.stopPropagation();
|
|
54071
54075
|
const {
|
|
@@ -54403,7 +54407,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
54403
54407
|
/* harmony export */ attachLocalEvents: () => (/* binding */ attachLocalEvents),
|
|
54404
54408
|
/* harmony export */ emitNavigateEvent: () => (/* binding */ emitNavigateEvent),
|
|
54405
54409
|
/* harmony export */ emitPiralEvent: () => (/* binding */ emitPiralEvent),
|
|
54406
|
-
/* harmony export */ emitRenderEvent: () => (/* binding */ emitRenderEvent)
|
|
54410
|
+
/* harmony export */ emitRenderEvent: () => (/* binding */ emitRenderEvent),
|
|
54411
|
+
/* harmony export */ emitUpdateEvent: () => (/* binding */ emitUpdateEvent)
|
|
54407
54412
|
/* harmony export */ });
|
|
54408
54413
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
54409
54414
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -54415,6 +54420,7 @@ const eventParents = [];
|
|
|
54415
54420
|
const globalEventNames = ['abort', 'blur', 'change', 'error', 'focus', 'load', 'loadend', 'loadstart', 'mouseenter', 'mouseleave', 'progress', 'reset', 'scroll', 'submit', 'unload', 'DOMNodeInsertedIntoDocument', 'DOMNodeRemovedFromDocument', 'click', 'dblclick', 'mousedown', 'mousemove', 'mouseup'];
|
|
54416
54421
|
const eventNames = {
|
|
54417
54422
|
render: 'render-blazor-extension',
|
|
54423
|
+
update: 'extension-props-changed',
|
|
54418
54424
|
navigate: 'navigate-blazor',
|
|
54419
54425
|
forward: 'forward-event'
|
|
54420
54426
|
};
|
|
@@ -54460,10 +54466,8 @@ function getFallback(fallbackComponent, params) {
|
|
|
54460
54466
|
}
|
|
54461
54467
|
return undefined;
|
|
54462
54468
|
}
|
|
54463
|
-
function
|
|
54464
|
-
|
|
54465
|
-
const empty = getFallback(fallbackComponent, params);
|
|
54466
|
-
const order = typeof sourceRef !== 'undefined' ? elements => {
|
|
54469
|
+
function getOrder(sourceRef) {
|
|
54470
|
+
return typeof sourceRef !== 'undefined' ? elements => {
|
|
54467
54471
|
const oldItems = elements.map((el, id) => ({
|
|
54468
54472
|
id,
|
|
54469
54473
|
pilet: el.pilet,
|
|
@@ -54474,16 +54478,36 @@ function emitRenderEvent(source, name, params, sourceRef, fallbackComponent) {
|
|
|
54474
54478
|
id
|
|
54475
54479
|
}) => elements[id]).filter(Boolean);
|
|
54476
54480
|
} : undefined;
|
|
54481
|
+
}
|
|
54482
|
+
function getProps(name, params, sourceRef, fallbackComponent) {
|
|
54483
|
+
const empty = getFallback(fallbackComponent, params);
|
|
54484
|
+
const order = getOrder(sourceRef);
|
|
54485
|
+
return {
|
|
54486
|
+
name,
|
|
54487
|
+
params,
|
|
54488
|
+
empty,
|
|
54489
|
+
order
|
|
54490
|
+
};
|
|
54491
|
+
}
|
|
54492
|
+
function emitUpdateEvent(source, name, params, sourceRef, fallbackComponent) {
|
|
54493
|
+
const target = findTarget(source);
|
|
54494
|
+
const eventInit = {
|
|
54495
|
+
detail: getProps(name, params, sourceRef, fallbackComponent)
|
|
54496
|
+
};
|
|
54497
|
+
target.dispatchEvent(new CustomEvent(eventNames.update, eventInit));
|
|
54498
|
+
}
|
|
54499
|
+
function emitRenderEvent(source, name, params, sourceRef, fallbackComponent) {
|
|
54500
|
+
const target = findTarget(source);
|
|
54477
54501
|
const eventInit = {
|
|
54478
54502
|
bubbles: true,
|
|
54479
54503
|
detail: {
|
|
54504
|
+
configure() {
|
|
54505
|
+
sourceRef.invokeMethod('Configure', {
|
|
54506
|
+
CanUpdate: true
|
|
54507
|
+
});
|
|
54508
|
+
},
|
|
54480
54509
|
target,
|
|
54481
|
-
props:
|
|
54482
|
-
name,
|
|
54483
|
-
params,
|
|
54484
|
-
empty,
|
|
54485
|
-
order
|
|
54486
|
-
}
|
|
54510
|
+
props: getProps(name, params, sourceRef, fallbackComponent)
|
|
54487
54511
|
}
|
|
54488
54512
|
};
|
|
54489
54513
|
const delayEmit = () => requestAnimationFrame(() => {
|
|
@@ -54761,6 +54785,7 @@ function initialize(scriptUrl, publicPath, opts = {}) {
|
|
|
54761
54785
|
script.onload = () => {
|
|
54762
54786
|
Object.assign(window.Blazor, {
|
|
54763
54787
|
emitRenderEvent: _events__WEBPACK_IMPORTED_MODULE_0__.emitRenderEvent,
|
|
54788
|
+
emitUpdateEvent: _events__WEBPACK_IMPORTED_MODULE_0__.emitUpdateEvent,
|
|
54764
54789
|
emitNavigateEvent: _events__WEBPACK_IMPORTED_MODULE_0__.emitNavigateEvent,
|
|
54765
54790
|
emitPiralEvent: _events__WEBPACK_IMPORTED_MODULE_0__.emitPiralEvent
|
|
54766
54791
|
});
|
|
@@ -60662,12 +60687,12 @@ function installPiralDebug(options) {
|
|
|
60662
60687
|
debug: debugApiVersion,
|
|
60663
60688
|
instance: {
|
|
60664
60689
|
name: "sample-cross-fx",
|
|
60665
|
-
version: "1.6.0-beta.
|
|
60690
|
+
version: "1.6.0-beta.7175",
|
|
60666
60691
|
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"
|
|
60667
60692
|
},
|
|
60668
60693
|
build: {
|
|
60669
|
-
date: "2024-06-
|
|
60670
|
-
cli: "1.6.0-beta.
|
|
60694
|
+
date: "2024-06-10T08:34:07.754Z",
|
|
60695
|
+
cli: "1.6.0-beta.7175",
|
|
60671
60696
|
compat: "1"
|
|
60672
60697
|
}
|
|
60673
60698
|
};
|
|
@@ -72351,7 +72376,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72351
72376
|
|
|
72352
72377
|
|
|
72353
72378
|
function fillDependencies(deps) {
|
|
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.
|
|
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.7175"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.6.0-beta.7175"]=_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__
|
|
72355
72380
|
}
|
|
72356
72381
|
|
|
72357
72382
|
|
|
@@ -227561,4 +227586,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(piral
|
|
|
227561
227586
|
|
|
227562
227587
|
/******/ })()
|
|
227563
227588
|
;
|
|
227564
|
-
//# sourceMappingURL=index.
|
|
227589
|
+
//# sourceMappingURL=index.a30538.js.map
|