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.
Files changed (30) hide show
  1. package/dist/cjs/index.css +1 -1
  2. package/dist/cjs/index.css.map +1 -1
  3. package/dist/cjs/index.js +1 -1
  4. package/dist/cjs/index.js.map +1 -1
  5. package/dist/cjs/types/components/ArrowDropDown/ArrowDropDown.d.ts +2 -2
  6. package/dist/cjs/types/components/ComponentProvider/ComponentProvider.handler.d.ts +1 -0
  7. package/dist/cjs/types/components/ImagePreview/ImagePreviewV2.d.ts +4 -0
  8. package/dist/cjs/types/components/ImagePreview/index.d.ts +2 -1
  9. package/dist/cjs/types/components/SideBarListView/ItemSkeleton.d.ts +2 -0
  10. package/dist/cjs/types/components/SideBarListView/SideBarListView.d.ts +2 -2
  11. package/dist/cjs/types/components/SideBarListView/todosV2.d.ts +3 -2
  12. package/dist/cjs/types/components/SideBarListView/urgentChallenges.d.ts +3 -2
  13. package/dist/cjs/types/shared/models/components/base.model.d.ts +1 -0
  14. package/dist/cjs/types/shared/models/components/common.model.d.ts +1 -0
  15. package/dist/esm/index.css +1 -1
  16. package/dist/esm/index.css.map +1 -1
  17. package/dist/esm/index.js +1 -1
  18. package/dist/esm/index.js.map +1 -1
  19. package/dist/esm/types/components/ArrowDropDown/ArrowDropDown.d.ts +2 -2
  20. package/dist/esm/types/components/ComponentProvider/ComponentProvider.handler.d.ts +1 -0
  21. package/dist/esm/types/components/ImagePreview/ImagePreviewV2.d.ts +4 -0
  22. package/dist/esm/types/components/ImagePreview/index.d.ts +2 -1
  23. package/dist/esm/types/components/SideBarListView/ItemSkeleton.d.ts +2 -0
  24. package/dist/esm/types/components/SideBarListView/SideBarListView.d.ts +2 -2
  25. package/dist/esm/types/components/SideBarListView/todosV2.d.ts +3 -2
  26. package/dist/esm/types/components/SideBarListView/urgentChallenges.d.ts +3 -2
  27. package/dist/esm/types/shared/models/components/base.model.d.ts +1 -0
  28. package/dist/esm/types/shared/models/components/common.model.d.ts +1 -0
  29. package/dist/index.d.ts +4 -0
  30. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
- import React from "react";
2
- import { AccountPopoverMenuItem } from "../../shared/models/components/common.model";
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;
@@ -2,4 +2,5 @@ import { ISchema } from "../../shared/models/components/common.model";
2
2
  export declare const UIComponentHelper: (schema: ISchema[]) => {
3
3
  id: string;
4
4
  component: any;
5
+ fieldId: number;
5
6
  }[];
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { ImagePreviewProps } from '../../shared/models/components/common.model';
3
+ declare const ImagePreviewV2: React.FC<ImagePreviewProps>;
4
+ export default ImagePreviewV2;
@@ -1 +1,2 @@
1
- export { default } from "./ImagePreview";
1
+ export { default } from './ImagePreview';
2
+ export { default as ImagePreviewV2 } from './ImagePreviewV2';
@@ -0,0 +1,2 @@
1
+ import React from 'react';
2
+ export default function ItemSkeleton(): React.JSX.Element;
@@ -1,4 +1,4 @@
1
- import React from "react";
2
- import { SideBarListProps } from "../../shared/models/components/common.model";
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 "react";
2
- import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
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 "react";
2
- import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.62",
3
+ "version": "1.13.64",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",