dfh-ui-library 1.11.39 → 1.11.41
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 +5 -5
- 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 +5 -5
- package/dist/index.d.ts +5 -5
- package/package.json +1 -1
|
@@ -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?:
|
|
672
|
+
viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: NoteHistoryProps) => void;
|
|
673
673
|
isLocked?: boolean;
|
|
674
674
|
surveyId?: string;
|
|
675
675
|
type: string;
|
|
@@ -689,10 +689,10 @@ export interface NoteProps {
|
|
|
689
689
|
noteType?: string;
|
|
690
690
|
}
|
|
691
691
|
export interface NoteHistoryProps {
|
|
692
|
-
editedBy
|
|
693
|
-
dateTime
|
|
694
|
-
notesHistory
|
|
695
|
-
type
|
|
692
|
+
editedBy?: string;
|
|
693
|
+
dateTime?: string;
|
|
694
|
+
notesHistory?: NoteHistoryDetails[];
|
|
695
|
+
type?: string;
|
|
696
696
|
challenge?: string;
|
|
697
697
|
solutions?: string;
|
|
698
698
|
challengeResolved?: boolean;
|