dfh-ui-library 1.13.62 → 1.13.64
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.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/components/ArrowDropDown/ArrowDropDown.d.ts +2 -2
- package/dist/cjs/types/components/ComponentProvider/ComponentProvider.handler.d.ts +1 -0
- package/dist/cjs/types/components/ImagePreview/ImagePreviewV2.d.ts +4 -0
- package/dist/cjs/types/components/ImagePreview/index.d.ts +2 -1
- package/dist/cjs/types/components/SideBarListView/ItemSkeleton.d.ts +2 -0
- package/dist/cjs/types/components/SideBarListView/SideBarListView.d.ts +2 -2
- 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/base.model.d.ts +1 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/ArrowDropDown/ArrowDropDown.d.ts +2 -2
- package/dist/esm/types/components/ComponentProvider/ComponentProvider.handler.d.ts +1 -0
- package/dist/esm/types/components/ImagePreview/ImagePreviewV2.d.ts +4 -0
- package/dist/esm/types/components/ImagePreview/index.d.ts +2 -1
- package/dist/esm/types/components/SideBarListView/ItemSkeleton.d.ts +2 -0
- package/dist/esm/types/components/SideBarListView/SideBarListView.d.ts +2 -2
- 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/base.model.d.ts +1 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +1 -0
- package/dist/index.d.ts +4 -0
- package/package.json +1 -1
@@ -1,5 +1,5 @@
|
|
1
|
-
import React from
|
2
|
-
import { AccountPopoverMenuItem } from
|
1
|
+
import React from 'react';
|
2
|
+
import { AccountPopoverMenuItem } from '../../shared/models/components/common.model';
|
3
3
|
interface ArrowDropdownProps {
|
4
4
|
username?: string;
|
5
5
|
themeColor?: string;
|
@@ -1 +1,2 @@
|
|
1
|
-
export { default } from
|
1
|
+
export { default } from './ImagePreview';
|
2
|
+
export { default as ImagePreviewV2 } from './ImagePreviewV2';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import React from
|
2
|
-
import { SideBarListProps } from
|
1
|
+
import React from 'react';
|
2
|
+
import { SideBarListProps } from '../../shared/models/components/common.model';
|
3
3
|
declare const SideBarListView: React.FC<SideBarListProps>;
|
4
4
|
export default SideBarListView;
|
@@ -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;
|
@@ -88,6 +88,7 @@ export interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
|
|
88
88
|
onMouseOut?: any;
|
89
89
|
color?: string;
|
90
90
|
isAddEditPatient?: boolean;
|
91
|
+
title?: string;
|
91
92
|
}
|
92
93
|
export interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
93
94
|
/**
|
@@ -765,6 +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
|
+
isDataLoading?: boolean;
|
768
769
|
}
|
769
770
|
export interface PatientConsentProps {
|
770
771
|
consentDate?: string | Date | null;
|
package/dist/index.d.ts
CHANGED
@@ -656,6 +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
|
+
isDataLoading?: boolean;
|
659
660
|
}
|
660
661
|
interface PatientConsentProps {
|
661
662
|
consentDate?: string | Date | null;
|
@@ -925,6 +926,7 @@ interface IIconProps extends IAdditionalClassesProp, IIconTypeProp {
|
|
925
926
|
onMouseOut?: any;
|
926
927
|
color?: string;
|
927
928
|
isAddEditPatient?: boolean;
|
929
|
+
title?: string;
|
928
930
|
}
|
929
931
|
interface IHookFormsInputProps extends InputHTMLAttributes<HTMLInputElement> {
|
930
932
|
/**
|
@@ -1693,6 +1695,7 @@ interface TodosV2Props {
|
|
1693
1695
|
handleNameClick?: (id?: string) => void;
|
1694
1696
|
toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
|
1695
1697
|
searchText?: string;
|
1698
|
+
isDataLoading?: boolean;
|
1696
1699
|
}
|
1697
1700
|
declare const TodosV2: React__default.FC<TodosV2Props>;
|
1698
1701
|
|
@@ -1701,6 +1704,7 @@ interface UrgentChallengeProps {
|
|
1701
1704
|
listMasterData?: ListMasterDataProps;
|
1702
1705
|
handleNameClick?: (id?: string) => void;
|
1703
1706
|
handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
|
1707
|
+
isDataLoading?: boolean;
|
1704
1708
|
}
|
1705
1709
|
declare const UrgentChallenges: React__default.FC<UrgentChallengeProps>;
|
1706
1710
|
|