dfh-ui-library 1.12.170 → 1.12.172

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,6 +1,7 @@
1
1
  import { ReactNode } from "react";
2
2
  import { VariantTypes } from "./base.model";
3
3
  import { ColumnDef, OnChangeFn, PaginationState, SortingState } from "@tanstack/react-table";
4
+ import { ITodoToggleRequestParams } from "../../../components/SideBarListView/todos";
4
5
  export type AlignmentType = "center" | "left" | "right";
5
6
  export type IconColorTypes = "white" | "black-900" | "gray-220" | "gray-720" | "inherit" | "gray-300" | string;
6
7
  export type IconHoverColorTypes = "white" | "black-900" | "gray-220" | "inherit";
@@ -686,6 +687,7 @@ export interface SideBarListProps {
686
687
  detailAction?: (value: string | undefined) => void;
687
688
  handleNameClick?: (id?: string) => void;
688
689
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
690
+ toggleDashboardTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
689
691
  }
690
692
  export interface UrgentDataProps {
691
693
  fullName?: string | undefined;