sample-cross-fx 1.2.0 → 1.3.0-beta.6001
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.dd8e32.js → index.b5b1be.js} +185 -225
- package/app/{index.dd8e32.js.map → index.b5b1be.js.map} +1 -1
- package/app/index.d.ts +3 -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 +6 -6
|
@@ -54437,8 +54437,8 @@ function createBlazorApi(config = {}) {
|
|
|
54437
54437
|
const loader = (0,_dependencies__WEBPACK_IMPORTED_MODULE_1__.createDependencyLoader)(convert);
|
|
54438
54438
|
let options;
|
|
54439
54439
|
return {
|
|
54440
|
-
defineBlazorReferences(references, satellites, prio) {
|
|
54441
|
-
return loader.defineBlazorReferences(references, meta, satellites, prio);
|
|
54440
|
+
defineBlazorReferences(references, satellites, prio, kind, sharedDependencies) {
|
|
54441
|
+
return loader.defineBlazorReferences(references, meta, satellites, prio, kind, sharedDependencies);
|
|
54442
54442
|
},
|
|
54443
54443
|
defineBlazorOptions(blazorOptions) {
|
|
54444
54444
|
options = blazorOptions;
|
|
@@ -54478,9 +54478,24 @@ var _a, _b;
|
|
|
54478
54478
|
|
|
54479
54479
|
const loadedDependencies = (_a = window.$blazorDependencies) !== null && _a !== void 0 ? _a : window.$blazorDependencies = [];
|
|
54480
54480
|
const depsWithPrios = (_b = window.$blazorDependencyPrios) !== null && _b !== void 0 ? _b : window.$blazorDependencyPrios = [];
|
|
54481
|
+
function toExtLessUrl(url) {
|
|
54482
|
+
const idx = url.lastIndexOf('.');
|
|
54483
|
+
const sep = url.lastIndexOf('/');
|
|
54484
|
+
if (idx > sep) {
|
|
54485
|
+
return url.substring(0, idx);
|
|
54486
|
+
}
|
|
54487
|
+
return url;
|
|
54488
|
+
}
|
|
54481
54489
|
function toPdb(url) {
|
|
54482
|
-
|
|
54483
|
-
|
|
54490
|
+
return `${toExtLessUrl(url)}.pdb`;
|
|
54491
|
+
}
|
|
54492
|
+
function toDepName(url) {
|
|
54493
|
+
const front = toExtLessUrl(url);
|
|
54494
|
+
const idx = front.lastIndexOf('/');
|
|
54495
|
+
if (idx >= 0) {
|
|
54496
|
+
return front.substring(idx + 1);
|
|
54497
|
+
}
|
|
54498
|
+
return front;
|
|
54484
54499
|
}
|
|
54485
54500
|
function createDependencyLoader(convert) {
|
|
54486
54501
|
const definedBlazorReferences = [];
|
|
@@ -54490,18 +54505,19 @@ function createDependencyLoader(convert) {
|
|
|
54490
54505
|
getDependency() {
|
|
54491
54506
|
return dependency;
|
|
54492
54507
|
},
|
|
54493
|
-
defineBlazorReferences(references, meta = {}, satellites = {}, prio = 0) {
|
|
54508
|
+
defineBlazorReferences(references, meta = {}, satellites = {}, prio = 0, kind = 'local', sharedDependencies = []) {
|
|
54494
54509
|
prio = Math.max(prio, 0);
|
|
54495
54510
|
const depWithPrio = {
|
|
54496
54511
|
prio,
|
|
54512
|
+
kind,
|
|
54497
54513
|
load() {
|
|
54498
54514
|
return Promise.resolve();
|
|
54499
54515
|
}
|
|
54500
54516
|
};
|
|
54501
54517
|
let result = false;
|
|
54502
54518
|
const load = ([_, capabilities]) => (0,tslib__WEBPACK_IMPORTED_MODULE_0__.__awaiter)(this, void 0, void 0, function* () {
|
|
54503
|
-
// let others finish first
|
|
54504
|
-
yield Promise.all(depsWithPrios.filter(m => m.prio > prio).map(m => m.load()));
|
|
54519
|
+
// let others (any global, or higher prio) finish first
|
|
54520
|
+
yield Promise.all(depsWithPrios.filter(m => m.prio > prio || kind !== m.kind && m.kind === 'global').map(m => m.load()));
|
|
54505
54521
|
window.dispatchEvent(new CustomEvent('loading-blazor-pilet', {
|
|
54506
54522
|
detail: meta
|
|
54507
54523
|
}));
|
|
@@ -54510,11 +54526,24 @@ function createDependencyLoader(convert) {
|
|
|
54510
54526
|
if (!capabilities.includes('language')) {
|
|
54511
54527
|
satellites = undefined;
|
|
54512
54528
|
}
|
|
54529
|
+
const supportsCore = capabilities.includes('core-pilet');
|
|
54513
54530
|
const dependencies = references.filter(m => m.endsWith('.dll'));
|
|
54514
54531
|
const dllUrl = dependencies.pop();
|
|
54515
54532
|
const pdbUrl = toPdb(dllUrl);
|
|
54516
54533
|
const dependencySymbols = dependencies.map(toPdb).filter(dep => references.includes(dep));
|
|
54517
54534
|
const id = Math.random().toString(26).substring(2);
|
|
54535
|
+
if (supportsCore) {
|
|
54536
|
+
for (let i = dependencies.length; i--;) {
|
|
54537
|
+
const name = toDepName(dependencies[i]);
|
|
54538
|
+
for (const dep of sharedDependencies) {
|
|
54539
|
+
// OK we want to share this one - remove it from the given dependencies
|
|
54540
|
+
if (name === dep) {
|
|
54541
|
+
dependencies.splice(i, 1);
|
|
54542
|
+
break;
|
|
54543
|
+
}
|
|
54544
|
+
}
|
|
54545
|
+
}
|
|
54546
|
+
}
|
|
54518
54547
|
yield (0,_interop__WEBPACK_IMPORTED_MODULE_1__.loadBlazorPilet)(id, {
|
|
54519
54548
|
name: meta.name || '(unknown)',
|
|
54520
54549
|
version: meta.version || '0.0.0',
|
|
@@ -54522,6 +54551,8 @@ function createDependencyLoader(convert) {
|
|
|
54522
54551
|
baseUrl: meta.basePath || dllUrl.substring(0, dllUrl.lastIndexOf('/')).replace('/_framework/', '/'),
|
|
54523
54552
|
dependencies,
|
|
54524
54553
|
dependencySymbols: capabilities.includes('dependency-symbols') ? dependencySymbols : undefined,
|
|
54554
|
+
sharedDependencies: supportsCore ? sharedDependencies : undefined,
|
|
54555
|
+
kind: supportsCore ? kind : undefined,
|
|
54525
54556
|
satellites,
|
|
54526
54557
|
dllUrl,
|
|
54527
54558
|
pdbUrl: references.includes(pdbUrl) ? pdbUrl : undefined
|
|
@@ -54564,7 +54595,8 @@ function createDependencyLoader(convert) {
|
|
|
54564
54595
|
}
|
|
54565
54596
|
return result;
|
|
54566
54597
|
};
|
|
54567
|
-
|
|
54598
|
+
const lazy = convert.lazy && kind !== 'global';
|
|
54599
|
+
result = !lazy && convert.loader.then(load);
|
|
54568
54600
|
dependency = config => result || (result = load(config));
|
|
54569
54601
|
if (prio) {
|
|
54570
54602
|
depsWithPrios.push(depWithPrio);
|
|
@@ -55663,6 +55695,24 @@ function createExtension(rootName) {
|
|
|
55663
55695
|
};
|
|
55664
55696
|
}
|
|
55665
55697
|
|
|
55698
|
+
/***/ }),
|
|
55699
|
+
|
|
55700
|
+
/***/ "../../converters/piral-ng/common.js":
|
|
55701
|
+
/*!*******************************************!*\
|
|
55702
|
+
!*** ../../converters/piral-ng/common.js ***!
|
|
55703
|
+
\*******************************************/
|
|
55704
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
55705
|
+
|
|
55706
|
+
"use strict";
|
|
55707
|
+
__webpack_require__.r(__webpack_exports__);
|
|
55708
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
55709
|
+
/* harmony export */ "NgExtension": () => (/* reexport safe */ piral_ng_common__WEBPACK_IMPORTED_MODULE_0__.NgExtension),
|
|
55710
|
+
/* harmony export */ "ResourceUrlPipe": () => (/* reexport safe */ piral_ng_common__WEBPACK_IMPORTED_MODULE_0__.ResourceUrlPipe),
|
|
55711
|
+
/* harmony export */ "SharedModule": () => (/* reexport safe */ piral_ng_common__WEBPACK_IMPORTED_MODULE_0__.SharedModule)
|
|
55712
|
+
/* harmony export */ });
|
|
55713
|
+
/* harmony import */ var piral_ng_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! piral-ng-common */ "../../../node_modules/piral-ng-common/fesm2022/piral-ng-common.mjs");
|
|
55714
|
+
|
|
55715
|
+
|
|
55666
55716
|
/***/ }),
|
|
55667
55717
|
|
|
55668
55718
|
/***/ "../../converters/piral-ng/esm/RoutingService.js":
|
|
@@ -55874,7 +55924,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55874
55924
|
/* harmony import */ var _queue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./queue */ "../../converters/piral-ng/esm/queue.js");
|
|
55875
55925
|
/* harmony import */ var _module__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./module */ "../../converters/piral-ng/esm/module.js");
|
|
55876
55926
|
/* harmony import */ var _bootstrap__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./bootstrap */ "../../converters/piral-ng/esm/bootstrap.js");
|
|
55877
|
-
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../common */ "
|
|
55927
|
+
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../common */ "../../../node_modules/piral-ng-common/fesm2022/piral-ng-common.mjs");
|
|
55878
55928
|
|
|
55879
55929
|
|
|
55880
55930
|
|
|
@@ -55977,7 +56027,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55977
56027
|
/* harmony import */ var _startup__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./startup */ "../../converters/piral-ng/esm/startup.js");
|
|
55978
56028
|
/* harmony import */ var _RoutingService__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./RoutingService */ "../../converters/piral-ng/esm/RoutingService.js");
|
|
55979
56029
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./utils */ "../../converters/piral-ng/esm/utils.js");
|
|
55980
|
-
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../common */ "
|
|
56030
|
+
/* harmony import */ var _common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../common */ "../../../node_modules/piral-ng-common/fesm2022/piral-ng-common.mjs");
|
|
55981
56031
|
|
|
55982
56032
|
|
|
55983
56033
|
|
|
@@ -60759,12 +60809,12 @@ function installPiralDebug(options) {
|
|
|
60759
60809
|
debug: debugApiVersion,
|
|
60760
60810
|
instance: {
|
|
60761
60811
|
name: "sample-cross-fx",
|
|
60762
|
-
version: "1.
|
|
60812
|
+
version: "1.3.0-beta.6001",
|
|
60763
60813
|
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"
|
|
60764
60814
|
},
|
|
60765
60815
|
build: {
|
|
60766
|
-
date: "2023-
|
|
60767
|
-
cli: "1.
|
|
60816
|
+
date: "2023-09-26T21:29:56.698Z",
|
|
60817
|
+
cli: "1.3.0-beta.6001",
|
|
60768
60818
|
compat: "1"
|
|
60769
60819
|
}
|
|
60770
60820
|
};
|
|
@@ -72538,7 +72588,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72538
72588
|
/* harmony import */ var _node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../../../node_modules/lit-element/lit-element.js */ "../../../node_modules/lit-element/lit-element.js");
|
|
72539
72589
|
/* harmony import */ var _node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ../../../node_modules/solid-js/dist/dev.js */ "../../../node_modules/solid-js/dist/dev.js");
|
|
72540
72590
|
/* harmony import */ var _node_modules_solid_js_web_dist_dev_js__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ../../../node_modules/solid-js/web/dist/dev.js */ "../../../node_modules/solid-js/web/dist/dev.js");
|
|
72541
|
-
/* harmony import */ var
|
|
72591
|
+
/* harmony import */ var _converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ../../converters/piral-ng/common.js */ "../../converters/piral-ng/common.js");
|
|
72542
72592
|
/* harmony import */ var _node_modules_preact_dist_preact_module_js__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../../../node_modules/preact/dist/preact.module.js */ "../../../node_modules/preact/dist/preact.module.js");
|
|
72543
72593
|
/* harmony import */ var _node_modules_riot_riot_esm_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ../../../node_modules/riot/riot.esm.js */ "../../../node_modules/riot/riot.esm.js");
|
|
72544
72594
|
/* harmony import */ var _node_modules_rxjs_dist_esm5_index_js__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ../../../node_modules/rxjs/dist/esm5/index.js */ "../../../node_modules/rxjs/dist/esm5/index.js");
|
|
@@ -72604,7 +72654,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72604
72654
|
|
|
72605
72655
|
|
|
72606
72656
|
function fillDependencies(deps) {
|
|
72607
|
-
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_19__;deps["@angular/common@16.0.1"]=_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.0.1"]=_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.0.1"]=_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.0.1"]=_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.0.1"]=_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.7.3"]=_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"]=
|
|
72657
|
+
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_19__;deps["@angular/common@16.0.1"]=_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.0.1"]=_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.0.1"]=_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.0.1"]=_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.0.1"]=_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.7.3"]=_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.3.0-beta.6001"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.3.0-beta.6001"]=_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.8.2"]=_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.2"]=_node_modules_vue_dist_vue_runtime_esm_js__WEBPACK_IMPORTED_MODULE_27__;deps["zone.js"]=_node_modules_zone_js_dist_zone_js__WEBPACK_IMPORTED_MODULE_16__;deps["zone.js@0.9.1"]=_node_modules_zone_js_dist_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.3"]=_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.3"]=_node_modules_react_router_dom_esm_react_router_dom_js__WEBPACK_IMPORTED_MODULE_30__
|
|
72608
72658
|
}
|
|
72609
72659
|
|
|
72610
72660
|
|
|
@@ -214143,213 +214193,6 @@ function _setPrototypeOf(o, p) {
|
|
|
214143
214193
|
return _setPrototypeOf(o, p);
|
|
214144
214194
|
}
|
|
214145
214195
|
|
|
214146
|
-
/***/ }),
|
|
214147
|
-
|
|
214148
|
-
/***/ "../../converters/piral-ng/common/fesm2022/piral-ng-common.mjs":
|
|
214149
|
-
/*!*********************************************************************!*\
|
|
214150
|
-
!*** ../../converters/piral-ng/common/fesm2022/piral-ng-common.mjs ***!
|
|
214151
|
-
\*********************************************************************/
|
|
214152
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
214153
|
-
|
|
214154
|
-
"use strict";
|
|
214155
|
-
__webpack_require__.r(__webpack_exports__);
|
|
214156
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
214157
|
-
/* harmony export */ "NgExtension": () => (/* binding */ NgExtension),
|
|
214158
|
-
/* harmony export */ "ResourceUrlPipe": () => (/* binding */ ResourceUrlPipe),
|
|
214159
|
-
/* harmony export */ "SharedModule": () => (/* binding */ SharedModule)
|
|
214160
|
-
/* harmony export */ });
|
|
214161
|
-
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ "../../../node_modules/@angular/common/fesm2022/common.mjs");
|
|
214162
|
-
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "../../../node_modules/@angular/core/fesm2022/core.mjs");
|
|
214163
|
-
|
|
214164
|
-
|
|
214165
|
-
|
|
214166
|
-
const selector = 'extension-component';
|
|
214167
|
-
class NgExtension {
|
|
214168
|
-
elRef;
|
|
214169
|
-
piral;
|
|
214170
|
-
name;
|
|
214171
|
-
params;
|
|
214172
|
-
constructor(elRef, piral) {
|
|
214173
|
-
this.elRef = elRef;
|
|
214174
|
-
this.piral = piral;
|
|
214175
|
-
}
|
|
214176
|
-
ngOnChanges() {
|
|
214177
|
-
this.elRef.nativeElement.dispatchEvent(new CustomEvent('extension-props-changed', {
|
|
214178
|
-
detail: {
|
|
214179
|
-
name: this.name,
|
|
214180
|
-
params: this.params
|
|
214181
|
-
}
|
|
214182
|
-
}));
|
|
214183
|
-
}
|
|
214184
|
-
ngAfterContentInit() {
|
|
214185
|
-
this.piral.renderHtmlExtension(this.elRef.nativeElement, {
|
|
214186
|
-
name: this.name,
|
|
214187
|
-
params: this.params
|
|
214188
|
-
});
|
|
214189
|
-
}
|
|
214190
|
-
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({
|
|
214191
|
-
minVersion: "12.0.0",
|
|
214192
|
-
version: "16.0.1",
|
|
214193
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214194
|
-
type: NgExtension,
|
|
214195
|
-
deps: [{
|
|
214196
|
-
token: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef
|
|
214197
|
-
}, {
|
|
214198
|
-
token: 'piral'
|
|
214199
|
-
}],
|
|
214200
|
-
target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].Component
|
|
214201
|
-
});
|
|
214202
|
-
static ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareComponent"]({
|
|
214203
|
-
minVersion: "14.0.0",
|
|
214204
|
-
version: "16.0.1",
|
|
214205
|
-
type: NgExtension,
|
|
214206
|
-
selector: "extension-component",
|
|
214207
|
-
inputs: {
|
|
214208
|
-
name: "name",
|
|
214209
|
-
params: "params"
|
|
214210
|
-
},
|
|
214211
|
-
usesOnChanges: true,
|
|
214212
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214213
|
-
template: '',
|
|
214214
|
-
isInline: true
|
|
214215
|
-
});
|
|
214216
|
-
}
|
|
214217
|
-
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({
|
|
214218
|
-
minVersion: "12.0.0",
|
|
214219
|
-
version: "16.0.1",
|
|
214220
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214221
|
-
type: NgExtension,
|
|
214222
|
-
decorators: [{
|
|
214223
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Component,
|
|
214224
|
-
args: [{
|
|
214225
|
-
selector,
|
|
214226
|
-
template: ''
|
|
214227
|
-
}]
|
|
214228
|
-
}],
|
|
214229
|
-
ctorParameters: function () {
|
|
214230
|
-
return [{
|
|
214231
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef
|
|
214232
|
-
}, {
|
|
214233
|
-
type: undefined,
|
|
214234
|
-
decorators: [{
|
|
214235
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject,
|
|
214236
|
-
args: ['piral']
|
|
214237
|
-
}]
|
|
214238
|
-
}];
|
|
214239
|
-
},
|
|
214240
|
-
propDecorators: {
|
|
214241
|
-
name: [{
|
|
214242
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input,
|
|
214243
|
-
args: ['name']
|
|
214244
|
-
}],
|
|
214245
|
-
params: [{
|
|
214246
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input,
|
|
214247
|
-
args: ['params']
|
|
214248
|
-
}]
|
|
214249
|
-
}
|
|
214250
|
-
});
|
|
214251
|
-
class ResourceUrlPipe {
|
|
214252
|
-
piral;
|
|
214253
|
-
constructor(piral) {
|
|
214254
|
-
this.piral = piral;
|
|
214255
|
-
}
|
|
214256
|
-
transform(value) {
|
|
214257
|
-
const {
|
|
214258
|
-
basePath = '/'
|
|
214259
|
-
} = this.piral.meta;
|
|
214260
|
-
return basePath + value;
|
|
214261
|
-
}
|
|
214262
|
-
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({
|
|
214263
|
-
minVersion: "12.0.0",
|
|
214264
|
-
version: "16.0.1",
|
|
214265
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214266
|
-
type: ResourceUrlPipe,
|
|
214267
|
-
deps: [{
|
|
214268
|
-
token: 'piral'
|
|
214269
|
-
}],
|
|
214270
|
-
target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].Pipe
|
|
214271
|
-
});
|
|
214272
|
-
static ɵpipe = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclarePipe"]({
|
|
214273
|
-
minVersion: "14.0.0",
|
|
214274
|
-
version: "16.0.1",
|
|
214275
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214276
|
-
type: ResourceUrlPipe,
|
|
214277
|
-
name: "resourceUrl"
|
|
214278
|
-
});
|
|
214279
|
-
}
|
|
214280
|
-
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({
|
|
214281
|
-
minVersion: "12.0.0",
|
|
214282
|
-
version: "16.0.1",
|
|
214283
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214284
|
-
type: ResourceUrlPipe,
|
|
214285
|
-
decorators: [{
|
|
214286
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Pipe,
|
|
214287
|
-
args: [{
|
|
214288
|
-
name: 'resourceUrl'
|
|
214289
|
-
}]
|
|
214290
|
-
}],
|
|
214291
|
-
ctorParameters: function () {
|
|
214292
|
-
return [{
|
|
214293
|
-
type: undefined,
|
|
214294
|
-
decorators: [{
|
|
214295
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject,
|
|
214296
|
-
args: ['piral']
|
|
214297
|
-
}]
|
|
214298
|
-
}];
|
|
214299
|
-
}
|
|
214300
|
-
});
|
|
214301
|
-
const declarationsDef = [NgExtension, ResourceUrlPipe];
|
|
214302
|
-
const exportsDef = [NgExtension, ResourceUrlPipe];
|
|
214303
|
-
const importsDef = [_angular_common__WEBPACK_IMPORTED_MODULE_1__.CommonModule];
|
|
214304
|
-
class SharedModule {
|
|
214305
|
-
static props = {};
|
|
214306
|
-
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({
|
|
214307
|
-
minVersion: "12.0.0",
|
|
214308
|
-
version: "16.0.1",
|
|
214309
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214310
|
-
type: SharedModule,
|
|
214311
|
-
deps: [],
|
|
214312
|
-
target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].NgModule
|
|
214313
|
-
});
|
|
214314
|
-
static ɵmod = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareNgModule"]({
|
|
214315
|
-
minVersion: "14.0.0",
|
|
214316
|
-
version: "16.0.1",
|
|
214317
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214318
|
-
type: SharedModule,
|
|
214319
|
-
declarations: [NgExtension, ResourceUrlPipe],
|
|
214320
|
-
imports: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.CommonModule],
|
|
214321
|
-
exports: [NgExtension, ResourceUrlPipe]
|
|
214322
|
-
});
|
|
214323
|
-
static ɵinj = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareInjector"]({
|
|
214324
|
-
minVersion: "12.0.0",
|
|
214325
|
-
version: "16.0.1",
|
|
214326
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214327
|
-
type: SharedModule,
|
|
214328
|
-
imports: [importsDef]
|
|
214329
|
-
});
|
|
214330
|
-
}
|
|
214331
|
-
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({
|
|
214332
|
-
minVersion: "12.0.0",
|
|
214333
|
-
version: "16.0.1",
|
|
214334
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214335
|
-
type: SharedModule,
|
|
214336
|
-
decorators: [{
|
|
214337
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule,
|
|
214338
|
-
args: [{
|
|
214339
|
-
declarations: declarationsDef,
|
|
214340
|
-
providers: [],
|
|
214341
|
-
imports: importsDef,
|
|
214342
|
-
exports: exportsDef
|
|
214343
|
-
}]
|
|
214344
|
-
}]
|
|
214345
|
-
});
|
|
214346
|
-
|
|
214347
|
-
/**
|
|
214348
|
-
* Generated bundle index. Do not edit.
|
|
214349
|
-
*/
|
|
214350
|
-
|
|
214351
|
-
|
|
214352
|
-
|
|
214353
214196
|
/***/ }),
|
|
214354
214197
|
|
|
214355
214198
|
/***/ "../../framework/piral-base/dist/piral-base-full.mjs":
|
|
@@ -215225,8 +215068,13 @@ function compareVersions(v1, v2) {
|
|
|
215225
215068
|
const s2 = splitVersion(v2);
|
|
215226
215069
|
const len = Math.max(s1.length - 1, s2.length - 1);
|
|
215227
215070
|
for (let i = 0; i < len; i++) {
|
|
215228
|
-
const
|
|
215229
|
-
const
|
|
215071
|
+
const m1 = s1[i] || "0";
|
|
215072
|
+
const m2 = s2[i] || "0";
|
|
215073
|
+
if (m2 === "x") {
|
|
215074
|
+
return 0;
|
|
215075
|
+
}
|
|
215076
|
+
const n1 = parseInt(m1, 10);
|
|
215077
|
+
const n2 = parseInt(m2, 10);
|
|
215230
215078
|
if (n1 > n2) {
|
|
215231
215079
|
return 1;
|
|
215232
215080
|
} else if (n2 > n1) {
|
|
@@ -219538,6 +219386,118 @@ const html = (strings, ...values) => new _lib_template_result_js__WEBPACK_IMPORT
|
|
|
219538
219386
|
const svg = (strings, ...values) => new _lib_template_result_js__WEBPACK_IMPORTED_MODULE_1__.SVGTemplateResult(strings, values, 'svg', _lib_default_template_processor_js__WEBPACK_IMPORTED_MODULE_0__.defaultTemplateProcessor);
|
|
219539
219387
|
//# sourceMappingURL=lit-html.js.map
|
|
219540
219388
|
|
|
219389
|
+
/***/ }),
|
|
219390
|
+
|
|
219391
|
+
/***/ "../../../node_modules/piral-ng-common/fesm2022/piral-ng-common.mjs":
|
|
219392
|
+
/*!**************************************************************************!*\
|
|
219393
|
+
!*** ../../../node_modules/piral-ng-common/fesm2022/piral-ng-common.mjs ***!
|
|
219394
|
+
\**************************************************************************/
|
|
219395
|
+
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
219396
|
+
|
|
219397
|
+
"use strict";
|
|
219398
|
+
__webpack_require__.r(__webpack_exports__);
|
|
219399
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
219400
|
+
/* harmony export */ "NgExtension": () => (/* binding */ NgExtension),
|
|
219401
|
+
/* harmony export */ "ResourceUrlPipe": () => (/* binding */ ResourceUrlPipe),
|
|
219402
|
+
/* harmony export */ "SharedModule": () => (/* binding */ SharedModule)
|
|
219403
|
+
/* harmony export */ });
|
|
219404
|
+
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ "../../../node_modules/@angular/common/fesm2022/common.mjs");
|
|
219405
|
+
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "../../../node_modules/@angular/core/fesm2022/core.mjs");
|
|
219406
|
+
|
|
219407
|
+
|
|
219408
|
+
|
|
219409
|
+
|
|
219410
|
+
const selector = 'extension-component';
|
|
219411
|
+
class NgExtension {
|
|
219412
|
+
elRef;
|
|
219413
|
+
piral;
|
|
219414
|
+
name;
|
|
219415
|
+
params;
|
|
219416
|
+
constructor(elRef, piral) {
|
|
219417
|
+
this.elRef = elRef;
|
|
219418
|
+
this.piral = piral;
|
|
219419
|
+
}
|
|
219420
|
+
ngOnChanges() {
|
|
219421
|
+
this.elRef.nativeElement.dispatchEvent(new CustomEvent('extension-props-changed', {
|
|
219422
|
+
detail: {
|
|
219423
|
+
name: this.name,
|
|
219424
|
+
params: this.params,
|
|
219425
|
+
},
|
|
219426
|
+
}));
|
|
219427
|
+
}
|
|
219428
|
+
ngAfterContentInit() {
|
|
219429
|
+
this.piral.renderHtmlExtension(this.elRef.nativeElement, {
|
|
219430
|
+
name: this.name,
|
|
219431
|
+
params: this.params,
|
|
219432
|
+
});
|
|
219433
|
+
}
|
|
219434
|
+
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: NgExtension, deps: [{ token: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef }, { token: 'piral' }], target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].Component });
|
|
219435
|
+
static ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareComponent"]({ minVersion: "14.0.0", version: "16.2.6", type: NgExtension, selector: "extension-component", inputs: { name: "name", params: "params" }, usesOnChanges: true, ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, template: '', isInline: true });
|
|
219436
|
+
}
|
|
219437
|
+
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: NgExtension, decorators: [{
|
|
219438
|
+
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Component,
|
|
219439
|
+
args: [{
|
|
219440
|
+
selector,
|
|
219441
|
+
template: '',
|
|
219442
|
+
}]
|
|
219443
|
+
}], ctorParameters: function () { return [{ type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef }, { type: undefined, decorators: [{
|
|
219444
|
+
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject,
|
|
219445
|
+
args: ['piral']
|
|
219446
|
+
}] }]; }, propDecorators: { name: [{
|
|
219447
|
+
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input,
|
|
219448
|
+
args: ['name']
|
|
219449
|
+
}], params: [{
|
|
219450
|
+
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input,
|
|
219451
|
+
args: ['params']
|
|
219452
|
+
}] } });
|
|
219453
|
+
|
|
219454
|
+
class ResourceUrlPipe {
|
|
219455
|
+
piral;
|
|
219456
|
+
constructor(piral) {
|
|
219457
|
+
this.piral = piral;
|
|
219458
|
+
}
|
|
219459
|
+
transform(value) {
|
|
219460
|
+
const { basePath = '/' } = this.piral.meta;
|
|
219461
|
+
return basePath + value;
|
|
219462
|
+
}
|
|
219463
|
+
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: ResourceUrlPipe, deps: [{ token: 'piral' }], target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].Pipe });
|
|
219464
|
+
static ɵpipe = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclarePipe"]({ minVersion: "14.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: ResourceUrlPipe, name: "resourceUrl" });
|
|
219465
|
+
}
|
|
219466
|
+
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: ResourceUrlPipe, decorators: [{
|
|
219467
|
+
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Pipe,
|
|
219468
|
+
args: [{ name: 'resourceUrl' }]
|
|
219469
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
219470
|
+
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject,
|
|
219471
|
+
args: ['piral']
|
|
219472
|
+
}] }]; } });
|
|
219473
|
+
|
|
219474
|
+
const declarationsDef = [NgExtension, ResourceUrlPipe];
|
|
219475
|
+
const exportsDef = [NgExtension, ResourceUrlPipe];
|
|
219476
|
+
const importsDef = [_angular_common__WEBPACK_IMPORTED_MODULE_1__.CommonModule];
|
|
219477
|
+
class SharedModule {
|
|
219478
|
+
static props = {};
|
|
219479
|
+
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({ minVersion: "12.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: SharedModule, deps: [], target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].NgModule });
|
|
219480
|
+
static ɵmod = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareNgModule"]({ minVersion: "14.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: SharedModule, declarations: [NgExtension, ResourceUrlPipe], imports: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.CommonModule], exports: [NgExtension, ResourceUrlPipe] });
|
|
219481
|
+
static ɵinj = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareInjector"]({ minVersion: "12.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: SharedModule, imports: [importsDef] });
|
|
219482
|
+
}
|
|
219483
|
+
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({ minVersion: "12.0.0", version: "16.2.6", ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__, type: SharedModule, decorators: [{
|
|
219484
|
+
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule,
|
|
219485
|
+
args: [{
|
|
219486
|
+
declarations: declarationsDef,
|
|
219487
|
+
providers: [],
|
|
219488
|
+
imports: importsDef,
|
|
219489
|
+
exports: exportsDef,
|
|
219490
|
+
}]
|
|
219491
|
+
}] });
|
|
219492
|
+
|
|
219493
|
+
/**
|
|
219494
|
+
* Generated bundle index. Do not edit.
|
|
219495
|
+
*/
|
|
219496
|
+
|
|
219497
|
+
|
|
219498
|
+
//# sourceMappingURL=piral-ng-common.mjs.map
|
|
219499
|
+
|
|
219500
|
+
|
|
219541
219501
|
/***/ }),
|
|
219542
219502
|
|
|
219543
219503
|
/***/ "../../../node_modules/solid-js/dist/dev.js":
|
|
@@ -222300,4 +222260,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
222300
222260
|
|
|
222301
222261
|
/******/ })()
|
|
222302
222262
|
;
|
|
222303
|
-
//# sourceMappingURL=index.
|
|
222263
|
+
//# sourceMappingURL=index.b5b1be.js.map
|