@kenyaemr/esm-patient-flags-app 5.4.2-pre.2608 → 5.4.2-pre.2610
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 +1 -1
- package/dist/125.js +1 -1
- package/dist/125.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-patient-flags-app.js.buildmanifest.json +6 -6
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/navbar/nav-utils.component.tsx +6 -0
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"rendered": true,
|
|
32
32
|
"initial": false,
|
|
33
33
|
"entry": false,
|
|
34
|
-
"size":
|
|
34
|
+
"size": 118584,
|
|
35
35
|
"sizes": {
|
|
36
|
-
"javascript":
|
|
36
|
+
"javascript": 118584
|
|
37
37
|
},
|
|
38
38
|
"names": [],
|
|
39
39
|
"idHints": [],
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"auxiliaryFiles": [
|
|
47
47
|
"125.js.map"
|
|
48
48
|
],
|
|
49
|
-
"hash": "
|
|
49
|
+
"hash": "f104683434d356b7",
|
|
50
50
|
"childrenByOrder": {}
|
|
51
51
|
},
|
|
52
52
|
{
|
|
@@ -444,10 +444,10 @@
|
|
|
444
444
|
"rendered": true,
|
|
445
445
|
"initial": true,
|
|
446
446
|
"entry": true,
|
|
447
|
-
"size":
|
|
447
|
+
"size": 6472109,
|
|
448
448
|
"sizes": {
|
|
449
449
|
"consume-shared": 210,
|
|
450
|
-
"javascript":
|
|
450
|
+
"javascript": 6471689,
|
|
451
451
|
"runtime": 13031,
|
|
452
452
|
"share-init": 210
|
|
453
453
|
},
|
|
@@ -464,7 +464,7 @@
|
|
|
464
464
|
"auxiliaryFiles": [
|
|
465
465
|
"main.js.map"
|
|
466
466
|
],
|
|
467
|
-
"hash": "
|
|
467
|
+
"hash": "949b8af67b68c7d5",
|
|
468
468
|
"childrenByOrder": {}
|
|
469
469
|
},
|
|
470
470
|
{
|
package/dist/routes.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"kenyaemr":"^19.0.0"},"pages":[],"extensions":[{"name":"patient-flag","slot":"top-of-all-patient-dashboards-slot","component":"patientFlag","order":0,"online":true,"offline":false},{"name":"kenyaemr-module-links","slot":"top-nav-actions-slot","component":"navbarButtons","order":5,"online":true,"offline":true}],"version":"5.4.2-pre.
|
|
1
|
+
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"kenyaemr":"^19.0.0"},"pages":[],"extensions":[{"name":"patient-flag","slot":"top-of-all-patient-dashboards-slot","component":"patientFlag","order":0,"online":true,"offline":false},{"name":"kenyaemr-module-links","slot":"top-nav-actions-slot","component":"navbarButtons","order":5,"online":true,"offline":true}],"version":"5.4.2-pre.2610"}
|
package/package.json
CHANGED
|
@@ -126,6 +126,12 @@ export const useModuleLinks = () => {
|
|
|
126
126
|
icon: <IbmCloudGateKeeper size={24} />,
|
|
127
127
|
privilege: 'o3: View Legacy Admin Dashboard',
|
|
128
128
|
},
|
|
129
|
+
{
|
|
130
|
+
label: t('serviceQueuesAdmin', 'Service Queues Admin'),
|
|
131
|
+
url: `${openmrsSpaBase}home/service-queues/admin`,
|
|
132
|
+
icon: <IbmCloudGateKeeper size={24} />,
|
|
133
|
+
privilege: 'o3: View Service Queues Admin Dashboard',
|
|
134
|
+
},
|
|
129
135
|
];
|
|
130
136
|
|
|
131
137
|
return moduleLinks.filter((link) => !excludeLinks.some((excludeLink) => excludeLink === link.label));
|