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