sample-cross-fx 0.15.8-beta.5261 → 0.15.8-beta.5269
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.
- package/app/{index.c4a7dc.js → index.315e0d.js} +13 -6
- package/app/{index.c4a7dc.js.map → index.315e0d.js.map} +1 -1
- package/app/index.html +1 -1
- package/app/index.js +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +20 -20
|
@@ -54883,9 +54883,16 @@ function createBlazorStarter(publicPath) {
|
|
|
54883
54883
|
navManager.navigateTo = (route, opts) => {
|
|
54884
54884
|
if (opts.forceLoad) {
|
|
54885
54885
|
location.href = route;
|
|
54886
|
-
|
|
54887
|
-
window.Blazor.emitNavigateEvent(undefined, route, opts.replaceHistoryEntry);
|
|
54886
|
+
return;
|
|
54888
54887
|
}
|
|
54888
|
+
|
|
54889
|
+
if (route.startsWith(location.origin) && '') {} else if (/^https?:\/\//.test(route)) {
|
|
54890
|
+
// prevent absolute URLs to be a standard navigation
|
|
54891
|
+
location.href = route;
|
|
54892
|
+
return;
|
|
54893
|
+
}
|
|
54894
|
+
|
|
54895
|
+
window.Blazor.emitNavigateEvent(undefined, route, opts.replaceHistoryEntry);
|
|
54889
54896
|
};
|
|
54890
54897
|
|
|
54891
54898
|
navManager.getBaseURI = () => originalBase;
|
|
@@ -63803,12 +63810,12 @@ function installPiralDebug(options) {
|
|
|
63803
63810
|
debug: debugApiVersion,
|
|
63804
63811
|
instance: {
|
|
63805
63812
|
name: "sample-cross-fx",
|
|
63806
|
-
version: "0.15.8-beta.
|
|
63813
|
+
version: "0.15.8-beta.5269",
|
|
63807
63814
|
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/dom,piral-ng/common,preact,riot,rxjs,vue,zone.js,tslib,react,react-dom,react-router,react-router-dom"
|
|
63808
63815
|
},
|
|
63809
63816
|
build: {
|
|
63810
|
-
date: "2023-03-
|
|
63811
|
-
cli: "0.15.8-beta.
|
|
63817
|
+
date: "2023-03-07T12:43:37.614Z",
|
|
63818
|
+
cli: "0.15.8-beta.5269",
|
|
63812
63819
|
compat: "0.15"
|
|
63813
63820
|
}
|
|
63814
63821
|
};
|
|
@@ -216656,4 +216663,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
216656
216663
|
|
|
216657
216664
|
/******/ })()
|
|
216658
216665
|
;
|
|
216659
|
-
//# sourceMappingURL=index.
|
|
216666
|
+
//# sourceMappingURL=index.315e0d.js.map
|