dfh-ui-library 1.13.148 → 1.13.149

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.
@@ -18,6 +18,7 @@ interface TodosV2Props {
18
18
  toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
19
19
  searchText?: string;
20
20
  isDataLoading?: boolean;
21
+ isDischarged?: boolean;
21
22
  onLoadMore?: () => void;
22
23
  hasMoreData?: boolean;
23
24
  }
@@ -150,6 +150,7 @@ export interface BreadcrumbItem {
150
150
  label: string;
151
151
  link?: string;
152
152
  navAction?: () => void;
153
+ isDischarged?: boolean;
153
154
  }
154
155
  export interface ImagePreviewProps {
155
156
  imageUrl?: string;
@@ -849,6 +850,7 @@ export interface SideBarListProps {
849
850
  isDataLoading?: boolean;
850
851
  hasMoreData?: boolean;
851
852
  onLoadMore?: () => void;
853
+ isDischarged?: boolean;
852
854
  }
853
855
  export interface PatientConsentProps {
854
856
  consentDate?: string | Date | null;
package/dist/index.d.ts CHANGED
@@ -131,6 +131,7 @@ interface BreadcrumbItem {
131
131
  label: string;
132
132
  link?: string;
133
133
  navAction?: () => void;
134
+ isDischarged?: boolean;
134
135
  }
135
136
  interface ImagePreviewProps {
136
137
  imageUrl?: string;
@@ -724,6 +725,7 @@ interface SideBarListProps {
724
725
  isDataLoading?: boolean;
725
726
  hasMoreData?: boolean;
726
727
  onLoadMore?: () => void;
728
+ isDischarged?: boolean;
727
729
  }
728
730
  interface PatientConsentProps {
729
731
  consentDate?: string | Date | null;
@@ -1878,6 +1880,7 @@ interface TodosV2Props {
1878
1880
  toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
1879
1881
  searchText?: string;
1880
1882
  isDataLoading?: boolean;
1883
+ isDischarged?: boolean;
1881
1884
  onLoadMore?: () => void;
1882
1885
  hasMoreData?: boolean;
1883
1886
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.148",
3
+ "version": "1.13.149",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",