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;
|
package/dist/index.d.ts
CHANGED
@@ -562,6 +562,7 @@ interface TimelineProps {
|
|
562
562
|
viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: any) => void;
|
563
563
|
navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
|
564
564
|
type?: string[];
|
565
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
565
566
|
}
|
566
567
|
interface SideBarListProps {
|
567
568
|
filterLeftLabel?: string;
|
@@ -619,6 +620,7 @@ interface TimelineEventProps {
|
|
619
620
|
actionedUser?: string;
|
620
621
|
surveyDate?: string;
|
621
622
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
623
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
622
624
|
}
|
623
625
|
interface IVariant {
|
624
626
|
pdfMetaData?: PDFMeta;
|