dfh-ui-library 1.12.389 → 1.12.391

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.
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ import { TimelineEventProps } from "../../shared/models/components/common.model";
3
+ declare const NoteEvent: React.FC<TimelineEventProps>;
4
+ export default NoteEvent;
@@ -0,0 +1,7 @@
1
+ import React from "react";
2
+ import { NoteItemProps } from "../../shared/models/components/common.model";
3
+ interface NoteViewProps {
4
+ notes?: NoteItemProps[];
5
+ }
6
+ declare const NotesEventView: React.FC<NoteViewProps>;
7
+ export default NotesEventView;
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.389",
3
+ "version": "1.12.391",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",