dfh-ui-library 1.11.0 → 1.11.2

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.
@@ -1,2 +1,3 @@
1
- import { NoteItemProps } from "../../shared/models/components/common.model";
1
+ import { NoteItemProps, TimelineEventProps } from "../../shared/models/components/common.model";
2
2
  export declare const getToDos: (notes: NoteItemProps[]) => string;
3
+ export declare const getUser: (eventData: TimelineEventProps) => string | undefined;
@@ -647,4 +647,9 @@ export interface IListRowProps extends AdditionalClassesProp {
647
647
  onFocus?: () => void;
648
648
  onClick?: () => void;
649
649
  }
650
+ export declare const TIMELINE_TYPE: {
651
+ SURVEY: string;
652
+ NORMAL: string;
653
+ CHALLENGE: string;
654
+ };
650
655
  export {};
@@ -674,6 +674,9 @@ export interface TimelineEventProps {
674
674
  type: string;
675
675
  challengeResolved?: boolean;
676
676
  solutions?: SolutionItem[];
677
+ createdUser?: string;
678
+ resolvedByUser?: string;
679
+ actionedUser?: string;
677
680
  }
678
681
  export interface NoteHistoryProps {
679
682
  editedBy: string;