File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -454,9 +454,14 @@ export default function PatientInfoCard(props: PatientInfoCardProps) {
454
454
</ div >
455
455
</ div >
456
456
< div
457
- className = "flex flex-col items-center justify-end gap-4 px-4 py-1 2xl:flex-row"
457
+ className = "flex flex-col mt-4 items-center justify-end gap-4 px-4 py-1 2xl:flex-row"
458
458
id = "consultation-buttons"
459
459
>
460
+ < PLUGIN_Component
461
+ __name = "PatientInfoCardQuickActions"
462
+ encounter = { encounter }
463
+ className = "w-full lg:w-auto bg-primary-700 text-white hover:bg-primary-600"
464
+ />
460
465
{ ! disableButtons && (
461
466
< div
462
467
className = "flex w-full flex-col gap-3 lg:w-auto 2xl:flex-row"
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ export type PatientInfoCardActionsComponentType = React.FC<{
32
32
className ?: string ;
33
33
} > ;
34
34
35
+ export type PatientInfoCardQuickActionsComponentType = React . FC < {
36
+ encounter : Encounter ;
37
+ className ?: string ;
38
+ } > ;
39
+
35
40
export type PatientInfoCardMarkAsCompleteComponentType = React . FC < {
36
41
encounter : Encounter ;
37
42
} > ;
@@ -58,6 +63,7 @@ export type SupportedPluginComponents = {
58
63
Scribe : ScribeComponentType ;
59
64
PatientHomeActions : PatientHomeActionsComponentType ;
60
65
PatientInfoCardActions : PatientInfoCardActionsComponentType ;
66
+ PatientInfoCardQuickActions : PatientInfoCardQuickActionsComponentType ;
61
67
PatientInfoCardMarkAsComplete : PatientInfoCardMarkAsCompleteComponentType ;
62
68
FacilityHomeActions : FacilityHomeActionsComponentType ;
63
69
PatientRegistrationForm : PatientRegistrationFormComponentType ;
You can’t perform that action at this time.
0 commit comments