dfh-ui-library 1.12.443 → 1.12.445
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 +2 -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 +2 -3
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/index.d.ts +2 -3
- package/package.json +1 -1
@@ -1,8 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
|
-
import { ListMasterDataProps,
|
2
|
+
import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
|
3
3
|
export interface ITodoToggleRequestParams {
|
4
4
|
noteId?: string;
|
5
|
-
note?: NoteProps;
|
6
5
|
actionedUser?: string;
|
7
6
|
patient?: string;
|
8
7
|
toggleOptions: {
|
@@ -16,7 +15,7 @@ interface todosProps {
|
|
16
15
|
listMasterData?: ListMasterDataProps;
|
17
16
|
detailAction?: (rowId: string | undefined) => void;
|
18
17
|
handleNameClick?: (id?: string) => void;
|
19
|
-
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) =>
|
18
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
20
19
|
}
|
21
20
|
declare const Todos: React.FC<todosProps>;
|
22
21
|
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) =>
|
692
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
693
693
|
}
|
694
694
|
export interface UrgentDataProps {
|
695
695
|
fullName?: string | undefined;
|