@elliemae/ds-shuttle 3.0.0-next.2 → 3.0.0-next.3

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