dfh-ui-library 1.12.441 → 1.12.443
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/SideBarListView/todos.d.ts +1 -3
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/SideBarListView/todos.d.ts +1 -3
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/index.d.ts +2 -4
- package/package.json +1 -1
@@ -5,8 +5,6 @@ export interface ITodoToggleRequestParams {
|
|
5
5
|
note?: NoteProps;
|
6
6
|
actionedUser?: string;
|
7
7
|
patient?: string;
|
8
|
-
survey?: string;
|
9
|
-
noteType?: string;
|
10
8
|
toggleOptions: {
|
11
9
|
noteIndex: number;
|
12
10
|
check: boolean;
|
@@ -18,7 +16,7 @@ interface todosProps {
|
|
18
16
|
listMasterData?: ListMasterDataProps;
|
19
17
|
detailAction?: (rowId: string | undefined) => void;
|
20
18
|
handleNameClick?: (id?: string) => void;
|
21
|
-
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void
|
19
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
|
22
20
|
}
|
23
21
|
declare const Todos: React.FC<todosProps>;
|
24
22
|
export default Todos;
|
@@ -689,7 +689,7 @@ export interface SideBarListProps {
|
|
689
689
|
detailAction?: (value: string | undefined) => void;
|
690
690
|
handleNameClick?: (id?: string) => void;
|
691
691
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
692
|
-
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void
|
692
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
|
693
693
|
}
|
694
694
|
export interface UrgentDataProps {
|
695
695
|
fullName?: string | undefined;
|