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;
|
package/dist/index.d.ts
CHANGED
@@ -656,7 +656,7 @@ interface SideBarListProps {
|
|
656
656
|
handleNameClick?: (id?: string) => void;
|
657
657
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
658
658
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams$1) => void;
|
659
|
-
|
659
|
+
isDataLoading?: boolean;
|
660
660
|
}
|
661
661
|
interface PatientConsentProps {
|
662
662
|
consentDate?: string | Date | null;
|
@@ -1695,6 +1695,7 @@ interface TodosV2Props {
|
|
1695
1695
|
handleNameClick?: (id?: string) => void;
|
1696
1696
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
1697
1697
|
searchText?: string;
|
1698
|
+
isDataLoading?: boolean;
|
1698
1699
|
}
|
1699
1700
|
declare const TodosV2: React__default.FC<TodosV2Props>;
|
1700
1701
|
|
@@ -1703,6 +1704,7 @@ interface UrgentChallengeProps {
|
|
1703
1704
|
listMasterData?: ListMasterDataProps;
|
1704
1705
|
handleNameClick?: (id?: string) => void;
|
1705
1706
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
1707
|
+
isDataLoading?: boolean;
|
1706
1708
|
}
|
1707
1709
|
declare const UrgentChallenges: React__default.FC<UrgentChallengeProps>;
|
1708
1710
|
|