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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.385",
3
+ "version": "1.12.386",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",