@elliemae/pui-app-sdk 3.0.0-beta.1 → 3.0.0-beta.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.
@@ -0,0 +1,8 @@
1
+ [
2
+ {
3
+ "name": "David"
4
+ },
5
+ {
6
+ "name": "John"
7
+ }
8
+ ]
@@ -0,0 +1,129 @@
1
+ {
2
+ "appId": "app-sdk",
3
+ "brand": "primary",
4
+ "activeEnv": "localhost",
5
+ "hosted": true,
6
+ "sessionTimeoutWarnInterval": "60000",
7
+ "sessionTimeoutInterval": "70000",
8
+ "serviceEndpoints": {
9
+ "api": "",
10
+ "idp": ""
11
+ },
12
+ "walkMeUrl": "https://cdn.walkme.com/users/897bcebc13fd48038c790e2866e6a9fb/test/walkme_897bcebc13fd48038c790e2866e6a9fb_https.js",
13
+ "env": {
14
+ "localhost": {
15
+ "serviceEndpoints": {
16
+ "api": "",
17
+ "idp": ""
18
+ }
19
+ },
20
+ "dev": {
21
+ "serviceEndpoints": {
22
+ "api": "https://dev-api.appsdk.rd.elliemae.io",
23
+ "idp": "https://int.idp.ellielabs.com"
24
+ }
25
+ },
26
+ "dev2": {
27
+ "serviceEndpoints": {
28
+ "api": "https://int.api.ellielabs.com",
29
+ "idp": "https://int.idp.ellielabs.com"
30
+ }
31
+ },
32
+ "qa": {
33
+ "serviceEndpoints": {
34
+ "api": "https://qa-api.appsdk.rd.elliemae.io",
35
+ "idp": "https://int.idp.ellielabs.com"
36
+ }
37
+ },
38
+ "qa2": {
39
+ "serviceEndpoints": {
40
+ "api": "https://int.api.ellielabs.com",
41
+ "idp": "https://int.idp.ellielabs.com"
42
+ }
43
+ },
44
+ "qa3": {
45
+ "serviceEndpoints": {
46
+ "api": "https://int.api.ellielabs.com",
47
+ "idp": "https://int.idp.ellielabs.com"
48
+ }
49
+ },
50
+ "int": {
51
+ "serviceEndpoints": {
52
+ "api": "https://int.api.ellielabs.com",
53
+ "idp": "https://int.idp.ellielabs.com"
54
+ }
55
+ },
56
+ "peg-osb1": {
57
+ "serviceEndpoints": {
58
+ "api": "https://encompass-peg-api.elliemae.com",
59
+ "idp": "https://peg.idp.ellielabs.com/authorize"
60
+ }
61
+ },
62
+ "peg-osb2": {
63
+ "serviceEndpoints": {
64
+ "api": "https://encompass-peg2-api.elliemae.com",
65
+ "idp": "https://peg.idp.ellielabs.com/authorize"
66
+ }
67
+ },
68
+ "peg": {
69
+ "serviceEndpoints": {
70
+ "api": "https://peg2-west.api.ellielabs.com",
71
+ "idp": "https://peg.idp.ellielabs.com/authorize"
72
+ }
73
+ },
74
+ "peg-oapi-west": {
75
+ "serviceEndpoints": {
76
+ "api": "https://peg2-west.api.ellielabs.com",
77
+ "idp": "https://peg.idp.ellielabs.com/authorize"
78
+ }
79
+ },
80
+ "peg-oapi-east": {
81
+ "serviceEndpoints": {
82
+ "api": "https://peg2-east.api.ellielabs.com",
83
+ "idp": "https://peg.idp.ellielabs.com/authorize"
84
+ }
85
+ },
86
+ "peg2-oapi-east": {
87
+ "serviceEndpoints": {
88
+ "api": "https://peg2-east.api.ellielabs.com",
89
+ "idp": "https://peg.idp.ellielabs.com/authorize"
90
+ }
91
+ },
92
+ "peg3": {
93
+ "serviceEndpoints": {
94
+ "api": "https://pel1.api.ellielabs.com",
95
+ "idp": "https://peg3.idp.ellielabs.com/authorize"
96
+ }
97
+ },
98
+ "stage": {
99
+ "serviceEndpoints": {
100
+ "api": "https://stg.api.elliemae.com",
101
+ "idp": "https://stg.idp.elliemae.com/authorize"
102
+ }
103
+ },
104
+ "beta": {
105
+ "serviceEndpoints": {
106
+ "api": "https://concept.api.elliemae.com",
107
+ "idp": "https://concept.idp.elliemae.com/authorize"
108
+ }
109
+ },
110
+ "demo": {
111
+ "serviceEndpoints": {
112
+ "api": "https://concept.api.elliemae.com",
113
+ "idp": "https://concept.idp.elliemae.com/authorize"
114
+ }
115
+ },
116
+ "epc": {
117
+ "serviceEndpoints": {
118
+ "api": "https://concept.api.elliemae.com",
119
+ "idp": "https://concept.idp.elliemae.com/authorize"
120
+ }
121
+ },
122
+ "prod": {
123
+ "serviceEndpoints": {
124
+ "api": "https://api.elliemae.com",
125
+ "idp": "https://idp.elliemae.com/authorize"
126
+ }
127
+ }
128
+ }
129
+ }
@@ -0,0 +1,15 @@
1
+ doctype html
2
+ head
3
+ meta(charset='UTF-8')
4
+ meta(name='viewport' content='width=device-width, initial-scale=1.0')
5
+ meta(http-equiv='X-UA-Compatible' content='ie=edge')
6
+ title #{htmlWebpackPlugin.options.libraryName}
7
+ p This library #{htmlWebpackPlugin.options.libraryName} exposes the following properties
8
+ ul#libraryAttributes
9
+ script(lang='javascript').
10
+ window.onload = () => {
11
+ const attribNode = document.getElementById('libraryAttributes');
12
+ if (attribNode) {
13
+ attribNode.innerHTML = Object.keys(window['#{htmlWebpackPlugin.options.libraryName}'] || {}).reduce((value, attribute) => value += `<li>${attribute}</li>`, '');
14
+ }
15
+
@@ -0,0 +1,2 @@
1
+
2
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="195" height="28" viewBox="0 0 195 28"><style>.st0{fill:#dee3e0}.st1{fill:#fff}.st2{fill:#408a90}.st3{fill:#00acdc}.st4{fill:#f7911e}.st5{fill:#0067ab}.st6{fill:#fefefe}</style><g id="Page-1_2_"><g id="brand-assets" transform="translate(-107 -187)"><g id="logo-enc-em-inline-dark" transform="translate(107 187)"><g id="Group-3"><g id="Group" transform="translate(143 14)"><path id="Fill-27" class="st0" d="M1.8 1.9c-.6 0-.9.6-.9 1.1s.3 1.1.9 1.1c.6 0 .8-.7.8-1.1.1-.5-.2-1.1-.8-1.1zM.4.1h.5v1.8c.2-.3.5-.5 1-.5.9 0 1.3.7 1.3 1.5s-.4 1.6-1.3 1.6c-.5 0-.9-.3-1-.5v.4H.4V.1z"/><path id="Fill-29" class="st0" d="M3.7 5.3H4c.5 0 .7-.7.7-.7 0-.1-.1-.2-.1-.3l-1-2.8h.6L5 4l.8-2.5h.6l-1.1 3c-.2.6-.4 1.2-1.1 1.2h-.4l-.1-.4z"/><path id="Fill-31" class="st0" d="M50.5 1.8h.2c.1 0 .2 0 .2-.2 0-.1-.1-.2-.2-.2h-.2v.4zm-.2-.5h.4c.3 0 .4.1.4.3 0 .2-.1.3-.3.3l.3.5h-.2l-.3-.5h-.2v.5h-.2V1.3h.1zm.3 1.4c.5 0 .8-.4.8-.8 0-.5-.3-.8-.8-.8s-.8.4-.8.8.4.8.8.8zm0-1.8c.5 0 1 .4 1 1 0 .5-.4 1-1 1s-1-.4-1-1c.1-.6.5-1 1-1z"/><path id="Fill-33" class="st0" d="M8.8.1h4.8v1.1H10v2.5h3.2v1H10v2.9h3.6v1H8.8z"/><path id="Fill-35" class="st0" d="M14.6 8.6h1.1V0h-1.1z"/><path id="Fill-37" class="st0" d="M17 8.6h1.1V0H17z"/><path id="Fill-38" class="st0" d="M19.4 8.6h1.2V2.3h-1.2v6.3zm-.1-7.2h1.2V0h-1.2v1.4z"/><path id="Fill-39" class="st0" d="M25.7 4.9c0-1-.6-1.7-1.6-1.7-1.1 0-1.6.9-1.7 1.7h3.3zm.7 3.5c-.4.2-.9.4-2 .4-2.2 0-3.2-1.3-3.2-3.4 0-1.9 1.2-3.2 2.9-3.2 2.1 0 2.8 1.5 2.8 3.5h-4.5c0 1.2 1 2.1 2.1 2.1.8 0 1.6-.4 1.9-.6v1.2z"/><path id="Fill-40" class="st0" d="M27.9.1H30l2.6 7.1L35.3.1h2v8.5h-1.2V1.2l-2.9 7.4H32l-2.8-7.4v7.4h-1.3z"/><path id="Fill-41" class="st0" d="M48.2 4.9c0-1-.6-1.7-1.6-1.7-1.1 0-1.6.9-1.7 1.7h3.3zm.8 3.5c-.4.2-.9.4-2 .4-2.2 0-3.2-1.3-3.2-3.4 0-1.9 1.2-3.2 2.9-3.2 2.1 0 2.8 1.5 2.8 3.5H45c0 1.2 1 2.1 2.1 2.1.8 0 1.6-.4 1.9-.6v1.2z"/><path id="Fill-42" class="st0" d="M42.2 5.6h-.7c-.6 0-2.2.1-2.2 1.2 0 .7.6 1 1.2 1 1.1 0 1.7-.7 1.7-1.6v-.6zm-3-1.5l-.9-.2c.3-1.4 1.6-1.7 2.4-1.7 1.8 0 2.5.9 2.5 2.6v2.6c0 .7 0 1 .1 1.2h-1.2v-.8c-.3.4-.9 1-1.9 1-1.3 0-2.3-.6-2.3-1.9 0-1.6 1.7-2.1 2.9-2.1H42c0-1.1-.4-1.8-1.5-1.7-1 .1-1.3 1-1.3 1z"/></g><g id="Page-1"><path id="Fill-1" class="st1" d="M28 14c0 7.7-6.3 14-14 14S0 21.7 0 14 6.3 0 14 0s14 6.3 14 14"/><path id="Fill-3" class="st2" d="M14.1 2.3v-.5H14C7.2 1.8 1.8 7.3 1.8 14h.6c6.5.1 11.7-5.2 11.7-11.7"/><path id="Fill-5" class="st3" d="M2.3 14.1h-.6c.1 6.7 5.5 12.2 12.2 12.2h.1v-.4c.1-6.5-5.1-11.8-11.7-11.8"/><path id="Fill-7" class="st4" d="M25.9 14.1h.3V14c0-6.7-5.4-12.2-12.1-12.2v.5c0 6.5 5.3 11.8 11.8 11.8"/><path id="Fill-9" class="st5" d="M14.1 25.9v.4c6.7-.1 12-5.5 12.1-12.2h-.3c-6.5 0-11.8 5.3-11.8 11.8"/></g><path id="Page-1_1_" class="st6" d="M131.1 20.1c.8.5 2 .8 2.6.8.9 0 2.1-.4 2.1-1.6 0-2-4.9-1.9-4.9-5 0-2.3 1.7-3.5 4-3.5 1 0 1.8.2 2.6.4l-.2 1.8c-.5-.3-1.7-.6-2.2-.6-1.1 0-2 .4-2 1.4 0 2.3 4.9 1.6 4.9 5.2 0 2.4-1.9 3.5-3.9 3.5-1.1 0-2.1-.1-3.1-.6l.1-1.8zm9.4-9.7h.3c.2 0 .4 0 .4-.3 0-.2-.2-.3-.4-.3h-.3v.6zm-.3-.8h.7c.4 0 .6.2.6.5s-.2.5-.5.5l.5.8h-.3l-.5-.8h-.2v.8h-.3V9.6zm.6 2.2c.7 0 1.2-.6 1.2-1.3 0-.7-.5-1.3-1.2-1.3s-1.2.6-1.2 1.3c0 .8.5 1.3 1.2 1.3zm0-2.8c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zM123 20.1c.8.5 2 .8 2.6.8.9 0 2.1-.4 2.1-1.6 0-2-4.9-1.9-4.9-5 0-2.3 1.7-3.5 4-3.5 1 0 1.8.2 2.6.4l-.2 1.8c-.5-.3-1.7-.6-2.2-.6-1.1 0-2 .4-2 1.4 0 2.3 4.9 1.6 4.9 5.2 0 2.4-1.9 3.5-3.9 3.5-1.1 0-2.1-.1-3.1-.6l.1-1.8zm-3.8-3.1h-1.3c-1.1 0-3.9.2-3.9 2.2 0 1.2 1.1 1.8 2.1 1.8 2 0 3.1-1.3 3.1-2.9V17zm-6.2-5.1c1-.6 2.3-1.1 3.7-1.1 3.2 0 4.5 1.6 4.5 4.6V20c0 1.3 0 1.9.1 2.2h-1.9v-1.5c-.5.7-1.6 1.7-3.5 1.7-2.4 0-4.1-1.1-4.1-3.5 0-2.8 3.1-3.7 5.2-3.7h2.2c0-1.9-.7-2.9-2.8-2.9-1.2 0-2.4.4-3.3 1.1l-.1-1.5zm-7.7.6c-2.2 0-3.3 2.1-3.3 4.2 0 1.9 1 4.2 3.3 4.2 2.2 0 3.1-2.5 3.1-4.2 0-2-.8-4.2-3.1-4.2zm-5.4-1.4h2v1.6c.5-.8 1.8-1.8 3.8-1.8 3.3 0 4.8 2.7 4.8 5.7 0 3.1-1.4 6.1-4.8 6.1-2 0-3.1-.8-3.7-1.8V26h-2.1V11.1zm-17.3 0h1.9v1.6c.8-1.3 1.9-1.9 3.6-1.9 1.3 0 2.6.7 3.2 2.2.8-1.6 2.5-2.2 3.5-2.2 2.9 0 3.9 1.8 3.9 4.3v7.2h-2.1v-6.7c0-1.4-.3-3.1-2-3.1-2.1 0-2.9 2.1-2.9 4.2v5.7h-2.1v-6.7c0-1.4-.3-3.1-2-3.1-2.1 0-2.9 2.1-2.9 4.2v5.7h-2.1V11.1zm-8 9.8c2.4 0 3.5-2.2 3.5-4.2 0-2.1-1.3-4.2-3.5-4.2s-3.5 2.1-3.5 4.2c-.1 2 1 4.2 3.5 4.2zm0-10c3.4 0 5.7 2.5 5.7 5.9 0 3.2-2.3 5.9-5.7 5.9s-5.7-2.7-5.7-5.9c-.1-3.5 2.2-5.9 5.7-5.9zM67.4 13c-.8-.3-1.6-.5-2.2-.5-2.3 0-3.6 2.1-3.6 4.2 0 2 1.1 4.2 3.7 4.2.7 0 1.6-.2 2.2-.6l.2 1.8c-.9.4-1.8.5-2.6.5-3.4 0-5.7-2.7-5.7-5.9 0-3.4 2.3-5.9 5.7-5.9.8 0 1.9.2 2.5.4l-.2 1.8zm-19.2-1.9h2v1.8c.6-1.3 2.1-2 3.7-2 2.9 0 4.2 1.8 4.2 4.8v6.7H56v-5.8c0-2.6-.6-3.9-2.4-4-2.4 0-3.4 1.9-3.4 4.6v5.2h-2.1V11.1h.1zM38 7h8.6v1.9h-6.4v4.5H46v1.9h-5.8v5.1h6.4v1.9H38V7z"/></g></g></g></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16"><g>
2
+ <path data-color="color-2" fill="#ffffff" d="M10,14H6c0,1.1,0.9,2,2,2S10,15.1,10,14z"/>
3
+ <path fill="#ffffff" d="M15,11h-0.5C13.8,10.3,13,9.3,13,8V5c0-2.8-2.2-5-5-5S3,2.2,3,5v3c0,1.3-0.8,2.3-1.5,3H1c-0.6,0-1,0.4-1,1
4
+ s0.4,1,1,1h14c0.6,0,1-0.4,1-1S15.6,11,15,11z"/>
5
+ </g></svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16"><g><path fill="#ffffff" d="M8,2c1.1,0,2,0.9,2,2v1c0,1.1-0.9,2-2,2S6,6.1,6,5V4C6,2.9,6.9,2,8,2 M8,0C5.8,0,4,1.8,4,4v1
2
+ c0,2.2,1.8,4,4,4s4-1.8,4-4V4C12,1.8,10.2,0,8,0L8,0z"/>
3
+ <path data-color="color-2" fill="#ffffff" d="M9,12c1.5,0,2.8,0.8,3.5,2l-8.9,0c0.7-1.2,2-2,3.5-2H9 M9,10H7c-3.3,0-6,2.7-6,6v0h14v0
4
+ C15,12.7,12.3,10,9,10L9,10z"/></g></svg>
@@ -0,0 +1,27 @@
1
+ import { Meta } from '@storybook/addon-docs';
2
+
3
+ <Meta title="Intro" />
4
+
5
+ # Get Started
6
+
7
+ Software Development Kit / API for developing React Web applications. Implements cross cutting concerns as reusable APIs
8
+
9
+ ## Install
10
+
11
+ `npm install --save @elliemae/app-react-dependencies @elliemae/pui-user-monitoring @elliemae/pui-theme @elliemae/ds-basic @elliemae/ds-modal @elliemae/pui-app-sdk`
12
+
13
+ ### **Use**
14
+
15
+ Import react components you want into your UI
16
+
17
+ `import { WaitMessage } from ‘@elliemae/pui-app-sdk’;`
18
+
19
+ and use them like so
20
+
21
+ ```
22
+ const LoadingIndicator = () => (
23
+ <div>
24
+ <WaitMessage size='m' isOpen />
25
+ </div>
26
+ )
27
+ ```
@@ -0,0 +1,74 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <!-- The first thing in any HTML file should be the charset -->
5
+ <meta charset="utf-8" />
6
+ <!-- Make the page mobile compatible -->
7
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
8
+ <!-- Allow installing the app to the homescreen -->
9
+ <meta name="mobile-web-app-capable" content="yes" />
10
+ <link rel="icon" href="/favicon.ico" />
11
+ <title>Application</title>
12
+ <!-- Google Tag Manager -->
13
+ <!-- <script nonce="__CSP_NONCE__">
14
+ (function (w, d, s, l, i) {
15
+ w[l] = w[l] || [];
16
+ w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
17
+ var f = d.getElementsByTagName(s)[0],
18
+ j = d.createElement(s),
19
+ dl = l != 'dataLayer' ? '&l=' + l : '';
20
+ j.async = true;
21
+ j.src =
22
+ 'https://www.googletagmanager.com/gtm.js?id=' +
23
+ i +
24
+ dl;
25
+ f.parentNode.insertBefore(j, f);
26
+ })(window, document, 'script', 'dataLayer', window.emui.gtm.id);
27
+ </script> -->
28
+ <!-- <script nonce="__CSP_NONCE__">
29
+ window.emuiUserMonitoring = window.parent.emuiUserMonitoring || {
30
+ setCustomVirtualPageName: function () {},
31
+ startVirtualPageMonitoringWithAutoEnd: function () {},
32
+ };
33
+ </script> -->
34
+ <script>
35
+ (function (i, s, o, g, r, a, m) {
36
+ i['GoogleAnalyticsObject'] = r;
37
+ (i[r] =
38
+ i[r] ||
39
+ function () {
40
+ (i[r].q = i[r].q || []).push(arguments);
41
+ }),
42
+ (i[r].l = 1 * new Date());
43
+ (a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
44
+ a.async = 1;
45
+ a.src = g;
46
+ m.parentNode.insertBefore(a, m);
47
+ })(
48
+ window,
49
+ document,
50
+ 'script',
51
+ 'https://www.google-analytics.com/analytics.js',
52
+ 'ga',
53
+ );
54
+ </script>
55
+ <style>
56
+ .full-width {
57
+ width: 100%;
58
+ }
59
+ .full-height {
60
+ height: 100%;
61
+ }
62
+ </style>
63
+ </head>
64
+
65
+ <body class="full-width full-height">
66
+ <!-- Display a message if JS has been disabled on the browser. -->
67
+ <noscript
68
+ >If you're seeing this message, that means
69
+ <strong>JavaScript has been disabled on your browser</strong>, please
70
+ <strong>enable JS</strong> to make this app work.</noscript
71
+ >
72
+ <div id="pui-app-container-" class="full-width full-height"></div>
73
+ </body>
74
+ </html>
@@ -0,0 +1,8 @@
1
+ [
2
+ {
3
+ "name": "David"
4
+ },
5
+ {
6
+ "name": "John"
7
+ }
8
+ ]
@@ -0,0 +1,129 @@
1
+ {
2
+ "appId": "app-sdk",
3
+ "brand": "primary",
4
+ "activeEnv": "localhost",
5
+ "hosted": true,
6
+ "sessionTimeoutWarnInterval": "60000",
7
+ "sessionTimeoutInterval": "70000",
8
+ "serviceEndpoints": {
9
+ "api": "",
10
+ "idp": ""
11
+ },
12
+ "walkMeUrl": "https://cdn.walkme.com/users/897bcebc13fd48038c790e2866e6a9fb/test/walkme_897bcebc13fd48038c790e2866e6a9fb_https.js",
13
+ "env": {
14
+ "localhost": {
15
+ "serviceEndpoints": {
16
+ "api": "",
17
+ "idp": ""
18
+ }
19
+ },
20
+ "dev": {
21
+ "serviceEndpoints": {
22
+ "api": "https://dev-api.appsdk.rd.elliemae.io",
23
+ "idp": "https://int.idp.ellielabs.com"
24
+ }
25
+ },
26
+ "dev2": {
27
+ "serviceEndpoints": {
28
+ "api": "https://int.api.ellielabs.com",
29
+ "idp": "https://int.idp.ellielabs.com"
30
+ }
31
+ },
32
+ "qa": {
33
+ "serviceEndpoints": {
34
+ "api": "https://qa-api.appsdk.rd.elliemae.io",
35
+ "idp": "https://int.idp.ellielabs.com"
36
+ }
37
+ },
38
+ "qa2": {
39
+ "serviceEndpoints": {
40
+ "api": "https://int.api.ellielabs.com",
41
+ "idp": "https://int.idp.ellielabs.com"
42
+ }
43
+ },
44
+ "qa3": {
45
+ "serviceEndpoints": {
46
+ "api": "https://int.api.ellielabs.com",
47
+ "idp": "https://int.idp.ellielabs.com"
48
+ }
49
+ },
50
+ "int": {
51
+ "serviceEndpoints": {
52
+ "api": "https://int.api.ellielabs.com",
53
+ "idp": "https://int.idp.ellielabs.com"
54
+ }
55
+ },
56
+ "peg-osb1": {
57
+ "serviceEndpoints": {
58
+ "api": "https://encompass-peg-api.elliemae.com",
59
+ "idp": "https://peg.idp.ellielabs.com/authorize"
60
+ }
61
+ },
62
+ "peg-osb2": {
63
+ "serviceEndpoints": {
64
+ "api": "https://encompass-peg2-api.elliemae.com",
65
+ "idp": "https://peg.idp.ellielabs.com/authorize"
66
+ }
67
+ },
68
+ "peg": {
69
+ "serviceEndpoints": {
70
+ "api": "https://peg2-west.api.ellielabs.com",
71
+ "idp": "https://peg.idp.ellielabs.com/authorize"
72
+ }
73
+ },
74
+ "peg-oapi-west": {
75
+ "serviceEndpoints": {
76
+ "api": "https://peg2-west.api.ellielabs.com",
77
+ "idp": "https://peg.idp.ellielabs.com/authorize"
78
+ }
79
+ },
80
+ "peg-oapi-east": {
81
+ "serviceEndpoints": {
82
+ "api": "https://peg2-east.api.ellielabs.com",
83
+ "idp": "https://peg.idp.ellielabs.com/authorize"
84
+ }
85
+ },
86
+ "peg2-oapi-east": {
87
+ "serviceEndpoints": {
88
+ "api": "https://peg2-east.api.ellielabs.com",
89
+ "idp": "https://peg.idp.ellielabs.com/authorize"
90
+ }
91
+ },
92
+ "peg3": {
93
+ "serviceEndpoints": {
94
+ "api": "https://pel1.api.ellielabs.com",
95
+ "idp": "https://peg3.idp.ellielabs.com/authorize"
96
+ }
97
+ },
98
+ "stage": {
99
+ "serviceEndpoints": {
100
+ "api": "https://stg.api.elliemae.com",
101
+ "idp": "https://stg.idp.elliemae.com/authorize"
102
+ }
103
+ },
104
+ "beta": {
105
+ "serviceEndpoints": {
106
+ "api": "https://concept.api.elliemae.com",
107
+ "idp": "https://concept.idp.elliemae.com/authorize"
108
+ }
109
+ },
110
+ "demo": {
111
+ "serviceEndpoints": {
112
+ "api": "https://concept.api.elliemae.com",
113
+ "idp": "https://concept.idp.elliemae.com/authorize"
114
+ }
115
+ },
116
+ "epc": {
117
+ "serviceEndpoints": {
118
+ "api": "https://concept.api.elliemae.com",
119
+ "idp": "https://concept.idp.elliemae.com/authorize"
120
+ }
121
+ },
122
+ "prod": {
123
+ "serviceEndpoints": {
124
+ "api": "https://api.elliemae.com",
125
+ "idp": "https://idp.elliemae.com/authorize"
126
+ }
127
+ }
128
+ }
129
+ }
@@ -0,0 +1,15 @@
1
+ doctype html
2
+ head
3
+ meta(charset='UTF-8')
4
+ meta(name='viewport' content='width=device-width, initial-scale=1.0')
5
+ meta(http-equiv='X-UA-Compatible' content='ie=edge')
6
+ title #{htmlWebpackPlugin.options.libraryName}
7
+ p This library #{htmlWebpackPlugin.options.libraryName} exposes the following properties
8
+ ul#libraryAttributes
9
+ script(lang='javascript').
10
+ window.onload = () => {
11
+ const attribNode = document.getElementById('libraryAttributes');
12
+ if (attribNode) {
13
+ attribNode.innerHTML = Object.keys(window['#{htmlWebpackPlugin.options.libraryName}'] || {}).reduce((value, attribute) => value += `<li>${attribute}</li>`, '');
14
+ }
15
+
@@ -0,0 +1,2 @@
1
+
2
+ <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="195" height="28" viewBox="0 0 195 28"><style>.st0{fill:#dee3e0}.st1{fill:#fff}.st2{fill:#408a90}.st3{fill:#00acdc}.st4{fill:#f7911e}.st5{fill:#0067ab}.st6{fill:#fefefe}</style><g id="Page-1_2_"><g id="brand-assets" transform="translate(-107 -187)"><g id="logo-enc-em-inline-dark" transform="translate(107 187)"><g id="Group-3"><g id="Group" transform="translate(143 14)"><path id="Fill-27" class="st0" d="M1.8 1.9c-.6 0-.9.6-.9 1.1s.3 1.1.9 1.1c.6 0 .8-.7.8-1.1.1-.5-.2-1.1-.8-1.1zM.4.1h.5v1.8c.2-.3.5-.5 1-.5.9 0 1.3.7 1.3 1.5s-.4 1.6-1.3 1.6c-.5 0-.9-.3-1-.5v.4H.4V.1z"/><path id="Fill-29" class="st0" d="M3.7 5.3H4c.5 0 .7-.7.7-.7 0-.1-.1-.2-.1-.3l-1-2.8h.6L5 4l.8-2.5h.6l-1.1 3c-.2.6-.4 1.2-1.1 1.2h-.4l-.1-.4z"/><path id="Fill-31" class="st0" d="M50.5 1.8h.2c.1 0 .2 0 .2-.2 0-.1-.1-.2-.2-.2h-.2v.4zm-.2-.5h.4c.3 0 .4.1.4.3 0 .2-.1.3-.3.3l.3.5h-.2l-.3-.5h-.2v.5h-.2V1.3h.1zm.3 1.4c.5 0 .8-.4.8-.8 0-.5-.3-.8-.8-.8s-.8.4-.8.8.4.8.8.8zm0-1.8c.5 0 1 .4 1 1 0 .5-.4 1-1 1s-1-.4-1-1c.1-.6.5-1 1-1z"/><path id="Fill-33" class="st0" d="M8.8.1h4.8v1.1H10v2.5h3.2v1H10v2.9h3.6v1H8.8z"/><path id="Fill-35" class="st0" d="M14.6 8.6h1.1V0h-1.1z"/><path id="Fill-37" class="st0" d="M17 8.6h1.1V0H17z"/><path id="Fill-38" class="st0" d="M19.4 8.6h1.2V2.3h-1.2v6.3zm-.1-7.2h1.2V0h-1.2v1.4z"/><path id="Fill-39" class="st0" d="M25.7 4.9c0-1-.6-1.7-1.6-1.7-1.1 0-1.6.9-1.7 1.7h3.3zm.7 3.5c-.4.2-.9.4-2 .4-2.2 0-3.2-1.3-3.2-3.4 0-1.9 1.2-3.2 2.9-3.2 2.1 0 2.8 1.5 2.8 3.5h-4.5c0 1.2 1 2.1 2.1 2.1.8 0 1.6-.4 1.9-.6v1.2z"/><path id="Fill-40" class="st0" d="M27.9.1H30l2.6 7.1L35.3.1h2v8.5h-1.2V1.2l-2.9 7.4H32l-2.8-7.4v7.4h-1.3z"/><path id="Fill-41" class="st0" d="M48.2 4.9c0-1-.6-1.7-1.6-1.7-1.1 0-1.6.9-1.7 1.7h3.3zm.8 3.5c-.4.2-.9.4-2 .4-2.2 0-3.2-1.3-3.2-3.4 0-1.9 1.2-3.2 2.9-3.2 2.1 0 2.8 1.5 2.8 3.5H45c0 1.2 1 2.1 2.1 2.1.8 0 1.6-.4 1.9-.6v1.2z"/><path id="Fill-42" class="st0" d="M42.2 5.6h-.7c-.6 0-2.2.1-2.2 1.2 0 .7.6 1 1.2 1 1.1 0 1.7-.7 1.7-1.6v-.6zm-3-1.5l-.9-.2c.3-1.4 1.6-1.7 2.4-1.7 1.8 0 2.5.9 2.5 2.6v2.6c0 .7 0 1 .1 1.2h-1.2v-.8c-.3.4-.9 1-1.9 1-1.3 0-2.3-.6-2.3-1.9 0-1.6 1.7-2.1 2.9-2.1H42c0-1.1-.4-1.8-1.5-1.7-1 .1-1.3 1-1.3 1z"/></g><g id="Page-1"><path id="Fill-1" class="st1" d="M28 14c0 7.7-6.3 14-14 14S0 21.7 0 14 6.3 0 14 0s14 6.3 14 14"/><path id="Fill-3" class="st2" d="M14.1 2.3v-.5H14C7.2 1.8 1.8 7.3 1.8 14h.6c6.5.1 11.7-5.2 11.7-11.7"/><path id="Fill-5" class="st3" d="M2.3 14.1h-.6c.1 6.7 5.5 12.2 12.2 12.2h.1v-.4c.1-6.5-5.1-11.8-11.7-11.8"/><path id="Fill-7" class="st4" d="M25.9 14.1h.3V14c0-6.7-5.4-12.2-12.1-12.2v.5c0 6.5 5.3 11.8 11.8 11.8"/><path id="Fill-9" class="st5" d="M14.1 25.9v.4c6.7-.1 12-5.5 12.1-12.2h-.3c-6.5 0-11.8 5.3-11.8 11.8"/></g><path id="Page-1_1_" class="st6" d="M131.1 20.1c.8.5 2 .8 2.6.8.9 0 2.1-.4 2.1-1.6 0-2-4.9-1.9-4.9-5 0-2.3 1.7-3.5 4-3.5 1 0 1.8.2 2.6.4l-.2 1.8c-.5-.3-1.7-.6-2.2-.6-1.1 0-2 .4-2 1.4 0 2.3 4.9 1.6 4.9 5.2 0 2.4-1.9 3.5-3.9 3.5-1.1 0-2.1-.1-3.1-.6l.1-1.8zm9.4-9.7h.3c.2 0 .4 0 .4-.3 0-.2-.2-.3-.4-.3h-.3v.6zm-.3-.8h.7c.4 0 .6.2.6.5s-.2.5-.5.5l.5.8h-.3l-.5-.8h-.2v.8h-.3V9.6zm.6 2.2c.7 0 1.2-.6 1.2-1.3 0-.7-.5-1.3-1.2-1.3s-1.2.6-1.2 1.3c0 .8.5 1.3 1.2 1.3zm0-2.8c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5-1.5-.7-1.5-1.5.7-1.5 1.5-1.5zM123 20.1c.8.5 2 .8 2.6.8.9 0 2.1-.4 2.1-1.6 0-2-4.9-1.9-4.9-5 0-2.3 1.7-3.5 4-3.5 1 0 1.8.2 2.6.4l-.2 1.8c-.5-.3-1.7-.6-2.2-.6-1.1 0-2 .4-2 1.4 0 2.3 4.9 1.6 4.9 5.2 0 2.4-1.9 3.5-3.9 3.5-1.1 0-2.1-.1-3.1-.6l.1-1.8zm-3.8-3.1h-1.3c-1.1 0-3.9.2-3.9 2.2 0 1.2 1.1 1.8 2.1 1.8 2 0 3.1-1.3 3.1-2.9V17zm-6.2-5.1c1-.6 2.3-1.1 3.7-1.1 3.2 0 4.5 1.6 4.5 4.6V20c0 1.3 0 1.9.1 2.2h-1.9v-1.5c-.5.7-1.6 1.7-3.5 1.7-2.4 0-4.1-1.1-4.1-3.5 0-2.8 3.1-3.7 5.2-3.7h2.2c0-1.9-.7-2.9-2.8-2.9-1.2 0-2.4.4-3.3 1.1l-.1-1.5zm-7.7.6c-2.2 0-3.3 2.1-3.3 4.2 0 1.9 1 4.2 3.3 4.2 2.2 0 3.1-2.5 3.1-4.2 0-2-.8-4.2-3.1-4.2zm-5.4-1.4h2v1.6c.5-.8 1.8-1.8 3.8-1.8 3.3 0 4.8 2.7 4.8 5.7 0 3.1-1.4 6.1-4.8 6.1-2 0-3.1-.8-3.7-1.8V26h-2.1V11.1zm-17.3 0h1.9v1.6c.8-1.3 1.9-1.9 3.6-1.9 1.3 0 2.6.7 3.2 2.2.8-1.6 2.5-2.2 3.5-2.2 2.9 0 3.9 1.8 3.9 4.3v7.2h-2.1v-6.7c0-1.4-.3-3.1-2-3.1-2.1 0-2.9 2.1-2.9 4.2v5.7h-2.1v-6.7c0-1.4-.3-3.1-2-3.1-2.1 0-2.9 2.1-2.9 4.2v5.7h-2.1V11.1zm-8 9.8c2.4 0 3.5-2.2 3.5-4.2 0-2.1-1.3-4.2-3.5-4.2s-3.5 2.1-3.5 4.2c-.1 2 1 4.2 3.5 4.2zm0-10c3.4 0 5.7 2.5 5.7 5.9 0 3.2-2.3 5.9-5.7 5.9s-5.7-2.7-5.7-5.9c-.1-3.5 2.2-5.9 5.7-5.9zM67.4 13c-.8-.3-1.6-.5-2.2-.5-2.3 0-3.6 2.1-3.6 4.2 0 2 1.1 4.2 3.7 4.2.7 0 1.6-.2 2.2-.6l.2 1.8c-.9.4-1.8.5-2.6.5-3.4 0-5.7-2.7-5.7-5.9 0-3.4 2.3-5.9 5.7-5.9.8 0 1.9.2 2.5.4l-.2 1.8zm-19.2-1.9h2v1.8c.6-1.3 2.1-2 3.7-2 2.9 0 4.2 1.8 4.2 4.8v6.7H56v-5.8c0-2.6-.6-3.9-2.4-4-2.4 0-3.4 1.9-3.4 4.6v5.2h-2.1V11.1h.1zM38 7h8.6v1.9h-6.4v4.5H46v1.9h-5.8v5.1h6.4v1.9H38V7z"/></g></g></g></g></svg>
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16"><g>
2
+ <path data-color="color-2" fill="#ffffff" d="M10,14H6c0,1.1,0.9,2,2,2S10,15.1,10,14z"/>
3
+ <path fill="#ffffff" d="M15,11h-0.5C13.8,10.3,13,9.3,13,8V5c0-2.8-2.2-5-5-5S3,2.2,3,5v3c0,1.3-0.8,2.3-1.5,3H1c-0.6,0-1,0.4-1,1
4
+ s0.4,1,1,1h14c0.6,0,1-0.4,1-1S15.6,11,15,11z"/>
5
+ </g></svg>
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16"><g><path fill="#ffffff" d="M8,2c1.1,0,2,0.9,2,2v1c0,1.1-0.9,2-2,2S6,6.1,6,5V4C6,2.9,6.9,2,8,2 M8,0C5.8,0,4,1.8,4,4v1
2
+ c0,2.2,1.8,4,4,4s4-1.8,4-4V4C12,1.8,10.2,0,8,0L8,0z"/>
3
+ <path data-color="color-2" fill="#ffffff" d="M9,12c1.5,0,2.8,0.8,3.5,2l-8.9,0c0.7-1.2,2-2,3.5-2H9 M9,10H7c-3.3,0-6,2.7-6,6v0h14v0
4
+ C15,12.7,12.3,10,9,10L9,10z"/></g></svg>
@@ -0,0 +1,27 @@
1
+ import { Meta } from '@storybook/addon-docs';
2
+
3
+ <Meta title="Intro" />
4
+
5
+ # Get Started
6
+
7
+ Software Development Kit / API for developing React Web applications. Implements cross cutting concerns as reusable APIs
8
+
9
+ ## Install
10
+
11
+ `npm install --save @elliemae/app-react-dependencies @elliemae/pui-user-monitoring @elliemae/pui-theme @elliemae/ds-basic @elliemae/ds-modal @elliemae/pui-app-sdk`
12
+
13
+ ### **Use**
14
+
15
+ Import react components you want into your UI
16
+
17
+ `import { WaitMessage } from ‘@elliemae/pui-app-sdk’;`
18
+
19
+ and use them like so
20
+
21
+ ```
22
+ const LoadingIndicator = () => (
23
+ <div>
24
+ <WaitMessage size='m' isOpen />
25
+ </div>
26
+ )
27
+ ```
@@ -0,0 +1,74 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <!-- The first thing in any HTML file should be the charset -->
5
+ <meta charset="utf-8" />
6
+ <!-- Make the page mobile compatible -->
7
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
8
+ <!-- Allow installing the app to the homescreen -->
9
+ <meta name="mobile-web-app-capable" content="yes" />
10
+ <link rel="icon" href="/favicon.ico" />
11
+ <title>Application</title>
12
+ <!-- Google Tag Manager -->
13
+ <!-- <script nonce="__CSP_NONCE__">
14
+ (function (w, d, s, l, i) {
15
+ w[l] = w[l] || [];
16
+ w[l].push({ 'gtm.start': new Date().getTime(), event: 'gtm.js' });
17
+ var f = d.getElementsByTagName(s)[0],
18
+ j = d.createElement(s),
19
+ dl = l != 'dataLayer' ? '&l=' + l : '';
20
+ j.async = true;
21
+ j.src =
22
+ 'https://www.googletagmanager.com/gtm.js?id=' +
23
+ i +
24
+ dl;
25
+ f.parentNode.insertBefore(j, f);
26
+ })(window, document, 'script', 'dataLayer', window.emui.gtm.id);
27
+ </script> -->
28
+ <!-- <script nonce="__CSP_NONCE__">
29
+ window.emuiUserMonitoring = window.parent.emuiUserMonitoring || {
30
+ setCustomVirtualPageName: function () {},
31
+ startVirtualPageMonitoringWithAutoEnd: function () {},
32
+ };
33
+ </script> -->
34
+ <script>
35
+ (function (i, s, o, g, r, a, m) {
36
+ i['GoogleAnalyticsObject'] = r;
37
+ (i[r] =
38
+ i[r] ||
39
+ function () {
40
+ (i[r].q = i[r].q || []).push(arguments);
41
+ }),
42
+ (i[r].l = 1 * new Date());
43
+ (a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
44
+ a.async = 1;
45
+ a.src = g;
46
+ m.parentNode.insertBefore(a, m);
47
+ })(
48
+ window,
49
+ document,
50
+ 'script',
51
+ 'https://www.google-analytics.com/analytics.js',
52
+ 'ga',
53
+ );
54
+ </script>
55
+ <style>
56
+ .full-width {
57
+ width: 100%;
58
+ }
59
+ .full-height {
60
+ height: 100%;
61
+ }
62
+ </style>
63
+ </head>
64
+
65
+ <body class="full-width full-height">
66
+ <!-- Display a message if JS has been disabled on the browser. -->
67
+ <noscript
68
+ >If you're seeing this message, that means
69
+ <strong>JavaScript has been disabled on your browser</strong>, please
70
+ <strong>enable JS</strong> to make this app work.</noscript
71
+ >
72
+ <div id="pui-app-container-" class="full-width full-height"></div>
73
+ </body>
74
+ </html>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/pui-app-sdk",
3
- "version": "3.0.0-beta.1",
3
+ "version": "3.0.0-beta.2",
4
4
  "description": "ICE MT UI Platform Application SDK ",
5
5
  "sideEffects": [
6
6
  "*.css",
@@ -107,7 +107,7 @@
107
107
  "@elliemae/ds-modal": "~1.60.0",
108
108
  "@elliemae/ds-popperjs": "~1.60.0",
109
109
  "@elliemae/em-ssf-guest": "~1.11.1",
110
- "@elliemae/pui-cli": "6.0.0-beta.13",
110
+ "@elliemae/pui-cli": "6.0.0-beta.14",
111
111
  "@elliemae/pui-diagnostics": "~2.7.1",
112
112
  "@elliemae/pui-e2e-test-sdk": "~6.8.0",
113
113
  "@elliemae/pui-micro-frontend-base": "~1.9.0",