dfh-ui-library 1.12.430 → 1.12.432
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/components/Timeline/TimeLineCards.d.ts +2 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/Timeline/TimeLineCards.d.ts +2 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
@@ -1,7 +1,7 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { ISolutionvalues, NoteProps, TimelineEventProps } from "../../shared/models/components/common.model";
|
3
3
|
import { ITodoToggleRequestParams } from "../SideBarListView/todos";
|
4
|
-
export declare const getTimeLineCards: (eventData: TimelineEventProps, setShowCompleteNote: (isShow: boolean) => void, showCompleteNote: boolean, handleEditItemTimeLine: any, navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void, surveyId?: string, showNote?: boolean, setShowNote?: (isSet: boolean) => void, enableEdit?: boolean, toggleEdit?: (isShow: boolean) => void, viewNoteHistory?: any, lastModified?: string, saveNoteValues?: any, setEnableEdit?: (isEnable: boolean) => void, surveyDate?: string, type?: string[], showAll?: boolean) => React.JSX.Element;
|
4
|
+
export declare const getTimeLineCards: (eventData: TimelineEventProps, setShowCompleteNote: (isShow: boolean) => void, showCompleteNote: boolean, handleEditItemTimeLine: any, navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void, surveyId?: string, showNote?: boolean, setShowNote?: (isSet: boolean) => void, enableEdit?: boolean, toggleEdit?: (isShow: boolean) => void, viewNoteHistory?: any, lastModified?: string, saveNoteValues?: any, setEnableEdit?: (isEnable: boolean) => void, surveyDate?: string, type?: string[], showAll?: boolean, isChallengeTimeline?: boolean) => React.JSX.Element;
|
5
5
|
export declare const NoteCard: React.FC<{
|
6
6
|
eventData?: TimelineEventProps;
|
7
7
|
note?: NoteProps;
|
@@ -16,4 +16,5 @@ export declare const NoteCard: React.FC<{
|
|
16
16
|
type?: string[];
|
17
17
|
showAll?: boolean;
|
18
18
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
19
|
+
isChallengeTimeline?: boolean;
|
19
20
|
}>;
|
@@ -673,6 +673,7 @@ export interface TimelineProps {
|
|
673
673
|
navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
|
674
674
|
type?: string[];
|
675
675
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
676
|
+
isChallengeTimeline?: boolean;
|
676
677
|
}
|
677
678
|
export interface SideBarListProps {
|
678
679
|
filterLeftLabel?: string;
|
@@ -731,6 +732,7 @@ export interface TimelineEventProps {
|
|
731
732
|
surveyDate?: string;
|
732
733
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
733
734
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
735
|
+
isChallengeTimeline?: boolean;
|
734
736
|
}
|
735
737
|
export interface IVariant {
|
736
738
|
pdfMetaData?: PDFMeta;
|
package/dist/index.d.ts
CHANGED
@@ -563,6 +563,7 @@ interface TimelineProps {
|
|
563
563
|
navigationAction?: (solution?: ISolutionvalues, type?: string) => void;
|
564
564
|
type?: string[];
|
565
565
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
566
|
+
isChallengeTimeline?: boolean;
|
566
567
|
}
|
567
568
|
interface SideBarListProps {
|
568
569
|
filterLeftLabel?: string;
|
@@ -621,6 +622,7 @@ interface TimelineEventProps {
|
|
621
622
|
surveyDate?: string;
|
622
623
|
navigateAction?: (timeLineNavReq?: ISolutionvalues, type?: string) => void;
|
623
624
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
625
|
+
isChallengeTimeline?: boolean;
|
624
626
|
}
|
625
627
|
interface IVariant {
|
626
628
|
pdfMetaData?: PDFMeta;
|