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