@palladium-ethiopia/esm-admin-app 5.4.2-pre.100

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 (149) hide show
  1. package/.turbo/turbo-build.log +15 -0
  2. package/README.md +12 -0
  3. package/dist/117.js +1 -0
  4. package/dist/152.js +1 -0
  5. package/dist/152.js.map +1 -0
  6. package/dist/209.js +1 -0
  7. package/dist/209.js.map +1 -0
  8. package/dist/41.js +1 -0
  9. package/dist/41.js.map +1 -0
  10. package/dist/442.js +1 -0
  11. package/dist/442.js.map +1 -0
  12. package/dist/466.js +1 -0
  13. package/dist/466.js.map +1 -0
  14. package/dist/555.js +1 -0
  15. package/dist/555.js.map +1 -0
  16. package/dist/61.js +1 -0
  17. package/dist/61.js.map +1 -0
  18. package/dist/672.js +15 -0
  19. package/dist/672.js.map +1 -0
  20. package/dist/689.js +1 -0
  21. package/dist/689.js.map +1 -0
  22. package/dist/710.js +1 -0
  23. package/dist/710.js.map +1 -0
  24. package/dist/712.js +1 -0
  25. package/dist/712.js.map +1 -0
  26. package/dist/771.js +1 -0
  27. package/dist/771.js.map +1 -0
  28. package/dist/789.js +1 -0
  29. package/dist/789.js.map +1 -0
  30. package/dist/806.js +1 -0
  31. package/dist/826.js +1 -0
  32. package/dist/826.js.map +1 -0
  33. package/dist/914.js +27 -0
  34. package/dist/914.js.map +1 -0
  35. package/dist/926.js +17 -0
  36. package/dist/926.js.map +1 -0
  37. package/dist/ethiopia-esm-admin-app.js +6 -0
  38. package/dist/ethiopia-esm-admin-app.js.buildmanifest.json +556 -0
  39. package/dist/ethiopia-esm-admin-app.js.map +1 -0
  40. package/dist/main.js +32 -0
  41. package/dist/main.js.map +1 -0
  42. package/dist/routes.json +1 -0
  43. package/jest.config.js +8 -0
  44. package/package.json +52 -0
  45. package/rspack.config.js +1 -0
  46. package/src/components/confirm-modal/confirmation-operation-modal.component.tsx +43 -0
  47. package/src/components/confirm-modal/confirmation-operation.test.tsx +69 -0
  48. package/src/components/dashboard/dashboard.component.tsx +131 -0
  49. package/src/components/dashboard/dashboard.scss +38 -0
  50. package/src/components/dashboard/etl-dashboard.component.tsx +11 -0
  51. package/src/components/empty-state/empty-state-log.components.tsx +20 -0
  52. package/src/components/empty-state/empty-state-log.scss +28 -0
  53. package/src/components/empty-state/empty-state-log.test.tsx +24 -0
  54. package/src/components/facility-setup/card.component.tsx +16 -0
  55. package/src/components/facility-setup/facility-info.component.tsx +142 -0
  56. package/src/components/facility-setup/facility-info.scss +87 -0
  57. package/src/components/facility-setup/facility-setup.component.tsx +21 -0
  58. package/src/components/facility-setup/facility-setup.resource.tsx +7 -0
  59. package/src/components/facility-setup/facility-setup.scss +38 -0
  60. package/src/components/facility-setup/header/header.component.tsx +23 -0
  61. package/src/components/facility-setup/header/header.scss +19 -0
  62. package/src/components/header/header-illustration.component.tsx +13 -0
  63. package/src/components/header/header.component.tsx +28 -0
  64. package/src/components/header/header.scss +19 -0
  65. package/src/components/hook/healthWorkerAdapter.ts +213 -0
  66. package/src/components/hook/useFacilityInfo.tsx +37 -0
  67. package/src/components/hook/useSystemRoleSetting.tsx +33 -0
  68. package/src/components/locations/auto-suggest/autosuggest.component.tsx +149 -0
  69. package/src/components/locations/auto-suggest/autosuggest.scss +61 -0
  70. package/src/components/locations/auto-suggest/location-autosuggest.component.tsx +94 -0
  71. package/src/components/locations/auto-suggest/location-autosuggest.scss +48 -0
  72. package/src/components/locations/common/results-tile.component.tsx +45 -0
  73. package/src/components/locations/common/results-tile.scss +86 -0
  74. package/src/components/locations/forms/add-location/add-location.workspace.scss +34 -0
  75. package/src/components/locations/forms/add-location/add-location.workspace.tsx +200 -0
  76. package/src/components/locations/forms/search-location/search-location.workspace.scss +79 -0
  77. package/src/components/locations/forms/search-location/search-location.workspace.tsx +215 -0
  78. package/src/components/locations/header/header.component.tsx +48 -0
  79. package/src/components/locations/header/header.scss +58 -0
  80. package/src/components/locations/helpers/index.ts +16 -0
  81. package/src/components/locations/home/home-locations.component.tsx +18 -0
  82. package/src/components/locations/home/home-locations.scss +8 -0
  83. package/src/components/locations/hooks/UseFacilityLocations.ts +12 -0
  84. package/src/components/locations/hooks/useLocation.ts +18 -0
  85. package/src/components/locations/hooks/useLocationTags.ts +15 -0
  86. package/src/components/locations/tables/locations-table.component.tsx +243 -0
  87. package/src/components/locations/tables/locations-table.resource.ts +26 -0
  88. package/src/components/locations/tables/locations-table.scss +115 -0
  89. package/src/components/locations/types/index.ts +120 -0
  90. package/src/components/locations/utils/index.ts +5 -0
  91. package/src/components/logs-table/operation-log-resource.ts +41 -0
  92. package/src/components/logs-table/operation-log-table.component.tsx +120 -0
  93. package/src/components/logs-table/operation-log.scss +10 -0
  94. package/src/components/logs-table/operation-log.test.tsx +47 -0
  95. package/src/components/modal/hwr-confirmation.modal.scss +21 -0
  96. package/src/components/modal/hwr-confirmation.modal.tsx +170 -0
  97. package/src/components/modal/hwr-empty.modal.component.tsx +54 -0
  98. package/src/components/modal/hwr-sync.modal.scss +30 -0
  99. package/src/components/modal/hwr-sync.modal.tsx +209 -0
  100. package/src/components/modal/hwr-sync.resource.ts +23 -0
  101. package/src/components/provider-banner/provider-banner.component.tsx +106 -0
  102. package/src/components/provider-banner/provider-banner.module.scss +51 -0
  103. package/src/components/provider-banner/provider-banner.resource.ts +29 -0
  104. package/src/components/side-menu/left-panel.scss +42 -0
  105. package/src/components/side-menu/left-pannel.component.tsx +22 -0
  106. package/src/components/users/header/header.scss +90 -0
  107. package/src/components/users/header/user-management-header.component.tsx +42 -0
  108. package/src/components/users/manage-users/hooks/useProviderAttributeMapping.ts +110 -0
  109. package/src/components/users/manage-users/hooks/useUserFormSteps.ts +119 -0
  110. package/src/components/users/manage-users/hooks/useUserFormSubmission.ts +264 -0
  111. package/src/components/users/manage-users/hooks/useUserManagementForm.ts +122 -0
  112. package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-list/user-role-scope-list.component.tsx +177 -0
  113. package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/user-role-fields.scss +117 -0
  114. package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/user-role-scope-fields.component.tsx +290 -0
  115. package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/user-role-scope.workspace.tsx +316 -0
  116. package/src/components/users/manage-users/manage-user-role-scope/user-role-scope-workspace/userRoleScopeFormSchema.tsx +43 -0
  117. package/src/components/users/manage-users/manage-user.component.tsx +19 -0
  118. package/src/components/users/manage-users/manage-user.scss +31 -0
  119. package/src/components/users/manage-users/provider-autosuggest.component.tsx +117 -0
  120. package/src/components/users/manage-users/provider-search.resource.ts +34 -0
  121. package/src/components/users/manage-users/sections/demographic-section.component.tsx +156 -0
  122. package/src/components/users/manage-users/sections/login-section.component.tsx +88 -0
  123. package/src/components/users/manage-users/sections/provider-section.component.tsx +270 -0
  124. package/src/components/users/manage-users/sections/roles-section.component.tsx +88 -0
  125. package/src/components/users/manage-users/user-details/user-detail.scss +75 -0
  126. package/src/components/users/manage-users/user-details/user-details.component.tsx +182 -0
  127. package/src/components/users/manage-users/user-list/user-list.component.tsx +378 -0
  128. package/src/components/users/manage-users/user-list/user-list.resource.ts +30 -0
  129. package/src/components/users/manage-users/user-list/user-list.scss +37 -0
  130. package/src/components/users/manage-users/user-management.constants.ts +20 -0
  131. package/src/components/users/manage-users/user-management.utils.ts +100 -0
  132. package/src/components/users/manage-users/user-management.workspace.scss +172 -0
  133. package/src/components/users/manage-users/user-management.workspace.tsx +334 -0
  134. package/src/components/users/userManagementFormSchema.tsx +179 -0
  135. package/src/config-schema.ts +142 -0
  136. package/src/constants.ts +50 -0
  137. package/src/declarations.d.ts +2 -0
  138. package/src/index.ts +55 -0
  139. package/src/left-pannel-link.component.tsx +40 -0
  140. package/src/root.component.tsx +39 -0
  141. package/src/root.scss +12 -0
  142. package/src/routes.json +100 -0
  143. package/src/setup-tests.ts +1 -0
  144. package/src/types/index.ts +385 -0
  145. package/src/user-management.resources.ts +232 -0
  146. package/src/utils/utils.ts +20 -0
  147. package/translations/am.json +159 -0
  148. package/translations/en.json +159 -0
  149. package/tsconfig.json +5 -0
@@ -0,0 +1,556 @@
1
+ {
2
+ "chunks": [
3
+ {
4
+ "type": "chunk",
5
+ "rendered": true,
6
+ "initial": false,
7
+ "entry": false,
8
+ "size": 5862,
9
+ "sizes": {
10
+ "javascript": 5862
11
+ },
12
+ "names": [],
13
+ "idHints": [],
14
+ "runtime": [
15
+ "@palladium-ethiopia/esm-admin-app",
16
+ "main"
17
+ ],
18
+ "files": [
19
+ "117.js"
20
+ ],
21
+ "auxiliaryFiles": [],
22
+ "hash": "050fc9a7e084b679",
23
+ "childrenByOrder": {}
24
+ },
25
+ {
26
+ "type": "chunk",
27
+ "rendered": true,
28
+ "initial": false,
29
+ "entry": false,
30
+ "size": 14472,
31
+ "sizes": {
32
+ "javascript": 14472
33
+ },
34
+ "names": [],
35
+ "idHints": [],
36
+ "runtime": [
37
+ "@palladium-ethiopia/esm-admin-app",
38
+ "main"
39
+ ],
40
+ "files": [
41
+ "152.js"
42
+ ],
43
+ "auxiliaryFiles": [
44
+ "152.js.map"
45
+ ],
46
+ "hash": "545ea2c1c2833ab4",
47
+ "childrenByOrder": {}
48
+ },
49
+ {
50
+ "type": "chunk",
51
+ "rendered": true,
52
+ "initial": false,
53
+ "entry": false,
54
+ "reason": "split chunk (cache group: defaultVendors)",
55
+ "size": 61603,
56
+ "sizes": {
57
+ "javascript": 61603
58
+ },
59
+ "names": [],
60
+ "idHints": [
61
+ "vendors"
62
+ ],
63
+ "runtime": [
64
+ "@palladium-ethiopia/esm-admin-app",
65
+ "main"
66
+ ],
67
+ "files": [
68
+ "209.js"
69
+ ],
70
+ "auxiliaryFiles": [
71
+ "209.js.map"
72
+ ],
73
+ "hash": "f6520b468a2a8d70",
74
+ "childrenByOrder": {}
75
+ },
76
+ {
77
+ "type": "chunk",
78
+ "rendered": true,
79
+ "initial": true,
80
+ "entry": true,
81
+ "size": 215475,
82
+ "sizes": {
83
+ "expose": 42,
84
+ "javascript": 215139,
85
+ "runtime": 14796,
86
+ "share-init": 294
87
+ },
88
+ "names": [
89
+ "@palladium-ethiopia/esm-admin-app"
90
+ ],
91
+ "idHints": [],
92
+ "runtime": [
93
+ "@palladium-ethiopia/esm-admin-app"
94
+ ],
95
+ "files": [
96
+ "ethiopia-esm-admin-app.js"
97
+ ],
98
+ "auxiliaryFiles": [
99
+ "ethiopia-esm-admin-app.js.map"
100
+ ],
101
+ "hash": "820959a7c67699f9",
102
+ "childrenByOrder": {}
103
+ },
104
+ {
105
+ "type": "chunk",
106
+ "rendered": true,
107
+ "initial": false,
108
+ "entry": false,
109
+ "reason": "split chunk (cache group: defaultVendors)",
110
+ "size": 432498,
111
+ "sizes": {
112
+ "javascript": 432498
113
+ },
114
+ "names": [],
115
+ "idHints": [
116
+ "vendors"
117
+ ],
118
+ "runtime": [
119
+ "@palladium-ethiopia/esm-admin-app",
120
+ "main"
121
+ ],
122
+ "files": [
123
+ "41.js"
124
+ ],
125
+ "auxiliaryFiles": [
126
+ "41.js.map"
127
+ ],
128
+ "hash": "4172ab7fc91d0fbf",
129
+ "childrenByOrder": {}
130
+ },
131
+ {
132
+ "type": "chunk",
133
+ "rendered": true,
134
+ "initial": false,
135
+ "entry": false,
136
+ "size": 504,
137
+ "sizes": {
138
+ "javascript": 504
139
+ },
140
+ "names": [],
141
+ "idHints": [],
142
+ "runtime": [
143
+ "@palladium-ethiopia/esm-admin-app",
144
+ "main"
145
+ ],
146
+ "files": [
147
+ "442.js"
148
+ ],
149
+ "auxiliaryFiles": [
150
+ "442.js.map"
151
+ ],
152
+ "hash": "6e2f2fe7ba53e86f",
153
+ "childrenByOrder": {}
154
+ },
155
+ {
156
+ "type": "chunk",
157
+ "rendered": true,
158
+ "initial": false,
159
+ "entry": false,
160
+ "size": 7120,
161
+ "sizes": {
162
+ "javascript": 7120
163
+ },
164
+ "names": [],
165
+ "idHints": [],
166
+ "runtime": [
167
+ "@palladium-ethiopia/esm-admin-app",
168
+ "main"
169
+ ],
170
+ "files": [
171
+ "466.js"
172
+ ],
173
+ "auxiliaryFiles": [
174
+ "466.js.map"
175
+ ],
176
+ "hash": "a5f6e823f429d594",
177
+ "childrenByOrder": {}
178
+ },
179
+ {
180
+ "type": "chunk",
181
+ "rendered": true,
182
+ "initial": false,
183
+ "entry": false,
184
+ "size": 1191585,
185
+ "sizes": {
186
+ "javascript": 1191585
187
+ },
188
+ "names": [],
189
+ "idHints": [],
190
+ "runtime": [
191
+ "@palladium-ethiopia/esm-admin-app"
192
+ ],
193
+ "files": [
194
+ "555.js"
195
+ ],
196
+ "auxiliaryFiles": [
197
+ "555.js.map"
198
+ ],
199
+ "hash": "f30baeed48ea2974",
200
+ "childrenByOrder": {}
201
+ },
202
+ {
203
+ "type": "chunk",
204
+ "rendered": true,
205
+ "initial": false,
206
+ "entry": false,
207
+ "size": 504,
208
+ "sizes": {
209
+ "javascript": 504
210
+ },
211
+ "names": [],
212
+ "idHints": [],
213
+ "runtime": [
214
+ "@palladium-ethiopia/esm-admin-app",
215
+ "main"
216
+ ],
217
+ "files": [
218
+ "61.js"
219
+ ],
220
+ "auxiliaryFiles": [
221
+ "61.js.map"
222
+ ],
223
+ "hash": "50bd12cea92125e4",
224
+ "childrenByOrder": {}
225
+ },
226
+ {
227
+ "type": "chunk",
228
+ "rendered": false,
229
+ "initial": false,
230
+ "entry": false,
231
+ "size": 42,
232
+ "sizes": {
233
+ "consume-shared": 42
234
+ },
235
+ "names": [],
236
+ "idHints": [
237
+ ""
238
+ ],
239
+ "runtime": [
240
+ "@palladium-ethiopia/esm-admin-app",
241
+ "main"
242
+ ],
243
+ "files": [],
244
+ "auxiliaryFiles": [],
245
+ "hash": "9a1695becd8a706b",
246
+ "childrenByOrder": {}
247
+ },
248
+ {
249
+ "type": "chunk",
250
+ "rendered": true,
251
+ "initial": false,
252
+ "entry": false,
253
+ "size": 2959518,
254
+ "sizes": {
255
+ "javascript": 2959518
256
+ },
257
+ "names": [],
258
+ "idHints": [
259
+ "vendors"
260
+ ],
261
+ "runtime": [
262
+ "@palladium-ethiopia/esm-admin-app",
263
+ "main"
264
+ ],
265
+ "files": [
266
+ "672.js"
267
+ ],
268
+ "auxiliaryFiles": [
269
+ "672.js.map"
270
+ ],
271
+ "hash": "d460f8b9747bb8ce",
272
+ "childrenByOrder": {}
273
+ },
274
+ {
275
+ "type": "chunk",
276
+ "rendered": false,
277
+ "initial": false,
278
+ "entry": false,
279
+ "size": 252,
280
+ "sizes": {
281
+ "consume-shared": 252
282
+ },
283
+ "names": [],
284
+ "idHints": [
285
+ ""
286
+ ],
287
+ "runtime": [
288
+ "@palladium-ethiopia/esm-admin-app",
289
+ "main"
290
+ ],
291
+ "files": [],
292
+ "auxiliaryFiles": [],
293
+ "hash": "466ffb9135cf82ec",
294
+ "childrenByOrder": {}
295
+ },
296
+ {
297
+ "type": "chunk",
298
+ "rendered": true,
299
+ "initial": false,
300
+ "entry": false,
301
+ "reason": "split chunk (cache group: defaultVendors)",
302
+ "size": 137481,
303
+ "sizes": {
304
+ "javascript": 137481
305
+ },
306
+ "names": [],
307
+ "idHints": [
308
+ "vendors"
309
+ ],
310
+ "runtime": [
311
+ "@palladium-ethiopia/esm-admin-app",
312
+ "main"
313
+ ],
314
+ "files": [
315
+ "689.js"
316
+ ],
317
+ "auxiliaryFiles": [
318
+ "689.js.map"
319
+ ],
320
+ "hash": "cf033ec186228b9b",
321
+ "childrenByOrder": {}
322
+ },
323
+ {
324
+ "type": "chunk",
325
+ "rendered": true,
326
+ "initial": false,
327
+ "entry": false,
328
+ "reason": "split chunk (cache group: defaultVendors)",
329
+ "size": 1683229,
330
+ "sizes": {
331
+ "javascript": 1683229
332
+ },
333
+ "names": [],
334
+ "idHints": [
335
+ "vendors"
336
+ ],
337
+ "runtime": [
338
+ "@palladium-ethiopia/esm-admin-app"
339
+ ],
340
+ "files": [
341
+ "710.js"
342
+ ],
343
+ "auxiliaryFiles": [
344
+ "710.js.map"
345
+ ],
346
+ "hash": "95697deaa208bb91",
347
+ "childrenByOrder": {}
348
+ },
349
+ {
350
+ "type": "chunk",
351
+ "rendered": true,
352
+ "initial": false,
353
+ "entry": false,
354
+ "size": 315411,
355
+ "sizes": {
356
+ "javascript": 315411
357
+ },
358
+ "names": [],
359
+ "idHints": [
360
+ "vendors"
361
+ ],
362
+ "runtime": [
363
+ "@palladium-ethiopia/esm-admin-app",
364
+ "main"
365
+ ],
366
+ "files": [
367
+ "712.js"
368
+ ],
369
+ "auxiliaryFiles": [
370
+ "712.js.map"
371
+ ],
372
+ "hash": "55fb33d4c1245b82",
373
+ "childrenByOrder": {}
374
+ },
375
+ {
376
+ "type": "chunk",
377
+ "rendered": true,
378
+ "initial": false,
379
+ "entry": false,
380
+ "size": 14472,
381
+ "sizes": {
382
+ "javascript": 14472
383
+ },
384
+ "names": [],
385
+ "idHints": [],
386
+ "runtime": [
387
+ "@palladium-ethiopia/esm-admin-app",
388
+ "main"
389
+ ],
390
+ "files": [
391
+ "771.js"
392
+ ],
393
+ "auxiliaryFiles": [
394
+ "771.js.map"
395
+ ],
396
+ "hash": "6893f3cadf8442b7",
397
+ "childrenByOrder": {}
398
+ },
399
+ {
400
+ "type": "chunk",
401
+ "rendered": true,
402
+ "initial": false,
403
+ "entry": false,
404
+ "size": 29620,
405
+ "sizes": {
406
+ "javascript": 29620
407
+ },
408
+ "names": [],
409
+ "idHints": [
410
+ "vendors"
411
+ ],
412
+ "runtime": [
413
+ "@palladium-ethiopia/esm-admin-app",
414
+ "main"
415
+ ],
416
+ "files": [
417
+ "789.js"
418
+ ],
419
+ "auxiliaryFiles": [
420
+ "789.js.map"
421
+ ],
422
+ "hash": "5ddc8cadff7e74bd",
423
+ "childrenByOrder": {}
424
+ },
425
+ {
426
+ "type": "chunk",
427
+ "rendered": true,
428
+ "initial": false,
429
+ "entry": false,
430
+ "size": 7878,
431
+ "sizes": {
432
+ "javascript": 7878
433
+ },
434
+ "names": [],
435
+ "idHints": [],
436
+ "runtime": [
437
+ "@palladium-ethiopia/esm-admin-app",
438
+ "main"
439
+ ],
440
+ "files": [
441
+ "806.js"
442
+ ],
443
+ "auxiliaryFiles": [],
444
+ "hash": "cc21b93a8fce4e2b",
445
+ "childrenByOrder": {}
446
+ },
447
+ {
448
+ "type": "chunk",
449
+ "rendered": true,
450
+ "initial": false,
451
+ "entry": false,
452
+ "reason": "split chunk (cache group: defaultVendors)",
453
+ "size": 925254,
454
+ "sizes": {
455
+ "javascript": 925254
456
+ },
457
+ "names": [],
458
+ "idHints": [
459
+ "vendors"
460
+ ],
461
+ "runtime": [
462
+ "@palladium-ethiopia/esm-admin-app",
463
+ "main"
464
+ ],
465
+ "files": [
466
+ "826.js"
467
+ ],
468
+ "auxiliaryFiles": [
469
+ "826.js.map"
470
+ ],
471
+ "hash": "49e451a8adb0f344",
472
+ "childrenByOrder": {}
473
+ },
474
+ {
475
+ "type": "chunk",
476
+ "rendered": true,
477
+ "initial": true,
478
+ "entry": true,
479
+ "size": 9095580,
480
+ "sizes": {
481
+ "consume-shared": 294,
482
+ "javascript": 9094992,
483
+ "runtime": 14152,
484
+ "share-init": 294
485
+ },
486
+ "names": [
487
+ "main"
488
+ ],
489
+ "idHints": [],
490
+ "runtime": [
491
+ "main"
492
+ ],
493
+ "files": [
494
+ "main.js"
495
+ ],
496
+ "auxiliaryFiles": [
497
+ "main.js.map"
498
+ ],
499
+ "hash": "ec50262e35b17185",
500
+ "childrenByOrder": {}
501
+ },
502
+ {
503
+ "type": "chunk",
504
+ "rendered": true,
505
+ "initial": false,
506
+ "entry": false,
507
+ "reason": "split chunk (cache group: defaultVendors)",
508
+ "size": 4448245,
509
+ "sizes": {
510
+ "javascript": 4448245
511
+ },
512
+ "names": [],
513
+ "idHints": [
514
+ "vendors"
515
+ ],
516
+ "runtime": [
517
+ "@palladium-ethiopia/esm-admin-app",
518
+ "main"
519
+ ],
520
+ "files": [
521
+ "914.js"
522
+ ],
523
+ "auxiliaryFiles": [
524
+ "914.js.map"
525
+ ],
526
+ "hash": "981273f160b359e5",
527
+ "childrenByOrder": {}
528
+ },
529
+ {
530
+ "type": "chunk",
531
+ "rendered": true,
532
+ "initial": false,
533
+ "entry": false,
534
+ "size": 87149,
535
+ "sizes": {
536
+ "javascript": 87149
537
+ },
538
+ "names": [],
539
+ "idHints": [
540
+ "vendors"
541
+ ],
542
+ "runtime": [
543
+ "@palladium-ethiopia/esm-admin-app",
544
+ "main"
545
+ ],
546
+ "files": [
547
+ "926.js"
548
+ ],
549
+ "auxiliaryFiles": [
550
+ "926.js.map"
551
+ ],
552
+ "hash": "83a0ea1622eb834f",
553
+ "childrenByOrder": {}
554
+ }
555
+ ]
556
+ }