dfh-ui-library 1.12.385 → 1.12.386
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 -2
- 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 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
@@ -672,7 +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
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
|
676
676
|
}
|
677
677
|
export interface SideBarListProps {
|
678
678
|
filterLeftLabel?: string;
|
@@ -730,7 +730,7 @@ export interface TimelineEventProps {
|
|
730
730
|
actionedUser?: string;
|
731
731
|
surveyDate?: string;
|
732
732
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
733
|
-
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void
|
733
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
|
734
734
|
}
|
735
735
|
export interface IVariant {
|
736
736
|
pdfMetaData?: PDFMeta;
|