dfh-ui-library 1.11.39 → 1.11.40

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.
@@ -669,7 +669,7 @@ export interface TimelineEventProps {
669
669
  lastModified?: string;
670
670
  showAll?: string;
671
671
  handleEditItem?: (items: NoteProps, serveyId?: string) => void;
672
- viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: any) => void;
672
+ viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: NoteHistoryProps) => void;
673
673
  isLocked?: boolean;
674
674
  surveyId?: string;
675
675
  type: string;
@@ -689,9 +689,9 @@ export interface NoteProps {
689
689
  noteType?: string;
690
690
  }
691
691
  export interface NoteHistoryProps {
692
- editedBy: string;
692
+ editedBy?: string;
693
693
  dateTime: string;
694
- notesHistory: NoteHistoryDetails[];
694
+ notesHistory?: NoteHistoryDetails[];
695
695
  type: string;
696
696
  challenge?: string;
697
697
  solutions?: string;