@elliemae/pui-app-sdk 3.12.1 → 3.12.2
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.
|
@@ -107,7 +107,8 @@ class CMicroAppGuest {
|
|
|
107
107
|
if (window.parent !== window) {
|
|
108
108
|
if (!isCrossDomain()) {
|
|
109
109
|
host = window.parent?.emui?.MicroAppHost || null;
|
|
110
|
-
}
|
|
110
|
+
}
|
|
111
|
+
if (!host) {
|
|
111
112
|
const ssfAdapter = new import_ssfguest_adapter.SSFGuestAdapter();
|
|
112
113
|
if (!await ssfAdapter.init())
|
|
113
114
|
return null;
|
|
@@ -82,7 +82,8 @@ class CMicroAppGuest {
|
|
|
82
82
|
if (window.parent !== window) {
|
|
83
83
|
if (!isCrossDomain()) {
|
|
84
84
|
host = window.parent?.emui?.MicroAppHost || null;
|
|
85
|
-
}
|
|
85
|
+
}
|
|
86
|
+
if (!host) {
|
|
86
87
|
const ssfAdapter = new SSFGuestAdapter();
|
|
87
88
|
if (!await ssfAdapter.init())
|
|
88
89
|
return null;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliemae/pui-app-sdk",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.2",
|
|
4
4
|
"description": "ICE MT UI Platform Application SDK ",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"*.css",
|
|
@@ -120,6 +120,7 @@
|
|
|
120
120
|
"@elliemae/em-ssf-guest": "^1.11.2",
|
|
121
121
|
"@elliemae/pui-diagnostics": "^2.7.4",
|
|
122
122
|
"@elliemae/pui-micro-frontend-base": "^1.12.2",
|
|
123
|
+
"@elliemae/pui-scripting-object": "^1.0.2",
|
|
123
124
|
"@elliemae/pui-theme": "^2.6.0",
|
|
124
125
|
"@elliemae/pui-user-monitoring": "^1.15.1"
|
|
125
126
|
},
|
|
@@ -144,6 +145,7 @@
|
|
|
144
145
|
"@elliemae/pui-diagnostics": "~2.7.4",
|
|
145
146
|
"@elliemae/pui-e2e-test-sdk": "~7.3.4",
|
|
146
147
|
"@elliemae/pui-micro-frontend-base": "~1.12.2",
|
|
148
|
+
"@elliemae/pui-scripting-object": "~1.0.2",
|
|
147
149
|
"@elliemae/pui-theme": "2.6.0",
|
|
148
150
|
"@elliemae/pui-user-monitoring": "~1.15.1"
|
|
149
151
|
}
|