hplx-feature-library 1.0.346 → 1.0.348
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/Attachments/Attachments.d.ts +1 -1
- package/dist/Attachments/components/document-compare/document-save-preview.d.ts +5 -1
- package/dist/Attachments/components/document-compare/index.d.ts +5 -1
- package/dist/Attachments/index.js +1 -1
- package/dist/{Attachments-B84juoE2.js → Attachments-AN2xVbf3.js} +765 -763
- package/dist/{Attachments-VgOS2HWm.cjs → Attachments-BfXL8d5k.cjs} +25 -25
- package/dist/index.js +1 -1
- package/dist/types/AttachmentsTypes.d.ts +3 -1
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ interface AttachmentsProps {
|
|
|
21
21
|
doctor_role_id?: string;
|
|
22
22
|
branch_id?: string;
|
|
23
23
|
onDeleteAttachments: (id: string, isGroup: boolean) => Promise<I_DOCUMENTS_DELETE_RESPONSE>;
|
|
24
|
-
onSaveComparision: (id: string, label: string, documents: string[]) => Promise<I_DOCUMENTS_BASE_RESPONSE<I_DOCUMENT_GROUP>>;
|
|
24
|
+
onSaveComparision: (id: string, label: string, documents: string[], activeTab?: AttachmentTabType) => Promise<I_DOCUMENTS_BASE_RESPONSE<I_DOCUMENT_GROUP>>;
|
|
25
25
|
onHeaderBackClick?: () => void;
|
|
26
26
|
}
|
|
27
27
|
declare function Attachments(props: AttachmentsProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { AttachmentTabType } from '../../../constants/CommonConstant';
|
|
2
|
+
type DocumentSavePreviewProps = {
|
|
3
|
+
activeTab: AttachmentTabType;
|
|
4
|
+
};
|
|
5
|
+
declare function DocumentSavePreview({ activeTab }: DocumentSavePreviewProps): import("react/jsx-runtime").JSX.Element;
|
|
2
6
|
export default DocumentSavePreview;
|
|
@@ -1,2 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import { AttachmentTabType } from '../../../constants/CommonConstant';
|
|
2
|
+
type DocumentCompareProps = {
|
|
3
|
+
activeTab: AttachmentTabType;
|
|
4
|
+
};
|
|
5
|
+
declare function DocumentCompare({ activeTab }: DocumentCompareProps): import("react/jsx-runtime").JSX.Element;
|
|
2
6
|
export default DocumentCompare;
|