edit-pdf 0.0.17 → 0.0.19
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 +3 -1
- package/dist/pdf-editor.js +3257 -2767
- package/dist/pdf-editor.umd.cjs +559 -21
- package/package.json +5 -2
package/dist/index.d.ts
CHANGED
|
@@ -43,6 +43,8 @@ export declare interface DigitalSignatureMeta {
|
|
|
43
43
|
iconSvg?: string;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
+
export declare function ensureEditorStyles(): void;
|
|
47
|
+
|
|
46
48
|
export declare const PdfEditor: default_2.FC<PdfEditorProps>;
|
|
47
49
|
|
|
48
50
|
export declare interface PdfEditorProps {
|
|
@@ -64,7 +66,7 @@ export declare interface PdfEditorProps {
|
|
|
64
66
|
signerDepartment?: string;
|
|
65
67
|
/** SVG markup, data URL, or image URL for the digital signature status icon */
|
|
66
68
|
signatureIconSvg?: string;
|
|
67
|
-
/** Diagonal text watermark
|
|
69
|
+
/** Diagonal text watermark shown on every page in the editor preview only (not exported) */
|
|
68
70
|
watermark?: WatermarkConfig;
|
|
69
71
|
}
|
|
70
72
|
|