@kenyaemr/esm-morgue-app 5.3.7-pre.1451 → 5.3.7-pre.1453
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 +14 -14
- package/dist/149.js +1 -1
- package/dist/149.js.map +1 -1
- package/dist/300.js +1 -1
- package/dist/503.js +1 -0
- package/dist/503.js.map +1 -0
- package/dist/620.js +1 -1
- package/dist/620.js.map +1 -1
- package/dist/870.js +1 -1
- package/dist/870.js.map +1 -1
- package/dist/926.js +1 -1
- package/dist/926.js.map +1 -1
- package/dist/kenyaemr-esm-morgue-app.js.buildmanifest.json +43 -43
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +1 -1
- package/src/card/avail-compartment.compartment.tsx +48 -30
- package/src/card/compartment-view.compartment.tsx +18 -3
- package/src/card/compartment.scss +45 -25
- package/src/component/main.component.tsx +3 -1
- package/src/header/admitted-queue-header.component.tsx +9 -25
- package/src/header/admitted-queue-header.scss +0 -1
- package/src/header/morgue-header.component.tsx +1 -15
- package/src/header/morgue-header.scss +0 -35
- package/src/hook/useMorgue.resource.ts +10 -1
- package/src/index.ts +1 -1
- package/src/tables/admitted-queue.component.tsx +11 -4
- package/src/utils/utils.ts +19 -0
- package/translations/en.json +2 -2
- package/dist/47.js +0 -1
- package/dist/47.js.map +0 -1
|
@@ -10,25 +10,26 @@
|
|
|
10
10
|
padding: 0;
|
|
11
11
|
justify-items: center;
|
|
12
12
|
align-items: start;
|
|
13
|
-
}
|
|
14
13
|
|
|
15
|
-
.
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
width: 100%;
|
|
14
|
+
:global(.omrs-breakpoint-lt-desktop) & {
|
|
15
|
+
grid-template-columns: repeat(2, 1fr);
|
|
16
|
+
}
|
|
19
17
|
}
|
|
20
18
|
.cardView {
|
|
21
|
-
width:
|
|
19
|
+
width: 100%;
|
|
20
|
+
max-width: 380px;
|
|
22
21
|
display: flex;
|
|
23
22
|
flex-direction: column;
|
|
24
23
|
justify-content: flex-start;
|
|
25
24
|
align-items: center;
|
|
26
25
|
padding: layout.$spacing-04;
|
|
27
|
-
background-color: colors.$gray-
|
|
28
|
-
border-radius: 5px;
|
|
29
|
-
box-shadow: 0 layout.$spacing-02 layout.$spacing-03 rgba(0, 0, 0, 0.1);
|
|
30
|
-
gap: layout.$spacing-03;
|
|
26
|
+
background-color: colors.$gray-20;
|
|
31
27
|
margin-bottom: layout.$spacing-05;
|
|
28
|
+
|
|
29
|
+
:global(.omrs-breakpoint-lt-desktop) & {
|
|
30
|
+
padding: layout.$spacing-03;
|
|
31
|
+
gap: layout.$spacing-02;
|
|
32
|
+
}
|
|
32
33
|
}
|
|
33
34
|
|
|
34
35
|
.cardRow {
|
|
@@ -52,7 +53,7 @@
|
|
|
52
53
|
width: layout.$spacing-07;
|
|
53
54
|
height: layout.$spacing-07;
|
|
54
55
|
border-radius: 50%;
|
|
55
|
-
background-color: colors.$
|
|
56
|
+
background-color: colors.$blue-60;
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
.cardLabel {
|
|
@@ -60,28 +61,23 @@
|
|
|
60
61
|
line-height: 1.29;
|
|
61
62
|
border-radius: 50%;
|
|
62
63
|
letter-spacing: 0.16px;
|
|
63
|
-
color: colors.$
|
|
64
|
+
color: colors.$white;
|
|
64
65
|
}
|
|
65
66
|
|
|
66
67
|
.deceasedName,
|
|
67
68
|
.noCompartment {
|
|
68
|
-
font-size:
|
|
69
|
+
font-size: type.type-scale(2);
|
|
69
70
|
font-weight: 600;
|
|
70
|
-
color: colors.$
|
|
71
|
-
|
|
71
|
+
color: colors.$black;
|
|
72
|
+
margin-left: layout.$spacing-05;
|
|
72
73
|
width: 100%;
|
|
73
74
|
}
|
|
74
75
|
|
|
75
|
-
.
|
|
76
|
-
.deceasedResidences,
|
|
77
|
-
.deceasedDate,
|
|
78
|
-
.causeofDeathTag,
|
|
79
|
-
.causeofDeath,
|
|
80
|
-
.compartmentStatus,
|
|
76
|
+
.deceasedReason,
|
|
81
77
|
.deceasedNoDays,
|
|
82
78
|
.noDays {
|
|
83
|
-
|
|
84
|
-
|
|
79
|
+
color: colors.$gray-90;
|
|
80
|
+
font-size: type.type-scale(2);
|
|
85
81
|
}
|
|
86
82
|
|
|
87
83
|
.assignButton {
|
|
@@ -89,8 +85,32 @@
|
|
|
89
85
|
margin-top: layout.$spacing-05;
|
|
90
86
|
}
|
|
91
87
|
|
|
92
|
-
.
|
|
88
|
+
.viewDetailsLink {
|
|
93
89
|
margin: 0;
|
|
94
90
|
padding: 0;
|
|
95
|
-
|
|
91
|
+
color: colors.$gray-60;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.middot {
|
|
95
|
+
margin: 0 layout.$spacing-03;
|
|
96
|
+
font-weight: normal;
|
|
97
|
+
color: colors.$gray-60;
|
|
98
|
+
font-size: type.type-scale(2);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.age {
|
|
102
|
+
font-weight: normal;
|
|
103
|
+
color: colors.$gray-60;
|
|
104
|
+
font-size: type.type-scale(2);
|
|
105
|
+
}
|
|
106
|
+
.causeDisplay {
|
|
107
|
+
font-size: type.type-scale(2);
|
|
108
|
+
color: colors.$gray-60;
|
|
109
|
+
text-align: justify;
|
|
110
|
+
}
|
|
111
|
+
.emptyStateContainer {
|
|
112
|
+
display: flex;
|
|
113
|
+
justify-content: center;
|
|
114
|
+
align-items: center;
|
|
115
|
+
text-align: center;
|
|
96
116
|
}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { MorgueHeader } from '../header/morgue-header.component';
|
|
3
3
|
import { MorgueTabs } from '../tabs/tabs.component';
|
|
4
|
+
import { useTranslation } from 'react-i18next';
|
|
4
5
|
|
|
5
6
|
const MainComponent: React.FC = () => {
|
|
7
|
+
const { t } = useTranslation();
|
|
6
8
|
return (
|
|
7
9
|
<div className={`omrs-main-content`}>
|
|
8
|
-
<MorgueHeader title={'
|
|
10
|
+
<MorgueHeader title={t('mortuary', 'Mortuary')} />
|
|
9
11
|
<MorgueTabs />
|
|
10
12
|
</div>
|
|
11
13
|
);
|
|
@@ -1,19 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Search } from '@carbon/react';
|
|
2
2
|
import React, { useState } from 'react';
|
|
3
3
|
import styles from './admitted-queue-header.scss';
|
|
4
4
|
|
|
5
|
-
const DeceasedFilter: React.FC = () => {
|
|
6
|
-
const
|
|
7
|
-
{ id: 'all', text: 'All' },
|
|
8
|
-
{ id: 'male', text: 'Male' },
|
|
9
|
-
{ id: 'female', text: 'Female' },
|
|
10
|
-
{ id: 'children', text: 'Children' },
|
|
11
|
-
];
|
|
5
|
+
const DeceasedFilter: React.FC<{ onSearchChange: (searchQuery: string) => void }> = ({ onSearchChange }) => {
|
|
6
|
+
const [searchQuery, setSearchQuery] = useState('');
|
|
12
7
|
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
8
|
+
const handleSearchChange = (event) => {
|
|
9
|
+
const query = event.target.value;
|
|
10
|
+
setSearchQuery(query);
|
|
11
|
+
onSearchChange(query);
|
|
17
12
|
};
|
|
18
13
|
|
|
19
14
|
return (
|
|
@@ -24,21 +19,10 @@ const DeceasedFilter: React.FC = () => {
|
|
|
24
19
|
labelText="Search"
|
|
25
20
|
closeButtonLabelText="Clear search input"
|
|
26
21
|
id="search-deceased"
|
|
27
|
-
onChange={
|
|
28
|
-
|
|
22
|
+
onChange={handleSearchChange}
|
|
23
|
+
value={searchQuery}
|
|
29
24
|
className={styles.searchInput}
|
|
30
25
|
/>
|
|
31
|
-
<div className={styles.actionBtn}>
|
|
32
|
-
<ComboBox
|
|
33
|
-
onChange={handleChange}
|
|
34
|
-
id="filter"
|
|
35
|
-
items={items}
|
|
36
|
-
className={styles.comboBox}
|
|
37
|
-
size="sm"
|
|
38
|
-
itemToString={(item) => (item ? item.text : '')}
|
|
39
|
-
initialSelectedItem={items[0]}
|
|
40
|
-
/>
|
|
41
|
-
</div>
|
|
42
26
|
</div>
|
|
43
27
|
);
|
|
44
28
|
};
|
|
@@ -19,8 +19,8 @@ export const MorgueHeader: React.FC<MorgueHeaderProps> = ({ title }) => {
|
|
|
19
19
|
<div className={styles['left-justified-items']}>
|
|
20
20
|
<MorgueIllustration />
|
|
21
21
|
<div className={styles['page-labels']}>
|
|
22
|
-
<p>{t('morgue', 'Morgue Management')}</p>
|
|
23
22
|
<p className={styles['page-name']}>{title}</p>
|
|
23
|
+
<p>{t('mortuaryManagement', 'Mortuary management')}</p>
|
|
24
24
|
</div>
|
|
25
25
|
</div>
|
|
26
26
|
<div className={styles.metrics}>
|
|
@@ -36,20 +36,6 @@ export const MorgueHeader: React.FC<MorgueHeaderProps> = ({ title }) => {
|
|
|
36
36
|
<span className={styles.metricLabel}>{t('discharges', 'Discharges')}</span>
|
|
37
37
|
<span className={styles.metricValue}>0</span>
|
|
38
38
|
</div>
|
|
39
|
-
<div className={styles.wrapMetrics}>
|
|
40
|
-
<span className={styles.metricLabel}>{t('amountCollected', 'Amount(s)')}</span>
|
|
41
|
-
<span className={styles.metricValue}>0</span>
|
|
42
|
-
</div>
|
|
43
|
-
<div className={styles.wrapMetrics}>
|
|
44
|
-
<div className={styles.metricLocationDate}>
|
|
45
|
-
<span className={styles.location}>
|
|
46
|
-
<Location size={16} /> {userLocation}
|
|
47
|
-
</span>
|
|
48
|
-
<span className={styles.date}>
|
|
49
|
-
<Calendar size={16} /> {formatDate(new Date(), { mode: 'standard' })}
|
|
50
|
-
</span>
|
|
51
|
-
</div>
|
|
52
|
-
</div>
|
|
53
39
|
</div>
|
|
54
40
|
</div>
|
|
55
41
|
);
|
|
@@ -26,8 +26,6 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.page-labels {
|
|
29
|
-
margin-left: layout.$spacing-05;
|
|
30
|
-
|
|
31
29
|
p:first-of-type {
|
|
32
30
|
margin-bottom: layout.$spacing-02;
|
|
33
31
|
}
|
|
@@ -53,7 +51,6 @@ svg.iconOverrides {
|
|
|
53
51
|
gap: layout.$spacing-06;
|
|
54
52
|
flex-wrap: wrap;
|
|
55
53
|
padding: layout.$spacing-04 layout.$spacing-05 0 0;
|
|
56
|
-
margin-right: layout.$spacing-10;
|
|
57
54
|
width: auto;
|
|
58
55
|
height: auto;
|
|
59
56
|
}
|
|
@@ -102,35 +99,3 @@ svg.iconOverrides {
|
|
|
102
99
|
width: auto;
|
|
103
100
|
max-width: 120px;
|
|
104
101
|
}
|
|
105
|
-
|
|
106
|
-
.location,
|
|
107
|
-
.date {
|
|
108
|
-
display: flex;
|
|
109
|
-
align-items: center;
|
|
110
|
-
font-size: layout.$spacing-05;
|
|
111
|
-
line-height: 1.33;
|
|
112
|
-
text-align: left;
|
|
113
|
-
white-space: nowrap;
|
|
114
|
-
overflow: hidden;
|
|
115
|
-
text-overflow: ellipsis;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
.location {
|
|
119
|
-
margin-bottom: layout.$spacing-02;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
@media (max-width: 768px) {
|
|
123
|
-
.metrics {
|
|
124
|
-
gap: 12px;
|
|
125
|
-
margin-right: layout.$spacing-05;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
.wrapMetrics {
|
|
129
|
-
min-width: layout.$spacing-11;
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.metricLabel,
|
|
133
|
-
.metricValue {
|
|
134
|
-
font-size: layout.$spacing-04;
|
|
135
|
-
}
|
|
136
|
-
}
|
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
useOpenmrsPagination,
|
|
8
8
|
type Visit,
|
|
9
9
|
} from '@openmrs/esm-framework';
|
|
10
|
-
import { DeceasedPatientResponse, PaymentMethod, VisitTypeResponse, Location } from '../types';
|
|
10
|
+
import { DeceasedPatientResponse, PaymentMethod, VisitTypeResponse, Location, Patient } from '../types';
|
|
11
11
|
import useSWR from 'swr';
|
|
12
12
|
import { BillingConfig, ConfigObject } from '../config-schema';
|
|
13
13
|
import { useState } from 'react';
|
|
@@ -114,3 +114,12 @@ export const useActiveMorgueVisit = () => {
|
|
|
114
114
|
|
|
115
115
|
return { data: activeDeceased, error, isLoading };
|
|
116
116
|
};
|
|
117
|
+
const usePerson = (uuid: string) => {
|
|
118
|
+
const customRepresentation = `custom:(uuid,display,gender,birthdate,dead,age,deathDate,causeOfDeath:(uuid,display))`;
|
|
119
|
+
const url = `${restBaseUrl}/person/${uuid}?v=${customRepresentation}`;
|
|
120
|
+
const { isLoading, error, data } = useSWR<FetchResponse<Patient['person']>>(url, openmrsFetch);
|
|
121
|
+
const person = data?.data;
|
|
122
|
+
return { isLoading, error, person };
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
export default usePerson;
|
package/src/index.ts
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
|
-
import React from 'react';
|
|
1
|
+
import React, { useState } from 'react';
|
|
2
2
|
import { useTranslation } from 'react-i18next';
|
|
3
3
|
import DeceasedFilter from '../header/admitted-queue-header.component';
|
|
4
4
|
import styles from './admitted-queue.scss';
|
|
5
5
|
import CompartmentView from '../card/compartment-view.compartment';
|
|
6
|
-
import { useActiveMorgueVisit
|
|
6
|
+
import usePatientPerson, { useActiveMorgueVisit } from '../hook/useMorgue.resource';
|
|
7
7
|
import { InlineLoading } from '@carbon/react';
|
|
8
8
|
import { CardHeader, ErrorState } from '@openmrs/esm-patient-common-lib';
|
|
9
9
|
|
|
10
10
|
export const AdmittedQueue: React.FC = () => {
|
|
11
11
|
const { data: activeDeceased, error, isLoading } = useActiveMorgueVisit();
|
|
12
12
|
const { t } = useTranslation();
|
|
13
|
+
const [searchQuery, setSearchQuery] = useState('');
|
|
14
|
+
|
|
15
|
+
const handleSearchChange = (query: string) => {
|
|
16
|
+
setSearchQuery(query);
|
|
17
|
+
};
|
|
13
18
|
|
|
14
19
|
if (isLoading) {
|
|
15
20
|
return (
|
|
@@ -28,10 +33,12 @@ export const AdmittedQueue: React.FC = () => {
|
|
|
28
33
|
return (
|
|
29
34
|
<div className={styles.layoutWrapper}>
|
|
30
35
|
<CardHeader title={t('allocation', 'Allocation')} children={''} />
|
|
31
|
-
<DeceasedFilter />
|
|
36
|
+
<DeceasedFilter onSearchChange={handleSearchChange} />
|
|
32
37
|
<div className={styles.patientCardContainer}>
|
|
33
|
-
<CompartmentView patientVisit={activeDeceased} />
|
|
38
|
+
<CompartmentView patientVisit={activeDeceased} searchQuery={searchQuery} />
|
|
34
39
|
</div>
|
|
35
40
|
</div>
|
|
36
41
|
);
|
|
37
42
|
};
|
|
43
|
+
|
|
44
|
+
export default AdmittedQueue;
|
package/src/utils/utils.ts
CHANGED
|
@@ -1,6 +1,25 @@
|
|
|
1
1
|
import { makeUrl } from '@openmrs/esm-framework';
|
|
2
2
|
import dayjs from 'dayjs';
|
|
3
3
|
|
|
4
|
+
/**
|
|
5
|
+
* Generates a URL based on the given path and the current location.
|
|
6
|
+
*
|
|
7
|
+
* @param path - The relative path for the URL.
|
|
8
|
+
* @returns The full URL as a string.
|
|
9
|
+
*/
|
|
10
|
+
|
|
4
11
|
export function makeUrlUrl(path: string) {
|
|
5
12
|
return new URL(makeUrl(path), window.location.toString());
|
|
6
13
|
}
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Calculates the number of days from the given date to today.
|
|
17
|
+
*
|
|
18
|
+
* @param startDate - The starting date in string or Date format.
|
|
19
|
+
* @returns The number of days from the start date to today.
|
|
20
|
+
*/
|
|
21
|
+
export function convertDateToDays(startDate: string | Date): number {
|
|
22
|
+
const today = dayjs();
|
|
23
|
+
const start = dayjs(startDate);
|
|
24
|
+
return today.diff(start, 'day');
|
|
25
|
+
}
|
package/translations/en.json
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"admitted": "Admitted Bodies",
|
|
5
5
|
"admittedOnes": "Admitted",
|
|
6
6
|
"allocation": "Allocation",
|
|
7
|
-
"amountCollected": "Amount(s)",
|
|
8
7
|
"awaiting": "Awaiting",
|
|
9
8
|
"discharged": "Discharged",
|
|
10
9
|
"discharges": "Discharges",
|
|
11
10
|
"empty": "Empty",
|
|
12
|
-
"
|
|
11
|
+
"mortuary": "Mortuary",
|
|
12
|
+
"mortuaryManagement": "Mortuary management",
|
|
13
13
|
"noDeceasedPersons": "There are no deceased persons on the waiting list",
|
|
14
14
|
"noResultFound": "Sorry, no results found",
|
|
15
15
|
"noWaitingList": "Waiting List",
|
package/dist/47.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_kenyaemr_esm_morgue_app=globalThis.webpackChunk_kenyaemr_esm_morgue_app||[]).push([[47],{1895:(e,t,r)=>{r.d(t,{aZ:()=>i});var c,l,a=r(380),n=r.n(a),h=r(9247);const i=n().forwardRef((function(e,t){let{children:r,size:a=16,...i}=e;return n().createElement(h.A,{width:a,height:a,ref:t,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...i},c||(c=n().createElement("path",{d:"M16,18a5,5,0,1,1,5-5A5.0057,5.0057,0,0,1,16,18Zm0-8a3,3,0,1,0,3,3A3.0033,3.0033,0,0,0,16,10Z"})),l||(l=n().createElement("path",{d:"M16,30,7.5645,20.0513c-.0479-.0571-.3482-.4515-.3482-.4515A10.8888,10.8888,0,0,1,5,13a11,11,0,0,1,22,0,10.8844,10.8844,0,0,1-2.2148,6.5973l-.0015.0025s-.3.3944-.3447.4474ZM8.8125,18.395c.001.0007.2334.3082.2866.3744L16,26.9079l6.91-8.15c.0439-.0552.2783-.3649.2788-.3657A8.901,8.901,0,0,0,25,13,9,9,0,1,0,7,13a8.9054,8.9054,0,0,0,1.8125,5.395Z"})),r)}))},4240:(e,t,r)=>{r.d(t,{yG:()=>h});var c,l=r(380),a=r.n(l),n=r(9247);const h=a().forwardRef((function(e,t){let{children:r,size:l=16,...h}=e;return a().createElement(n.A,{width:l,height:l,ref:t,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...h},c||(c=a().createElement("path",{d:"M24,20l-1.41,1.41L26.17,25H10a4,4,0,0,1,0-8H22A6,6,0,0,0,22,5H5.83L9.41,1.41,8,0,2,6l6,6,1.41-1.41L5.83,7H22a4,4,0,0,1,0,8H10a6,6,0,0,0,0,12H26.17l-3.58,3.59L24,32l6-6Z"})),r)}))},8285:(e,t,r)=>{r.d(t,{W5:()=>i});var c,l,a=r(380),n=r.n(a),h=r(9247);const i=n().forwardRef((function(e,t){let{children:r,size:a=16,...i}=e;return n().createElement(h.A,{width:a,height:a,ref:t,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...i},c||(c=n().createElement("path",{d:"M25,16H17a2.0023,2.0023,0,0,0-2,2v6H4V14H2V30H4V26H28v4h2V21A5.0059,5.0059,0,0,0,25,16Zm3,8H17V18h8a3.0033,3.0033,0,0,1,3,3Z"})),l||(l=n().createElement("path",{d:"M9.5 17A1.5 1.5 0 118 18.5 1.5017 1.5017 0 019.5 17m0-2A3.5 3.5 0 1013 18.5 3.5 3.5 0 009.5 15zM21 6L17 6 17 2 15 2 15 6 11 6 11 8 15 8 15 12 17 12 17 8 21 8 21 6z"})),r)}))},3760:(e,t,r)=>{r.d(t,{Bo:()=>s});var c,l,a,n,h,i,o,m,w=r(380),H=r.n(w),d=r(9247);const s=H().forwardRef((function(e,t){let{children:r,size:w=16,...s}=e;return H().createElement(d.A,{width:w,height:w,ref:t,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...s},c||(c=H().createElement("path",{d:"M20 25H27V27H20zM22 29H25V31H22zM27 23h-2c0-1.1.4-2 1.2-2.8l.5-.5c.8-.8 1.3-2 1.3-3.2 0-2.5-2-4.5-4.5-4.5S19 14 19 16.5c0 1.2.5 2.3 1.3 3.2l.5.5C21.6 21 22 21.9 22 23h-2c0-.5-.2-1-.6-1.4l-.5-.5c-1.2-1.2-1.9-2.9-1.9-4.6 0-3.6 2.9-6.5 6.5-6.5s6.5 2.9 6.5 6.5c0 1.7-.7 3.4-1.9 4.6l-.5.5C27.2 22 27 22.5 27 23zM6 22H14V24H6z"})),l||(l=H().createElement("circle",{cx:"12",cy:"19",r:"1"})),a||(a=H().createElement("path",{d:"M6 18H9V20H6zM6 14H13V16H6zM10 10H17V12H10z"})),n||(n=H().createElement("circle",{cx:"7",cy:"11",r:"1"})),h||(h=H().createElement("path",{d:"M16 6H20V8H16z"})),i||(i=H().createElement("circle",{cx:"13",cy:"7",r:"1"})),o||(o=H().createElement("path",{d:"M6 6H10V8H6z"})),m||(m=H().createElement("path",{d:"M18,28H4V4l18,0v4h2V4c0-1.1-0.9-2-2-2H4C2.9,2,2,2.9,2,4v24c0,1.1,0.9,2,2,2h14V28z"})),r)}))}}]);
|
package/dist/47.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"47.js","mappings":"oKAc2EA,EAASC,E,4BA+LpF,MAAMC,EAAwB,gBAAiB,SAAkBC,EAAQC,GACvE,IAAI,SACFC,EAAQ,KACRC,EAAO,MACJC,GACDJ,EACJ,OAAoB,kBAAoB,IAAM,CAC5CK,MAAOF,EACPG,OAAQH,EACRF,IAAKA,EACLM,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHL,GACFP,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEa,EAAG,kGACAZ,IAAYA,EAAuB,kBAAoB,OAAQ,CAClEY,EAAG,6VACAR,EACP,G,uCClN+cS,E,4BAgrB/c,MAAMC,EAAwB,gBAAiB,SAAkBC,EAAQZ,GACvE,IAAI,SACFC,EAAQ,KACRC,EAAO,MACJC,GACDS,EACJ,OAAoB,kBAAoB,IAAM,CAC5CR,MAAOF,EACPG,OAAQH,EACRF,IAAKA,EACLM,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHL,GACFO,IAAYA,EAAuB,kBAAoB,OAAQ,CAChED,EAAG,8KACAR,EACP,G,uCCjsB++CY,EAAUC,E,4BAy3Dz/C,MAAMC,EAA2B,gBAAiB,SAAqBC,EAAQhB,GAC7E,IAAI,SACFC,EAAQ,KACRC,EAAO,MACJC,GACDa,EACJ,OAAoB,kBAAoB,IAAM,CAC5CZ,MAAOF,EACPG,OAAQH,EACRF,IAAKA,EACLM,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHL,GACFU,IAAaA,EAAwB,kBAAoB,OAAQ,CAClEJ,EAAG,kIACAK,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEL,EAAG,yKACAR,EACP,G,uCC54D0+DgB,EAAUC,EAAWC,EAAUC,EAAWC,EAAUC,EAAWC,EAAUC,E,4BAg8DnjE,MAAMC,EAAwC,gBAAiB,SAAkCC,EAAQ1B,GACvG,IAAI,SACFC,EAAQ,KACRC,EAAO,MACJC,GACDuB,EACJ,OAAoB,kBAAoB,IAAM,CAC5CtB,MAAOF,EACPG,OAAQH,EACRF,IAAKA,EACLM,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHL,GACFc,IAAaA,EAAwB,kBAAoB,OAAQ,CAClER,EAAG,sUACAS,IAAcA,EAAyB,kBAAoB,SAAU,CACxES,GAAI,KACJC,GAAI,KACJC,EAAG,OACAV,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEV,EAAG,iDACAW,IAAcA,EAAyB,kBAAoB,SAAU,CACxEO,GAAI,IACJC,GAAI,KACJC,EAAG,OACAR,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEZ,EAAG,oBACAa,IAAcA,EAAyB,kBAAoB,SAAU,CACxEK,GAAI,KACJC,GAAI,IACJC,EAAG,OACAN,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEd,EAAG,kBACAe,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEf,EAAG,uFACAR,EACP,G","sources":["webpack://@kenyaemr/esm-morgue-app/../../node_modules/@carbon/icons-react/es/generated/bucket-10.js","webpack://@kenyaemr/esm-morgue-app/../../node_modules/@carbon/icons-react/es/generated/bucket-11.js","webpack://@kenyaemr/esm-morgue-app/../../node_modules/@carbon/icons-react/es/generated/bucket-7.js","webpack://@kenyaemr/esm-morgue-app/../../node_modules/@carbon/icons-react/es/generated/bucket-8.js"],"names":["_path10","_path11","Location","_ref10","ref","children","size","rest","width","height","xmlns","viewBox","fill","d","_path51","Movement","_ref31","_path127","_path128","HospitalBed","_ref80","_path168","_circle43","_path169","_circle44","_path170","_circle45","_path171","_path172","IbmWatsonKnowledgeStudio","_ref78","cx","cy","r"],"sourceRoot":""}
|