@docuseal/angular 1.0.0 → 1.0.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/LICENSE +20 -0
- package/dist/README.md +76 -0
- package/dist/builder.component.d.ts +61 -0
- package/dist/esm2022/builder.component.mjs +267 -0
- package/dist/esm2022/docuseal-angular.mjs +5 -0
- package/dist/esm2022/form.component.mjs +290 -0
- package/dist/esm2022/public-api.mjs +3 -0
- package/dist/fesm2022/docuseal-angular.mjs +562 -0
- package/dist/fesm2022/docuseal-angular.mjs.map +1 -0
- package/dist/form.component.d.ts +66 -0
- package/dist/index.d.ts +5 -0
- package/package.json +4 -1
- package/.eslintrc.json +0 -41
- package/angular.json +0 -30
- package/ng-package.json +0 -7
- package/src/builder.component.ts +0 -225
- package/src/form.component.ts +0 -240
- package/tsconfig.json +0 -33
- /package/{src/public-api.ts → dist/public-api.d.ts} +0 -0
|
@@ -0,0 +1,562 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, HostListener } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
class DocusealFormComponent {
|
|
5
|
+
el;
|
|
6
|
+
src = "";
|
|
7
|
+
host = "cdn.docuseal.co";
|
|
8
|
+
role = "";
|
|
9
|
+
submitter = ""; // Backward compatibility
|
|
10
|
+
expand = true;
|
|
11
|
+
preview = false;
|
|
12
|
+
email = "";
|
|
13
|
+
applicationKey = "";
|
|
14
|
+
externalId = "";
|
|
15
|
+
backgroundColor = "";
|
|
16
|
+
logo = "";
|
|
17
|
+
language = "";
|
|
18
|
+
completedRedirectUrl = "";
|
|
19
|
+
completedButton = { title: "", url: "" };
|
|
20
|
+
goToLast = true;
|
|
21
|
+
skipFields = false;
|
|
22
|
+
withTitle = true;
|
|
23
|
+
withFieldNames = true;
|
|
24
|
+
withDownloadButton = true;
|
|
25
|
+
withSendCopyButton = true;
|
|
26
|
+
allowToResubmit = true;
|
|
27
|
+
allowTypedSignature = true;
|
|
28
|
+
sendCopyEmail = false;
|
|
29
|
+
values = {};
|
|
30
|
+
metadata = {};
|
|
31
|
+
i18n = {};
|
|
32
|
+
fields = [];
|
|
33
|
+
readonlyFields = [];
|
|
34
|
+
onComplete = () => { };
|
|
35
|
+
onInit = () => { };
|
|
36
|
+
onLoad = () => { };
|
|
37
|
+
customCss = "";
|
|
38
|
+
constructor(el) {
|
|
39
|
+
this.el = el;
|
|
40
|
+
}
|
|
41
|
+
get attributes() {
|
|
42
|
+
return {
|
|
43
|
+
src: {
|
|
44
|
+
name: "data-src",
|
|
45
|
+
value: () => this.src
|
|
46
|
+
},
|
|
47
|
+
email: {
|
|
48
|
+
name: "data-email",
|
|
49
|
+
value: () => this.email
|
|
50
|
+
},
|
|
51
|
+
role: {
|
|
52
|
+
name: "data-role",
|
|
53
|
+
value: () => this.role || this.submitter
|
|
54
|
+
},
|
|
55
|
+
externalId: {
|
|
56
|
+
name: "data-external-id",
|
|
57
|
+
value: () => this.externalId || this.applicationKey
|
|
58
|
+
},
|
|
59
|
+
expand: {
|
|
60
|
+
name: "data-expand",
|
|
61
|
+
value: () => this.expand
|
|
62
|
+
},
|
|
63
|
+
preview: {
|
|
64
|
+
name: "data-preview",
|
|
65
|
+
value: () => this.preview
|
|
66
|
+
},
|
|
67
|
+
goToLast: {
|
|
68
|
+
name: "data-go-to-last",
|
|
69
|
+
value: () => this.goToLast
|
|
70
|
+
},
|
|
71
|
+
skipFields: {
|
|
72
|
+
name: "data-skip-fields",
|
|
73
|
+
value: () => this.skipFields
|
|
74
|
+
},
|
|
75
|
+
sendCopyEmail: {
|
|
76
|
+
name: "data-send-copy-email",
|
|
77
|
+
value: () => this.sendCopyEmail
|
|
78
|
+
},
|
|
79
|
+
withTitle: {
|
|
80
|
+
name: "data-with-title",
|
|
81
|
+
value: () => this.withTitle
|
|
82
|
+
},
|
|
83
|
+
logo: {
|
|
84
|
+
name: "data-logo",
|
|
85
|
+
value: () => this.logo
|
|
86
|
+
},
|
|
87
|
+
language: {
|
|
88
|
+
name: "data-language",
|
|
89
|
+
value: () => this.language
|
|
90
|
+
},
|
|
91
|
+
withFieldNames: {
|
|
92
|
+
name: "data-with-field-names",
|
|
93
|
+
value: () => this.withFieldNames
|
|
94
|
+
},
|
|
95
|
+
withDownloadButton: {
|
|
96
|
+
name: "data-with-download-button",
|
|
97
|
+
value: () => this.withDownloadButton
|
|
98
|
+
},
|
|
99
|
+
allowToResubmit: {
|
|
100
|
+
name: "data-allow-to-resubmit",
|
|
101
|
+
value: () => this.allowToResubmit
|
|
102
|
+
},
|
|
103
|
+
allowTypedSignature: {
|
|
104
|
+
name: "data-allow-typed-signature",
|
|
105
|
+
value: () => this.allowTypedSignature
|
|
106
|
+
},
|
|
107
|
+
completedRedirectUrl: {
|
|
108
|
+
name: "data-completed-redirect-url",
|
|
109
|
+
value: () => this.completedRedirectUrl
|
|
110
|
+
},
|
|
111
|
+
withSendCopyButton: {
|
|
112
|
+
name: "data-with-send-copy-button",
|
|
113
|
+
value: () => this.withSendCopyButton
|
|
114
|
+
},
|
|
115
|
+
values: {
|
|
116
|
+
name: "data-values",
|
|
117
|
+
value: () => JSON.stringify(this.values)
|
|
118
|
+
},
|
|
119
|
+
metadata: {
|
|
120
|
+
name: "data-metadata",
|
|
121
|
+
value: () => JSON.stringify(this.metadata)
|
|
122
|
+
},
|
|
123
|
+
fields: {
|
|
124
|
+
name: "data-fields",
|
|
125
|
+
value: () => JSON.stringify(this.fields)
|
|
126
|
+
},
|
|
127
|
+
i18n: {
|
|
128
|
+
name: "data-i18n",
|
|
129
|
+
value: () => JSON.stringify(this.i18n)
|
|
130
|
+
},
|
|
131
|
+
readonlyFields: {
|
|
132
|
+
name: "data-readonly-fields",
|
|
133
|
+
value: () => this.readonlyFields.join(',')
|
|
134
|
+
},
|
|
135
|
+
completedButton: [
|
|
136
|
+
{
|
|
137
|
+
name: "data-completed-button-title",
|
|
138
|
+
value: () => this.completedButton.title
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
name: "data-completed-button-url",
|
|
142
|
+
value: () => this.completedButton.url
|
|
143
|
+
}
|
|
144
|
+
],
|
|
145
|
+
backgroundColor: {
|
|
146
|
+
name: "data-background-color",
|
|
147
|
+
value: () => this.backgroundColor
|
|
148
|
+
},
|
|
149
|
+
customCss: {
|
|
150
|
+
name: "data-custom-css",
|
|
151
|
+
value: () => this.customCss
|
|
152
|
+
}
|
|
153
|
+
};
|
|
154
|
+
}
|
|
155
|
+
ngAfterViewInit() {
|
|
156
|
+
const form = this.el.nativeElement;
|
|
157
|
+
Object.entries(this.attributes).forEach(([_, attribute]) => {
|
|
158
|
+
if (Array.isArray(attribute)) {
|
|
159
|
+
attribute.forEach((attr) => {
|
|
160
|
+
form.setAttribute(attr.name, attr.value());
|
|
161
|
+
});
|
|
162
|
+
}
|
|
163
|
+
else {
|
|
164
|
+
form.setAttribute(attribute.name, attribute.value());
|
|
165
|
+
}
|
|
166
|
+
});
|
|
167
|
+
this.loadScript();
|
|
168
|
+
}
|
|
169
|
+
ngOnChanges(changes) {
|
|
170
|
+
const form = this.el.nativeElement;
|
|
171
|
+
const attributes = this.attributes;
|
|
172
|
+
Object.entries(changes).forEach(([key, change]) => {
|
|
173
|
+
const attribute = attributes[key];
|
|
174
|
+
if (Array.isArray(attribute)) {
|
|
175
|
+
attribute.forEach((attr) => {
|
|
176
|
+
form.setAttribute(attr.name, attr.value());
|
|
177
|
+
});
|
|
178
|
+
}
|
|
179
|
+
else if (attribute) {
|
|
180
|
+
form.setAttribute(attribute.name, change.currentValue);
|
|
181
|
+
}
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
onCompleteEvent(event) {
|
|
185
|
+
if (this.onComplete) {
|
|
186
|
+
this.onComplete(event.detail);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
onInitEvent(event) {
|
|
190
|
+
if (this.onInit) {
|
|
191
|
+
this.onInit(event.detail);
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
onLoadEvent(event) {
|
|
195
|
+
if (this.onLoad) {
|
|
196
|
+
this.onLoad(event.detail);
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
loadScript() {
|
|
200
|
+
const scriptId = "docuseal-form-script";
|
|
201
|
+
const scriptSrc = `https://${this.host}/js/form.js`;
|
|
202
|
+
const script = document.createElement("script");
|
|
203
|
+
script.id = scriptId;
|
|
204
|
+
script.async = true;
|
|
205
|
+
script.src = scriptSrc;
|
|
206
|
+
document.head.appendChild(script);
|
|
207
|
+
}
|
|
208
|
+
static ɵfac = function DocusealFormComponent_Factory(t) { return new (t || DocusealFormComponent)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
|
|
209
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DocusealFormComponent, selectors: [["docuseal-form"]], hostBindings: function DocusealFormComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
210
|
+
i0.ɵɵlistener("completed", function DocusealFormComponent_completed_HostBindingHandler($event) { return ctx.onCompleteEvent($event); })("init", function DocusealFormComponent_init_HostBindingHandler($event) { return ctx.onInitEvent($event); })("load", function DocusealFormComponent_load_HostBindingHandler($event) { return ctx.onLoadEvent($event); });
|
|
211
|
+
} }, inputs: { src: "src", host: "host", role: "role", submitter: "submitter", expand: "expand", preview: "preview", email: "email", applicationKey: "applicationKey", externalId: "externalId", backgroundColor: "backgroundColor", logo: "logo", language: "language", completedRedirectUrl: "completedRedirectUrl", completedButton: "completedButton", goToLast: "goToLast", skipFields: "skipFields", withTitle: "withTitle", withFieldNames: "withFieldNames", withDownloadButton: "withDownloadButton", withSendCopyButton: "withSendCopyButton", allowToResubmit: "allowToResubmit", allowTypedSignature: "allowTypedSignature", sendCopyEmail: "sendCopyEmail", values: "values", metadata: "metadata", i18n: "i18n", fields: "fields", readonlyFields: "readonlyFields", onComplete: "onComplete", onInit: "onInit", onLoad: "onLoad", customCss: "customCss" }, standalone: true, features: [i0.ɵɵNgOnChangesFeature, i0.ɵɵStandaloneFeature], decls: 0, vars: 0, template: function DocusealFormComponent_Template(rf, ctx) { }, encapsulation: 2 });
|
|
212
|
+
}
|
|
213
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DocusealFormComponent, [{
|
|
214
|
+
type: Component,
|
|
215
|
+
args: [{ selector: "docuseal-form", standalone: true, template: "" }]
|
|
216
|
+
}], () => [{ type: i0.ElementRef }], { src: [{
|
|
217
|
+
type: Input
|
|
218
|
+
}], host: [{
|
|
219
|
+
type: Input
|
|
220
|
+
}], role: [{
|
|
221
|
+
type: Input
|
|
222
|
+
}], submitter: [{
|
|
223
|
+
type: Input
|
|
224
|
+
}], expand: [{
|
|
225
|
+
type: Input
|
|
226
|
+
}], preview: [{
|
|
227
|
+
type: Input
|
|
228
|
+
}], email: [{
|
|
229
|
+
type: Input
|
|
230
|
+
}], applicationKey: [{
|
|
231
|
+
type: Input
|
|
232
|
+
}], externalId: [{
|
|
233
|
+
type: Input
|
|
234
|
+
}], backgroundColor: [{
|
|
235
|
+
type: Input
|
|
236
|
+
}], logo: [{
|
|
237
|
+
type: Input
|
|
238
|
+
}], language: [{
|
|
239
|
+
type: Input
|
|
240
|
+
}], completedRedirectUrl: [{
|
|
241
|
+
type: Input
|
|
242
|
+
}], completedButton: [{
|
|
243
|
+
type: Input
|
|
244
|
+
}], goToLast: [{
|
|
245
|
+
type: Input
|
|
246
|
+
}], skipFields: [{
|
|
247
|
+
type: Input
|
|
248
|
+
}], withTitle: [{
|
|
249
|
+
type: Input
|
|
250
|
+
}], withFieldNames: [{
|
|
251
|
+
type: Input
|
|
252
|
+
}], withDownloadButton: [{
|
|
253
|
+
type: Input
|
|
254
|
+
}], withSendCopyButton: [{
|
|
255
|
+
type: Input
|
|
256
|
+
}], allowToResubmit: [{
|
|
257
|
+
type: Input
|
|
258
|
+
}], allowTypedSignature: [{
|
|
259
|
+
type: Input
|
|
260
|
+
}], sendCopyEmail: [{
|
|
261
|
+
type: Input
|
|
262
|
+
}], values: [{
|
|
263
|
+
type: Input
|
|
264
|
+
}], metadata: [{
|
|
265
|
+
type: Input
|
|
266
|
+
}], i18n: [{
|
|
267
|
+
type: Input
|
|
268
|
+
}], fields: [{
|
|
269
|
+
type: Input
|
|
270
|
+
}], readonlyFields: [{
|
|
271
|
+
type: Input
|
|
272
|
+
}], onComplete: [{
|
|
273
|
+
type: Input
|
|
274
|
+
}], onInit: [{
|
|
275
|
+
type: Input
|
|
276
|
+
}], onLoad: [{
|
|
277
|
+
type: Input
|
|
278
|
+
}], customCss: [{
|
|
279
|
+
type: Input
|
|
280
|
+
}], onCompleteEvent: [{
|
|
281
|
+
type: HostListener,
|
|
282
|
+
args: ['completed', ['$event']]
|
|
283
|
+
}], onInitEvent: [{
|
|
284
|
+
type: HostListener,
|
|
285
|
+
args: ['init', ['$event']]
|
|
286
|
+
}], onLoadEvent: [{
|
|
287
|
+
type: HostListener,
|
|
288
|
+
args: ['load', ['$event']]
|
|
289
|
+
}] }); })();
|
|
290
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(DocusealFormComponent, { className: "DocusealFormComponent" }); })();
|
|
291
|
+
|
|
292
|
+
class DocusealBuilderComponent {
|
|
293
|
+
el;
|
|
294
|
+
token = "";
|
|
295
|
+
host = "cdn.docuseal.co";
|
|
296
|
+
language = "en";
|
|
297
|
+
preview = false;
|
|
298
|
+
autosave = true;
|
|
299
|
+
withRecipientsButton = true;
|
|
300
|
+
withDocumentsList = true;
|
|
301
|
+
withFieldsList = true;
|
|
302
|
+
withSendButton = true;
|
|
303
|
+
withTitle = true;
|
|
304
|
+
onlyDefinedFields = false;
|
|
305
|
+
withSignYourselfButton = true;
|
|
306
|
+
withUploadButton = true;
|
|
307
|
+
roles = [];
|
|
308
|
+
fields = [];
|
|
309
|
+
i18n = {};
|
|
310
|
+
fieldTypes = [];
|
|
311
|
+
drawFieldType = "text";
|
|
312
|
+
customButton = { title: "", url: "" };
|
|
313
|
+
backgroundColor = "";
|
|
314
|
+
onLoad = () => { };
|
|
315
|
+
onUpload = () => { };
|
|
316
|
+
onSend = () => { };
|
|
317
|
+
onSave = () => { };
|
|
318
|
+
sendButtonText = "";
|
|
319
|
+
saveButtonText = "";
|
|
320
|
+
customCss = "";
|
|
321
|
+
constructor(el) {
|
|
322
|
+
this.el = el;
|
|
323
|
+
}
|
|
324
|
+
get attributes() {
|
|
325
|
+
return {
|
|
326
|
+
src: {
|
|
327
|
+
name: "data-token",
|
|
328
|
+
value: () => this.token
|
|
329
|
+
},
|
|
330
|
+
preview: {
|
|
331
|
+
name: "data-preview",
|
|
332
|
+
value: () => this.preview
|
|
333
|
+
},
|
|
334
|
+
language: {
|
|
335
|
+
name: "data-language",
|
|
336
|
+
value: () => this.language
|
|
337
|
+
},
|
|
338
|
+
autosave: {
|
|
339
|
+
name: "data-autosave",
|
|
340
|
+
value: () => this.autosave
|
|
341
|
+
},
|
|
342
|
+
sendButtonText: {
|
|
343
|
+
name: "data-send-button-text",
|
|
344
|
+
value: () => this.sendButtonText
|
|
345
|
+
},
|
|
346
|
+
saveButtonText: {
|
|
347
|
+
name: "data-save-button-text",
|
|
348
|
+
value: () => this.saveButtonText
|
|
349
|
+
},
|
|
350
|
+
roles: {
|
|
351
|
+
name: "data-roles",
|
|
352
|
+
value: () => this.roles.join(',')
|
|
353
|
+
},
|
|
354
|
+
fieldTypes: {
|
|
355
|
+
name: "data-field-types",
|
|
356
|
+
value: () => this.fieldTypes.join(',')
|
|
357
|
+
},
|
|
358
|
+
drawFieldType: {
|
|
359
|
+
name: "data-draw-field-type",
|
|
360
|
+
value: () => this.drawFieldType
|
|
361
|
+
},
|
|
362
|
+
fields: {
|
|
363
|
+
name: "data-fields",
|
|
364
|
+
value: () => JSON.stringify(this.fields)
|
|
365
|
+
},
|
|
366
|
+
i18n: {
|
|
367
|
+
name: "data-i18n",
|
|
368
|
+
value: () => JSON.stringify(this.i18n)
|
|
369
|
+
},
|
|
370
|
+
customButton: [
|
|
371
|
+
{
|
|
372
|
+
name: "data-custom-button-title",
|
|
373
|
+
value: () => this.customButton.title
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
name: "data-custom-button-url",
|
|
377
|
+
value: () => this.customButton.url
|
|
378
|
+
}
|
|
379
|
+
],
|
|
380
|
+
withRecipientsButton: {
|
|
381
|
+
name: "data-with-recipients-button",
|
|
382
|
+
value: () => this.withRecipientsButton
|
|
383
|
+
},
|
|
384
|
+
withSendButton: {
|
|
385
|
+
name: "data-with-send-button",
|
|
386
|
+
value: () => this.withSendButton
|
|
387
|
+
},
|
|
388
|
+
withDocumentsList: {
|
|
389
|
+
name: "data-with-documents-list",
|
|
390
|
+
value: () => this.withDocumentsList
|
|
391
|
+
},
|
|
392
|
+
withFieldsList: {
|
|
393
|
+
name: "data-with-fields-list",
|
|
394
|
+
value: () => this.withFieldsList
|
|
395
|
+
},
|
|
396
|
+
withTitle: {
|
|
397
|
+
name: "data-with-title",
|
|
398
|
+
value: () => this.withTitle
|
|
399
|
+
},
|
|
400
|
+
onlyDefinedFields: {
|
|
401
|
+
name: "data-only-defined-fields",
|
|
402
|
+
value: () => this.onlyDefinedFields
|
|
403
|
+
},
|
|
404
|
+
withUploadButton: {
|
|
405
|
+
name: "data-with-upload-button",
|
|
406
|
+
value: () => this.withUploadButton
|
|
407
|
+
},
|
|
408
|
+
withSignYourselfButton: {
|
|
409
|
+
name: "data-with-sign-yourself-button",
|
|
410
|
+
value: () => this.withSignYourselfButton
|
|
411
|
+
},
|
|
412
|
+
backgroundColor: {
|
|
413
|
+
name: "data-background-color",
|
|
414
|
+
value: () => this.backgroundColor
|
|
415
|
+
},
|
|
416
|
+
customCss: {
|
|
417
|
+
name: "data-custom-css",
|
|
418
|
+
value: () => this.customCss
|
|
419
|
+
}
|
|
420
|
+
};
|
|
421
|
+
}
|
|
422
|
+
ngAfterViewInit() {
|
|
423
|
+
const builder = this.el.nativeElement;
|
|
424
|
+
Object.entries(this.attributes).forEach(([_, attribute]) => {
|
|
425
|
+
if (Array.isArray(attribute)) {
|
|
426
|
+
attribute.forEach((attr) => {
|
|
427
|
+
builder.setAttribute(attr.name, attr.value());
|
|
428
|
+
});
|
|
429
|
+
}
|
|
430
|
+
else if (attribute) {
|
|
431
|
+
builder.setAttribute(attribute.name, attribute.value());
|
|
432
|
+
}
|
|
433
|
+
});
|
|
434
|
+
this.loadScript();
|
|
435
|
+
}
|
|
436
|
+
ngOnChanges(changes) {
|
|
437
|
+
const builder = this.el.nativeElement;
|
|
438
|
+
const attributes = this.attributes;
|
|
439
|
+
Object.entries(changes).forEach(([key, change]) => {
|
|
440
|
+
const attribute = attributes[key];
|
|
441
|
+
if (Array.isArray(attribute)) {
|
|
442
|
+
attribute.forEach((attr) => {
|
|
443
|
+
builder.setAttribute(attr.name, attr.value());
|
|
444
|
+
});
|
|
445
|
+
}
|
|
446
|
+
else if (attribute) {
|
|
447
|
+
builder.setAttribute(attribute.name, change.currentValue);
|
|
448
|
+
}
|
|
449
|
+
});
|
|
450
|
+
}
|
|
451
|
+
onSendEvent(event) {
|
|
452
|
+
if (this.onSend) {
|
|
453
|
+
this.onSend(event.detail);
|
|
454
|
+
}
|
|
455
|
+
}
|
|
456
|
+
onLoadEvent(event) {
|
|
457
|
+
if (this.onLoad) {
|
|
458
|
+
this.onLoad(event.detail);
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
onUploadEvent(event) {
|
|
462
|
+
if (this.onUpload) {
|
|
463
|
+
this.onUpload(event.detail);
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
onSaveEvent(event) {
|
|
467
|
+
if (this.onSave) {
|
|
468
|
+
this.onSave(event.detail);
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
loadScript() {
|
|
472
|
+
const scriptId = 'docuseal-builder-script';
|
|
473
|
+
const scriptSrc = `https://${this.host}/js/builder.js`;
|
|
474
|
+
const script = document.createElement("script");
|
|
475
|
+
script.id = scriptId;
|
|
476
|
+
script.async = true;
|
|
477
|
+
script.src = scriptSrc;
|
|
478
|
+
document.head.appendChild(script);
|
|
479
|
+
}
|
|
480
|
+
static ɵfac = function DocusealBuilderComponent_Factory(t) { return new (t || DocusealBuilderComponent)(i0.ɵɵdirectiveInject(i0.ElementRef)); };
|
|
481
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DocusealBuilderComponent, selectors: [["docuseal-builder"]], hostBindings: function DocusealBuilderComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
482
|
+
i0.ɵɵlistener("send", function DocusealBuilderComponent_send_HostBindingHandler($event) { return ctx.onSendEvent($event); })("load", function DocusealBuilderComponent_load_HostBindingHandler($event) { return ctx.onLoadEvent($event); })("upload", function DocusealBuilderComponent_upload_HostBindingHandler($event) { return ctx.onUploadEvent($event); })("save", function DocusealBuilderComponent_save_HostBindingHandler($event) { return ctx.onSaveEvent($event); });
|
|
483
|
+
} }, inputs: { token: "token", host: "host", language: "language", preview: "preview", autosave: "autosave", withRecipientsButton: "withRecipientsButton", withDocumentsList: "withDocumentsList", withFieldsList: "withFieldsList", withSendButton: "withSendButton", withTitle: "withTitle", onlyDefinedFields: "onlyDefinedFields", withSignYourselfButton: "withSignYourselfButton", withUploadButton: "withUploadButton", roles: "roles", fields: "fields", i18n: "i18n", fieldTypes: "fieldTypes", drawFieldType: "drawFieldType", customButton: "customButton", backgroundColor: "backgroundColor", onLoad: "onLoad", onUpload: "onUpload", onSend: "onSend", onSave: "onSave", sendButtonText: "sendButtonText", saveButtonText: "saveButtonText", customCss: "customCss" }, standalone: true, features: [i0.ɵɵNgOnChangesFeature, i0.ɵɵStandaloneFeature], decls: 0, vars: 0, template: function DocusealBuilderComponent_Template(rf, ctx) { }, encapsulation: 2 });
|
|
484
|
+
}
|
|
485
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DocusealBuilderComponent, [{
|
|
486
|
+
type: Component,
|
|
487
|
+
args: [{ selector: "docuseal-builder", standalone: true, template: "" }]
|
|
488
|
+
}], () => [{ type: i0.ElementRef }], { token: [{
|
|
489
|
+
type: Input
|
|
490
|
+
}], host: [{
|
|
491
|
+
type: Input
|
|
492
|
+
}], language: [{
|
|
493
|
+
type: Input
|
|
494
|
+
}], preview: [{
|
|
495
|
+
type: Input
|
|
496
|
+
}], autosave: [{
|
|
497
|
+
type: Input
|
|
498
|
+
}], withRecipientsButton: [{
|
|
499
|
+
type: Input
|
|
500
|
+
}], withDocumentsList: [{
|
|
501
|
+
type: Input
|
|
502
|
+
}], withFieldsList: [{
|
|
503
|
+
type: Input
|
|
504
|
+
}], withSendButton: [{
|
|
505
|
+
type: Input
|
|
506
|
+
}], withTitle: [{
|
|
507
|
+
type: Input
|
|
508
|
+
}], onlyDefinedFields: [{
|
|
509
|
+
type: Input
|
|
510
|
+
}], withSignYourselfButton: [{
|
|
511
|
+
type: Input
|
|
512
|
+
}], withUploadButton: [{
|
|
513
|
+
type: Input
|
|
514
|
+
}], roles: [{
|
|
515
|
+
type: Input
|
|
516
|
+
}], fields: [{
|
|
517
|
+
type: Input
|
|
518
|
+
}], i18n: [{
|
|
519
|
+
type: Input
|
|
520
|
+
}], fieldTypes: [{
|
|
521
|
+
type: Input
|
|
522
|
+
}], drawFieldType: [{
|
|
523
|
+
type: Input
|
|
524
|
+
}], customButton: [{
|
|
525
|
+
type: Input
|
|
526
|
+
}], backgroundColor: [{
|
|
527
|
+
type: Input
|
|
528
|
+
}], onLoad: [{
|
|
529
|
+
type: Input
|
|
530
|
+
}], onUpload: [{
|
|
531
|
+
type: Input
|
|
532
|
+
}], onSend: [{
|
|
533
|
+
type: Input
|
|
534
|
+
}], onSave: [{
|
|
535
|
+
type: Input
|
|
536
|
+
}], sendButtonText: [{
|
|
537
|
+
type: Input
|
|
538
|
+
}], saveButtonText: [{
|
|
539
|
+
type: Input
|
|
540
|
+
}], customCss: [{
|
|
541
|
+
type: Input
|
|
542
|
+
}], onSendEvent: [{
|
|
543
|
+
type: HostListener,
|
|
544
|
+
args: ['send', ['$event']]
|
|
545
|
+
}], onLoadEvent: [{
|
|
546
|
+
type: HostListener,
|
|
547
|
+
args: ['load', ['$event']]
|
|
548
|
+
}], onUploadEvent: [{
|
|
549
|
+
type: HostListener,
|
|
550
|
+
args: ['upload', ['$event']]
|
|
551
|
+
}], onSaveEvent: [{
|
|
552
|
+
type: HostListener,
|
|
553
|
+
args: ['save', ['$event']]
|
|
554
|
+
}] }); })();
|
|
555
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(DocusealBuilderComponent, { className: "DocusealBuilderComponent" }); })();
|
|
556
|
+
|
|
557
|
+
/**
|
|
558
|
+
* Generated bundle index. Do not edit.
|
|
559
|
+
*/
|
|
560
|
+
|
|
561
|
+
export { DocusealBuilderComponent, DocusealFormComponent };
|
|
562
|
+
//# sourceMappingURL=docuseal-angular.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"docuseal-angular.mjs","sources":["../../src/form.component.ts","../../src/builder.component.ts","../../src/docuseal-angular.ts"],"sourcesContent":["import { Component, Input, ElementRef, HostListener, SimpleChanges } from \"@angular/core\"\n\ninterface DocusealField {\n name: string,\n title?: string,\n type?: string,\n position?: number,\n required?: boolean,\n}\n\ninterface AfterViewInit {\n ngAfterViewInit(): void\n}\ninterface OnChanges {\n ngOnChanges(changes: SimpleChanges): void\n}\n@Component({\n selector: \"docuseal-form\",\n standalone: true,\n template: \"\",\n styles: []\n})\n\nexport class DocusealFormComponent implements AfterViewInit, OnChanges {\n @Input() src: string = \"\"\n @Input() host: string = \"cdn.docuseal.co\"\n @Input() role: string = \"\"\n @Input() submitter: string = \"\" // Backward compatibility\n @Input() expand: boolean = true\n @Input() preview: boolean = false\n @Input() email: string = \"\"\n @Input() applicationKey: string = \"\"\n @Input() externalId: string = \"\"\n @Input() backgroundColor: string = \"\"\n @Input() logo: string = \"\"\n @Input() language: string = \"\"\n @Input() completedRedirectUrl: string = \"\"\n @Input() completedButton: { title: string, url: string } = { title: \"\", url: \"\" }\n @Input() goToLast: boolean = true\n @Input() skipFields: boolean = false\n @Input() withTitle: boolean = true\n @Input() withFieldNames: boolean = true\n @Input() withDownloadButton: boolean = true\n @Input() withSendCopyButton: boolean = true\n @Input() allowToResubmit: boolean = true\n @Input() allowTypedSignature: boolean = true\n @Input() sendCopyEmail: boolean = false\n @Input() values: object = {}\n @Input() metadata: object = {}\n @Input() i18n: object = {}\n @Input() fields: DocusealField[] = []\n @Input() readonlyFields: string[] = []\n @Input() onComplete: (detail: any) => void = () => {}\n @Input() onInit: (detail: any) => void = () => {}\n @Input() onLoad: (detail: any) => void = () => {}\n @Input() customCss: string = \"\"\n\n constructor(private el: ElementRef) {}\n\n get attributes (): { [key: string]: any } {\n return {\n src: {\n name: \"data-src\",\n value: () => this.src\n },\n email: {\n name: \"data-email\",\n value: () => this.email\n },\n role: {\n name: \"data-role\",\n value: () => this.role || this.submitter\n },\n externalId: {\n name: \"data-external-id\",\n value: () => this.externalId || this.applicationKey\n },\n expand: {\n name: \"data-expand\",\n value: () => this.expand\n },\n preview: {\n name: \"data-preview\",\n value: () => this.preview\n },\n goToLast: {\n name: \"data-go-to-last\",\n value: () => this.goToLast\n },\n skipFields: {\n name: \"data-skip-fields\",\n value: () => this.skipFields\n },\n sendCopyEmail: {\n name: \"data-send-copy-email\",\n value: () => this.sendCopyEmail\n },\n withTitle: {\n name: \"data-with-title\",\n value: () => this.withTitle\n },\n logo: {\n name: \"data-logo\",\n value: () => this.logo\n },\n language: {\n name: \"data-language\",\n value: () => this.language\n },\n withFieldNames: {\n name: \"data-with-field-names\",\n value: () => this.withFieldNames\n },\n withDownloadButton: {\n name: \"data-with-download-button\",\n value: () => this.withDownloadButton\n },\n allowToResubmit: {\n name: \"data-allow-to-resubmit\",\n value: () => this.allowToResubmit\n },\n allowTypedSignature: {\n name: \"data-allow-typed-signature\",\n value: () => this.allowTypedSignature\n },\n completedRedirectUrl: {\n name: \"data-completed-redirect-url\",\n value: () => this.completedRedirectUrl\n },\n withSendCopyButton: {\n name: \"data-with-send-copy-button\",\n value: () => this.withSendCopyButton\n },\n values: {\n name: \"data-values\",\n value: () => JSON.stringify(this.values)\n },\n metadata: {\n name: \"data-metadata\",\n value: () => JSON.stringify(this.metadata)\n },\n fields: {\n name: \"data-fields\",\n value: () => JSON.stringify(this.fields)\n },\n i18n: {\n name: \"data-i18n\",\n value: () => JSON.stringify(this.i18n)\n },\n readonlyFields: {\n name: \"data-readonly-fields\",\n value: () => this.readonlyFields.join(',')\n },\n completedButton: [\n {\n name: \"data-completed-button-title\",\n value: () => this.completedButton.title\n },\n {\n name: \"data-completed-button-url\",\n value: () => this.completedButton.url\n }\n ],\n backgroundColor: {\n name: \"data-background-color\",\n value: () => this.backgroundColor\n },\n customCss: {\n name: \"data-custom-css\",\n value: () => this.customCss\n }\n }\n }\n\n ngAfterViewInit(): void {\n const form = this.el.nativeElement;\n\n Object.entries(this.attributes).forEach(([_, attribute]) => {\n if (Array.isArray(attribute)) {\n attribute.forEach((attr) => {\n form.setAttribute(attr.name, attr.value())\n })\n } else {\n form.setAttribute(attribute.name, attribute.value())\n }\n })\n\n this.loadScript()\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n const form = this.el.nativeElement;\n const attributes = this.attributes\n\n Object.entries(changes).forEach(([key, change]) => {\n const attribute = attributes[key]\n\n if (Array.isArray(attribute)) {\n attribute.forEach((attr) => {\n form.setAttribute(attr.name, attr.value())\n })\n } else if (attribute) {\n form.setAttribute(attribute.name, change.currentValue)\n }\n })\n }\n\n @HostListener('completed', ['$event'])\n onCompleteEvent(event: CustomEvent): void {\n if (this.onComplete) {\n this.onComplete(event.detail)\n }\n }\n\n @HostListener('init', ['$event'])\n onInitEvent(event: CustomEvent): void {\n if (this.onInit) {\n this.onInit(event.detail)\n }\n }\n\n @HostListener('load', ['$event'])\n onLoadEvent(event: CustomEvent): void {\n if (this.onLoad) {\n this.onLoad(event.detail)\n }\n }\n\n loadScript(): void {\n const scriptId = \"docuseal-form-script\"\n const scriptSrc = `https://${this.host}/js/form.js`\n const script = document.createElement(\"script\")\n\n script.id = scriptId\n script.async = true\n script.src = scriptSrc\n\n document.head.appendChild(script)\n }\n}\n","import { Component, Input, ElementRef, HostListener, SimpleChanges } from \"@angular/core\"\n\ninterface DocusealField {\n name: string,\n type?: string,\n role?: string,\n default_value?: string,\n}\n\ninterface AfterViewInit {\n ngAfterViewInit(): void\n}\ninterface OnChanges {\n ngOnChanges(changes: SimpleChanges): void\n}\n@Component({\n selector: \"docuseal-builder\",\n standalone: true,\n template: \"\",\n styles: []\n})\n\nexport class DocusealBuilderComponent implements AfterViewInit, OnChanges {\n @Input() token: string = \"\"\n @Input() host: string = \"cdn.docuseal.co\"\n @Input() language: string = \"en\"\n @Input() preview: boolean = false\n @Input() autosave: boolean = true\n @Input() withRecipientsButton: boolean = true\n @Input() withDocumentsList: boolean = true\n @Input() withFieldsList: boolean = true\n @Input() withSendButton: boolean = true\n @Input() withTitle: boolean = true\n @Input() onlyDefinedFields: boolean = false\n @Input() withSignYourselfButton: boolean = true\n @Input() withUploadButton: boolean = true\n @Input() roles: string[] = []\n @Input() fields: DocusealField[] = []\n @Input() i18n: object = {}\n @Input() fieldTypes: string[] = []\n @Input() drawFieldType: string = \"text\"\n @Input() customButton: { title: string, url: string } = { title: \"\", url: \"\" }\n @Input() backgroundColor: string = \"\"\n @Input() onLoad: (detail: any) => void = () => {}\n @Input() onUpload: (detail: any) => void = () => {}\n @Input() onSend: (detail: any) => void = () => {}\n @Input() onSave: (detail: any) => void = () => {}\n @Input() sendButtonText: string = \"\"\n @Input() saveButtonText: string = \"\"\n @Input() customCss: string = \"\"\n\n constructor(private el: ElementRef) {}\n\n get attributes (): { [key: string]: any } {\n return {\n src: {\n name: \"data-token\",\n value: () => this.token\n },\n preview: {\n name: \"data-preview\",\n value: () => this.preview\n },\n language: {\n name: \"data-language\",\n value: () => this.language\n },\n autosave: {\n name: \"data-autosave\",\n value: () => this.autosave\n },\n sendButtonText: {\n name: \"data-send-button-text\",\n value: () => this.sendButtonText\n },\n saveButtonText: {\n name: \"data-save-button-text\",\n value: () => this.saveButtonText\n },\n roles: {\n name: \"data-roles\",\n value: () => this.roles.join(',')\n },\n fieldTypes: {\n name: \"data-field-types\",\n value: () => this.fieldTypes.join(',')\n },\n drawFieldType: {\n name: \"data-draw-field-type\",\n value: () => this.drawFieldType\n },\n fields: {\n name: \"data-fields\",\n value: () => JSON.stringify(this.fields)\n },\n i18n: {\n name: \"data-i18n\",\n value: () => JSON.stringify(this.i18n)\n },\n customButton: [\n {\n name: \"data-custom-button-title\",\n value: () => this.customButton.title\n },\n {\n name: \"data-custom-button-url\",\n value: () => this.customButton.url\n }\n ],\n withRecipientsButton: {\n name: \"data-with-recipients-button\",\n value: () => this.withRecipientsButton\n },\n withSendButton: {\n name: \"data-with-send-button\",\n value: () => this.withSendButton\n },\n withDocumentsList: {\n name: \"data-with-documents-list\",\n value: () => this.withDocumentsList\n },\n withFieldsList: {\n name: \"data-with-fields-list\",\n value: () => this.withFieldsList\n },\n withTitle: {\n name: \"data-with-title\",\n value: () => this.withTitle\n },\n onlyDefinedFields: {\n name: \"data-only-defined-fields\",\n value: () => this.onlyDefinedFields\n },\n withUploadButton: {\n name: \"data-with-upload-button\",\n value: () => this.withUploadButton\n },\n withSignYourselfButton: {\n name: \"data-with-sign-yourself-button\",\n value: () => this.withSignYourselfButton\n },\n backgroundColor: {\n name: \"data-background-color\",\n value: () => this.backgroundColor\n },\n customCss: {\n name: \"data-custom-css\",\n value: () => this.customCss\n }\n }\n }\n\n ngAfterViewInit(): void {\n const builder = this.el.nativeElement;\n\n Object.entries(this.attributes).forEach(([_, attribute]) => {\n if (Array.isArray(attribute)) {\n attribute.forEach((attr) => {\n builder.setAttribute(attr.name, attr.value())\n })\n } else if (attribute) {\n builder.setAttribute(attribute.name, attribute.value())\n }\n })\n\n this.loadScript()\n }\n\n ngOnChanges(changes: SimpleChanges): void {\n const builder = this.el.nativeElement;\n const attributes = this.attributes\n\n Object.entries(changes).forEach(([key, change]) => {\n const attribute = attributes[key]\n\n if (Array.isArray(attribute)) {\n attribute.forEach((attr) => {\n builder.setAttribute(attr.name, attr.value())\n })\n } else if (attribute) {\n builder.setAttribute(attribute.name, change.currentValue)\n }\n })\n }\n\n @HostListener('send', ['$event'])\n onSendEvent(event: CustomEvent): void {\n if (this.onSend) {\n this.onSend(event.detail)\n }\n }\n\n @HostListener('load', ['$event'])\n onLoadEvent(event: CustomEvent): void {\n if (this.onLoad) {\n this.onLoad(event.detail)\n }\n }\n\n @HostListener('upload', ['$event'])\n onUploadEvent(event: CustomEvent): void {\n if (this.onUpload) {\n this.onUpload(event.detail)\n }\n }\n\n @HostListener('save', ['$event'])\n onSaveEvent(event: CustomEvent): void {\n if (this.onSave) {\n this.onSave(event.detail)\n }\n }\n\n loadScript(): void {\n const scriptId = 'docuseal-builder-script'\n const scriptSrc = `https://${this.host}/js/builder.js`\n const script = document.createElement(\"script\")\n\n script.id = scriptId\n script.async = true\n script.src = scriptSrc\n\n document.head.appendChild(script)\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|