@kenyaemr/esm-active-visits-app 7.0.2-pre.65
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 +32 -0
- package/dist/130.js +2 -0
- package/dist/130.js.LICENSE.txt +3 -0
- package/dist/130.js.map +1 -0
- package/dist/255.js +2 -0
- package/dist/255.js.LICENSE.txt +9 -0
- package/dist/255.js.map +1 -0
- package/dist/271.js +1 -0
- package/dist/316.js +2 -0
- package/dist/316.js.LICENSE.txt +19 -0
- package/dist/316.js.map +1 -0
- package/dist/319.js +1 -0
- package/dist/382.js +1 -0
- package/dist/382.js.map +1 -0
- package/dist/443.js +1 -0
- package/dist/443.js.map +1 -0
- package/dist/460.js +1 -0
- package/dist/574.js +1 -0
- package/dist/635.js +1 -0
- package/dist/635.js.map +1 -0
- package/dist/644.js +1 -0
- package/dist/729.js +1 -0
- package/dist/729.js.map +1 -0
- package/dist/757.js +1 -0
- package/dist/784.js +2 -0
- package/dist/784.js.LICENSE.txt +9 -0
- package/dist/784.js.map +1 -0
- package/dist/788.js +1 -0
- package/dist/807.js +1 -0
- package/dist/833.js +1 -0
- package/dist/835.js +1 -0
- package/dist/835.js.map +1 -0
- package/dist/875.js +2 -0
- package/dist/875.js.LICENSE.txt +15 -0
- package/dist/875.js.map +1 -0
- package/dist/879.js +1 -0
- package/dist/879.js.map +1 -0
- package/dist/kenyaemr-esm-active-visits-app.js +1 -0
- package/dist/kenyaemr-esm-active-visits-app.js.buildmanifest.json +580 -0
- package/dist/kenyaemr-esm-active-visits-app.js.map +1 -0
- package/dist/main.js +2 -0
- package/dist/main.js.LICENSE.txt +25 -0
- package/dist/main.js.map +1 -0
- package/dist/routes.json +1 -0
- package/jest.config.js +3 -0
- package/package.json +55 -0
- package/src/active-visits-widget/active-visits.component.tsx +311 -0
- package/src/active-visits-widget/active-visits.resource.tsx +148 -0
- package/src/active-visits-widget/active-visits.scss +191 -0
- package/src/active-visits-widget/active-visits.test.tsx +119 -0
- package/src/active-visits-widget/empty-data-illustration.component.tsx +39 -0
- package/src/config-schema.ts +57 -0
- package/src/declarations.d.ts +4 -0
- package/src/index.ts +21 -0
- package/src/root.scss +30 -0
- package/src/routes.json +20 -0
- package/src/types/index.ts +28 -0
- package/src/visits-summary/visit-detail-overview.scss +328 -0
- package/src/visits-summary/visit-detail.component.tsx +77 -0
- package/src/visits-summary/visit-detail.test.tsx +122 -0
- package/src/visits-summary/visit.resource.ts +190 -0
- package/src/visits-summary/visits-components/encounter-list.component.tsx +127 -0
- package/src/visits-summary/visits-components/encounter-observations.component.tsx +43 -0
- package/src/visits-summary/visits-components/encounter-observations.test.tsx +36 -0
- package/src/visits-summary/visits-components/medications-summary.component.tsx +105 -0
- package/src/visits-summary/visits-components/notes-summary.component.tsx +51 -0
- package/src/visits-summary/visits-components/tests-summary.component.tsx +21 -0
- package/src/visits-summary/visits-components/visit-summary.component.tsx +118 -0
- package/translations/am.json +35 -0
- package/translations/ar.json +35 -0
- package/translations/en.json +35 -0
- package/translations/es.json +35 -0
- package/translations/fr.json +35 -0
- package/translations/he.json +35 -0
- package/translations/km.json +35 -0
- package/translations/zh.json +35 -0
- package/translations/zh_CN.json +35 -0
- package/tsconfig.json +5 -0
- package/webpack.config.js +1 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "Visites actives",
|
|
3
|
+
"age": "Age",
|
|
4
|
+
"allEncounters": "Toutes les visites",
|
|
5
|
+
"checkFilters": "Check the filters above",
|
|
6
|
+
"diagnoses": "Diagnostic",
|
|
7
|
+
"dose": "Dose",
|
|
8
|
+
"encounterType": "Type de visite",
|
|
9
|
+
"endDate": "Date de fin",
|
|
10
|
+
"filterTable": "Filtre de recherche",
|
|
11
|
+
"gender": "Genre",
|
|
12
|
+
"idNumber": "Identifiant",
|
|
13
|
+
"indication": "Indication",
|
|
14
|
+
"medications": "Médicaments",
|
|
15
|
+
"name": "Nom",
|
|
16
|
+
"noActiveVisitsForLocation": "Il n'y aucune visite active pour cet emplacement",
|
|
17
|
+
"noDiagnosesFound": "Aucun diagnostic",
|
|
18
|
+
"noEncountersFound": "Aucune visite trouvée",
|
|
19
|
+
"noMedicationsFound": "Aucun médicament trouvé",
|
|
20
|
+
"noNotesToShowForPatient": "There are no notes to display for this patient",
|
|
21
|
+
"noObservationsFound": "Aucune observation trouvée",
|
|
22
|
+
"notes": "Informations complémentaires",
|
|
23
|
+
"noVisitsToDisplay": "No visits to display",
|
|
24
|
+
"orderDurationAndUnit": "Pour {{duration}} {{durationUnit}}",
|
|
25
|
+
"orderIndefiniteDuration": "Durée illimitée",
|
|
26
|
+
"provider": "Fournisseur",
|
|
27
|
+
"quantity": "Quantity",
|
|
28
|
+
"refills": "Recharges",
|
|
29
|
+
"tests": "Tests",
|
|
30
|
+
"thereIsNoInformationToDisplayHere": "Il n'y pas d'information à présenter ici",
|
|
31
|
+
"time": "Heure",
|
|
32
|
+
"visitStartTime": "Heure de la consultation",
|
|
33
|
+
"visitSummary": "Compte rendu de la consultation",
|
|
34
|
+
"visitType": "Type de consultation"
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "ביקורים פעילים",
|
|
3
|
+
"age": "גיל",
|
|
4
|
+
"allEncounters": "כל המפגשים",
|
|
5
|
+
"checkFilters": "בדוק את המסננים למעלה",
|
|
6
|
+
"diagnoses": "אבחנות",
|
|
7
|
+
"dose": "מנה",
|
|
8
|
+
"encounterType": "סוג המפגש",
|
|
9
|
+
"endDate": "End date",
|
|
10
|
+
"filterTable": "סנן טבלה",
|
|
11
|
+
"gender": "מגדר",
|
|
12
|
+
"idNumber": "מספר תעודת זהות",
|
|
13
|
+
"indication": "Indication",
|
|
14
|
+
"medications": "תרופות",
|
|
15
|
+
"name": "שם",
|
|
16
|
+
"noActiveVisitsForLocation": "אין ביקורים פעילים להצגה במיקום זה.",
|
|
17
|
+
"noDiagnosesFound": "לא נמצאו אבחנות",
|
|
18
|
+
"noEncountersFound": "לא נמצאו מפגשים",
|
|
19
|
+
"noMedicationsFound": "לא נמצאו תרופות",
|
|
20
|
+
"noNotesToShowForPatient": "There are no notes to display for this patient",
|
|
21
|
+
"noObservationsFound": "לא נמצאו תצפיות",
|
|
22
|
+
"notes": "הערות",
|
|
23
|
+
"noVisitsToDisplay": "אין ביקורים להצגה",
|
|
24
|
+
"orderDurationAndUnit": "למשך {{duration}} {{durationUnit}}",
|
|
25
|
+
"orderIndefiniteDuration": "למשך זמן בלתי מוגבל",
|
|
26
|
+
"provider": "ספק",
|
|
27
|
+
"quantity": "Quantity",
|
|
28
|
+
"refills": "תערובות",
|
|
29
|
+
"tests": "בדיקות",
|
|
30
|
+
"thereIsNoInformationToDisplayHere": "אין מידע להצגה כאן",
|
|
31
|
+
"time": "זמן",
|
|
32
|
+
"visitStartTime": "שעת התחלת הביקור",
|
|
33
|
+
"visitSummary": "סיכום הביקור",
|
|
34
|
+
"visitType": "סוג הביקור"
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "ការមកពិនិត្យជំងឺសកម្ម",
|
|
3
|
+
"age": "អាយុ",
|
|
4
|
+
"allEncounters": "ការជួបទាំងអស់",
|
|
5
|
+
"checkFilters": "Check the filters above",
|
|
6
|
+
"diagnoses": "រោគវិនិច្ឆ័យ",
|
|
7
|
+
"dose": "កំរិតប្រើប្រាស់",
|
|
8
|
+
"encounterType": "ប្រភេទនៃការជួបពិនិត្យជំងឺ",
|
|
9
|
+
"endDate": "End date",
|
|
10
|
+
"filterTable": "តារាងត្រង",
|
|
11
|
+
"gender": "ភេទ",
|
|
12
|
+
"idNumber": "លេខសំគាល់",
|
|
13
|
+
"indication": "Indication",
|
|
14
|
+
"medications": "ឱសថ",
|
|
15
|
+
"name": "នាម",
|
|
16
|
+
"noActiveVisitsForLocation": "មិនមានការមកពិនិត្យជំងឺសកម្មបង្ហាញក្នុងទីតាំងនេះទេ",
|
|
17
|
+
"noDiagnosesFound": "រកមិនឃើញរោគវិនិច្ឆ័យទេ។",
|
|
18
|
+
"noEncountersFound": "រកមិនឃើញការជួបគ្នាទេ",
|
|
19
|
+
"noMedicationsFound": "រកមិនឃើញឱសថព្យាបាលទេ",
|
|
20
|
+
"noNotesToShowForPatient": "There are no notes to display for this patient",
|
|
21
|
+
"noObservationsFound": "រកមិនឃើញការសង្កេតទេ",
|
|
22
|
+
"notes": "កំណត់ចំណាំ",
|
|
23
|
+
"noVisitsToDisplay": "No visits to display",
|
|
24
|
+
"orderDurationAndUnit": "សម្រាប់ {រយៈពេល} {ឯកតារយៈពេល}",
|
|
25
|
+
"orderIndefiniteDuration": "រយៈពេលមិនកំណត់",
|
|
26
|
+
"provider": "អ្នកផ្តល់សេវា",
|
|
27
|
+
"quantity": "Quantity",
|
|
28
|
+
"refills": "ការបំពេញបន្ថែម",
|
|
29
|
+
"tests": "ការធ្វើតេស្ត",
|
|
30
|
+
"thereIsNoInformationToDisplayHere": "មិនមានព័ត៌មានដើម្បីបង្ហាញនៅទីនេះទេ",
|
|
31
|
+
"time": "ម៉ោងពេល",
|
|
32
|
+
"visitStartTime": "ម៉ោងពេលពិនិត្យជំងឺ",
|
|
33
|
+
"visitSummary": "សេចក្តីសង្ខេបពីការពិនិត្យជំងឺ",
|
|
34
|
+
"visitType": "ប្រភេទនៃជំងឺពិនិត្យ"
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "活动就诊",
|
|
3
|
+
"age": "年龄",
|
|
4
|
+
"allEncounters": "所有问诊记录",
|
|
5
|
+
"checkFilters": "检查上方的筛选条件",
|
|
6
|
+
"diagnoses": "诊断",
|
|
7
|
+
"dose": "剂量",
|
|
8
|
+
"encounterType": "问诊类型",
|
|
9
|
+
"endDate": "结束日期",
|
|
10
|
+
"filterTable": "筛选表格",
|
|
11
|
+
"gender": "性别",
|
|
12
|
+
"idNumber": "ID",
|
|
13
|
+
"indication": "适应症",
|
|
14
|
+
"medications": "药物",
|
|
15
|
+
"name": "姓名",
|
|
16
|
+
"noActiveVisitsForLocation": "在这个地点没有活动的就诊记录可供显示。",
|
|
17
|
+
"noDiagnosesFound": "未找到诊断",
|
|
18
|
+
"noEncountersFound": "未找到问诊记录",
|
|
19
|
+
"noMedicationsFound": "未找到药物",
|
|
20
|
+
"noNotesToShowForPatient": "该患者没有可显示的记录",
|
|
21
|
+
"noObservationsFound": "未找到观察记录",
|
|
22
|
+
"notes": "备注",
|
|
23
|
+
"noVisitsToDisplay": "没有就诊可显示",
|
|
24
|
+
"orderDurationAndUnit": "持续 {{duration}} {{durationUnit}}。",
|
|
25
|
+
"orderIndefiniteDuration": "无限期",
|
|
26
|
+
"provider": "提供者",
|
|
27
|
+
"quantity": "数量",
|
|
28
|
+
"refills": "补充处方",
|
|
29
|
+
"tests": "检验",
|
|
30
|
+
"thereIsNoInformationToDisplayHere": "这里没有可显示的信息",
|
|
31
|
+
"time": "时间",
|
|
32
|
+
"visitStartTime": "就诊时间",
|
|
33
|
+
"visitSummary": "就诊总结",
|
|
34
|
+
"visitType": "就诊类型"
|
|
35
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"activeVisits": "活动就诊",
|
|
3
|
+
"age": "年龄",
|
|
4
|
+
"allEncounters": "所有问诊记录",
|
|
5
|
+
"checkFilters": "检查上方的筛选条件",
|
|
6
|
+
"diagnoses": "诊断",
|
|
7
|
+
"dose": "剂量",
|
|
8
|
+
"encounterType": "问诊类型",
|
|
9
|
+
"endDate": "结束日期",
|
|
10
|
+
"filterTable": "筛选表格",
|
|
11
|
+
"gender": "性别",
|
|
12
|
+
"idNumber": "ID",
|
|
13
|
+
"indication": "适应症",
|
|
14
|
+
"medications": "药物",
|
|
15
|
+
"name": "姓名",
|
|
16
|
+
"noActiveVisitsForLocation": "在这个地点没有活动的就诊记录可供显示。",
|
|
17
|
+
"noDiagnosesFound": "未找到诊断",
|
|
18
|
+
"noEncountersFound": "未找到问诊记录",
|
|
19
|
+
"noMedicationsFound": "未找到药物",
|
|
20
|
+
"noNotesToShowForPatient": "该患者没有可显示的记录",
|
|
21
|
+
"noObservationsFound": "未找到观察记录",
|
|
22
|
+
"notes": "备注",
|
|
23
|
+
"noVisitsToDisplay": "没有就诊可显示",
|
|
24
|
+
"orderDurationAndUnit": "持续 {{duration}} {{durationUnit}}。",
|
|
25
|
+
"orderIndefiniteDuration": "无限期",
|
|
26
|
+
"provider": "提供者",
|
|
27
|
+
"quantity": "数量",
|
|
28
|
+
"refills": "补充处方",
|
|
29
|
+
"tests": "检验",
|
|
30
|
+
"thereIsNoInformationToDisplayHere": "这里没有可显示的信息",
|
|
31
|
+
"time": "时间",
|
|
32
|
+
"visitStartTime": "就诊时间",
|
|
33
|
+
"visitSummary": "就诊总结",
|
|
34
|
+
"visitType": "就诊类型"
|
|
35
|
+
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('openmrs/default-webpack-config');
|