dfh-ui-library 1.12.468 → 1.12.470
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/components/History/NoteEvent.d.ts +4 -0
- package/dist/cjs/types/components/History/NoteEventView.d.ts +7 -0
- package/dist/cjs/types/components/MonthPicker/MonthPicker.d.ts +4 -0
- package/dist/cjs/types/components/MonthPicker/index.d.ts +1 -0
- package/dist/cjs/types/components/SideBarListView/todos.d.ts +0 -2
- package/dist/cjs/types/components/Timeline/TimeLineCards.d.ts +1 -3
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -10
- 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/components/History/NoteEvent.d.ts +4 -0
- package/dist/esm/types/components/History/NoteEventView.d.ts +7 -0
- package/dist/esm/types/components/MonthPicker/MonthPicker.d.ts +4 -0
- package/dist/esm/types/components/MonthPicker/index.d.ts +1 -0
- package/dist/esm/types/components/SideBarListView/todos.d.ts +0 -2
- package/dist/esm/types/components/Timeline/TimeLineCards.d.ts +1 -3
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -10
- package/dist/index.d.ts +1 -12
- package/package.json +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from "./MonthPicker";
|
@@ -2,8 +2,6 @@ import React from "react";
|
|
2
2
|
import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
|
3
3
|
export interface ITodoToggleRequestParams {
|
4
4
|
noteId?: string;
|
5
|
-
actionedUser?: string;
|
6
|
-
patient?: string;
|
7
5
|
toggleOptions: {
|
8
6
|
noteIndex: number;
|
9
7
|
check: boolean;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { ISolutionvalues, NoteProps, TimelineEventProps } from "../../shared/models/components/common.model";
|
3
3
|
import { ITodoToggleRequestParams } from "../SideBarListView/todos";
|
4
|
-
export declare const getTimeLineCards: (eventData: TimelineEventProps, setShowCompleteNote: (isShow: boolean) => void, showCompleteNote: boolean, handleEditItemTimeLine: any, navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void, surveyId?: string, showNote?: boolean, setShowNote?: (isSet: boolean) => void, enableEdit?: boolean, toggleEdit?: (isShow: boolean) => void, viewNoteHistory?: any, lastModified?: string, saveNoteValues?: any, setEnableEdit?: (isEnable: boolean) => void, surveyDate?: string, type?: string[], showAll?: boolean
|
4
|
+
export declare const getTimeLineCards: (eventData: TimelineEventProps, setShowCompleteNote: (isShow: boolean) => void, showCompleteNote: boolean, handleEditItemTimeLine: any, navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void, surveyId?: string, showNote?: boolean, setShowNote?: (isSet: boolean) => void, enableEdit?: boolean, toggleEdit?: (isShow: boolean) => void, viewNoteHistory?: any, lastModified?: string, saveNoteValues?: any, setEnableEdit?: (isEnable: boolean) => void, surveyDate?: string, type?: string[], showAll?: boolean) => React.JSX.Element;
|
5
5
|
export declare const NoteCard: React.FC<{
|
6
6
|
eventData?: TimelineEventProps;
|
7
7
|
note?: NoteProps;
|
@@ -16,6 +16,4 @@ export declare const NoteCard: React.FC<{
|
|
16
16
|
type?: string[];
|
17
17
|
showAll?: boolean;
|
18
18
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
19
|
-
isChallengeTimeline?: boolean;
|
20
|
-
handleCopyCurrentNote?: (note: NoteProps) => void;
|
21
19
|
}>;
|
@@ -673,8 +673,6 @@ export interface TimelineProps {
|
|
673
673
|
navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
|
674
674
|
type?: string[];
|
675
675
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
676
|
-
isChallengeTimeline?: boolean;
|
677
|
-
handleCopyCurrentNote?: (note: NoteProps) => void;
|
678
676
|
}
|
679
677
|
export interface SideBarListProps {
|
680
678
|
filterLeftLabel?: string;
|
@@ -733,8 +731,6 @@ export interface TimelineEventProps {
|
|
733
731
|
surveyDate?: string;
|
734
732
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
735
733
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
736
|
-
isChallengeTimeline?: boolean;
|
737
|
-
handleCopyCurrentNote?: (note: NoteProps) => void;
|
738
734
|
}
|
739
735
|
export interface IVariant {
|
740
736
|
pdfMetaData?: PDFMeta;
|
@@ -752,14 +748,10 @@ export interface NoteProps {
|
|
752
748
|
note?: NoteItemProps[];
|
753
749
|
_id?: string;
|
754
750
|
date?: string;
|
755
|
-
actionedUser?:
|
751
|
+
actionedUser?: string;
|
756
752
|
noteType?: string;
|
757
753
|
shouldUpdateLastContactDate?: boolean;
|
758
754
|
}
|
759
|
-
interface ActionedUser {
|
760
|
-
_id?: string;
|
761
|
-
fullName?: string;
|
762
|
-
}
|
763
755
|
export interface NoteHistoryProps {
|
764
756
|
editedBy?: string;
|
765
757
|
dateTime?: string;
|
@@ -812,7 +804,6 @@ export interface NoteComponentProps {
|
|
812
804
|
additionalClassesNote?: string;
|
813
805
|
additionalClassesButtons?: string;
|
814
806
|
minHeight?: string;
|
815
|
-
isChallengeNote?: boolean;
|
816
807
|
}
|
817
808
|
export interface TabButtonProps {
|
818
809
|
onClickTab?: (value: string) => void;
|
package/dist/index.d.ts
CHANGED
@@ -6,8 +6,6 @@ export { ColumnDef, SortingState } from '@tanstack/react-table';
|
|
6
6
|
|
7
7
|
interface ITodoToggleRequestParams {
|
8
8
|
noteId?: string;
|
9
|
-
actionedUser?: string;
|
10
|
-
patient?: string;
|
11
9
|
toggleOptions: {
|
12
10
|
noteIndex: number;
|
13
11
|
check: boolean;
|
@@ -565,8 +563,6 @@ interface TimelineProps {
|
|
565
563
|
navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
|
566
564
|
type?: string[];
|
567
565
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
568
|
-
isChallengeTimeline?: boolean;
|
569
|
-
handleCopyCurrentNote?: (note: NoteProps) => void;
|
570
566
|
}
|
571
567
|
interface SideBarListProps {
|
572
568
|
filterLeftLabel?: string;
|
@@ -625,8 +621,6 @@ interface TimelineEventProps {
|
|
625
621
|
surveyDate?: string;
|
626
622
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
627
623
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
628
|
-
isChallengeTimeline?: boolean;
|
629
|
-
handleCopyCurrentNote?: (note: NoteProps) => void;
|
630
624
|
}
|
631
625
|
interface IVariant {
|
632
626
|
pdfMetaData?: PDFMeta;
|
@@ -644,14 +638,10 @@ interface NoteProps {
|
|
644
638
|
note?: NoteItemProps[];
|
645
639
|
_id?: string;
|
646
640
|
date?: string;
|
647
|
-
actionedUser?:
|
641
|
+
actionedUser?: string;
|
648
642
|
noteType?: string;
|
649
643
|
shouldUpdateLastContactDate?: boolean;
|
650
644
|
}
|
651
|
-
interface ActionedUser {
|
652
|
-
_id?: string;
|
653
|
-
fullName?: string;
|
654
|
-
}
|
655
645
|
interface NoteHistoryProps {
|
656
646
|
editedBy?: string;
|
657
647
|
dateTime?: string;
|
@@ -700,7 +690,6 @@ interface NoteComponentProps {
|
|
700
690
|
additionalClassesNote?: string;
|
701
691
|
additionalClassesButtons?: string;
|
702
692
|
minHeight?: string;
|
703
|
-
isChallengeNote?: boolean;
|
704
693
|
}
|
705
694
|
interface TabButtonProps {
|
706
695
|
onClickTab?: (value: string) => void;
|