@elliemae/ds-shuttle 2.3.0-next.3 → 3.0.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.
Files changed (220) hide show
  1. package/dist/cjs/AnimationState.js +75 -0
  2. package/dist/cjs/AnimationState.js.map +7 -0
  3. package/dist/cjs/DSShuttle.js +170 -0
  4. package/dist/cjs/DSShuttle.js.map +7 -0
  5. package/dist/cjs/SearchState.js +60 -0
  6. package/dist/cjs/SearchState.js.map +7 -0
  7. package/dist/cjs/Shuttle.actions.js +126 -0
  8. package/dist/cjs/Shuttle.actions.js.map +7 -0
  9. package/dist/cjs/ShuttleContainer.js +82 -0
  10. package/dist/cjs/ShuttleContainer.js.map +7 -0
  11. package/dist/cjs/ShuttleImpl.js +214 -0
  12. package/dist/cjs/ShuttleImpl.js.map +7 -0
  13. package/dist/cjs/ShuttleRenderer.js +144 -0
  14. package/dist/cjs/ShuttleRenderer.js.map +7 -0
  15. package/dist/cjs/ShuttleState.js +84 -0
  16. package/dist/cjs/ShuttleState.js.map +7 -0
  17. package/dist/cjs/animation/animationConfig.js +78 -0
  18. package/dist/cjs/animation/animationConfig.js.map +7 -0
  19. package/dist/cjs/classedComponents.js +72 -0
  20. package/dist/cjs/classedComponents.js.map +7 -0
  21. package/dist/cjs/components/LoadingIndicator.js +52 -0
  22. package/dist/cjs/components/LoadingIndicator.js.map +7 -0
  23. package/dist/cjs/components/OverflowList.js +55 -0
  24. package/dist/cjs/components/OverflowList.js.map +7 -0
  25. package/dist/cjs/components/ShuttleBreadcrumb.js +54 -0
  26. package/dist/cjs/components/ShuttleBreadcrumb.js.map +7 -0
  27. package/dist/cjs/components/ShuttleInfiniteScrollIndicator.js +48 -0
  28. package/dist/cjs/components/ShuttleInfiniteScrollIndicator.js.map +7 -0
  29. package/dist/cjs/components/ShuttleListItem/ActionButtons.js +60 -0
  30. package/dist/cjs/components/ShuttleListItem/ActionButtons.js.map +7 -0
  31. package/dist/cjs/components/ShuttleListItem/ShuttleListItem.js +83 -0
  32. package/dist/cjs/components/ShuttleListItem/ShuttleListItem.js.map +7 -0
  33. package/dist/cjs/components/ShuttleListItem/ShuttleSourceListItem.js +90 -0
  34. package/dist/cjs/components/ShuttleListItem/ShuttleSourceListItem.js.map +7 -0
  35. package/dist/cjs/components/ShuttleListItem/ShuttleTargetListItem.js +73 -0
  36. package/dist/cjs/components/ShuttleListItem/ShuttleTargetListItem.js.map +7 -0
  37. package/dist/cjs/components/ShuttleListPanel.js +49 -0
  38. package/dist/cjs/components/ShuttleListPanel.js.map +7 -0
  39. package/dist/cjs/components/ShuttleSearchBox.js +99 -0
  40. package/dist/cjs/components/ShuttleSearchBox.js.map +7 -0
  41. package/dist/cjs/components/ShuttleSource.js +192 -0
  42. package/dist/cjs/components/ShuttleSource.js.map +7 -0
  43. package/dist/cjs/components/ShuttleTarget.js +104 -0
  44. package/dist/cjs/components/ShuttleTarget.js.map +7 -0
  45. package/dist/cjs/components/VirtualizedItem.js +51 -0
  46. package/dist/cjs/components/VirtualizedItem.js.map +7 -0
  47. package/dist/cjs/components/VirtualizedList.js +88 -0
  48. package/dist/cjs/components/VirtualizedList.js.map +7 -0
  49. package/dist/cjs/components/VirtualizedSortableList.js +48 -0
  50. package/dist/cjs/components/VirtualizedSortableList.js.map +7 -0
  51. package/dist/cjs/helper.js +83 -0
  52. package/dist/cjs/helper.js.map +7 -0
  53. package/dist/cjs/index.js +38 -0
  54. package/dist/cjs/index.js.map +7 -0
  55. package/dist/cjs/tests/utils.js +1218 -0
  56. package/dist/cjs/tests/utils.js.map +7 -0
  57. package/dist/cjs/updateShuttleStateFromProps.js +98 -0
  58. package/dist/cjs/updateShuttleStateFromProps.js.map +7 -0
  59. package/dist/cjs/utils.js +41 -0
  60. package/dist/cjs/utils.js.map +7 -0
  61. package/dist/cjs/withProviders.js +45 -0
  62. package/dist/cjs/withProviders.js.map +7 -0
  63. package/{esm → dist/esm}/AnimationState.js +12 -8
  64. package/dist/esm/AnimationState.js.map +7 -0
  65. package/dist/esm/DSShuttle.js +141 -0
  66. package/dist/esm/DSShuttle.js.map +7 -0
  67. package/dist/esm/SearchState.js +31 -0
  68. package/dist/esm/SearchState.js.map +7 -0
  69. package/dist/esm/Shuttle.actions.js +106 -0
  70. package/dist/esm/Shuttle.actions.js.map +7 -0
  71. package/dist/esm/ShuttleContainer.js +64 -0
  72. package/dist/esm/ShuttleContainer.js.map +7 -0
  73. package/dist/esm/ShuttleImpl.js +199 -0
  74. package/dist/esm/ShuttleImpl.js.map +7 -0
  75. package/dist/esm/ShuttleRenderer.js +115 -0
  76. package/dist/esm/ShuttleRenderer.js.map +7 -0
  77. package/dist/esm/ShuttleState.js +55 -0
  78. package/dist/esm/ShuttleState.js.map +7 -0
  79. package/dist/esm/animation/animationConfig.js +49 -0
  80. package/dist/esm/animation/animationConfig.js.map +7 -0
  81. package/dist/esm/classedComponents.js +43 -0
  82. package/dist/esm/classedComponents.js.map +7 -0
  83. package/dist/esm/components/LoadingIndicator.js +23 -0
  84. package/dist/esm/components/LoadingIndicator.js.map +7 -0
  85. package/dist/esm/components/OverflowList.js +26 -0
  86. package/dist/esm/components/OverflowList.js.map +7 -0
  87. package/dist/esm/components/ShuttleBreadcrumb.js +25 -0
  88. package/dist/esm/components/ShuttleBreadcrumb.js.map +7 -0
  89. package/dist/esm/components/ShuttleInfiniteScrollIndicator.js +19 -0
  90. package/dist/esm/components/ShuttleInfiniteScrollIndicator.js.map +7 -0
  91. package/dist/esm/components/ShuttleListItem/ActionButtons.js +31 -0
  92. package/dist/esm/components/ShuttleListItem/ActionButtons.js.map +7 -0
  93. package/dist/esm/components/ShuttleListItem/ShuttleListItem.js +54 -0
  94. package/dist/esm/components/ShuttleListItem/ShuttleListItem.js.map +7 -0
  95. package/dist/esm/components/ShuttleListItem/ShuttleSourceListItem.js +61 -0
  96. package/dist/esm/components/ShuttleListItem/ShuttleSourceListItem.js.map +7 -0
  97. package/dist/esm/components/ShuttleListItem/ShuttleTargetListItem.js +44 -0
  98. package/dist/esm/components/ShuttleListItem/ShuttleTargetListItem.js.map +7 -0
  99. package/dist/esm/components/ShuttleListPanel.js +20 -0
  100. package/dist/esm/components/ShuttleListPanel.js.map +7 -0
  101. package/dist/esm/components/ShuttleSearchBox.js +70 -0
  102. package/dist/esm/components/ShuttleSearchBox.js.map +7 -0
  103. package/dist/esm/components/ShuttleSource.js +175 -0
  104. package/dist/esm/components/ShuttleSource.js.map +7 -0
  105. package/dist/esm/components/ShuttleTarget.js +86 -0
  106. package/dist/esm/components/ShuttleTarget.js.map +7 -0
  107. package/dist/esm/components/VirtualizedItem.js +22 -0
  108. package/dist/esm/components/VirtualizedItem.js.map +7 -0
  109. package/dist/esm/components/VirtualizedList.js +59 -0
  110. package/dist/esm/components/VirtualizedList.js.map +7 -0
  111. package/dist/esm/components/VirtualizedSortableList.js +19 -0
  112. package/dist/esm/components/VirtualizedSortableList.js.map +7 -0
  113. package/dist/esm/helper.js +54 -0
  114. package/dist/esm/helper.js.map +7 -0
  115. package/dist/esm/index.js +9 -0
  116. package/dist/esm/index.js.map +7 -0
  117. package/dist/esm/tests/utils.js +1189 -0
  118. package/dist/esm/tests/utils.js.map +7 -0
  119. package/dist/esm/updateShuttleStateFromProps.js +69 -0
  120. package/dist/esm/updateShuttleStateFromProps.js.map +7 -0
  121. package/dist/esm/utils.js +12 -0
  122. package/dist/esm/utils.js.map +7 -0
  123. package/dist/esm/withProviders.js +16 -0
  124. package/dist/esm/withProviders.js.map +7 -0
  125. package/{types → dist/types}/AnimationState.d.ts +3 -2
  126. package/{types → dist/types}/DSShuttle.d.ts +1 -1
  127. package/{types → dist/types}/SearchState.d.ts +3 -2
  128. package/{types → dist/types}/Shuttle.actions.d.ts +0 -0
  129. package/{types → dist/types}/ShuttleContainer.d.ts +0 -0
  130. package/dist/types/ShuttleImpl.d.ts +4 -0
  131. package/{types → dist/types}/ShuttleRenderer.d.ts +1 -0
  132. package/{types → dist/types}/ShuttleState.d.ts +3 -2
  133. package/{types → dist/types}/animation/animationConfig.d.ts +0 -0
  134. package/{types → dist/types}/classedComponents.d.ts +0 -0
  135. package/{types → dist/types}/components/LoadingIndicator.d.ts +1 -0
  136. package/{types → dist/types}/components/OverflowList.d.ts +1 -0
  137. package/{types → dist/types}/components/ShuttleBreadcrumb.d.ts +1 -0
  138. package/{types → dist/types}/components/ShuttleInfiniteScrollIndicator.d.ts +1 -0
  139. package/{types → dist/types}/components/ShuttleListItem/ActionButtons.d.ts +0 -0
  140. package/{types → dist/types}/components/ShuttleListItem/ShuttleListItem.d.ts +1 -0
  141. package/{types → dist/types}/components/ShuttleListItem/ShuttleSourceListItem.d.ts +1 -0
  142. package/{types → dist/types}/components/ShuttleListItem/ShuttleTargetListItem.d.ts +1 -0
  143. package/{types → dist/types}/components/ShuttleListPanel.d.ts +1 -0
  144. package/{types → dist/types}/components/ShuttleSearchBox.d.ts +3 -1
  145. package/{types → dist/types}/components/ShuttleSource.d.ts +1 -0
  146. package/{types → dist/types}/components/ShuttleTarget.d.ts +1 -0
  147. package/{types → dist/types}/components/VirtualizedItem.d.ts +1 -0
  148. package/{types → dist/types}/components/VirtualizedList.d.ts +1 -0
  149. package/{types → dist/types}/components/VirtualizedSortableList.d.ts +1 -0
  150. package/{types → dist/types}/helper.d.ts +0 -0
  151. package/dist/types/index.d.ts +1 -0
  152. package/{types → dist/types}/tests/DSShuttle.events.test.d.ts +0 -0
  153. package/{types → dist/types}/tests/DSShuttle.test.d.ts +0 -0
  154. package/{types → dist/types}/tests/utils.d.ts +0 -0
  155. package/dist/types/updateShuttleStateFromProps.d.ts +3 -0
  156. package/{types → dist/types}/utils.d.ts +0 -0
  157. package/{types → dist/types}/withProviders.d.ts +1 -0
  158. package/package.json +97 -89
  159. package/cjs/AnimationState.js +0 -48
  160. package/cjs/DSShuttle.js +0 -223
  161. package/cjs/SearchState.js +0 -41
  162. package/cjs/Shuttle.actions.js +0 -137
  163. package/cjs/ShuttleContainer.js +0 -87
  164. package/cjs/ShuttleImpl.js +0 -311
  165. package/cjs/ShuttleRenderer.js +0 -139
  166. package/cjs/ShuttleState.js +0 -80
  167. package/cjs/animation/animationConfig.js +0 -81
  168. package/cjs/classedComponents.js +0 -71
  169. package/cjs/components/LoadingIndicator.js +0 -25
  170. package/cjs/components/OverflowList.js +0 -53
  171. package/cjs/components/ShuttleBreadcrumb.js +0 -42
  172. package/cjs/components/ShuttleInfiniteScrollIndicator.js +0 -39
  173. package/cjs/components/ShuttleListItem/ActionButtons.js +0 -55
  174. package/cjs/components/ShuttleListItem/ShuttleListItem.js +0 -85
  175. package/cjs/components/ShuttleListItem/ShuttleSourceListItem.js +0 -76
  176. package/cjs/components/ShuttleListItem/ShuttleTargetListItem.js +0 -57
  177. package/cjs/components/ShuttleListPanel.js +0 -31
  178. package/cjs/components/ShuttleSearchBox.js +0 -110
  179. package/cjs/components/ShuttleSource.js +0 -188
  180. package/cjs/components/ShuttleTarget.js +0 -116
  181. package/cjs/components/VirtualizedItem.js +0 -46
  182. package/cjs/components/VirtualizedList.js +0 -93
  183. package/cjs/components/VirtualizedSortableList.js +0 -41
  184. package/cjs/helper.js +0 -117
  185. package/cjs/index.js +0 -12
  186. package/cjs/updateShuttleStateFromProps.js +0 -94
  187. package/cjs/utils.js +0 -43
  188. package/cjs/withProviders.js +0 -29
  189. package/esm/DSShuttle.js +0 -213
  190. package/esm/SearchState.js +0 -35
  191. package/esm/Shuttle.actions.js +0 -123
  192. package/esm/ShuttleContainer.js +0 -80
  193. package/esm/ShuttleImpl.js +0 -304
  194. package/esm/ShuttleRenderer.js +0 -132
  195. package/esm/ShuttleState.js +0 -74
  196. package/esm/animation/animationConfig.js +0 -77
  197. package/esm/classedComponents.js +0 -51
  198. package/esm/components/LoadingIndicator.js +0 -18
  199. package/esm/components/OverflowList.js +0 -46
  200. package/esm/components/ShuttleBreadcrumb.js +0 -35
  201. package/esm/components/ShuttleInfiniteScrollIndicator.js +0 -32
  202. package/esm/components/ShuttleListItem/ActionButtons.js +0 -43
  203. package/esm/components/ShuttleListItem/ShuttleListItem.js +0 -76
  204. package/esm/components/ShuttleListItem/ShuttleSourceListItem.js +0 -68
  205. package/esm/components/ShuttleListItem/ShuttleTargetListItem.js +0 -49
  206. package/esm/components/ShuttleListPanel.js +0 -24
  207. package/esm/components/ShuttleSearchBox.js +0 -104
  208. package/esm/components/ShuttleSource.js +0 -179
  209. package/esm/components/ShuttleTarget.js +0 -107
  210. package/esm/components/VirtualizedItem.js +0 -40
  211. package/esm/components/VirtualizedList.js +0 -84
  212. package/esm/components/VirtualizedSortableList.js +0 -34
  213. package/esm/helper.js +0 -78
  214. package/esm/index.js +0 -2
  215. package/esm/updateShuttleStateFromProps.js +0 -88
  216. package/esm/utils.js +0 -18
  217. package/esm/withProviders.js +0 -22
  218. package/types/ShuttleImpl.d.ts +0 -3
  219. package/types/index.d.ts +0 -1
  220. package/types/updateShuttleStateFromProps.d.ts +0 -1
@@ -0,0 +1,1218 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __markAsModule = (target) => __defProp(target, "__esModule", { value: true });
8
+ var __export = (target, all) => {
9
+ for (var name in all)
10
+ __defProp(target, name, { get: all[name], enumerable: true });
11
+ };
12
+ var __reExport = (target, module2, copyDefault, desc) => {
13
+ if (module2 && typeof module2 === "object" || typeof module2 === "function") {
14
+ for (let key of __getOwnPropNames(module2))
15
+ if (!__hasOwnProp.call(target, key) && (copyDefault || key !== "default"))
16
+ __defProp(target, key, { get: () => module2[key], enumerable: !(desc = __getOwnPropDesc(module2, key)) || desc.enumerable });
17
+ }
18
+ return target;
19
+ };
20
+ var __toESM = (module2, isNodeMode) => {
21
+ return __reExport(__markAsModule(__defProp(module2 != null ? __create(__getProtoOf(module2)) : {}, "default", !isNodeMode && module2 && module2.__esModule ? { get: () => module2.default, enumerable: true } : { value: module2, enumerable: true })), module2);
22
+ };
23
+ var __toCommonJS = /* @__PURE__ */ ((cache) => {
24
+ return (module2, temp) => {
25
+ return cache && cache.get(module2) || (temp = __reExport(__markAsModule({}), module2, 1), cache && cache.set(module2, temp), temp);
26
+ };
27
+ })(typeof WeakMap !== "undefined" ? /* @__PURE__ */ new WeakMap() : 0);
28
+ var utils_exports = {};
29
+ __export(utils_exports, {
30
+ eventsOptions: () => eventsOptions,
31
+ newLoadedOptions: () => newLoadedOptions,
32
+ options: () => options,
33
+ options2: () => options2,
34
+ shortOptions: () => shortOptions
35
+ });
36
+ var React = __toESM(require("react"));
37
+ const eventsOptions = [
38
+ {
39
+ parent: null,
40
+ id: "id1",
41
+ name: "item 1",
42
+ lastName: "User",
43
+ firstName: "Accounting1",
44
+ fullName: "Accounting User",
45
+ email: "",
46
+ phone: "",
47
+ cellPhone: "",
48
+ fax: "",
49
+ userId: "accounting"
50
+ },
51
+ {
52
+ parent: null,
53
+ id: "id2",
54
+ name: "item 2",
55
+ lastName: "User",
56
+ firstName: "Accounting2",
57
+ isMoveableContainer: true,
58
+ fullName: "Accounting User",
59
+ email: "",
60
+ phone: "",
61
+ cellPhone: "",
62
+ fax: "",
63
+ userId: "accounting"
64
+ },
65
+ {
66
+ parent: "id2",
67
+ id: "id3",
68
+ name: "item 3",
69
+ lastName: "User",
70
+ firstName: "Accounting3",
71
+ fullName: "Accounting User",
72
+ email: "",
73
+ phone: "",
74
+ cellPhone: "",
75
+ fax: "",
76
+ userId: "accounting"
77
+ }
78
+ ];
79
+ const shortOptions = [
80
+ {
81
+ parent: null,
82
+ id: "long-long-long",
83
+ name: "Accounting User (accounting) long item should truncate",
84
+ lastName: "User",
85
+ firstName: "Accounting",
86
+ fullName: "Accounting User",
87
+ email: "",
88
+ phone: "",
89
+ cellPhone: "",
90
+ fax: "",
91
+ userId: "accounting"
92
+ },
93
+ {
94
+ parent: null,
95
+ id: "long-long-long-1",
96
+ name: "Accounting User (accounting) long item should truncate",
97
+ lastName: "User",
98
+ firstName: "Accounting",
99
+ fullName: "Accounting User",
100
+ email: "",
101
+ phone: "",
102
+ cellPhone: "",
103
+ fax: "",
104
+ userId: "accounting"
105
+ },
106
+ {
107
+ parent: "long-long-long-1",
108
+ id: "long-long-long-2",
109
+ name: "Accounting User (accounting) long item should truncate",
110
+ lastName: "User",
111
+ firstName: "Accounting",
112
+ fullName: "Accounting User",
113
+ email: "",
114
+ phone: "",
115
+ cellPhone: "",
116
+ fax: "",
117
+ userId: "accounting"
118
+ }
119
+ ];
120
+ const options = [
121
+ {
122
+ parent: null,
123
+ id: "accounting",
124
+ name: "Accounting User (accounting)",
125
+ lastName: "User",
126
+ firstName: "Accounting",
127
+ fullName: "Accounting User",
128
+ email: "",
129
+ phone: "",
130
+ cellPhone: "",
131
+ fax: "",
132
+ userId: "accounting"
133
+ },
134
+ {
135
+ parent: null,
136
+ id: "aditilo",
137
+ name: "Aditi Mehra (aditilo)",
138
+ lastName: "Mehra",
139
+ firstName: "Aditi",
140
+ fullName: "Aditi Mehra",
141
+ email: "aditi.mehra@elliemae.com",
142
+ phone: "",
143
+ cellPhone: "",
144
+ fax: "",
145
+ userId: "aditilo"
146
+ },
147
+ {
148
+ parent: null,
149
+ id: "admin",
150
+ name: "Admin User (admin)",
151
+ lastName: "User",
152
+ firstName: "Admin",
153
+ fullName: "Admin User",
154
+ email: "elliemae@elliemae.com",
155
+ phone: "",
156
+ cellPhone: "",
157
+ fax: "",
158
+ userId: "admin"
159
+ },
160
+ {
161
+ parent: null,
162
+ id: "aa01",
163
+ name: "Andrei A (aa01)",
164
+ lastName: "A",
165
+ firstName: "Andrei",
166
+ fullName: "Andrei A",
167
+ email: "shashikant.kasture@elliemae.com",
168
+ phone: "666-666-6666",
169
+ cellPhone: "650-123-9632",
170
+ fax: "",
171
+ userId: "aa01"
172
+ },
173
+ {
174
+ parent: null,
175
+ id: "localadmin",
176
+ name: "Andrei A (localadmin)",
177
+ lastName: "A",
178
+ firstName: "Andrei",
179
+ fullName: "Andrei A",
180
+ email: "shashikant.kasture@elliemae.com",
181
+ phone: "666-666-6666",
182
+ cellPhone: "",
183
+ fax: "",
184
+ userId: "localadmin"
185
+ },
186
+ {
187
+ parent: null,
188
+ id: "autotest1",
189
+ name: "Auto Test (autotest1)",
190
+ lastName: "Test",
191
+ firstName: "Auto",
192
+ fullName: "Auto Test",
193
+ email: "at@elliemae.com",
194
+ phone: "",
195
+ cellPhone: "",
196
+ fax: "",
197
+ userId: "autotest1"
198
+ },
199
+ {
200
+ parent: null,
201
+ id: "autotest2",
202
+ name: "Auto Test2 (autotest2)",
203
+ lastName: "Test2",
204
+ firstName: "Auto",
205
+ fullName: "Auto Test2",
206
+ email: "at2@elliemae.com",
207
+ phone: "424-222-3424",
208
+ cellPhone: "432-242-4242",
209
+ fax: "",
210
+ userId: "autotest2"
211
+ },
212
+ {
213
+ parent: null,
214
+ id: "closer",
215
+ name: "Closer User 1 (closer)",
216
+ lastName: "User",
217
+ firstName: "Closer",
218
+ fullName: "Closer User",
219
+ email: "",
220
+ phone: "",
221
+ cellPhone: "",
222
+ fax: "",
223
+ userId: "closer"
224
+ },
225
+ {
226
+ parent: null,
227
+ id: "dhamm",
228
+ name: "David Hamm (dhamm)",
229
+ lastName: "Hamm",
230
+ firstName: "David",
231
+ fullName: "David Hamm",
232
+ email: "david.hamm@elliemae.com",
233
+ phone: "",
234
+ cellPhone: "",
235
+ fax: "",
236
+ userId: "dhamm"
237
+ },
238
+ {
239
+ parent: null,
240
+ id: "demo",
241
+ name: "Demo user (demo)",
242
+ lastName: "user",
243
+ firstName: "Demo",
244
+ fullName: "Demo user",
245
+ email: "Gayathri.Boina@EllieMae.com",
246
+ phone: "",
247
+ cellPhone: "",
248
+ fax: "",
249
+ userId: "demo"
250
+ },
251
+ {
252
+ parent: null,
253
+ id: "funder",
254
+ name: "Funder User (funder)",
255
+ lastName: "User",
256
+ firstName: "Funder",
257
+ fullName: "Funder User",
258
+ email: "",
259
+ phone: "",
260
+ cellPhone: "",
261
+ fax: "",
262
+ userId: "funder"
263
+ },
264
+ {
265
+ parent: null,
266
+ id: "ifbadmin",
267
+ name: "IFB Admin (ifbadmin)",
268
+ lastName: "Admin",
269
+ firstName: "IFB",
270
+ fullName: "IFB Admin",
271
+ email: "kartik.jayashankaran@elliemae.com",
272
+ phone: "",
273
+ cellPhone: "",
274
+ fax: "",
275
+ userId: "ifbadmin"
276
+ },
277
+ {
278
+ parent: null,
279
+ id: "jk01",
280
+ name: "Kartik Jayashankaran (jk01)",
281
+ lastName: "Jayashankaran",
282
+ firstName: "Kartik",
283
+ fullName: "Kartik Jayashankaran",
284
+ email: "kartik.jayashankaran@elliemae.com",
285
+ phone: "",
286
+ cellPhone: "",
287
+ fax: "",
288
+ userId: "jk01"
289
+ },
290
+ {
291
+ parent: null,
292
+ id: "jk01",
293
+ name: "Kartik Jayashankaran (jk01)",
294
+ lastName: "Jayashankaran",
295
+ firstName: "Kartik",
296
+ fullName: "Kartik Jayashankaran",
297
+ email: "kartik.jayashankaran@elliemae.com",
298
+ phone: "",
299
+ cellPhone: "",
300
+ fax: "",
301
+ userId: "jk01"
302
+ },
303
+ {
304
+ parent: null,
305
+ id: "aditilo",
306
+ name: "Aditi Mehra (aditilo)",
307
+ lastName: "Mehra",
308
+ firstName: "Aditi",
309
+ fullName: "Aditi Mehra",
310
+ email: "aditi.mehra@elliemae.com",
311
+ phone: "",
312
+ cellPhone: "",
313
+ fax: "",
314
+ userId: "aditilo"
315
+ },
316
+ {
317
+ parent: null,
318
+ id: "admin",
319
+ name: "Admin User (admin)",
320
+ lastName: "User",
321
+ firstName: "Admin",
322
+ fullName: "Admin User",
323
+ email: "elliemae@elliemae.com",
324
+ phone: "",
325
+ cellPhone: "",
326
+ fax: "",
327
+ userId: "admin"
328
+ },
329
+ {
330
+ parent: null,
331
+ id: "aa01",
332
+ name: "Andrei A (aa01)",
333
+ lastName: "A",
334
+ firstName: "Andrei",
335
+ fullName: "Andrei A",
336
+ email: "shashikant.kasture@elliemae.com",
337
+ phone: "666-666-6666",
338
+ cellPhone: "650-123-9632",
339
+ fax: "",
340
+ userId: "aa01"
341
+ },
342
+ {
343
+ parent: null,
344
+ id: "localadmin",
345
+ name: "Andrei A (localadmin)",
346
+ lastName: "A",
347
+ firstName: "Andrei",
348
+ fullName: "Andrei A",
349
+ email: "shashikant.kasture@elliemae.com",
350
+ phone: "666-666-6666",
351
+ cellPhone: "",
352
+ fax: "",
353
+ userId: "localadmin"
354
+ },
355
+ {
356
+ parent: null,
357
+ id: "autotest1",
358
+ name: "Auto Test (autotest1)",
359
+ lastName: "Test",
360
+ firstName: "Auto",
361
+ fullName: "Auto Test",
362
+ email: "at@elliemae.com",
363
+ phone: "",
364
+ cellPhone: "",
365
+ fax: "",
366
+ userId: "autotest1"
367
+ },
368
+ {
369
+ parent: null,
370
+ id: "autotest2",
371
+ name: "Auto Test2 (autotest2)",
372
+ lastName: "Test2",
373
+ firstName: "Auto",
374
+ fullName: "Auto Test2",
375
+ email: "at2@elliemae.com",
376
+ phone: "424-222-3424",
377
+ cellPhone: "432-242-4242",
378
+ fax: "",
379
+ userId: "autotest2"
380
+ },
381
+ {
382
+ parent: null,
383
+ id: "closer",
384
+ name: "Closer User 2 (closer)",
385
+ lastName: "User",
386
+ firstName: "Closer",
387
+ fullName: "Closer User",
388
+ email: "",
389
+ phone: "",
390
+ cellPhone: "",
391
+ fax: "",
392
+ userId: "closer"
393
+ },
394
+ {
395
+ parent: null,
396
+ id: "dhamm",
397
+ name: "David Hamm (dhamm)",
398
+ lastName: "Hamm",
399
+ firstName: "David",
400
+ fullName: "David Hamm",
401
+ email: "david.hamm@elliemae.com",
402
+ phone: "",
403
+ cellPhone: "",
404
+ fax: "",
405
+ userId: "dhamm"
406
+ },
407
+ {
408
+ parent: null,
409
+ id: "aditilo",
410
+ name: "Aditi Mehra (aditilo)",
411
+ lastName: "Mehra",
412
+ firstName: "Aditi",
413
+ fullName: "Aditi Mehra",
414
+ email: "aditi.mehra@elliemae.com",
415
+ phone: "",
416
+ cellPhone: "",
417
+ fax: "",
418
+ userId: "aditilo"
419
+ },
420
+ {
421
+ parent: null,
422
+ id: "admin",
423
+ name: "Admin User (admin)",
424
+ lastName: "User",
425
+ firstName: "Admin",
426
+ fullName: "Admin User",
427
+ email: "elliemae@elliemae.com",
428
+ phone: "",
429
+ cellPhone: "",
430
+ fax: "",
431
+ userId: "admin"
432
+ },
433
+ {
434
+ parent: null,
435
+ id: "aa012",
436
+ name: "Andrei AB",
437
+ lastName: "A",
438
+ firstName: "Andrei",
439
+ fullName: "Andrei A",
440
+ email: "shashikant.kasture@elliemae.com",
441
+ phone: "666-666-6666",
442
+ cellPhone: "650-123-9632",
443
+ fax: "",
444
+ userId: "aa012"
445
+ },
446
+ {
447
+ parent: null,
448
+ id: "localadmin",
449
+ name: "Andrei A (localadmin)",
450
+ lastName: "A",
451
+ firstName: "Andrei",
452
+ fullName: "Andrei A",
453
+ email: "shashikant.kasture@elliemae.com",
454
+ phone: "666-666-6666",
455
+ cellPhone: "",
456
+ fax: "",
457
+ userId: "localadmin"
458
+ },
459
+ {
460
+ parent: null,
461
+ id: "autotest1",
462
+ name: "Auto Test (autotest1)",
463
+ lastName: "Test",
464
+ firstName: "Auto",
465
+ fullName: "Auto Test",
466
+ email: "at@elliemae.com",
467
+ phone: "",
468
+ cellPhone: "",
469
+ fax: "",
470
+ userId: "autotest1"
471
+ },
472
+ {
473
+ parent: null,
474
+ id: "autotest2",
475
+ name: "Auto Test2 (autotest2)",
476
+ lastName: "Test2",
477
+ firstName: "Auto",
478
+ fullName: "Auto Test2",
479
+ email: "at2@elliemae.com",
480
+ phone: "424-222-3424",
481
+ cellPhone: "432-242-4242",
482
+ fax: "",
483
+ userId: "autotest2"
484
+ },
485
+ {
486
+ parent: null,
487
+ id: "closer 3",
488
+ name: "Closer User Scroll",
489
+ lastName: "User",
490
+ firstName: "Closer",
491
+ fullName: "Closer User",
492
+ email: "",
493
+ phone: "",
494
+ cellPhone: "",
495
+ fax: "",
496
+ userId: "closer 3"
497
+ },
498
+ {
499
+ parent: null,
500
+ id: "dhamm",
501
+ name: "David Hamm (dhamm)",
502
+ lastName: "Hamm",
503
+ firstName: "David",
504
+ fullName: "David Hamm",
505
+ email: "david.hamm@elliemae.com",
506
+ phone: "",
507
+ cellPhone: "",
508
+ fax: "",
509
+ userId: "dhamm"
510
+ },
511
+ {
512
+ parent: null,
513
+ id: "jk01",
514
+ name: "Kartik Jayashankaran (jk01)",
515
+ lastName: "Jayashankaran",
516
+ firstName: "Kartik",
517
+ fullName: "Kartik Jayashankaran",
518
+ email: "kartik.jayashankaran@elliemae.com",
519
+ phone: "",
520
+ cellPhone: "",
521
+ fax: "",
522
+ userId: "jk01"
523
+ },
524
+ {
525
+ parent: null,
526
+ id: "jk01",
527
+ name: "Kartik Jayashankaran (jk01)",
528
+ lastName: "Jayashankaran",
529
+ firstName: "Kartik",
530
+ fullName: "Kartik Jayashankaran",
531
+ email: "kartik.jayashankaran@elliemae.com",
532
+ phone: "",
533
+ cellPhone: "",
534
+ fax: "",
535
+ userId: "jk01"
536
+ },
537
+ {
538
+ parent: null,
539
+ id: "jk01",
540
+ name: "Kartik Jayashankaran (jk01)",
541
+ lastName: "Jayashankaran",
542
+ firstName: "Kartik",
543
+ fullName: "Kartik Jayashankaran",
544
+ email: "kartik.jayashankaran@elliemae.com",
545
+ phone: "",
546
+ cellPhone: "",
547
+ fax: "",
548
+ userId: "jk01"
549
+ },
550
+ {
551
+ parent: null,
552
+ id: "admin",
553
+ name: "Admin User (admin)",
554
+ lastName: "User",
555
+ firstName: "Admin",
556
+ fullName: "Admin User",
557
+ email: "elliemae@elliemae.com",
558
+ phone: "",
559
+ cellPhone: "",
560
+ fax: "",
561
+ userId: "admin"
562
+ },
563
+ {
564
+ parent: null,
565
+ id: "aa01",
566
+ name: "Andrei A (aa01)",
567
+ lastName: "A",
568
+ firstName: "Andrei",
569
+ fullName: "Andrei A",
570
+ email: "shashikant.kasture@elliemae.com",
571
+ phone: "666-666-6666",
572
+ cellPhone: "650-123-9632",
573
+ fax: "",
574
+ userId: "aa01"
575
+ },
576
+ {
577
+ parent: null,
578
+ id: "localadmin",
579
+ name: "Andrei A (localadmin)",
580
+ lastName: "A",
581
+ firstName: "Andrei",
582
+ fullName: "Andrei A",
583
+ email: "shashikant.kasture@elliemae.com",
584
+ phone: "666-666-6666",
585
+ cellPhone: "",
586
+ fax: "",
587
+ userId: "localadmin"
588
+ },
589
+ {
590
+ parent: null,
591
+ id: "autotest1",
592
+ name: "Auto Test (autotest1)",
593
+ lastName: "Test",
594
+ firstName: "Auto",
595
+ fullName: "Auto Test",
596
+ email: "at@elliemae.com",
597
+ phone: "",
598
+ cellPhone: "",
599
+ fax: "",
600
+ userId: "autotest1"
601
+ },
602
+ {
603
+ parent: null,
604
+ id: "autotest2",
605
+ name: "Auto Test2 (autotest2)",
606
+ lastName: "Test2",
607
+ firstName: "Auto",
608
+ fullName: "Auto Test2",
609
+ email: "at2@elliemae.com",
610
+ phone: "424-222-3424",
611
+ cellPhone: "432-242-4242",
612
+ fax: "",
613
+ userId: "autotest2"
614
+ },
615
+ {
616
+ parent: null,
617
+ id: "closer",
618
+ name: "Closer User (closer)",
619
+ lastName: "User",
620
+ firstName: "Closer",
621
+ fullName: "Closer User",
622
+ email: "",
623
+ phone: "",
624
+ cellPhone: "",
625
+ fax: "",
626
+ userId: "closer"
627
+ },
628
+ {
629
+ parent: null,
630
+ id: "dhamm",
631
+ name: "David Hamm (dhamm)",
632
+ lastName: "Hamm",
633
+ firstName: "David",
634
+ fullName: "David Hamm",
635
+ email: "david.hamm@elliemae.com",
636
+ phone: "",
637
+ cellPhone: "",
638
+ fax: "",
639
+ userId: "dhamm"
640
+ },
641
+ {
642
+ parent: null,
643
+ id: "demo",
644
+ name: "Demo user (demo)",
645
+ lastName: "user",
646
+ firstName: "Demo",
647
+ fullName: "Demo user",
648
+ email: "Gayathri.Boina@EllieMae.com",
649
+ phone: "",
650
+ cellPhone: "",
651
+ fax: "",
652
+ userId: "demo"
653
+ },
654
+ {
655
+ parent: null,
656
+ id: "funder",
657
+ name: "Funder User (funder)",
658
+ lastName: "User",
659
+ firstName: "Funder",
660
+ fullName: "Funder User",
661
+ email: "",
662
+ phone: "",
663
+ cellPhone: "",
664
+ fax: "",
665
+ userId: "funder"
666
+ },
667
+ {
668
+ parent: null,
669
+ id: "ifbadmin",
670
+ name: "IFB Admin (ifbadmin)",
671
+ lastName: "Admin",
672
+ firstName: "IFB",
673
+ fullName: "IFB Admin",
674
+ email: "kartik.jayashankaran@elliemae.com",
675
+ phone: "",
676
+ cellPhone: "",
677
+ fax: "",
678
+ userId: "ifbadmin"
679
+ }
680
+ ];
681
+ const newLoadedOptions = [
682
+ {
683
+ parent: null,
684
+ id: "ecs_admin",
685
+ name: "Kelly-ECS Nguyen (ecs_admin)",
686
+ lastName: "Nguyen",
687
+ firstName: "Kelly-ECS",
688
+ fullName: "Kelly-ECS Nguyen",
689
+ email: "kelly.nguyen@elliemae.com",
690
+ phone: "",
691
+ cellPhone: "",
692
+ fax: "",
693
+ userId: "ecs_admin"
694
+ },
695
+ {
696
+ parent: null,
697
+ id: "lockdesk",
698
+ name: "Lock Desk User (lockdesk)",
699
+ lastName: "User",
700
+ firstName: "Lock Desk",
701
+ fullName: "Lock Desk User",
702
+ email: "",
703
+ phone: "",
704
+ cellPhone: "",
705
+ fax: "",
706
+ userId: "lockdesk"
707
+ },
708
+ {
709
+ parent: null,
710
+ id: "madmin",
711
+ name: "Mandar Desai (madmin)",
712
+ lastName: "Desai",
713
+ firstName: "Mandar",
714
+ fullName: "Mandar Desai",
715
+ email: "mandar.desai@elliemae.com",
716
+ phone: "",
717
+ cellPhone: "",
718
+ fax: "",
719
+ userId: "madmin"
720
+ },
721
+ {
722
+ parent: null,
723
+ id: "md01",
724
+ name: "Mandar Desai (md01)",
725
+ lastName: "Desai",
726
+ firstName: "Mandar",
727
+ fullName: "Mandar Desai",
728
+ email: "Mandar.Desai@Elliemae.com",
729
+ phone: "",
730
+ cellPhone: "",
731
+ fax: "",
732
+ userId: "md01"
733
+ },
734
+ {
735
+ parent: null,
736
+ id: "mk01",
737
+ name: "Melissa Kim (mk01)",
738
+ lastName: "Kim",
739
+ firstName: "Melissa",
740
+ fullName: "Melissa Kim",
741
+ email: "melissa.kim@elliemae.com",
742
+ phone: "",
743
+ cellPhone: "",
744
+ fax: "",
745
+ userId: "mk01"
746
+ },
747
+ {
748
+ parent: null,
749
+ id: "nk001",
750
+ name: "Nilesh Test (nk001)",
751
+ lastName: "Test ",
752
+ firstName: "Nilesh",
753
+ fullName: "Nilesh Admin Test User",
754
+ email: "a@a.com",
755
+ phone: "",
756
+ cellPhone: "",
757
+ fax: "",
758
+ userId: "nk001"
759
+ },
760
+ {
761
+ parent: null,
762
+ id: "nk01",
763
+ name: "Nilesh k (nk01)",
764
+ lastName: "k",
765
+ firstName: "Nilesh",
766
+ fullName: "Nilesh k",
767
+ email: "gunjan.kumar@elliemae.com",
768
+ phone: "",
769
+ cellPhone: "",
770
+ fax: "",
771
+ userId: "nk01"
772
+ },
773
+ {
774
+ parent: null,
775
+ id: "officer",
776
+ name: "Officer User (officer)",
777
+ lastName: "User",
778
+ firstName: "Officer",
779
+ fullName: "Officer User",
780
+ email: "",
781
+ phone: "",
782
+ cellPhone: "",
783
+ fax: "",
784
+ userId: "officer"
785
+ },
786
+ {
787
+ parent: null,
788
+ id: "plo",
789
+ name: "P I (plo)",
790
+ lastName: "I",
791
+ firstName: "P",
792
+ fullName: "P I",
793
+ email: "prajakta.inamdar@elliemae.com",
794
+ phone: "",
795
+ cellPhone: "",
796
+ fax: "",
797
+ userId: "plo"
798
+ },
799
+ {
800
+ parent: null,
801
+ id: "patl01",
802
+ name: "PA TL01 (patl01)",
803
+ lastName: "TL01",
804
+ firstName: "PA",
805
+ fullName: "PA TL01",
806
+ email: "Gayathri.Boina@Elliemae.com",
807
+ phone: "",
808
+ cellPhone: "",
809
+ fax: "",
810
+ userId: "patl01"
811
+ },
812
+ {
813
+ parent: null,
814
+ id: "sub1",
815
+ name: "Pamela Trujillo (sub1)",
816
+ lastName: "Trujillo",
817
+ firstName: "Pamela",
818
+ fullName: "Pamela Trujillo",
819
+ email: "pamela.trujillo@elliemae.com",
820
+ phone: "",
821
+ cellPhone: "",
822
+ fax: "",
823
+ userId: "sub1"
824
+ },
825
+ {
826
+ parent: null,
827
+ id: "pl01",
828
+ name: "Pipeline Loan Officer (pl01)",
829
+ lastName: "Loan Officer",
830
+ firstName: "Pipeline",
831
+ fullName: "Pipeline Loan Officer",
832
+ email: "nilesh.kumar@elliemae.com",
833
+ phone: "",
834
+ cellPhone: "",
835
+ fax: "",
836
+ userId: "pl01"
837
+ },
838
+ {
839
+ parent: null,
840
+ id: "postcloser",
841
+ name: "Post Closer User (postcloser)",
842
+ lastName: "User",
843
+ firstName: "Post Closer",
844
+ fullName: "Post Closer User",
845
+ email: " ",
846
+ phone: "",
847
+ cellPhone: "",
848
+ fax: "",
849
+ userId: "postcloser"
850
+ },
851
+ {
852
+ parent: null,
853
+ id: "ptagare",
854
+ name: "Priyanka Tagare (ptagare)",
855
+ lastName: "Tagare",
856
+ firstName: "Priyanka",
857
+ fullName: "Priyanka Tagare",
858
+ email: "priyanka.tagare@elliemae.com",
859
+ phone: "121-212-1212 1212",
860
+ cellPhone: "",
861
+ fax: "131-313-1313",
862
+ userId: "ptagare"
863
+ },
864
+ {
865
+ parent: null,
866
+ id: "processor",
867
+ name: "Processor User (processor)",
868
+ lastName: "User",
869
+ firstName: "Processor",
870
+ fullName: "Processor User",
871
+ email: "",
872
+ phone: "",
873
+ cellPhone: "",
874
+ fax: "",
875
+ userId: "processor"
876
+ },
877
+ {
878
+ parent: null,
879
+ id: "lo_satish",
880
+ name: "Sam LO (lo_satish)",
881
+ lastName: "LO",
882
+ firstName: "Sam",
883
+ fullName: "Sam LO",
884
+ email: "satish.kumar@elliemae.com",
885
+ phone: "",
886
+ cellPhone: "",
887
+ fax: "",
888
+ userId: "lo_satish"
889
+ },
890
+ {
891
+ parent: null,
892
+ id: "underwriter",
893
+ name: "Underwriter User (underwriter)",
894
+ lastName: "User",
895
+ firstName: "Underwriter",
896
+ fullName: "Underwriter User",
897
+ email: "",
898
+ phone: "",
899
+ cellPhone: "",
900
+ fax: "",
901
+ userId: "underwriter"
902
+ },
903
+ {
904
+ parent: null,
905
+ id: "vmane",
906
+ name: "Vishal Mane (vmane)",
907
+ lastName: "Mane",
908
+ firstName: "Vishal",
909
+ fullName: "Vishal Mane",
910
+ email: "vishal.mane@elliemae.com",
911
+ phone: "",
912
+ cellPhone: "",
913
+ fax: "",
914
+ userId: "vmane"
915
+ },
916
+ {
917
+ parent: null,
918
+ id: "ifbuser",
919
+ name: "bhuvana Srikanth (ifbuser)",
920
+ lastName: "Srikanth",
921
+ firstName: "bhuvana",
922
+ fullName: "bhuvana Srikanth",
923
+ email: "bhuvana_srik@elliemae.com",
924
+ phone: "",
925
+ cellPhone: "",
926
+ fax: "",
927
+ userId: "ifbuser"
928
+ },
929
+ {
930
+ parent: null,
931
+ id: "gboina",
932
+ name: "boina g (gboina)",
933
+ lastName: "g",
934
+ firstName: "boina",
935
+ fullName: "boina g",
936
+ email: "Gayathri.Boina@elliemae.com",
937
+ phone: "",
938
+ cellPhone: "",
939
+ fax: "",
940
+ userId: "gboina"
941
+ },
942
+ {
943
+ parent: null,
944
+ id: "gb03",
945
+ name: "g b03 (gb03)",
946
+ lastName: "b03",
947
+ firstName: "g",
948
+ fullName: "g b03",
949
+ email: "Gayathri.Boina@EllieMae.com",
950
+ phone: "",
951
+ cellPhone: "",
952
+ fax: "",
953
+ userId: "gb03"
954
+ },
955
+ {
956
+ parent: null,
957
+ id: "gb02",
958
+ name: "g boina (gb02)",
959
+ lastName: "boina",
960
+ firstName: "g",
961
+ fullName: "g boina",
962
+ email: "Gayathri.Boina@EllieMae.com",
963
+ phone: "",
964
+ cellPhone: "",
965
+ fax: "",
966
+ userId: "gb02"
967
+ },
968
+ {
969
+ parent: null,
970
+ id: "gb01",
971
+ name: "gayathri Boina (gb01)",
972
+ lastName: "Boina",
973
+ firstName: "gayathri",
974
+ fullName: "gayathri Boina",
975
+ email: "Piyush.Dwivedi@elliemae.com",
976
+ phone: "",
977
+ cellPhone: "",
978
+ fax: "",
979
+ userId: "gb01"
980
+ },
981
+ {
982
+ parent: null,
983
+ id: "gb11",
984
+ name: "gb b11 (gb11)",
985
+ lastName: "b11",
986
+ firstName: "gb",
987
+ fullName: "gb b11",
988
+ email: "Gayathri.Boina@EllieMae.com",
989
+ phone: "",
990
+ cellPhone: "",
991
+ fax: "",
992
+ userId: "gb11"
993
+ },
994
+ {
995
+ parent: null,
996
+ id: "globaladmin",
997
+ name: "global admin (globaladmin)",
998
+ lastName: "admin",
999
+ firstName: "global",
1000
+ fullName: "global admin",
1001
+ email: "shashikant.kasture@elliemae.com",
1002
+ phone: "666-666-6666 ",
1003
+ cellPhone: "",
1004
+ fax: "",
1005
+ userId: "globaladmin"
1006
+ },
1007
+ {
1008
+ parent: null,
1009
+ id: "ifbdashboard",
1010
+ name: "ifb cards (ifbdashboard)",
1011
+ lastName: "cards",
1012
+ firstName: "ifb",
1013
+ fullName: "ifb dashboard cards",
1014
+ email: "manju.pius@elliemae.com",
1015
+ phone: "",
1016
+ cellPhone: "",
1017
+ fax: "",
1018
+ userId: "ifbdashboard"
1019
+ },
1020
+ {
1021
+ parent: null,
1022
+ id: "kr01",
1023
+ name: "karthika ramasamy (kr01)",
1024
+ lastName: "ramasamy",
1025
+ firstName: "karthika",
1026
+ fullName: "karthika ramasamy",
1027
+ email: "karthika.ramasamy@elliemae.com",
1028
+ phone: "",
1029
+ cellPhone: "",
1030
+ fax: "",
1031
+ userId: "kr01"
1032
+ },
1033
+ {
1034
+ parent: null,
1035
+ id: "lpadia",
1036
+ name: "lopa padia (lpadia)",
1037
+ lastName: "padia",
1038
+ firstName: "lopa",
1039
+ fullName: "lopa padia",
1040
+ email: "lopa.padia@elliemae.com",
1041
+ phone: "",
1042
+ cellPhone: "",
1043
+ fax: "",
1044
+ userId: "lpadia"
1045
+ },
1046
+ {
1047
+ parent: null,
1048
+ id: "lpauser",
1049
+ name: "lpa user (lpauser)",
1050
+ lastName: "user",
1051
+ firstName: "lpa",
1052
+ fullName: "lpa user",
1053
+ email: "lpa@gmail.com",
1054
+ phone: "",
1055
+ cellPhone: "",
1056
+ fax: "",
1057
+ userId: "lpauser"
1058
+ },
1059
+ {
1060
+ parent: null,
1061
+ id: "msg",
1062
+ name: "mahesh G (msg)",
1063
+ lastName: "G",
1064
+ firstName: "mahesh",
1065
+ fullName: "mahesh G",
1066
+ email: "abc@gmail.com",
1067
+ phone: "",
1068
+ cellPhone: "",
1069
+ fax: "",
1070
+ userId: "msg"
1071
+ },
1072
+ {
1073
+ parent: null,
1074
+ id: "map",
1075
+ name: "map ifb C8 (map)",
1076
+ lastName: "ifb C8",
1077
+ firstName: "map",
1078
+ fullName: "map ifb C8",
1079
+ email: "manju.pius@elliemae.com",
1080
+ phone: "",
1081
+ cellPhone: "",
1082
+ fax: "",
1083
+ userId: "map"
1084
+ },
1085
+ {
1086
+ parent: null,
1087
+ id: "mk05",
1088
+ name: "mk 05 (mk05)",
1089
+ lastName: "05",
1090
+ firstName: "mk",
1091
+ fullName: "mk 05",
1092
+ email: "Gayathri.Boina@EllieMae.com",
1093
+ phone: "",
1094
+ cellPhone: "",
1095
+ fax: "",
1096
+ userId: "mk05"
1097
+ },
1098
+ {
1099
+ parent: null,
1100
+ id: "nb01",
1101
+ name: "n b (nb01)",
1102
+ lastName: "b",
1103
+ firstName: "n",
1104
+ fullName: "n b",
1105
+ email: "nisha.bundela@elliemae.com",
1106
+ phone: "",
1107
+ cellPhone: "",
1108
+ fax: "",
1109
+ userId: "nb01"
1110
+ },
1111
+ {
1112
+ parent: null,
1113
+ id: "gb15",
1114
+ name: "new user (gb15)",
1115
+ lastName: "user",
1116
+ firstName: "new ",
1117
+ fullName: "new user",
1118
+ email: "Gayathri.Boina@Eliemae.com",
1119
+ phone: "",
1120
+ cellPhone: "",
1121
+ fax: "",
1122
+ userId: "gb15"
1123
+ },
1124
+ {
1125
+ parent: null,
1126
+ id: "skasture",
1127
+ name: "shashik kasture (skasture)",
1128
+ lastName: "kasture",
1129
+ firstName: "shashik",
1130
+ fullName: "shashik kasture",
1131
+ email: "shashikant.kasture@elliemae.com",
1132
+ phone: "",
1133
+ cellPhone: "",
1134
+ fax: "",
1135
+ userId: "skasture"
1136
+ },
1137
+ {
1138
+ parent: null,
1139
+ id: "sk01",
1140
+ name: "sk01 superadmin (sk01)",
1141
+ lastName: "superadmin",
1142
+ firstName: "sk01",
1143
+ fullName: "sk01 superadmin",
1144
+ email: "sk@elliemae.com",
1145
+ phone: "",
1146
+ cellPhone: "",
1147
+ fax: "",
1148
+ userId: "sk01"
1149
+ },
1150
+ {
1151
+ parent: null,
1152
+ id: "superadmin",
1153
+ name: "super admin (superadmin)",
1154
+ lastName: "admin",
1155
+ firstName: "super",
1156
+ fullName: "super admin",
1157
+ email: "shashikant.kasture@elliemae.com",
1158
+ phone: "666-666-6666",
1159
+ cellPhone: "",
1160
+ fax: "",
1161
+ userId: "superadmin"
1162
+ },
1163
+ {
1164
+ parent: null,
1165
+ id: "swethalar",
1166
+ name: "swetha lar (swethalar)",
1167
+ lastName: "lar",
1168
+ firstName: "swetha",
1169
+ fullName: "swetha lar",
1170
+ email: "skantamaneni@elliemae.com",
1171
+ phone: "",
1172
+ cellPhone: "",
1173
+ fax: "",
1174
+ userId: "swethalar"
1175
+ },
1176
+ {
1177
+ parent: null,
1178
+ id: "swethalo",
1179
+ name: "swetha lo (swethalo)",
1180
+ lastName: "lo",
1181
+ firstName: "swetha",
1182
+ fullName: "swetha lo",
1183
+ email: "swetha.kantamaneni@elliemae.com",
1184
+ phone: "",
1185
+ cellPhone: "",
1186
+ fax: "",
1187
+ userId: "swethalo"
1188
+ },
1189
+ {
1190
+ parent: null,
1191
+ id: "swetha",
1192
+ name: "swetha loanofficer (swetha)",
1193
+ lastName: "loanofficer",
1194
+ firstName: "swetha",
1195
+ fullName: "swetha loanofficer",
1196
+ email: "skantamaneni@elliemae.com",
1197
+ phone: "",
1198
+ cellPhone: "",
1199
+ fax: "",
1200
+ userId: "swetha"
1201
+ },
1202
+ {
1203
+ parent: null,
1204
+ id: "venkat",
1205
+ name: "venkat matta (venkat)",
1206
+ lastName: "matta",
1207
+ firstName: "venkat",
1208
+ fullName: "venkat matta",
1209
+ email: "venkat.matta@elliemae.com",
1210
+ phone: "",
1211
+ cellPhone: "",
1212
+ fax: "",
1213
+ userId: "venkat"
1214
+ }
1215
+ ];
1216
+ const options2 = options.map((op, i) => i < 2 ? { ...op, parent: "admin" } : op);
1217
+ module.exports = __toCommonJS(utils_exports);
1218
+ //# sourceMappingURL=utils.js.map