@pristy/pristy-libvue 2.18.0 → 2.18.1
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/{ActivityHistory-CRlqa5Jq.js → ActivityHistory-B7rEDc2i.js} +2 -2
- package/dist/{ActivityHistory-CRlqa5Jq.js.map → ActivityHistory-B7rEDc2i.js.map} +1 -1
- package/dist/{BookmarksComponent-BLIaEuPk.js → BookmarksComponent-AtcKmJXo.js} +2 -2
- package/dist/{BookmarksComponent-BLIaEuPk.js.map → BookmarksComponent-AtcKmJXo.js.map} +1 -1
- package/dist/{ChartWrapper-BaBVW8I3.js → ChartWrapper-CLpgl4Fg.js} +2 -2
- package/dist/{ChartWrapper-BaBVW8I3.js.map → ChartWrapper-CLpgl4Fg.js.map} +1 -1
- package/dist/{DisplayFileInDashboardComponent-Dllh5MNd.js → DisplayFileInDashboardComponent-BAVvLZVV.js} +2 -2
- package/dist/{DisplayFileInDashboardComponent-Dllh5MNd.js.map → DisplayFileInDashboardComponent-BAVvLZVV.js.map} +1 -1
- package/dist/{ExternalApps-CAmO0szr.js → ExternalApps-B2WCQKX8.js} +2 -2
- package/dist/{ExternalApps-CAmO0szr.js.map → ExternalApps-B2WCQKX8.js.map} +1 -1
- package/dist/{FavoriteList-CIQ0aoZc.js → FavoriteList-CZnQ5XWk.js} +2 -2
- package/dist/{FavoriteList-CIQ0aoZc.js.map → FavoriteList-CZnQ5XWk.js.map} +1 -1
- package/dist/{MarkdownComponent-8geE7A8s.js → MarkdownComponent-Cvu0y5aE.js} +2 -2
- package/dist/{MarkdownComponent-8geE7A8s.js.map → MarkdownComponent-Cvu0y5aE.js.map} +1 -1
- package/dist/{SearchInput-B1UV94gV.js → SearchInput-B1biNbXK.js} +2 -2
- package/dist/{SearchInput-B1UV94gV.js.map → SearchInput-B1biNbXK.js.map} +1 -1
- package/dist/{UnknownBlockType-Dgloser7.js → UnknownBlockType-COgFjCNE.js} +2 -2
- package/dist/{UnknownBlockType-Dgloser7.js.map → UnknownBlockType-COgFjCNE.js.map} +1 -1
- package/dist/{index-D9Rwpk8t.js → index-Cv1Jps6I.js} +3834 -3725
- package/dist/index-Cv1Jps6I.js.map +1 -0
- package/dist/pristy-libvue.css +1 -1
- package/dist/pristy-libvue.es.js +1 -1
- package/dist/pristy-libvue.umd.js +18 -18
- package/dist/pristy-libvue.umd.js.map +1 -1
- package/dist/src/components/navigation/PreviewPanel.vue.d.ts +14 -1
- package/dist/src/components/viewer/PDFComponent.vue.d.ts +36 -1
- package/dist/src/components/viewer/PDFComponent.vue.d.ts.map +1 -1
- package/dist/src/i18n/index.d.ts +6 -0
- package/dist/src/i18n/index.d.ts.map +1 -1
- package/dist/src/services/PdfFormService.d.ts +29 -0
- package/dist/src/services/PdfFormService.d.ts.map +1 -0
- package/package.json +1 -1
- package/dist/index-D9Rwpk8t.js.map +0 -1
|
@@ -250,7 +250,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
250
250
|
isSinglePageDisplayed: boolean;
|
|
251
251
|
isFormDirty: boolean;
|
|
252
252
|
isSaving: boolean;
|
|
253
|
+
isUnlocking: boolean;
|
|
254
|
+
isLocking: boolean;
|
|
253
255
|
hasFormFields: boolean;
|
|
256
|
+
hasReadOnlyFields: boolean;
|
|
257
|
+
unlockedFormBytes: any;
|
|
254
258
|
showFormFieldsDialog: boolean;
|
|
255
259
|
formFieldsData: any[];
|
|
256
260
|
formFieldValues: {};
|
|
@@ -273,17 +277,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
273
277
|
fitWidthAuto(): void;
|
|
274
278
|
previousPage(): void;
|
|
275
279
|
nextPage(): void;
|
|
280
|
+
currentPdfSource(): string | {
|
|
281
|
+
data: Uint8Array;
|
|
282
|
+
};
|
|
276
283
|
loadPDF(): void;
|
|
277
284
|
changePageUrl(pageValue: any): void;
|
|
278
285
|
focusOnPDFComponent(): void;
|
|
279
286
|
getFormBytes(): Promise<any>;
|
|
280
287
|
resetFormDirty(): void;
|
|
281
288
|
setSaving(value: any): void;
|
|
289
|
+
setLocking(value: any): void;
|
|
290
|
+
getLockedFormBytes(): Promise<Uint8Array | null>;
|
|
282
291
|
onAnnotation(value: any): void;
|
|
283
292
|
checkFormFields(): Promise<void>;
|
|
293
|
+
unlockForm(): Promise<void>;
|
|
284
294
|
cancelForm(): void;
|
|
285
295
|
showFormFieldsInfo(): Promise<void>;
|
|
286
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm")[], "formDirtyChange" | "saveForm", PublicProps, Readonly< ExtractPropTypes<{
|
|
296
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError")[], "formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError", PublicProps, Readonly< ExtractPropTypes<{
|
|
287
297
|
url: {
|
|
288
298
|
type: StringConstructor;
|
|
289
299
|
default: any;
|
|
@@ -307,6 +317,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
307
317
|
}>> & Readonly<{
|
|
308
318
|
onFormDirtyChange?: (...args: any[]) => any;
|
|
309
319
|
onSaveForm?: (...args: any[]) => any;
|
|
320
|
+
onLockForm?: (...args: any[]) => any;
|
|
321
|
+
onFormUnlocked?: (...args: any[]) => any;
|
|
322
|
+
onFormUnlockError?: (...args: any[]) => any;
|
|
310
323
|
}>, {
|
|
311
324
|
textLayer: boolean;
|
|
312
325
|
hideForms: boolean;
|
|
@@ -45,7 +45,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
45
45
|
isSinglePageDisplayed: boolean;
|
|
46
46
|
isFormDirty: boolean;
|
|
47
47
|
isSaving: boolean;
|
|
48
|
+
isUnlocking: boolean;
|
|
49
|
+
isLocking: boolean;
|
|
48
50
|
hasFormFields: boolean;
|
|
51
|
+
hasReadOnlyFields: boolean;
|
|
52
|
+
unlockedFormBytes: any;
|
|
49
53
|
showFormFieldsDialog: boolean;
|
|
50
54
|
formFieldsData: any[];
|
|
51
55
|
formFieldValues: {};
|
|
@@ -68,17 +72,45 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
68
72
|
fitWidthAuto(): void;
|
|
69
73
|
previousPage(): void;
|
|
70
74
|
nextPage(): void;
|
|
75
|
+
/**
|
|
76
|
+
* Source handed to pdf.js: the node URL, or the in-memory bytes produced by
|
|
77
|
+
* unlockForm(). pdf.js transfers the `data` buffer to its worker, which
|
|
78
|
+
* detaches it, so every load gets its own copy — otherwise a second load
|
|
79
|
+
* (cancelForm, changePdfDisplay) would fail on a detached ArrayBuffer.
|
|
80
|
+
*
|
|
81
|
+
* @returns {string|{data: Uint8Array}}
|
|
82
|
+
*/
|
|
83
|
+
currentPdfSource(): string | {
|
|
84
|
+
data: Uint8Array;
|
|
85
|
+
};
|
|
71
86
|
loadPDF(): void;
|
|
72
87
|
changePageUrl(pageValue: any): void;
|
|
73
88
|
focusOnPDFComponent(): void;
|
|
74
89
|
getFormBytes(): Promise<any>;
|
|
75
90
|
resetFormDirty(): void;
|
|
76
91
|
setSaving(value: any): void;
|
|
92
|
+
setLocking(value: any): void;
|
|
93
|
+
/**
|
|
94
|
+
* Bytes of the form with the values typed in the viewer kept and every
|
|
95
|
+
* field flagged read-only, ready to be stored as a new version.
|
|
96
|
+
*
|
|
97
|
+
* @returns {Promise<Uint8Array|null>} null when the document is not loaded
|
|
98
|
+
*/
|
|
99
|
+
getLockedFormBytes(): Promise<Uint8Array | null>;
|
|
77
100
|
onAnnotation(value: any): void;
|
|
78
101
|
checkFormFields(): Promise<void>;
|
|
102
|
+
/**
|
|
103
|
+
* Drop the ReadOnly flags of the form so its fields become fillable.
|
|
104
|
+
*
|
|
105
|
+
* The change stays local: the viewer is reloaded from the rewritten bytes
|
|
106
|
+
* and nothing is sent to the repository. The unlocked structure reaches
|
|
107
|
+
* Alfresco only if the user then saves the filled form, through the regular
|
|
108
|
+
* save path.
|
|
109
|
+
*/
|
|
110
|
+
unlockForm(): Promise<void>;
|
|
79
111
|
cancelForm(): void;
|
|
80
112
|
showFormFieldsInfo(): Promise<void>;
|
|
81
|
-
}, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm")[], "formDirtyChange" | "saveForm", PublicProps, Readonly< ExtractPropTypes<{
|
|
113
|
+
}, ComponentOptionsMixin, ComponentOptionsMixin, ("formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError")[], "formDirtyChange" | "saveForm" | "lockForm" | "formUnlocked" | "formUnlockError", PublicProps, Readonly< ExtractPropTypes<{
|
|
82
114
|
url: {
|
|
83
115
|
type: StringConstructor;
|
|
84
116
|
default: any;
|
|
@@ -102,6 +134,9 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
102
134
|
}>> & Readonly<{
|
|
103
135
|
onFormDirtyChange?: (...args: any[]) => any;
|
|
104
136
|
onSaveForm?: (...args: any[]) => any;
|
|
137
|
+
onLockForm?: (...args: any[]) => any;
|
|
138
|
+
onFormUnlocked?: (...args: any[]) => any;
|
|
139
|
+
onFormUnlockError?: (...args: any[]) => any;
|
|
105
140
|
}>, {
|
|
106
141
|
textLayer: boolean;
|
|
107
142
|
hideForms: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PDFComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/PDFComponent.vue"],"names":[],"mappings":";;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"PDFComponent.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/viewer/PDFComponent.vue"],"names":[],"mappings":";;;;;;;;;;;;;AAkRA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAqkCI;;;;;;;OAOG;wBADU,MAAM,GAAC;QAAC,IAAI,EAAE,UAAU,CAAA;KAAC;;;;;;;;IA8DtC;;;;;OAKG;0BADU,OAAO,CAAC,UAAU,GAAC,IAAI,CAAC;;;IAgFrC;;;;;;;OAOG"}
|
package/dist/src/i18n/index.d.ts
CHANGED
|
@@ -339,6 +339,9 @@ declare const i18n: I18n<{
|
|
|
339
339
|
showPageByPage: string;
|
|
340
340
|
previousPage: string;
|
|
341
341
|
nextPage: string;
|
|
342
|
+
lockForm: string;
|
|
343
|
+
unlockForm: string;
|
|
344
|
+
unlockFormBlocked: string;
|
|
342
345
|
saveForm: string;
|
|
343
346
|
cancelForm: string;
|
|
344
347
|
formFieldsInfo: string;
|
|
@@ -2249,6 +2252,9 @@ declare const i18n: I18n<{
|
|
|
2249
2252
|
showPageByPage: string;
|
|
2250
2253
|
previousPage: string;
|
|
2251
2254
|
nextPage: string;
|
|
2255
|
+
lockForm: string;
|
|
2256
|
+
unlockForm: string;
|
|
2257
|
+
unlockFormBlocked: string;
|
|
2252
2258
|
saveForm: string;
|
|
2253
2259
|
cancelForm: string;
|
|
2254
2260
|
formFieldsInfo: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/index.js"],"names":[],"mappings":";;AAsBA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/i18n/index.js"],"names":[],"mappings":";;AAsBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yBAOG"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Make every field of a form fillable again.
|
|
3
|
+
*
|
|
4
|
+
* A form whose fields are all flagged ReadOnly looks broken rather than
|
|
5
|
+
* protected — inert inputs, no message — a common accident with forms exported
|
|
6
|
+
* from LibreOffice Writer.
|
|
7
|
+
*
|
|
8
|
+
* @param {Uint8Array|ArrayBuffer} pdfBytes the document as loaded
|
|
9
|
+
* @returns {Promise<{bytes: Uint8Array|null, unlockedCount: number}>} null
|
|
10
|
+
* bytes when no field was locked
|
|
11
|
+
*/
|
|
12
|
+
export function unlockFormFields(pdfBytes: Uint8Array | ArrayBuffer): Promise<{
|
|
13
|
+
bytes: Uint8Array | null;
|
|
14
|
+
unlockedCount: number;
|
|
15
|
+
}>;
|
|
16
|
+
/**
|
|
17
|
+
* Mark every field of a form as read-only, to state that it is final.
|
|
18
|
+
*
|
|
19
|
+
* @param {Uint8Array|ArrayBuffer} pdfBytes the document as loaded, values
|
|
20
|
+
* included — lock the bytes returned by pdf.js `saveDocument()` to keep what
|
|
21
|
+
* was filled in
|
|
22
|
+
* @returns {Promise<{bytes: Uint8Array|null, lockedCount: number}>} null bytes
|
|
23
|
+
* when every field was already read-only
|
|
24
|
+
*/
|
|
25
|
+
export function lockFormFields(pdfBytes: Uint8Array | ArrayBuffer): Promise<{
|
|
26
|
+
bytes: Uint8Array | null;
|
|
27
|
+
lockedCount: number;
|
|
28
|
+
}>;
|
|
29
|
+
//# sourceMappingURL=PdfFormService.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PdfFormService.d.ts","sourceRoot":"","sources":["../../../src/services/PdfFormService.js"],"names":[],"mappings":"AAmEA;;;;;;;;;;GAUG;AACH,2CAJW,UAAU,GAAC,WAAW,GACpB,OAAO,CAAC;IAAC,KAAK,EAAE,UAAU,GAAC,IAAI,CAAC;IAAC,aAAa,EAAE,MAAM,CAAA;CAAC,CAAC,CAMpE;AAED;;;;;;;;GAQG;AACH,yCANW,UAAU,GAAC,WAAW,GAGpB,OAAO,CAAC;IAAC,KAAK,EAAE,UAAU,GAAC,IAAI,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAC,CAAC,CAMlE"}
|