sample-cross-fx 1.3.0-beta.5959 → 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.f9a06b.js → index.b5b1be.js} +180 -224
- package/app/{index.f9a06b.js.map → index.b5b1be.js.map} +1 -1
- package/app/index.d.ts +2 -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, kind) {
|
|
54441
|
-
return loader.defineBlazorReferences(references, meta, satellites, prio, kind);
|
|
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,7 +54505,7 @@ function createDependencyLoader(convert) {
|
|
|
54490
54505
|
getDependency() {
|
|
54491
54506
|
return dependency;
|
|
54492
54507
|
},
|
|
54493
|
-
defineBlazorReferences(references, meta = {}, satellites = {}, prio = 0, kind = 'local') {
|
|
54508
|
+
defineBlazorReferences(references, meta = {}, satellites = {}, prio = 0, kind = 'local', sharedDependencies = []) {
|
|
54494
54509
|
prio = Math.max(prio, 0);
|
|
54495
54510
|
const depWithPrio = {
|
|
54496
54511
|
prio,
|
|
@@ -54511,11 +54526,24 @@ function createDependencyLoader(convert) {
|
|
|
54511
54526
|
if (!capabilities.includes('language')) {
|
|
54512
54527
|
satellites = undefined;
|
|
54513
54528
|
}
|
|
54529
|
+
const supportsCore = capabilities.includes('core-pilet');
|
|
54514
54530
|
const dependencies = references.filter(m => m.endsWith('.dll'));
|
|
54515
54531
|
const dllUrl = dependencies.pop();
|
|
54516
54532
|
const pdbUrl = toPdb(dllUrl);
|
|
54517
54533
|
const dependencySymbols = dependencies.map(toPdb).filter(dep => references.includes(dep));
|
|
54518
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
|
+
}
|
|
54519
54547
|
yield (0,_interop__WEBPACK_IMPORTED_MODULE_1__.loadBlazorPilet)(id, {
|
|
54520
54548
|
name: meta.name || '(unknown)',
|
|
54521
54549
|
version: meta.version || '0.0.0',
|
|
@@ -54523,8 +54551,8 @@ function createDependencyLoader(convert) {
|
|
|
54523
54551
|
baseUrl: meta.basePath || dllUrl.substring(0, dllUrl.lastIndexOf('/')).replace('/_framework/', '/'),
|
|
54524
54552
|
dependencies,
|
|
54525
54553
|
dependencySymbols: capabilities.includes('dependency-symbols') ? dependencySymbols : undefined,
|
|
54526
|
-
sharedDependencies:
|
|
54527
|
-
kind:
|
|
54554
|
+
sharedDependencies: supportsCore ? sharedDependencies : undefined,
|
|
54555
|
+
kind: supportsCore ? kind : undefined,
|
|
54528
54556
|
satellites,
|
|
54529
54557
|
dllUrl,
|
|
54530
54558
|
pdbUrl: references.includes(pdbUrl) ? pdbUrl : undefined
|
|
@@ -55667,6 +55695,24 @@ function createExtension(rootName) {
|
|
|
55667
55695
|
};
|
|
55668
55696
|
}
|
|
55669
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
|
+
|
|
55670
55716
|
/***/ }),
|
|
55671
55717
|
|
|
55672
55718
|
/***/ "../../converters/piral-ng/esm/RoutingService.js":
|
|
@@ -55878,7 +55924,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55878
55924
|
/* harmony import */ var _queue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./queue */ "../../converters/piral-ng/esm/queue.js");
|
|
55879
55925
|
/* harmony import */ var _module__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./module */ "../../converters/piral-ng/esm/module.js");
|
|
55880
55926
|
/* harmony import */ var _bootstrap__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./bootstrap */ "../../converters/piral-ng/esm/bootstrap.js");
|
|
55881
|
-
/* 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");
|
|
55882
55928
|
|
|
55883
55929
|
|
|
55884
55930
|
|
|
@@ -55981,7 +56027,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55981
56027
|
/* harmony import */ var _startup__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./startup */ "../../converters/piral-ng/esm/startup.js");
|
|
55982
56028
|
/* harmony import */ var _RoutingService__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./RoutingService */ "../../converters/piral-ng/esm/RoutingService.js");
|
|
55983
56029
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./utils */ "../../converters/piral-ng/esm/utils.js");
|
|
55984
|
-
/* 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");
|
|
55985
56031
|
|
|
55986
56032
|
|
|
55987
56033
|
|
|
@@ -60763,12 +60809,12 @@ function installPiralDebug(options) {
|
|
|
60763
60809
|
debug: debugApiVersion,
|
|
60764
60810
|
instance: {
|
|
60765
60811
|
name: "sample-cross-fx",
|
|
60766
|
-
version: "1.3.0-beta.
|
|
60812
|
+
version: "1.3.0-beta.6001",
|
|
60767
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"
|
|
60768
60814
|
},
|
|
60769
60815
|
build: {
|
|
60770
|
-
date: "2023-09-
|
|
60771
|
-
cli: "1.
|
|
60816
|
+
date: "2023-09-26T21:29:56.698Z",
|
|
60817
|
+
cli: "1.3.0-beta.6001",
|
|
60772
60818
|
compat: "1"
|
|
60773
60819
|
}
|
|
60774
60820
|
};
|
|
@@ -72542,7 +72588,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72542
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");
|
|
72543
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");
|
|
72544
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");
|
|
72545
|
-
/* 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");
|
|
72546
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");
|
|
72547
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");
|
|
72548
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");
|
|
@@ -72608,7 +72654,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72608
72654
|
|
|
72609
72655
|
|
|
72610
72656
|
function fillDependencies(deps) {
|
|
72611
|
-
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__
|
|
72612
72658
|
}
|
|
72613
72659
|
|
|
72614
72660
|
|
|
@@ -214147,213 +214193,6 @@ function _setPrototypeOf(o, p) {
|
|
|
214147
214193
|
return _setPrototypeOf(o, p);
|
|
214148
214194
|
}
|
|
214149
214195
|
|
|
214150
|
-
/***/ }),
|
|
214151
|
-
|
|
214152
|
-
/***/ "../../converters/piral-ng/common/fesm2022/piral-ng-common.mjs":
|
|
214153
|
-
/*!*********************************************************************!*\
|
|
214154
|
-
!*** ../../converters/piral-ng/common/fesm2022/piral-ng-common.mjs ***!
|
|
214155
|
-
\*********************************************************************/
|
|
214156
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
|
|
214157
|
-
|
|
214158
|
-
"use strict";
|
|
214159
|
-
__webpack_require__.r(__webpack_exports__);
|
|
214160
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
214161
|
-
/* harmony export */ "NgExtension": () => (/* binding */ NgExtension),
|
|
214162
|
-
/* harmony export */ "ResourceUrlPipe": () => (/* binding */ ResourceUrlPipe),
|
|
214163
|
-
/* harmony export */ "SharedModule": () => (/* binding */ SharedModule)
|
|
214164
|
-
/* harmony export */ });
|
|
214165
|
-
/* harmony import */ var _angular_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @angular/common */ "../../../node_modules/@angular/common/fesm2022/common.mjs");
|
|
214166
|
-
/* harmony import */ var _angular_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @angular/core */ "../../../node_modules/@angular/core/fesm2022/core.mjs");
|
|
214167
|
-
|
|
214168
|
-
|
|
214169
|
-
|
|
214170
|
-
const selector = 'extension-component';
|
|
214171
|
-
class NgExtension {
|
|
214172
|
-
elRef;
|
|
214173
|
-
piral;
|
|
214174
|
-
name;
|
|
214175
|
-
params;
|
|
214176
|
-
constructor(elRef, piral) {
|
|
214177
|
-
this.elRef = elRef;
|
|
214178
|
-
this.piral = piral;
|
|
214179
|
-
}
|
|
214180
|
-
ngOnChanges() {
|
|
214181
|
-
this.elRef.nativeElement.dispatchEvent(new CustomEvent('extension-props-changed', {
|
|
214182
|
-
detail: {
|
|
214183
|
-
name: this.name,
|
|
214184
|
-
params: this.params
|
|
214185
|
-
}
|
|
214186
|
-
}));
|
|
214187
|
-
}
|
|
214188
|
-
ngAfterContentInit() {
|
|
214189
|
-
this.piral.renderHtmlExtension(this.elRef.nativeElement, {
|
|
214190
|
-
name: this.name,
|
|
214191
|
-
params: this.params
|
|
214192
|
-
});
|
|
214193
|
-
}
|
|
214194
|
-
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({
|
|
214195
|
-
minVersion: "12.0.0",
|
|
214196
|
-
version: "16.0.1",
|
|
214197
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214198
|
-
type: NgExtension,
|
|
214199
|
-
deps: [{
|
|
214200
|
-
token: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef
|
|
214201
|
-
}, {
|
|
214202
|
-
token: 'piral'
|
|
214203
|
-
}],
|
|
214204
|
-
target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].Component
|
|
214205
|
-
});
|
|
214206
|
-
static ɵcmp = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareComponent"]({
|
|
214207
|
-
minVersion: "14.0.0",
|
|
214208
|
-
version: "16.0.1",
|
|
214209
|
-
type: NgExtension,
|
|
214210
|
-
selector: "extension-component",
|
|
214211
|
-
inputs: {
|
|
214212
|
-
name: "name",
|
|
214213
|
-
params: "params"
|
|
214214
|
-
},
|
|
214215
|
-
usesOnChanges: true,
|
|
214216
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214217
|
-
template: '',
|
|
214218
|
-
isInline: true
|
|
214219
|
-
});
|
|
214220
|
-
}
|
|
214221
|
-
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({
|
|
214222
|
-
minVersion: "12.0.0",
|
|
214223
|
-
version: "16.0.1",
|
|
214224
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214225
|
-
type: NgExtension,
|
|
214226
|
-
decorators: [{
|
|
214227
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Component,
|
|
214228
|
-
args: [{
|
|
214229
|
-
selector,
|
|
214230
|
-
template: ''
|
|
214231
|
-
}]
|
|
214232
|
-
}],
|
|
214233
|
-
ctorParameters: function () {
|
|
214234
|
-
return [{
|
|
214235
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.ElementRef
|
|
214236
|
-
}, {
|
|
214237
|
-
type: undefined,
|
|
214238
|
-
decorators: [{
|
|
214239
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject,
|
|
214240
|
-
args: ['piral']
|
|
214241
|
-
}]
|
|
214242
|
-
}];
|
|
214243
|
-
},
|
|
214244
|
-
propDecorators: {
|
|
214245
|
-
name: [{
|
|
214246
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input,
|
|
214247
|
-
args: ['name']
|
|
214248
|
-
}],
|
|
214249
|
-
params: [{
|
|
214250
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Input,
|
|
214251
|
-
args: ['params']
|
|
214252
|
-
}]
|
|
214253
|
-
}
|
|
214254
|
-
});
|
|
214255
|
-
class ResourceUrlPipe {
|
|
214256
|
-
piral;
|
|
214257
|
-
constructor(piral) {
|
|
214258
|
-
this.piral = piral;
|
|
214259
|
-
}
|
|
214260
|
-
transform(value) {
|
|
214261
|
-
const {
|
|
214262
|
-
basePath = '/'
|
|
214263
|
-
} = this.piral.meta;
|
|
214264
|
-
return basePath + value;
|
|
214265
|
-
}
|
|
214266
|
-
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({
|
|
214267
|
-
minVersion: "12.0.0",
|
|
214268
|
-
version: "16.0.1",
|
|
214269
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214270
|
-
type: ResourceUrlPipe,
|
|
214271
|
-
deps: [{
|
|
214272
|
-
token: 'piral'
|
|
214273
|
-
}],
|
|
214274
|
-
target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].Pipe
|
|
214275
|
-
});
|
|
214276
|
-
static ɵpipe = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclarePipe"]({
|
|
214277
|
-
minVersion: "14.0.0",
|
|
214278
|
-
version: "16.0.1",
|
|
214279
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214280
|
-
type: ResourceUrlPipe,
|
|
214281
|
-
name: "resourceUrl"
|
|
214282
|
-
});
|
|
214283
|
-
}
|
|
214284
|
-
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({
|
|
214285
|
-
minVersion: "12.0.0",
|
|
214286
|
-
version: "16.0.1",
|
|
214287
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214288
|
-
type: ResourceUrlPipe,
|
|
214289
|
-
decorators: [{
|
|
214290
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Pipe,
|
|
214291
|
-
args: [{
|
|
214292
|
-
name: 'resourceUrl'
|
|
214293
|
-
}]
|
|
214294
|
-
}],
|
|
214295
|
-
ctorParameters: function () {
|
|
214296
|
-
return [{
|
|
214297
|
-
type: undefined,
|
|
214298
|
-
decorators: [{
|
|
214299
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.Inject,
|
|
214300
|
-
args: ['piral']
|
|
214301
|
-
}]
|
|
214302
|
-
}];
|
|
214303
|
-
}
|
|
214304
|
-
});
|
|
214305
|
-
const declarationsDef = [NgExtension, ResourceUrlPipe];
|
|
214306
|
-
const exportsDef = [NgExtension, ResourceUrlPipe];
|
|
214307
|
-
const importsDef = [_angular_common__WEBPACK_IMPORTED_MODULE_1__.CommonModule];
|
|
214308
|
-
class SharedModule {
|
|
214309
|
-
static props = {};
|
|
214310
|
-
static ɵfac = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareFactory"]({
|
|
214311
|
-
minVersion: "12.0.0",
|
|
214312
|
-
version: "16.0.1",
|
|
214313
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214314
|
-
type: SharedModule,
|
|
214315
|
-
deps: [],
|
|
214316
|
-
target: _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵFactoryTarget"].NgModule
|
|
214317
|
-
});
|
|
214318
|
-
static ɵmod = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareNgModule"]({
|
|
214319
|
-
minVersion: "14.0.0",
|
|
214320
|
-
version: "16.0.1",
|
|
214321
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214322
|
-
type: SharedModule,
|
|
214323
|
-
declarations: [NgExtension, ResourceUrlPipe],
|
|
214324
|
-
imports: [_angular_common__WEBPACK_IMPORTED_MODULE_1__.CommonModule],
|
|
214325
|
-
exports: [NgExtension, ResourceUrlPipe]
|
|
214326
|
-
});
|
|
214327
|
-
static ɵinj = _angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareInjector"]({
|
|
214328
|
-
minVersion: "12.0.0",
|
|
214329
|
-
version: "16.0.1",
|
|
214330
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214331
|
-
type: SharedModule,
|
|
214332
|
-
imports: [importsDef]
|
|
214333
|
-
});
|
|
214334
|
-
}
|
|
214335
|
-
_angular_core__WEBPACK_IMPORTED_MODULE_0__["ɵɵngDeclareClassMetadata"]({
|
|
214336
|
-
minVersion: "12.0.0",
|
|
214337
|
-
version: "16.0.1",
|
|
214338
|
-
ngImport: _angular_core__WEBPACK_IMPORTED_MODULE_0__,
|
|
214339
|
-
type: SharedModule,
|
|
214340
|
-
decorators: [{
|
|
214341
|
-
type: _angular_core__WEBPACK_IMPORTED_MODULE_0__.NgModule,
|
|
214342
|
-
args: [{
|
|
214343
|
-
declarations: declarationsDef,
|
|
214344
|
-
providers: [],
|
|
214345
|
-
imports: importsDef,
|
|
214346
|
-
exports: exportsDef
|
|
214347
|
-
}]
|
|
214348
|
-
}]
|
|
214349
|
-
});
|
|
214350
|
-
|
|
214351
|
-
/**
|
|
214352
|
-
* Generated bundle index. Do not edit.
|
|
214353
|
-
*/
|
|
214354
|
-
|
|
214355
|
-
|
|
214356
|
-
|
|
214357
214196
|
/***/ }),
|
|
214358
214197
|
|
|
214359
214198
|
/***/ "../../framework/piral-base/dist/piral-base-full.mjs":
|
|
@@ -215229,8 +215068,13 @@ function compareVersions(v1, v2) {
|
|
|
215229
215068
|
const s2 = splitVersion(v2);
|
|
215230
215069
|
const len = Math.max(s1.length - 1, s2.length - 1);
|
|
215231
215070
|
for (let i = 0; i < len; i++) {
|
|
215232
|
-
const
|
|
215233
|
-
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);
|
|
215234
215078
|
if (n1 > n2) {
|
|
215235
215079
|
return 1;
|
|
215236
215080
|
} else if (n2 > n1) {
|
|
@@ -219542,6 +219386,118 @@ const html = (strings, ...values) => new _lib_template_result_js__WEBPACK_IMPORT
|
|
|
219542
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);
|
|
219543
219387
|
//# sourceMappingURL=lit-html.js.map
|
|
219544
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
|
+
|
|
219545
219501
|
/***/ }),
|
|
219546
219502
|
|
|
219547
219503
|
/***/ "../../../node_modules/solid-js/dist/dev.js":
|
|
@@ -222304,4 +222260,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
222304
222260
|
|
|
222305
222261
|
/******/ })()
|
|
222306
222262
|
;
|
|
222307
|
-
//# sourceMappingURL=index.
|
|
222263
|
+
//# sourceMappingURL=index.b5b1be.js.map
|