dfh-ui-library 1.12.393 → 1.12.395
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/components/Timeline/TimeLineCards.d.ts +2 -0
- 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/components/Timeline/TimeLineCards.d.ts +2 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -1,5 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { ISolutionvalues, NoteProps, TimelineEventProps } from "../../shared/models/components/common.model";
|
3
|
+
import { ITodoToggleRequestParams } from "../SideBarListView/todos";
|
3
4
|
export declare const getTimeLineCards: (eventData: TimelineEventProps, setShowCompleteNote: (isShow: boolean) => void, showCompleteNote: boolean, handleEditItemTimeLine: any, navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void, surveyId?: string, showNote?: boolean, setShowNote?: (isSet: boolean) => void, enableEdit?: boolean, toggleEdit?: (isShow: boolean) => void, viewNoteHistory?: any, lastModified?: string, saveNoteValues?: any, setEnableEdit?: (isEnable: boolean) => void, surveyDate?: string, type?: string[], showAll?: boolean) => React.JSX.Element;
|
4
5
|
export declare const NoteCard: React.FC<{
|
5
6
|
eventData?: TimelineEventProps;
|
@@ -14,4 +15,5 @@ export declare const NoteCard: React.FC<{
|
|
14
15
|
setEnableEdit?: (isEnable: boolean) => void;
|
15
16
|
type?: string[];
|
16
17
|
showAll?: boolean;
|
18
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
17
19
|
}>;
|
@@ -672,6 +672,7 @@ export interface TimelineProps {
|
|
672
672
|
viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: any) => void;
|
673
673
|
navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
|
674
674
|
type?: string[];
|
675
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
675
676
|
}
|
676
677
|
export interface SideBarListProps {
|
677
678
|
filterLeftLabel?: string;
|
@@ -729,6 +730,7 @@ export interface TimelineEventProps {
|
|
729
730
|
actionedUser?: string;
|
730
731
|
surveyDate?: string;
|
731
732
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
733
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
732
734
|
}
|
733
735
|
export interface IVariant {
|
734
736
|
pdfMetaData?: PDFMeta;
|