@elliemae/ds-shuttle 3.0.0-next.1 → 3.0.0-next.13

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