@elliemae/ds-shuttle 2.2.0-alpha.4 → 3.0.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. package/cjs/AnimationState.js +19 -46
  2. package/cjs/DSShuttle.js +219 -166
  3. package/cjs/SearchState.js +25 -44
  4. package/cjs/Shuttle.actions.js +98 -87
  5. package/cjs/ShuttleContainer.js +61 -56
  6. package/cjs/ShuttleImpl.js +206 -109
  7. package/cjs/ShuttleRenderer.js +135 -140
  8. package/cjs/ShuttleState.js +53 -57
  9. package/cjs/animation/animationConfig.js +56 -53
  10. package/cjs/classedComponents.js +69 -70
  11. package/cjs/components/LoadingIndicator.js +22 -49
  12. package/cjs/components/OverflowList.js +48 -50
  13. package/cjs/components/ShuttleBreadcrumb.js +40 -52
  14. package/cjs/components/ShuttleInfiniteScrollIndicator.js +37 -46
  15. package/cjs/components/ShuttleListItem/ActionButtons.js +51 -56
  16. package/cjs/components/ShuttleListItem/ShuttleListItem.js +80 -78
  17. package/cjs/components/ShuttleListItem/ShuttleSourceListItem.js +64 -78
  18. package/cjs/components/ShuttleListItem/ShuttleTargetListItem.js +56 -72
  19. package/cjs/components/ShuttleListPanel.js +26 -44
  20. package/cjs/components/ShuttleSearchBox.js +72 -61
  21. package/cjs/components/ShuttleSource.js +146 -150
  22. package/cjs/components/ShuttleTarget.js +100 -88
  23. package/cjs/components/VirtualizedItem.js +40 -45
  24. package/cjs/components/VirtualizedList.js +86 -81
  25. package/cjs/components/VirtualizedSortableList.js +40 -47
  26. package/cjs/helper.js +103 -69
  27. package/cjs/index.js +12 -38
  28. package/cjs/updateShuttleStateFromProps.js +69 -73
  29. package/cjs/utils.js +42 -40
  30. package/cjs/withProviders.js +27 -43
  31. package/esm/AnimationState.js +8 -12
  32. package/esm/DSShuttle.js +198 -126
  33. package/esm/SearchState.js +19 -15
  34. package/esm/Shuttle.actions.js +80 -63
  35. package/esm/ShuttleContainer.js +50 -34
  36. package/esm/ShuttleImpl.js +183 -78
  37. package/esm/ShuttleRenderer.js +128 -111
  38. package/esm/ShuttleState.js +53 -34
  39. package/esm/animation/animationConfig.js +52 -24
  40. package/esm/classedComponents.js +51 -43
  41. package/esm/components/LoadingIndicator.js +15 -20
  42. package/esm/components/OverflowList.js +41 -21
  43. package/esm/components/ShuttleBreadcrumb.js +33 -23
  44. package/esm/components/ShuttleInfiniteScrollIndicator.js +31 -18
  45. package/esm/components/ShuttleListItem/ActionButtons.js +39 -27
  46. package/esm/components/ShuttleListItem/ShuttleListItem.js +72 -50
  47. package/esm/components/ShuttleListItem/ShuttleSourceListItem.js +52 -45
  48. package/esm/components/ShuttleListItem/ShuttleTargetListItem.js +47 -42
  49. package/esm/components/ShuttleListPanel.js +19 -15
  50. package/esm/components/ShuttleSearchBox.js +66 -32
  51. package/esm/components/ShuttleSource.js +129 -125
  52. package/esm/components/ShuttleTarget.js +89 -68
  53. package/esm/components/VirtualizedItem.js +33 -15
  54. package/esm/components/VirtualizedList.js +75 -50
  55. package/esm/components/VirtualizedSortableList.js +32 -17
  56. package/esm/helper.js +67 -43
  57. package/esm/index.js +2 -9
  58. package/esm/updateShuttleStateFromProps.js +58 -39
  59. package/esm/utils.js +18 -12
  60. package/esm/withProviders.js +20 -14
  61. package/package.json +11 -11
  62. package/types/AnimationState.d.ts +2 -3
  63. package/types/DSShuttle.d.ts +1 -1
  64. package/types/SearchState.d.ts +2 -3
  65. package/types/ShuttleImpl.d.ts +2 -3
  66. package/types/ShuttleRenderer.d.ts +0 -1
  67. package/types/ShuttleState.d.ts +2 -3
  68. package/types/components/LoadingIndicator.d.ts +0 -1
  69. package/types/components/OverflowList.d.ts +0 -1
  70. package/types/components/ShuttleBreadcrumb.d.ts +0 -1
  71. package/types/components/ShuttleInfiniteScrollIndicator.d.ts +0 -1
  72. package/types/components/ShuttleListItem/ShuttleListItem.d.ts +0 -1
  73. package/types/components/ShuttleListItem/ShuttleSourceListItem.d.ts +0 -1
  74. package/types/components/ShuttleListItem/ShuttleTargetListItem.d.ts +0 -1
  75. package/types/components/ShuttleListPanel.d.ts +0 -1
  76. package/types/components/ShuttleSearchBox.d.ts +1 -3
  77. package/types/components/ShuttleSource.d.ts +0 -1
  78. package/types/components/ShuttleTarget.d.ts +0 -1
  79. package/types/components/VirtualizedItem.d.ts +0 -1
  80. package/types/components/VirtualizedList.d.ts +0 -1
  81. package/types/components/VirtualizedSortableList.d.ts +0 -1
  82. package/types/index.d.ts +1 -1
  83. package/types/updateShuttleStateFromProps.d.ts +1 -3
  84. package/types/withProviders.d.ts +0 -1
  85. package/cjs/AnimationState.js.map +0 -7
  86. package/cjs/DSShuttle.js.map +0 -7
  87. package/cjs/SearchState.js.map +0 -7
  88. package/cjs/Shuttle.actions.js.map +0 -7
  89. package/cjs/ShuttleContainer.js.map +0 -7
  90. package/cjs/ShuttleImpl.js.map +0 -7
  91. package/cjs/ShuttleRenderer.js.map +0 -7
  92. package/cjs/ShuttleState.js.map +0 -7
  93. package/cjs/animation/animationConfig.js.map +0 -7
  94. package/cjs/classedComponents.js.map +0 -7
  95. package/cjs/components/LoadingIndicator.js.map +0 -7
  96. package/cjs/components/OverflowList.js.map +0 -7
  97. package/cjs/components/ShuttleBreadcrumb.js.map +0 -7
  98. package/cjs/components/ShuttleInfiniteScrollIndicator.js.map +0 -7
  99. package/cjs/components/ShuttleListItem/ActionButtons.js.map +0 -7
  100. package/cjs/components/ShuttleListItem/ShuttleListItem.js.map +0 -7
  101. package/cjs/components/ShuttleListItem/ShuttleSourceListItem.js.map +0 -7
  102. package/cjs/components/ShuttleListItem/ShuttleTargetListItem.js.map +0 -7
  103. package/cjs/components/ShuttleListPanel.js.map +0 -7
  104. package/cjs/components/ShuttleSearchBox.js.map +0 -7
  105. package/cjs/components/ShuttleSource.js.map +0 -7
  106. package/cjs/components/ShuttleTarget.js.map +0 -7
  107. package/cjs/components/VirtualizedItem.js.map +0 -7
  108. package/cjs/components/VirtualizedList.js.map +0 -7
  109. package/cjs/components/VirtualizedSortableList.js.map +0 -7
  110. package/cjs/helper.js.map +0 -7
  111. package/cjs/index.js.map +0 -7
  112. package/cjs/tests/utils.js +0 -1218
  113. package/cjs/tests/utils.js.map +0 -7
  114. package/cjs/updateShuttleStateFromProps.js.map +0 -7
  115. package/cjs/utils.js.map +0 -7
  116. package/cjs/withProviders.js.map +0 -7
  117. package/esm/AnimationState.js.map +0 -7
  118. package/esm/DSShuttle.js.map +0 -7
  119. package/esm/SearchState.js.map +0 -7
  120. package/esm/Shuttle.actions.js.map +0 -7
  121. package/esm/ShuttleContainer.js.map +0 -7
  122. package/esm/ShuttleImpl.js.map +0 -7
  123. package/esm/ShuttleRenderer.js.map +0 -7
  124. package/esm/ShuttleState.js.map +0 -7
  125. package/esm/animation/animationConfig.js.map +0 -7
  126. package/esm/classedComponents.js.map +0 -7
  127. package/esm/components/LoadingIndicator.js.map +0 -7
  128. package/esm/components/OverflowList.js.map +0 -7
  129. package/esm/components/ShuttleBreadcrumb.js.map +0 -7
  130. package/esm/components/ShuttleInfiniteScrollIndicator.js.map +0 -7
  131. package/esm/components/ShuttleListItem/ActionButtons.js.map +0 -7
  132. package/esm/components/ShuttleListItem/ShuttleListItem.js.map +0 -7
  133. package/esm/components/ShuttleListItem/ShuttleSourceListItem.js.map +0 -7
  134. package/esm/components/ShuttleListItem/ShuttleTargetListItem.js.map +0 -7
  135. package/esm/components/ShuttleListPanel.js.map +0 -7
  136. package/esm/components/ShuttleSearchBox.js.map +0 -7
  137. package/esm/components/ShuttleSource.js.map +0 -7
  138. package/esm/components/ShuttleTarget.js.map +0 -7
  139. package/esm/components/VirtualizedItem.js.map +0 -7
  140. package/esm/components/VirtualizedList.js.map +0 -7
  141. package/esm/components/VirtualizedSortableList.js.map +0 -7
  142. package/esm/helper.js.map +0 -7
  143. package/esm/index.js.map +0 -7
  144. package/esm/tests/utils.js +0 -1189
  145. package/esm/tests/utils.js.map +0 -7
  146. package/esm/updateShuttleStateFromProps.js.map +0 -7
  147. package/esm/utils.js.map +0 -7
  148. package/esm/withProviders.js.map +0 -7
@@ -1,1189 +0,0 @@
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