dfh-ui-library 1.13.62 → 1.13.63
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/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/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 +2 -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;
|
@@ -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
|
+
isLoadingData?: 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
|
+
isLoadingData?: 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
|
/**
|