dfh-ui-library 1.13.63 → 1.13.65
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/todosV2.d.ts +3 -2
- package/dist/cjs/types/components/SideBarListView/urgentChallenges.d.ts +3 -2
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/SideBarListView/todosV2.d.ts +3 -2
- package/dist/esm/types/components/SideBarListView/urgentChallenges.d.ts +3 -2
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -1
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
|
-
import React from
|
2
|
-
import { ListMasterDataProps, UrgentDataProps } from
|
1
|
+
import React from 'react';
|
2
|
+
import { ListMasterDataProps, UrgentDataProps } from '../../shared/models/components/common.model';
|
3
3
|
export interface ITodoToggleRequestParams {
|
4
4
|
noteId?: string;
|
5
5
|
actionedUser?: string;
|
@@ -17,6 +17,7 @@ interface TodosV2Props {
|
|
17
17
|
handleNameClick?: (id?: string) => void;
|
18
18
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
19
19
|
searchText?: string;
|
20
|
+
isDataLoading?: boolean;
|
20
21
|
}
|
21
22
|
declare const TodosV2: React.FC<TodosV2Props>;
|
22
23
|
export default TodosV2;
|
@@ -1,10 +1,11 @@
|
|
1
|
-
import React from
|
2
|
-
import { ListMasterDataProps, UrgentDataProps } from
|
1
|
+
import React from 'react';
|
2
|
+
import { ListMasterDataProps, UrgentDataProps } from '../../shared/models/components/common.model';
|
3
3
|
interface UrgentChallengeProps {
|
4
4
|
urgentDataList: UrgentDataProps[];
|
5
5
|
listMasterData?: ListMasterDataProps;
|
6
6
|
handleNameClick?: (id?: string) => void;
|
7
7
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
8
|
+
isDataLoading?: boolean;
|
8
9
|
}
|
9
10
|
declare const UrgentChallenges: React.FC<UrgentChallengeProps>;
|
10
11
|
export default UrgentChallenges;
|
@@ -765,7 +765,7 @@ export interface SideBarListProps {
|
|
765
765
|
handleNameClick?: (id?: string) => void;
|
766
766
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
767
767
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
768
|
-
|
768
|
+
isDataLoading?: boolean;
|
769
769
|
}
|
770
770
|
export interface PatientConsentProps {
|
771
771
|
consentDate?: string | Date | null;
|