dfh-ui-library 1.12.384 → 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;
|
package/dist/index.d.ts
CHANGED
@@ -562,7 +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
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
|
566
566
|
}
|
567
567
|
interface SideBarListProps {
|
568
568
|
filterLeftLabel?: string;
|
@@ -620,7 +620,7 @@ interface TimelineEventProps {
|
|
620
620
|
actionedUser?: string;
|
621
621
|
surveyDate?: string;
|
622
622
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
623
|
-
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void
|
623
|
+
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
|
624
624
|
}
|
625
625
|
interface IVariant {
|
626
626
|
pdfMetaData?: PDFMeta;
|