dfh-ui-library 1.12.78 → 1.12.79

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.
@@ -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?: (url?: string) => void;
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;