finance-shared 0.0.15 → 0.0.17
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/index.d.ts
CHANGED
|
@@ -191,6 +191,7 @@ export declare const dialogsSlice: Slice<DialogsState, {
|
|
|
191
191
|
}>) => void;
|
|
192
192
|
setRemarkList: (state: WritableDraft<DialogsState>, action: PayloadAction<RemarkType_2[]>) => void;
|
|
193
193
|
setDocumentSignJPDF: (state: WritableDraft<DialogsState>, action: PayloadAction<string>) => void;
|
|
194
|
+
setSignedDocumentJPDF: (state: WritableDraft<DialogsState>, action: PayloadAction<string>) => void;
|
|
194
195
|
setActiveFinanceDetail: (state: WritableDraft<DialogsState>, action: PayloadAction<any>) => void;
|
|
195
196
|
setImagePath: (state: WritableDraft<DialogsState>, action: PayloadAction<string>) => void;
|
|
196
197
|
setSelectedMediaFilePath: (state: WritableDraft<DialogsState>, action: PayloadAction<string>) => void;
|
|
@@ -214,6 +215,7 @@ declare interface DialogsState {
|
|
|
214
215
|
};
|
|
215
216
|
remarksList: RemarkType_2[];
|
|
216
217
|
documentSignJPDF: string;
|
|
218
|
+
signedDocumentJPDF: string;
|
|
217
219
|
activeFinanceDetail: any;
|
|
218
220
|
imagePath: string;
|
|
219
221
|
selectedMediaFilePath: string;
|
|
@@ -499,6 +501,7 @@ declare interface PDFPreviewForTheSignatureProps extends Omit<DialogProps, "onCl
|
|
|
499
501
|
};
|
|
500
502
|
t?: (key: string) => string;
|
|
501
503
|
showConfirmCheckbox?: boolean;
|
|
504
|
+
pdfOnly?: boolean;
|
|
502
505
|
}
|
|
503
506
|
|
|
504
507
|
export declare const PreviewMedia: default_2.FC<PreviewMediaProps>;
|