dfh-ui-library 1.12.78 → 1.12.80
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/SideBarListView/todos.d.ts +1 -0
- package/dist/cjs/types/components/SideBarListView/urgentChallenges.d.ts +1 -1
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/SideBarListView/todos.d.ts +1 -0
- package/dist/esm/types/components/SideBarListView/urgentChallenges.d.ts +1 -1
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -1
- package/dist/index.d.ts +4 -2
- package/package.json +1 -1
|
@@ -4,6 +4,7 @@ interface todosProps {
|
|
|
4
4
|
urgentDataList: UrgentDataProps[];
|
|
5
5
|
listMasterData?: ListMasterDataProps;
|
|
6
6
|
detailAction?: (rowId: string | undefined) => void;
|
|
7
|
+
handleNameClick?: (id?: string) => void;
|
|
7
8
|
}
|
|
8
9
|
declare const Todos: React.FC<todosProps>;
|
|
9
10
|
export default Todos;
|
|
@@ -3,7 +3,7 @@ import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/compon
|
|
|
3
3
|
interface UrgentChallengeProps {
|
|
4
4
|
urgentDataList: UrgentDataProps[];
|
|
5
5
|
listMasterData?: ListMasterDataProps;
|
|
6
|
-
handleNameClick?: (
|
|
6
|
+
handleNameClick?: (id?: string) => void;
|
|
7
7
|
}
|
|
8
8
|
declare const UrgentChallenges: React.FC<UrgentChallengeProps>;
|
|
9
9
|
export default UrgentChallenges;
|
|
@@ -680,6 +680,7 @@ export interface SideBarListProps {
|
|
|
680
680
|
onClickTab?: (value: string) => void;
|
|
681
681
|
selectedTab?: string;
|
|
682
682
|
detailAction?: (value: string | undefined) => void;
|
|
683
|
+
handleNameClick?: (id?: string) => void;
|
|
683
684
|
}
|
|
684
685
|
export interface UrgentDataProps {
|
|
685
686
|
fullName?: string | undefined;
|
|
@@ -687,7 +688,7 @@ export interface UrgentDataProps {
|
|
|
687
688
|
imageSignedUrl?: string | undefined;
|
|
688
689
|
challenges: challengesListProps[];
|
|
689
690
|
notes: NoteChildrenProps[];
|
|
690
|
-
|
|
691
|
+
id?: string;
|
|
691
692
|
}
|
|
692
693
|
export interface NoteChildrenProps {
|
|
693
694
|
_id?: string;
|