dfh-ui-library 1.12.443 → 1.12.445

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,7 @@
1
1
  import React from "react";
2
- import { ListMasterDataProps, NoteProps, UrgentDataProps } from "../../shared/models/components/common.model";
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) => Promise<void>;
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) => Promise<void>;
692
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
693
693
  }
694
694
  export interface UrgentDataProps {
695
695
  fullName?: string | undefined;