hplx-feature-library 1.0.255 → 1.0.257
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/components/NonImageDocumentRenderer.d.ts +6 -0
- package/dist/Attachments/components/document-preview/document-image-pane.d.ts +1 -4
- package/dist/Attachments/components/document-preview/preview-side-pane.d.ts +1 -1
- package/dist/Attachments/index.js +1 -1
- package/dist/Attachments/utils/index.d.ts +1 -0
- package/dist/Attachments-C-xXXQ_t.cjs +186 -0
- package/dist/Attachments-imJatd2A.js +25201 -0
- package/dist/PatientPopup/index.js +1 -1
- package/dist/{PatientPopupContainer-Zfod2Twi.cjs → PatientPopupContainer-CKnwC0q8.cjs} +7 -7
- package/dist/{PatientPopupContainer-BRMq_V37.js → PatientPopupContainer-CYR3CP_O.js} +937 -915
- package/dist/hplx-feature-library.css +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/dist/Attachments/components/AttachmentPreviewPopup.d.ts +0 -2
- package/dist/Attachments-C1CUHFeh.js +0 -25225
- package/dist/Attachments-CsKJRPmo.cjs +0 -186
- package/dist/ReusableModal-CIgDYOWZ.cjs +0 -1
- package/dist/ReusableModal-CT4_gW1b.js +0 -29
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { I_DOCUMENT } from '../../types/AttachmentsTypes';
|
|
2
|
+
interface DocumentRendererProps {
|
|
3
|
+
document: I_DOCUMENT;
|
|
4
|
+
}
|
|
5
|
+
declare function NonImageDocumentRenderer({ document }: DocumentRendererProps): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default NonImageDocumentRenderer;
|
|
@@ -1,9 +1,6 @@
|
|
|
1
1
|
import { I_DOCUMENT } from '../../../types/AttachmentsTypes';
|
|
2
2
|
interface DocumentImagePaneProps {
|
|
3
|
-
|
|
4
|
-
documentPreview: I_DOCUMENT[];
|
|
5
|
-
handleImageChange: (action: 'next' | 'prev') => void;
|
|
6
|
-
showButtons: boolean;
|
|
3
|
+
document: I_DOCUMENT;
|
|
7
4
|
}
|
|
8
5
|
declare function DocumentImagePane(props: DocumentImagePaneProps): import("react/jsx-runtime").JSX.Element;
|
|
9
6
|
export default DocumentImagePane;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { I_DOCUMENT } from '../../../types/AttachmentsTypes';
|
|
2
2
|
interface PreviewSidePaneProps {
|
|
3
|
-
|
|
3
|
+
allDocuments: I_DOCUMENT[];
|
|
4
4
|
}
|
|
5
5
|
declare function PreviewSidePane(props: PreviewSidePaneProps): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
declare const _default: import('react').MemoExoticComponent<typeof PreviewSidePane>;
|
|
@@ -3,3 +3,4 @@ export * from './fileValidation';
|
|
|
3
3
|
export declare const isSingleDocument: (doc: IDOCUMENT_DataItem) => doc is I_DOCUMENT;
|
|
4
4
|
export declare function isImageDocument(document: IDOCUMENT_DataItem): document is I_DOCUMENT;
|
|
5
5
|
export declare function groupAndSortDocumentsByDate(data: IDOCUMENT_DataItem[]): IGroupedDocuments[];
|
|
6
|
+
export declare const getThumbnailSrc: (document: I_DOCUMENT) => string;
|