@openmrs/esm-patient-banner-app 11.3.1-pre.9375 → 11.3.1-pre.9381
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 +2 -2
- package/dist/2636.js +1 -1
- package/dist/2636.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/openmrs-esm-patient-banner-app.js.buildmanifest.json +6 -6
- package/dist/routes.json +1 -1
- package/package.json +2 -2
- package/src/banner/patient-banner.component.tsx +1 -1
|
@@ -352,9 +352,9 @@
|
|
|
352
352
|
"initial": false,
|
|
353
353
|
"entry": false,
|
|
354
354
|
"recorded": false,
|
|
355
|
-
"size":
|
|
355
|
+
"size": 71046,
|
|
356
356
|
"sizes": {
|
|
357
|
-
"javascript":
|
|
357
|
+
"javascript": 71046
|
|
358
358
|
},
|
|
359
359
|
"names": [],
|
|
360
360
|
"idHints": [],
|
|
@@ -367,7 +367,7 @@
|
|
|
367
367
|
"auxiliaryFiles": [
|
|
368
368
|
"2636.js.map"
|
|
369
369
|
],
|
|
370
|
-
"hash": "
|
|
370
|
+
"hash": "816c05ab91ab30ac",
|
|
371
371
|
"childrenByOrder": {}
|
|
372
372
|
},
|
|
373
373
|
{
|
|
@@ -1191,10 +1191,10 @@
|
|
|
1191
1191
|
"initial": true,
|
|
1192
1192
|
"entry": true,
|
|
1193
1193
|
"recorded": false,
|
|
1194
|
-
"size":
|
|
1194
|
+
"size": 1949418,
|
|
1195
1195
|
"sizes": {
|
|
1196
1196
|
"consume-shared": 168,
|
|
1197
|
-
"javascript":
|
|
1197
|
+
"javascript": 1926929,
|
|
1198
1198
|
"share-init": 378,
|
|
1199
1199
|
"runtime": 21943
|
|
1200
1200
|
},
|
|
@@ -1211,7 +1211,7 @@
|
|
|
1211
1211
|
"auxiliaryFiles": [
|
|
1212
1212
|
"main.js.map"
|
|
1213
1213
|
],
|
|
1214
|
-
"hash": "
|
|
1214
|
+
"hash": "02b2641148eedc7d",
|
|
1215
1215
|
"childrenByOrder": {}
|
|
1216
1216
|
},
|
|
1217
1217
|
{
|
package/dist/routes.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"webservices.rest":">=2.2.0"},"extensions":[{"name":"visit-tag","slot":"patient-banner-tags-slot","component":"visitTag","online":true,"offline":true},{"name":"deceased-patient-tag","slot":"patient-banner-tags-slot","component":"deceasedPatientTag","online":true,"offline":true},{"name":"patient-banner","slot":"patient-header-slot","component":"patientBanner","online":true,"offline":true}],"version":"11.3.1-pre.
|
|
1
|
+
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"webservices.rest":">=2.2.0"},"extensions":[{"name":"visit-tag","slot":"patient-banner-tags-slot","component":"visitTag","online":true,"offline":true},{"name":"deceased-patient-tag","slot":"patient-banner-tags-slot","component":"deceasedPatientTag","online":true,"offline":true},{"name":"patient-banner","slot":"patient-header-slot","component":"patientBanner","online":true,"offline":true}],"version":"11.3.1-pre.9381"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-patient-banner-app",
|
|
3
|
-
"version": "11.3.1-pre.
|
|
3
|
+
"version": "11.3.1-pre.9381",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "Patient banner microfrontend for the OpenMRS SPA",
|
|
6
6
|
"browser": "dist/openmrs-esm-patient-banner-app.js",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"swr": "2.x"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@openmrs/esm-patient-common-lib": "11.3.1-pre.
|
|
55
|
+
"@openmrs/esm-patient-common-lib": "11.3.1-pre.9381",
|
|
56
56
|
"webpack": "^5.99.9"
|
|
57
57
|
},
|
|
58
58
|
"stableVersion": "11.3.0"
|
|
@@ -57,7 +57,7 @@ const PatientBanner: React.FC<PatientBannerProps> = ({ patient, patientUuid, hid
|
|
|
57
57
|
ref={patientBannerRef}
|
|
58
58
|
>
|
|
59
59
|
<div className={styles.patientBanner}>
|
|
60
|
-
<div className={styles.patientAvatar}
|
|
60
|
+
<div className={styles.patientAvatar}>
|
|
61
61
|
<PatientPhoto patientUuid={patientUuid} patientName={patientName} />
|
|
62
62
|
</div>
|
|
63
63
|
<PatientBannerPatientInfo patient={patient} renderedFrom="patient-chart" />
|