sample-cross-fx 1.10.2-beta.7ca24fd → 1.10.2-beta.c944cfd
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.d.ts +112 -2
- package/app/{index.957ba4.js → index.fc2320.js} +5 -5
- package/app/{index.957ba4.js.map → index.fc2320.js.map} +1 -1
- package/app/index.html +1 -1
- package/files.tar +0 -0
- package/files_once.tar +0 -0
- package/package.json +20 -20
package/app/index.d.ts
CHANGED
|
@@ -6,7 +6,6 @@ import * as Inferno from 'inferno';
|
|
|
6
6
|
import * as Preact from 'preact';
|
|
7
7
|
import * as Riot from 'riot';
|
|
8
8
|
import * as SolidJs from 'solid-js';
|
|
9
|
-
import * as ReactRouter from 'react-router';
|
|
10
9
|
|
|
11
10
|
/**
|
|
12
11
|
* Defines the API accessible from pilets.
|
|
@@ -972,7 +971,20 @@ export interface ComponentConverters<TProps> extends PiralCustomComponentConvert
|
|
|
972
971
|
*/
|
|
973
972
|
export interface RouteBaseProps<UrlParams extends {
|
|
974
973
|
[K in keyof UrlParams]?: string;
|
|
975
|
-
} = {}, UrlState = any> extends
|
|
974
|
+
} = {}, UrlState = any> extends BaseComponentProps {
|
|
975
|
+
/**
|
|
976
|
+
* The history API to navigate.
|
|
977
|
+
*/
|
|
978
|
+
history: History<UrlState>;
|
|
979
|
+
/**
|
|
980
|
+
* Information about the current location.
|
|
981
|
+
*/
|
|
982
|
+
location: Location<UrlState>;
|
|
983
|
+
/**
|
|
984
|
+
* Information about the matching of the current route.
|
|
985
|
+
*/
|
|
986
|
+
match: RouteMatch<UrlParams>;
|
|
987
|
+
}
|
|
976
988
|
|
|
977
989
|
/**
|
|
978
990
|
* Custom meta data to include for pages.
|
|
@@ -1256,6 +1268,52 @@ export interface ForeignComponent<TProps> {
|
|
|
1256
1268
|
unmount?(element: HTMLElement, locals: Record<string, any>): void;
|
|
1257
1269
|
}
|
|
1258
1270
|
|
|
1271
|
+
export interface History<HistoryLocationState = LocationState> {
|
|
1272
|
+
length: number;
|
|
1273
|
+
action: Action;
|
|
1274
|
+
location: Location<HistoryLocationState>;
|
|
1275
|
+
push(location: Path | LocationDescriptor<HistoryLocationState>, state?: HistoryLocationState): void;
|
|
1276
|
+
replace(location: Path | LocationDescriptor<HistoryLocationState>, state?: HistoryLocationState): void;
|
|
1277
|
+
go(n: number): void;
|
|
1278
|
+
goBack(): void;
|
|
1279
|
+
goForward(): void;
|
|
1280
|
+
block(prompt?: boolean | string | TransitionPromptHook<HistoryLocationState>): UnregisterCallback;
|
|
1281
|
+
listen(listener: LocationListener<HistoryLocationState>): UnregisterCallback;
|
|
1282
|
+
createHref(location: LocationDescriptorObject<HistoryLocationState>): Href;
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
export interface Location<S = LocationState> {
|
|
1286
|
+
pathname: Pathname;
|
|
1287
|
+
search: Search;
|
|
1288
|
+
state: S;
|
|
1289
|
+
hash: Hash;
|
|
1290
|
+
key?: LocationKey | undefined;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
/**
|
|
1294
|
+
* The match object determining what exactly has been matched for the current navigation.
|
|
1295
|
+
*/
|
|
1296
|
+
export interface RouteMatch<Params extends {
|
|
1297
|
+
[K in keyof Params]?: string;
|
|
1298
|
+
} = {}> {
|
|
1299
|
+
/**
|
|
1300
|
+
* The parameters extracted from the current navigation.
|
|
1301
|
+
*/
|
|
1302
|
+
params: Params;
|
|
1303
|
+
/**
|
|
1304
|
+
* Indicates if the parameters have been matched exactly.
|
|
1305
|
+
*/
|
|
1306
|
+
isExact: boolean;
|
|
1307
|
+
/**
|
|
1308
|
+
* The relative path.
|
|
1309
|
+
*/
|
|
1310
|
+
path: string;
|
|
1311
|
+
/**
|
|
1312
|
+
* The fully qualified URL.
|
|
1313
|
+
*/
|
|
1314
|
+
url: string;
|
|
1315
|
+
}
|
|
1316
|
+
|
|
1259
1317
|
/**
|
|
1260
1318
|
* Custom extension slots outside of piral-core.
|
|
1261
1319
|
*/
|
|
@@ -1395,6 +1453,38 @@ export interface ComponentContext {
|
|
|
1395
1453
|
publicPath: string;
|
|
1396
1454
|
}
|
|
1397
1455
|
|
|
1456
|
+
export type Action = "PUSH" | "POP" | "REPLACE";
|
|
1457
|
+
|
|
1458
|
+
export type Path = Path___1;
|
|
1459
|
+
|
|
1460
|
+
export type LocationDescriptor<S = LocationState> = LocationDescriptor___1<S>;
|
|
1461
|
+
|
|
1462
|
+
export type TransitionPromptHook<S = LocationState> = TransitionPromptHook___1<S>;
|
|
1463
|
+
|
|
1464
|
+
export type UnregisterCallback = () => void;
|
|
1465
|
+
|
|
1466
|
+
export type LocationListener<S = LocationState> = LocationListener___1<S>;
|
|
1467
|
+
|
|
1468
|
+
export interface LocationDescriptorObject<S = LocationState> {
|
|
1469
|
+
pathname?: Pathname | undefined;
|
|
1470
|
+
search?: Search | undefined;
|
|
1471
|
+
state?: S | undefined;
|
|
1472
|
+
hash?: Hash | undefined;
|
|
1473
|
+
key?: LocationKey | undefined;
|
|
1474
|
+
}
|
|
1475
|
+
|
|
1476
|
+
export type Href = Href___1;
|
|
1477
|
+
|
|
1478
|
+
export type LocationState = LocationState___1;
|
|
1479
|
+
|
|
1480
|
+
export type Pathname = Pathname___1;
|
|
1481
|
+
|
|
1482
|
+
export type Search = Search___1;
|
|
1483
|
+
|
|
1484
|
+
export type Hash = Hash___1;
|
|
1485
|
+
|
|
1486
|
+
export type LocationKey = LocationKey___1;
|
|
1487
|
+
|
|
1398
1488
|
/**
|
|
1399
1489
|
* The base type for pilet component registration in the global state context.
|
|
1400
1490
|
*/
|
|
@@ -1509,6 +1599,26 @@ export interface NavigationApi {
|
|
|
1509
1599
|
publicPath: string;
|
|
1510
1600
|
}
|
|
1511
1601
|
|
|
1602
|
+
export type Path___1 = string;
|
|
1603
|
+
|
|
1604
|
+
export type LocationDescriptor___1<S = LocationState___1> = Path___1 | LocationDescriptorObject<S>;
|
|
1605
|
+
|
|
1606
|
+
export type TransitionPromptHook___1<S = LocationState___1> = (location: Location<S>, action: Action) => string | false | void;
|
|
1607
|
+
|
|
1608
|
+
export type LocationListener___1<S = LocationState___1> = (location: Location<S>, action: Action) => void;
|
|
1609
|
+
|
|
1610
|
+
export type Href___1 = string;
|
|
1611
|
+
|
|
1612
|
+
export type LocationState___1 = unknown;
|
|
1613
|
+
|
|
1614
|
+
export type Pathname___1 = string;
|
|
1615
|
+
|
|
1616
|
+
export type Search___1 = string;
|
|
1617
|
+
|
|
1618
|
+
export type Hash___1 = string;
|
|
1619
|
+
|
|
1620
|
+
export type LocationKey___1 = string;
|
|
1621
|
+
|
|
1512
1622
|
export type Without<T, K> = Pick<T, Exclude<keyof T, K>>;
|
|
1513
1623
|
|
|
1514
1624
|
/**
|
|
@@ -218332,7 +218332,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
218332
218332
|
|
|
218333
218333
|
|
|
218334
218334
|
function fillDependencies(deps) {
|
|
218335
|
-
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/common@16.2.12"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/compiler"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/compiler@16.2.12"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/core"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/core@16.2.12"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/platform-browser"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser@16.2.12"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser-dynamic"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@angular/platform-browser-dynamic@16.2.12"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@webcomponents/webcomponentsjs"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["@webcomponents/webcomponentsjs@2.6.0"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["angular"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["angular@1.8.3"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-framework"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-framework@1.4.1"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-templating-binding"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_8__;deps["aurelia-templating-binding@1.6.0"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_8__;deps["aurelia-templating-resources"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-templating-resources@1.15.1"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-pal-browser"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-pal-browser@1.8.1"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-event-aggregator"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-event-aggregator@1.0.3"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-history-browser"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["aurelia-history-browser@1.4.0"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["hyperapp"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["hyperapp@1.2.10"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["inferno"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno@7.4.11"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno-create-element"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["inferno-create-element@7.4.11"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["mithril"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["mithril@2.3.8"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["lit-element"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["lit-element@2.5.1"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["solid-js"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js@1.9.10"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js/web"]=_node_modules_solid_js_web_dist_dev_js__WEBPACK_IMPORTED_MODULE_19__;deps["piral-ng/common"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["piral-ng/common@1.10.2-beta.
|
|
218335
|
+
deps['sample-cross-fx']={};deps["@angular/common"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/common@16.2.12"]=_node_modules_angular_common_fesm2022_common_mjs__WEBPACK_IMPORTED_MODULE_0__;deps["@angular/compiler"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/compiler@16.2.12"]=_node_modules_angular_compiler_fesm2022_compiler_mjs__WEBPACK_IMPORTED_MODULE_1__;deps["@angular/core"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/core@16.2.12"]=_node_modules_angular_core_fesm2022_core_mjs__WEBPACK_IMPORTED_MODULE_2__;deps["@angular/platform-browser"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser@16.2.12"]=_node_modules_angular_platform_browser_fesm2022_platform_browser_mjs__WEBPACK_IMPORTED_MODULE_3__;deps["@angular/platform-browser-dynamic"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@angular/platform-browser-dynamic@16.2.12"]=_node_modules_angular_platform_browser_dynamic_fesm2022_platform_browser_dynamic_mjs__WEBPACK_IMPORTED_MODULE_4__;deps["@webcomponents/webcomponentsjs"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["@webcomponents/webcomponentsjs@2.6.0"]=_node_modules_webcomponents_webcomponentsjs_webcomponents_bundle_js__WEBPACK_IMPORTED_MODULE_5__;deps["angular"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["angular@1.8.3"]=_node_modules_angular_index_js__WEBPACK_IMPORTED_MODULE_6__;deps["aurelia-framework"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-framework@1.4.1"]=_node_modules_aurelia_framework_dist_native_modules_aurelia_framework_js__WEBPACK_IMPORTED_MODULE_7__;deps["aurelia-templating-binding"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_8__;deps["aurelia-templating-binding@1.6.0"]=_samples_sample_cross_fx_node_modules_aurelia_templating_binding_dist_native_modules_aurelia_templating_binding_js__WEBPACK_IMPORTED_MODULE_8__;deps["aurelia-templating-resources"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-templating-resources@1.15.1"]=_samples_sample_cross_fx_node_modules_aurelia_templating_resources_dist_native_modules_aurelia_templating_resources_js__WEBPACK_IMPORTED_MODULE_9__;deps["aurelia-pal-browser"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-pal-browser@1.8.1"]=_node_modules_aurelia_pal_browser_dist_es2015_aurelia_pal_browser_js__WEBPACK_IMPORTED_MODULE_10__;deps["aurelia-event-aggregator"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-event-aggregator@1.0.3"]=_node_modules_aurelia_event_aggregator_dist_native_modules_aurelia_event_aggregator_js__WEBPACK_IMPORTED_MODULE_11__;deps["aurelia-history-browser"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["aurelia-history-browser@1.4.0"]=_node_modules_aurelia_history_browser_dist_native_modules_aurelia_history_browser_js__WEBPACK_IMPORTED_MODULE_12__;deps["hyperapp"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["hyperapp@1.2.10"]=_node_modules_hyperapp_src_index_js__WEBPACK_IMPORTED_MODULE_13__;deps["inferno"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno@7.4.11"]=_node_modules_inferno_index_esm_js__WEBPACK_IMPORTED_MODULE_14__;deps["inferno-create-element"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["inferno-create-element@7.4.11"]=_node_modules_inferno_create_element_dist_index_esm_js__WEBPACK_IMPORTED_MODULE_15__;deps["mithril"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["mithril@2.3.8"]=_samples_sample_cross_fx_node_modules_mithril_index_js__WEBPACK_IMPORTED_MODULE_16__;deps["lit-element"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["lit-element@2.5.1"]=_node_modules_lit_element_lit_element_js__WEBPACK_IMPORTED_MODULE_17__;deps["solid-js"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js@1.9.10"]=_node_modules_solid_js_dist_dev_js__WEBPACK_IMPORTED_MODULE_18__;deps["solid-js/web"]=_node_modules_solid_js_web_dist_dev_js__WEBPACK_IMPORTED_MODULE_19__;deps["piral-ng/common"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["piral-ng/common@1.10.2-beta.c944cfd"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["piral-ng@1.10.2-beta.c944cfd"]=_converters_piral_ng_common_js__WEBPACK_IMPORTED_MODULE_20__;deps["preact"]=_node_modules_preact_dist_preact_module_js__WEBPACK_IMPORTED_MODULE_21__;deps["preact@10.27.3"]=_node_modules_preact_dist_preact_module_js__WEBPACK_IMPORTED_MODULE_21__;deps["riot"]=_node_modules_riot_riot_esm_js__WEBPACK_IMPORTED_MODULE_22__;deps["riot@4.14.0"]=_node_modules_riot_riot_esm_js__WEBPACK_IMPORTED_MODULE_22__;deps["rxjs"]=_node_modules_rxjs_dist_esm5_index_js__WEBPACK_IMPORTED_MODULE_23__;deps["rxjs@7.8.2"]=_node_modules_rxjs_dist_esm5_index_js__WEBPACK_IMPORTED_MODULE_23__;deps["vue"]=_node_modules_vue_dist_vue_runtime_esm_js__WEBPACK_IMPORTED_MODULE_24__;deps["vue@2.7.16"]=_node_modules_vue_dist_vue_runtime_esm_js__WEBPACK_IMPORTED_MODULE_24__;deps["zone.js"]=_node_modules_zone_js_fesm2015_zone_js__WEBPACK_IMPORTED_MODULE_25__;deps["zone.js@0.13.3"]=_node_modules_zone_js_fesm2015_zone_js__WEBPACK_IMPORTED_MODULE_25__;deps["tslib"]=_node_modules_tslib_tslib_es6_mjs__WEBPACK_IMPORTED_MODULE_26__;deps["tslib@2.8.1"]=_node_modules_tslib_tslib_es6_mjs__WEBPACK_IMPORTED_MODULE_26__;deps["react"]=_node_modules_react_index_js__WEBPACK_IMPORTED_MODULE_27__;deps["react@18.3.1"]=_node_modules_react_index_js__WEBPACK_IMPORTED_MODULE_27__;deps["react-dom"]=/*#__PURE__*/ (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache || (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache = __webpack_require__.t(_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28__, 2)));deps["react-dom@18.3.1"]=/*#__PURE__*/ (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache || (_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28___namespace_cache = __webpack_require__.t(_node_modules_react_dom_index_js__WEBPACK_IMPORTED_MODULE_28__, 2)));deps["react-router"]=_node_modules_react_router_esm_react_router_js__WEBPACK_IMPORTED_MODULE_29__;deps["react-router@5.3.4"]=_node_modules_react_router_esm_react_router_js__WEBPACK_IMPORTED_MODULE_29__;deps["react-router-dom"]=_node_modules_react_router_dom_esm_react_router_dom_js__WEBPACK_IMPORTED_MODULE_30__;deps["react-router-dom@5.3.4"]=_node_modules_react_router_dom_esm_react_router_dom_js__WEBPACK_IMPORTED_MODULE_30__
|
|
218336
218336
|
}
|
|
218337
218337
|
|
|
218338
218338
|
|
|
@@ -222164,12 +222164,12 @@ function installPiralDebug(options) {
|
|
|
222164
222164
|
debug: debugApiVersion,
|
|
222165
222165
|
instance: {
|
|
222166
222166
|
name: "sample-cross-fx",
|
|
222167
|
-
version: "1.10.2-beta.
|
|
222167
|
+
version: "1.10.2-beta.c944cfd",
|
|
222168
222168
|
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"
|
|
222169
222169
|
},
|
|
222170
222170
|
build: {
|
|
222171
|
-
date: "2026-
|
|
222172
|
-
cli: "1.10.2-beta.
|
|
222171
|
+
date: "2026-03-09T08:16:30.056Z",
|
|
222172
|
+
cli: "1.10.2-beta.c944cfd",
|
|
222173
222173
|
compat: "1"
|
|
222174
222174
|
}
|
|
222175
222175
|
};
|
|
@@ -228503,4 +228503,4 @@ root.render(/*#__PURE__*/react__WEBPACK_IMPORTED_MODULE_3__.createElement(piral_
|
|
|
228503
228503
|
|
|
228504
228504
|
/******/ })()
|
|
228505
228505
|
;
|
|
228506
|
-
//# sourceMappingURL=index.
|
|
228506
|
+
//# sourceMappingURL=index.fc2320.js.map
|