@elliemae/pui-app-sdk 5.26.2 → 5.26.3
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.
|
@@ -258,7 +258,8 @@ class CMicroAppGuest {
|
|
|
258
258
|
return this.#uuid;
|
|
259
259
|
}
|
|
260
260
|
async init(options) {
|
|
261
|
-
|
|
261
|
+
const { history, ...rest } = options;
|
|
262
|
+
this.props = import_lodash.default.merge(this.props, rest);
|
|
262
263
|
if (!this.props.host) {
|
|
263
264
|
const host = await this.findHost();
|
|
264
265
|
if (host) {
|
|
@@ -225,7 +225,8 @@ class CMicroAppGuest {
|
|
|
225
225
|
return this.#uuid;
|
|
226
226
|
}
|
|
227
227
|
async init(options) {
|
|
228
|
-
|
|
228
|
+
const { history, ...rest } = options;
|
|
229
|
+
this.props = _.merge(this.props, rest);
|
|
229
230
|
if (!this.props.host) {
|
|
230
231
|
const host = await this.findHost();
|
|
231
232
|
if (host) {
|