sample-cross-fx 1.3.0-beta.6001 → 1.3.0-beta.6013
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.b5b1be.js → index.0c561c.js} +107 -52
- package/app/{index.b5b1be.js.map → index.0c561c.js.map} +1 -1
- package/app/index.html +1 -1
- package/app/index.js +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +20 -20
|
@@ -54256,7 +54256,12 @@ function createConverter(lazy, opts, language, logLevel) {
|
|
|
54256
54256
|
if (ev.type.startsWith('piral-')) {
|
|
54257
54257
|
const type = ev.type.replace('piral-', '');
|
|
54258
54258
|
const args = ev.detail.arg;
|
|
54259
|
-
|
|
54259
|
+
try {
|
|
54260
|
+
JSON.stringify(args);
|
|
54261
|
+
(0,_interop__WEBPACK_IMPORTED_MODULE_1__.processEvent)(type, args);
|
|
54262
|
+
} catch (_a) {
|
|
54263
|
+
console.warn(`The event "${type}" could not be serialized and will not be handled by Blazor.`);
|
|
54264
|
+
}
|
|
54260
54265
|
}
|
|
54261
54266
|
return eventDispatcher.call(this, ev);
|
|
54262
54267
|
};
|
|
@@ -54589,13 +54594,13 @@ function createDependencyLoader(convert) {
|
|
|
54589
54594
|
detail: meta
|
|
54590
54595
|
}));
|
|
54591
54596
|
});
|
|
54597
|
+
const lazy = convert.lazy && kind !== 'global';
|
|
54592
54598
|
depWithPrio.load = () => {
|
|
54593
54599
|
if (!result) {
|
|
54594
|
-
result = convert.loader.then(load);
|
|
54600
|
+
result = !lazy ? convert.loader.then(load) : Promise.resolve();
|
|
54595
54601
|
}
|
|
54596
54602
|
return result;
|
|
54597
54603
|
};
|
|
54598
|
-
const lazy = convert.lazy && kind !== 'global';
|
|
54599
54604
|
result = !lazy && convert.loader.then(load);
|
|
54600
54605
|
dependency = config => result || (result = load(config));
|
|
54601
54606
|
if (prio) {
|
|
@@ -54791,7 +54796,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
54791
54796
|
/* harmony export */ "unloadResource": () => (/* binding */ unloadResource),
|
|
54792
54797
|
/* harmony export */ "updateElement": () => (/* binding */ updateElement)
|
|
54793
54798
|
/* harmony export */ });
|
|
54794
|
-
/* harmony import */ var
|
|
54799
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ "../../../node_modules/tslib/tslib.es6.js");
|
|
54800
|
+
/* harmony import */ var _events__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./events */ "../../converters/piral-blazor/esm/events.js");
|
|
54801
|
+
|
|
54795
54802
|
|
|
54796
54803
|
const wasmLib = 'Microsoft.AspNetCore.Components.WebAssembly';
|
|
54797
54804
|
const coreLib = 'Piral.Blazor.Core';
|
|
@@ -54898,6 +54905,20 @@ function addScript(url) {
|
|
|
54898
54905
|
document.body.appendChild(script);
|
|
54899
54906
|
});
|
|
54900
54907
|
}
|
|
54908
|
+
function sanatize(props) {
|
|
54909
|
+
// children is a complex thing and will (in general) not be serializable
|
|
54910
|
+
// hence we need to make the JSObjectReference
|
|
54911
|
+
if ('children' in props && typeof props.children === 'object') {
|
|
54912
|
+
const {
|
|
54913
|
+
children
|
|
54914
|
+
} = props,
|
|
54915
|
+
rest = (0,tslib__WEBPACK_IMPORTED_MODULE_0__.__rest)(props, ["children"]);
|
|
54916
|
+
return Object.assign({
|
|
54917
|
+
children: window.DotNet.createJSObjectReference(children)
|
|
54918
|
+
}, rest);
|
|
54919
|
+
}
|
|
54920
|
+
return props;
|
|
54921
|
+
}
|
|
54901
54922
|
function processEvent(type, args) {
|
|
54902
54923
|
return window.DotNet.invokeMethodAsync(coreLib, 'ProcessEvent', type, args);
|
|
54903
54924
|
}
|
|
@@ -54905,19 +54926,19 @@ function setLogLevel(logLevel) {
|
|
|
54905
54926
|
return window.DotNet.invokeMethodAsync(coreLib, 'SetLogLevel', logLevel);
|
|
54906
54927
|
}
|
|
54907
54928
|
function createElement(moduleName, props) {
|
|
54908
|
-
return window.DotNet.invokeMethodAsync(coreLib, 'CreateElement', moduleName, props);
|
|
54929
|
+
return window.DotNet.invokeMethodAsync(coreLib, 'CreateElement', moduleName, sanatize(props));
|
|
54909
54930
|
}
|
|
54910
54931
|
function updateElement(referenceId, props) {
|
|
54911
|
-
return window.DotNet.invokeMethodAsync(coreLib, 'UpdateElement', referenceId, props);
|
|
54932
|
+
return window.DotNet.invokeMethodAsync(coreLib, 'UpdateElement', referenceId, sanatize(props));
|
|
54912
54933
|
}
|
|
54913
54934
|
function destroyElement(referenceId) {
|
|
54914
54935
|
return window.DotNet.invokeMethodAsync(coreLib, 'DestroyElement', referenceId);
|
|
54915
54936
|
}
|
|
54916
54937
|
function activate(moduleName, props) {
|
|
54917
|
-
return window.DotNet.invokeMethodAsync(coreLib, 'Activate', moduleName, props);
|
|
54938
|
+
return window.DotNet.invokeMethodAsync(coreLib, 'Activate', moduleName, sanatize(props));
|
|
54918
54939
|
}
|
|
54919
54940
|
function reactivate(moduleName, referenceId, props) {
|
|
54920
|
-
return window.DotNet.invokeMethodAsync(coreLib, 'Reactivate', moduleName, referenceId, props).catch(() => {
|
|
54941
|
+
return window.DotNet.invokeMethodAsync(coreLib, 'Reactivate', moduleName, referenceId, sanatize(props)).catch(() => {
|
|
54921
54942
|
// Apparently an older version of Piral.Blazor, which does not support this
|
|
54922
54943
|
// discard this error silently (in the future we may print warnings here)
|
|
54923
54944
|
});
|
|
@@ -54975,9 +54996,9 @@ function initialize(scriptUrl, publicPath, opts = {}) {
|
|
|
54975
54996
|
script.onerror = () => reject();
|
|
54976
54997
|
script.onload = () => {
|
|
54977
54998
|
Object.assign(window.Blazor, {
|
|
54978
|
-
emitRenderEvent:
|
|
54979
|
-
emitNavigateEvent:
|
|
54980
|
-
emitPiralEvent:
|
|
54999
|
+
emitRenderEvent: _events__WEBPACK_IMPORTED_MODULE_1__.emitRenderEvent,
|
|
55000
|
+
emitNavigateEvent: _events__WEBPACK_IMPORTED_MODULE_1__.emitNavigateEvent,
|
|
55001
|
+
emitPiralEvent: _events__WEBPACK_IMPORTED_MODULE_1__.emitPiralEvent
|
|
54981
55002
|
});
|
|
54982
55003
|
startBlazor(opts).then(resolve);
|
|
54983
55004
|
};
|
|
@@ -57347,28 +57368,44 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
57347
57368
|
/* harmony export */ });
|
|
57348
57369
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
57349
57370
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
57350
|
-
/* harmony import */ var
|
|
57351
|
-
/* harmony import */ var
|
|
57371
|
+
/* harmony import */ var react_dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react-dom */ "../../../node_modules/react-dom/index.js");
|
|
57372
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
57373
|
+
/* harmony import */ var _modules__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./modules */ "../../framework/piral-core/esm/modules/element.js");
|
|
57374
|
+
|
|
57352
57375
|
|
|
57353
57376
|
|
|
57354
57377
|
|
|
57355
57378
|
const RootListener = () => {
|
|
57356
|
-
const context = (0,
|
|
57379
|
+
const context = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalStateContext)();
|
|
57357
57380
|
react__WEBPACK_IMPORTED_MODULE_0__.useLayoutEffect(() => {
|
|
57358
57381
|
if (typeof document !== 'undefined') {
|
|
57359
|
-
const
|
|
57382
|
+
const renderHtml = ev => {
|
|
57360
57383
|
ev.stopPropagation();
|
|
57361
57384
|
const {
|
|
57362
57385
|
target,
|
|
57363
57386
|
props
|
|
57364
57387
|
} = ev.detail;
|
|
57365
|
-
const [dispose, update] = (0,
|
|
57388
|
+
const [dispose, update] = (0,_modules__WEBPACK_IMPORTED_MODULE_3__.renderElement)(context, target, props);
|
|
57366
57389
|
target.dispose = dispose;
|
|
57367
57390
|
target.update = update;
|
|
57368
57391
|
};
|
|
57369
|
-
|
|
57392
|
+
const renderContent = ev => {
|
|
57393
|
+
ev.stopPropagation();
|
|
57394
|
+
const {
|
|
57395
|
+
target,
|
|
57396
|
+
content,
|
|
57397
|
+
portalId
|
|
57398
|
+
} = ev.detail;
|
|
57399
|
+
const portal = /*#__PURE__*/(0,react_dom__WEBPACK_IMPORTED_MODULE_1__.createPortal)(content, target);
|
|
57400
|
+
const dispose = () => context.hidePortal(portalId, portal);
|
|
57401
|
+
context.showPortal(portalId, portal);
|
|
57402
|
+
target.dispose = dispose;
|
|
57403
|
+
};
|
|
57404
|
+
document.body.addEventListener('render-html', renderHtml, false);
|
|
57405
|
+
document.body.addEventListener('render-content', renderContent, false);
|
|
57370
57406
|
return () => {
|
|
57371
|
-
document.body.removeEventListener('render-html',
|
|
57407
|
+
document.body.removeEventListener('render-html', renderHtml, false);
|
|
57408
|
+
document.body.removeEventListener('render-content', renderContent, false);
|
|
57372
57409
|
};
|
|
57373
57410
|
}
|
|
57374
57411
|
}, [context]);
|
|
@@ -57762,39 +57799,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
57762
57799
|
/* harmony export */ });
|
|
57763
57800
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
57764
57801
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__);
|
|
57765
|
-
/* harmony import */ var
|
|
57766
|
-
/* harmony import */ var _wrapComponent__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./wrapComponent */ "../../framework/piral-core/esm/components/wrapComponent.js");
|
|
57802
|
+
/* harmony import */ var piral_base__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! piral-base */ "../../framework/piral-base/dist/piral-base-full.mjs");
|
|
57767
57803
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
57768
57804
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/react.js");
|
|
57769
|
-
/* harmony import */ var
|
|
57770
|
-
|
|
57805
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/helpers.js");
|
|
57771
57806
|
|
|
57772
57807
|
|
|
57773
57808
|
|
|
57774
57809
|
|
|
57775
|
-
const wrapper = ({
|
|
57776
|
-
children
|
|
57777
|
-
}) => (0,_utils__WEBPACK_IMPORTED_MODULE_1__.defaultRender)(children);
|
|
57778
|
-
const renderExtensions = [{
|
|
57779
|
-
component: props => {
|
|
57780
|
-
const context = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalStateContext)();
|
|
57781
|
-
const converters = context.converters;
|
|
57782
|
-
const piral = context.apis._;
|
|
57783
|
-
const {
|
|
57784
|
-
component,
|
|
57785
|
-
props: args
|
|
57786
|
-
} = props.params;
|
|
57787
|
-
const Component = react__WEBPACK_IMPORTED_MODULE_0__.useMemo(() => (0,_wrapComponent__WEBPACK_IMPORTED_MODULE_3__.wrapComponent)(converters, component, {
|
|
57788
|
-
piral
|
|
57789
|
-
}, wrapper), [component]);
|
|
57790
|
-
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(Component, Object.assign({}, args));
|
|
57791
|
-
},
|
|
57792
|
-
defaults: {},
|
|
57793
|
-
pilet: '',
|
|
57794
|
-
reference: {
|
|
57795
|
-
displayName: 'AnyComponent'
|
|
57796
|
-
}
|
|
57797
|
-
}];
|
|
57798
57810
|
function defaultOrder(extensions) {
|
|
57799
57811
|
return extensions;
|
|
57800
57812
|
}
|
|
@@ -57813,8 +57825,8 @@ function ExtensionSlot(props) {
|
|
|
57813
57825
|
emptySkipsRender = false,
|
|
57814
57826
|
order = defaultOrder
|
|
57815
57827
|
} = props;
|
|
57816
|
-
const extensions = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalState)(s =>
|
|
57817
|
-
const isEmpty = extensions.length === 0 && (0,
|
|
57828
|
+
const extensions = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalState)(s => s.registry.extensions[name] || _utils__WEBPACK_IMPORTED_MODULE_3__.none);
|
|
57829
|
+
const isEmpty = extensions.length === 0 && (0,piral_base__WEBPACK_IMPORTED_MODULE_4__.isfunc)(empty);
|
|
57818
57830
|
const content = isEmpty ? [(0,_utils__WEBPACK_IMPORTED_MODULE_1__.defaultRender)(empty(), 'empty')] : order(extensions).map(({
|
|
57819
57831
|
component: Component,
|
|
57820
57832
|
reference,
|
|
@@ -59208,6 +59220,47 @@ if (typeof window !== 'undefined' && 'customElements' in window) {
|
|
|
59208
59220
|
}
|
|
59209
59221
|
}
|
|
59210
59222
|
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_3__.slotName, PiralSlot);
|
|
59223
|
+
/**
|
|
59224
|
+
* This is a virtual element to render children defined in React / by Piral in other
|
|
59225
|
+
* frameworks.
|
|
59226
|
+
*
|
|
59227
|
+
* Usage:
|
|
59228
|
+
*
|
|
59229
|
+
* ```
|
|
59230
|
+
* <piral-content cid="123"></piral-content>
|
|
59231
|
+
* ```
|
|
59232
|
+
*/
|
|
59233
|
+
class PiralContent extends HTMLElement {
|
|
59234
|
+
constructor() {
|
|
59235
|
+
super(...arguments);
|
|
59236
|
+
this.dispose = _utils__WEBPACK_IMPORTED_MODULE_0__.noop;
|
|
59237
|
+
}
|
|
59238
|
+
connectedCallback() {
|
|
59239
|
+
this.style.display = 'contents';
|
|
59240
|
+
const cid = this.getAttribute('cid');
|
|
59241
|
+
const content = PiralContent.contentAssignments[cid];
|
|
59242
|
+
const portal = this.closest('piral-portal');
|
|
59243
|
+
if (content && portal) {
|
|
59244
|
+
const portalId = portal.getAttribute('pid');
|
|
59245
|
+
document.body.dispatchEvent(new CustomEvent('render-content', {
|
|
59246
|
+
detail: {
|
|
59247
|
+
target: this,
|
|
59248
|
+
content,
|
|
59249
|
+
portalId
|
|
59250
|
+
}
|
|
59251
|
+
}));
|
|
59252
|
+
}
|
|
59253
|
+
}
|
|
59254
|
+
disconnectedCallback() {
|
|
59255
|
+
this.dispose();
|
|
59256
|
+
this.dispose = _utils__WEBPACK_IMPORTED_MODULE_0__.noop;
|
|
59257
|
+
}
|
|
59258
|
+
}
|
|
59259
|
+
PiralContent.contentAssignments = {};
|
|
59260
|
+
window.assignContent = (cid, content) => {
|
|
59261
|
+
PiralContent.contentAssignments[cid] = content;
|
|
59262
|
+
};
|
|
59263
|
+
customElements.define(_utils__WEBPACK_IMPORTED_MODULE_3__.contentName, PiralContent);
|
|
59211
59264
|
}
|
|
59212
59265
|
function renderElement(context, element, props) {
|
|
59213
59266
|
if (typeof window !== 'undefined') {
|
|
@@ -59714,6 +59767,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
59714
59767
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
59715
59768
|
/* harmony export */ "attachDomPortal": () => (/* binding */ attachDomPortal),
|
|
59716
59769
|
/* harmony export */ "changeDomPortal": () => (/* binding */ changeDomPortal),
|
|
59770
|
+
/* harmony export */ "contentName": () => (/* binding */ contentName),
|
|
59717
59771
|
/* harmony export */ "convertComponent": () => (/* binding */ convertComponent),
|
|
59718
59772
|
/* harmony export */ "extensionName": () => (/* binding */ extensionName),
|
|
59719
59773
|
/* harmony export */ "portalName": () => (/* binding */ portalName),
|
|
@@ -59726,6 +59780,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
59726
59780
|
|
|
59727
59781
|
|
|
59728
59782
|
const extensionName = 'piral-extension';
|
|
59783
|
+
const contentName = 'piral-content';
|
|
59729
59784
|
const portalName = 'piral-portal';
|
|
59730
59785
|
const slotName = 'piral-slot';
|
|
59731
59786
|
function attachDomPortal(id, context, element, component, props) {
|
|
@@ -60809,12 +60864,12 @@ function installPiralDebug(options) {
|
|
|
60809
60864
|
debug: debugApiVersion,
|
|
60810
60865
|
instance: {
|
|
60811
60866
|
name: "sample-cross-fx",
|
|
60812
|
-
version: "1.3.0-beta.
|
|
60867
|
+
version: "1.3.0-beta.6013",
|
|
60813
60868
|
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"
|
|
60814
60869
|
},
|
|
60815
60870
|
build: {
|
|
60816
|
-
date: "2023-09-
|
|
60817
|
-
cli: "1.3.0-beta.
|
|
60871
|
+
date: "2023-09-28T11:10:35.391Z",
|
|
60872
|
+
cli: "1.3.0-beta.6013",
|
|
60818
60873
|
compat: "1"
|
|
60819
60874
|
}
|
|
60820
60875
|
};
|
|
@@ -72654,7 +72709,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
72654
72709
|
|
|
72655
72710
|
|
|
72656
72711
|
function fillDependencies(deps) {
|
|
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.
|
|
72712
|
+
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.6013"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_25__;deps["piral-ng@1.3.0-beta.6013"]=_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__
|
|
72658
72713
|
}
|
|
72659
72714
|
|
|
72660
72715
|
|
|
@@ -222260,4 +222315,4 @@ root.render( /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_8__.createElement(piral
|
|
|
222260
222315
|
|
|
222261
222316
|
/******/ })()
|
|
222262
222317
|
;
|
|
222263
|
-
//# sourceMappingURL=index.
|
|
222318
|
+
//# sourceMappingURL=index.0c561c.js.map
|