@ampath/esm-reports-app 1.0.0-next.25 → 1.0.0-next.26
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.
|
@@ -215,9 +215,9 @@
|
|
|
215
215
|
"initial": false,
|
|
216
216
|
"entry": false,
|
|
217
217
|
"recorded": false,
|
|
218
|
-
"size":
|
|
218
|
+
"size": 683589,
|
|
219
219
|
"sizes": {
|
|
220
|
-
"javascript":
|
|
220
|
+
"javascript": 683589
|
|
221
221
|
},
|
|
222
222
|
"names": [],
|
|
223
223
|
"idHints": [],
|
|
@@ -231,7 +231,7 @@
|
|
|
231
231
|
"auxiliaryFiles": [
|
|
232
232
|
"269.js.map"
|
|
233
233
|
],
|
|
234
|
-
"hash": "
|
|
234
|
+
"hash": "e40b597aa407cbb0",
|
|
235
235
|
"childrenByOrder": {}
|
|
236
236
|
},
|
|
237
237
|
{
|
package/dist/routes.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"fhir2":">=1.2","webservices.rest":">=2.2.0"},"extensions":[{"name":"ampath-reports-dashboard-link","component":"reportsDashboardLink","slot":"homepage-dashboard-slot","meta":{"name":"reports","slot":"ampath-reports-dashboard-slot","title":"Reports"},"online":true,"offline":true},{"component":"root","name":"ampath-reports-dashboard-root","slot":"ampath-reports-dashboard-slot"}],"pages":[],"version":"1.0.0-next.
|
|
1
|
+
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"fhir2":">=1.2","webservices.rest":">=2.2.0"},"extensions":[{"name":"ampath-reports-dashboard-link","component":"reportsDashboardLink","slot":"homepage-dashboard-slot","meta":{"name":"reports","slot":"ampath-reports-dashboard-slot","title":"Reports"},"online":true,"offline":true},{"component":"root","name":"ampath-reports-dashboard-root","slot":"ampath-reports-dashboard-slot"}],"pages":[],"version":"1.0.0-next.26"}
|
package/package.json
CHANGED
|
@@ -865,15 +865,51 @@ const Moh740Report: React.FC<Moh740ReportProps> = () => {
|
|
|
865
865
|
</tr>
|
|
866
866
|
<tr>
|
|
867
867
|
<td className={styles.darkBorder}>No. of patients on antihypertensives</td>
|
|
868
|
-
<td className={styles.darkBorder}
|
|
869
|
-
|
|
870
|
-
|
|
868
|
+
<td className={styles.darkBorder}>
|
|
869
|
+
<DataCell
|
|
870
|
+
value={moh740Data.dc__gender__M__on_antihypertensives_this_month}
|
|
871
|
+
indicatorSelected={handleIndicatorSelected}
|
|
872
|
+
indicator="dc__gender__M__on_antihypertensives_this_month"
|
|
873
|
+
/>
|
|
874
|
+
</td>
|
|
875
|
+
<td className={styles.darkBorder}>
|
|
876
|
+
<DataCell
|
|
877
|
+
value={moh740Data.dc__gender__F__on_antihypertensives_this_month}
|
|
878
|
+
indicatorSelected={handleIndicatorSelected}
|
|
879
|
+
indicator="dc__gender__F__on_antihypertensives_this_month"
|
|
880
|
+
/>
|
|
881
|
+
</td>
|
|
882
|
+
<td className={styles.darkBorder}>
|
|
883
|
+
<DataCell
|
|
884
|
+
value={moh740Data.on_antihypertensives_this_month}
|
|
885
|
+
indicatorSelected={handleIndicatorSelected}
|
|
886
|
+
indicator="on_antihypertensives_this_month"
|
|
887
|
+
/>
|
|
888
|
+
</td>
|
|
871
889
|
</tr>
|
|
872
890
|
<tr>
|
|
873
891
|
<td className={styles.darkBorder}>No. with high BP ({'>='} 140/90) at clinic visit</td>
|
|
874
|
-
<td className={styles.darkBorder}
|
|
875
|
-
|
|
876
|
-
|
|
892
|
+
<td className={styles.darkBorder}>
|
|
893
|
+
<DataCell
|
|
894
|
+
value={moh740Data.dc__gender__M__high_bp}
|
|
895
|
+
indicatorSelected={handleIndicatorSelected}
|
|
896
|
+
indicator="dc__gender__M__high_bp"
|
|
897
|
+
/>
|
|
898
|
+
</td>
|
|
899
|
+
<td className={styles.darkBorder}>
|
|
900
|
+
<DataCell
|
|
901
|
+
value={moh740Data.dc__gender__F__high_bp}
|
|
902
|
+
indicatorSelected={handleIndicatorSelected}
|
|
903
|
+
indicator="dc__gender__F__high_bp"
|
|
904
|
+
/>
|
|
905
|
+
</td>
|
|
906
|
+
<td className={styles.darkBorder}>
|
|
907
|
+
<DataCell
|
|
908
|
+
value={moh740Data.high_bp}
|
|
909
|
+
indicatorSelected={handleIndicatorSelected}
|
|
910
|
+
indicator="high_bp"
|
|
911
|
+
/>
|
|
912
|
+
</td>
|
|
877
913
|
</tr>
|
|
878
914
|
|
|
879
915
|
<tr className={styles.sectionHeader}>
|
|
@@ -139,6 +139,12 @@ export type Moh740Data = {
|
|
|
139
139
|
dc__gender__M__on_exercise_and_diet:number;
|
|
140
140
|
dc__gender__F__on_exercise_and_diet:number;
|
|
141
141
|
on_exercise_and_diet:number;
|
|
142
|
+
on_antihypertensives_this_month:number;
|
|
143
|
+
high_bp:number;
|
|
144
|
+
dc__gender__M__on_antihypertensives_this_month: number;
|
|
145
|
+
dc__gender__F__on_antihypertensives_this_month: number;
|
|
146
|
+
dc__gender__M__high_bp:number;
|
|
147
|
+
dc__gender__F__high_bp:number;
|
|
142
148
|
};
|
|
143
149
|
|
|
144
150
|
export type Moh740Resp = {
|