sample-cross-fx 0.14.8-beta.3487 → 0.14.8-beta.3504
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.22dab2.js → index.b43df5.js} +113 -93
- package/app/{index.22dab2.js.map → index.b43df5.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 +1 -1
|
@@ -129510,7 +129510,8 @@ const Piral = ({
|
|
|
129510
129510
|
}, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_3__.ResponsiveLayout, {
|
|
129511
129511
|
breakpoints: breakpoints
|
|
129512
129512
|
}), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_4__.Mediator, {
|
|
129513
|
-
options: instance.options
|
|
129513
|
+
options: instance.options,
|
|
129514
|
+
key: instance.id
|
|
129514
129515
|
}), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_5__.PiralView, null, /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_6__.PortalRenderer, {
|
|
129515
129516
|
id: "root"
|
|
129516
129517
|
}), children));
|
|
@@ -130049,7 +130050,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130049
130050
|
/* harmony export */ });
|
|
130050
130051
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
130051
130052
|
/* harmony import */ var piral_base__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! piral-base */ "../../framework/piral-base/esm/create.js");
|
|
130052
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
130053
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
130053
130054
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/helpers.js");
|
|
130054
130055
|
|
|
130055
130056
|
|
|
@@ -130062,19 +130063,26 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130062
130063
|
const Mediator = ({
|
|
130063
130064
|
options
|
|
130064
130065
|
}) => {
|
|
130065
|
-
const
|
|
130066
|
+
const {
|
|
130067
|
+
initialize,
|
|
130068
|
+
readState
|
|
130069
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_1__.useGlobalStateContext)();
|
|
130066
130070
|
react__WEBPACK_IMPORTED_MODULE_0__.useEffect(() => {
|
|
130067
|
-
const
|
|
130068
|
-
connect,
|
|
130069
|
-
disconnect
|
|
130070
|
-
} = (0,piral_base__WEBPACK_IMPORTED_MODULE_2__.startLoadingPilets)(options);
|
|
130071
|
+
const shouldLoad = readState(s => s.app.loading);
|
|
130071
130072
|
|
|
130072
|
-
|
|
130073
|
-
|
|
130074
|
-
|
|
130073
|
+
if (shouldLoad) {
|
|
130074
|
+
const {
|
|
130075
|
+
connect,
|
|
130076
|
+
disconnect
|
|
130077
|
+
} = (0,piral_base__WEBPACK_IMPORTED_MODULE_2__.startLoadingPilets)(options);
|
|
130075
130078
|
|
|
130076
|
-
|
|
130077
|
-
|
|
130079
|
+
const notifier = (error, pilets, loaded) => {
|
|
130080
|
+
initialize(!loaded, error, pilets);
|
|
130081
|
+
};
|
|
130082
|
+
|
|
130083
|
+
connect(notifier);
|
|
130084
|
+
return () => disconnect(notifier);
|
|
130085
|
+
}
|
|
130078
130086
|
}, _utils__WEBPACK_IMPORTED_MODULE_3__.none); // tslint:disable-next-line:no-null-keyword
|
|
130079
130087
|
|
|
130080
130088
|
return null;
|
|
@@ -130241,10 +130249,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130241
130249
|
/* harmony export */ });
|
|
130242
130250
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
130243
130251
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
130244
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
130245
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/media.js");
|
|
130252
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/media.js");
|
|
130246
130253
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/media.js");
|
|
130247
|
-
/* harmony import */ var
|
|
130254
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/react.js");
|
|
130248
130255
|
|
|
130249
130256
|
|
|
130250
130257
|
|
|
@@ -130257,14 +130264,16 @@ const ResponsiveLayout = ({
|
|
|
130257
130264
|
children
|
|
130258
130265
|
}) => {
|
|
130259
130266
|
const current = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalState)(m => m.app.layout) || 'desktop';
|
|
130260
|
-
const
|
|
130261
|
-
|
|
130267
|
+
const {
|
|
130268
|
+
changeLayout
|
|
130269
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useGlobalStateContext)();
|
|
130270
|
+
const selected = (0,_hooks__WEBPACK_IMPORTED_MODULE_3__.useMedia)(breakpoints, _utils__WEBPACK_IMPORTED_MODULE_1__.defaultLayouts, current);
|
|
130262
130271
|
react__WEBPACK_IMPORTED_MODULE_0__.useEffect(() => {
|
|
130263
130272
|
if (selected !== current) {
|
|
130264
|
-
|
|
130273
|
+
changeLayout(selected);
|
|
130265
130274
|
}
|
|
130266
130275
|
}, [selected]);
|
|
130267
|
-
return (0,
|
|
130276
|
+
return (0,_utils__WEBPACK_IMPORTED_MODULE_4__.defaultRender)(children);
|
|
130268
130277
|
};
|
|
130269
130278
|
ResponsiveLayout.displayName = 'ResponsiveLayout';
|
|
130270
130279
|
|
|
@@ -130281,7 +130290,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130281
130290
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
130282
130291
|
/* harmony export */ "SetComponent": () => (/* binding */ SetComponent)
|
|
130283
130292
|
/* harmony export */ });
|
|
130284
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
130293
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
130285
130294
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/setter.js");
|
|
130286
130295
|
|
|
130287
130296
|
/**
|
|
@@ -130292,7 +130301,9 @@ function SetComponent({
|
|
|
130292
130301
|
name,
|
|
130293
130302
|
component
|
|
130294
130303
|
}) {
|
|
130295
|
-
const
|
|
130304
|
+
const {
|
|
130305
|
+
setComponent
|
|
130306
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_0__.useGlobalStateContext)();
|
|
130296
130307
|
(0,_hooks__WEBPACK_IMPORTED_MODULE_1__.useSetter)(() => component && setComponent(name, component)); // tslint:disable-next-line:no-null-keyword
|
|
130297
130308
|
|
|
130298
130309
|
return null;
|
|
@@ -130311,7 +130322,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130311
130322
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
130312
130323
|
/* harmony export */ "SetError": () => (/* binding */ SetError)
|
|
130313
130324
|
/* harmony export */ });
|
|
130314
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
130325
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
130315
130326
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/setter.js");
|
|
130316
130327
|
|
|
130317
130328
|
/**
|
|
@@ -130322,7 +130333,9 @@ function SetError({
|
|
|
130322
130333
|
type,
|
|
130323
130334
|
component
|
|
130324
130335
|
}) {
|
|
130325
|
-
const
|
|
130336
|
+
const {
|
|
130337
|
+
setErrorComponent
|
|
130338
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_0__.useGlobalStateContext)();
|
|
130326
130339
|
(0,_hooks__WEBPACK_IMPORTED_MODULE_1__.useSetter)(() => component && setErrorComponent(type, component)); // tslint:disable-next-line:no-null-keyword
|
|
130327
130340
|
|
|
130328
130341
|
return null;
|
|
@@ -130403,7 +130416,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130403
130416
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
130404
130417
|
/* harmony export */ "SetProvider": () => (/* binding */ SetProvider)
|
|
130405
130418
|
/* harmony export */ });
|
|
130406
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
130419
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
130407
130420
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/setter.js");
|
|
130408
130421
|
|
|
130409
130422
|
/**
|
|
@@ -130413,7 +130426,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130413
130426
|
function SetProvider({
|
|
130414
130427
|
provider
|
|
130415
130428
|
}) {
|
|
130416
|
-
const
|
|
130429
|
+
const {
|
|
130430
|
+
includeProvider
|
|
130431
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_0__.useGlobalStateContext)();
|
|
130417
130432
|
(0,_hooks__WEBPACK_IMPORTED_MODULE_1__.useSetter)(() => provider && includeProvider(provider)); // tslint:disable-next-line:no-null-keyword
|
|
130418
130433
|
|
|
130419
130434
|
return null;
|
|
@@ -130434,7 +130449,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130434
130449
|
/* harmony export */ });
|
|
130435
130450
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
130436
130451
|
/* harmony import */ var react_router__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! react-router */ "../../../node_modules/react-router/esm/react-router.js");
|
|
130437
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
130452
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
130438
130453
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/setter.js");
|
|
130439
130454
|
|
|
130440
130455
|
|
|
@@ -130447,7 +130462,9 @@ function SetRedirect({
|
|
|
130447
130462
|
from,
|
|
130448
130463
|
to
|
|
130449
130464
|
}) {
|
|
130450
|
-
const
|
|
130465
|
+
const {
|
|
130466
|
+
setRoute
|
|
130467
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_1__.useGlobalStateContext)();
|
|
130451
130468
|
(0,_hooks__WEBPACK_IMPORTED_MODULE_2__.useSetter)(() => setRoute(from, () => /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(react_router__WEBPACK_IMPORTED_MODULE_3__.Redirect, {
|
|
130452
130469
|
to: to
|
|
130453
130470
|
}))); // tslint:disable-next-line:no-null-keyword
|
|
@@ -130468,7 +130485,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130468
130485
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
130469
130486
|
/* harmony export */ "SetRoute": () => (/* binding */ SetRoute)
|
|
130470
130487
|
/* harmony export */ });
|
|
130471
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
130488
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
130472
130489
|
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/setter.js");
|
|
130473
130490
|
|
|
130474
130491
|
/**
|
|
@@ -130479,7 +130496,9 @@ function SetRoute({
|
|
|
130479
130496
|
path,
|
|
130480
130497
|
component
|
|
130481
130498
|
}) {
|
|
130482
|
-
const
|
|
130499
|
+
const {
|
|
130500
|
+
setRoute
|
|
130501
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_0__.useGlobalStateContext)();
|
|
130483
130502
|
(0,_hooks__WEBPACK_IMPORTED_MODULE_1__.useSetter)(() => component && setRoute(path, component)); // tslint:disable-next-line:no-null-keyword
|
|
130484
130503
|
|
|
130485
130504
|
return null;
|
|
@@ -130684,15 +130703,17 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
130684
130703
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
130685
130704
|
/* harmony export */ "createInstance": () => (/* binding */ createInstance)
|
|
130686
130705
|
/* harmony export */ });
|
|
130687
|
-
/* harmony import */ var
|
|
130688
|
-
/* harmony import */ var
|
|
130689
|
-
/* harmony import */ var
|
|
130690
|
-
/* harmony import */ var
|
|
130691
|
-
/* harmony import */ var
|
|
130692
|
-
/* harmony import */ var
|
|
130693
|
-
/* harmony import */ var
|
|
130694
|
-
/* harmony import */ var
|
|
130695
|
-
/* harmony import */ var
|
|
130706
|
+
/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! tslib */ "../../../node_modules/tslib/tslib.es6.js");
|
|
130707
|
+
/* harmony import */ var piral_base__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! piral-base */ "../../framework/piral-base/esm/events.js");
|
|
130708
|
+
/* harmony import */ var piral_base__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! piral-base */ "../../framework/piral-base/esm/utils.js");
|
|
130709
|
+
/* harmony import */ var piral_base__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! piral-base */ "../../framework/piral-base/esm/strategies.js");
|
|
130710
|
+
/* harmony import */ var _modules__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./modules */ "../../framework/piral-core/esm/modules/dependencies.js");
|
|
130711
|
+
/* harmony import */ var _modules__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./modules */ "../../framework/piral-core/esm/modules/api.js");
|
|
130712
|
+
/* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./state */ "../../framework/piral-core/esm/state/createGlobalState.js");
|
|
130713
|
+
/* harmony import */ var _state__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./state */ "../../framework/piral-core/esm/state/createActions.js");
|
|
130714
|
+
/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./helpers */ "../../framework/piral-core/esm/helpers.js");
|
|
130715
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils */ "../../framework/piral-core/esm/utils/guid.js");
|
|
130716
|
+
|
|
130696
130717
|
|
|
130697
130718
|
|
|
130698
130719
|
|
|
@@ -130721,31 +130742,32 @@ render(app, document.querySelector('#app'));
|
|
|
130721
130742
|
|
|
130722
130743
|
function createInstance(config = {}) {
|
|
130723
130744
|
const {
|
|
130745
|
+
id = (0,_utils__WEBPACK_IMPORTED_MODULE_0__.generateId)(),
|
|
130724
130746
|
state,
|
|
130725
130747
|
actions,
|
|
130726
130748
|
availablePilets = [],
|
|
130727
130749
|
plugins,
|
|
130728
|
-
requestPilets =
|
|
130750
|
+
requestPilets = _modules__WEBPACK_IMPORTED_MODULE_1__.defaultModuleRequester,
|
|
130729
130751
|
loaderConfig,
|
|
130730
130752
|
async = false,
|
|
130731
|
-
shareDependencies =
|
|
130753
|
+
shareDependencies = _modules__WEBPACK_IMPORTED_MODULE_1__.defaultDependencySelector,
|
|
130732
130754
|
loadPilet,
|
|
130733
130755
|
loaders,
|
|
130734
130756
|
debug,
|
|
130735
|
-
apiFactory =
|
|
130757
|
+
apiFactory = _modules__WEBPACK_IMPORTED_MODULE_2__.defaultApiFactory
|
|
130736
130758
|
} = config;
|
|
130737
|
-
const globalState = (0,
|
|
130738
|
-
const events = (0,
|
|
130739
|
-
const context = (0,
|
|
130759
|
+
const globalState = (0,_state__WEBPACK_IMPORTED_MODULE_3__.createGlobalState)(state);
|
|
130760
|
+
const events = (0,piral_base__WEBPACK_IMPORTED_MODULE_4__.createListener)(globalState);
|
|
130761
|
+
const context = (0,_state__WEBPACK_IMPORTED_MODULE_5__.createActions)(globalState, events);
|
|
130740
130762
|
const definedPlugins = plugins || [];
|
|
130741
130763
|
const usedPlugins = Array.isArray(definedPlugins) ? definedPlugins : [definedPlugins];
|
|
130742
130764
|
const createApi = apiFactory(context, usedPlugins);
|
|
130743
130765
|
const root = createApi({
|
|
130744
130766
|
name: 'root',
|
|
130745
|
-
version: "0.14.8-beta.
|
|
130767
|
+
version: "0.14.8-beta.3504" || 0,
|
|
130746
130768
|
spec: ''
|
|
130747
130769
|
});
|
|
130748
|
-
const options = (0,
|
|
130770
|
+
const options = (0,_helpers__WEBPACK_IMPORTED_MODULE_6__.createPiletOptions)({
|
|
130749
130771
|
context,
|
|
130750
130772
|
createApi,
|
|
130751
130773
|
loaders,
|
|
@@ -130753,17 +130775,18 @@ function createInstance(config = {}) {
|
|
|
130753
130775
|
availablePilets,
|
|
130754
130776
|
loaderConfig,
|
|
130755
130777
|
shareDependencies,
|
|
130756
|
-
strategy: (0,
|
|
130778
|
+
strategy: (0,piral_base__WEBPACK_IMPORTED_MODULE_7__.isfunc)(async) ? async : async ? piral_base__WEBPACK_IMPORTED_MODULE_8__.blazingStrategy : piral_base__WEBPACK_IMPORTED_MODULE_8__.standardStrategy,
|
|
130757
130779
|
requestPilets,
|
|
130758
130780
|
debug
|
|
130759
130781
|
});
|
|
130760
130782
|
|
|
130761
130783
|
if (actions) {
|
|
130762
|
-
(0,
|
|
130784
|
+
(0,_state__WEBPACK_IMPORTED_MODULE_5__.includeActions)(context, actions);
|
|
130763
130785
|
}
|
|
130764
130786
|
|
|
130765
130787
|
context.options = options;
|
|
130766
|
-
return (0,
|
|
130788
|
+
return (0,tslib__WEBPACK_IMPORTED_MODULE_9__.__assign)(events, {
|
|
130789
|
+
id,
|
|
130767
130790
|
createApi,
|
|
130768
130791
|
context,
|
|
130769
130792
|
root,
|
|
@@ -131589,15 +131612,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
131589
131612
|
/* harmony export */ });
|
|
131590
131613
|
/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react */ "../../../node_modules/react/index.js");
|
|
131591
131614
|
/* harmony import */ var piral_base__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! piral-base */ "../../framework/piral-base/esm/utils.js");
|
|
131592
|
-
/* harmony import */ var
|
|
131615
|
+
/* harmony import */ var react_router__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! react-router */ "../../../node_modules/react-router/esm/react-router.js");
|
|
131593
131616
|
/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../components */ "../../framework/piral-core/esm/components/ErrorBoundary.js");
|
|
131594
|
-
/* harmony import */ var
|
|
131595
|
-
/* harmony import */ var
|
|
131596
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/
|
|
131597
|
-
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
131617
|
+
/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../components */ "../../framework/piral-core/esm/components/PortalRenderer.js");
|
|
131618
|
+
/* harmony import */ var _components__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../components */ "../../framework/piral-core/esm/components/components.js");
|
|
131619
|
+
/* harmony import */ var _hooks__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../hooks */ "../../framework/piral-core/esm/hooks/globalState.js");
|
|
131598
131620
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/react.js");
|
|
131599
|
-
/* harmony import */ var
|
|
131600
|
-
/* harmony import */ var
|
|
131621
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/helpers.js");
|
|
131622
|
+
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../utils */ "../../framework/piral-core/esm/utils/foreign.js");
|
|
131601
131623
|
|
|
131602
131624
|
|
|
131603
131625
|
|
|
@@ -131708,15 +131730,13 @@ function wrapReactComponent(Component, stasisOptions, piral, Wrapper) {
|
|
|
131708
131730
|
|
|
131709
131731
|
function wrapForeignComponent(component, stasisOptions, piral, Wrapper) {
|
|
131710
131732
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.memo(props => {
|
|
131711
|
-
const {
|
|
131712
|
-
destroyPortal
|
|
131713
|
-
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_4__.useActions)();
|
|
131714
131733
|
const {
|
|
131715
131734
|
state,
|
|
131716
|
-
readState
|
|
131717
|
-
|
|
131718
|
-
|
|
131719
|
-
const
|
|
131735
|
+
readState,
|
|
131736
|
+
destroyPortal
|
|
131737
|
+
} = (0,_hooks__WEBPACK_IMPORTED_MODULE_4__.useGlobalStateContext)();
|
|
131738
|
+
const router = react__WEBPACK_IMPORTED_MODULE_0__.useContext(react_router__WEBPACK_IMPORTED_MODULE_5__.__RouterContext);
|
|
131739
|
+
const id = react__WEBPACK_IMPORTED_MODULE_0__.useMemo(() => (portalIdBase++).toString(26), _utils__WEBPACK_IMPORTED_MODULE_6__.none);
|
|
131720
131740
|
const context = react__WEBPACK_IMPORTED_MODULE_0__.useMemo(() => ({
|
|
131721
131741
|
router,
|
|
131722
131742
|
state,
|
|
@@ -131725,10 +131745,10 @@ function wrapForeignComponent(component, stasisOptions, piral, Wrapper) {
|
|
|
131725
131745
|
const innerProps = react__WEBPACK_IMPORTED_MODULE_0__.useMemo(() => Object.assign(Object.assign({}, props), {
|
|
131726
131746
|
piral
|
|
131727
131747
|
}), [props]);
|
|
131728
|
-
react__WEBPACK_IMPORTED_MODULE_0__.useEffect(() => () => destroyPortal(id),
|
|
131748
|
+
react__WEBPACK_IMPORTED_MODULE_0__.useEffect(() => () => destroyPortal(id), _utils__WEBPACK_IMPORTED_MODULE_6__.none);
|
|
131729
131749
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(Wrapper, Object.assign({}, innerProps), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_3__.ErrorBoundary, Object.assign({}, stasisOptions, {
|
|
131730
131750
|
renderProps: props
|
|
131731
|
-
}), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(
|
|
131751
|
+
}), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_7__.PortalRenderer, {
|
|
131732
131752
|
id: id
|
|
131733
131753
|
}), /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(ForeignComponentContainer, {
|
|
131734
131754
|
innerProps: innerProps,
|
|
@@ -131751,7 +131771,7 @@ function wrapComponent(converters, component, piral, Wrapper, stasisOptions) {
|
|
|
131751
131771
|
}
|
|
131752
131772
|
|
|
131753
131773
|
if (typeof component === 'object' && isNotExotic(component)) {
|
|
131754
|
-
const result = (0,
|
|
131774
|
+
const result = (0,_utils__WEBPACK_IMPORTED_MODULE_8__.convertComponent)(converters[component.type], component);
|
|
131755
131775
|
return wrapForeignComponent(result, stasisOptions, piral, Wrapper);
|
|
131756
131776
|
}
|
|
131757
131777
|
|
|
@@ -131772,12 +131792,12 @@ function withApi(context, component, piral, errorType, wrapperType = errorType)
|
|
|
131772
131792
|
|
|
131773
131793
|
renderChild(child) {
|
|
131774
131794
|
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(react__WEBPACK_IMPORTED_MODULE_0__.Suspense, {
|
|
131775
|
-
fallback: /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(
|
|
131795
|
+
fallback: /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_9__.PiralLoadingIndicator, null)
|
|
131776
131796
|
}, child);
|
|
131777
131797
|
},
|
|
131778
131798
|
|
|
131779
131799
|
renderError(error, props) {
|
|
131780
|
-
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(
|
|
131800
|
+
return /*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_0__.createElement(_components__WEBPACK_IMPORTED_MODULE_9__.PiralError, Object.assign({
|
|
131781
131801
|
type: errorType,
|
|
131782
131802
|
error: error
|
|
131783
131803
|
}, props));
|
|
@@ -133181,11 +133201,11 @@ function installPiralDebug(options) {
|
|
|
133181
133201
|
debug: debugApiVersion,
|
|
133182
133202
|
instance: {
|
|
133183
133203
|
name: "sample-cross-fx",
|
|
133184
|
-
version: "0.14.8-beta.
|
|
133204
|
+
version: "0.14.8-beta.3504",
|
|
133185
133205
|
dependencies: "@angular/common,@angular/compiler,@angular/core,@angular/platform-browser,@angular/platform-browser-dynamic,@webcomponents/webcomponentsjs,angular,aurelia-framework,aurelia-templating-binding,aurelia-templating-resources,aurelia-pal-browser,aurelia-event-aggregator,aurelia-history-browser,hyperapp,inferno,inferno-create-element,mithril,lit-element,solid-js,solid-js/dom,preact,riot,rxjs,vue,zone.js,react,react-dom,react-router,react-router-dom,history,tslib,path-to-regexp,@libre/atom,@dbeining/react-atom"
|
|
133186
133206
|
},
|
|
133187
133207
|
build: {
|
|
133188
|
-
date: "2022-01-
|
|
133208
|
+
date: "2022-01-18T18:10:12.734Z",
|
|
133189
133209
|
cli: "0.14.7",
|
|
133190
133210
|
compat: "0.14"
|
|
133191
133211
|
},
|
|
@@ -140321,28 +140341,6 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
|
|
|
140321
140341
|
};
|
|
140322
140342
|
|
|
140323
140343
|
|
|
140324
|
-
/***/ }),
|
|
140325
|
-
|
|
140326
|
-
/***/ "../../converters/piral-blazor/infra.codegen":
|
|
140327
|
-
/*!***************************************************!*\
|
|
140328
|
-
!*** ../../converters/piral-blazor/infra.codegen ***!
|
|
140329
|
-
\***************************************************/
|
|
140330
|
-
/***/ ((module) => {
|
|
140331
|
-
|
|
140332
|
-
module.exports = "_framework/blazor.webassembly.js";
|
|
140333
|
-
|
|
140334
|
-
/***/ }),
|
|
140335
|
-
|
|
140336
|
-
/***/ "../../framework/piral-core/dependencies.codegen":
|
|
140337
|
-
/*!*******************************************************!*\
|
|
140338
|
-
!*** ../../framework/piral-core/dependencies.codegen ***!
|
|
140339
|
-
\*******************************************************/
|
|
140340
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
140341
|
-
|
|
140342
|
-
module.exports = function(deps){
|
|
140343
|
-
deps['sample-cross-fx']={};deps["@angular/common"]=__webpack_require__(/*! @angular/common */ "../../../node_modules/@angular/common/fesm5/common.js");deps["@angular/common@8.2.14"]=__webpack_require__(/*! @angular/common */ "../../../node_modules/@angular/common/fesm5/common.js");deps["@angular/compiler"]=__webpack_require__(/*! @angular/compiler */ "../../../node_modules/@angular/compiler/fesm5/compiler.js");deps["@angular/compiler@8.2.14"]=__webpack_require__(/*! @angular/compiler */ "../../../node_modules/@angular/compiler/fesm5/compiler.js");deps["@angular/core"]=__webpack_require__(/*! @angular/core */ "../../../node_modules/@angular/core/fesm5/core.js");deps["@angular/core@8.2.14"]=__webpack_require__(/*! @angular/core */ "../../../node_modules/@angular/core/fesm5/core.js");deps["@angular/platform-browser"]=__webpack_require__(/*! @angular/platform-browser */ "../../../node_modules/@angular/platform-browser/fesm5/platform-browser.js");deps["@angular/platform-browser@8.2.14"]=__webpack_require__(/*! @angular/platform-browser */ "../../../node_modules/@angular/platform-browser/fesm5/platform-browser.js");deps["@angular/platform-browser-dynamic"]=__webpack_require__(/*! @angular/platform-browser-dynamic */ "../../../node_modules/@angular/platform-browser-dynamic/fesm5/platform-browser-dynamic.js");deps["@angular/platform-browser-dynamic@8.2.14"]=__webpack_require__(/*! @angular/platform-browser-dynamic */ "../../../node_modules/@angular/platform-browser-dynamic/fesm5/platform-browser-dynamic.js");deps["@webcomponents/webcomponentsjs"]=__webpack_require__(/*! @webcomponents/webcomponentsjs */ "../../../node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js");deps["@webcomponents/webcomponentsjs@2.6.0"]=__webpack_require__(/*! @webcomponents/webcomponentsjs */ "../../../node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js");deps["angular"]=__webpack_require__(/*! angular */ "../../../node_modules/angular/index.js");deps["angular@1.8.2"]=__webpack_require__(/*! angular */ "../../../node_modules/angular/index.js");deps["aurelia-framework"]=__webpack_require__(/*! aurelia-framework */ "../../../node_modules/aurelia-framework/dist/es2015/aurelia-framework.js");deps["aurelia-framework@1.3.1"]=__webpack_require__(/*! aurelia-framework */ "../../../node_modules/aurelia-framework/dist/es2015/aurelia-framework.js");deps["aurelia-templating-binding"]=__webpack_require__(/*! aurelia-templating-binding */ "../../../node_modules/aurelia-templating-binding/dist/native-modules/aurelia-templating-binding.js");deps["aurelia-templating-binding@1.5.3"]=__webpack_require__(/*! aurelia-templating-binding */ "../../../node_modules/aurelia-templating-binding/dist/native-modules/aurelia-templating-binding.js");deps["aurelia-templating-resources"]=__webpack_require__(/*! aurelia-templating-resources */ "../../../node_modules/aurelia-templating-resources/dist/native-modules/aurelia-templating-resources.js");deps["aurelia-templating-resources@1.13.1"]=__webpack_require__(/*! aurelia-templating-resources */ "../../../node_modules/aurelia-templating-resources/dist/native-modules/aurelia-templating-resources.js");deps["aurelia-pal-browser"]=__webpack_require__(/*! aurelia-pal-browser */ "../../../node_modules/aurelia-pal-browser/dist/es2015/aurelia-pal-browser.js");deps["aurelia-pal-browser@1.8.1"]=__webpack_require__(/*! aurelia-pal-browser */ "../../../node_modules/aurelia-pal-browser/dist/es2015/aurelia-pal-browser.js");deps["aurelia-event-aggregator"]=__webpack_require__(/*! aurelia-event-aggregator */ "../../../node_modules/aurelia-event-aggregator/dist/native-modules/aurelia-event-aggregator.js");deps["aurelia-event-aggregator@1.0.3"]=__webpack_require__(/*! aurelia-event-aggregator */ "../../../node_modules/aurelia-event-aggregator/dist/native-modules/aurelia-event-aggregator.js");deps["aurelia-history-browser"]=__webpack_require__(/*! aurelia-history-browser */ "../../../node_modules/aurelia-history-browser/dist/native-modules/aurelia-history-browser.js");deps["aurelia-history-browser@1.4.0"]=__webpack_require__(/*! aurelia-history-browser */ "../../../node_modules/aurelia-history-browser/dist/native-modules/aurelia-history-browser.js");deps["hyperapp"]=__webpack_require__(/*! hyperapp */ "../../../node_modules/hyperapp/src/index.js");deps["hyperapp@1.2.10"]=__webpack_require__(/*! hyperapp */ "../../../node_modules/hyperapp/src/index.js");deps["inferno"]=__webpack_require__(/*! inferno */ "../../../node_modules/inferno/index.esm.js");deps["inferno@7.4.9"]=__webpack_require__(/*! inferno */ "../../../node_modules/inferno/index.esm.js");deps["inferno-create-element"]=__webpack_require__(/*! inferno-create-element */ "../../../node_modules/inferno-create-element/dist/index.esm.js");deps["inferno-create-element@7.4.9"]=__webpack_require__(/*! inferno-create-element */ "../../../node_modules/inferno-create-element/dist/index.esm.js");deps["mithril"]=__webpack_require__(/*! mithril */ "../../../node_modules/mithril/index.js");deps["mithril@2.0.4"]=__webpack_require__(/*! mithril */ "../../../node_modules/mithril/index.js");deps["lit-element"]=__webpack_require__(/*! lit-element */ "../../../node_modules/lit-element/lit-element.js");deps["lit-element@2.5.1"]=__webpack_require__(/*! lit-element */ "../../../node_modules/lit-element/lit-element.js");deps["solid-js"]=__webpack_require__(/*! solid-js */ "../../../node_modules/solid-js/dist/index.js");deps["solid-js@0.18.14"]=__webpack_require__(/*! solid-js */ "../../../node_modules/solid-js/dist/index.js");deps["solid-js/dom"]=__webpack_require__(/*! solid-js/dom */ "../../../node_modules/solid-js/dist/dom/index.js");deps["preact"]=__webpack_require__(/*! preact */ "../../../node_modules/preact/dist/preact.module.js");deps["preact@10.5.14"]=__webpack_require__(/*! preact */ "../../../node_modules/preact/dist/preact.module.js");deps["riot"]=__webpack_require__(/*! riot */ "../../../node_modules/riot/riot.esm.js");deps["riot@4.14.0"]=__webpack_require__(/*! riot */ "../../../node_modules/riot/riot.esm.js");deps["rxjs"]=__webpack_require__(/*! rxjs */ "../../../node_modules/rxjs/_esm5/index.js");deps["rxjs@6.6.7"]=__webpack_require__(/*! rxjs */ "../../../node_modules/rxjs/_esm5/index.js");deps["vue"]=__webpack_require__(/*! vue */ "../../../node_modules/vue/dist/vue.runtime.esm.js");deps["vue@2.6.14"]=__webpack_require__(/*! vue */ "../../../node_modules/vue/dist/vue.runtime.esm.js");deps["zone.js"]=__webpack_require__(/*! zone.js */ "../../../node_modules/zone.js/dist/zone.js");deps["zone.js@0.9.1"]=__webpack_require__(/*! zone.js */ "../../../node_modules/zone.js/dist/zone.js");deps["react"]=__webpack_require__(/*! react */ "../../../node_modules/react/index.js");deps["react@17.0.2"]=__webpack_require__(/*! react */ "../../../node_modules/react/index.js");deps["react-dom"]=__webpack_require__(/*! react-dom */ "../../../node_modules/react-dom/index.js");deps["react-dom@17.0.2"]=__webpack_require__(/*! react-dom */ "../../../node_modules/react-dom/index.js");deps["react-router"]=__webpack_require__(/*! react-router */ "../../../node_modules/react-router/esm/react-router.js");deps["react-router@5.2.1"]=__webpack_require__(/*! react-router */ "../../../node_modules/react-router/esm/react-router.js");deps["react-router-dom"]=__webpack_require__(/*! react-router-dom */ "../../../node_modules/react-router-dom/esm/react-router-dom.js");deps["react-router-dom@5.3.0"]=__webpack_require__(/*! react-router-dom */ "../../../node_modules/react-router-dom/esm/react-router-dom.js");deps["history"]=__webpack_require__(/*! history */ "../../../node_modules/history/esm/history.js");deps["history@4.10.1"]=__webpack_require__(/*! history */ "../../../node_modules/history/esm/history.js");deps["tslib"]=__webpack_require__(/*! tslib */ "../../../node_modules/tslib/tslib.es6.js");deps["tslib@2.3.1"]=__webpack_require__(/*! tslib */ "../../../node_modules/tslib/tslib.es6.js");deps["path-to-regexp"]=__webpack_require__(/*! path-to-regexp */ "../../../node_modules/path-to-regexp/index.js");deps["path-to-regexp@1.8.0"]=__webpack_require__(/*! path-to-regexp */ "../../../node_modules/path-to-regexp/index.js");deps["@libre/atom"]=__webpack_require__(/*! @libre/atom */ "../../../node_modules/@libre/atom/dist/index.esm.js");deps["@libre/atom@1.3.3"]=__webpack_require__(/*! @libre/atom */ "../../../node_modules/@libre/atom/dist/index.esm.js");deps["@dbeining/react-atom"]=__webpack_require__(/*! @dbeining/react-atom */ "../../../node_modules/@dbeining/react-atom/dist/react-atom.js");deps["@dbeining/react-atom@4.1.21"]=__webpack_require__(/*! @dbeining/react-atom */ "../../../node_modules/@dbeining/react-atom/dist/react-atom.js")
|
|
140344
|
-
}
|
|
140345
|
-
|
|
140346
140344
|
/***/ }),
|
|
140347
140345
|
|
|
140348
140346
|
/***/ "../../../node_modules/path-to-regexp/index.js":
|
|
@@ -251126,6 +251124,28 @@ var parent = __webpack_require__(/*! ../../es/reflect */ "./node_modules/core-js
|
|
|
251126
251124
|
module.exports = parent;
|
|
251127
251125
|
|
|
251128
251126
|
|
|
251127
|
+
/***/ }),
|
|
251128
|
+
|
|
251129
|
+
/***/ "../../converters/piral-blazor/infra.codegen":
|
|
251130
|
+
/*!***************************************************!*\
|
|
251131
|
+
!*** ../../converters/piral-blazor/infra.codegen ***!
|
|
251132
|
+
\***************************************************/
|
|
251133
|
+
/***/ ((module) => {
|
|
251134
|
+
|
|
251135
|
+
module.exports = "_framework/blazor.webassembly.js";
|
|
251136
|
+
|
|
251137
|
+
/***/ }),
|
|
251138
|
+
|
|
251139
|
+
/***/ "../../framework/piral-core/dependencies.codegen":
|
|
251140
|
+
/*!*******************************************************!*\
|
|
251141
|
+
!*** ../../framework/piral-core/dependencies.codegen ***!
|
|
251142
|
+
\*******************************************************/
|
|
251143
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
251144
|
+
|
|
251145
|
+
module.exports = function(deps){
|
|
251146
|
+
deps['sample-cross-fx']={};deps["@angular/common"]=__webpack_require__(/*! @angular/common */ "../../../node_modules/@angular/common/fesm5/common.js");deps["@angular/common@8.2.14"]=__webpack_require__(/*! @angular/common */ "../../../node_modules/@angular/common/fesm5/common.js");deps["@angular/compiler"]=__webpack_require__(/*! @angular/compiler */ "../../../node_modules/@angular/compiler/fesm5/compiler.js");deps["@angular/compiler@8.2.14"]=__webpack_require__(/*! @angular/compiler */ "../../../node_modules/@angular/compiler/fesm5/compiler.js");deps["@angular/core"]=__webpack_require__(/*! @angular/core */ "../../../node_modules/@angular/core/fesm5/core.js");deps["@angular/core@8.2.14"]=__webpack_require__(/*! @angular/core */ "../../../node_modules/@angular/core/fesm5/core.js");deps["@angular/platform-browser"]=__webpack_require__(/*! @angular/platform-browser */ "../../../node_modules/@angular/platform-browser/fesm5/platform-browser.js");deps["@angular/platform-browser@8.2.14"]=__webpack_require__(/*! @angular/platform-browser */ "../../../node_modules/@angular/platform-browser/fesm5/platform-browser.js");deps["@angular/platform-browser-dynamic"]=__webpack_require__(/*! @angular/platform-browser-dynamic */ "../../../node_modules/@angular/platform-browser-dynamic/fesm5/platform-browser-dynamic.js");deps["@angular/platform-browser-dynamic@8.2.14"]=__webpack_require__(/*! @angular/platform-browser-dynamic */ "../../../node_modules/@angular/platform-browser-dynamic/fesm5/platform-browser-dynamic.js");deps["@webcomponents/webcomponentsjs"]=__webpack_require__(/*! @webcomponents/webcomponentsjs */ "../../../node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js");deps["@webcomponents/webcomponentsjs@2.6.0"]=__webpack_require__(/*! @webcomponents/webcomponentsjs */ "../../../node_modules/@webcomponents/webcomponentsjs/webcomponents-bundle.js");deps["angular"]=__webpack_require__(/*! angular */ "../../../node_modules/angular/index.js");deps["angular@1.8.2"]=__webpack_require__(/*! angular */ "../../../node_modules/angular/index.js");deps["aurelia-framework"]=__webpack_require__(/*! aurelia-framework */ "../../../node_modules/aurelia-framework/dist/es2015/aurelia-framework.js");deps["aurelia-framework@1.3.1"]=__webpack_require__(/*! aurelia-framework */ "../../../node_modules/aurelia-framework/dist/es2015/aurelia-framework.js");deps["aurelia-templating-binding"]=__webpack_require__(/*! aurelia-templating-binding */ "../../../node_modules/aurelia-templating-binding/dist/native-modules/aurelia-templating-binding.js");deps["aurelia-templating-binding@1.5.3"]=__webpack_require__(/*! aurelia-templating-binding */ "../../../node_modules/aurelia-templating-binding/dist/native-modules/aurelia-templating-binding.js");deps["aurelia-templating-resources"]=__webpack_require__(/*! aurelia-templating-resources */ "../../../node_modules/aurelia-templating-resources/dist/native-modules/aurelia-templating-resources.js");deps["aurelia-templating-resources@1.13.1"]=__webpack_require__(/*! aurelia-templating-resources */ "../../../node_modules/aurelia-templating-resources/dist/native-modules/aurelia-templating-resources.js");deps["aurelia-pal-browser"]=__webpack_require__(/*! aurelia-pal-browser */ "../../../node_modules/aurelia-pal-browser/dist/es2015/aurelia-pal-browser.js");deps["aurelia-pal-browser@1.8.1"]=__webpack_require__(/*! aurelia-pal-browser */ "../../../node_modules/aurelia-pal-browser/dist/es2015/aurelia-pal-browser.js");deps["aurelia-event-aggregator"]=__webpack_require__(/*! aurelia-event-aggregator */ "../../../node_modules/aurelia-event-aggregator/dist/native-modules/aurelia-event-aggregator.js");deps["aurelia-event-aggregator@1.0.3"]=__webpack_require__(/*! aurelia-event-aggregator */ "../../../node_modules/aurelia-event-aggregator/dist/native-modules/aurelia-event-aggregator.js");deps["aurelia-history-browser"]=__webpack_require__(/*! aurelia-history-browser */ "../../../node_modules/aurelia-history-browser/dist/native-modules/aurelia-history-browser.js");deps["aurelia-history-browser@1.4.0"]=__webpack_require__(/*! aurelia-history-browser */ "../../../node_modules/aurelia-history-browser/dist/native-modules/aurelia-history-browser.js");deps["hyperapp"]=__webpack_require__(/*! hyperapp */ "../../../node_modules/hyperapp/src/index.js");deps["hyperapp@1.2.10"]=__webpack_require__(/*! hyperapp */ "../../../node_modules/hyperapp/src/index.js");deps["inferno"]=__webpack_require__(/*! inferno */ "../../../node_modules/inferno/index.esm.js");deps["inferno@7.4.9"]=__webpack_require__(/*! inferno */ "../../../node_modules/inferno/index.esm.js");deps["inferno-create-element"]=__webpack_require__(/*! inferno-create-element */ "../../../node_modules/inferno-create-element/dist/index.esm.js");deps["inferno-create-element@7.4.9"]=__webpack_require__(/*! inferno-create-element */ "../../../node_modules/inferno-create-element/dist/index.esm.js");deps["mithril"]=__webpack_require__(/*! mithril */ "../../../node_modules/mithril/index.js");deps["mithril@2.0.4"]=__webpack_require__(/*! mithril */ "../../../node_modules/mithril/index.js");deps["lit-element"]=__webpack_require__(/*! lit-element */ "../../../node_modules/lit-element/lit-element.js");deps["lit-element@2.5.1"]=__webpack_require__(/*! lit-element */ "../../../node_modules/lit-element/lit-element.js");deps["solid-js"]=__webpack_require__(/*! solid-js */ "../../../node_modules/solid-js/dist/index.js");deps["solid-js@0.18.14"]=__webpack_require__(/*! solid-js */ "../../../node_modules/solid-js/dist/index.js");deps["solid-js/dom"]=__webpack_require__(/*! solid-js/dom */ "../../../node_modules/solid-js/dist/dom/index.js");deps["preact"]=__webpack_require__(/*! preact */ "../../../node_modules/preact/dist/preact.module.js");deps["preact@10.5.14"]=__webpack_require__(/*! preact */ "../../../node_modules/preact/dist/preact.module.js");deps["riot"]=__webpack_require__(/*! riot */ "../../../node_modules/riot/riot.esm.js");deps["riot@4.14.0"]=__webpack_require__(/*! riot */ "../../../node_modules/riot/riot.esm.js");deps["rxjs"]=__webpack_require__(/*! rxjs */ "../../../node_modules/rxjs/_esm5/index.js");deps["rxjs@6.6.7"]=__webpack_require__(/*! rxjs */ "../../../node_modules/rxjs/_esm5/index.js");deps["vue"]=__webpack_require__(/*! vue */ "../../../node_modules/vue/dist/vue.runtime.esm.js");deps["vue@2.6.14"]=__webpack_require__(/*! vue */ "../../../node_modules/vue/dist/vue.runtime.esm.js");deps["zone.js"]=__webpack_require__(/*! zone.js */ "../../../node_modules/zone.js/dist/zone.js");deps["zone.js@0.9.1"]=__webpack_require__(/*! zone.js */ "../../../node_modules/zone.js/dist/zone.js");deps["react"]=__webpack_require__(/*! react */ "../../../node_modules/react/index.js");deps["react@17.0.2"]=__webpack_require__(/*! react */ "../../../node_modules/react/index.js");deps["react-dom"]=__webpack_require__(/*! react-dom */ "../../../node_modules/react-dom/index.js");deps["react-dom@17.0.2"]=__webpack_require__(/*! react-dom */ "../../../node_modules/react-dom/index.js");deps["react-router"]=__webpack_require__(/*! react-router */ "../../../node_modules/react-router/esm/react-router.js");deps["react-router@5.2.1"]=__webpack_require__(/*! react-router */ "../../../node_modules/react-router/esm/react-router.js");deps["react-router-dom"]=__webpack_require__(/*! react-router-dom */ "../../../node_modules/react-router-dom/esm/react-router-dom.js");deps["react-router-dom@5.3.0"]=__webpack_require__(/*! react-router-dom */ "../../../node_modules/react-router-dom/esm/react-router-dom.js");deps["history"]=__webpack_require__(/*! history */ "../../../node_modules/history/esm/history.js");deps["history@4.10.1"]=__webpack_require__(/*! history */ "../../../node_modules/history/esm/history.js");deps["tslib"]=__webpack_require__(/*! tslib */ "../../../node_modules/tslib/tslib.es6.js");deps["tslib@2.3.1"]=__webpack_require__(/*! tslib */ "../../../node_modules/tslib/tslib.es6.js");deps["path-to-regexp"]=__webpack_require__(/*! path-to-regexp */ "../../../node_modules/path-to-regexp/index.js");deps["path-to-regexp@1.8.0"]=__webpack_require__(/*! path-to-regexp */ "../../../node_modules/path-to-regexp/index.js");deps["@libre/atom"]=__webpack_require__(/*! @libre/atom */ "../../../node_modules/@libre/atom/dist/index.esm.js");deps["@libre/atom@1.3.3"]=__webpack_require__(/*! @libre/atom */ "../../../node_modules/@libre/atom/dist/index.esm.js");deps["@dbeining/react-atom"]=__webpack_require__(/*! @dbeining/react-atom */ "../../../node_modules/@dbeining/react-atom/dist/react-atom.js");deps["@dbeining/react-atom@4.1.21"]=__webpack_require__(/*! @dbeining/react-atom */ "../../../node_modules/@dbeining/react-atom/dist/react-atom.js")
|
|
251147
|
+
}
|
|
251148
|
+
|
|
251129
251149
|
/***/ }),
|
|
251130
251150
|
|
|
251131
251151
|
/***/ "../../tooling/piral-cli-webpack5/node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js":
|
|
@@ -255263,4 +255283,4 @@ const app = React.createElement(piral_core_1.Piral, {
|
|
|
255263
255283
|
|
|
255264
255284
|
/******/ })()
|
|
255265
255285
|
;
|
|
255266
|
-
//# sourceMappingURL=index.
|
|
255286
|
+
//# sourceMappingURL=index.b43df5.js.map
|