@kenyaemr/esm-version-app 5.4.2-pre.2292 → 5.4.2-pre.2297
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.
- package/.turbo/turbo-build.log +8 -12
- package/dist/197.js +1 -0
- package/dist/275.js +1 -1
- package/dist/275.js.map +1 -1
- package/dist/294.js +1 -0
- package/dist/300.js +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-patient-verification-app.js.buildmanifest.json +53 -9
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/app-navigation/nav-utils/dashboard-group-extension.component.tsx +5 -2
- package/src/app-navigation/nav-utils/link-extension.component.tsx +3 -1
- package/src/index.ts +11 -3
- package/src/release-version.js +7 -7
- package/translations/am.json +12 -0
- package/translations/en.json +10 -1
- package/translations/sw.json +12 -0
package/src/index.ts
CHANGED
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
TcpIpService,
|
|
10
10
|
UserMultiple,
|
|
11
11
|
} from '@carbon/react/icons';
|
|
12
|
-
import { defineConfigSchema, getSyncLifecycle } from '@openmrs/esm-framework';
|
|
12
|
+
import { defineConfigSchema, getSyncLifecycle, translateFrom } from '@openmrs/esm-framework';
|
|
13
13
|
import HomeRoot from './app-navigation/root-overrides.component';
|
|
14
14
|
import { createDashboardGroup, createLeftPanelLink } from './app-navigation/nav-utils';
|
|
15
15
|
import { configSchema } from './config-schema';
|
|
@@ -34,7 +34,7 @@ export const diagnosticsDashboardNavGroup = getSyncLifecycle(
|
|
|
34
34
|
}),
|
|
35
35
|
options,
|
|
36
36
|
);
|
|
37
|
-
//
|
|
37
|
+
// t('Patient services', 'Patient services')
|
|
38
38
|
export const patientServicesDashboardNavGroup = getSyncLifecycle(
|
|
39
39
|
createDashboardGroup({
|
|
40
40
|
slotName: 'patient-services-group-nav-slot',
|
|
@@ -44,6 +44,7 @@ export const patientServicesDashboardNavGroup = getSyncLifecycle(
|
|
|
44
44
|
}),
|
|
45
45
|
options,
|
|
46
46
|
);
|
|
47
|
+
// t('Linkage services', 'Linkage services')
|
|
47
48
|
export const linkageServicesDashboardNavGroup = getSyncLifecycle(
|
|
48
49
|
createDashboardGroup({
|
|
49
50
|
slotName: 'linkage-services-group-nav-slot',
|
|
@@ -53,16 +54,18 @@ export const linkageServicesDashboardNavGroup = getSyncLifecycle(
|
|
|
53
54
|
}),
|
|
54
55
|
options,
|
|
55
56
|
);
|
|
57
|
+
// t('Billing module', 'Billing module')
|
|
56
58
|
export const billingDashboardNavGroup = getSyncLifecycle(
|
|
57
59
|
createDashboardGroup({
|
|
58
60
|
slotName: 'billing-dashboard-group-nav-slot',
|
|
59
|
-
title: 'Billing
|
|
61
|
+
title: 'Billing module',
|
|
60
62
|
icon: Money,
|
|
61
63
|
isExpanded: false,
|
|
62
64
|
}),
|
|
63
65
|
options,
|
|
64
66
|
);
|
|
65
67
|
|
|
68
|
+
// t('Claims management', 'Claims management')
|
|
66
69
|
export const claimsManagementSideNavGroup = getSyncLifecycle(
|
|
67
70
|
createDashboardGroup({
|
|
68
71
|
title: 'Claims Management',
|
|
@@ -73,6 +76,7 @@ export const claimsManagementSideNavGroup = getSyncLifecycle(
|
|
|
73
76
|
options,
|
|
74
77
|
);
|
|
75
78
|
|
|
79
|
+
// t('clinicalConsultation', 'Clinical consultation')
|
|
76
80
|
export const patientChartClinicalConsultationNavGroup = getSyncLifecycle(
|
|
77
81
|
createDashboardGroup({
|
|
78
82
|
title: 'Clinical Consultation',
|
|
@@ -82,6 +86,7 @@ export const patientChartClinicalConsultationNavGroup = getSyncLifecycle(
|
|
|
82
86
|
options,
|
|
83
87
|
);
|
|
84
88
|
|
|
89
|
+
// t('Home', 'Home')
|
|
85
90
|
export const homeDashboardLink = getSyncLifecycle(
|
|
86
91
|
createLeftPanelLink({ route: '/home', title: 'Home', icon: Home }),
|
|
87
92
|
options,
|
|
@@ -91,14 +96,17 @@ export const inpatientDashboardLink = getSyncLifecycle(
|
|
|
91
96
|
createLeftPanelLink({ route: '/home/bed-admission', title: 'In Patient View', icon: HospitalBed }),
|
|
92
97
|
options, // uses slot bed-admission-dashboard-slot
|
|
93
98
|
);
|
|
99
|
+
// t('Referrals', 'Referrals')
|
|
94
100
|
export const referralsDashboardLink = getSyncLifecycle(
|
|
95
101
|
createLeftPanelLink({ route: '/home/referrals', title: 'Referrals', icon: TcpIpService }),
|
|
96
102
|
options,
|
|
97
103
|
);
|
|
104
|
+
// t('Wards', 'Wards')
|
|
98
105
|
export const wardsDashboardLink = getSyncLifecycle(
|
|
99
106
|
createLeftPanelLink({ route: '/home/ward', title: 'Wards', icon: HospitalBed }),
|
|
100
107
|
options,
|
|
101
108
|
);
|
|
109
|
+
// t('Mortuary', 'Mortuary')
|
|
102
110
|
export const mortuaryDashboardLink = getSyncLifecycle(
|
|
103
111
|
createLeftPanelLink({ route: '/home/morgue', title: 'Mortuary', icon: Hotel }),
|
|
104
112
|
options,
|
package/src/release-version.js
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
/* tslint:disable */
|
|
4
4
|
export const VERSION = {
|
|
5
5
|
"dirty": true,
|
|
6
|
-
"raw": "v5.4.1-
|
|
7
|
-
"hash": "
|
|
8
|
-
"distance":
|
|
6
|
+
"raw": "v5.4.1-58-g972bbf7-dirty",
|
|
7
|
+
"hash": "g972bbf7",
|
|
8
|
+
"distance": 58,
|
|
9
9
|
"tag": "v5.4.1",
|
|
10
10
|
"semver": {
|
|
11
11
|
"options": {
|
|
@@ -21,9 +21,9 @@ export const VERSION = {
|
|
|
21
21
|
"build": [],
|
|
22
22
|
"version": "5.4.1"
|
|
23
23
|
},
|
|
24
|
-
"suffix": "
|
|
25
|
-
"semverString": "5.4.1+
|
|
26
|
-
"version": "5.4.2-pre.
|
|
27
|
-
"buildDate": "2025-07-
|
|
24
|
+
"suffix": "58-g972bbf7-dirty",
|
|
25
|
+
"semverString": "5.4.1+58.g972bbf7",
|
|
26
|
+
"version": "5.4.2-pre.2297",
|
|
27
|
+
"buildDate": "2025-07-18T11:05:43.538Z"
|
|
28
28
|
};
|
|
29
29
|
/* tslint:enable */
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Billing module": "የክፍያ ሞጁል",
|
|
3
|
+
"Claims management": "የይገባኛል ጥያቄዎች አስተዳደር",
|
|
4
|
+
"clinicalConsultation": "ክሊኒካዊ ምክክር",
|
|
5
|
+
"Home": "መነሻ",
|
|
6
|
+
"Linkage services": "የማገናኛ አገልግሎቶች",
|
|
7
|
+
"Mortuary": "የሬሳ ክፍል",
|
|
8
|
+
"Patient services": "የታካሚ አገልግሎቶች",
|
|
9
|
+
"Referrals": "ሪፈራሎች",
|
|
10
|
+
"systemInfo": "System Info",
|
|
11
|
+
"Wards": "ዎርዶች"
|
|
12
|
+
}
|
package/translations/en.json
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
2
|
+
"Billing module": "Billing module",
|
|
3
|
+
"Claims management": "Claims management",
|
|
4
|
+
"clinicalConsultation": "Clinical consultation",
|
|
5
|
+
"Home": "Home",
|
|
6
|
+
"Linkage services": "Linkage services",
|
|
7
|
+
"Mortuary": "Mortuary",
|
|
8
|
+
"Patient services": "Patient services",
|
|
9
|
+
"Referrals": "Referrals",
|
|
10
|
+
"systemInfo": "System Info",
|
|
11
|
+
"Wards": "Wards"
|
|
3
12
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"Billing module": "Billing module",
|
|
3
|
+
"Claims management": "Claims management",
|
|
4
|
+
"clinicalConsultation": "Clinical consultation",
|
|
5
|
+
"Home": "Home",
|
|
6
|
+
"Linkage services": "Linkage services",
|
|
7
|
+
"Mortuary": "Mortuary",
|
|
8
|
+
"Patient services": "Patient services",
|
|
9
|
+
"Referrals": "Referrals",
|
|
10
|
+
"systemInfo": "System Info",
|
|
11
|
+
"Wards": "Wards"
|
|
12
|
+
}
|