dfh-ui-library 1.13.145 → 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
  }
@@ -1 +1 @@
1
- export declare const handleFontTypes: (_type: string | undefined) => "text-12s font-medium" | "text-12s font-semibold" | "text-12s font-extrabold" | "text-14s font-medium" | "text-2xl font-semibold leading-6 text-[#333333]" | "text-xl font-semibold leading-6 text-[#333333]" | "text-14s font-semibold" | "text-14s font-extrabold" | "text-28s font-medium" | "text-28s font-semibold" | "text-28s font-extrabold" | "text-10s font-medium" | "text-10s font-semibold" | "text-10s font-extrabold" | "text-base font-normal leading-[1.875rem] text-[#333333] opacity-50" | "text-base text-xl leading-[1.875rem] text-[#333333]" | "font-semibold text-btn-black text-42s" | "font-normal text-lg text-gray-95" | "font-semibold text-btn-black text-lg" | "font-bold text-btn-black text-14s" | "font-bold text-btn-black text-base" | "font-normal text-gray-95 text-base" | "font-semibold text-black-540 text-18s" | undefined;
1
+ export declare const handleFontTypes: (_type: string | undefined) => "text-12s font-medium" | "text-12s font-semibold" | "text-12s font-extrabold" | "text-14s font-medium" | "text-2xl font-semibold leading-6 text-[#333333]" | "text-xl font-semibold leading-6 text-[#333333]" | "text-14s font-semibold" | "text-14s font-extrabold" | "text-28s font-medium" | "text-28s font-semibold" | "text-28s font-extrabold" | "text-10s font-medium" | "text-10s font-semibold" | "text-10s font-extrabold" | "text-base font-normal leading-[1.875rem] text-[#333333] opacity-50" | "text-base text-xl leading-[1.875rem] text-[#333333]" | "font-semibold text-btn-black text-42s" | "font-semibold text-42s" | "font-normal text-lg text-gray-95" | "font-semibold text-btn-black text-lg" | "font-bold text-btn-black text-14s" | "font-bold text-btn-black text-base" | "font-normal text-gray-95 text-base" | "font-semibold text-black-540 text-18s" | undefined;
@@ -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;
@@ -538,6 +539,7 @@ export interface ButtonGroupProps extends InputGroupProps {
538
539
  my?: number;
539
540
  assigned?: number;
540
541
  unassigned?: number;
542
+ discharge?: number;
541
543
  };
542
544
  }
543
545
  export interface ButtonGroupWithInputsProps extends Omit<ButtonGroupProps, 'selected' | 'onSelect'> {
@@ -848,6 +850,7 @@ export interface SideBarListProps {
848
850
  isDataLoading?: boolean;
849
851
  hasMoreData?: boolean;
850
852
  onLoadMore?: () => void;
853
+ isDischarged?: boolean;
851
854
  }
852
855
  export interface PatientConsentProps {
853
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;
@@ -504,6 +505,7 @@ interface ButtonGroupProps extends InputGroupProps {
504
505
  my?: number;
505
506
  assigned?: number;
506
507
  unassigned?: number;
508
+ discharge?: number;
507
509
  };
508
510
  }
509
511
  interface ButtonGroupMultiProps extends InputGroupProps {
@@ -723,6 +725,7 @@ interface SideBarListProps {
723
725
  isDataLoading?: boolean;
724
726
  hasMoreData?: boolean;
725
727
  onLoadMore?: () => void;
728
+ isDischarged?: boolean;
726
729
  }
727
730
  interface PatientConsentProps {
728
731
  consentDate?: string | Date | null;
@@ -1877,6 +1880,7 @@ interface TodosV2Props {
1877
1880
  toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
1878
1881
  searchText?: string;
1879
1882
  isDataLoading?: boolean;
1883
+ isDischarged?: boolean;
1880
1884
  onLoadMore?: () => void;
1881
1885
  hasMoreData?: boolean;
1882
1886
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.13.145",
3
+ "version": "1.13.149",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",