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.
- package/dist/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/Media/Icons/Icons.d.ts +1 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Media/Icons/Icons.d.ts +1 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -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;
|