@kenyaemr/esm-patient-registration-app 8.1.1-pre.129 → 8.1.2-pre.152

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 (124) hide show
  1. package/.turbo/turbo-build.log +21 -23
  2. package/dist/108.js +1 -1
  3. package/dist/130.js +1 -1
  4. package/dist/130.js.map +1 -1
  5. package/dist/173.js +2 -0
  6. package/dist/{895.js.LICENSE.txt → 173.js.LICENSE.txt} +25 -0
  7. package/dist/173.js.map +1 -0
  8. package/dist/236.js +1 -0
  9. package/dist/240.js +1 -0
  10. package/dist/261.js +1 -0
  11. package/dist/271.js +1 -1
  12. package/dist/272.js +1 -0
  13. package/dist/319.js +1 -1
  14. package/dist/336.js +1 -0
  15. package/dist/371.js +1 -0
  16. package/dist/371.js.map +1 -0
  17. package/dist/378.js +1 -0
  18. package/dist/460.js +1 -1
  19. package/dist/501.js +1 -1
  20. package/dist/501.js.map +1 -1
  21. package/dist/539.js +1 -0
  22. package/dist/566.js +1 -0
  23. package/dist/574.js +1 -1
  24. package/dist/623.js +1 -0
  25. package/dist/623.js.map +1 -0
  26. package/dist/644.js +1 -1
  27. package/dist/652.js +1 -0
  28. package/dist/657.js +1 -0
  29. package/dist/657.js.map +1 -0
  30. package/dist/673.js +1 -0
  31. package/dist/705.js +1 -0
  32. package/dist/711.js +1 -0
  33. package/dist/727.js +1 -0
  34. package/dist/737.js +1 -0
  35. package/dist/744.js +1 -0
  36. package/dist/757.js +1 -1
  37. package/dist/759.js +1 -0
  38. package/dist/759.js.map +1 -0
  39. package/dist/76.js +1 -1
  40. package/dist/788.js +1 -1
  41. package/dist/807.js +1 -1
  42. package/dist/833.js +1 -1
  43. package/dist/899.js +1 -0
  44. package/dist/kenyaemr-esm-patient-registration-app.js +1 -1
  45. package/dist/kenyaemr-esm-patient-registration-app.js.buildmanifest.json +445 -93
  46. package/dist/kenyaemr-esm-patient-registration-app.js.map +1 -1
  47. package/dist/main.js +1 -1
  48. package/dist/main.js.LICENSE.txt +25 -0
  49. package/dist/main.js.map +1 -1
  50. package/dist/routes.json +1 -1
  51. package/package-lock.json +2052 -1699
  52. package/package.json +4 -4
  53. package/src/client-registry/hie-client-registry/dependants/dependants.component.tsx +46 -0
  54. package/src/client-registry/hie-client-registry/hie-client-registry.component.tsx +38 -8
  55. package/src/client-registry/hie-client-registry/hie-resource.ts +126 -21
  56. package/src/client-registry/hie-client-registry/hie-types.ts +102 -0
  57. package/src/client-registry/hie-client-registry/modal/confirm-hie.modal.tsx +78 -62
  58. package/src/client-registry/hie-client-registry/modal/confirm-hie.scss +55 -3
  59. package/src/client-registry/hie-client-registry/modal/hie-otp-verification-form.component.tsx +88 -0
  60. package/src/client-registry/hie-client-registry/modal/hie-patient-detail-preview.component.tsx +77 -0
  61. package/src/client-registry/hie-client-registry/patient-info/patient-info.component.tsx +17 -0
  62. package/src/config-schema.ts +30 -2
  63. package/src/patient-registration/field/address/address-search.component.tsx +5 -2
  64. package/src/patient-registration/field/date-and-time-of-death/date-and-time-of-death.component.tsx +1 -1
  65. package/src/patient-registration/field/dob/dob.component.tsx +1 -1
  66. package/src/patient-registration/field/gender/gender-field.component.tsx +6 -2
  67. package/src/patient-registration/field/id/identifier-selection-overlay.component.tsx +3 -3
  68. package/src/patient-registration/field/name/name-field.component.tsx +2 -2
  69. package/src/patient-registration/field/obs/obs-field.component.tsx +9 -5
  70. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +3 -3
  71. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.test.tsx +22 -11
  72. package/src/patient-registration/field/person-attributes/location-person-attribute-field.component.tsx +1 -1
  73. package/src/patient-registration/field/person-attributes/person-attribute-field.test.tsx +12 -4
  74. package/src/patient-registration/form-manager.test.ts +4 -1
  75. package/src/patient-registration/form-manager.ts +0 -1
  76. package/src/patient-registration/input/custom-input/autosuggest/autosuggest.test.tsx +52 -62
  77. package/src/patient-registration/mpi/mpi-patient.resource.ts +21 -0
  78. package/src/patient-registration/patient-registration-hooks.ts +90 -25
  79. package/src/patient-registration/patient-registration-utils.test.ts +33 -0
  80. package/src/patient-registration/patient-registration-utils.ts +63 -13
  81. package/src/patient-registration/patient-registration.component.tsx +17 -2
  82. package/src/patient-registration/patient-registration.test.tsx +442 -56
  83. package/src/patient-registration/section/demographics/demographics-section.component.tsx +3 -3
  84. package/src/patient-registration/section/patient-relationships/relationships-section.component.tsx +1 -1
  85. package/src/patient-registration/section/patient-relationships/relationships.resource.tsx +28 -28
  86. package/src/widgets/cancel-patient-edit.modal.tsx +2 -0
  87. package/src/widgets/cancel-patient-edit.scss +29 -0
  88. package/src/widgets/delete-identifier-confirmation.modal.tsx +2 -0
  89. package/src/widgets/delete-identifier-confirmation.scss +29 -0
  90. package/translations/am.json +1 -0
  91. package/translations/ar.json +6 -4
  92. package/translations/de.json +118 -0
  93. package/translations/en.json +17 -0
  94. package/translations/es.json +2 -0
  95. package/translations/fr.json +1 -0
  96. package/translations/he.json +1 -0
  97. package/translations/hi.json +118 -0
  98. package/translations/hi_IN.json +118 -0
  99. package/translations/id.json +118 -0
  100. package/translations/it.json +118 -0
  101. package/translations/km.json +1 -0
  102. package/translations/ne.json +118 -0
  103. package/translations/pt.json +118 -0
  104. package/translations/pt_BR.json +118 -0
  105. package/translations/qu.json +118 -0
  106. package/translations/si.json +118 -0
  107. package/translations/sw.json +118 -0
  108. package/translations/sw_KE.json +118 -0
  109. package/translations/tr.json +118 -0
  110. package/translations/tr_TR.json +118 -0
  111. package/translations/uk.json +118 -0
  112. package/translations/vi.json +118 -0
  113. package/translations/zh.json +3 -1
  114. package/translations/zh_CN.json +2 -0
  115. package/dist/250.js +0 -1
  116. package/dist/250.js.map +0 -1
  117. package/dist/66.js +0 -1
  118. package/dist/66.js.map +0 -1
  119. package/dist/662.js +0 -1
  120. package/dist/662.js.map +0 -1
  121. package/dist/753.js +0 -1
  122. package/dist/753.js.map +0 -1
  123. package/dist/895.js +0 -2
  124. package/dist/895.js.map +0 -1
@@ -24,30 +24,6 @@
24
24
  "hash": "4c73ccaaa33ade5f",
25
25
  "childrenByOrder": {}
26
26
  },
27
- {
28
- "rendered": true,
29
- "initial": false,
30
- "entry": false,
31
- "recorded": false,
32
- "size": 931622,
33
- "sizes": {
34
- "javascript": 931412,
35
- "consume-shared": 210
36
- },
37
- "names": [],
38
- "idHints": [],
39
- "runtime": [
40
- "@kenyaemr/esm-patient-registration-app"
41
- ],
42
- "files": [
43
- "66.js"
44
- ],
45
- "auxiliaryFiles": [
46
- "66.js.map"
47
- ],
48
- "hash": "3aa629809f8403d4",
49
- "childrenByOrder": {}
50
- },
51
27
  {
52
28
  "rendered": true,
53
29
  "initial": false,
@@ -69,7 +45,7 @@
69
45
  "auxiliaryFiles": [
70
46
  "76.js.map"
71
47
  ],
72
- "hash": "d6412af29b8217a7",
48
+ "hash": "13d97cd1ddd9cc4e",
73
49
  "childrenByOrder": {}
74
50
  },
75
51
  {
@@ -93,7 +69,7 @@
93
69
  "auxiliaryFiles": [
94
70
  "108.js.map"
95
71
  ],
96
- "hash": "32d172ea5795aef0",
72
+ "hash": "d357b3901b6aa633",
97
73
  "childrenByOrder": {}
98
74
  },
99
75
  {
@@ -102,9 +78,9 @@
102
78
  "entry": false,
103
79
  "recorded": false,
104
80
  "reason": "reused as split chunk (cache group: defaultVendors)",
105
- "size": 4879750,
81
+ "size": 4892462,
106
82
  "sizes": {
107
- "javascript": 4879750
83
+ "javascript": 4892462
108
84
  },
109
85
  "names": [],
110
86
  "idHints": [
@@ -120,7 +96,7 @@
120
96
  "auxiliaryFiles": [
121
97
  "130.js.map"
122
98
  ],
123
- "hash": "8f8825c5cb7adc76",
99
+ "hash": "6d67e332f9eb073e",
124
100
  "childrenByOrder": {}
125
101
  },
126
102
  {
@@ -147,17 +123,43 @@
147
123
  "hash": "18a99786b5e87115",
148
124
  "childrenByOrder": {}
149
125
  },
126
+ {
127
+ "rendered": true,
128
+ "initial": false,
129
+ "entry": false,
130
+ "recorded": false,
131
+ "reason": "split chunk (cache group: defaultVendors)",
132
+ "size": 3293786,
133
+ "sizes": {
134
+ "javascript": 3293786
135
+ },
136
+ "names": [],
137
+ "idHints": [
138
+ "vendors"
139
+ ],
140
+ "runtime": [
141
+ "@kenyaemr/esm-patient-registration-app"
142
+ ],
143
+ "files": [
144
+ "173.js"
145
+ ],
146
+ "auxiliaryFiles": [
147
+ "173.js.map"
148
+ ],
149
+ "hash": "04a9eb45dc2c9dae",
150
+ "childrenByOrder": {}
151
+ },
150
152
  {
151
153
  "rendered": true,
152
154
  "initial": true,
153
155
  "entry": true,
154
156
  "recorded": false,
155
- "size": 3378604,
157
+ "size": 4317184,
156
158
  "sizes": {
157
159
  "consume-shared": 294,
158
- "javascript": 3357279,
160
+ "javascript": 4294717,
159
161
  "share-init": 294,
160
- "runtime": 20737
162
+ "runtime": 21879
161
163
  },
162
164
  "names": [
163
165
  "main"
@@ -172,7 +174,7 @@
172
174
  "auxiliaryFiles": [
173
175
  "main.js.map"
174
176
  ],
175
- "hash": "f322dccbaa508ace",
177
+ "hash": "392d4e72461d3a42",
176
178
  "childrenByOrder": {}
177
179
  },
178
180
  {
@@ -180,9 +182,9 @@
180
182
  "initial": false,
181
183
  "entry": false,
182
184
  "recorded": false,
183
- "size": 1648,
185
+ "size": 5994,
184
186
  "sizes": {
185
- "javascript": 1648
187
+ "javascript": 5994
186
188
  },
187
189
  "names": [],
188
190
  "idHints": [],
@@ -191,12 +193,54 @@
191
193
  "main"
192
194
  ],
193
195
  "files": [
194
- "250.js"
196
+ "236.js"
195
197
  ],
196
- "auxiliaryFiles": [
197
- "250.js.map"
198
+ "auxiliaryFiles": [],
199
+ "hash": "ccb3dd732f3acbd2",
200
+ "childrenByOrder": {}
201
+ },
202
+ {
203
+ "rendered": true,
204
+ "initial": false,
205
+ "entry": false,
206
+ "recorded": false,
207
+ "size": 5994,
208
+ "sizes": {
209
+ "javascript": 5994
210
+ },
211
+ "names": [],
212
+ "idHints": [],
213
+ "runtime": [
214
+ "@kenyaemr/esm-patient-registration-app",
215
+ "main"
216
+ ],
217
+ "files": [
218
+ "240.js"
198
219
  ],
199
- "hash": "462dd2676164306a",
220
+ "auxiliaryFiles": [],
221
+ "hash": "88cc8246bb2b5701",
222
+ "childrenByOrder": {}
223
+ },
224
+ {
225
+ "rendered": true,
226
+ "initial": false,
227
+ "entry": false,
228
+ "recorded": false,
229
+ "size": 5994,
230
+ "sizes": {
231
+ "javascript": 5994
232
+ },
233
+ "names": [],
234
+ "idHints": [],
235
+ "runtime": [
236
+ "@kenyaemr/esm-patient-registration-app",
237
+ "main"
238
+ ],
239
+ "files": [
240
+ "261.js"
241
+ ],
242
+ "auxiliaryFiles": [],
243
+ "hash": "570c5124c34855bc",
200
244
  "childrenByOrder": {}
201
245
  },
202
246
  {
@@ -225,9 +269,9 @@
225
269
  "initial": false,
226
270
  "entry": false,
227
271
  "recorded": false,
228
- "size": 4758,
272
+ "size": 4875,
229
273
  "sizes": {
230
- "javascript": 4758
274
+ "javascript": 4875
231
275
  },
232
276
  "names": [],
233
277
  "idHints": [],
@@ -239,7 +283,29 @@
239
283
  "271.js"
240
284
  ],
241
285
  "auxiliaryFiles": [],
242
- "hash": "92dd431b467ff8aa",
286
+ "hash": "c85f23318b6e3936",
287
+ "childrenByOrder": {}
288
+ },
289
+ {
290
+ "rendered": true,
291
+ "initial": false,
292
+ "entry": false,
293
+ "recorded": false,
294
+ "size": 5994,
295
+ "sizes": {
296
+ "javascript": 5994
297
+ },
298
+ "names": [],
299
+ "idHints": [],
300
+ "runtime": [
301
+ "@kenyaemr/esm-patient-registration-app",
302
+ "main"
303
+ ],
304
+ "files": [
305
+ "272.js"
306
+ ],
307
+ "auxiliaryFiles": [],
308
+ "hash": "87ad24067793c4b8",
243
309
  "childrenByOrder": {}
244
310
  },
245
311
  {
@@ -247,9 +313,9 @@
247
313
  "initial": false,
248
314
  "entry": false,
249
315
  "recorded": false,
250
- "size": 6953,
316
+ "size": 7067,
251
317
  "sizes": {
252
- "javascript": 6953
318
+ "javascript": 7067
253
319
  },
254
320
  "names": [],
255
321
  "idHints": [],
@@ -261,7 +327,7 @@
261
327
  "319.js"
262
328
  ],
263
329
  "auxiliaryFiles": [],
264
- "hash": "a5e7ba541642bbb2",
330
+ "hash": "3f057d49e96b5214",
265
331
  "childrenByOrder": {}
266
332
  },
267
333
  {
@@ -291,6 +357,52 @@
291
357
  "hash": "7ee402a2d5bc4a24",
292
358
  "childrenByOrder": {}
293
359
  },
360
+ {
361
+ "rendered": true,
362
+ "initial": false,
363
+ "entry": false,
364
+ "recorded": false,
365
+ "size": 5994,
366
+ "sizes": {
367
+ "javascript": 5994
368
+ },
369
+ "names": [],
370
+ "idHints": [],
371
+ "runtime": [
372
+ "@kenyaemr/esm-patient-registration-app",
373
+ "main"
374
+ ],
375
+ "files": [
376
+ "336.js"
377
+ ],
378
+ "auxiliaryFiles": [],
379
+ "hash": "f8a8f91a425c347f",
380
+ "childrenByOrder": {}
381
+ },
382
+ {
383
+ "rendered": true,
384
+ "initial": false,
385
+ "entry": false,
386
+ "recorded": false,
387
+ "size": 1664,
388
+ "sizes": {
389
+ "javascript": 1664
390
+ },
391
+ "names": [],
392
+ "idHints": [],
393
+ "runtime": [
394
+ "@kenyaemr/esm-patient-registration-app",
395
+ "main"
396
+ ],
397
+ "files": [
398
+ "371.js"
399
+ ],
400
+ "auxiliaryFiles": [
401
+ "371.js.map"
402
+ ],
403
+ "hash": "dc86e1d48fefa856",
404
+ "childrenByOrder": {}
405
+ },
294
406
  {
295
407
  "rendered": true,
296
408
  "initial": false,
@@ -320,9 +432,31 @@
320
432
  "initial": false,
321
433
  "entry": false,
322
434
  "recorded": false,
323
- "size": 6367,
435
+ "size": 6520,
436
+ "sizes": {
437
+ "javascript": 6520
438
+ },
439
+ "names": [],
440
+ "idHints": [],
441
+ "runtime": [
442
+ "@kenyaemr/esm-patient-registration-app",
443
+ "main"
444
+ ],
445
+ "files": [
446
+ "378.js"
447
+ ],
448
+ "auxiliaryFiles": [],
449
+ "hash": "ba308c75cf54178f",
450
+ "childrenByOrder": {}
451
+ },
452
+ {
453
+ "rendered": true,
454
+ "initial": false,
455
+ "entry": false,
456
+ "recorded": false,
457
+ "size": 6465,
324
458
  "sizes": {
325
- "javascript": 6367
459
+ "javascript": 6465
326
460
  },
327
461
  "names": [],
328
462
  "idHints": [],
@@ -334,7 +468,7 @@
334
468
  "460.js"
335
469
  ],
336
470
  "auxiliaryFiles": [],
337
- "hash": "2f9dec945e43b5f2",
471
+ "hash": "826e33ae5c12b621",
338
472
  "childrenByOrder": {}
339
473
  },
340
474
  {
@@ -358,7 +492,51 @@
358
492
  "auxiliaryFiles": [
359
493
  "501.js.map"
360
494
  ],
361
- "hash": "43df15f2b9def63a",
495
+ "hash": "77be0d9af0c2647c",
496
+ "childrenByOrder": {}
497
+ },
498
+ {
499
+ "rendered": true,
500
+ "initial": false,
501
+ "entry": false,
502
+ "recorded": false,
503
+ "size": 5994,
504
+ "sizes": {
505
+ "javascript": 5994
506
+ },
507
+ "names": [],
508
+ "idHints": [],
509
+ "runtime": [
510
+ "@kenyaemr/esm-patient-registration-app",
511
+ "main"
512
+ ],
513
+ "files": [
514
+ "539.js"
515
+ ],
516
+ "auxiliaryFiles": [],
517
+ "hash": "413460b658e0ec90",
518
+ "childrenByOrder": {}
519
+ },
520
+ {
521
+ "rendered": true,
522
+ "initial": false,
523
+ "entry": false,
524
+ "recorded": false,
525
+ "size": 5994,
526
+ "sizes": {
527
+ "javascript": 5994
528
+ },
529
+ "names": [],
530
+ "idHints": [],
531
+ "runtime": [
532
+ "@kenyaemr/esm-patient-registration-app",
533
+ "main"
534
+ ],
535
+ "files": [
536
+ "566.js"
537
+ ],
538
+ "auxiliaryFiles": [],
539
+ "hash": "b8c1ede36d3b5ad0",
362
540
  "childrenByOrder": {}
363
541
  },
364
542
  {
@@ -366,9 +544,9 @@
366
544
  "initial": false,
367
545
  "entry": false,
368
546
  "recorded": false,
369
- "size": 7449,
547
+ "size": 8205,
370
548
  "sizes": {
371
- "javascript": 7449
549
+ "javascript": 8205
372
550
  },
373
551
  "names": [],
374
552
  "idHints": [],
@@ -380,7 +558,7 @@
380
558
  "574.js"
381
559
  ],
382
560
  "auxiliaryFiles": [],
383
- "hash": "24fcba5709860029",
561
+ "hash": "0ca81acae4a0fddc",
384
562
  "childrenByOrder": {}
385
563
  },
386
564
  {
@@ -410,6 +588,30 @@
410
588
  "hash": "1d43173987112064",
411
589
  "childrenByOrder": {}
412
590
  },
591
+ {
592
+ "rendered": true,
593
+ "initial": false,
594
+ "entry": false,
595
+ "recorded": false,
596
+ "size": 5776,
597
+ "sizes": {
598
+ "javascript": 5776
599
+ },
600
+ "names": [],
601
+ "idHints": [],
602
+ "runtime": [
603
+ "@kenyaemr/esm-patient-registration-app",
604
+ "main"
605
+ ],
606
+ "files": [
607
+ "623.js"
608
+ ],
609
+ "auxiliaryFiles": [
610
+ "623.js.map"
611
+ ],
612
+ "hash": "4b85b973ab4034e9",
613
+ "childrenByOrder": {}
614
+ },
413
615
  {
414
616
  "rendered": false,
415
617
  "initial": false,
@@ -436,9 +638,9 @@
436
638
  "initial": false,
437
639
  "entry": false,
438
640
  "recorded": false,
439
- "size": 4758,
641
+ "size": 4866,
440
642
  "sizes": {
441
- "javascript": 4758
643
+ "javascript": 4866
442
644
  },
443
645
  "names": [],
444
646
  "idHints": [],
@@ -450,7 +652,29 @@
450
652
  "644.js"
451
653
  ],
452
654
  "auxiliaryFiles": [],
453
- "hash": "6373d8e9bb798eb1",
655
+ "hash": "20bfa488e2b87e2f",
656
+ "childrenByOrder": {}
657
+ },
658
+ {
659
+ "rendered": true,
660
+ "initial": false,
661
+ "entry": false,
662
+ "recorded": false,
663
+ "size": 5994,
664
+ "sizes": {
665
+ "javascript": 5994
666
+ },
667
+ "names": [],
668
+ "idHints": [],
669
+ "runtime": [
670
+ "@kenyaemr/esm-patient-registration-app",
671
+ "main"
672
+ ],
673
+ "files": [
674
+ "652.js"
675
+ ],
676
+ "auxiliaryFiles": [],
677
+ "hash": "3e7571c2a8f2101f",
454
678
  "childrenByOrder": {}
455
679
  },
456
680
  {
@@ -458,9 +682,9 @@
458
682
  "initial": false,
459
683
  "entry": false,
460
684
  "recorded": false,
461
- "size": 1095,
685
+ "size": 5113,
462
686
  "sizes": {
463
- "javascript": 1095
687
+ "javascript": 5113
464
688
  },
465
689
  "names": [],
466
690
  "idHints": [],
@@ -469,12 +693,12 @@
469
693
  "main"
470
694
  ],
471
695
  "files": [
472
- "662.js"
696
+ "657.js"
473
697
  ],
474
698
  "auxiliaryFiles": [
475
- "662.js.map"
699
+ "657.js.map"
476
700
  ],
477
- "hash": "348bd8b2ea78c444",
701
+ "hash": "a341aa0fd80f0e9a",
478
702
  "childrenByOrder": {}
479
703
  },
480
704
  {
@@ -482,9 +706,9 @@
482
706
  "initial": false,
483
707
  "entry": false,
484
708
  "recorded": false,
485
- "size": 2084,
709
+ "size": 5994,
486
710
  "sizes": {
487
- "javascript": 2084
711
+ "javascript": 5994
488
712
  },
489
713
  "names": [],
490
714
  "idHints": [],
@@ -493,12 +717,120 @@
493
717
  "main"
494
718
  ],
495
719
  "files": [
496
- "753.js"
720
+ "673.js"
497
721
  ],
498
- "auxiliaryFiles": [
499
- "753.js.map"
722
+ "auxiliaryFiles": [],
723
+ "hash": "1421d36715c48c2e",
724
+ "childrenByOrder": {}
725
+ },
726
+ {
727
+ "rendered": true,
728
+ "initial": false,
729
+ "entry": false,
730
+ "recorded": false,
731
+ "size": 5994,
732
+ "sizes": {
733
+ "javascript": 5994
734
+ },
735
+ "names": [],
736
+ "idHints": [],
737
+ "runtime": [
738
+ "@kenyaemr/esm-patient-registration-app",
739
+ "main"
740
+ ],
741
+ "files": [
742
+ "705.js"
743
+ ],
744
+ "auxiliaryFiles": [],
745
+ "hash": "1fa9505956fd4518",
746
+ "childrenByOrder": {}
747
+ },
748
+ {
749
+ "rendered": true,
750
+ "initial": false,
751
+ "entry": false,
752
+ "recorded": false,
753
+ "size": 5994,
754
+ "sizes": {
755
+ "javascript": 5994
756
+ },
757
+ "names": [],
758
+ "idHints": [],
759
+ "runtime": [
760
+ "@kenyaemr/esm-patient-registration-app",
761
+ "main"
762
+ ],
763
+ "files": [
764
+ "711.js"
765
+ ],
766
+ "auxiliaryFiles": [],
767
+ "hash": "773712b7f2672e9e",
768
+ "childrenByOrder": {}
769
+ },
770
+ {
771
+ "rendered": true,
772
+ "initial": false,
773
+ "entry": false,
774
+ "recorded": false,
775
+ "size": 5994,
776
+ "sizes": {
777
+ "javascript": 5994
778
+ },
779
+ "names": [],
780
+ "idHints": [],
781
+ "runtime": [
782
+ "@kenyaemr/esm-patient-registration-app",
783
+ "main"
784
+ ],
785
+ "files": [
786
+ "727.js"
787
+ ],
788
+ "auxiliaryFiles": [],
789
+ "hash": "9809a8f39bfa7753",
790
+ "childrenByOrder": {}
791
+ },
792
+ {
793
+ "rendered": true,
794
+ "initial": false,
795
+ "entry": false,
796
+ "recorded": false,
797
+ "size": 5994,
798
+ "sizes": {
799
+ "javascript": 5994
800
+ },
801
+ "names": [],
802
+ "idHints": [],
803
+ "runtime": [
804
+ "@kenyaemr/esm-patient-registration-app",
805
+ "main"
806
+ ],
807
+ "files": [
808
+ "737.js"
809
+ ],
810
+ "auxiliaryFiles": [],
811
+ "hash": "f9e95f8f2182c355",
812
+ "childrenByOrder": {}
813
+ },
814
+ {
815
+ "rendered": true,
816
+ "initial": false,
817
+ "entry": false,
818
+ "recorded": false,
819
+ "size": 6118,
820
+ "sizes": {
821
+ "javascript": 6118
822
+ },
823
+ "names": [],
824
+ "idHints": [],
825
+ "runtime": [
826
+ "@kenyaemr/esm-patient-registration-app",
827
+ "main"
828
+ ],
829
+ "files": [
830
+ "744.js"
500
831
  ],
501
- "hash": "da274cd65fbcc0b0",
832
+ "auxiliaryFiles": [],
833
+ "hash": "d59919f1b24f28ad",
502
834
  "childrenByOrder": {}
503
835
  },
504
836
  {
@@ -506,9 +838,9 @@
506
838
  "initial": false,
507
839
  "entry": false,
508
840
  "recorded": false,
509
- "size": 6697,
841
+ "size": 6747,
510
842
  "sizes": {
511
- "javascript": 6697
843
+ "javascript": 6747
512
844
  },
513
845
  "names": [],
514
846
  "idHints": [],
@@ -520,7 +852,31 @@
520
852
  "757.js"
521
853
  ],
522
854
  "auxiliaryFiles": [],
523
- "hash": "572076741b60cca2",
855
+ "hash": "432d89393e4ff3ad",
856
+ "childrenByOrder": {}
857
+ },
858
+ {
859
+ "rendered": true,
860
+ "initial": false,
861
+ "entry": false,
862
+ "recorded": false,
863
+ "size": 1001141,
864
+ "sizes": {
865
+ "javascript": 1000931,
866
+ "consume-shared": 210
867
+ },
868
+ "names": [],
869
+ "idHints": [],
870
+ "runtime": [
871
+ "@kenyaemr/esm-patient-registration-app"
872
+ ],
873
+ "files": [
874
+ "759.js"
875
+ ],
876
+ "auxiliaryFiles": [
877
+ "759.js.map"
878
+ ],
879
+ "hash": "67d67aca3eea0401",
524
880
  "childrenByOrder": {}
525
881
  },
526
882
  {
@@ -552,9 +908,9 @@
552
908
  "initial": false,
553
909
  "entry": false,
554
910
  "recorded": false,
555
- "size": 6409,
911
+ "size": 6459,
556
912
  "sizes": {
557
- "javascript": 6409
913
+ "javascript": 6459
558
914
  },
559
915
  "names": [],
560
916
  "idHints": [],
@@ -566,7 +922,7 @@
566
922
  "788.js"
567
923
  ],
568
924
  "auxiliaryFiles": [],
569
- "hash": "e9fc8e9e3fedb4bd",
925
+ "hash": "0cec54e2784f876e",
570
926
  "childrenByOrder": {}
571
927
  },
572
928
  {
@@ -574,9 +930,9 @@
574
930
  "initial": false,
575
931
  "entry": false,
576
932
  "recorded": false,
577
- "size": 6557,
933
+ "size": 6607,
578
934
  "sizes": {
579
- "javascript": 6557
935
+ "javascript": 6607
580
936
  },
581
937
  "names": [],
582
938
  "idHints": [],
@@ -588,7 +944,7 @@
588
944
  "807.js"
589
945
  ],
590
946
  "auxiliaryFiles": [],
591
- "hash": "67b141165730ab60",
947
+ "hash": "b35ccd3ba4c7054d",
592
948
  "childrenByOrder": {}
593
949
  },
594
950
  {
@@ -596,9 +952,9 @@
596
952
  "initial": false,
597
953
  "entry": false,
598
954
  "recorded": false,
599
- "size": 6103,
955
+ "size": 6148,
600
956
  "sizes": {
601
- "javascript": 6103
957
+ "javascript": 6148
602
958
  },
603
959
  "names": [],
604
960
  "idHints": [],
@@ -610,7 +966,7 @@
610
966
  "833.js"
611
967
  ],
612
968
  "auxiliaryFiles": [],
613
- "hash": "1e297232bb6fe5a2",
969
+ "hash": "463333aacfa7f4c0",
614
970
  "childrenByOrder": {}
615
971
  },
616
972
  {
@@ -642,11 +998,11 @@
642
998
  "initial": true,
643
999
  "entry": true,
644
1000
  "recorded": false,
645
- "size": 20673,
1001
+ "size": 21815,
646
1002
  "sizes": {
647
1003
  "javascript": 42,
648
1004
  "share-init": 294,
649
- "runtime": 20337
1005
+ "runtime": 21479
650
1006
  },
651
1007
  "names": [
652
1008
  "@kenyaemr/esm-patient-registration-app"
@@ -661,7 +1017,7 @@
661
1017
  "auxiliaryFiles": [
662
1018
  "kenyaemr-esm-patient-registration-app.js.map"
663
1019
  ],
664
- "hash": "28e3eac536ee7933",
1020
+ "hash": "46fd2f7770556c29",
665
1021
  "childrenByOrder": {}
666
1022
  },
667
1023
  {
@@ -669,25 +1025,21 @@
669
1025
  "initial": false,
670
1026
  "entry": false,
671
1027
  "recorded": false,
672
- "reason": "split chunk (cache group: defaultVendors)",
673
- "size": 2425867,
1028
+ "size": 5994,
674
1029
  "sizes": {
675
- "javascript": 2425867
1030
+ "javascript": 5994
676
1031
  },
677
1032
  "names": [],
678
- "idHints": [
679
- "vendors"
680
- ],
1033
+ "idHints": [],
681
1034
  "runtime": [
682
- "@kenyaemr/esm-patient-registration-app"
1035
+ "@kenyaemr/esm-patient-registration-app",
1036
+ "main"
683
1037
  ],
684
1038
  "files": [
685
- "895.js"
1039
+ "899.js"
686
1040
  ],
687
- "auxiliaryFiles": [
688
- "895.js.map"
689
- ],
690
- "hash": "ff45c0a305217b11",
1041
+ "auxiliaryFiles": [],
1042
+ "hash": "dcee13d4a0b0ee00",
691
1043
  "childrenByOrder": {}
692
1044
  }
693
1045
  ]