@kenyaemr/esm-patient-registration-app 5.2.2 → 5.2.3

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 (114) hide show
  1. package/dist/102.js +1 -0
  2. package/dist/102.js.map +1 -0
  3. package/dist/130.js +1 -1
  4. package/dist/130.js.map +1 -1
  5. package/dist/271.js +1 -0
  6. package/dist/319.js +1 -1
  7. package/dist/431.js +2 -0
  8. package/dist/431.js.map +1 -0
  9. package/dist/460.js +1 -1
  10. package/dist/537.js +1 -1
  11. package/dist/537.js.map +1 -1
  12. package/dist/574.js +1 -1
  13. package/dist/644.js +1 -0
  14. package/dist/757.js +1 -1
  15. package/dist/784.js +1 -1
  16. package/dist/788.js +1 -1
  17. package/dist/807.js +1 -1
  18. package/dist/833.js +1 -1
  19. package/dist/kenyaemr-esm-patient-registration-app.js +1 -0
  20. package/dist/{openmrs-esm-patient-registration-app.js.buildmanifest.json → kenyaemr-esm-patient-registration-app.js.buildmanifest.json} +97 -53
  21. package/dist/kenyaemr-esm-patient-registration-app.js.map +1 -0
  22. package/dist/main.js +1 -1
  23. package/dist/main.js.map +1 -1
  24. package/dist/routes.json +1 -1
  25. package/dist.tar.gz +0 -0
  26. package/package.json +4 -3
  27. package/src/add-patient-link.test.tsx +9 -7
  28. package/src/config-schema.ts +31 -38
  29. package/src/constants.ts +1 -1
  30. package/src/offline.resources.ts +2 -9
  31. package/src/offline.ts +2 -2
  32. package/src/patient-registration/before-save-prompt.tsx +2 -1
  33. package/src/patient-registration/field/__mocks__/field.resource.ts +1 -1
  34. package/src/patient-registration/field/address/address-field.component.tsx +5 -4
  35. package/src/patient-registration/field/address/address-hierarchy.resource.tsx +2 -2
  36. package/src/patient-registration/field/address/address-search.component.tsx +1 -14
  37. package/src/patient-registration/field/address/custom-address-field.component.tsx +1 -1
  38. package/src/patient-registration/field/address/tests/address-hierarchy.test.tsx +3 -3
  39. package/src/patient-registration/field/address/tests/address-search-component.test.tsx +14 -7
  40. package/src/patient-registration/field/custom-field.component.tsx +1 -1
  41. package/src/patient-registration/field/dob/dob.component.tsx +2 -2
  42. package/src/patient-registration/field/dob/dob.test.tsx +0 -3
  43. package/src/patient-registration/field/field.component.tsx +4 -1
  44. package/src/patient-registration/field/field.resource.ts +2 -2
  45. package/src/patient-registration/field/field.test.tsx +98 -95
  46. package/src/patient-registration/field/gender/gender-field.component.tsx +4 -4
  47. package/src/patient-registration/field/gender/gender-field.test.tsx +7 -14
  48. package/src/patient-registration/field/id/id-field.component.tsx +6 -6
  49. package/src/patient-registration/field/id/id-field.test.tsx +9 -7
  50. package/src/patient-registration/field/id/identifier-selection-overlay.component.tsx +1 -1
  51. package/src/patient-registration/field/name/name-field.component.tsx +1 -1
  52. package/src/patient-registration/field/obs/obs-field.component.tsx +35 -33
  53. package/src/patient-registration/field/obs/obs-field.test.tsx +106 -28
  54. package/src/patient-registration/field/person-attributes/coded-attributes.component.tsx +1 -1
  55. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +67 -24
  56. package/src/patient-registration/field/person-attributes/coded-person-attribute-field.test.tsx +54 -30
  57. package/src/patient-registration/field/person-attributes/person-attribute-field.component.tsx +4 -3
  58. package/src/patient-registration/field/person-attributes/person-attribute-field.test.tsx +1 -1
  59. package/src/patient-registration/field/person-attributes/{person-attributes.resource.tsx → person-attributes.resource.ts} +2 -2
  60. package/src/patient-registration/field/person-attributes/text-person-attribute-field.component.tsx +1 -1
  61. package/src/patient-registration/field/phone/phone-field.component.tsx +16 -0
  62. package/src/patient-registration/form-manager.test.ts +1 -1
  63. package/src/patient-registration/form-manager.ts +14 -22
  64. package/src/patient-registration/input/basic-input/select/select-input.test.tsx +3 -3
  65. package/src/patient-registration/input/custom-input/autosuggest/autosuggest.component.tsx +5 -5
  66. package/src/patient-registration/input/custom-input/autosuggest/autosuggest.test.tsx +70 -58
  67. package/src/patient-registration/input/custom-input/identifier/identifier-input.component.tsx +1 -1
  68. package/src/patient-registration/input/custom-input/identifier/identifier-input.test.tsx +2 -5
  69. package/src/patient-registration/input/custom-input/identifier/utils.ts +1 -1
  70. package/src/patient-registration/input/dummy-data/dummy-data-input.component.tsx +1 -1
  71. package/src/patient-registration/input/dummy-data/dummy-data-input.test.tsx +6 -6
  72. package/src/patient-registration/patient-registration-context.ts +3 -4
  73. package/src/patient-registration/patient-registration-hooks.ts +12 -12
  74. package/src/patient-registration/patient-registration-utils.ts +7 -7
  75. package/src/patient-registration/patient-registration.component.tsx +19 -9
  76. package/src/patient-registration/{patient-registration.resource.tsx → patient-registration.resource.ts} +1 -1
  77. package/src/patient-registration/patient-registration.test.tsx +270 -251
  78. package/src/patient-registration/{patient-registration.types.tsx → patient-registration.types.ts} +11 -3
  79. package/src/patient-registration/section/death-info/death-info-section.test.tsx +33 -45
  80. package/src/patient-registration/section/demographics/demographics-section.test.tsx +1 -2
  81. package/src/patient-registration/section/generic-section.component.tsx +1 -1
  82. package/src/patient-registration/section/patient-relationships/relationships-section.component.tsx +3 -3
  83. package/src/patient-registration/section/patient-relationships/relationships-section.test.tsx +17 -5
  84. package/src/patient-registration/section/patient-relationships/relationships.resource.tsx +3 -3
  85. package/src/patient-registration/section/section-wrapper.component.tsx +1 -1
  86. package/src/patient-registration/section/section.component.tsx +1 -1
  87. package/src/patient-registration/validation/patient-registration-validation.test.tsx +140 -126
  88. package/src/patient-registration/validation/patient-registration-validation.tsx +54 -46
  89. package/src/routes.json +1 -0
  90. package/src/widgets/cancel-patient-edit.test.tsx +7 -4
  91. package/src/widgets/delete-identifier-confirmation-modal.test.tsx +7 -4
  92. package/src/widgets/display-photo.test.tsx +1 -1
  93. package/src/widgets/edit-patient-details-button.test.tsx +12 -7
  94. package/translations/am.json +22 -2
  95. package/translations/ar.json +22 -2
  96. package/translations/en.json +10 -10
  97. package/translations/es.json +22 -2
  98. package/translations/fr.json +22 -2
  99. package/translations/he.json +22 -2
  100. package/translations/km.json +22 -2
  101. package/translations/zh.json +89 -0
  102. package/translations/zh_CN.json +89 -0
  103. package/tsconfig.json +1 -1
  104. package/__mocks__/autogenerationoptions.mock.ts +0 -34
  105. package/dist/388.js +0 -2
  106. package/dist/388.js.map +0 -1
  107. package/dist/598.js +0 -1
  108. package/dist/598.js.map +0 -1
  109. package/dist/openmrs-esm-patient-registration-app.js +0 -1
  110. package/dist/openmrs-esm-patient-registration-app.js.map +0 -1
  111. package/src/patient-registration/field/__mocks__/identifier-types.mock.ts +0 -76
  112. package/src/patient-registration/field/__mocks__/identifiers.mock.ts +0 -27
  113. package/src/patient-registration/field/address/tests/mocks.ts +0 -98
  114. /package/dist/{388.js.LICENSE.txt → 431.js.LICENSE.txt} +0 -0
package/dist/460.js CHANGED
@@ -1 +1 @@
1
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[460],{4460:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"أضف علاقة","addressHeader":"العنوان","allFieldsRequiredText":"جميع الحقول مطلوبة ما لم يتم التأشير عليها بأنها اختيارية","autoGeneratedPlaceholderText":"تم إنشاؤه تلقائيًا","birthdayNotInTheFuture":"","birthdayRequired":"","birthFieldLabelText":"الميلاد","cancel":"إلغاء","causeOfDeathInputLabel":"سبب الوفاة","closeOverlay":"Close overlay","configure":"تكوين","configureIdentifiers":"Configure identifiers","contactSection":"تفاصيل الاتصال","createNew":"أنشئ جديد","dateOfBirthLabelText":"تاريخ الميلاد","deathDateInputLabel":"تاريخ الوفاة","deathdayNotInTheFuture":"","deathSection":"معلومات الوفاة","deleteIdentifierTooltip":"حذف","deleteRelationshipTooltipText":"حذف","demographicsSection":"معلومات أساسية","discard":"تجاهل","discardModalBody":"لم يتم حفظ التغييرات التي قمت بها في تفاصيل هذا المريض. هل تريد تجاهل التغييرات؟","discardModalHeader":"تأكيد تجاهل التغييرات","dobToggleLabelText":"هل تاريخ الميلاد معروف؟","edit":"تعديل","editIdentifierTooltip":"تعديل","editPatientDetails":"تعديل تفاصيل المريض","editPatientDetailsBreadcrumb":"Edit patient details","error":"خطأ","errorFetchingOrderedFields":"حدث خطأ أثناء جلب الحقول المرتبة لتسلسل العنوان","estimatedAgeInMonthsLabelText":"العمر المقدر بالشهور","estimatedAgeInYearsLabelText":"العمر المقدر بالسنوات","familyNameLabelText":"اسم العائلة","familyNameRequired":"","female":"أنثى","fullNameLabelText":"الاسم الكامل","genderLabelText":"الجنس","genderRequired":"","genderUnspecified":"","givenNameLabelText":"الاسم الأول","givenNameRequired":"","identifierValueRequired":"قيمة المعرف مطلوبة","idFieldLabelText":"المعرفات","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"نموذج غير مكتمل","invalidEmail":"","invalidInput":"إدخال غير صالح","isDeadInputLabel":"هل المريض متوفى؟","jumpTo":"اذهب إلى","loadingResults":"جارٍ تحميل النتائج","male":"ذكر","middleNameLabelText":"الاسم الأوسط","negativeMonths":"","negativeYears":"","no":"لا","noResultsFound":"لم يتم العثور على نتائج","numberInNameDubious":"","optional":"اختياري","other":"آخر","patient":"المريض","patientNameKnown":"هل اسم المريض معروف؟","patientRegistrationBreadcrumb":"Patient Registration","registerPatient":"تسجيل المريض","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"العلاقة","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"العلاقة","relationshipRemovedText":"تمت إزالة العلاقة","relationshipsSection":"العلاقات","relationshipToPatient":"العلاقة بالمريض","relativeFullNameLabelText":"الاسم الكامل للقريب","relativeNamePlaceholder":"الاسم الأول اسم العائلة","resetIdentifierTooltip":"إعادة تعيين","restoreRelationshipActionButton":"تراجع","searchAddress":"ابحث عن العنوان","searchIdentifierPlaceholder":"Search identifier","selectAnOption":"اختر خيارًا","sexFieldLabelText":"الجنس","source":"Source","stroke":"جلطة","submitting":"Submitting","unableToFetch":"تعذر الجلب نوع السمة الشخصية - {{personattributetype}}","unknown":"غير معروف","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"تحديث المريض","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","yearsEstimateRequired":"","yes":"نعم"}')}}]);
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[460],{4460:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"أضف علاقة","addressHeader":"العنوان","age":"Age","allFieldsRequiredText":"جميع الحقول مطلوبة ما لم يتم التأشير عليها بأنها اختيارية","autoGeneratedPlaceholderText":"تم إنشاؤه تلقائيًا","birthdayNotInTheFuture":"","birthdayRequired":"","birthFieldLabelText":"الميلاد","cancel":"إلغاء","causeOfDeathInputLabel":"سبب الوفاة","clientRegistryEmpty":"Create & Post Patient","clientVerificationWithClientRegistry":"Client verification with client registry","closeOverlay":"Close overlay","codedPersonAttributeAnswerSetEmpty":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an answer concept set UUID \'{{answerConceptSetUuid}}\' that does not have any concept answers.","codedPersonAttributeAnswerSetInvalid":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an invalid answer concept set UUID \'{{answerConceptSetUuid}}\'.","codedPersonAttributeNoAnswerSet":"The person attribute field \'{{codedPersonAttributeFieldId}}\' is of type \'coded\' but has been defined without an answer concept set UUID. The \'answerConceptSetUuid\' key is required.","configure":"تكوين","configureIdentifiers":"Configure identifiers","contactSection":"تفاصيل الاتصال","continue":"Continue to registration","createNew":"أنشئ جديد","dateOfBirth":"Date of birth","dateOfBirthLabelText":"تاريخ الميلاد","deathDateInputLabel":"تاريخ الوفاة","deathdayNotInTheFuture":"","deathSection":"معلومات الوفاة","deleteIdentifierTooltip":"حذف","deleteRelationshipTooltipText":"حذف","demographicsSection":"معلومات أساسية","discard":"تجاهل","discardModalBody":"لم يتم حفظ التغييرات التي قمت بها في تفاصيل هذا المريض. هل تريد تجاهل التغييرات؟","discardModalHeader":"تأكيد تجاهل التغييرات","dobToggleLabelText":"هل تاريخ الميلاد معروف؟","edit":"تعديل","editIdentifierTooltip":"تعديل","editPatientDetails":"تعديل تفاصيل المريض","editPatientDetailsBreadcrumb":"Edit patient details","error":"خطأ","errorFetchingOrderedFields":"حدث خطأ أثناء جلب الحقول المرتبة لتسلسل العنوان","estimatedAgeInMonthsLabelText":"العمر المقدر بالشهور","estimatedAgeInYearsLabelText":"العمر المقدر بالسنوات","familyNameLabelText":"اسم العائلة","familyNameRequired":"","female":"أنثى","fullNameLabelText":"الاسم الكامل","gender":"Gender","genderLabelText":"الجنس","genderRequired":"","genderUnspecified":"","givenNameLabelText":"الاسم الأول","givenNameRequired":"","identifierValueRequired":"قيمة المعرف مطلوبة","idFieldLabelText":"المعرفات","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"نموذج غير مكتمل","invalidEmail":"","invalidInput":"إدخال غير صالح","isDeadInputLabel":"هل المريض متوفى؟","jumpTo":"اذهب إلى","male":"ذكر","middleNameLabelText":"الاسم الأوسط","nascopNumber":"Nascop facility no","nationalId":"National ID","negativeMonths":"","negativeYears":"","no":"لا","numberInNameDubious":"","obsFieldUnknownDatatype":"Concept for obs field \'{{fieldDefinitionId}}\' has unknown datatype \'{{datatypeName}}\'","optional":"اختياري","originFacilityCode":"Origin facility code","originFacilityName":"Origin facility name","other":"آخر","patient":"المريض","patientDetailsFound":"Patient information found in the registry, do you want to use the information to continue with registration?","patientName":"Patient name","patientNameKnown":"هل اسم المريض معروف؟","patientNotFound":"The patient records could not be found in Client registry, do you want to continue to create and post patient to registry","patientRegistrationBreadcrumb":"Patient Registration","postToRegistry":"Post to registry","registerPatient":"تسجيل المريض","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"العلاقة","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"العلاقة","relationshipRemovedText":"تمت إزالة العلاقة","relationshipsSection":"العلاقات","relationshipToPatient":"العلاقة بالمريض","relativeFullNameLabelText":"الاسم الكامل للقريب","relativeNamePlaceholder":"الاسم الأول اسم العائلة","resetIdentifierTooltip":"إعادة تعيين","restoreRelationshipActionButton":"تراجع","searchAddress":"ابحث عن العنوان","searchIdentifierPlaceholder":"Search identifier","selectAnOption":"اختر خيارًا","selectCountry":"Select country","selectIdentifierType":"Select identifier type","sexFieldLabelText":"الجنس","source":"Source","stroke":"جلطة","submitting":"Submitting","unableToFetch":"تعذر الجلب نوع السمة الشخصية - {{personattributetype}}","unknown":"غير معروف","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"تحديث المريض","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","useValues":"Use values","validate":"Validate","yearsEstimateRequired":"","yes":"نعم"}')}}]);
package/dist/537.js CHANGED
@@ -1 +1 @@
1
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[537],{5209:(e,t,i)=>{i.d(t,{Z:()=>o});var n=i(272),a=i.n(n),r=i(2609),_=i.n(r)()(a());_.push([e.id,":root{--brand-01: #005d5d;--brand-02: #004144;--brand-03: #007d79}.-esm-patient-registration__delete-identifier-modal__title___hMGNM{color:var(--omrs-color-brand-teal)}.-esm-patient-registration__delete-identifier-modal__submit___qcqgw{width:250px}.-esm-patient-registration__delete-identifier-modal__submit___qcqgw:hover{cursor:pointer}.-esm-patient-registration__delete-identifier-modal__cancelButton___pwJQh{width:11.688rem}.-esm-patient-registration__delete-identifier-modal__submitButton___svJpa{margin-bottom:1rem;width:11.688rem;display:block}.-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC{width:100%;padding-left:2rem;margin-bottom:40vh;margin-top:1rem;max-width:50rem}.-esm-patient-registration__delete-identifier-modal__label01___NrWy3{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);margin-top:1rem;margin-bottom:1rem;color:#8d8d8d}.-esm-patient-registration__delete-identifier-modal__productiveHeading02___e9SQf{font-size:var(--cds-heading-compact-02-font-size, 1rem);font-weight:var(--cds-heading-compact-02-font-weight, 600);line-height:var(--cds-heading-compact-02-line-height, 1.375);letter-spacing:var(--cds-heading-compact-02-letter-spacing, 0);color:#8d8d8d;cursor:pointer}.-esm-patient-registration__delete-identifier-modal__space05___m3N7E{margin:1rem 0 1rem 0}.-esm-patient-registration__delete-identifier-modal__formContainer___DYO6j{display:flex;width:100%}.-esm-patient-registration__delete-identifier-modal__stickyColumn___H7wlJ{position:sticky;margin-top:1rem;top:4rem}.-esm-patient-registration__delete-identifier-modal__touchTarget___NDpl7 a:active{color:#161616}.-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ{color:#525252;line-height:1.38;font-size:1rem;font-weight:600}.-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ:active{text-decoration:none;color:#161616}.-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ:hover{text-decoration:none;color:#161616;cursor:pointer}.-esm-patient-registration__delete-identifier-modal__main___XdF9s{background-color:#fff}.omrs-breakpoint-lt-desktop .-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC{max-width:unset}.-esm-patient-registration__delete-identifier-modal__spinner___wmIqq.cds--inline-loading{min-height:1rem}html[dir=rtl] .-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ>svg{transform:scale(-1, 1)}html[dir=rtl] .-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC{padding-left:unset;padding-right:2rem}.-esm-patient-registration__delete-identifier-modal__productiveHeading___BrwBm{font-size:var(--cds-heading-compact-02-font-size, 1rem);font-weight:var(--cds-heading-compact-02-font-weight, 600);line-height:var(--cds-heading-compact-02-line-height, 1.375);letter-spacing:var(--cds-heading-compact-02-letter-spacing, 0)}.-esm-patient-registration__delete-identifier-modal__modalContent___z9Haz{width:100%;background-color:#f4f4f4;padding:1rem}.-esm-patient-registration__delete-identifier-modal__modalSubtitle___kcdlp{font-size:var(--cds-body-compact-01-font-size, 0.875rem);font-weight:var(--cds-body-compact-01-font-weight, 400);line-height:var(--cds-body-compact-01-line-height, 1.28572);letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px)}.-esm-patient-registration__delete-identifier-modal__modalBody___ibLva{font-size:var(--cds-body-compact-01-font-size, 0.875rem);font-weight:var(--cds-body-compact-01-font-weight, 400);line-height:var(--cds-body-compact-01-line-height, 1.28572);letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);margin:1rem 0}.-esm-patient-registration__delete-identifier-modal__buttonSet___tr4Qy{display:grid;grid-template-columns:1fr 1fr;margin-left:-1rem;margin-right:-1rem;margin-bottom:-1rem}.-esm-patient-registration__delete-identifier-modal__buttonSet___tr4Qy>button{max-width:unset !important}","",{version:3,sources:["webpack://./../../node_modules/@openmrs/esm-styleguide/src/_vars.scss","webpack://./src/patient-registration/patient-registration.scss","webpack://./../../node_modules/@carbon/layout/scss/generated/_spacing.scss","webpack://./../../node_modules/@carbon/type/scss/_styles.scss","webpack://./src/widgets/delete-identifier-modal.scss"],names:[],mappings:"AAoDA,MACE,mBAAA,CACA,mBAAA,CACA,mBAAA,CCnDF,mEACE,kCAAA,CAGF,oEACE,WAAA,CAGF,0EACE,cAAA,CAGF,0EACE,eAAA,CAGF,0EACE,kBCUW,CDTX,eAAA,CACA,aAAA,CAGF,sEACE,UAAA,CACA,iBCaW,CDZX,kBAAA,CACA,eCCW,CAAA,eAAA,CDGb,qEEg0BI,gDAAA,CAAA,gDAAA,CAAA,oDAAA,CAAA,yDAAA,CF9zBF,eCLW,CDMX,kBCNW,CDOX,aDnCM,CCsCR,iFEyzBI,uDAAA,CAAA,0DAAA,CAAA,4DAAA,CAAA,8DAAA,CFvzBF,aDxCM,CCyCN,cAAA,CAGF,qEACE,oBAAA,CAGF,2EACE,YAAA,CACA,UAAA,CAGF,0EACE,eAAA,CACA,eC3BW,CD6BX,QAAA,CAGF,kFACE,aDtDe,CCyDjB,sEACE,aD3Dc,CC4Dd,gBAAA,CACA,cCvCW,CDwCX,eAAA,CAEA,6EACE,oBAAA,CACA,aDjEa,CCoEf,4EACE,oBAAA,CACA,aDtEa,CCuEb,cAAA,CAIJ,kEACE,qBAAA,CAIA,kGACE,eAAA,CAKF,yFACE,eAAA,CAOA,wFACE,sBAAA,CAIJ,oFACE,kBAAA,CACA,kBCtES,CErCb,+ED81BI,uDAAA,CAAA,0DAAA,CAAA,4DAAA,CAAA,8DAAA,CC11BJ,0EACE,UAAA,CACA,wBJVM,CIWN,YFoBW,CEjBb,2EDo1BI,wDAAA,CAAA,uDAAA,CAAA,2DAAA,CAAA,gEAAA,CCh1BJ,uEDg1BI,wDAAA,CAAA,uDAAA,CAAA,2DAAA,CAAA,gEAAA,CC90BF,aAAA,CAGF,uEACE,YAAA,CACA,6BAAA,CACA,iBAAA,CACA,kBAAA,CACA,mBAAA,CAGF,8EACE,0BAAA",sourceRoot:""}]),_.locals={title:"-esm-patient-registration__delete-identifier-modal__title___hMGNM",submit:"-esm-patient-registration__delete-identifier-modal__submit___qcqgw",cancelButton:"-esm-patient-registration__delete-identifier-modal__cancelButton___pwJQh",submitButton:"-esm-patient-registration__delete-identifier-modal__submitButton___svJpa",infoGrid:"-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC",label01:"-esm-patient-registration__delete-identifier-modal__label01___NrWy3",productiveHeading02:"-esm-patient-registration__delete-identifier-modal__productiveHeading02___e9SQf",space05:"-esm-patient-registration__delete-identifier-modal__space05___m3N7E",formContainer:"-esm-patient-registration__delete-identifier-modal__formContainer___DYO6j",stickyColumn:"-esm-patient-registration__delete-identifier-modal__stickyColumn___H7wlJ",touchTarget:"-esm-patient-registration__delete-identifier-modal__touchTarget___NDpl7",linkName:"-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ",main:"-esm-patient-registration__delete-identifier-modal__main___XdF9s",spinner:"-esm-patient-registration__delete-identifier-modal__spinner___wmIqq",productiveHeading:"-esm-patient-registration__delete-identifier-modal__productiveHeading___BrwBm",modalContent:"-esm-patient-registration__delete-identifier-modal__modalContent___z9Haz",modalSubtitle:"-esm-patient-registration__delete-identifier-modal__modalSubtitle___kcdlp",modalBody:"-esm-patient-registration__delete-identifier-modal__modalBody___ibLva",buttonSet:"-esm-patient-registration__delete-identifier-modal__buttonSet___tr4Qy"};const o=_},3537:(e,t,i)=>{i.r(t),i.d(t,{default:()=>v});var n=i(268),a=i.n(n),r=i(2124),_=i.n(r),o=i(1583),d=i.n(o),A=i(7378),s=i.n(A),l=i(5993),m=i.n(l),c=i(4154),C=i.n(c),g=i(8141),p=i.n(g),f=i(5209),u={};u.styleTagTransform=p(),u.setAttributes=m(),u.insert=s().bind(null,"head"),u.domAPI=d(),u.insertStyleElement=C(),_()(f.Z,u);const h=f.Z&&f.Z.locals?f.Z.locals:void 0;var E=i(4924),b=i(4151);const v=function(e){var t=e.deleteIdentifier,i=e.identifierName,n=e.identifierValue,r=(0,E.useTranslation)().t;return a().createElement("div",{className:h.modalContent},a().createElement("h1",{className:h.productiveHeading},r("deleteIdentifierModalHeading","Remove identifier?")),a().createElement("h3",{className:h.modalSubtitle},i,r("deleteIdentifierModalText"," has a value of ")," ",n),a().createElement("p",{className:h.modalBody},r("confirmIdentifierDeletionText","Are you sure you want to remove this identifier?")),a().createElement("div",{className:h.buttonSet},a().createElement(b.zxk,{kind:"secondary",size:"lg",onClick:function(){return t(!1)}},r("cancel","Cancel")),a().createElement(b.zxk,{kind:"danger",size:"lg",onClick:function(){return t(!0)}},r("removeIdentifierButton","Remove Identifier"))))}}}]);
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[537],{5209:(e,t,i)=>{i.d(t,{Z:()=>o});var n=i(272),a=i.n(n),r=i(2609),_=i.n(r)()(a());_.push([e.id,":root{--brand-01: #005d5d;--brand-02: #004144;--brand-03: #007d79}.-esm-patient-registration__delete-identifier-modal__title___hMGNM{color:var(--omrs-color-brand-teal)}.-esm-patient-registration__delete-identifier-modal__submit___qcqgw{width:250px}.-esm-patient-registration__delete-identifier-modal__submit___qcqgw:hover{cursor:pointer}.-esm-patient-registration__delete-identifier-modal__cancelButton___pwJQh{width:11.688rem}.-esm-patient-registration__delete-identifier-modal__submitButton___svJpa{margin-bottom:1rem;width:11.688rem;display:block}.-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC{width:100%;padding-left:2rem;margin-bottom:40vh;margin-top:1rem;max-width:50rem}.-esm-patient-registration__delete-identifier-modal__label01___NrWy3{font-size:var(--cds-label-01-font-size, 0.75rem);font-weight:var(--cds-label-01-font-weight, 400);line-height:var(--cds-label-01-line-height, 1.33333);letter-spacing:var(--cds-label-01-letter-spacing, 0.32px);margin-top:1rem;margin-bottom:1rem;color:#8d8d8d}.-esm-patient-registration__delete-identifier-modal__productiveHeading02___e9SQf{font-size:var(--cds-heading-compact-02-font-size, 1rem);font-weight:var(--cds-heading-compact-02-font-weight, 600);line-height:var(--cds-heading-compact-02-line-height, 1.375);letter-spacing:var(--cds-heading-compact-02-letter-spacing, 0);color:#8d8d8d;cursor:pointer}.-esm-patient-registration__delete-identifier-modal__space05___m3N7E{margin:1rem 0 1rem 0}.-esm-patient-registration__delete-identifier-modal__formContainer___DYO6j{display:flex;width:100%}.-esm-patient-registration__delete-identifier-modal__stickyColumn___H7wlJ{position:sticky;margin-top:1rem;top:4rem}.-esm-patient-registration__delete-identifier-modal__touchTarget___NDpl7 a:active{color:#161616}.-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ{color:#525252;line-height:1.38;font-size:1rem;font-weight:600}.-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ:active{text-decoration:none;color:#161616}.-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ:hover{text-decoration:none;color:#161616;cursor:pointer}.-esm-patient-registration__delete-identifier-modal__main___XdF9s{background-color:#fff}.omrs-breakpoint-lt-desktop .-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC{max-width:unset}.-esm-patient-registration__delete-identifier-modal__spinner___wmIqq.cds--inline-loading{min-height:1rem}html[dir=rtl] .-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ>svg{transform:scale(-1, 1)}html[dir=rtl] .-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC{padding-left:unset;padding-right:2rem}.-esm-patient-registration__delete-identifier-modal__productiveHeading___BrwBm{font-size:var(--cds-heading-compact-02-font-size, 1rem);font-weight:var(--cds-heading-compact-02-font-weight, 600);line-height:var(--cds-heading-compact-02-line-height, 1.375);letter-spacing:var(--cds-heading-compact-02-letter-spacing, 0)}.-esm-patient-registration__delete-identifier-modal__modalContent___z9Haz{width:100%;background-color:#f4f4f4;padding:1rem}.-esm-patient-registration__delete-identifier-modal__modalSubtitle___kcdlp{font-size:var(--cds-body-compact-01-font-size, 0.875rem);font-weight:var(--cds-body-compact-01-font-weight, 400);line-height:var(--cds-body-compact-01-line-height, 1.28572);letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px)}.-esm-patient-registration__delete-identifier-modal__modalBody___ibLva{font-size:var(--cds-body-compact-01-font-size, 0.875rem);font-weight:var(--cds-body-compact-01-font-weight, 400);line-height:var(--cds-body-compact-01-line-height, 1.28572);letter-spacing:var(--cds-body-compact-01-letter-spacing, 0.16px);margin:1rem 0}.-esm-patient-registration__delete-identifier-modal__buttonSet___tr4Qy{display:grid;grid-template-columns:1fr 1fr;margin-left:-1rem;margin-right:-1rem;margin-bottom:-1rem}.-esm-patient-registration__delete-identifier-modal__buttonSet___tr4Qy>button{max-width:unset !important}","",{version:3,sources:["webpack://./../../node_modules/@openmrs/esm-styleguide/src/_vars.scss","webpack://./src/patient-registration/patient-registration.scss","webpack://./../../node_modules/@carbon/styles/node_modules/@carbon/layout/scss/generated/_spacing.scss","webpack://./../../node_modules/@carbon/type/scss/_styles.scss","webpack://./src/widgets/delete-identifier-modal.scss"],names:[],mappings:"AAoDA,MACE,mBAAA,CACA,mBAAA,CACA,mBAAA,CCnDF,mEACE,kCAAA,CAGF,oEACE,WAAA,CAGF,0EACE,cAAA,CAGF,0EACE,eAAA,CAGF,0EACE,kBCUW,CDTX,eAAA,CACA,aAAA,CAGF,sEACE,UAAA,CACA,iBCaW,CDZX,kBAAA,CACA,eCCW,CAAA,eAAA,CDGb,qEEg0BI,gDAAA,CAAA,gDAAA,CAAA,oDAAA,CAAA,yDAAA,CF9zBF,eCLW,CDMX,kBCNW,CDOX,aDnCM,CCsCR,iFEyzBI,uDAAA,CAAA,0DAAA,CAAA,4DAAA,CAAA,8DAAA,CFvzBF,aDxCM,CCyCN,cAAA,CAGF,qEACE,oBAAA,CAGF,2EACE,YAAA,CACA,UAAA,CAGF,0EACE,eAAA,CACA,eC3BW,CD6BX,QAAA,CAGF,kFACE,aDtDe,CCyDjB,sEACE,aD3Dc,CC4Dd,gBAAA,CACA,cCvCW,CDwCX,eAAA,CAEA,6EACE,oBAAA,CACA,aDjEa,CCoEf,4EACE,oBAAA,CACA,aDtEa,CCuEb,cAAA,CAIJ,kEACE,qBAAA,CAIA,kGACE,eAAA,CAKF,yFACE,eAAA,CAOA,wFACE,sBAAA,CAIJ,oFACE,kBAAA,CACA,kBCtES,CErCb,+ED81BI,uDAAA,CAAA,0DAAA,CAAA,4DAAA,CAAA,8DAAA,CC11BJ,0EACE,UAAA,CACA,wBJVM,CIWN,YFoBW,CEjBb,2EDo1BI,wDAAA,CAAA,uDAAA,CAAA,2DAAA,CAAA,gEAAA,CCh1BJ,uEDg1BI,wDAAA,CAAA,uDAAA,CAAA,2DAAA,CAAA,gEAAA,CC90BF,aAAA,CAGF,uEACE,YAAA,CACA,6BAAA,CACA,iBAAA,CACA,kBAAA,CACA,mBAAA,CAGF,8EACE,0BAAA",sourceRoot:""}]),_.locals={title:"-esm-patient-registration__delete-identifier-modal__title___hMGNM",submit:"-esm-patient-registration__delete-identifier-modal__submit___qcqgw",cancelButton:"-esm-patient-registration__delete-identifier-modal__cancelButton___pwJQh",submitButton:"-esm-patient-registration__delete-identifier-modal__submitButton___svJpa",infoGrid:"-esm-patient-registration__delete-identifier-modal__infoGrid___aVWpC",label01:"-esm-patient-registration__delete-identifier-modal__label01___NrWy3",productiveHeading02:"-esm-patient-registration__delete-identifier-modal__productiveHeading02___e9SQf",space05:"-esm-patient-registration__delete-identifier-modal__space05___m3N7E",formContainer:"-esm-patient-registration__delete-identifier-modal__formContainer___DYO6j",stickyColumn:"-esm-patient-registration__delete-identifier-modal__stickyColumn___H7wlJ",touchTarget:"-esm-patient-registration__delete-identifier-modal__touchTarget___NDpl7",linkName:"-esm-patient-registration__delete-identifier-modal__linkName___DsKMZ",main:"-esm-patient-registration__delete-identifier-modal__main___XdF9s",spinner:"-esm-patient-registration__delete-identifier-modal__spinner___wmIqq",productiveHeading:"-esm-patient-registration__delete-identifier-modal__productiveHeading___BrwBm",modalContent:"-esm-patient-registration__delete-identifier-modal__modalContent___z9Haz",modalSubtitle:"-esm-patient-registration__delete-identifier-modal__modalSubtitle___kcdlp",modalBody:"-esm-patient-registration__delete-identifier-modal__modalBody___ibLva",buttonSet:"-esm-patient-registration__delete-identifier-modal__buttonSet___tr4Qy"};const o=_},3537:(e,t,i)=>{i.r(t),i.d(t,{default:()=>v});var n=i(268),a=i.n(n),r=i(2124),_=i.n(r),o=i(1583),d=i.n(o),A=i(7378),s=i.n(A),l=i(5993),m=i.n(l),c=i(4154),C=i.n(c),g=i(8141),p=i.n(g),f=i(5209),u={};u.styleTagTransform=p(),u.setAttributes=m(),u.insert=s().bind(null,"head"),u.domAPI=d(),u.insertStyleElement=C(),_()(f.Z,u);const h=f.Z&&f.Z.locals?f.Z.locals:void 0;var b=i(4924),E=i(4151);const v=function(e){var t=e.deleteIdentifier,i=e.identifierName,n=e.identifierValue,r=(0,b.useTranslation)().t;return a().createElement("div",{className:h.modalContent},a().createElement("h1",{className:h.productiveHeading},r("deleteIdentifierModalHeading","Remove identifier?")),a().createElement("h3",{className:h.modalSubtitle},i,r("deleteIdentifierModalText"," has a value of ")," ",n),a().createElement("p",{className:h.modalBody},r("confirmIdentifierDeletionText","Are you sure you want to remove this identifier?")),a().createElement("div",{className:h.buttonSet},a().createElement(E.zxk,{kind:"secondary",size:"lg",onClick:function(){return t(!1)}},r("cancel","Cancel")),a().createElement(E.zxk,{kind:"danger",size:"lg",onClick:function(){return t(!0)}},r("removeIdentifierButton","Remove Identifier"))))}}}]);
package/dist/537.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"537.js","mappings":"4NAGIA,E,MAA0B,GAA4B,KAE1DA,EAAwBC,KAAK,CAACC,EAAOC,GAAI,08HAA28H,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,iEAAiE,6EAA6E,gEAAgE,wDAAwD,MAAQ,GAAG,SAAW,w8BAAw8B,WAAa,MAEx0KH,EAAwBI,OAAS,CAChC,MAAS,oEACT,OAAU,qEACV,aAAgB,2EAChB,aAAgB,2EAChB,SAAY,uEACZ,QAAW,sEACX,oBAAuB,kFACvB,QAAW,sEACX,cAAiB,4EACjB,aAAgB,2EAChB,YAAe,0EACf,SAAY,uEACZ,KAAQ,mEACR,QAAW,sEACX,kBAAqB,gFACrB,aAAgB,2EAChB,cAAiB,4EACjB,UAAa,wEACb,UAAa,yEAEd,S,iMCjBIC,EAAU,CAAC,EAEfA,EAAQC,kBAAoB,IAC5BD,EAAQE,cAAgB,IAElBF,EAAQG,OAAS,SAAc,KAAM,QAE3CH,EAAQI,OAAS,IACjBJ,EAAQK,mBAAqB,IAEhB,IAAI,IAASL,GAKnB,QAAe,KAAW,IAAQD,OAAS,IAAQA,YAASO,E,wBCcnE,QA7B4F,Y,IAC1FC,EAAAA,EAAAA,iBACAC,EAAAA,EAAAA,eACAC,EAAAA,EAAAA,gBAEM,GAAQC,EAAAA,EAAAA,kBAANC,EAER,OACE,kBAACC,MAAAA,CAAIC,UAAWC,EAAOC,cACrB,kBAACC,KAAAA,CAAGH,UAAWC,EAAOG,mBAAoBN,EAAE,+BAAgC,uBAC5E,kBAACO,KAAAA,CAAGL,UAAWC,EAAOK,eACnBX,EACAG,EAAE,4BAA6B,oBAAoB,IAAEF,GAExD,kBAACW,IAAAA,CAAEP,UAAWC,EAAOO,WAClBV,EAAE,gCAAiC,qDAEtC,kBAACC,MAAAA,CAAIC,UAAWC,EAAOQ,WACrB,kBAACC,EAAAA,IAAMA,CAACC,KAAK,YAAYC,KAAK,KAAKC,QAAS,W,OAAMnB,GAAiB,E,GAChEI,EAAE,SAAU,WAEf,kBAACY,EAAAA,IAAMA,CAACC,KAAK,SAASC,KAAK,KAAKC,QAAS,W,OAAMnB,GAAiB,E,GAC7DI,EAAE,yBAA0B,uBAKvC,C","sources":["webpack://@kenyaemr/esm-patient-registration-app/./src/widgets/delete-identifier-modal.scss","webpack://@kenyaemr/esm-patient-registration-app/./src/widgets/delete-identifier-modal.scss?e75d","webpack://@kenyaemr/esm-patient-registration-app/./src/widgets/delete-identifier-confirmation-modal.tsx"],"names":["___CSS_LOADER_EXPORT___","push","module","id","locals","options","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","undefined","deleteIdentifier","identifierName","identifierValue","useTranslation","t","div","className","styles","modalContent","h1","productiveHeading","h3","modalSubtitle","p","modalBody","buttonSet","Button","kind","size","onClick"],"sourceRoot":""}
1
+ {"version":3,"file":"537.js","mappings":"4NAGIA,E,MAA0B,GAA4B,KAE1DA,EAAwBC,KAAK,CAACC,EAAOC,GAAI,08HAA28H,GAAG,CAAC,QAAU,EAAE,QAAU,CAAC,wEAAwE,iEAAiE,yGAAyG,gEAAgE,wDAAwD,MAAQ,GAAG,SAAW,w8BAAw8B,WAAa,MAEp2KH,EAAwBI,OAAS,CAChC,MAAS,oEACT,OAAU,qEACV,aAAgB,2EAChB,aAAgB,2EAChB,SAAY,uEACZ,QAAW,sEACX,oBAAuB,kFACvB,QAAW,sEACX,cAAiB,4EACjB,aAAgB,2EAChB,YAAe,0EACf,SAAY,uEACZ,KAAQ,mEACR,QAAW,sEACX,kBAAqB,gFACrB,aAAgB,2EAChB,cAAiB,4EACjB,UAAa,wEACb,UAAa,yEAEd,S,iMCjBIC,EAAU,CAAC,EAEfA,EAAQC,kBAAoB,IAC5BD,EAAQE,cAAgB,IAElBF,EAAQG,OAAS,SAAc,KAAM,QAE3CH,EAAQI,OAAS,IACjBJ,EAAQK,mBAAqB,IAEhB,IAAI,IAASL,GAKnB,QAAe,KAAW,IAAQD,OAAS,IAAQA,YAASO,E,wBCcnE,QA7B4F,Y,IAC1FC,EAAAA,EAAAA,iBACAC,EAAAA,EAAAA,eACAC,EAAAA,EAAAA,gBAEM,GAAQC,EAAAA,EAAAA,kBAANC,EAER,OACE,kBAACC,MAAAA,CAAIC,UAAWC,EAAOC,cACrB,kBAACC,KAAAA,CAAGH,UAAWC,EAAOG,mBAAoBN,EAAE,+BAAgC,uBAC5E,kBAACO,KAAAA,CAAGL,UAAWC,EAAOK,eACnBX,EACAG,EAAE,4BAA6B,oBAAoB,IAAEF,GAExD,kBAACW,IAAAA,CAAEP,UAAWC,EAAOO,WAClBV,EAAE,gCAAiC,qDAEtC,kBAACC,MAAAA,CAAIC,UAAWC,EAAOQ,WACrB,kBAACC,EAAAA,IAAMA,CAACC,KAAK,YAAYC,KAAK,KAAKC,QAAS,W,OAAMnB,GAAiB,E,GAChEI,EAAE,SAAU,WAEf,kBAACY,EAAAA,IAAMA,CAACC,KAAK,SAASC,KAAK,KAAKC,QAAS,W,OAAMnB,GAAiB,E,GAC7DI,EAAE,yBAA0B,uBAKvC,C","sources":["webpack://@kenyaemr/esm-patient-registration-app/./src/widgets/delete-identifier-modal.scss","webpack://@kenyaemr/esm-patient-registration-app/./src/widgets/delete-identifier-modal.scss?e75d","webpack://@kenyaemr/esm-patient-registration-app/./src/widgets/delete-identifier-confirmation-modal.tsx"],"names":["___CSS_LOADER_EXPORT___","push","module","id","locals","options","styleTagTransform","setAttributes","insert","domAPI","insertStyleElement","undefined","deleteIdentifier","identifierName","identifierValue","useTranslation","t","div","className","styles","modalContent","h1","productiveHeading","h3","modalSubtitle","p","modalBody","buttonSet","Button","kind","size","onClick"],"sourceRoot":""}
package/dist/574.js CHANGED
@@ -1 +1 @@
1
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[574],{3574:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"Add Relationship","addressHeader":"Address","age":"Age","allFieldsRequiredText":"All fields are required unless marked optional","autoGeneratedPlaceholderText":"Auto-generated","birthdayNotInTheFuture":"Birthday cannot be in the future","birthdayRequired":"Birthday is required","birthFieldLabelText":"Birth","cancel":"Cancel","causeOfDeathInputLabel":"Cause of Death","closeOverlay":"Close overlay","configure":"Configure","configureIdentifiers":"Configure identifiers","contactSection":"Contact Details","cityVillage":"City","clientRegistryEmpty":"Create & Post Patient","clientVerificationWithClientRegistry":"Client verification with client registry","continue":"Continue","country":"Country","countyDistrict":"District","createNew":"Create New","dateOfBirth":"Date of birth","dateOfBirthLabelText":"Date of Birth","deathDateInputLabel":"Date of Death","deathdayNotInTheFuture":"Death day cannot be in the future","deathSection":"Death Info","deleteIdentifierTooltip":"Delete","deleteRelationshipTooltipText":"Delete","demographicsSection":"Basic Info","discard":"Discard","discardModalBody":"The changes you made to this patient\'s details have not been saved. Discard changes?","discardModalHeader":"Confirm Discard Changes","dobToggleLabelText":"Date of Birth Known?","edit":"Edit","editIdentifierTooltip":"Edit","editPatientDetails":"Edit patient details","editPatientDetailsBreadcrumb":"Edit patient details","error":"Error","errorFetchingOrderedFields":"Error occured fetching ordered fields for address hierarchy","estimatedAgeInMonthsLabelText":"Estimated age in months","estimatedAgeInYearsLabelText":"Estimated age in years","familyNameLabelText":"Family Name","familyNameRequired":"Family name is required","female":"Female","fullNameLabelText":"Full Name","gender":"Gender","genderLabelText":"Sex","genderRequired":"Gender is required","genderUnspecified":"Gender is not specified","givenNameLabelText":"First Name","givenNameRequired":"Given name is required","identifierValueRequired":"Identifier value is required","idFieldLabelText":"Identifiers","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"Incomplete form","invalidEmail":"A valid email has to be given","invalidInput":"Invalid Input","isDeadInputLabel":"Is Dead","jumpTo":"Jump to","loadingResults":"Loading results","male":"Male","middleNameLabelText":"Middle Name","nascopNumber":"Nascop facility no","nationalId":"National ID","negativeMonths":"Negative months","negativeYears":"Negative years","no":"No","noResultsFound":"No results found","numberInNameDubious":"Number in name is dubious","optional":"optional","other":"Other","patient":"Patient","patientDetailsFound":"Patient information found in the registry, do you want to use the information to continue with registration?","patientName":"Patient name","patientNameKnown":"Patient\'s Name is Known?","patientNotFound":"The patient records could not be found in Client registry, do you want to continue to create and post patient to registry","postalCode":"Postcode","postToRegistry":"Post to registry","registerPatient":"Register Patient","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"Relationship","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"Relationship","relationshipRemovedText":"Relationship removed","relationshipsSection":"Relationships","relationshipToPatient":"Relationship to patient","relativeFullNameLabelText":"Related person","relativeNamePlaceholder":"Firstname Familyname","resetIdentifierTooltip":"Reset","restoreRelationshipActionButton":"Undo","searchAddress":"Search address","selectAnOption":"Select an option","selectCountry":"Select country","selectIdentifierType":"Select identifier type","sexFieldLabelText":"Sex","source":"Source","stroke":"Stroke","submitting":"Submitting","unableToFetch":"Unable to fetch person attribute type {{personattributetype}}","unknown":"Unknown","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"Update Patient","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","updationSuccessToastDescription":"The patient\'s information has been successfully updated","updationSuccessToastTitle":"Patient Details Updated","useValues":"Use values","validate":"Validate","yearsEstimateRequired":"Years estimate required","yes":"Yes"}')}}]);
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[574],{3574:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"Add Relationship","addressHeader":"Address","age":"Age","allFieldsRequiredText":"All fields are required unless marked optional","autoGeneratedPlaceholderText":"Auto-generated","birthdayNotInTheFuture":"Birthday cannot be in the future","birthdayRequired":"Birthday is required","birthFieldLabelText":"Birth","cancel":"Cancel","causeOfDeathInputLabel":"Cause of Death","clientRegistryEmpty":"Create & Post Patient","clientVerificationWithClientRegistry":"Client verification with client registry","closeOverlay":"Close overlay","codedPersonAttributeAnswerSetEmpty":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an answer concept set UUID \'{{answerConceptSetUuid}}\' that does not have any concept answers.","codedPersonAttributeAnswerSetInvalid":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an invalid answer concept set UUID \'{{answerConceptSetUuid}}\'.","codedPersonAttributeNoAnswerSet":"The person attribute field \'{{codedPersonAttributeFieldId}}\' is of type \'coded\' but has been defined without an answer concept set UUID. The \'answerConceptSetUuid\' key is required.","configure":"Configure","configureIdentifiers":"Configure identifiers","contactSection":"Contact Details","continue":"Continue","createNew":"Create New","dateOfBirth":"Date of birth","dateOfBirthLabelText":"Date of Birth","deathDateInputLabel":"Date of Death","deathdayNotInTheFuture":"Death day cannot be in the future","deathSection":"Death Info","deleteIdentifierTooltip":"Delete","deleteRelationshipTooltipText":"Delete","demographicsSection":"Basic Info","discard":"Discard","discardModalBody":"The changes you made to this patient\'s details have not been saved. Discard changes?","discardModalHeader":"Confirm Discard Changes","dobToggleLabelText":"Date of Birth Known?","edit":"Edit","editIdentifierTooltip":"Edit","editPatientDetails":"Edit patient details","editPatientDetailsBreadcrumb":"Edit patient details","error":"Error","errorFetchingOrderedFields":"Error occured fetching ordered fields for address hierarchy","estimatedAgeInMonthsLabelText":"Estimated age in months","estimatedAgeInYearsLabelText":"Estimated age in years","familyNameLabelText":"Family Name","familyNameRequired":"Family name is required","female":"Female","fullNameLabelText":"Full Name","gender":"Gender","genderLabelText":"Sex","genderRequired":"Gender is required","genderUnspecified":"Gender is not specified","givenNameLabelText":"First Name","givenNameRequired":"Given name is required","identifierValueRequired":"Identifier value is required","idFieldLabelText":"Identifiers","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"Incomplete form","invalidEmail":"A valid email has to be given","invalidInput":"Invalid Input","isDeadInputLabel":"Is Dead","jumpTo":"Jump to","male":"Male","middleNameLabelText":"Middle Name","nascopNumber":"Nascop facility no","nationalId":"National ID","negativeMonths":"Negative months","negativeYears":"Negative years","no":"No","numberInNameDubious":"Number in name is dubious","obsFieldUnknownDatatype":"Concept for obs field \'{{fieldDefinitionId}}\' has unknown datatype \'{{datatypeName}}\'","optional":"optional","originFacilityCode":"Origin facility code","originFacilityName":"Origin facility name","other":"Other","patient":"Patient","patientDetailsFound":"Patient information found in the registry, do you want to use the information to continue with registration?","patientName":"Patient name","patientNameKnown":"Patient\'s Name is Known?","patientNotFound":"The patient records could not be found in Client registry, do you want to continue to create and post patient to registry","patientRegistrationBreadcrumb":"Patient Registration","postToRegistry":"Post to registry","registerPatient":"Register Patient","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"Relationship","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"Relationship","relationshipRemovedText":"Relationship removed","relationshipsSection":"Relationships","relationshipToPatient":"Relationship to patient","relativeFullNameLabelText":"Related person","relativeNamePlaceholder":"Firstname Familyname","resetIdentifierTooltip":"Reset","restoreRelationshipActionButton":"Undo","searchAddress":"Search address","searchIdentifierPlaceholder":"Search identifier","selectAnOption":"Select an option","selectCountry":"Select country","selectIdentifierType":"Select identifier type","sexFieldLabelText":"Sex","source":"Source","stroke":"Stroke","submitting":"Submitting","unableToFetch":"Unable to fetch person attribute type {{personattributetype}}","unknown":"Unknown","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"Update Patient","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","useValues":"Use values","validate":"Validate","yearsEstimateRequired":"Years estimate required","yes":"Yes"}')}}]);
package/dist/644.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[644],{1644:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"添加关系","address1":"地址行1","address2":"地址行2","addressHeader":"地址","allFieldsRequiredText":"所有字段都是必填的,除非标记为可选。","autoGeneratedPlaceholderText":"自动生成","birthdayNotInTheFuture":"生日不能是未来的日期","birthdayRequired":"生日是必填项","birthFieldLabelText":"出生","cancel":"取消","causeOfDeathInputLabel":"死因","cityVillage":"城市","configure":"配置","country":"国家","countyDistrict":"区县","createNew":"新建","dateOfBirthLabelText":"出生日期","deathDateInputLabel":"死亡日期","deathdayNotInTheFuture":"死亡日期不能是未来的日期","deleteIdentifierTooltip":"删除","deleteRelationshipTooltipText":"删除","discard":"放弃","discardModalBody":"您对该患者的详细信息所做的更改尚未保存。放弃更改吗?","discardModalHeader":"确认放弃更改","dobToggleLabelText":"出生日期已知?","edit":"编辑","editIdentifierTooltip":"编辑","editPatientDetails":"编辑患者详情","emailLabelText":"电子邮件","estimatedAgeInMonthsLabelText":"月龄估算","estimatedAgeInYearsLabelText":"年龄估算","familyNameLabelText":"姓氏","familyNameRequired":"姓氏是必填项","female":"女性","fieldErrorTitleMessage":"以下字段存在错误:","fullNameLabelText":"全名","genderLabelText":"性别","genderRequired":"性别是必填项","genderUnspecified":"性别未指定","givenNameLabelText":"名字","givenNameRequired":"名字是必填项","identifierValueRequired":"ID标识是必填项","idFieldLabelText":"ID标识","incompleteForm":"表单未填完","invalidEmail":"需要提供一个有效的电子邮件地址","invalidInput":"输入无效","isDeadInputLabel":"已故","jumpTo":"跳转至","loadingResults":"正在加载结果","male":"男性","middleNameLabelText":"中间名","months":"月","negativeMonths":"负的月份","negativeYears":"负的年份","no":"否","noResultsFound":"未找到结果","numberInNameDubious":"姓名中含有数字","optional":"可选的","other":"其他","patient":"患者","patientNameKnown":"患者的姓名已知?","phoneEmailLabelText":"电话、电子邮件等。","phoneNumberInputLabelText":"电话号码","postalCode":"邮政编码","registerPatient":"注册患者","registrationSuccessToastDescription":"现在可以通过姓名或ID来搜索患者。","registrationSuccessToastTitle":"新患者已创建","relationship":"关系","relationshipPlaceholder":"关系","relationshipRemovedText":"关系已移除","relationshipToPatient":"与患者的关系","relativeFullNameLabelText":"全名","relativeNamePlaceholder":"名字 姓氏","resetIdentifierTooltip":"重置","restoreRelationshipActionButton":"撤销","searchAddress":"搜索地址","sexFieldLabelText":"性别","stateProvince":"省份","stroke":"卒中","unidentifiedPatient":"未知患者","unknown":"未知","updatePatient":"更新患者","updationSuccessToastDescription":"患者信息已成功更新","updationSuccessToastTitle":"患者详情已更新","years":"年","yearsEstimateRequired":"需要年龄估算","yes":"是"}')}}]);
package/dist/757.js CHANGED
@@ -1 +1 @@
1
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[757],{2757:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"Ajouter un lien de parenté","addressHeader":"Adresse","allFieldsRequiredText":"Tous les champs sont requis sauf si explicitement indiqués facultatifs","autoGeneratedPlaceholderText":"Auto-generé","birthdayNotInTheFuture":"La date de naissance ne peut pas être dans le futur","birthdayRequired":"La date de naissance est requise","birthFieldLabelText":"Naissance","cancel":"Annuller","causeOfDeathInputLabel":"Cause de décès","closeOverlay":"Close overlay","configure":"Configurer","configureIdentifiers":"Configure identifiers","contactSection":"Contact Details","createNew":"Créer un nouveau","dateOfBirthLabelText":"Date de naissance","deathDateInputLabel":"Date de décès","deathdayNotInTheFuture":"Le décès ne peut pas être dans le futur","deathSection":"Death Info","deleteIdentifierTooltip":"Effacer","deleteRelationshipTooltipText":"Effacer","demographicsSection":"Basic Info","discard":"Abandonner","discardModalBody":"Les modifications que vous avez apportées aux données de ce patient n\'ont pas été enregistrées. Annuler les modifications?","discardModalHeader":"Confirmer l\'abandon des modifications","dobToggleLabelText":"Date de naissance connue?","edit":"Editer","editIdentifierTooltip":"Editer","editPatientDetails":"Editer les données du patient","editPatientDetailsBreadcrumb":"Edit patient details","error":"Error","errorFetchingOrderedFields":"Error occured fetching ordered fields for address hierarchy","estimatedAgeInMonthsLabelText":"Âge estimé en mois","estimatedAgeInYearsLabelText":"Âge estimé en années","familyNameLabelText":"Nom de famille","familyNameRequired":"Le nom de famille est requis","female":"Femme","fullNameLabelText":"Nom et Prénom","genderLabelText":"Sexe","genderRequired":"Le genre est requis","genderUnspecified":"Le genre n\'est pas spécifié","givenNameLabelText":"Prénom","givenNameRequired":"Le nom donné est requis","identifierValueRequired":"La valeur de l\'identifiant est requise","idFieldLabelText":"Identifiants","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"Formulaire incomplet","invalidEmail":"Un email valide est requis","invalidInput":"Entrée invalide","isDeadInputLabel":"Est décédé","jumpTo":"Passer à","loadingResults":"Résultats de chargement","male":"Homme","middleNameLabelText":"Deuxième nom","negativeMonths":"Mois négatifs","negativeYears":"Années négatives","no":"Non","noResultsFound":"Aucun résultat trouvé","numberInNameDubious":"Le chiffre dans le nom est suspect","optional":"Optionnel","other":"Autre","patient":"Patient","patientNameKnown":"Le nom du patient est connu?","patientRegistrationBreadcrumb":"Patient Registration","registerPatient":"Enregistrer un patient","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"Relation","relationshipPersonMustExist":"La personne liée doit être une personne existante","relationshipPlaceholder":"Relation","relationshipRemovedText":"Relation supprimée","relationshipsSection":"Relationships","relationshipToPatient":"Relation avec le patient","relativeFullNameLabelText":"Personne liée","relativeNamePlaceholder":"Prénom Nom de famile","resetIdentifierTooltip":"Réinitialiser","restoreRelationshipActionButton":"Annuler","searchAddress":"Chercher l\'adresse","searchIdentifierPlaceholder":"Search identifier","selectAnOption":"Select an option","sexFieldLabelText":"Sexe","source":"Source","stroke":"Accident","submitting":"Submitting","unableToFetch":"Unable to fetch person attribute type - {{personattributetype}}","unknown":"Inconnu","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"Mettre à jour le patient","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","yearsEstimateRequired":"Estimation du nombre d\'années requise","yes":"Oui"}')}}]);
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[757],{2757:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"Ajouter un lien de parenté","addressHeader":"Adresse","age":"Age","allFieldsRequiredText":"Tous les champs sont requis sauf si explicitement indiqués facultatifs","autoGeneratedPlaceholderText":"Auto-generé","birthdayNotInTheFuture":"La date de naissance ne peut pas être dans le futur","birthdayRequired":"La date de naissance est requise","birthFieldLabelText":"Naissance","cancel":"Annuller","causeOfDeathInputLabel":"Cause de décès","clientRegistryEmpty":"Create & Post Patient","clientVerificationWithClientRegistry":"Client verification with client registry","closeOverlay":"Close overlay","codedPersonAttributeAnswerSetEmpty":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an answer concept set UUID \'{{answerConceptSetUuid}}\' that does not have any concept answers.","codedPersonAttributeAnswerSetInvalid":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an invalid answer concept set UUID \'{{answerConceptSetUuid}}\'.","codedPersonAttributeNoAnswerSet":"The person attribute field \'{{codedPersonAttributeFieldId}}\' is of type \'coded\' but has been defined without an answer concept set UUID. The \'answerConceptSetUuid\' key is required.","configure":"Configurer","configureIdentifiers":"Configure identifiers","contactSection":"Contact Details","continue":"Continue to registration","createNew":"Créer un nouveau","dateOfBirth":"Date of birth","dateOfBirthLabelText":"Date de naissance","deathDateInputLabel":"Date de décès","deathdayNotInTheFuture":"Le décès ne peut pas être dans le futur","deathSection":"Death Info","deleteIdentifierTooltip":"Effacer","deleteRelationshipTooltipText":"Effacer","demographicsSection":"Basic Info","discard":"Abandonner","discardModalBody":"Les modifications que vous avez apportées aux données de ce patient n\'ont pas été enregistrées. Annuler les modifications?","discardModalHeader":"Confirmer l\'abandon des modifications","dobToggleLabelText":"Date de naissance connue?","edit":"Editer","editIdentifierTooltip":"Editer","editPatientDetails":"Editer les données du patient","editPatientDetailsBreadcrumb":"Edit patient details","error":"Error","errorFetchingOrderedFields":"Error occured fetching ordered fields for address hierarchy","estimatedAgeInMonthsLabelText":"Âge estimé en mois","estimatedAgeInYearsLabelText":"Âge estimé en années","familyNameLabelText":"Nom de famille","familyNameRequired":"Le nom de famille est requis","female":"Femme","fullNameLabelText":"Nom et Prénom","gender":"Gender","genderLabelText":"Sexe","genderRequired":"Le genre est requis","genderUnspecified":"Le genre n\'est pas spécifié","givenNameLabelText":"Prénom","givenNameRequired":"Le nom donné est requis","identifierValueRequired":"La valeur de l\'identifiant est requise","idFieldLabelText":"Identifiants","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"Formulaire incomplet","invalidEmail":"Un email valide est requis","invalidInput":"Entrée invalide","isDeadInputLabel":"Est décédé","jumpTo":"Passer à","male":"Homme","middleNameLabelText":"Deuxième nom","nascopNumber":"Nascop facility no","nationalId":"National ID","negativeMonths":"Mois négatifs","negativeYears":"Années négatives","no":"Non","numberInNameDubious":"Le chiffre dans le nom est suspect","obsFieldUnknownDatatype":"Concept for obs field \'{{fieldDefinitionId}}\' has unknown datatype \'{{datatypeName}}\'","optional":"Optionnel","originFacilityCode":"Origin facility code","originFacilityName":"Origin facility name","other":"Autre","patient":"Patient","patientDetailsFound":"Patient information found in the registry, do you want to use the information to continue with registration?","patientName":"Patient name","patientNameKnown":"Le nom du patient est connu?","patientNotFound":"The patient records could not be found in Client registry, do you want to continue to create and post patient to registry","patientRegistrationBreadcrumb":"Patient Registration","postToRegistry":"Post to registry","registerPatient":"Enregistrer un patient","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"Relation","relationshipPersonMustExist":"La personne liée doit être une personne existante","relationshipPlaceholder":"Relation","relationshipRemovedText":"Relation supprimée","relationshipsSection":"Relationships","relationshipToPatient":"Relation avec le patient","relativeFullNameLabelText":"Personne liée","relativeNamePlaceholder":"Prénom Nom de famile","resetIdentifierTooltip":"Réinitialiser","restoreRelationshipActionButton":"Annuler","searchAddress":"Chercher l\'adresse","searchIdentifierPlaceholder":"Search identifier","selectAnOption":"Select an option","selectCountry":"Select country","selectIdentifierType":"Select identifier type","sexFieldLabelText":"Sexe","source":"Source","stroke":"Accident","submitting":"Submitting","unableToFetch":"Unable to fetch person attribute type - {{personattributetype}}","unknown":"Inconnu","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"Mettre à jour le patient","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","useValues":"Use values","validate":"Validate","yearsEstimateRequired":"Estimation du nombre d\'années requise","yes":"Oui"}')}}]);
package/dist/784.js CHANGED
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see 784.js.LICENSE.txt */
2
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[784],{3426:(e,t)=>{var r=Symbol.for("react.element"),n=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),u=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),c=Symbol.for("react.provider"),i=Symbol.for("react.context"),f=Symbol.for("react.forward_ref"),s=Symbol.for("react.suspense"),l=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),y=Symbol.iterator,d={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},_=Object.assign,h={};function m(e,t,r){this.props=e,this.context=t,this.refs=h,this.updater=r||d}function b(){}function v(e,t,r){this.props=e,this.context=t,this.refs=h,this.updater=r||d}m.prototype.isReactComponent={},m.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},m.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},b.prototype=m.prototype;var S=v.prototype=new b;S.constructor=v,_(S,m.prototype),S.isPureReactComponent=!0;var k=Array.isArray,w=Object.prototype.hasOwnProperty,E={current:null},$={key:!0,ref:!0,__self:!0,__source:!0};function R(e,t,n){var o,u={},a=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(a=""+t.key),t)w.call(t,o)&&!$.hasOwnProperty(o)&&(u[o]=t[o]);var i=arguments.length-2;if(1===i)u.children=n;else if(1<i){for(var f=Array(i),s=0;s<i;s++)f[s]=arguments[s+2];u.children=f}if(e&&e.defaultProps)for(o in i=e.defaultProps)void 0===u[o]&&(u[o]=i[o]);return{$$typeof:r,type:e,key:a,ref:c,props:u,_owner:E.current}}function C(e){return"object"==typeof e&&null!==e&&e.$$typeof===r}var g=/\/+/g;function j(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function O(e,t,o,u,a){var c=typeof e;"undefined"!==c&&"boolean"!==c||(e=null);var i=!1;if(null===e)i=!0;else switch(c){case"string":case"number":i=!0;break;case"object":switch(e.$$typeof){case r:case n:i=!0}}if(i)return a=a(i=e),e=""===u?"."+j(i,0):u,k(a)?(o="",null!=e&&(o=e.replace(g,"$&/")+"/"),O(a,t,o,"",(function(e){return e}))):null!=a&&(C(a)&&(a=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(a,o+(!a.key||i&&i.key===a.key?"":(""+a.key).replace(g,"$&/")+"/")+e)),t.push(a)),1;if(i=0,u=""===u?".":u+":",k(e))for(var f=0;f<e.length;f++){var s=u+j(c=e[f],f);i+=O(c,t,o,s,a)}else if(s=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=y&&e[y]||e["@@iterator"])?e:null}(e),"function"==typeof s)for(e=s.call(e),f=0;!(c=e.next()).done;)i+=O(c=c.value,t,o,s=u+j(c,f++),a);else if("object"===c)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return i}function x(e,t,r){if(null==e)return e;var n=[],o=0;return O(e,n,"","",(function(e){return t.call(r,e,o++)})),n}function P(e){if(-1===e._status){var t=e._result;(t=t()).then((function(t){0!==e._status&&-1!==e._status||(e._status=1,e._result=t)}),(function(t){0!==e._status&&-1!==e._status||(e._status=2,e._result=t)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var I={current:null},T={transition:null},V={ReactCurrentDispatcher:I,ReactCurrentBatchConfig:T,ReactCurrentOwner:E};t.Children={map:x,forEach:function(e,t,r){x(e,(function(){t.apply(this,arguments)}),r)},count:function(e){var t=0;return x(e,(function(){t++})),t},toArray:function(e){return x(e,(function(e){return e}))||[]},only:function(e){if(!C(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},t.Component=m,t.Fragment=o,t.Profiler=a,t.PureComponent=v,t.StrictMode=u,t.Suspense=s,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=V,t.cloneElement=function(e,t,n){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var o=_({},e.props),u=e.key,a=e.ref,c=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,c=E.current),void 0!==t.key&&(u=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(f in t)w.call(t,f)&&!$.hasOwnProperty(f)&&(o[f]=void 0===t[f]&&void 0!==i?i[f]:t[f])}var f=arguments.length-2;if(1===f)o.children=n;else if(1<f){i=Array(f);for(var s=0;s<f;s++)i[s]=arguments[s+2];o.children=i}return{$$typeof:r,type:e.type,key:u,ref:a,props:o,_owner:c}},t.createContext=function(e){return(e={$$typeof:i,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:c,_context:e},e.Consumer=e},t.createElement=R,t.createFactory=function(e){var t=R.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:f,render:e}},t.isValidElement=C,t.lazy=function(e){return{$$typeof:p,_payload:{_status:-1,_result:e},_init:P}},t.memo=function(e,t){return{$$typeof:l,type:e,compare:void 0===t?null:t}},t.startTransition=function(e){var t=T.transition;T.transition={};try{e()}finally{T.transition=t}},t.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},t.useCallback=function(e,t){return I.current.useCallback(e,t)},t.useContext=function(e){return I.current.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e){return I.current.useDeferredValue(e)},t.useEffect=function(e,t){return I.current.useEffect(e,t)},t.useId=function(){return I.current.useId()},t.useImperativeHandle=function(e,t,r){return I.current.useImperativeHandle(e,t,r)},t.useInsertionEffect=function(e,t){return I.current.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return I.current.useLayoutEffect(e,t)},t.useMemo=function(e,t){return I.current.useMemo(e,t)},t.useReducer=function(e,t,r){return I.current.useReducer(e,t,r)},t.useRef=function(e){return I.current.useRef(e)},t.useState=function(e){return I.current.useState(e)},t.useSyncExternalStore=function(e,t,r){return I.current.useSyncExternalStore(e,t,r)},t.useTransition=function(){return I.current.useTransition()},t.version="18.2.0"},6292:(e,t,r)=>{e.exports=r(3426)}}]);
2
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[784],{3426:(e,t)=>{var r=Symbol.for("react.element"),n=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),u=Symbol.for("react.strict_mode"),a=Symbol.for("react.profiler"),c=Symbol.for("react.provider"),i=Symbol.for("react.context"),f=Symbol.for("react.forward_ref"),s=Symbol.for("react.suspense"),l=Symbol.for("react.memo"),p=Symbol.for("react.lazy"),y=Symbol.iterator,d={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},_=Object.assign,h={};function m(e,t,r){this.props=e,this.context=t,this.refs=h,this.updater=r||d}function b(){}function v(e,t,r){this.props=e,this.context=t,this.refs=h,this.updater=r||d}m.prototype.isReactComponent={},m.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},m.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},b.prototype=m.prototype;var S=v.prototype=new b;S.constructor=v,_(S,m.prototype),S.isPureReactComponent=!0;var k=Array.isArray,w=Object.prototype.hasOwnProperty,E={current:null},$={key:!0,ref:!0,__self:!0,__source:!0};function R(e,t,n){var o,u={},a=null,c=null;if(null!=t)for(o in void 0!==t.ref&&(c=t.ref),void 0!==t.key&&(a=""+t.key),t)w.call(t,o)&&!$.hasOwnProperty(o)&&(u[o]=t[o]);var i=arguments.length-2;if(1===i)u.children=n;else if(1<i){for(var f=Array(i),s=0;s<i;s++)f[s]=arguments[s+2];u.children=f}if(e&&e.defaultProps)for(o in i=e.defaultProps)void 0===u[o]&&(u[o]=i[o]);return{$$typeof:r,type:e,key:a,ref:c,props:u,_owner:E.current}}function C(e){return"object"==typeof e&&null!==e&&e.$$typeof===r}var g=/\/+/g;function j(e,t){return"object"==typeof e&&null!==e&&null!=e.key?function(e){var t={"=":"=0",":":"=2"};return"$"+e.replace(/[=:]/g,(function(e){return t[e]}))}(""+e.key):t.toString(36)}function O(e,t,o,u,a){var c=typeof e;"undefined"!==c&&"boolean"!==c||(e=null);var i=!1;if(null===e)i=!0;else switch(c){case"string":case"number":i=!0;break;case"object":switch(e.$$typeof){case r:case n:i=!0}}if(i)return a=a(i=e),e=""===u?"."+j(i,0):u,k(a)?(o="",null!=e&&(o=e.replace(g,"$&/")+"/"),O(a,t,o,"",(function(e){return e}))):null!=a&&(C(a)&&(a=function(e,t){return{$$typeof:r,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}(a,o+(!a.key||i&&i.key===a.key?"":(""+a.key).replace(g,"$&/")+"/")+e)),t.push(a)),1;if(i=0,u=""===u?".":u+":",k(e))for(var f=0;f<e.length;f++){var s=u+j(c=e[f],f);i+=O(c,t,o,s,a)}else if(s=function(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=y&&e[y]||e["@@iterator"])?e:null}(e),"function"==typeof s)for(e=s.call(e),f=0;!(c=e.next()).done;)i+=O(c=c.value,t,o,s=u+j(c,f++),a);else if("object"===c)throw t=String(e),Error("Objects are not valid as a React child (found: "+("[object Object]"===t?"object with keys {"+Object.keys(e).join(", ")+"}":t)+"). If you meant to render a collection of children, use an array instead.");return i}function x(e,t,r){if(null==e)return e;var n=[],o=0;return O(e,n,"","",(function(e){return t.call(r,e,o++)})),n}function P(e){if(-1===e._status){var t=e._result;(t=t()).then((function(t){0!==e._status&&-1!==e._status||(e._status=1,e._result=t)}),(function(t){0!==e._status&&-1!==e._status||(e._status=2,e._result=t)})),-1===e._status&&(e._status=0,e._result=t)}if(1===e._status)return e._result.default;throw e._result}var I={current:null},T={transition:null},V={ReactCurrentDispatcher:I,ReactCurrentBatchConfig:T,ReactCurrentOwner:E};t.Children={map:x,forEach:function(e,t,r){x(e,(function(){t.apply(this,arguments)}),r)},count:function(e){var t=0;return x(e,(function(){t++})),t},toArray:function(e){return x(e,(function(e){return e}))||[]},only:function(e){if(!C(e))throw Error("React.Children.only expected to receive a single React element child.");return e}},t.Component=m,t.Fragment=o,t.Profiler=a,t.PureComponent=v,t.StrictMode=u,t.Suspense=s,t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=V,t.cloneElement=function(e,t,n){if(null==e)throw Error("React.cloneElement(...): The argument must be a React element, but you passed "+e+".");var o=_({},e.props),u=e.key,a=e.ref,c=e._owner;if(null!=t){if(void 0!==t.ref&&(a=t.ref,c=E.current),void 0!==t.key&&(u=""+t.key),e.type&&e.type.defaultProps)var i=e.type.defaultProps;for(f in t)w.call(t,f)&&!$.hasOwnProperty(f)&&(o[f]=void 0===t[f]&&void 0!==i?i[f]:t[f])}var f=arguments.length-2;if(1===f)o.children=n;else if(1<f){i=Array(f);for(var s=0;s<f;s++)i[s]=arguments[s+2];o.children=i}return{$$typeof:r,type:e.type,key:u,ref:a,props:o,_owner:c}},t.createContext=function(e){return(e={$$typeof:i,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null}).Provider={$$typeof:c,_context:e},e.Consumer=e},t.createElement=R,t.createFactory=function(e){var t=R.bind(null,e);return t.type=e,t},t.createRef=function(){return{current:null}},t.forwardRef=function(e){return{$$typeof:f,render:e}},t.isValidElement=C,t.lazy=function(e){return{$$typeof:p,_payload:{_status:-1,_result:e},_init:P}},t.memo=function(e,t){return{$$typeof:l,type:e,compare:void 0===t?null:t}},t.startTransition=function(e){var t=T.transition;T.transition={};try{e()}finally{T.transition=t}},t.unstable_act=function(){throw Error("act(...) is not supported in production builds of React.")},t.useCallback=function(e,t){return I.current.useCallback(e,t)},t.useContext=function(e){return I.current.useContext(e)},t.useDebugValue=function(){},t.useDeferredValue=function(e){return I.current.useDeferredValue(e)},t.useEffect=function(e,t){return I.current.useEffect(e,t)},t.useId=function(){return I.current.useId()},t.useImperativeHandle=function(e,t,r){return I.current.useImperativeHandle(e,t,r)},t.useInsertionEffect=function(e,t){return I.current.useInsertionEffect(e,t)},t.useLayoutEffect=function(e,t){return I.current.useLayoutEffect(e,t)},t.useMemo=function(e,t){return I.current.useMemo(e,t)},t.useReducer=function(e,t,r){return I.current.useReducer(e,t,r)},t.useRef=function(e){return I.current.useRef(e)},t.useState=function(e){return I.current.useState(e)},t.useSyncExternalStore=function(e,t,r){return I.current.useSyncExternalStore(e,t,r)},t.useTransition=function(){return I.current.useTransition()},t.version="18.2.0"},2784:(e,t,r)=>{e.exports=r(3426)}}]);
package/dist/788.js CHANGED
@@ -1 +1 @@
1
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[788],{8788:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"Add Relationship","addressHeader":"Address","allFieldsRequiredText":"All fields are required unless marked optional","autoGeneratedPlaceholderText":"Auto-generated","birthdayNotInTheFuture":"","birthdayRequired":"","birthFieldLabelText":"Birth","cancel":"Cancel","causeOfDeathInputLabel":"Cause of Death","closeOverlay":"Close overlay","configure":"Configure","configureIdentifiers":"Configure identifiers","contactSection":"Contact Details","createNew":"Create New","dateOfBirthLabelText":"Date of Birth","deathDateInputLabel":"Date of Death","deathdayNotInTheFuture":"","deathSection":"Death Info","deleteIdentifierTooltip":"Delete","deleteRelationshipTooltipText":"Delete","demographicsSection":"Basic Info","discard":"Discard","discardModalBody":"The changes you made to this patient\'s details have not been saved. Discard changes?","discardModalHeader":"Confirm Discard Changes","dobToggleLabelText":"Date of Birth Known?","edit":"Edit","editIdentifierTooltip":"Edit","editPatientDetails":"Edit patient details","editPatientDetailsBreadcrumb":"Edit patient details","error":"Error","errorFetchingOrderedFields":"Error occured fetching ordered fields for address hierarchy","estimatedAgeInMonthsLabelText":"Estimated age in months","estimatedAgeInYearsLabelText":"Estimated age in years","familyNameLabelText":"Family Name","familyNameRequired":"","female":"Female","fullNameLabelText":"Full Name","genderLabelText":"Sex","genderRequired":"","genderUnspecified":"","givenNameLabelText":"First Name","givenNameRequired":"","identifierValueRequired":"Identifier value is required","idFieldLabelText":"Identifiers","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"Incomplete form","invalidEmail":"","invalidInput":"Invalid Input","isDeadInputLabel":"Is Dead","jumpTo":"Jump to","loadingResults":"Loading results","male":"Male","middleNameLabelText":"Middle Name","negativeMonths":"","negativeYears":"","no":"No","noResultsFound":"No results found","numberInNameDubious":"","optional":"optional","other":"Other","patient":"Patient","patientNameKnown":"Patient\'s Name is Known?","patientRegistrationBreadcrumb":"Patient Registration","registerPatient":"Register Patient","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"Relationship","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"Relationship","relationshipRemovedText":"Relationship removed","relationshipsSection":"Relationships","relationshipToPatient":"Relationship to patient","relativeFullNameLabelText":"Related person","relativeNamePlaceholder":"Firstname Familyname","resetIdentifierTooltip":"Reset","restoreRelationshipActionButton":"Undo","searchAddress":"Search address","searchIdentifierPlaceholder":"Search identifier","selectAnOption":"Select an option","sexFieldLabelText":"Sex","source":"Source","stroke":"Stroke","submitting":"Submitting","unableToFetch":"Unable to fetch person attribute type - {{personattributetype}}","unknown":"Unknown","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"Update Patient","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","yearsEstimateRequired":"","yes":"Yes"}')}}]);
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[788],{1625:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"Add Relationship","addressHeader":"Address","age":"Age","allFieldsRequiredText":"All fields are required unless marked optional","autoGeneratedPlaceholderText":"Auto-generated","birthdayNotInTheFuture":"","birthdayRequired":"","birthFieldLabelText":"Birth","cancel":"Cancel","causeOfDeathInputLabel":"Cause of Death","clientRegistryEmpty":"Create & Post Patient","clientVerificationWithClientRegistry":"Client verification with client registry","closeOverlay":"Close overlay","codedPersonAttributeAnswerSetEmpty":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an answer concept set UUID \'{{answerConceptSetUuid}}\' that does not have any concept answers.","codedPersonAttributeAnswerSetInvalid":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an invalid answer concept set UUID \'{{answerConceptSetUuid}}\'.","codedPersonAttributeNoAnswerSet":"The person attribute field \'{{codedPersonAttributeFieldId}}\' is of type \'coded\' but has been defined without an answer concept set UUID. The \'answerConceptSetUuid\' key is required.","configure":"Configure","configureIdentifiers":"Configure identifiers","contactSection":"Contact Details","continue":"Continue to registration","createNew":"Create New","dateOfBirth":"Date of birth","dateOfBirthLabelText":"Date of Birth","deathDateInputLabel":"Date of Death","deathdayNotInTheFuture":"","deathSection":"Death Info","deleteIdentifierTooltip":"Delete","deleteRelationshipTooltipText":"Delete","demographicsSection":"Basic Info","discard":"Discard","discardModalBody":"The changes you made to this patient\'s details have not been saved. Discard changes?","discardModalHeader":"Confirm Discard Changes","dobToggleLabelText":"Date of Birth Known?","edit":"Edit","editIdentifierTooltip":"Edit","editPatientDetails":"Edit patient details","editPatientDetailsBreadcrumb":"Edit patient details","error":"Error","errorFetchingOrderedFields":"Error occured fetching ordered fields for address hierarchy","estimatedAgeInMonthsLabelText":"Estimated age in months","estimatedAgeInYearsLabelText":"Estimated age in years","familyNameLabelText":"Family Name","familyNameRequired":"","female":"Female","fullNameLabelText":"Full Name","gender":"Gender","genderLabelText":"Sex","genderRequired":"","genderUnspecified":"","givenNameLabelText":"First Name","givenNameRequired":"","identifierValueRequired":"Identifier value is required","idFieldLabelText":"Identifiers","IDInstructions":"Select the identifiers you\'d like to add for this patient:","incompleteForm":"Incomplete form","invalidEmail":"","invalidInput":"Invalid Input","isDeadInputLabel":"Is Dead","jumpTo":"Jump to","male":"Male","middleNameLabelText":"Middle Name","nascopNumber":"Nascop facility no","nationalId":"National ID","negativeMonths":"","negativeYears":"","no":"No","numberInNameDubious":"","obsFieldUnknownDatatype":"Concept for obs field \'{{fieldDefinitionId}}\' has unknown datatype \'{{datatypeName}}\'","optional":"optional","originFacilityCode":"Origin facility code","originFacilityName":"Origin facility name","other":"Other","patient":"Patient","patientDetailsFound":"Patient information found in the registry, do you want to use the information to continue with registration?","patientName":"Patient name","patientNameKnown":"Patient\'s Name is Known?","patientNotFound":"The patient records could not be found in Client registry, do you want to continue to create and post patient to registry","patientRegistrationBreadcrumb":"Patient Registration","postToRegistry":"Post to registry","registerPatient":"Register Patient","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"Relationship","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"Relationship","relationshipRemovedText":"Relationship removed","relationshipsSection":"Relationships","relationshipToPatient":"Relationship to patient","relativeFullNameLabelText":"Related person","relativeNamePlaceholder":"Firstname Familyname","resetIdentifierTooltip":"Reset","restoreRelationshipActionButton":"Undo","searchAddress":"Search address","searchIdentifierPlaceholder":"Search identifier","selectAnOption":"Select an option","selectCountry":"Select country","selectIdentifierType":"Select identifier type","sexFieldLabelText":"Sex","source":"Source","stroke":"Stroke","submitting":"Submitting","unableToFetch":"Unable to fetch person attribute type - {{personattributetype}}","unknown":"Unknown","unknownPatientAttributeType":"Patient attribute type has unknown format {{personAttributeTypeFormat}}","updatePatient":"Update Patient","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","useValues":"Use values","validate":"Validate","yearsEstimateRequired":"","yes":"Yes"}')}}]);
package/dist/807.js CHANGED
@@ -1 +1 @@
1
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[807],{7807:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"បន្ថែមទំនាក់ទំនង","addressHeader":"អាសយដ្ឋាន","allFieldsRequiredText":"តម្រូវឱ្យបំពេញគ្រប់កន្លែងចំហរទាំងអស់ លុះត្រាតែមានសម្គាល់ថាជាជម្រើស","autoGeneratedPlaceholderText":"ទាញចេញទិន្នន័យដោយស្វ័យប្រវត្តិ","birthdayNotInTheFuture":"ថ្ងៃខែឆ្នាំកំណើតមិនអាចមាននាពេលអនាគតទេ","birthdayRequired":"តម្រូវឱ្យបំពេញថ្ងៃខែឆ្នាំកំណើត","birthFieldLabelText":"ថ្ងៃខែឆ្នាំកំណើត","cancel":"បោះបង់ចោល","causeOfDeathInputLabel":"មូលហេតុនៃការស្លាប់","closeOverlay":"បិទការត្រួតលើគ្នា។","configure":"កំណត់រចនាសម្ព័ន្ធ","configureIdentifiers":"ឯកសារកំណត់អត្តសញ្ញាណផ្សេងទៀត","contactSection":"ព័ត៌មានមរណភាព","createNew":"បង្កើតថ្មី","dateOfBirthLabelText":"ថ្ងៃខែឆ្នាំកំណើត","deathDateInputLabel":"កាលបរិច្ឆេទនៃការស្លាប់","deathdayNotInTheFuture":"ថ្ងៃស្លាប់មិនអាចមាននាពេលអនាគតទេ។","deathSection":"ព័ត៌មានមរណភាព","deleteIdentifierTooltip":"លុប","deleteRelationshipTooltipText":"លុប","demographicsSection":"ព័ត៌មានផ្ទាល់ខ្លួនអ្នកជំងឺ","discard":"បោះបង់","discardModalBody":"ការផ្លាស់ប្តូរដែលអ្នកបានធ្វើចំពោះព័ត៌មានលម្អិតរបស់អ្នកជំងឺនេះមិនត្រូវបានរក្សាទុកទេ។ បោះបង់ការផ្លាស់ប្តូរ?","discardModalHeader":"បញ្ជាក់ការផ្លាស់ប្តូរការបោះបង់","dobToggleLabelText":"ស្គាល់ថ្ងៃខែឆ្នាំកំណើត?","edit":"កែសម្រួល","editIdentifierTooltip":"កែសម្រួល","editPatientDetails":"កែសម្រួលព័ត៌មានលម្អិតអ្នកជំងឺ","editPatientDetailsBreadcrumb":"កែសម្រួលព័ត៌មានលម្អិតអ្នកជំងឺ","error":"មានបញ្ហាបច្ចេកទេស","errorFetchingOrderedFields":"មានបញ្ហាបច្ចេកទេសក្នុងការទាញទិន្នន័យតាមឋានានុក្រមអាសយដ្ឋាន","estimatedAgeInMonthsLabelText":"អាយុប៉ាន់ស្មានគិតជាខែ","estimatedAgeInYearsLabelText":"អាយុប៉ាន់ស្មានគិតជាឆ្នាំ","familyNameLabelText":"នាមត្រកូល","familyNameRequired":"តម្រូវឱ្យបំពេញនាមត្រកូល","female":"ស្រី","fullNameLabelText":"ឈ្មោះពេញ","genderLabelText":"ភេទ","genderRequired":"តម្រូវឱ្យបំពេញភេទ","genderUnspecified":"ភេទមិនត្រូវបានបញ្ជាក់ទេ","givenNameLabelText":"នាមខ្លួន","givenNameRequired":"តម្រូវឱ្យបំពេញឈ្មោះ","identifierValueRequired":"តម្រូវឱ្យមានកំណត់អត្តសញ្ញាណ","idFieldLabelText":"អ្នកកំណត់អត្តសញ្ញាណ","IDInstructions":"ជ្រើសរើសអត្តសញ្ញាណដែលអ្នកចង់បន្ថែមសម្រាប់អ្នកជំងឺនេះ៖","incompleteForm":"ទម្រង់មិនពេញលេញ","invalidEmail":"ត្រូវតែផ្តល់ឱ្យអ៊ីមែលដែលមានសុពលភាព","invalidInput":"ការបញ្ចូលមិនត្រឹមត្រូវ","isDeadInputLabel":"គឺស្លាប់","jumpTo":"រំលងទៅ","loadingResults":"កំពុងផ្ទុកលទ្ធផល","male":"ប្រុស","middleNameLabelText":"លេខជាឈ្មោះដែលសង្ស័យ","negativeMonths":"ខែអវិជ្ជមាន","negativeYears":"ឆ្នាំអវិជ្ជមាន","no":"ទេ","noResultsFound":"រកមិនឃើញលទ្ធផលទេ","numberInNameDubious":"លេខគឺជាឈ្មោះគួរឱ្យសង្ស័យ","optional":"ជាជម្រើស","other":"ផ្សេងៗ","patient":"អ្នកជំងឺ","patientNameKnown":"ស្គាល់ឈ្មោះអ្នកជំងឺឬទេ?","patientRegistrationBreadcrumb":"ការចុះឈ្មោះអ្នកជំងឺ","registerPatient":"ចុះឈ្មោះអ្នកជំងឺ","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"ទំនាក់ទំនង","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"ទំនាក់ទំនង","relationshipRemovedText":"ការទំនាក់ទំនងត្រូវបានដកចេញ","relationshipsSection":"ទំនាក់ទំនង","relationshipToPatient":"ការទាក់ទងទៅនឹងអ្នកជំងឺ","relativeFullNameLabelText":"ឈ្មោះពេញ","relativeNamePlaceholder":"នាមត្រកូលនាមខ្លួន","resetIdentifierTooltip":"រៀបចំឡើងវិញ","restoreRelationshipActionButton":"វិលត្រឡប់មកដើមវិញ","searchAddress":"ស្វែងរកអាសយដ្ឋាន","searchIdentifierPlaceholder":"ស្វែងរកអត្តសញ្ញាណ","selectAnOption":"យកជម្រើសមួយ","sexFieldLabelText":"ភេទ","source":"ប្រភព","stroke":"ជំងឺស្ទះសរសៃឈាមខួរក្បាល","submitting":"Submitting","unableToFetch":"មិនអាចទាញយកប្រភេទគុណលក្ខណៈតាមអ្នកជំងឺបានទេ - {{personattributetype}}","unknown":"មិនដឹង","unknownPatientAttributeType":"ប្រភេទនៃគុណលក្ខណៈរបស់អ្នកជំងឺគឺមិនស្គាល់។ {{personAttributeTypeFormat}}","updatePatient":"ធ្វើបច្ចុប្បន្នភាពអ្នកជំងឺ","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","yearsEstimateRequired":"តម្រូវឱ្យមានការប៉ាន់ស្មានឆ្នាំ","yes":"បាទ/ចាស"}')}}]);
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[807],{7807:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"បន្ថែមទំនាក់ទំនង","addressHeader":"អាសយដ្ឋាន","age":"Age","allFieldsRequiredText":"តម្រូវឱ្យបំពេញគ្រប់កន្លែងចំហរទាំងអស់ លុះត្រាតែមានសម្គាល់ថាជាជម្រើស","autoGeneratedPlaceholderText":"ទាញចេញទិន្នន័យដោយស្វ័យប្រវត្តិ","birthdayNotInTheFuture":"ថ្ងៃខែឆ្នាំកំណើតមិនអាចមាននាពេលអនាគតទេ","birthdayRequired":"តម្រូវឱ្យបំពេញថ្ងៃខែឆ្នាំកំណើត","birthFieldLabelText":"ថ្ងៃខែឆ្នាំកំណើត","cancel":"បោះបង់ចោល","causeOfDeathInputLabel":"មូលហេតុនៃការស្លាប់","clientRegistryEmpty":"Create & Post Patient","clientVerificationWithClientRegistry":"Client verification with client registry","closeOverlay":"បិទការត្រួតលើគ្នា។","codedPersonAttributeAnswerSetEmpty":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an answer concept set UUID \'{{answerConceptSetUuid}}\' that does not have any concept answers.","codedPersonAttributeAnswerSetInvalid":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an invalid answer concept set UUID \'{{answerConceptSetUuid}}\'.","codedPersonAttributeNoAnswerSet":"The person attribute field \'{{codedPersonAttributeFieldId}}\' is of type \'coded\' but has been defined without an answer concept set UUID. The \'answerConceptSetUuid\' key is required.","configure":"កំណត់រចនាសម្ព័ន្ធ","configureIdentifiers":"ឯកសារកំណត់អត្តសញ្ញាណផ្សេងទៀត","contactSection":"ព័ត៌មានមរណភាព","continue":"Continue to registration","createNew":"បង្កើតថ្មី","dateOfBirth":"Date of birth","dateOfBirthLabelText":"ថ្ងៃខែឆ្នាំកំណើត","deathDateInputLabel":"កាលបរិច្ឆេទនៃការស្លាប់","deathdayNotInTheFuture":"ថ្ងៃស្លាប់មិនអាចមាននាពេលអនាគតទេ។","deathSection":"ព័ត៌មានមរណភាព","deleteIdentifierTooltip":"លុប","deleteRelationshipTooltipText":"លុប","demographicsSection":"ព័ត៌មានផ្ទាល់ខ្លួនអ្នកជំងឺ","discard":"បោះបង់","discardModalBody":"ការផ្លាស់ប្តូរដែលអ្នកបានធ្វើចំពោះព័ត៌មានលម្អិតរបស់អ្នកជំងឺនេះមិនត្រូវបានរក្សាទុកទេ។ បោះបង់ការផ្លាស់ប្តូរ?","discardModalHeader":"បញ្ជាក់ការផ្លាស់ប្តូរការបោះបង់","dobToggleLabelText":"ស្គាល់ថ្ងៃខែឆ្នាំកំណើត?","edit":"កែសម្រួល","editIdentifierTooltip":"កែសម្រួល","editPatientDetails":"កែសម្រួលព័ត៌មានលម្អិតអ្នកជំងឺ","editPatientDetailsBreadcrumb":"កែសម្រួលព័ត៌មានលម្អិតអ្នកជំងឺ","error":"មានបញ្ហាបច្ចេកទេស","errorFetchingOrderedFields":"មានបញ្ហាបច្ចេកទេសក្នុងការទាញទិន្នន័យតាមឋានានុក្រមអាសយដ្ឋាន","estimatedAgeInMonthsLabelText":"អាយុប៉ាន់ស្មានគិតជាខែ","estimatedAgeInYearsLabelText":"អាយុប៉ាន់ស្មានគិតជាឆ្នាំ","familyNameLabelText":"នាមត្រកូល","familyNameRequired":"តម្រូវឱ្យបំពេញនាមត្រកូល","female":"ស្រី","fullNameLabelText":"ឈ្មោះពេញ","gender":"Gender","genderLabelText":"ភេទ","genderRequired":"តម្រូវឱ្យបំពេញភេទ","genderUnspecified":"ភេទមិនត្រូវបានបញ្ជាក់ទេ","givenNameLabelText":"នាមខ្លួន","givenNameRequired":"តម្រូវឱ្យបំពេញឈ្មោះ","identifierValueRequired":"តម្រូវឱ្យមានកំណត់អត្តសញ្ញាណ","idFieldLabelText":"អ្នកកំណត់អត្តសញ្ញាណ","IDInstructions":"ជ្រើសរើសអត្តសញ្ញាណដែលអ្នកចង់បន្ថែមសម្រាប់អ្នកជំងឺនេះ៖","incompleteForm":"ទម្រង់មិនពេញលេញ","invalidEmail":"ត្រូវតែផ្តល់ឱ្យអ៊ីមែលដែលមានសុពលភាព","invalidInput":"ការបញ្ចូលមិនត្រឹមត្រូវ","isDeadInputLabel":"គឺស្លាប់","jumpTo":"រំលងទៅ","male":"ប្រុស","middleNameLabelText":"លេខជាឈ្មោះដែលសង្ស័យ","nascopNumber":"Nascop facility no","nationalId":"National ID","negativeMonths":"ខែអវិជ្ជមាន","negativeYears":"ឆ្នាំអវិជ្ជមាន","no":"ទេ","numberInNameDubious":"លេខគឺជាឈ្មោះគួរឱ្យសង្ស័យ","obsFieldUnknownDatatype":"Concept for obs field \'{{fieldDefinitionId}}\' has unknown datatype \'{{datatypeName}}\'","optional":"ជាជម្រើស","originFacilityCode":"Origin facility code","originFacilityName":"Origin facility name","other":"ផ្សេងៗ","patient":"អ្នកជំងឺ","patientDetailsFound":"Patient information found in the registry, do you want to use the information to continue with registration?","patientName":"Patient name","patientNameKnown":"ស្គាល់ឈ្មោះអ្នកជំងឺឬទេ?","patientNotFound":"The patient records could not be found in Client registry, do you want to continue to create and post patient to registry","patientRegistrationBreadcrumb":"ការចុះឈ្មោះអ្នកជំងឺ","postToRegistry":"Post to registry","registerPatient":"ចុះឈ្មោះអ្នកជំងឺ","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"ទំនាក់ទំនង","relationshipPersonMustExist":"Related person must be an existing person","relationshipPlaceholder":"ទំនាក់ទំនង","relationshipRemovedText":"ការទំនាក់ទំនងត្រូវបានដកចេញ","relationshipsSection":"ទំនាក់ទំនង","relationshipToPatient":"ការទាក់ទងទៅនឹងអ្នកជំងឺ","relativeFullNameLabelText":"ឈ្មោះពេញ","relativeNamePlaceholder":"នាមត្រកូលនាមខ្លួន","resetIdentifierTooltip":"រៀបចំឡើងវិញ","restoreRelationshipActionButton":"វិលត្រឡប់មកដើមវិញ","searchAddress":"ស្វែងរកអាសយដ្ឋាន","searchIdentifierPlaceholder":"ស្វែងរកអត្តសញ្ញាណ","selectAnOption":"យកជម្រើសមួយ","selectCountry":"Select country","selectIdentifierType":"Select identifier type","sexFieldLabelText":"ភេទ","source":"ប្រភព","stroke":"ជំងឺស្ទះសរសៃឈាមខួរក្បាល","submitting":"Submitting","unableToFetch":"មិនអាចទាញយកប្រភេទគុណលក្ខណៈតាមអ្នកជំងឺបានទេ - {{personattributetype}}","unknown":"មិនដឹង","unknownPatientAttributeType":"ប្រភេទនៃគុណលក្ខណៈរបស់អ្នកជំងឺគឺមិនស្គាល់។ {{personAttributeTypeFormat}}","updatePatient":"ធ្វើបច្ចុប្បន្នភាពអ្នកជំងឺ","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","useValues":"Use values","validate":"Validate","yearsEstimateRequired":"តម្រូវឱ្យមានការប៉ាន់ស្មានឆ្នាំ","yes":"បាទ/ចាស"}')}}]);
package/dist/833.js CHANGED
@@ -1 +1 @@
1
- "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[833],{5833:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"הוסף יחס","addressHeader":"כתובת","allFieldsRequiredText":"כל השדות נדרשים אלא אם צוין אחרת","autoGeneratedPlaceholderText":"נוצר אוטומטית","birthdayNotInTheFuture":"תאריך הלידה לא יכול להיות בעתיד","birthdayRequired":"תאריך הלידה נדרש","birthFieldLabelText":"לידה","cancel":"ביטול","causeOfDeathInputLabel":"סיבת המוות","closeOverlay":"סגור חיפוש","configure":"הגדר","configureIdentifiers":"הגדר זיהויים","contactSection":"פרטי יצירת קשר","createNew":"צור חדש","dateOfBirthLabelText":"תאריך לידה","deathDateInputLabel":"תאריך המוות","deathdayNotInTheFuture":"תאריך המוות לא יכול להיות בעתיד","deathSection":"מידע על המוות","deleteIdentifierTooltip":"מחק","deleteRelationshipTooltipText":"מחק","demographicsSection":"מידע בסיסי","discard":"התעלם","discardModalBody":"השינויים שביצעת בפרטי המטופל לא נשמרו. האם להתעלם מהשינויים?","discardModalHeader":"אשר התעלמות מהשינויים","dobToggleLabelText":"תאריך הלידה ידוע?","edit":"עריכה","editIdentifierTooltip":"ערוך","editPatientDetails":"ערוך פרטי מטופל","editPatientDetailsBreadcrumb":"ערוך פרטי מטופל","error":"שגיאה","errorFetchingOrderedFields":"שגיאה בעת קבלת השדות המסודרים להירכבות הכתובת","estimatedAgeInMonthsLabelText":"גיל משוער בחודשים","estimatedAgeInYearsLabelText":"גיל משוער בשנים","familyNameLabelText":"שם משפחה","familyNameRequired":"שם משפחה נדרש","female":"נקבה","fullNameLabelText":"שם מלא","genderLabelText":"מין","genderRequired":"מין נדרש","genderUnspecified":"מין לא מוגדר","givenNameLabelText":"שם פרטי","givenNameRequired":"שם פרטי נדרש","identifierValueRequired":"ערך זיהוי נדרש","idFieldLabelText":"זיהויים","IDInstructions":"בחר את הזיהויים שתרצה להוסיף למטופל זה:","incompleteForm":"טופס לא מלא","invalidEmail":"יש לספק כתובת אימייל חוקית","invalidInput":"קלט לא חוקי","isDeadInputLabel":"מת?","jumpTo":"קפיצה ל","loadingResults":"טוען תוצאות","male":"זכר","middleNameLabelText":"שם תוכני","negativeMonths":"חודשים שליליים","negativeYears":"שנים שליליות","no":"לא","noResultsFound":"לא נמצאו תוצאות","numberInNameDubious":"מספר בשם חשוד","optional":"אופציונלי","other":"אחר","patient":"מטופל","patientNameKnown":"שם המטופל ידוע?","patientRegistrationBreadcrumb":"רישום מטופל","registerPatient":"רשום מטופל","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"קשר","relationshipPersonMustExist":"האדם הקשור חייב להיות אדם קיים","relationshipPlaceholder":"קשר","relationshipRemovedText":"קשר הוסר","relationshipsSection":"קשרים","relationshipToPatient":"קשר למטופל","relativeFullNameLabelText":"שם מלא","relativeNamePlaceholder":"שם פרטי שם משפחה","resetIdentifierTooltip":"איפוס","restoreRelationshipActionButton":"ביטול","searchAddress":"חיפוש כתובת","searchIdentifierPlaceholder":"חיפוש זיהוי","selectAnOption":"בחר אפשרות","sexFieldLabelText":"מין","source":"מקור","stroke":"שבץ","submitting":"Submitting","unableToFetch":"אין אפשרות לאחזר סוג מאפיין אדם - {{personattributetype}}","unknown":"לא ידוע","unknownPatientAttributeType":"סוג המאפיין של המטופל לא ידוע {{personAttributeTypeFormat}}","updatePatient":"עדכון פרטי מטופל","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","yearsEstimateRequired":"נדרש חיזוי שנים","yes":"כן"}')}}]);
1
+ "use strict";(globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[]).push([[833],{5833:e=>{e.exports=JSON.parse('{"addRelationshipButtonText":"הוסף יחס","addressHeader":"כתובת","age":"Age","allFieldsRequiredText":"כל השדות נדרשים אלא אם צוין אחרת","autoGeneratedPlaceholderText":"נוצר אוטומטית","birthdayNotInTheFuture":"תאריך הלידה לא יכול להיות בעתיד","birthdayRequired":"תאריך הלידה נדרש","birthFieldLabelText":"לידה","cancel":"ביטול","causeOfDeathInputLabel":"סיבת המוות","clientRegistryEmpty":"Create & Post Patient","clientVerificationWithClientRegistry":"Client verification with client registry","closeOverlay":"סגור חיפוש","codedPersonAttributeAnswerSetEmpty":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an answer concept set UUID \'{{answerConceptSetUuid}}\' that does not have any concept answers.","codedPersonAttributeAnswerSetInvalid":"The coded person attribute field \'{{codedPersonAttributeFieldId}}\' has been defined with an invalid answer concept set UUID \'{{answerConceptSetUuid}}\'.","codedPersonAttributeNoAnswerSet":"The person attribute field \'{{codedPersonAttributeFieldId}}\' is of type \'coded\' but has been defined without an answer concept set UUID. The \'answerConceptSetUuid\' key is required.","configure":"הגדר","configureIdentifiers":"הגדר זיהויים","contactSection":"פרטי יצירת קשר","continue":"Continue to registration","createNew":"צור חדש","dateOfBirth":"Date of birth","dateOfBirthLabelText":"תאריך לידה","deathDateInputLabel":"תאריך המוות","deathdayNotInTheFuture":"תאריך המוות לא יכול להיות בעתיד","deathSection":"מידע על המוות","deleteIdentifierTooltip":"מחק","deleteRelationshipTooltipText":"מחק","demographicsSection":"מידע בסיסי","discard":"התעלם","discardModalBody":"השינויים שביצעת בפרטי המטופל לא נשמרו. האם להתעלם מהשינויים?","discardModalHeader":"אשר התעלמות מהשינויים","dobToggleLabelText":"תאריך הלידה ידוע?","edit":"עריכה","editIdentifierTooltip":"ערוך","editPatientDetails":"ערוך פרטי מטופל","editPatientDetailsBreadcrumb":"ערוך פרטי מטופל","error":"שגיאה","errorFetchingOrderedFields":"שגיאה בעת קבלת השדות המסודרים להירכבות הכתובת","estimatedAgeInMonthsLabelText":"גיל משוער בחודשים","estimatedAgeInYearsLabelText":"גיל משוער בשנים","familyNameLabelText":"שם משפחה","familyNameRequired":"שם משפחה נדרש","female":"נקבה","fullNameLabelText":"שם מלא","gender":"Gender","genderLabelText":"מין","genderRequired":"מין נדרש","genderUnspecified":"מין לא מוגדר","givenNameLabelText":"שם פרטי","givenNameRequired":"שם פרטי נדרש","identifierValueRequired":"ערך זיהוי נדרש","idFieldLabelText":"זיהויים","IDInstructions":"בחר את הזיהויים שתרצה להוסיף למטופל זה:","incompleteForm":"טופס לא מלא","invalidEmail":"יש לספק כתובת אימייל חוקית","invalidInput":"קלט לא חוקי","isDeadInputLabel":"מת?","jumpTo":"קפיצה ל","male":"זכר","middleNameLabelText":"שם תוכני","nascopNumber":"Nascop facility no","nationalId":"National ID","negativeMonths":"חודשים שליליים","negativeYears":"שנים שליליות","no":"לא","numberInNameDubious":"מספר בשם חשוד","obsFieldUnknownDatatype":"Concept for obs field \'{{fieldDefinitionId}}\' has unknown datatype \'{{datatypeName}}\'","optional":"אופציונלי","originFacilityCode":"Origin facility code","originFacilityName":"Origin facility name","other":"אחר","patient":"מטופל","patientDetailsFound":"Patient information found in the registry, do you want to use the information to continue with registration?","patientName":"Patient name","patientNameKnown":"שם המטופל ידוע?","patientNotFound":"The patient records could not be found in Client registry, do you want to continue to create and post patient to registry","patientRegistrationBreadcrumb":"רישום מטופל","postToRegistry":"Post to registry","registerPatient":"רשום מטופל","registerPatientSuccessSnackbarSubtitle":"The patient can now be found by searching for them using their name or ID number","registerPatientSuccessSnackbarTitle":"New Patient Created","registrationErrorSnackbarTitle":"Patient Registration Failed","relationship":"קשר","relationshipPersonMustExist":"האדם הקשור חייב להיות אדם קיים","relationshipPlaceholder":"קשר","relationshipRemovedText":"קשר הוסר","relationshipsSection":"קשרים","relationshipToPatient":"קשר למטופל","relativeFullNameLabelText":"שם מלא","relativeNamePlaceholder":"שם פרטי שם משפחה","resetIdentifierTooltip":"איפוס","restoreRelationshipActionButton":"ביטול","searchAddress":"חיפוש כתובת","searchIdentifierPlaceholder":"חיפוש זיהוי","selectAnOption":"בחר אפשרות","selectCountry":"Select country","selectIdentifierType":"Select identifier type","sexFieldLabelText":"מין","source":"מקור","stroke":"שבץ","submitting":"Submitting","unableToFetch":"אין אפשרות לאחזר סוג מאפיין אדם - {{personattributetype}}","unknown":"לא ידוע","unknownPatientAttributeType":"סוג המאפיין של המטופל לא ידוע {{personAttributeTypeFormat}}","updatePatient":"עדכון פרטי מטופל","updatePatientErrorSnackbarTitle":"Patient Details Update Failed","updatePatientSuccessSnackbarSubtitle":"The patient\'s information has been successfully updated","updatePatientSuccessSnackbarTitle":"Patient Details Updated","useValues":"Use values","validate":"Validate","yearsEstimateRequired":"נדרש חיזוי שנים","yes":"כן"}')}}]);
@@ -0,0 +1 @@
1
+ var _kenyaemr_esm_patient_registration_app;(()=>{"use strict";var e,r,t,n,a,o,i,l,s,u,p,f,d,h,c,m={3158:(e,r,t)=>{var n={"./start":()=>Promise.all([t.e(255),t.e(431),t.e(268),t.e(325),t.e(102)]).then((()=>()=>t(102)))},a=(e,r)=>(t.R=r,r=t.o(n,e)?n[e]():Promise.resolve().then((()=>{throw new Error('Module "'+e+'" does not exist in container.')})),t.R=void 0,r),o=(e,r)=>{if(t.S){var n="default",a=t.S[n];if(a&&a!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[n]=e,t.I(n,r)}};t.d(r,{get:()=>a,init:()=>o})}},v={};function g(e){var r=v[e];if(void 0!==r)return r.exports;var t=v[e]={id:e,loaded:!1,exports:{}};return m[e].call(t.exports,t,t.exports,g),t.loaded=!0,t.exports}g.m=m,g.c=v,g.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return g.d(r,{a:r}),r},g.d=(e,r)=>{for(var t in r)g.o(r,t)&&!g.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},g.f={},g.e=e=>Promise.all(Object.keys(g.f).reduce(((r,t)=>(g.f[t](e,r),r)),[])),g.u=e=>e+".js",g.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),g.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),e={},r="@kenyaemr/esm-patient-registration-app:",g.l=(t,n,a,o)=>{if(e[t])e[t].push(n);else{var i,l;if(void 0!==a)for(var s=document.getElementsByTagName("script"),u=0;u<s.length;u++){var p=s[u];if(p.getAttribute("src")==t||p.getAttribute("data-webpack")==r+a){i=p;break}}i||(l=!0,(i=document.createElement("script")).charset="utf-8",i.timeout=120,g.nc&&i.setAttribute("nonce",g.nc),i.setAttribute("data-webpack",r+a),i.src=t),e[t]=[n];var f=(r,n)=>{i.onerror=i.onload=null,clearTimeout(d);var a=e[t];if(delete e[t],i.parentNode&&i.parentNode.removeChild(i),a&&a.forEach((e=>e(n))),r)return r(n)},d=setTimeout(f.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=f.bind(null,i.onerror),i.onload=f.bind(null,i.onload),l&&document.head.appendChild(i)}},g.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},g.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{g.S={};var e={},r={};g.I=(t,n)=>{n||(n=[]);var a=r[t];if(a||(a=r[t]={}),!(n.indexOf(a)>=0)){if(n.push(a),e[t])return e[t];g.o(g.S,t)||(g.S[t]={});var o=g.S[t],i="@kenyaemr/esm-patient-registration-app",l=(e,r,t,n)=>{var a=o[e]=o[e]||{},l=a[r];(!l||!l.loaded&&(!n!=!l.eager?n:i>l.from))&&(a[r]={get:t,from:i,eager:!!n})},s=[];return"default"===t&&(l("@openmrs/esm-framework","5.3.3-pre.1347",(()=>Promise.all([g.e(130),g.e(268)]).then((()=>()=>g(130))))),l("dayjs","1.11.6",(()=>g.e(879).then((()=>()=>g(8879))))),l("react-i18next","11.18.6",(()=>Promise.all([g.e(268),g.e(62)]).then((()=>()=>g(6062))))),l("react-router-dom","6.4.3",(()=>Promise.all([g.e(591),g.e(268)]).then((()=>()=>g(6591))))),l("react","18.2.0",(()=>g.e(784).then((()=>()=>g(2784))))),l("swr/_internal","2.0.1",(()=>Promise.all([g.e(729),g.e(268)]).then((()=>()=>g(4729))))),l("swr/immutable","2.0.1",(()=>Promise.all([g.e(255),g.e(268),g.e(325),g.e(152)]).then((()=>()=>g(2303)))))),e[t]=s.length?Promise.all(s).then((()=>e[t]=1)):1}}})(),(()=>{var e;g.g.importScripts&&(e=g.g.location+"");var r=g.g.document;if(!e&&r&&(r.currentScript&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var n=t.length-1;n>-1&&!e;)e=t[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),g.p=e})(),t=e=>{var r=e=>e.split(".").map((e=>+e==e?+e:e)),t=/^([^-+]+)?(?:-([^+]+))?(?:\+(.+))?$/.exec(e),n=t[1]?r(t[1]):[];return t[2]&&(n.length++,n.push.apply(n,r(t[2]))),t[3]&&(n.push([]),n.push.apply(n,r(t[3]))),n},n=(e,r)=>{e=t(e),r=t(r);for(var n=0;;){if(n>=e.length)return n<r.length&&"u"!=(typeof r[n])[0];var a=e[n],o=(typeof a)[0];if(n>=r.length)return"u"==o;var i=r[n],l=(typeof i)[0];if(o!=l)return"o"==o&&"n"==l||"s"==l||"u"==o;if("o"!=o&&"u"!=o&&a!=i)return a<i;n++}},a=e=>{var r=e[0],t="";if(1===e.length)return"*";if(r+.5){t+=0==r?">=":-1==r?"<":1==r?"^":2==r?"~":r>0?"=":"!=";for(var n=1,o=1;o<e.length;o++)n--,t+="u"==(typeof(l=e[o]))[0]?"-":(n>0?".":"")+(n=2,l);return t}var i=[];for(o=1;o<e.length;o++){var l=e[o];i.push(0===l?"not("+s()+")":1===l?"("+s()+" || "+s()+")":2===l?i.pop()+" "+i.pop():a(l))}return s();function s(){return i.pop().replace(/^\((.+)\)$/,"$1")}},o=(e,r)=>{if(0 in e){r=t(r);var n=e[0],a=n<0;a&&(n=-n-1);for(var i=0,l=1,s=!0;;l++,i++){var u,p,f=l<e.length?(typeof e[l])[0]:"";if(i>=r.length||"o"==(p=(typeof(u=r[i]))[0]))return!s||("u"==f?l>n&&!a:""==f!=a);if("u"==p){if(!s||"u"!=f)return!1}else if(s)if(f==p)if(l<=n){if(u!=e[l])return!1}else{if(a?u>e[l]:u<e[l])return!1;u!=e[l]&&(s=!1)}else if("s"!=f&&"n"!=f){if(a||l<=n)return!1;s=!1,l--}else{if(l<=n||p<f!=a)return!1;s=!1}else"s"!=f&&"n"!=f&&(s=!1,l--)}}var d=[],h=d.pop.bind(d);for(i=1;i<e.length;i++){var c=e[i];d.push(1==c?h()|h():2==c?h()&h():c?o(c,r):!h())}return!!h()},i=(e,r)=>{var t=e[r];return Object.keys(t).reduce(((e,r)=>!e||!t[e].loaded&&n(e,r)?r:e),0)},l=(e,r,t,n)=>"Unsatisfied version "+t+" from "+(t&&e[r][t].from)+" of shared singleton module "+r+" (required "+a(n)+")",s=(e,r,t,n)=>{var a=i(e,t);return o(n,a)||u(l(e,t,a,n)),p(e[t][a])},u=e=>{"undefined"!=typeof console&&console.warn&&console.warn(e)},p=e=>(e.loaded=1,e.get()),f=(e=>function(r,t,n,a){var o=g.I(r);return o&&o.then?o.then(e.bind(e,r,g.S[r],t,n,a)):e(0,g.S[r],t,n,a)})(((e,r,t,n,a)=>r&&g.o(r,t)?s(r,0,t,n):a())),d={},h={268:()=>f("default","react",[1,18],(()=>g.e(784).then((()=>()=>g(2784))))),3325:()=>f("default","swr/_internal",[1,2],(()=>g.e(729).then((()=>()=>g(4729))))),2870:()=>f("default","@openmrs/esm-framework",[1,5],(()=>g.e(130).then((()=>()=>g(130))))),3565:()=>f("default","dayjs",[1,1],(()=>g.e(879).then((()=>()=>g(8879))))),4924:()=>f("default","react-i18next",[1,11],(()=>g.e(840).then((()=>()=>g(6062))))),8744:()=>f("default","react-router-dom",[1,6],(()=>g.e(591).then((()=>()=>g(6591))))),9198:()=>f("default","swr/immutable",[1,2],(()=>g.e(303).then((()=>()=>g(2303)))))},c={102:[2870,3565,4924,8744,9198],268:[268],325:[3325]},g.f.consumes=(e,r)=>{g.o(c,e)&&c[e].forEach((e=>{if(g.o(d,e))return r.push(d[e]);var t=r=>{d[e]=0,g.m[e]=t=>{delete g.c[e],t.exports=r()}},n=r=>{delete d[e],g.m[e]=t=>{throw delete g.c[e],r}};try{var a=h[e]();a.then?r.push(d[e]=a.then(t).catch(n)):t(a)}catch(e){n(e)}}))},(()=>{var e={884:0};g.f.j=(r,t)=>{var n=g.o(e,r)?e[r]:void 0;if(0!==n)if(n)t.push(n[2]);else if(/^(268|325)$/.test(r))e[r]=0;else{var a=new Promise(((t,a)=>n=e[r]=[t,a]));t.push(n[2]=a);var o=g.p+g.u(r),i=new Error;g.l(o,(t=>{if(g.o(e,r)&&(0!==(n=e[r])&&(e[r]=void 0),n)){var a=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;i.message="Loading chunk "+r+" failed.\n("+a+": "+o+")",i.name="ChunkLoadError",i.type=a,i.request=o,n[1](i)}}),"chunk-"+r,r)}};var r=(r,t)=>{var n,a,[o,i,l]=t,s=0;if(o.some((r=>0!==e[r]))){for(n in i)g.o(i,n)&&(g.m[n]=i[n]);l&&l(g)}for(r&&r(t);s<o.length;s++)a=o[s],g.o(e,a)&&e[a]&&e[a][0](),e[a]=0},t=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),g.nc=void 0;var y=g(3158);_kenyaemr_esm_patient_registration_app=y})();