dfh-ui-library 1.12.783 → 1.12.785
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +7 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +7 -0
- package/dist/index.d.ts +7 -0
- package/package.json +1 -1
@@ -749,12 +749,18 @@ export interface SideBarListProps {
|
|
749
749
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
750
750
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
751
751
|
}
|
752
|
+
export interface PatientConsentProps {
|
753
|
+
consentDate?: string | Date | null;
|
754
|
+
consentStatus: "NO CONSENT" | "CONSENT GIVEN";
|
755
|
+
consentBy?: string;
|
756
|
+
}
|
752
757
|
export interface UrgentDataProps {
|
753
758
|
fullName?: string | undefined;
|
754
759
|
dob?: string | undefined;
|
755
760
|
imageSignedUrl?: string | undefined;
|
756
761
|
challenges: challengesListProps[];
|
757
762
|
notes: NoteChildrenProps[];
|
763
|
+
patientConsent: PatientConsentProps;
|
758
764
|
id?: string;
|
759
765
|
}
|
760
766
|
export interface NoteChildrenProps {
|
@@ -874,6 +880,7 @@ export interface NoteComponentProps {
|
|
874
880
|
isChallengeNote?: boolean;
|
875
881
|
isAutoSave?: boolean;
|
876
882
|
isOptional?: boolean;
|
883
|
+
badgeLabel?: string;
|
877
884
|
}
|
878
885
|
export interface TabButtonProps {
|
879
886
|
onClickTab?: (value: string) => void;
|
package/dist/index.d.ts
CHANGED
@@ -639,12 +639,18 @@ interface SideBarListProps {
|
|
639
639
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
640
640
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
641
641
|
}
|
642
|
+
interface PatientConsentProps {
|
643
|
+
consentDate?: string | Date | null;
|
644
|
+
consentStatus: "NO CONSENT" | "CONSENT GIVEN";
|
645
|
+
consentBy?: string;
|
646
|
+
}
|
642
647
|
interface UrgentDataProps {
|
643
648
|
fullName?: string | undefined;
|
644
649
|
dob?: string | undefined;
|
645
650
|
imageSignedUrl?: string | undefined;
|
646
651
|
challenges: challengesListProps[];
|
647
652
|
notes: NoteChildrenProps[];
|
653
|
+
patientConsent: PatientConsentProps;
|
648
654
|
id?: string;
|
649
655
|
}
|
650
656
|
interface NoteChildrenProps {
|
@@ -760,6 +766,7 @@ interface NoteComponentProps {
|
|
760
766
|
isChallengeNote?: boolean;
|
761
767
|
isAutoSave?: boolean;
|
762
768
|
isOptional?: boolean;
|
769
|
+
badgeLabel?: string;
|
763
770
|
}
|
764
771
|
interface TabButtonProps {
|
765
772
|
onClickTab?: (value: string) => void;
|