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;
|
package/dist/index.d.ts
CHANGED
|
@@ -554,6 +554,7 @@ interface SideBarListProps {
|
|
|
554
554
|
onClickTab?: (value: string) => void;
|
|
555
555
|
selectedTab?: string;
|
|
556
556
|
detailAction?: (value: string | undefined) => void;
|
|
557
|
+
handleNameClick?: (id?: string) => void;
|
|
557
558
|
}
|
|
558
559
|
interface UrgentDataProps {
|
|
559
560
|
fullName?: string | undefined;
|
|
@@ -561,7 +562,7 @@ interface UrgentDataProps {
|
|
|
561
562
|
imageSignedUrl?: string | undefined;
|
|
562
563
|
challenges: challengesListProps[];
|
|
563
564
|
notes: NoteChildrenProps[];
|
|
564
|
-
|
|
565
|
+
id?: string;
|
|
565
566
|
}
|
|
566
567
|
interface NoteChildrenProps {
|
|
567
568
|
_id?: string;
|
|
@@ -1435,13 +1436,14 @@ interface todosProps {
|
|
|
1435
1436
|
urgentDataList: UrgentDataProps[];
|
|
1436
1437
|
listMasterData?: ListMasterDataProps;
|
|
1437
1438
|
detailAction?: (rowId: string | undefined) => void;
|
|
1439
|
+
handleNameClick?: (id?: string) => void;
|
|
1438
1440
|
}
|
|
1439
1441
|
declare const Todos: React__default.FC<todosProps>;
|
|
1440
1442
|
|
|
1441
1443
|
interface UrgentChallengeProps {
|
|
1442
1444
|
urgentDataList: UrgentDataProps[];
|
|
1443
1445
|
listMasterData?: ListMasterDataProps;
|
|
1444
|
-
handleNameClick?: (
|
|
1446
|
+
handleNameClick?: (id?: string) => void;
|
|
1445
1447
|
}
|
|
1446
1448
|
declare const UrgentChallenges: React__default.FC<UrgentChallengeProps>;
|
|
1447
1449
|
|