@kenyaemr/esm-adr-app 5.4.2-pre.2453 → 5.4.2-pre.2458
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 +23 -18
- package/dist/197.js +1 -1
- package/dist/216.js +1 -1
- package/dist/216.js.map +1 -1
- package/dist/294.js +1 -1
- package/dist/300.js +1 -1
- package/dist/490.js +1 -1
- package/dist/490.js.map +1 -1
- package/dist/715.js +1 -0
- package/dist/715.js.map +1 -0
- package/dist/797.js +2 -0
- package/dist/797.js.map +1 -0
- package/dist/kenyaemr-esm-adr-app.js +1 -1
- package/dist/kenyaemr-esm-adr-app.js.buildmanifest.json +34 -61
- package/dist/kenyaemr-esm-adr-app.js.map +1 -1
- 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/components/dashboard/dashboard-view.component.tsx +2 -8
- package/src/components/dashboard/home-dashboard.component.tsx +3 -15
- package/src/components/encounters/adr-encounter.component.tsx +58 -63
- package/src/components/encounters/encounter.resource.tsx +1 -38
- package/src/components/encounters/encounter.scss +0 -12
- package/src/components/summary/summary.component.tsx +34 -30
- package/src/components/summary/summary.scss +4 -1
- package/src/config-schema.ts +1 -19
- package/src/root.component.tsx +2 -3
- package/translations/am.json +4 -6
- package/translations/en.json +4 -6
- package/translations/sw.json +4 -6
- package/dist/696.js +0 -1
- package/dist/696.js.map +0 -1
- package/dist/796.js +0 -2
- package/dist/796.js.map +0 -1
- package/dist/902.js +0 -1
- package/dist/902.js.map +0 -1
- package/src/components/adr-patient-summary/patient-summary.component.tsx +0 -59
- package/src/components/adr-patient-summary/patient-summary.scss +0 -22
- package/src/components/encounters/patient-encounter.component.tsx +0 -54
- package/src/components/patient-search/patient-search.component.tsx +0 -30
- package/src/components/patient-search/patient-search.scss +0 -5
- package/src/components/patient-search/useInitialize.ts +0 -24
- /package/dist/{796.js.LICENSE.txt → 797.js.LICENSE.txt} +0 -0
package/dist/routes.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"kenyaemr":"^19.0.0"},"pages":[{"component":"adrAssessmentApp","route":"adr-assessment"}],"workspaces":[{"name":"patient-adr-workspace","title":"ADR Assessment Review","component":"patientAdrWorkspace","type":"workspace","canMaximize":true,"canHide":true,"width":"extra-wide"}],"extensions":[{"name":"adr-assessment-side-nav","slot":"adr-assessment-side-nav-slot","component":"adrAssessmentSideNav"},{"name":"adr-assessment-search-dashboard-db-link","slot":"adr-assessment-page-dashboard-slot","component":"overviewDashboardLink","meta":{"name":"adr-assessment-overview","title":"Overview","slot":"adr-assessment-overview-dashboard-slot"}},{"name":"adr-assessment-summary","component":"adrAssessmentSummary","slot":"adr-assessment-overview-dashboard-slot"}],"version":"5.4.2-pre.
|
|
1
|
+
{"$schema":"https://json.openmrs.org/routes.schema.json","backendDependencies":{"kenyaemr":"^19.0.0"},"pages":[{"component":"adrAssessmentApp","route":"adr-assessment"}],"workspaces":[{"name":"patient-adr-workspace","title":"ADR Assessment Review","component":"patientAdrWorkspace","type":"workspace","canMaximize":true,"canHide":true,"width":"extra-wide"}],"extensions":[{"name":"adr-assessment-side-nav","slot":"adr-assessment-side-nav-slot","component":"adrAssessmentSideNav"},{"name":"adr-assessment-search-dashboard-db-link","slot":"adr-assessment-page-dashboard-slot","component":"overviewDashboardLink","meta":{"name":"adr-assessment-overview","title":"Overview","slot":"adr-assessment-overview-dashboard-slot"}},{"name":"adr-assessment-summary","component":"adrAssessmentSummary","slot":"adr-assessment-overview-dashboard-slot"}],"version":"5.4.2-pre.2458"}
|
package/package.json
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import {
|
|
3
|
-
ExtensionSlot,
|
|
4
|
-
PageHeader,
|
|
5
|
-
AppointmentsPictogram,
|
|
6
|
-
PageHeaderContent,
|
|
7
|
-
PharmacyPictogram,
|
|
8
|
-
} from '@openmrs/esm-framework';
|
|
2
|
+
import { ExtensionSlot, PageHeader, AppointmentsPictogram, PageHeaderContent } from '@openmrs/esm-framework';
|
|
9
3
|
import { useTranslation } from 'react-i18next';
|
|
10
4
|
import styles from './dashboard-view.scss';
|
|
11
5
|
const DashboardView: React.FC<{ dashboardSlot: string; title: string }> = ({ dashboardSlot, title }) => {
|
|
@@ -13,7 +7,7 @@ const DashboardView: React.FC<{ dashboardSlot: string; title: string }> = ({ das
|
|
|
13
7
|
return (
|
|
14
8
|
<>
|
|
15
9
|
<PageHeader className={styles.pageHeader}>
|
|
16
|
-
<PageHeaderContent title={t('adrAssessment', 'ADR Assessment')} illustration={<
|
|
10
|
+
<PageHeaderContent title={t('adrAssessment', 'ADR Assessment')} illustration={<AppointmentsPictogram />} />
|
|
17
11
|
</PageHeader>
|
|
18
12
|
<ExtensionSlot name={dashboardSlot} state={{ dashboardTitle: title }} />
|
|
19
13
|
</>
|
|
@@ -1,13 +1,6 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from 'react';
|
|
2
2
|
import { useParams } from 'react-router-dom';
|
|
3
|
-
import {
|
|
4
|
-
ExtensionSlot,
|
|
5
|
-
WorkspaceContainer,
|
|
6
|
-
isDesktop,
|
|
7
|
-
navigate,
|
|
8
|
-
useExtensionStore,
|
|
9
|
-
useLayoutType,
|
|
10
|
-
} from '@openmrs/esm-framework';
|
|
3
|
+
import { ExtensionSlot, WorkspaceContainer, isDesktop, useExtensionStore, useLayoutType } from '@openmrs/esm-framework';
|
|
11
4
|
import DashboardView from './dashboard-view.component';
|
|
12
5
|
import styles from './home-dashboard.scss';
|
|
13
6
|
import { DashboardConfig } from '../../types';
|
|
@@ -23,12 +16,6 @@ export default function Dashboard() {
|
|
|
23
16
|
const dashboards = ungroupedDashboards as Array<DashboardConfig>;
|
|
24
17
|
const activeDashboard = dashboards.find((dashboard) => dashboard.name === params?.dashboard) || dashboards[0];
|
|
25
18
|
|
|
26
|
-
useEffect(() => {
|
|
27
|
-
if (params?.dashboard === undefined) {
|
|
28
|
-
navigate({ to: `${window.spaBase}/adr-assessment/overview` });
|
|
29
|
-
}
|
|
30
|
-
}, [params?.dashboard]);
|
|
31
|
-
|
|
32
19
|
return (
|
|
33
20
|
<>
|
|
34
21
|
<div className={styles.homePageWrapper}>
|
|
@@ -36,6 +23,7 @@ export default function Dashboard() {
|
|
|
36
23
|
{isDesktop(layout) && <ExtensionSlot name="adr-assessment-side-nav-slot" key={layout} />}
|
|
37
24
|
<DashboardView title={activeDashboard?.name} dashboardSlot={activeDashboard?.slot} />
|
|
38
25
|
</section>
|
|
26
|
+
<WorkspaceContainer overlay contextKey="adr-assessment" />
|
|
39
27
|
</div>
|
|
40
28
|
</>
|
|
41
29
|
);
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import React, { useState } from 'react';
|
|
2
2
|
import {
|
|
3
|
+
Button,
|
|
3
4
|
DataTable,
|
|
4
|
-
Layer,
|
|
5
|
-
OverflowMenu,
|
|
6
|
-
OverflowMenuItem,
|
|
7
5
|
Pagination,
|
|
8
6
|
Table,
|
|
9
7
|
TableBody,
|
|
@@ -19,6 +17,7 @@ import {
|
|
|
19
17
|
import styles from './encounter.scss';
|
|
20
18
|
import { useTranslation } from 'react-i18next';
|
|
21
19
|
import {
|
|
20
|
+
ActionMenuButton,
|
|
22
21
|
formatDatetime,
|
|
23
22
|
isDesktop,
|
|
24
23
|
launchWorkspace,
|
|
@@ -45,6 +44,7 @@ const AdrEncounter: React.FC<adrEncounterProps> = ({ encounters }) => {
|
|
|
45
44
|
{ header: 'Visit type', key: 'visitTypeName' },
|
|
46
45
|
{ header: 'Form name', key: 'formName' },
|
|
47
46
|
{ header: 'Provider', key: 'provider' },
|
|
47
|
+
{ header: 'Actions', key: 'action' },
|
|
48
48
|
];
|
|
49
49
|
const sortedEncounters = encounters.sort((a, b) => {
|
|
50
50
|
const dateA = new Date(a.encounterDatetime || 0).getTime();
|
|
@@ -67,6 +67,11 @@ const AdrEncounter: React.FC<adrEncounterProps> = ({ encounters }) => {
|
|
|
67
67
|
formName: encounter?.formName,
|
|
68
68
|
id: encounter?.encounterUuid,
|
|
69
69
|
provider: encounter?.provider || '--',
|
|
70
|
+
action: (
|
|
71
|
+
<Button kind="tertiary" renderIcon={ReviewIcon} onClick={() => handler(encounter)}>
|
|
72
|
+
{t('review', 'Review')}
|
|
73
|
+
</Button>
|
|
74
|
+
),
|
|
70
75
|
}));
|
|
71
76
|
if (encounters.length === 0) {
|
|
72
77
|
return (
|
|
@@ -81,68 +86,58 @@ const AdrEncounter: React.FC<adrEncounterProps> = ({ encounters }) => {
|
|
|
81
86
|
|
|
82
87
|
return (
|
|
83
88
|
<div className={styles.encounterContainer}>
|
|
84
|
-
<
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
<
|
|
102
|
-
<
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
<
|
|
107
|
-
<
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
header,
|
|
114
|
-
})}>
|
|
115
|
-
{header.header}
|
|
116
|
-
</TableHeader>
|
|
117
|
-
))}
|
|
118
|
-
<TableHeader aria-label={t('actions', 'Actions')} />
|
|
119
|
-
</TableRow>
|
|
120
|
-
</TableHead>
|
|
121
|
-
<TableBody>
|
|
122
|
-
{rows.map((row, index) => (
|
|
123
|
-
<TableRow
|
|
124
|
-
key={row.id}
|
|
125
|
-
{...getRowProps({
|
|
126
|
-
row,
|
|
89
|
+
<DataTable size={responsiveSize} rows={tableRows} headers={headers}>
|
|
90
|
+
{({
|
|
91
|
+
rows,
|
|
92
|
+
headers,
|
|
93
|
+
getHeaderProps,
|
|
94
|
+
getRowProps,
|
|
95
|
+
getTableProps,
|
|
96
|
+
getToolbarProps,
|
|
97
|
+
onInputChange,
|
|
98
|
+
getTableContainerProps,
|
|
99
|
+
}) => (
|
|
100
|
+
<TableContainer
|
|
101
|
+
className={styles.encounterTable}
|
|
102
|
+
title={t('adrAssessmentEncounters', 'ADR Assessment Encounters')}
|
|
103
|
+
description={t('summaryOfAdrAssessmentEncounters', 'Summary of ADR assessment encounters')}
|
|
104
|
+
{...getTableContainerProps()}>
|
|
105
|
+
<TableToolbar {...getToolbarProps()} aria-label="data table toolbar">
|
|
106
|
+
<TableToolbarContent>
|
|
107
|
+
<TableToolbarSearch persistent onChange={onInputChange} />
|
|
108
|
+
</TableToolbarContent>
|
|
109
|
+
</TableToolbar>
|
|
110
|
+
<Table {...getTableProps()} aria-label={t('encounters', 'Encounters')}>
|
|
111
|
+
<TableHead>
|
|
112
|
+
<TableRow>
|
|
113
|
+
{headers.map((header) => (
|
|
114
|
+
<TableHeader
|
|
115
|
+
key={header.key}
|
|
116
|
+
{...getHeaderProps({
|
|
117
|
+
header,
|
|
127
118
|
})}>
|
|
128
|
-
{
|
|
129
|
-
|
|
130
|
-
))}
|
|
131
|
-
<TableCell className="cds--table-column-menu">
|
|
132
|
-
<OverflowMenu size="sm" flipped>
|
|
133
|
-
<OverflowMenuItem onClick={() => handler(encounters[index])}>
|
|
134
|
-
{t('review', 'Review')}
|
|
135
|
-
</OverflowMenuItem>
|
|
136
|
-
</OverflowMenu>
|
|
137
|
-
</TableCell>
|
|
138
|
-
</TableRow>
|
|
119
|
+
{header.header}
|
|
120
|
+
</TableHeader>
|
|
139
121
|
))}
|
|
140
|
-
</
|
|
141
|
-
</
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
122
|
+
</TableRow>
|
|
123
|
+
</TableHead>
|
|
124
|
+
<TableBody>
|
|
125
|
+
{rows.map((row) => (
|
|
126
|
+
<TableRow
|
|
127
|
+
key={row.id}
|
|
128
|
+
{...getRowProps({
|
|
129
|
+
row,
|
|
130
|
+
})}>
|
|
131
|
+
{row.cells.map((cell) => (
|
|
132
|
+
<TableCell key={cell.id}>{cell.value}</TableCell>
|
|
133
|
+
))}
|
|
134
|
+
</TableRow>
|
|
135
|
+
))}
|
|
136
|
+
</TableBody>
|
|
137
|
+
</Table>
|
|
138
|
+
</TableContainer>
|
|
139
|
+
)}
|
|
140
|
+
</DataTable>
|
|
146
141
|
{paginated && (
|
|
147
142
|
<Pagination
|
|
148
143
|
forwardText="Next page"
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
+
import { openmrsFetch, restBaseUrl } from '@openmrs/esm-framework';
|
|
1
2
|
import useSWR from 'swr';
|
|
2
|
-
import { openmrsFetch, restBaseUrl, useConfig, useOpenmrsPagination, type Encounter } from '@openmrs/esm-framework';
|
|
3
|
-
|
|
4
3
|
import { MappedAdrEncounter } from '../../types';
|
|
5
|
-
import { type ADRConfigObject } from '../../config-schema';
|
|
6
4
|
|
|
7
5
|
export const useAdrAssessmentEncounter = (fromDate: string, toDate?: string) => {
|
|
8
6
|
const url = `${restBaseUrl}/kenyaemr/adrencounter?fromdate=${fromDate}&todate=${toDate}`;
|
|
@@ -13,38 +11,3 @@ export const useAdrAssessmentEncounter = (fromDate: string, toDate?: string) =>
|
|
|
13
11
|
error,
|
|
14
12
|
};
|
|
15
13
|
};
|
|
16
|
-
|
|
17
|
-
export const usePatientAdrAssessmentEncounter = (patientUuid: string) => {
|
|
18
|
-
const { adrAssessmentEncounterTypeUuid } = useConfig<ADRConfigObject>();
|
|
19
|
-
const url = `${restBaseUrl}/encounter?patient=${patientUuid}&encounterType=${adrAssessmentEncounterTypeUuid}&v=full`;
|
|
20
|
-
const pageSize = 10;
|
|
21
|
-
const { data, error, isLoading, paginated, currentPage, goTo, totalCount, currentPageSize, mutate } =
|
|
22
|
-
useOpenmrsPagination<Encounter>(url, pageSize);
|
|
23
|
-
|
|
24
|
-
const mappedEncounters: Array<MappedAdrEncounter> = data?.map((encounter) => ({
|
|
25
|
-
encounterUuid: encounter.uuid,
|
|
26
|
-
encounterTypeUuid: encounter.encounterType?.uuid,
|
|
27
|
-
patientUuid: encounter.patient?.uuid,
|
|
28
|
-
patientName: encounter.patient?.display,
|
|
29
|
-
encounterType: encounter.encounterType?.name,
|
|
30
|
-
encounterDatetime: encounter.encounterDatetime,
|
|
31
|
-
visitTypeName: encounter.visit?.visitType?.display,
|
|
32
|
-
formName: encounter.form?.display,
|
|
33
|
-
location: encounter.location?.display,
|
|
34
|
-
provider: encounter.encounterProviders?.map((provider) => provider.provider?.display).join(', '),
|
|
35
|
-
formUuid: encounter.form?.uuid,
|
|
36
|
-
visitUuid: encounter.visit?.uuid,
|
|
37
|
-
visitTypeUuid: encounter.visit?.visitType?.uuid,
|
|
38
|
-
}));
|
|
39
|
-
return {
|
|
40
|
-
encounters: mappedEncounters ?? [],
|
|
41
|
-
isLoading,
|
|
42
|
-
error,
|
|
43
|
-
paginated,
|
|
44
|
-
currentPage,
|
|
45
|
-
goTo,
|
|
46
|
-
totalCount,
|
|
47
|
-
currentPageSize,
|
|
48
|
-
mutate,
|
|
49
|
-
};
|
|
50
|
-
};
|
|
@@ -5,20 +5,7 @@ import styles from './summary.scss';
|
|
|
5
5
|
import AdrEncounter from '../encounters/adr-encounter.component';
|
|
6
6
|
import { useTranslation } from 'react-i18next';
|
|
7
7
|
import { useAdrAssessmentEncounter } from '../encounters/encounter.resource';
|
|
8
|
-
import {
|
|
9
|
-
Button,
|
|
10
|
-
Checkbox,
|
|
11
|
-
DataTableSkeleton,
|
|
12
|
-
Layer,
|
|
13
|
-
Tab,
|
|
14
|
-
TabList,
|
|
15
|
-
TabPanel,
|
|
16
|
-
TabPanels,
|
|
17
|
-
Tabs,
|
|
18
|
-
TextInput,
|
|
19
|
-
} from '@carbon/react';
|
|
20
|
-
import { CloudMonitoring, Activity, IbmWatsonDiscovery, Settings, Search } from '@carbon/react/icons';
|
|
21
|
-
import PatientSearch from '../patient-search/patient-search.component';
|
|
8
|
+
import { DataTableSkeleton, DatePicker, DatePickerInput } from '@carbon/react';
|
|
22
9
|
|
|
23
10
|
type SummaryProps = {};
|
|
24
11
|
|
|
@@ -58,22 +45,39 @@ const Summary: React.FC<SummaryProps> = () => {
|
|
|
58
45
|
}
|
|
59
46
|
|
|
60
47
|
return (
|
|
61
|
-
|
|
62
|
-
<
|
|
63
|
-
<
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
48
|
+
<>
|
|
49
|
+
<div className={styles.filterContainer}>
|
|
50
|
+
<DatePicker
|
|
51
|
+
maxDate={new Date()}
|
|
52
|
+
datePickerType="range"
|
|
53
|
+
className={styles.dateRangePicker}
|
|
54
|
+
value={[...dateRange]}
|
|
55
|
+
onChange={handleDateRangeChange}>
|
|
56
|
+
<DatePickerInput
|
|
57
|
+
id="date-picker-input-id-start"
|
|
58
|
+
placeholder="mm/dd/yyyy"
|
|
59
|
+
labelText={t('startDate', 'Start date')}
|
|
60
|
+
size="md"
|
|
61
|
+
/>
|
|
62
|
+
<DatePickerInput
|
|
63
|
+
id="date-picker-input-id-finish"
|
|
64
|
+
placeholder="mm/dd/yyyy"
|
|
65
|
+
labelText={t('endDate', 'End date')}
|
|
66
|
+
size="md"
|
|
67
|
+
/>
|
|
68
|
+
</DatePicker>
|
|
69
|
+
</div>
|
|
70
|
+
<div className={styles.summaryContainer}>
|
|
71
|
+
<div className={styles.summaryCard}>
|
|
72
|
+
<h4>{t('adrAssessment', 'ADR Assessment')}</h4>
|
|
73
|
+
<div>
|
|
74
|
+
<h6>{t('totalAdrAssessment', 'Total ADR assessment')}</h6>
|
|
75
|
+
<p>{counts.assessment}</p>
|
|
76
|
+
</div>
|
|
77
|
+
</div>
|
|
78
|
+
</div>
|
|
79
|
+
<AdrEncounter encounters={encounters} />
|
|
80
|
+
</>
|
|
77
81
|
);
|
|
78
82
|
};
|
|
79
83
|
|
package/src/config-schema.ts
CHANGED
|
@@ -1,19 +1 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
export interface ADRConfigObject {
|
|
4
|
-
adrAssessmentEncounterTypeUuid: string;
|
|
5
|
-
adrAssessmentFormUuid: string;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export const configSchema = {
|
|
9
|
-
adrAssessmentEncounterTypeUuid: {
|
|
10
|
-
_type: Type.String,
|
|
11
|
-
_description: 'UUID for ADR Assessment encounter type',
|
|
12
|
-
_default: '7a185fe4-c56f-4195-b682-d3f5afa9d9c2 ',
|
|
13
|
-
},
|
|
14
|
-
adrAssessmentFormUuid: {
|
|
15
|
-
_type: Type.String,
|
|
16
|
-
_description: 'UUID for ADR Assessment form',
|
|
17
|
-
_default: '461e1b45-b3f2-4899-b3e9-d3b110b6ed9c',
|
|
18
|
-
},
|
|
19
|
-
};
|
|
1
|
+
export const configSchema = {};
|
package/src/root.component.tsx
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import React, { useEffect } from 'react';
|
|
2
2
|
import { Routes, BrowserRouter, Route } from 'react-router-dom';
|
|
3
|
-
import { setLeftNav, unsetLeftNav } from '@openmrs/esm-framework';
|
|
3
|
+
import { setLeftNav, unsetLeftNav, WorkspaceContainer } from '@openmrs/esm-framework';
|
|
4
4
|
import Dashboard from './components/dashboard/home-dashboard.component';
|
|
5
|
-
import AdrPatientSummary from './components/adr-patient-summary/patient-summary.component';
|
|
6
5
|
|
|
7
6
|
const AdrAssessmentApp = () => {
|
|
8
7
|
const spaBasePath = `${window.spaBase}/adr-assessment`;
|
|
@@ -18,8 +17,8 @@ const AdrAssessmentApp = () => {
|
|
|
18
17
|
<Routes>
|
|
19
18
|
<Route path="/adr-assessment" element={<Dashboard />} />
|
|
20
19
|
<Route path="/adr-assessment/:dashboard/*" element={<Dashboard />} />
|
|
21
|
-
<Route path="/adr-assessment/:dashboard/:patientUuid" element={<AdrPatientSummary />} />
|
|
22
20
|
</Routes>
|
|
21
|
+
<WorkspaceContainer key="adr-assessment" contextKey="adr-assessment"></WorkspaceContainer>
|
|
23
22
|
</BrowserRouter>
|
|
24
23
|
</main>
|
|
25
24
|
);
|
package/translations/am.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"actions": "Actions",
|
|
3
2
|
"adrAssessment": "የኤዲአር ግምገማ",
|
|
4
3
|
"adrAssessmentEncounters": "የኤዲአር ግምገማ ግኝቶች",
|
|
5
|
-
"adrEncounters": "ADR Encounters",
|
|
6
4
|
"encounters": "ግኝቶች",
|
|
7
|
-
"
|
|
8
|
-
"loading": "Loading...",
|
|
5
|
+
"endDate": "የማብቂያ ቀን",
|
|
9
6
|
"noAdrEncountersFound": "ምንም የኤዲአር ግኝቶች አልተገኙም",
|
|
10
7
|
"noEncountersFoundTitle": "ምንም ግኝቶች አልተገኙም",
|
|
11
8
|
"review": "ይገምግሙ",
|
|
12
|
-
"
|
|
13
|
-
"summaryOfAdrAssessmentEncounters": "የኤዲአር ግምገማ ግኝቶች ማጠቃለያ"
|
|
9
|
+
"startDate": "የመጀመሪያ ቀን",
|
|
10
|
+
"summaryOfAdrAssessmentEncounters": "የኤዲአር ግምገማ ግኝቶች ማጠቃለያ",
|
|
11
|
+
"totalAdrAssessment": "ጠቅላላ የኤዲአር ግምገማ"
|
|
14
12
|
}
|
package/translations/en.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"actions": "Actions",
|
|
3
2
|
"adrAssessment": "ADR Assessment",
|
|
4
3
|
"adrAssessmentEncounters": "ADR Assessment Encounters",
|
|
5
|
-
"adrEncounters": "ADR Encounters",
|
|
6
4
|
"encounters": "Encounters",
|
|
7
|
-
"
|
|
8
|
-
"loading": "Loading...",
|
|
5
|
+
"endDate": "End date",
|
|
9
6
|
"noAdrEncountersFound": "Adr assessment encounters",
|
|
10
7
|
"noEncountersFoundTitle": "No encounters found",
|
|
11
8
|
"review": "Review",
|
|
12
|
-
"
|
|
13
|
-
"summaryOfAdrAssessmentEncounters": "Summary of ADR assessment encounters"
|
|
9
|
+
"startDate": "Start date",
|
|
10
|
+
"summaryOfAdrAssessmentEncounters": "Summary of ADR assessment encounters",
|
|
11
|
+
"totalAdrAssessment": "Total ADR assessment"
|
|
14
12
|
}
|
package/translations/sw.json
CHANGED
|
@@ -1,14 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
"actions": "Actions",
|
|
3
2
|
"adrAssessment": "ADR Assessment",
|
|
4
3
|
"adrAssessmentEncounters": "ADR Assessment Encounters",
|
|
5
|
-
"adrEncounters": "ADR Encounters",
|
|
6
4
|
"encounters": "Encounters",
|
|
7
|
-
"
|
|
8
|
-
"loading": "Loading...",
|
|
5
|
+
"endDate": "End date",
|
|
9
6
|
"noAdrEncountersFound": "Adr assessment encounters",
|
|
10
7
|
"noEncountersFoundTitle": "No encounters found",
|
|
11
8
|
"review": "Review",
|
|
12
|
-
"
|
|
13
|
-
"summaryOfAdrAssessmentEncounters": "Summary of ADR assessment encounters"
|
|
9
|
+
"startDate": "Start date",
|
|
10
|
+
"summaryOfAdrAssessmentEncounters": "Summary of ADR assessment encounters",
|
|
11
|
+
"totalAdrAssessment": "Total ADR assessment"
|
|
14
12
|
}
|
package/dist/696.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";(globalThis.webpackChunk_kenyaemr_esm_adr_app=globalThis.webpackChunk_kenyaemr_esm_adr_app||[]).push([[696],{529:(e,t,l)=>{l.d(t,{IF:()=>P,JG:()=>D,MG:()=>N,NW:()=>J,Sc:()=>I,Vg:()=>O,_j:()=>Q,bm:()=>X,cR:()=>W,c_:()=>K,m6:()=>Y,nb:()=>U,yQ:()=>q});var r,n,h,a,w,c,i,o,p,f,g,m,d,s,x,E,v,u,M,A,L,z,C,B,y,H,Z,R,V,_,S,b,k,j,G=l(380),T=l.n(G),F=l(9247);const I=T().forwardRef(function({children:e,size:t=16,...l},n){return T().createElement(F.A,{width:t,height:t,ref:n,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},r||(r=T().createElement("path",{d:"M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM6,26V6H26V26Z"})),e)}),J=T().forwardRef(function({children:e,size:t=16,...l},r){return T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},n||(n=T().createElement("path",{d:"M26,4H6A2,2,0,0,0,4,6V26a2,2,0,0,0,2,2H26a2,2,0,0,0,2-2V6A2,2,0,0,0,26,4ZM14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z"})),h||(h=T().createElement("path",{fill:"none",d:"M14,21.5,9,16.5427,10.5908,15,14,18.3456,21.4087,11l1.5918,1.5772Z","data-icon-path":"inner-path"})),e)}),N=T().forwardRef(function({children:e,size:t=16,...l},r){return 20===t||"20"===t||"20px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",...l},a||(a=T().createElement("path",{d:"M8 13.2L3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"})),w||(w=T().createElement("path",{d:"M15.6 5.6L8 13.2 3.6 8.8 2.7 9.7 7.1 14.1 8 15 16.5 6.5 15.6 5.6z"})),e):24===t||"24"===t||"24px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...l},c||(c=T().createElement("path",{d:"M10 15.9L4.7 10.6 3.6 11.6 8.9 16.9 10 18 20.6 7.4 19.5 6.3z"})),e):T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},i||(i=T().createElement("path",{d:"M13 24L4 15 5.414 13.586 13 21.171 26.586 7.586 28 9 13 24z"})),e)}),Q=T().forwardRef(function({children:e,size:t=16,...l},r){return 16===t||"16"===t||"16px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},o||(o=T().createElement("path",{d:"M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z"})),p||(p=T().createElement("path",{d:"M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z","data-icon-path":"inner-path",opacity:"0"})),e):20===t||"20"===t||"20px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 20 20",fill:"currentColor",...l},f||(f=T().createElement("path",{d:"M10,1c-4.9,0-9,4.1-9,9s4.1,9,9,9s9-4,9-9S15,1,10,1z M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z"})),g||(g=T().createElement("path",{fill:"none",d:"M8.7,13.5l-3.2-3.2l1-1l2.2,2.2l4.8-4.8l1,1L8.7,13.5z","data-icon-path":"inner-path",opacity:"0"})),e):24===t||"24"===t||"24px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 24 24",fill:"currentColor",...l},m||(m=T().createElement("path",{d:"M12,1C6,1,1,6,1,12s5,11,11,11s11-4.9,11-11S18.1,1,12,1z M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z"})),d||(d=T().createElement("path",{fill:"none",d:"M10.4,16.3l-3.9-3.9l1.3-1.2l2.7,2.7l5.8-5.8l1.3,1.3L10.4,16.3z","data-icon-path":"inner-path",opacity:"0"})),e):T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},s||(s=T().createElement("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2ZM14,21.5908l-5-5L10.5906,15,14,18.4092,21.41,11l1.5957,1.5859Z"})),x||(x=T().createElement("path",{fill:"none",d:"M14 21.591L9 16.591 10.591 15 14 18.409 21.41 11 23.005 12.585 14 21.591z","data-icon-path":"inner-path"})),e)}),W=T().forwardRef(function({children:e,size:t=16,...l},r){return T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},E||(E=T().createElement("path",{d:"M14 21.414L9 16.413 10.413 15 14 18.586 21.585 11 23 12.415 14 21.414z"})),v||(v=T().createElement("path",{d:"M16,2A14,14,0,1,0,30,16,14,14,0,0,0,16,2Zm0,26A12,12,0,1,1,28,16,12,12,0,0,1,16,28Z"})),e)}),q=T().forwardRef(function({children:e,size:t=16,...l},r){return"glyph"===t||"glyph"===t||"glyphpx"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 10 6",fill:"currentColor",...l},u||(u=T().createElement("path",{d:"M5 6L0 1 0.7 0.3 5 4.6 9.3 0.3 10 1z"})),e):16===t||"16"===t||"16px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},M||(M=T().createElement("path",{d:"M8 11L3 6 3.7 5.3 8 9.6 12.3 5.3 13 6z"})),e):T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},A||(A=T().createElement("path",{d:"M16 22L6 12 7.4 10.6 16 19.2 24.6 10.6 26 12z"})),e)}),D=T().forwardRef(function({children:e,size:t=16,...l},r){return"glyph"===t||"glyph"===t||"glyphpx"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 6 10",fill:"currentColor",...l},L||(L=T().createElement("path",{d:"M0 5L5 0 5.7 0.7 1.4 5 5.7 9.3 5 10z"})),e):16===t||"16"===t||"16px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},z||(z=T().createElement("path",{d:"M5 8L10 3 10.7 3.7 6.4 8 10.7 12.3 10 13z"})),e):T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},C||(C=T().createElement("path",{d:"M10 16L20 6 21.4 7.4 12.8 16 21.4 24.6 20 26z"})),e)}),K=T().forwardRef(function({children:e,size:t=16,...l},r){return"glyph"===t||"glyph"===t||"glyphpx"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 6 10",fill:"currentColor",...l},B||(B=T().createElement("path",{d:"M6 5L1 10 0.3 9.3 4.6 5 0.3 0.7 1 0z"})),e):16===t||"16"===t||"16px"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},y||(y=T().createElement("path",{d:"M11 8L6 13 5.3 12.3 9.6 8 5.3 3.7 6 3z"})),e):T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},H||(H=T().createElement("path",{d:"M22 16L12 26 10.6 24.6 19.2 16 10.6 7.4 12 6z"})),e)}),O=T().forwardRef(function({children:e,size:t=16,...l},r){return T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},Z||(Z=T().createElement("path",{d:"M7.7 4.7a14.7 14.7 0 00-3 3.1L6.3 9A13.26 13.26 0 018.9 6.3zM4.6 12.3l-1.9-.6A12.51 12.51 0 002 16H4A11.48 11.48 0 014.6 12.3zM2.7 20.4a14.4 14.4 0 002 3.9l1.6-1.2a12.89 12.89 0 01-1.7-3.3zM7.8 27.3a14.4 14.4 0 003.9 2l.6-1.9A12.89 12.89 0 019 25.7zM11.7 2.7l.6 1.9A11.48 11.48 0 0116 4V2A12.51 12.51 0 0011.7 2.7zM24.2 27.3a15.18 15.18 0 003.1-3.1L25.7 23A11.53 11.53 0 0123 25.7zM27.4 19.7l1.9.6A15.47 15.47 0 0030 16H28A11.48 11.48 0 0127.4 19.7zM29.2 11.6a14.4 14.4 0 00-2-3.9L25.6 8.9a12.89 12.89 0 011.7 3.3zM24.1 4.6a14.4 14.4 0 00-3.9-2l-.6 1.9a12.89 12.89 0 013.3 1.7zM20.3 29.3l-.6-1.9A11.48 11.48 0 0116 28v2A21.42 21.42 0 0020.3 29.3z"})),e)}),P=T().forwardRef(function({children:e,size:t=16,...l},r){return"glyph"===t||"glyph"===t||"glyphpx"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},R||(R=T().createElement("circle",{cx:"8",cy:"8",r:"6"})),e):T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},V||(V=T().createElement("circle",{cx:"8",cy:"8",r:"6"})),e)}),U=T().forwardRef(function({children:e,size:t=16,...l},r){return"glyph"===t||"glyph"===t||"glyphpx"===t?T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},_||(_=T().createElement("path",{d:"M8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2Z"})),e):T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},S||(S=T().createElement("path",{d:"M8,4A4,4,0,1,1,4,8,4.0045,4.0045,0,0,1,8,4M8,2a6,6,0,1,0,6,6A6,6,0,0,0,8,2Z"})),e)}),X=T().forwardRef(function({children:e,size:t=16,...l},r){return T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},b||(b=T().createElement("path",{d:"M17.4141 16L24 9.4141 22.5859 8 16 14.5859 9.4143 8 8 9.4141 14.5859 16 8 22.5859 9.4143 24 16 17.4141 22.5859 24 24 22.5859 17.4141 16z"})),e)}),Y=T().forwardRef(function({children:e,size:t=16,...l},r){return T().createElement(F.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},k||(k=T().createElement("path",{d:"M28,16v6H4V6h7V4H4A2,2,0,0,0,2,6V22a2,2,0,0,0,2,2h8v4H8v2H24V28H20V24h8a2,2,0,0,0,2-2V16ZM18,28H14V24h4Z"})),j||(j=T().createElement("path",{d:"M18,18h-.01a1,1,0,0,1-.9511-.7253L15.2456,11H11V9h5a1,1,0,0,1,.9615.7252l1.0742,3.7589,3.0088-9.7783A1.0142,1.0142,0,0,1,22,3a.98.98,0,0,1,.9487.6838L24.7207,9H30v2H24a1,1,0,0,1-.9487-.6838l-1.0132-3.04L18.9556,17.2942A1,1,0,0,1,18,18Z"})),e)})},6924:(e,t,l)=>{l.d(t,{vj:()=>f,wB:()=>g});var r,n,h,a,w,c,i=l(380),o=l.n(i),p=l(9247);const f=o().forwardRef(function({children:e,size:t=16,...l},h){return 16===t||"16"===t||"16px"===t?o().createElement(p.A,{width:t,height:t,ref:h,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},r||(r=o().createElement("path",{d:"M15,14.3L10.7,10c1.9-2.3,1.6-5.8-0.7-7.7S4.2,0.7,2.3,3S0.7,8.8,3,10.7c2,1.7,5,1.7,7,0l4.3,4.3L15,14.3z M2,6.5 C2,4,4,2,6.5,2S11,4,11,6.5S9,11,6.5,11S2,9,2,6.5z"})),e):o().createElement(p.A,{width:t,height:t,ref:h,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},n||(n=o().createElement("path",{d:"M29,27.5859l-7.5521-7.5521a11.0177,11.0177,0,1,0-1.4141,1.4141L27.5859,29ZM4,13a9,9,0,1,1,9,9A9.01,9.01,0,0,1,4,13Z"})),e)}),g=o().forwardRef(function({children:e,size:t=16,...l},r){return 16===t||"16"===t||"16px"===t?o().createElement(p.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 16 16",fill:"currentColor",...l},h||(h=o().createElement("path",{d:"M13.5,8.4c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3,0-0.4l1-0.8c0.4-0.3,0.4-0.9,0.2-1.3l-1.2-2C13.3,3.2,13,3,12.6,3 c-0.1,0-0.2,0-0.3,0.1l-1.2,0.4c-0.2-0.1-0.4-0.3-0.7-0.4l-0.3-1.3C10.1,1.3,9.7,1,9.2,1H6.8c-0.5,0-0.9,0.3-1,0.8L5.6,3.1 C5.3,3.2,5.1,3.3,4.9,3.4L3.7,3C3.6,3,3.5,3,3.4,3C3,3,2.7,3.2,2.5,3.5l-1.2,2C1.1,5.9,1.2,6.4,1.6,6.8l0.9,0.9c0,0.1,0,0.3,0,0.4 c0,0.1,0,0.3,0,0.4L1.6,9.2c-0.4,0.3-0.5,0.9-0.2,1.3l1.2,2C2.7,12.8,3,13,3.4,13c0.1,0,0.2,0,0.3-0.1l1.2-0.4 c0.2,0.1,0.4,0.3,0.7,0.4l0.3,1.3c0.1,0.5,0.5,0.8,1,0.8h2.4c0.5,0,0.9-0.3,1-0.8l0.3-1.3c0.2-0.1,0.4-0.2,0.7-0.4l1.2,0.4 c0.1,0,0.2,0.1,0.3,0.1c0.4,0,0.7-0.2,0.9-0.5l1.1-2c0.2-0.4,0.2-0.9-0.2-1.3L13.5,8.4z M12.6,12l-1.7-0.6c-0.4,0.3-0.9,0.6-1.4,0.8 L9.2,14H6.8l-0.4-1.8c-0.5-0.2-0.9-0.5-1.4-0.8L3.4,12l-1.2-2l1.4-1.2c-0.1-0.5-0.1-1.1,0-1.6L2.2,6l1.2-2l1.7,0.6 C5.5,4.2,6,4,6.5,3.8L6.8,2h2.4l0.4,1.8c0.5,0.2,0.9,0.5,1.4,0.8L12.6,4l1.2,2l-1.4,1.2c0.1,0.5,0.1,1.1,0,1.6l1.4,1.2L12.6,12z"})),a||(a=o().createElement("path",{d:"M8,11c-1.7,0-3-1.3-3-3s1.3-3,3-3s3,1.3,3,3C11,9.6,9.7,11,8,11C8,11,8,11,8,11z M8,6C6.9,6,6,6.8,6,7.9C6,7.9,6,8,6,8 c0,1.1,0.8,2,1.9,2c0,0,0.1,0,0.1,0c1.1,0,2-0.8,2-1.9c0,0,0-0.1,0-0.1C10,6.9,9.2,6,8,6C8.1,6,8,6,8,6z"})),e):o().createElement(p.A,{width:t,height:t,ref:r,xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 32 32",fill:"currentColor",...l},w||(w=o().createElement("path",{d:"M27,16.76c0-.25,0-.5,0-.76s0-.51,0-.77l1.92-1.68A2,2,0,0,0,29.3,11L26.94,7a2,2,0,0,0-1.73-1,2,2,0,0,0-.64.1l-2.43.82a11.35,11.35,0,0,0-1.31-.75l-.51-2.52a2,2,0,0,0-2-1.61H13.64a2,2,0,0,0-2,1.61l-.51,2.52a11.48,11.48,0,0,0-1.32.75L7.43,6.06A2,2,0,0,0,6.79,6,2,2,0,0,0,5.06,7L2.7,11a2,2,0,0,0,.41,2.51L5,15.24c0,.25,0,.5,0,.76s0,.51,0,.77L3.11,18.45A2,2,0,0,0,2.7,21L5.06,25a2,2,0,0,0,1.73,1,2,2,0,0,0,.64-.1l2.43-.82a11.35,11.35,0,0,0,1.31.75l.51,2.52a2,2,0,0,0,2,1.61h4.72a2,2,0,0,0,2-1.61l.51-2.52a11.48,11.48,0,0,0,1.32-.75l2.42.82a2,2,0,0,0,.64.1,2,2,0,0,0,1.73-1L29.3,21a2,2,0,0,0-.41-2.51ZM25.21,24l-3.43-1.16a8.86,8.86,0,0,1-2.71,1.57L18.36,28H13.64l-.71-3.55a9.36,9.36,0,0,1-2.7-1.57L6.79,24,4.43,20l2.72-2.4a8.9,8.9,0,0,1,0-3.13L4.43,12,6.79,8l3.43,1.16a8.86,8.86,0,0,1,2.71-1.57L13.64,4h4.72l.71,3.55a9.36,9.36,0,0,1,2.7,1.57L25.21,8,27.57,12l-2.72,2.4a8.9,8.9,0,0,1,0,3.13L27.57,20Z"})),c||(c=o().createElement("path",{d:"M16,22a6,6,0,1,1,6-6A5.94,5.94,0,0,1,16,22Zm0-10a3.91,3.91,0,0,0-4,4,3.91,3.91,0,0,0,4,4,3.91,3.91,0,0,0,4-4A3.91,3.91,0,0,0,16,12Z"})),e)})}}]);
|
package/dist/696.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"696.js","mappings":"0QAcoGA,EAA2BC,EAASC,EAA6CC,EAASC,EAASC,EAASC,EAASC,EAASC,EAASC,EAASC,EAASC,EAASC,EAASC,EAASC,EAA+DC,EAASC,EAAwEC,EAASC,EAASC,EAA2BC,EAASC,EAASC,EAA2BC,EAASC,EAASC,EAAkfC,EAAUC,EAAUC,EAAwCC,EAAUC,EAAoGC,EAA4NC,EAAUC,E,4BAuJt5C,MAAMC,EAAwB,eAAiB,UAAkB,SAC/DC,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAoB,kBAAoB,IAAM,CAC5CC,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFrC,IAAYA,EAAuB,kBAAoB,OAAQ,CAChE4C,EAAG,6FACAT,EACP,GA0BMU,EAAqC,eAAiB,UAA+B,SACzFV,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAoB,kBAAoB,IAAM,CAC5CC,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFpC,IAAYA,EAAuB,kBAAoB,OAAQ,CAChE2C,EAAG,iJACA1C,IAAYA,EAAuB,kBAAoB,OAAQ,CAClEyC,KAAM,OACNC,EAAG,qEACH,iBAAkB,gBACfT,EACP,GAkDMW,EAAyB,eAAiB,UAAmB,SACjEX,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAa,KAATF,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFlC,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEyC,EAAG,8DACAxC,IAAYA,EAAuB,kBAAoB,OAAQ,CAClEwC,EAAG,uEACAT,GAEM,KAATC,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFhC,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEuC,EAAG,kEACAT,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACF/B,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEsC,EAAG,iEACAT,EACP,GAIMY,EAA+B,eAAiB,UAAyB,SAC7EZ,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAa,KAATF,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACF9B,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEqC,EAAG,uHACApC,IAAYA,EAAuB,kBAAoB,OAAQ,CAClEoC,EAAG,kDACH,iBAAkB,aAClBI,QAAS,OACNb,GAEM,KAATC,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACF5B,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEmC,EAAG,8GACAlC,IAAYA,EAAuB,kBAAoB,OAAQ,CAClEiC,KAAM,OACNC,EAAG,uDACH,iBAAkB,aAClBI,QAAS,OACNb,GAEM,KAATC,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACF1B,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEiC,EAAG,4HACAhC,IAAYA,EAAuB,kBAAoB,OAAQ,CAClE+B,KAAM,OACNC,EAAG,iEACH,iBAAkB,aAClBI,QAAS,OACNb,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFxB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChE+B,EAAG,6GACA9B,IAAYA,EAAuB,kBAAoB,OAAQ,CAClE6B,KAAM,OACNC,EAAG,4EACH,iBAAkB,gBACfT,EACP,GAwDMc,EAAgC,eAAiB,UAA0B,SAC/Ed,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAoB,kBAAoB,IAAM,CAC5CC,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFtB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChE6B,EAAG,4EACA5B,IAAYA,EAAuB,kBAAoB,OAAQ,CAClE4B,EAAG,yFACAT,EACP,GA0FMe,EAA2B,eAAiB,UAAqB,SACrEf,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,MAAa,UAATF,GAA6B,UAATA,GAA6B,YAATA,EACtB,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,WACTC,KAAM,kBACHN,GACFpB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChE2B,EAAG,0CACAT,GAEM,KAATC,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFnB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChE0B,EAAG,4CACAT,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFlB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEyB,EAAG,mDACAT,EACP,GA0BMgB,EAA2B,eAAiB,UAAqB,SACrEhB,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,MAAa,UAATF,GAA6B,UAATA,GAA6B,YAATA,EACtB,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,WACTC,KAAM,kBACHN,GACFjB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEwB,EAAG,0CACAT,GAEM,KAATC,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFhB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEuB,EAAG,+CACAT,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFf,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEsB,EAAG,mDACAT,EACP,GAqCMiB,EAA4B,eAAiB,UAAsB,SACvEjB,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,MAAa,UAATF,GAA6B,UAATA,GAA6B,YAATA,EACtB,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,WACTC,KAAM,kBACHN,GACFd,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEqB,EAAG,0CACAT,GAEM,KAATC,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFb,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEoB,EAAG,4CACAT,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFZ,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEmB,EAAG,mDACAT,EACP,GA0qBMkB,EAA0B,eAAiB,UAAoB,SACnElB,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAoB,kBAAoB,IAAM,CAC5CC,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFX,IAAaA,EAAwB,kBAAoB,OAAQ,CAClEkB,EAAG,4oBACAT,EACP,GAIMmB,EAA0B,eAAiB,UAAoB,SACnEnB,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,MAAa,UAATF,GAA6B,UAATA,GAA6B,YAATA,EACtB,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFV,IAAaA,EAAwB,kBAAoB,SAAU,CACpE4B,GAAI,IACJC,GAAI,IACJC,EAAG,OACAtB,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFT,IAAaA,EAAwB,kBAAoB,SAAU,CACpE2B,GAAI,IACJC,GAAI,IACJC,EAAG,OACAtB,EACP,GA8CMuB,EAA4B,eAAiB,UAAsB,SACvEvB,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,MAAa,UAATF,GAA6B,UAATA,GAA6B,YAATA,EACtB,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFR,IAAaA,EAAwB,kBAAoB,OAAQ,CAClEe,EAAG,iFACAT,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFP,IAAaA,EAAwB,kBAAoB,OAAQ,CAClEc,EAAG,iFACAT,EACP,GAmGMwB,EAAqB,eAAiB,UAAe,SACzDxB,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAoB,kBAAoB,IAAM,CAC5CC,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFN,IAAaA,EAAwB,kBAAoB,OAAQ,CAClEa,EAAG,8IACAT,EACP,GAmRMyB,EAA+B,eAAiB,UAAyB,SAC7EzB,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAoB,kBAAoB,IAAM,CAC5CC,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFL,IAAaA,EAAwB,kBAAoB,OAAQ,CAClEY,EAAG,8GACAX,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEW,EAAG,iPACAT,EACP,E,gDCn6D01B0B,EAASC,EAA0WC,EAAUC,EAAUC,EAAUC,E,4BA+sC3uC,MAAMC,EAAsB,eAAiB,UAAgB,SAC3DhC,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAa,KAATF,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFwB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChEjB,EAAG,qKACAT,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACFyB,IAAYA,EAAuB,kBAAoB,OAAQ,CAChElB,EAAG,yHACAT,EACP,GAyeMiC,EAAwB,eAAiB,UAAkB,SAC/DjC,EAAQ,KACRC,EAAO,MACJC,GACFC,GACD,OAAa,KAATF,GAAwB,OAATA,GAA0B,SAATA,EACd,kBAAoB,IAAM,CAC5CG,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACF0B,IAAaA,EAAwB,kBAAoB,OAAQ,CAClEnB,EAAG,+6BACAoB,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEpB,EAAG,6NACAT,GAEa,kBAAoB,IAAM,CAC5CI,MAAOH,EACPI,OAAQJ,EACRE,IAAKA,EACLG,MAAO,6BACPC,QAAS,YACTC,KAAM,kBACHN,GACF4B,IAAaA,EAAwB,kBAAoB,OAAQ,CAClErB,EAAG,k4BACAsB,IAAaA,EAAwB,kBAAoB,OAAQ,CACpEtB,EAAG,yIACAT,EACP,E","sources":["webpack://@kenyaemr/esm-adr-app/../../node_modules/@carbon/icons-react/es/generated/bucket-3.js","webpack://@kenyaemr/esm-adr-app/../../node_modules/@carbon/icons-react/es/generated/bucket-15.js"],"names":["_path11","_path14","_path15","_path20","_path21","_path22","_path23","_path24","_path25","_path26","_path27","_path28","_path29","_path30","_path31","_path38","_path39","_path47","_path48","_path49","_path52","_path53","_path54","_path57","_path58","_path59","_path107","_circle7","_circle8","_path111","_path112","_path121","_path143","_path144","Checkbox","children","size","rest","ref","width","height","xmlns","viewBox","fill","d","CheckboxCheckedFilled","Checkmark","CheckmarkFilled","opacity","CheckmarkOutline","ChevronDown","ChevronLeft","ChevronRight","CircleDash","CircleFill","cx","cy","r","CircleStroke","Close","CloudMonitoring","_path91","_path92","_path122","_path123","_path124","_path125","Search","Settings"],"sourceRoot":""}
|