sample-cross-fx 1.10.0-beta.8462 → 1.10.0-beta.8470
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.
|
@@ -213470,10 +213470,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
213470
213470
|
const loadedDependencies = window.$blazorDependencies ?? (window.$blazorDependencies = []);
|
|
213471
213471
|
const depsWithPrios = window.$blazorDependencyPrios ?? (window.$blazorDependencyPrios = []);
|
|
213472
213472
|
function toExtLessUrl(url) {
|
|
213473
|
-
|
|
213474
|
-
|
|
213475
|
-
|
|
213476
|
-
|
|
213473
|
+
if (url) {
|
|
213474
|
+
const idx = url.lastIndexOf('.');
|
|
213475
|
+
const sep = url.lastIndexOf('/');
|
|
213476
|
+
if (idx > sep) {
|
|
213477
|
+
return url.substring(0, idx);
|
|
213478
|
+
}
|
|
213477
213479
|
}
|
|
213478
213480
|
return url;
|
|
213479
213481
|
}
|
|
@@ -213482,9 +213484,11 @@ function toPdb(url) {
|
|
|
213482
213484
|
}
|
|
213483
213485
|
function toDepName(url) {
|
|
213484
213486
|
const front = toExtLessUrl(url);
|
|
213485
|
-
|
|
213486
|
-
|
|
213487
|
-
|
|
213487
|
+
if (front) {
|
|
213488
|
+
const idx = front.lastIndexOf('/');
|
|
213489
|
+
if (idx >= 0) {
|
|
213490
|
+
return front.substring(idx + 1);
|
|
213491
|
+
}
|
|
213488
213492
|
}
|
|
213489
213493
|
return front;
|
|
213490
213494
|
}
|
|
@@ -213846,7 +213850,10 @@ function createBase() {
|
|
|
213846
213850
|
el.href = baseUrl;
|
|
213847
213851
|
return document.head.appendChild(el);
|
|
213848
213852
|
}
|
|
213849
|
-
|
|
213853
|
+
function defer() {
|
|
213854
|
+
return new Promise(resolve => setTimeout(resolve, 0));
|
|
213855
|
+
}
|
|
213856
|
+
function prepareForStartup() {
|
|
213850
213857
|
const originalApplyHotReload = window.Blazor._internal.applyHotReload;
|
|
213851
213858
|
const queue = [];
|
|
213852
213859
|
const applyChanges = api => {
|
|
@@ -213861,14 +213868,21 @@ async function prepareForStartup() {
|
|
|
213861
213868
|
window.Blazor._internal.applyHotReload = function (...args) {
|
|
213862
213869
|
queue.push(() => originalApplyHotReload.apply(this, args));
|
|
213863
213870
|
};
|
|
213864
|
-
|
|
213865
|
-
|
|
213866
|
-
|
|
213867
|
-
|
|
213868
|
-
|
|
213869
|
-
|
|
213870
|
-
|
|
213871
|
-
|
|
213871
|
+
return defer().then(getCapabilities).then(capabilities => {
|
|
213872
|
+
if (capabilities.includes('custom-element')) {
|
|
213873
|
+
document.getElementById(_events__WEBPACK_IMPORTED_MODULE_0__.blazorRootId).setAttribute('render', 'modern');
|
|
213874
|
+
}
|
|
213875
|
+
return {
|
|
213876
|
+
capabilities,
|
|
213877
|
+
applyChanges
|
|
213878
|
+
};
|
|
213879
|
+
});
|
|
213880
|
+
}
|
|
213881
|
+
function startBlazor(opts) {
|
|
213882
|
+
return window.Blazor.start({
|
|
213883
|
+
...opts,
|
|
213884
|
+
webAssembly: opts
|
|
213885
|
+
}).then(prepareForStartup);
|
|
213872
213886
|
}
|
|
213873
213887
|
function createBlazorStarter(publicPath) {
|
|
213874
213888
|
const root = document.body.appendChild(document.createElement('div'));
|
|
@@ -213895,7 +213909,7 @@ function createBlazorStarter(publicPath) {
|
|
|
213895
213909
|
window.Blazor.emitNavigateEvent(undefined, route, opts.replaceHistoryEntry, opts.historyEntryState);
|
|
213896
213910
|
};
|
|
213897
213911
|
navManager.getBaseURI = () => originalBase;
|
|
213898
|
-
return
|
|
213912
|
+
return startBlazor(opts).then(({
|
|
213899
213913
|
capabilities,
|
|
213900
213914
|
applyChanges
|
|
213901
213915
|
}) => {
|
|
@@ -213904,7 +213918,7 @@ function createBlazorStarter(publicPath) {
|
|
|
213904
213918
|
});
|
|
213905
213919
|
};
|
|
213906
213920
|
}
|
|
213907
|
-
return opts =>
|
|
213921
|
+
return opts => startBlazor(opts).then(({
|
|
213908
213922
|
capabilities,
|
|
213909
213923
|
applyChanges
|
|
213910
213924
|
}) => [root, capabilities, applyChanges]);
|
|
@@ -218316,7 +218330,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
218316
218330
|
|
|
218317
218331
|
|
|
218318
218332
|
function fillDependencies(deps) {
|
|
218319
|
-
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/common@16.2.12"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/compiler"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/compiler@16.2.12"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/core"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/core@16.2.12"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/platform-browser"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser@16.2.12"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser-dynamic"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@angular/platform-browser-dynamic@16.2.12"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@webcomponents/webcomponentsjs"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["@webcomponents/webcomponentsjs@2.6.0"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["angular"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["angular@1.8.3"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-framework"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-framework@1.4.1"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-templating-binding"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_8__;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_8__;deps["aurelia-templating-resources"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-templating-resources@1.15.1"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-pal-browser"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-pal-browser@1.8.1"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-event-aggregator"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-event-aggregator@1.0.3"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-history-browser"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["aurelia-history-browser@1.4.0"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["hyperapp"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["hyperapp@1.2.10"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["inferno"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno@7.4.11"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno-create-element"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["inferno-create-element@7.4.11"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["mithril"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["mithril@2.3.8"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["lit-element"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["lit-element@2.5.1"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["solid-js"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js@1.9.10"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js/web"]=_node_modules_solid_js_web_dist_dev_js__WEBPACK_IMPORTED_MODULE_19__;deps["piral-ng/common"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["piral-ng/common@1.10.0-beta.
|
|
218333
|
+
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/common@16.2.12"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/compiler"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/compiler@16.2.12"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/core"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/core@16.2.12"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/platform-browser"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser@16.2.12"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser-dynamic"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@angular/platform-browser-dynamic@16.2.12"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@webcomponents/webcomponentsjs"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["@webcomponents/webcomponentsjs@2.6.0"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["angular"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["angular@1.8.3"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-framework"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-framework@1.4.1"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-templating-binding"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_8__;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_8__;deps["aurelia-templating-resources"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-templating-resources@1.15.1"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-pal-browser"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-pal-browser@1.8.1"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-event-aggregator"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-event-aggregator@1.0.3"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-history-browser"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["aurelia-history-browser@1.4.0"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["hyperapp"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["hyperapp@1.2.10"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["inferno"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno@7.4.11"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno-create-element"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["inferno-create-element@7.4.11"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["mithril"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["mithril@2.3.8"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["lit-element"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["lit-element@2.5.1"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["solid-js"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js@1.9.10"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js/web"]=_node_modules_solid_js_web_dist_dev_js__WEBPACK_IMPORTED_MODULE_19__;deps["piral-ng/common"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["piral-ng/common@1.10.0-beta.8470"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["piral-ng@1.10.0-beta.8470"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["preact"]=_node_modules_preact_dist_preact_module_js__WEBPACK_IMPORTED_MODULE_21__;deps["preact@10.27.3"]=_node_modules_preact_dist_preact_module_js__WEBPACK_IMPORTED_MODULE_21__;deps["riot"]=_node_modules_riot_riot_esm_js__WEBPACK_IMPORTED_MODULE_22__;deps["riot@4.14.0"]=_node_modules_riot_riot_esm_js__WEBPACK_IMPORTED_MODULE_22__;deps["rxjs"]=_node_modules_rxjs_dist_esm5_index_js__WEBPACK_IMPORTED_MODULE_23__;deps["rxjs@7.8.2"]=_node_modules_rxjs_dist_esm5_index_js__WEBPACK_IMPORTED_MODULE_23__;deps["vue"]=_node_modules_vue_dist_vue_runtime_esm_js__WEBPACK_IMPORTED_MODULE_24__;deps["vue@2.7.16"]=_node_modules_vue_dist_vue_runtime_esm_js__WEBPACK_IMPORTED_MODULE_24__;deps["zone.js"]=_node_modules_zone_js_fesm2015_zone_js__WEBPACK_IMPORTED_MODULE_25__;deps["zone.js@0.13.3"]=_node_modules_zone_js_fesm2015_zone_js__WEBPACK_IMPORTED_MODULE_25__;deps["tslib"]=_node_modules_tslib_tslib_es6_mjs__WEBPACK_IMPORTED_MODULE_26__;deps["tslib@2.8.1"]=_node_modules_tslib_tslib_es6_mjs__WEBPACK_IMPORTED_MODULE_26__;deps["react"]=_node_modules_react_index_js__WEBPACK_IMPORTED_MODULE_27__;deps["react@18.3.1"]=_node_modules_react_index_js__WEBPACK_IMPORTED_MODULE_27__;deps["react-dom"]=/*#__PURE__*/ (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache || (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache = __webpack_require__.t(_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28__, 2)));deps["react-dom@18.3.1"]=/*#__PURE__*/ (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache || (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache = __webpack_require__.t(_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28__, 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__
|
|
218320
218334
|
}
|
|
218321
218335
|
|
|
218322
218336
|
|
|
@@ -222148,12 +222162,12 @@ function installPiralDebug(options) {
|
|
|
222148
222162
|
debug: debugApiVersion,
|
|
222149
222163
|
instance: {
|
|
222150
222164
|
name: "sample-cross-fx",
|
|
222151
|
-
version: "1.10.0-beta.
|
|
222165
|
+
version: "1.10.0-beta.8470",
|
|
222152
222166
|
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"
|
|
222153
222167
|
},
|
|
222154
222168
|
build: {
|
|
222155
|
-
date: "2026-01-
|
|
222156
|
-
cli: "1.10.0-beta.
|
|
222169
|
+
date: "2026-01-13T10:54:34.010Z",
|
|
222170
|
+
cli: "1.10.0-beta.8470",
|
|
222157
222171
|
compat: "1"
|
|
222158
222172
|
}
|
|
222159
222173
|
};
|
|
@@ -228493,4 +228507,4 @@ root.render(/*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(piral_
|
|
|
228493
228507
|
|
|
228494
228508
|
/******/ })()
|
|
228495
228509
|
;
|
|
228496
|
-
//# sourceMappingURL=index.
|
|
228510
|
+
//# sourceMappingURL=index.4f91de.js.map
|