@extscreen/es-core 2.2.55 → 2.2.56
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/dist/index.js +8 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -2472,7 +2472,14 @@ class ESLaunchManager {
|
|
2472
2472
|
|
2473
2473
|
launchNativePage(intent) {
|
2474
2474
|
return ESModule$1.launchESPage({
|
2475
|
-
args:
|
2475
|
+
args: {
|
2476
|
+
url: intent.url,
|
2477
|
+
params: intent.params
|
2478
|
+
},
|
2479
|
+
flags: intent.flags,
|
2480
|
+
pageTag: intent.pageTag,
|
2481
|
+
pageLimit: intent.pageLimit,
|
2482
|
+
backgroundColor: intent.backgroundColor,
|
2476
2483
|
});
|
2477
2484
|
}
|
2478
2485
|
|