@elliemae/pui-app-bridge 2.24.0 → 2.26.0-alpha.0
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/cjs/appBridge.js +173 -26
- package/dist/cjs/config/app.js +8 -0
- package/dist/cjs/frame.html +0 -21
- package/dist/cjs/loaders/script.js +12 -12
- package/dist/cjs/tests/serverHandlers.js +0 -8
- package/dist/esm/appBridge.js +173 -26
- package/dist/esm/config/app.js +8 -0
- package/dist/esm/frame.html +0 -21
- package/dist/esm/loaders/script.js +12 -12
- package/dist/esm/tests/serverHandlers.js +0 -8
- package/dist/public/assets/{frame.671d9de68be598da64ca.html → frame.4cbbcfa9ded96b660559.html} +0 -21
- package/dist/public/e2e-host.html +1 -1
- package/dist/public/e2e-index.html +1 -1
- package/dist/public/frame.html +1 -1
- package/dist/public/index.html +1 -1
- package/dist/public/js/emuiAppBridge.dc4dbeb6feea171656da.js +17 -0
- package/dist/public/js/emuiAppBridge.dc4dbeb6feea171656da.js.br +0 -0
- package/dist/public/js/emuiAppBridge.dc4dbeb6feea171656da.js.gz +0 -0
- package/dist/public/js/emuiAppBridge.dc4dbeb6feea171656da.js.map +1 -0
- package/dist/types/lib/appBridge.d.ts +11 -2
- package/dist/types/lib/config/app.d.ts +6 -0
- package/dist/types/lib/loaders/script.d.ts +5 -3
- package/dist/types/lib/typings/host.d.ts +5 -0
- package/dist/types/lib/typings/window.d.ts +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/dist/umd/{671d9de68be598da64ca.html → 4cbbcfa9ded96b660559.html} +0 -21
- package/dist/umd/frame.html +1 -1
- package/dist/umd/index.js +7 -15
- package/dist/umd/index.js.br +0 -0
- package/dist/umd/index.js.gz +0 -0
- package/dist/umd/index.js.map +1 -1
- package/package.json +8 -8
- package/dist/public/js/emuiAppBridge.5a6bc2ea1f03ee954a75.js +0 -25
- package/dist/public/js/emuiAppBridge.5a6bc2ea1f03ee954a75.js.br +0 -0
- package/dist/public/js/emuiAppBridge.5a6bc2ea1f03ee954a75.js.gz +0 -0
- package/dist/public/js/emuiAppBridge.5a6bc2ea1f03ee954a75.js.map +0 -1
|
@@ -6,27 +6,6 @@
|
|
|
6
6
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
7
7
|
<link rel="icon" href="/favicon.ico" />
|
|
8
8
|
<title>Application</title>
|
|
9
|
-
<script nonce="__CSP_NONCE__">
|
|
10
|
-
(function (i, s, o, g, r, a, m) {
|
|
11
|
-
i['GoogleAnalyticsObject'] = r;
|
|
12
|
-
(i[r] =
|
|
13
|
-
i[r] ||
|
|
14
|
-
function () {
|
|
15
|
-
(i[r].q = i[r].q || []).push(arguments);
|
|
16
|
-
}),
|
|
17
|
-
(i[r].l = 1 * new Date());
|
|
18
|
-
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
|
|
19
|
-
a.async = 1;
|
|
20
|
-
a.src = g;
|
|
21
|
-
m.parentNode.insertBefore(a, m);
|
|
22
|
-
})(
|
|
23
|
-
window,
|
|
24
|
-
document,
|
|
25
|
-
'script',
|
|
26
|
-
'https://www.google-analytics.com/analytics.js',
|
|
27
|
-
'ga',
|
|
28
|
-
);
|
|
29
|
-
</script>
|
|
30
9
|
<style nonce="__CSP_NONCE__">
|
|
31
10
|
.full-width {
|
|
32
11
|
width: 100%;
|
package/dist/umd/frame.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="mobile-web-app-capable" content="yes"/><link rel="icon" href="/favicon.ico"/><title>Application</title><
|
|
1
|
+
<!doctype html><html lang="en"><head><meta charset="utf-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><meta name="mobile-web-app-capable" content="yes"/><link rel="icon" href="/favicon.ico"/><title>Application</title><style nonce="__CSP_NONCE__">.full-width{width:100%}.full-height{height:100%}</style><script defer="defer" src="index.js"></script></head><body class="full-width full-height"><noscript>If you're seeing this message, that means <strong>JavaScript has been disabled on your browser</strong>, please <strong>enable JS</strong> to make this app work.</noscript><div id="pui-app-container-" class="full-width full-height"></div></body></html>
|