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