dfh-ui-library 1.13.148 → 1.13.150
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/PhoneNumberInput/PhoneNumberInput4.d.ts +1 -2
- package/dist/cjs/types/components/SideBarListView/todosV2.d.ts +1 -0
- package/dist/cjs/types/shared/models/components/common.model.d.ts +2 -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/PhoneNumberInput/PhoneNumberInput4.d.ts +1 -2
- package/dist/esm/types/components/SideBarListView/todosV2.d.ts +1 -0
- package/dist/esm/types/shared/models/components/common.model.d.ts +2 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
@@ -1,7 +1,6 @@
|
|
1
1
|
import React from "react";
|
2
2
|
import { PhoneNumberInputProps } from "../../shared/models/components/common.model";
|
3
|
-
import 'react-phone-input-2/lib/
|
4
|
-
import './phoneInput.css';
|
3
|
+
import 'react-phone-input-2/lib/plain.css';
|
5
4
|
interface ExtendedPhoneNumberInputProps extends PhoneNumberInputProps {
|
6
5
|
countryCallingCodeEditable?: boolean;
|
7
6
|
disabled?: boolean;
|
@@ -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
|
}
|