@kenyaemr/esm-patient-clinical-view-app 5.4.2-pre.2716 → 5.4.2-pre.2724

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 (72) hide show
  1. package/.turbo/turbo-build.log +4 -4
  2. package/dist/127.js +1 -1
  3. package/dist/40.js +1 -1
  4. package/dist/805.js +1 -0
  5. package/dist/805.js.map +1 -0
  6. package/dist/916.js +1 -1
  7. package/dist/kenyaemr-esm-patient-clinical-view-app.js +2 -2
  8. package/dist/kenyaemr-esm-patient-clinical-view-app.js.buildmanifest.json +36 -36
  9. package/dist/main.js +27 -27
  10. package/dist/main.js.map +1 -1
  11. package/dist/routes.json +1 -1
  12. package/package.json +1 -1
  13. package/src/config-schema.ts +97 -0
  14. package/src/contact-list/contact-tracing-history.component.tsx +18 -15
  15. package/src/maternal-and-child-health/partography/components/pulse-bp-graph.component.tsx +1 -0
  16. package/src/maternal-and-child-health/partography/components/temperature-graph.component.tsx +218 -0
  17. package/src/maternal-and-child-health/partography/components/uterine-contractions-graph.component.tsx +209 -0
  18. package/src/maternal-and-child-health/partography/forms/cervical-contractions-form.component.tsx +211 -0
  19. package/src/maternal-and-child-health/partography/forms/cervix-form.component.tsx +354 -0
  20. package/src/maternal-and-child-health/partography/forms/drugs-iv-fluids-form.component.tsx +321 -0
  21. package/src/maternal-and-child-health/partography/forms/fetal-heart-rate-form.component.tsx +275 -0
  22. package/src/maternal-and-child-health/partography/forms/index.ts +9 -0
  23. package/src/maternal-and-child-health/partography/forms/membrane-amniotic-fluid-form.component.tsx +330 -0
  24. package/src/maternal-and-child-health/partography/forms/oxytocin-form.component.tsx +207 -0
  25. package/src/maternal-and-child-health/partography/forms/pulse-bp-form.component.tsx +174 -0
  26. package/src/maternal-and-child-health/partography/forms/temperature-form.component.tsx +210 -0
  27. package/src/maternal-and-child-health/partography/forms/time-picker-dropdown.component.tsx +218 -0
  28. package/src/maternal-and-child-health/partography/forms/time-picker-dropdown.scss +107 -0
  29. package/src/maternal-and-child-health/partography/forms/time-picker-with-clock.component.tsx +174 -0
  30. package/src/maternal-and-child-health/partography/forms/time-picker-with-clock.scss +178 -0
  31. package/src/maternal-and-child-health/partography/forms/urine-test-form.component.tsx +255 -0
  32. package/src/maternal-and-child-health/partography/forms/useCervixData.ts +16 -0
  33. package/src/maternal-and-child-health/partography/graphs/cervical-contractions-graph.component.tsx +266 -0
  34. package/src/maternal-and-child-health/partography/graphs/cervix-graph.component.tsx +429 -0
  35. package/src/maternal-and-child-health/partography/graphs/drugs-iv-fluids-graph-wrapper.component.tsx +163 -0
  36. package/src/maternal-and-child-health/partography/graphs/drugs-iv-fluids-graph.component.tsx +82 -0
  37. package/src/maternal-and-child-health/partography/graphs/fetal-heart-rate-graph.component.tsx +359 -0
  38. package/src/maternal-and-child-health/partography/graphs/index.ts +10 -0
  39. package/src/maternal-and-child-health/partography/graphs/membrane-amniotic-fluid-graph.component.tsx +266 -0
  40. package/src/maternal-and-child-health/partography/graphs/oxytocin-graph-wrapper.component.tsx +190 -0
  41. package/src/maternal-and-child-health/partography/graphs/oxytocin-graph.component.tsx +126 -0
  42. package/src/maternal-and-child-health/partography/graphs/partograph-graph.component.tsx +266 -0
  43. package/src/maternal-and-child-health/partography/graphs/pulse-bp-graph-wrapper.component.tsx +298 -0
  44. package/src/maternal-and-child-health/partography/graphs/pulse-bp-graph.component.tsx +267 -0
  45. package/src/maternal-and-child-health/partography/graphs/temperature-graph.component.tsx +242 -0
  46. package/src/maternal-and-child-health/partography/graphs/urine-test-graph.component.tsx +246 -0
  47. package/src/maternal-and-child-health/partography/partograph.component.tsx +2141 -118
  48. package/src/maternal-and-child-health/partography/partography-dashboard.meta.ts +8 -0
  49. package/src/maternal-and-child-health/partography/partography-data-form.scss +163 -0
  50. package/src/maternal-and-child-health/partography/partography.resource.ts +233 -326
  51. package/src/maternal-and-child-health/partography/partography.scss +1341 -3
  52. package/src/maternal-and-child-health/partography/resources/blood-pressure.resource.ts +96 -0
  53. package/src/maternal-and-child-health/partography/resources/cervical-dilation.resource.ts +109 -0
  54. package/src/maternal-and-child-health/partography/resources/cervix.resource.ts +362 -0
  55. package/src/maternal-and-child-health/partography/resources/descent-of-head.resource.ts +101 -0
  56. package/src/maternal-and-child-health/partography/resources/drugs-fluids.resource.ts +88 -0
  57. package/src/maternal-and-child-health/partography/resources/fetal-heart-rate.resource.ts +122 -0
  58. package/src/maternal-and-child-health/partography/resources/maternal-pulse.resource.ts +77 -0
  59. package/src/maternal-and-child-health/partography/resources/membrane-amniotic-fluid.resource.ts +108 -0
  60. package/src/maternal-and-child-health/partography/resources/oxytocin.resource.ts +159 -0
  61. package/src/maternal-and-child-health/partography/resources/progress-events.resource.ts +6 -0
  62. package/src/maternal-and-child-health/partography/resources/pulse-bp-combined.resource.ts +53 -0
  63. package/src/maternal-and-child-health/partography/resources/temperature.resource.ts +84 -0
  64. package/src/maternal-and-child-health/partography/resources/uterine-contractions.resource.ts +173 -0
  65. package/src/maternal-and-child-health/partography/table/temperature-table.component.tsx +99 -0
  66. package/src/maternal-and-child-health/partography/table/uterine-contractions-table.component.tsx +86 -0
  67. package/src/maternal-and-child-health/partography/types/index.ts +319 -101
  68. package/translations/am.json +121 -1
  69. package/translations/en.json +121 -1
  70. package/translations/sw.json +121 -1
  71. package/dist/397.js +0 -1
  72. package/dist/397.js.map +0 -1
@@ -1,15 +1,24 @@
1
1
  {
2
2
  " ": "Case Manager",
3
+ "absent": "Absent",
3
4
  "accidentOrTrauma": "Accident or Trauma",
5
+ "acetone": "Acetone",
6
+ "acetoneRequired": "Please select acetone level",
4
7
  "actions": "Actions",
5
8
  "activeCases": "Active cases",
9
+ "actualTime": "Actual Time",
6
10
  "add": "Add",
7
11
  "addCase": "Add case",
12
+ "addDrugOrder": "Add drug order",
8
13
  "addFirstDataPoint": "Add first data point",
9
14
  "addPeer": "Add Peer",
10
15
  "addPNSContact": "Add PNS Contact",
16
+ "addPulseBpData": "Pulse & BP",
11
17
  "addRelationship": "Add relationship",
18
+ "addTemperatureData": "Temperature",
19
+ "addUrineTestData": "Urine Test",
12
20
  "admissionDate": "Admission Date",
21
+ "admissionTime": "Admission",
13
22
  "admissionWard": "Admission Ward",
14
23
  "admittingDoctor": "Admitting Doctor",
15
24
  "age": "Age",
@@ -17,6 +26,8 @@
17
26
  "alcoholUseDuration": "Alcohol Use Duration",
18
27
  "alive": "Alive",
19
28
  "all": "All",
29
+ "amnioticFluid": "Amniotic Fluid",
30
+ "amnioticFluidRequired": "Please select amniotic fluid status",
20
31
  "ancVisitNumber": "ANC Visit Number",
21
32
  "antenatalCare": "Antenatal Care",
22
33
  "average": "Average",
@@ -28,12 +39,21 @@
28
39
  "birthInjuriesTrauma": "Birth Injuries/Trauma",
29
40
  "bloodGroup": "Blood Group",
30
41
  "bloodLoss": "Blood Transfusion Done",
42
+ "bloodPressure": "Blood Pressure (mmHg)",
43
+ "bloodStained": "Blood Stained",
31
44
  "bloodTransfusion": "Blood Transfusion",
45
+ "bpStatus": "BP Status",
32
46
  "cancel": "Cancel",
33
47
  "caseEncounter": "Case management encounters",
34
48
  "caseManagement": "Case Management",
35
49
  "causeOfDeath": "Cause of Death",
50
+ "cervicalContractionsData": "Cervical Contractions",
51
+ "cervicalDilation": "Cervical Dilation",
52
+ "chooseAnOption": "Choose an option",
53
+ "chooseCount": "Choose count",
54
+ "chooseTime": "Choose a time",
36
55
  "chronicDisease": "Chronic Disease",
56
+ "clearLiquor": "Clear liquor",
37
57
  "clientEligibility": "Eligible",
38
58
  "clinicalEncounter": "Clinical Encounter",
39
59
  "completed": "Completed",
@@ -44,20 +64,41 @@
44
64
  "contactList": "Contact List",
45
65
  "contactTracingForm": "Contact tracing form",
46
66
  "contactType": "Contact Type",
67
+ "contractionCount": "Number of Contractions",
68
+ "contractionCountRequired": "Please select number of contractions",
69
+ "contractionLevel": "Contraction Level",
70
+ "contractionLevelDescription": "Choose the intensity of uterine contractions observed",
71
+ "contractionLevelRequired": "Please select contraction level",
72
+ "contractions": "Contractions",
73
+ "contractionsPerTenMin": "Contractions per 10 min",
47
74
  "date": "Date",
48
75
  "dateOfDelivery": "Date of Delivery",
49
76
  "dateOfSurgery": "Date of Surgery",
77
+ "dateTime": "Date & Time",
50
78
  "dead": "Dead",
51
79
  "defaulterTracing": "Defaulter tracing",
52
80
  "delete": "Delete",
53
81
  "deliveryDate": "Delivery Date",
54
82
  "deliveryOutcome": "Delivery Outcome",
55
83
  "department": "Department",
84
+ "descentOfHead": "Descent of Head",
85
+ "diastolicBP": "BP Diastolic",
56
86
  "disabilities": "Disabilities",
57
87
  "discard": "Discard",
58
88
  "dischargeDate": "Discharge Date",
59
89
  "dischargingDoctor": "Discharging Doctor",
60
90
  "discontinuationCases": "Discontinuation cases",
91
+ "dosage": "Dosage",
92
+ "dosageRequired": "Dosage is required",
93
+ "dropsPerMinute": "Drops per minute",
94
+ "drugName": "Drug Name",
95
+ "drugNameRequired": "Drug name is required",
96
+ "drugOrder": "Drug Order",
97
+ "drugOrderDataSaved": "Drug order data has been saved to OpenMRS",
98
+ "drugOrderDescription": "Use the drug order workspace to select from the complete list of available drugs with proper dosing and administration details.",
99
+ "drugsAndIVFluidsGiven": "Drugs given and IV fluids",
100
+ "drugsIVFluids": "Drugs and IV Fluids Given",
101
+ "duplicateTimeEntry": "This time already exists",
61
102
  "edit": "Edit",
62
103
  "editContactList": "Edit contact list",
63
104
  "editEncounter": "Edit",
@@ -70,14 +111,24 @@
70
111
  "encountersList": "Encounters list",
71
112
  "endDate": "End Date",
72
113
  "endRelationship": "End relationship",
114
+ "enterDosage": "e.g., 250mg, 500ml",
115
+ "enterDrugName": "Enter drug name...",
73
116
  "enterForm": "Enter form",
74
117
  "error": "Error",
75
118
  "errorFetchingbedInformation": "Error fetching bed information",
119
+ "exactTime": "Time",
120
+ "exactTimeRequired": "Exact time is required",
76
121
  "facility": "Facility",
77
122
  "facilityLinkedTo": "Facility Linked To",
78
123
  "failedDeleting": "couldn't be deleted",
79
124
  "familyContacts": "Family contacts",
80
125
  "feedingOrders": "Feeding Orders",
126
+ "fetalHeartRate": "Fetal Heart Rate (bpm)",
127
+ "fetalHeartRateData": "Foetal Heart Rate Data",
128
+ "fetalHeartRateDataSaved": "Fetal heart rate data has been saved",
129
+ "fetalHeartRateRequired": "Fetal heart rate is required",
130
+ "fetalHeartRateTooHigh": "Fetal heart rate is too high. Maximum is 200 bpm",
131
+ "fetalHeartRateTooLow": "Fetal heart rate is too low. Minimum is 80 bpm",
81
132
  "fieldRequired": "This field is required",
82
133
  "filterByForm": "Filter by form",
83
134
  "filterByStatue": "Filter by status",
@@ -85,13 +136,22 @@
85
136
  "finalDiagnosis": "Final Diagnosis",
86
137
  "finalDischargeDiagnosis": "Final Discharge Diagnosis",
87
138
  "finalOutcome": "Final Outcome",
139
+ "fiveContractions": "5 contractions",
88
140
  "foetalPresentation": "Foetal Presentation",
89
141
  "followUpDate": "Next follow-up date",
142
+ "formTime": "Form Time",
143
+ "formValidationError": "Please fill in all required fields before submitting.",
144
+ "fourContractions": "4 contractions",
145
+ "frequency": "Frequency",
146
+ "frequencyRequired": "Frequency is required",
90
147
  "gestationalSize": "Gestational Size",
91
148
  "graphView": "Graph View",
92
149
  "hivPatientSummary": "HIV Patient Summary",
93
150
  "hivStatus": "HIV Status",
94
151
  "hivTestResults": "HIV Status",
152
+ "hour": "Hour",
153
+ "hourInput": "Hour Input",
154
+ "hourRequired": "Please select a valid hour",
95
155
  "hts": "HIV Testing Services",
96
156
  "htsClinicalView": "HTS Clinical View",
97
157
  "htsInitial": "HTS Initial Test",
@@ -107,14 +167,25 @@
107
167
  "listingDate": "Listing date",
108
168
  "livingWithClient": "Living with client",
109
169
  "loading": "Loading...",
110
- "loadingData": "Loading data...",
111
170
  "managePeers": "Manage Peers",
171
+ "manual": "Manual",
172
+ "manualEntry": "Manual Entry",
173
+ "manualEntryDescription": "Or enter drug information manually for quick documentation.",
112
174
  "maternalCondition": "Maternal Condition",
113
175
  "maternalSummary": "Maternal Summary",
176
+ "meconiumStained": "Meconium Stained",
114
177
  "medicalHistory": "Medical History",
178
+ "membraneAmnioticFluidData": "Membrane Amniotic Fluid & Moulding",
179
+ "membraneIntact": "Membrane intact",
180
+ "mild": "Mild",
181
+ "mildContractions": "Mild Contractions",
115
182
  "missedAppointmentDate": "Date Missed Appointment",
116
183
  "modeOfDelivery": "Mode of Delivery",
184
+ "moderate": "Moderate",
185
+ "moderateContractions": "Moderate Contractions",
117
186
  "motherGeneralCondition": "General condition",
187
+ "moulding": "Moulding",
188
+ "mouldingRequired": "Please select moulding status",
118
189
  "name": "Name",
119
190
  "neonatalAbnormalities": "Neonatal Abnormalities",
120
191
  "neonatalProblems": "Neonatal Problems",
@@ -122,12 +193,25 @@
122
193
  "nextVisitDate": "Next visit date",
123
194
  "no": "No",
124
195
  "noContactToDisplay": "There is no contact data to display for this patient.",
196
+ "noContractionData": "No contraction data available",
197
+ "noContractions": "No Contractions",
198
+ "noData": "No Data",
125
199
  "noDataAvailable": "No data available for this graph",
200
+ "noDrugsIVFluidsData": "No drugs and IV fluids data available",
126
201
  "noEncounterToDisplay": "There are no encounters to display for this patient.",
202
+ "none": "None",
127
203
  "noObservationsFound": "No observations found",
204
+ "noOxytocinData": "No oxytocin data available",
128
205
  "noPatientSelected": "No patient selected",
206
+ "noPulseBPData": "No pulse and BP data available",
207
+ "oneContraction": "1 contraction",
129
208
  "operatingDoctor": "Operating Doctor",
130
209
  "otherSubstanceAbuse": "Other Substance Abuse",
210
+ "oxytocin": "Oxytocin",
211
+ "oxytocinAdministration": "Oxytocin Administration",
212
+ "oxytocinDescription": "Track oxytocin administration and drops per minute over time",
213
+ "oxytocinRange": "0-60 drops/min",
214
+ "oxytocinUsed": "Oxytocin Used",
131
215
  "partnerStatus": "HIV status of partner)",
132
216
  "partograph": "Partograph",
133
217
  "partography": "Partography",
@@ -146,6 +230,11 @@
146
230
  "preferedPNSAproach": "Prefered PNS Aproach",
147
231
  "primaryDiagnosis": "Primary Diagnosis",
148
232
  "priorityOfAdmission": "Priority Of Admission",
233
+ "protein": "Protein",
234
+ "proteinRequired": "Please select protein level",
235
+ "pulse": "Pulse (bpm)",
236
+ "pulseAndBP": "Pulse & BP",
237
+ "pulseStatus": "Pulse Status",
149
238
  "reasonNotContacted": "Reason Not Contacted",
150
239
  "recommendedProcedure": "Recommended Procedure",
151
240
  "referrals": "Referrals",
@@ -156,24 +245,39 @@
156
245
  "remarks": "Remarks",
157
246
  "reportingMonth": "Month",
158
247
  "reportingYear": "Year",
248
+ "route": "Route",
249
+ "routeRequired": "Route is required",
159
250
  "save": "Save",
160
251
  "savedRelationship": "Relationship ended successfully",
252
+ "saveError": "Error saving data",
253
+ "saveSuccess": "Data saved successfully",
254
+ "saving": "Saving...",
255
+ "selectAcetone": "Pull from Lab module",
161
256
  "selectClinic": "Select Clinic",
257
+ "selectFrequency": "Select frequency",
258
+ "selectFromDrugList": "Select from Drug List",
162
259
  "selectPatientMessage": "Please select a patient to view partography data.",
260
+ "selectProtein": "Select protein level",
261
+ "selectRoute": "Select route",
163
262
  "sex": "Sex",
164
263
  "sexualAssault": "3.Has he/she ever forced you to do something sexually that made you feel uncomfortable?",
165
264
  "showingResults": "Showing {{start}}-{{end}} of {{total}} {{itemType}}",
166
265
  "smoking": "Smoking",
167
266
  "smokingDuration": "Smoking Duration",
168
267
  "socialHistory": "Social History",
268
+ "source": "Source",
169
269
  "specialClinics": "Special Clinics",
170
270
  "status": "Status",
171
271
  "statusAtDischarge": "Status at Discharge",
272
+ "strongContractions": "Strong Contractions",
172
273
  "successfullyDeleted": "successfully deleted",
173
274
  "surgicalHistory": "Surgical History",
174
275
  "surgicalSummary": "Surgical Summary",
276
+ "systolicBP": "BP Systolic",
175
277
  "tableView": "Table View",
176
278
  "tbScreening": "TB screening outcome",
279
+ "temperature": "Temp °C",
280
+ "temperatureValidation": "Please enter a valid temperature (30-45°C)",
177
281
  "testApproach": "Approach",
178
282
  "testDate": "Test Date",
179
283
  "testEntryPoint": "Entry point",
@@ -182,19 +286,35 @@
182
286
  "testStrategy": "Strategy",
183
287
  "therapiesPrescribed": "Therapies Prescribed",
184
288
  "threatened": "2. Has he/she ever threatened to hurt you?",
289
+ "threeContractions": "3 contractions",
185
290
  "time": "Time",
291
+ "timeRequired": "Please select a time",
292
+ "timeResultsReturned": "Results Returned",
293
+ "timeResultsReturnedRequired": "Please enter results return time",
294
+ "timeSampleCollected": "Sample Collected",
295
+ "timeSampleCollectedRequired": "Please enter sample collection time",
296
+ "timeSlot": "Time Slot",
297
+ "timeSlotDisabled": "Selected time slot is not available. Please select a later time.",
298
+ "timeSlotInfo": "",
299
+ "timeSlotInfoInitial": "Select a time slot",
300
+ "timeSlotRequired": "Please select a time slot",
301
+ "timeSlotValidationError": "Please select a valid time slot that comes after the previous entry.",
186
302
  "total": "Total",
187
303
  "totalPeers": "Total Peers",
188
304
  "traceContact": "Trace Contact",
189
305
  "traceHistory": "Trace History",
190
306
  "tracingNumber": "Tracing No.",
191
307
  "tracingType": "Tracing Type",
308
+ "twoContractions": "2 contractions",
192
309
  "typeOfSurgery": "Type of Surgery",
193
310
  "updateForm": "Mordify form",
194
311
  "uterusCondition": "PPH Condition of uterus",
195
312
  "viewBeds": "View beds",
196
313
  "viewEncounter": "View",
197
314
  "visitDate": "Screening Date",
315
+ "volume": "Volume",
316
+ "volumeHelper": "Enter the Dilation",
317
+ "volumeValidation": "Please enter a valid volume",
198
318
  "yearsOld": "years old",
199
319
  "yes": "Yes"
200
320
  }