dfh-ui-library 1.13.131 → 1.13.132

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.
@@ -64,6 +64,7 @@ export declare const ToDoCheck: ({ classes, onClick }: IconProps) => React.JSX.E
64
64
  export declare const UpDouble: ({ classes, onClick }: IconProps) => React.JSX.Element;
65
65
  export declare const DownDouble: ({ classes, onClick }: IconProps) => React.JSX.Element;
66
66
  export declare const PlusWithWhiteBg: ({ classes, onClick, onFocus, color, }: IconProps) => React.JSX.Element;
67
+ export declare const PlusCircleIcon: ({ classes, onClick, onFocus, color, }: IconProps) => React.JSX.Element;
67
68
  export declare const MinusWithWhiteBg: ({ classes, onClick, onFocus, color, }: IconProps) => React.JSX.Element;
68
69
  export declare const ClockCounterIcon: ({ classes, onClick, onFocus, color, }: IconProps) => React.JSX.Element;
69
70
  export declare const FlagErrorIcon: ({ classes, onClick, onFocus, ...props }: IconProps) => React.JSX.Element;
@@ -870,11 +870,12 @@ export interface TimelineEventProps {
870
870
  uuid: string;
871
871
  date?: string;
872
872
  user?: string;
873
+ timelineData?: any;
873
874
  challenge?: string;
874
875
  note?: NoteProps;
875
876
  lastModified?: string;
876
877
  showAll?: boolean;
877
- handleEditItem?: (items: NoteProps, serveyId?: string, type?: string[]) => void;
878
+ handleEditItem?: (items: NoteProps, serveyId?: string, type?: string[], timelineData?: any) => void;
878
879
  viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: NoteHistoryProps) => void;
879
880
  isLocked?: boolean;
880
881
  surveyId?: string;
package/dist/index.d.ts CHANGED
@@ -742,11 +742,12 @@ interface TimelineEventProps {
742
742
  uuid: string;
743
743
  date?: string;
744
744
  user?: string;
745
+ timelineData?: any;
745
746
  challenge?: string;
746
747
  note?: NoteProps;
747
748
  lastModified?: string;
748
749
  showAll?: boolean;
749
- handleEditItem?: (items: NoteProps, serveyId?: string, type?: string[]) => void;
750
+ handleEditItem?: (items: NoteProps, serveyId?: string, type?: string[], timelineData?: any) => void;
750
751
  viewNoteHistory?: (isShow: boolean, noteId: string, eventData?: NoteHistoryProps) => void;
751
752
  isLocked?: boolean;
752
753
  surveyId?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.131",
3
+ "version": "1.13.132",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",