sample-cross-fx 0.15.8-beta.5224 → 0.15.8-beta.5238
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.9e994a.js → index.489754.js} +18 -9
- package/app/{index.9e994a.js.map → index.489754.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
|
@@ -54303,6 +54303,7 @@ function createConverter(lazy, opts, language, logLevel) {
|
|
|
54303
54303
|
}
|
|
54304
54304
|
}
|
|
54305
54305
|
|
|
54306
|
+
window.dispatchEvent(new CustomEvent('loaded-blazor-core'));
|
|
54306
54307
|
return res;
|
|
54307
54308
|
}));
|
|
54308
54309
|
|
|
@@ -54417,6 +54418,7 @@ function createConverter(lazy, opts, language, logLevel) {
|
|
|
54417
54418
|
});
|
|
54418
54419
|
|
|
54419
54420
|
convert.loader = loader;
|
|
54421
|
+
convert.lazy = lazy;
|
|
54420
54422
|
return convert;
|
|
54421
54423
|
}
|
|
54422
54424
|
|
|
@@ -54453,7 +54455,7 @@ function createDefaultHandler(context) {
|
|
|
54453
54455
|
function createBlazorApi(config = {}) {
|
|
54454
54456
|
return context => {
|
|
54455
54457
|
const {
|
|
54456
|
-
lazy,
|
|
54458
|
+
lazy = true,
|
|
54457
54459
|
initialLanguage,
|
|
54458
54460
|
onLanguageChange = createDefaultHandler(context),
|
|
54459
54461
|
logLevel
|
|
@@ -54471,7 +54473,7 @@ function createBlazorApi(config = {}) {
|
|
|
54471
54473
|
}) => convert(moduleName, dependency, args, options);
|
|
54472
54474
|
|
|
54473
54475
|
return (_, meta) => {
|
|
54474
|
-
const loader = (0,_dependencies__WEBPACK_IMPORTED_MODULE_1__.createDependencyLoader)(convert
|
|
54476
|
+
const loader = (0,_dependencies__WEBPACK_IMPORTED_MODULE_1__.createDependencyLoader)(convert);
|
|
54475
54477
|
let options;
|
|
54476
54478
|
return {
|
|
54477
54479
|
defineBlazorReferences(references, satellites, prio) {
|
|
@@ -54520,7 +54522,7 @@ var _a, _b;
|
|
|
54520
54522
|
|
|
54521
54523
|
const loadedDependencies = (_a = window.$blazorDependencies) !== null && _a !== void 0 ? _a : window.$blazorDependencies = [];
|
|
54522
54524
|
const depsWithPrios = (_b = window.$blazorDependencyPrios) !== null && _b !== void 0 ? _b : window.$blazorDependencyPrios = [];
|
|
54523
|
-
function createDependencyLoader(convert
|
|
54525
|
+
function createDependencyLoader(convert) {
|
|
54524
54526
|
const definedBlazorReferences = [];
|
|
54525
54527
|
const loadedBlazorPilets = [];
|
|
54526
54528
|
let dependency;
|
|
@@ -54535,6 +54537,9 @@ function createDependencyLoader(convert, lazy = true) {
|
|
|
54535
54537
|
const load = ([_, capabilities]) => (0,tslib__WEBPACK_IMPORTED_MODULE_0__.__awaiter)(this, void 0, void 0, function* () {
|
|
54536
54538
|
// let others finish first
|
|
54537
54539
|
yield Promise.all(depsWithPrios.filter(m => m.prio > prio).map(m => m.promise));
|
|
54540
|
+
window.dispatchEvent(new CustomEvent('loading-blazor-pilet', {
|
|
54541
|
+
detail: meta
|
|
54542
|
+
}));
|
|
54538
54543
|
|
|
54539
54544
|
if (capabilities.includes('load')) {
|
|
54540
54545
|
// new loading mechanism
|
|
@@ -54590,10 +54595,13 @@ function createDependencyLoader(convert, lazy = true) {
|
|
|
54590
54595
|
} // inform remaining that this one finished
|
|
54591
54596
|
|
|
54592
54597
|
|
|
54598
|
+
window.dispatchEvent(new CustomEvent('loaded-blazor-pilet', {
|
|
54599
|
+
detail: meta
|
|
54600
|
+
}));
|
|
54593
54601
|
resolve();
|
|
54594
54602
|
});
|
|
54595
54603
|
|
|
54596
|
-
let result = !lazy && convert.loader.then(load);
|
|
54604
|
+
let result = !convert.lazy && convert.loader.then(load);
|
|
54597
54605
|
|
|
54598
54606
|
dependency = config => result || (result = load(config));
|
|
54599
54607
|
});
|
|
@@ -54999,7 +55007,8 @@ function createBootLoader(scriptUrl, extraScriptUrls) {
|
|
|
54999
55007
|
const publicPath = computePath();
|
|
55000
55008
|
return opts => {
|
|
55001
55009
|
if (typeof window.$blazorLoader === 'undefined') {
|
|
55002
|
-
// we load all satellite scripts before we initialize blazor
|
|
55010
|
+
window.dispatchEvent(new CustomEvent('loading-blazor-core')); // we load all satellite scripts before we initialize blazor
|
|
55011
|
+
|
|
55003
55012
|
window.$blazorLoader = Promise.all(extraScriptUrls.map(addScript)).then(() => initialize(scriptUrl, publicPath, opts));
|
|
55004
55013
|
}
|
|
55005
55014
|
|
|
@@ -63782,12 +63791,12 @@ function installPiralDebug(options) {
|
|
|
63782
63791
|
debug: debugApiVersion,
|
|
63783
63792
|
instance: {
|
|
63784
63793
|
name: "sample-cross-fx",
|
|
63785
|
-
version: "0.15.8-beta.
|
|
63794
|
+
version: "0.15.8-beta.5238",
|
|
63786
63795
|
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"
|
|
63787
63796
|
},
|
|
63788
63797
|
build: {
|
|
63789
|
-
date: "2023-03-
|
|
63790
|
-
cli: "0.15.8-beta.
|
|
63798
|
+
date: "2023-03-03T08:52:52.826Z",
|
|
63799
|
+
cli: "0.15.8-beta.5238",
|
|
63791
63800
|
compat: "0.15"
|
|
63792
63801
|
}
|
|
63793
63802
|
};
|
|
@@ -216635,4 +216644,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
216635
216644
|
|
|
216636
216645
|
/******/ })()
|
|
216637
216646
|
;
|
|
216638
|
-
//# sourceMappingURL=index.
|
|
216647
|
+
//# sourceMappingURL=index.489754.js.map
|