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.
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +17 -16
- package/package.json +1 -1
|
@@ -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;
|