@elliemae/ds-shuttle 1.55.0-next.7 → 2.0.0-alpha.10

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