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

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
@@ -4,6 +4,21 @@
4
4
  http://jedwatson.github.io/classnames
5
5
  */
6
6
 
7
+ /*!
8
+ * tabbable 6.2.0
9
+ * @license MIT, https://github.com/focus-trap/tabbable/blob/master/LICENSE
10
+ */
11
+
12
+ /**
13
+ * @license React
14
+ * react-dom.production.min.js
15
+ *
16
+ * Copyright (c) Facebook, Inc. and its affiliates.
17
+ *
18
+ * This source code is licensed under the MIT license found in the
19
+ * LICENSE file in the root directory of this source tree.
20
+ */
21
+
7
22
  /**
8
23
  * @license React
9
24
  * react-is.production.min.js
@@ -14,6 +29,16 @@
14
29
  * LICENSE file in the root directory of this source tree.
15
30
  */
16
31
 
32
+ /**
33
+ * @license React
34
+ * scheduler.production.min.js
35
+ *
36
+ * Copyright (c) Facebook, Inc. and its affiliates.
37
+ *
38
+ * This source code is licensed under the MIT license found in the
39
+ * LICENSE file in the root directory of this source tree.
40
+ */
41
+
17
42
  /**
18
43
  * @license React
19
44
  * use-sync-external-store-shim.production.min.js