sample-cross-fx 0.15.13-beta.5560 → 0.15.13-beta.5575
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.
|
@@ -54290,7 +54290,13 @@ function createConverter(lazy, opts, language, logLevel) {
|
|
|
54290
54290
|
}
|
|
54291
54291
|
locals.state = 'fresh';
|
|
54292
54292
|
locals.next = noop;
|
|
54293
|
-
locals.dispose = (0,_events__WEBPACK_IMPORTED_MODULE_3__.attachEvents)(el, ev =>
|
|
54293
|
+
locals.dispose = (0,_events__WEBPACK_IMPORTED_MODULE_3__.attachEvents)(el, ev => {
|
|
54294
|
+
ev.stopPropagation();
|
|
54295
|
+
piral.renderHtmlExtension(ev.detail.target, ev.detail.props);
|
|
54296
|
+
}, ev => {
|
|
54297
|
+
ev.stopPropagation();
|
|
54298
|
+
ev.detail.replace ? nav.replace(ev.detail.to, ev.detail.state) : nav.push(ev.detail.to, ev.detail.state);
|
|
54299
|
+
});
|
|
54294
54300
|
function mountClassic(config) {
|
|
54295
54301
|
return (0,_interop__WEBPACK_IMPORTED_MODULE_1__.activate)(moduleName, props).then(refId => {
|
|
54296
54302
|
const [root] = config;
|
|
@@ -54602,9 +54608,11 @@ function dispatchToRoot(event) {
|
|
|
54602
54608
|
var _a;
|
|
54603
54609
|
(0,_navigation__WEBPACK_IMPORTED_MODULE_0__.isInternalNavigation)(event) && (0,_navigation__WEBPACK_IMPORTED_MODULE_0__.performInternalNavigation)(event);
|
|
54604
54610
|
// the mutation event cannot be cloned (at least in Webkit-based browsers)
|
|
54605
|
-
if (!(event instanceof MutationEvent)) {
|
|
54611
|
+
if (!(event instanceof MutationEvent) && !event.processed) {
|
|
54606
54612
|
const eventClone = new event.constructor(event.type, event);
|
|
54607
54613
|
(_a = document.getElementById(blazorRootId)) === null || _a === void 0 ? void 0 : _a.dispatchEvent(eventClone);
|
|
54614
|
+
// make sure to only process every event once; even though multiple boundaries might be active
|
|
54615
|
+
event.processed = true;
|
|
54608
54616
|
}
|
|
54609
54617
|
}
|
|
54610
54618
|
function emitRenderEvent(source, name, params, sourceRef, fallbackComponent) {
|
|
@@ -60702,12 +60710,12 @@ function installPiralDebug(options) {
|
|
|
60702
60710
|
debug: debugApiVersion,
|
|
60703
60711
|
instance: {
|
|
60704
60712
|
name: "sample-cross-fx",
|
|
60705
|
-
version: "0.15.13-beta.
|
|
60713
|
+
version: "0.15.13-beta.5575",
|
|
60706
60714
|
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"
|
|
60707
60715
|
},
|
|
60708
60716
|
build: {
|
|
60709
|
-
date: "2023-05-
|
|
60710
|
-
cli: "0.15.13-beta.
|
|
60717
|
+
date: "2023-05-26T16:06:21.023Z",
|
|
60718
|
+
cli: "0.15.13-beta.5575",
|
|
60711
60719
|
compat: "0.15"
|
|
60712
60720
|
}
|
|
60713
60721
|
};
|
|
@@ -222224,4 +222232,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
222224
222232
|
|
|
222225
222233
|
/******/ })()
|
|
222226
222234
|
;
|
|
222227
|
-
//# sourceMappingURL=index.
|
|
222235
|
+
//# sourceMappingURL=index.ff0d36.js.map
|