@digihmis/esm-procedures-app 1.0.1

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.
@@ -0,0 +1,35 @@
1
+ {
2
+ "$schema": "https://json.openmrs.org/routes.schema.json",
3
+ "backendDependencies": {
4
+ "webservices.rest": ">=2.24.0"
5
+ },
6
+ "extensions": [
7
+ {
8
+ "name": "procedures-db-link",
9
+ "slot": "procedures-dashboard-slot",
10
+ "component": "leftPanelLink",
11
+ "meta": {
12
+ "name": "procedures",
13
+ "slot": "procedures-homepage-dashboard-slot",
14
+ "title": "Procedures worklist"
15
+ },
16
+ "order": 1,
17
+ "online": true,
18
+ "offline": true
19
+ },
20
+ {
21
+ "name": "procedures-worklist-dashboard",
22
+ "slot": "procedures-homepage-dashboard-slot",
23
+ "component": "proceduresWorklistDashboard"
24
+ }
25
+ ],
26
+ "workspaces": [
27
+ {
28
+ "name": "procedure-report-workspace",
29
+ "component": "procedureReportWorkspace",
30
+ "title": "Procedure report",
31
+ "type": "procedure-report",
32
+ "width": "wider"
33
+ }
34
+ ]
35
+ }
@@ -0,0 +1,62 @@
1
+ {
2
+ "actionFailed": "Could not complete the action",
3
+ "awaiting": "Awaiting",
4
+ "cancel": "Cancel",
5
+ "cancelled": "Cancelled",
6
+ "changeStation": "Change Station",
7
+ "clockedInTo": "Clocked in to",
8
+ "clockIn": "Clock In",
9
+ "clockingIn": "Clocking in",
10
+ "clockingOut": "Clocking out",
11
+ "clockInPrompt": "Click the \"Clock In\" button above to start managing patients",
12
+ "clockOut": "Clock Out",
13
+ "close": "Close",
14
+ "date": "Date",
15
+ "enterReport": "Enter report",
16
+ "expandRow": "Expand row",
17
+ "impression": "Impression",
18
+ "inProgress": "In progress",
19
+ "loading": "Loading…",
20
+ "noneInProgress": "No studies in progress.",
21
+ "noneReported": "Nothing awaiting verification.",
22
+ "noneScheduled": "Nothing scheduled.",
23
+ "noneVerified": "No verified reports yet.",
24
+ "noNewOrders": "No new imaging orders.",
25
+ "noStudiesHere": "No studies in this list.",
26
+ "ordered": "Ordered",
27
+ "orderedBy": "Ordered by",
28
+ "patient": "Patient",
29
+ "pleaseClockIn": "Please clock in to view the queue",
30
+ "print": "Print",
31
+ "radiology": "Radiology",
32
+ "radiologyQueue": "Radiology Queue",
33
+ "radiologyWorklist": "Radiology worklist",
34
+ "report": "Report / findings",
35
+ "reported": "Reported",
36
+ "reportedByLabel": "Reported by {{who}}",
37
+ "reportError": "Could not save report",
38
+ "reportRequired": "Enter the report before saving",
39
+ "reportSaved": "Report saved",
40
+ "reportVerified": "Report verified",
41
+ "reviewVerify": "Review & verify",
42
+ "saveReport": "Save report",
43
+ "saving": "Saving…",
44
+ "schedule": "Schedule",
45
+ "scheduled": "Scheduled",
46
+ "scheduledFor": "Scheduled for",
47
+ "since": "since",
48
+ "startNow": "Start now",
49
+ "startStudy": "Start study",
50
+ "stat": "STAT",
51
+ "studies": "Studies",
52
+ "studyCancelled": "Study cancelled",
53
+ "studyCount": "{{count}} study(ies)",
54
+ "studyScheduled": "Study scheduled",
55
+ "studyStarted": "Study started",
56
+ "toVerify": "To verify",
57
+ "verified": "Verified",
58
+ "verifiedByLabel": "Verified by {{who}}",
59
+ "verifiedToday": "Verified Today",
60
+ "verifyRelease": "Verify & release",
61
+ "viewReport": "View report"
62
+ }
package/tsconfig.json ADDED
@@ -0,0 +1,5 @@
1
+ {
2
+ "extends": "../../tsconfig.json",
3
+ "include": ["src/**/*"],
4
+ "exclude": ["src/**/*.test.tsx"]
5
+ }