@unlev/exeq 0.1.0
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/README.md +154 -0
- package/dist/embed.css +1 -0
- package/dist/embed.global.js +419 -0
- package/dist/index.css +567 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.mts +105 -0
- package/dist/index.d.ts +105 -0
- package/dist/index.js +1318 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1266 -0
- package/dist/index.mjs.map +1 -0
- package/dist/styles.css +566 -0
- package/package.json +67 -0
package/dist/index.css
ADDED
|
@@ -0,0 +1,567 @@
|
|
|
1
|
+
/* src/styles/pdf-builder.css */
|
|
2
|
+
.designer-layout,
|
|
3
|
+
.signer-layout {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: column;
|
|
6
|
+
height: 100vh;
|
|
7
|
+
font-family:
|
|
8
|
+
system-ui,
|
|
9
|
+
-apple-system,
|
|
10
|
+
sans-serif;
|
|
11
|
+
color: #222;
|
|
12
|
+
background: #fafafa;
|
|
13
|
+
}
|
|
14
|
+
.designer-toolbar {
|
|
15
|
+
display: flex;
|
|
16
|
+
justify-content: space-between;
|
|
17
|
+
align-items: center;
|
|
18
|
+
padding: 0.5rem 1rem;
|
|
19
|
+
border-bottom: 1px solid #e5e5e5;
|
|
20
|
+
background: #fff;
|
|
21
|
+
gap: 1rem;
|
|
22
|
+
flex-wrap: wrap;
|
|
23
|
+
}
|
|
24
|
+
.toolbar-left,
|
|
25
|
+
.toolbar-right {
|
|
26
|
+
display: flex;
|
|
27
|
+
align-items: center;
|
|
28
|
+
gap: 0.5rem;
|
|
29
|
+
}
|
|
30
|
+
.designer-content,
|
|
31
|
+
.signer-content {
|
|
32
|
+
display: flex;
|
|
33
|
+
flex: 1;
|
|
34
|
+
overflow: hidden;
|
|
35
|
+
}
|
|
36
|
+
.designer-pdf-area,
|
|
37
|
+
.signer-pdf-area {
|
|
38
|
+
flex: 1;
|
|
39
|
+
overflow-y: auto;
|
|
40
|
+
padding: 1rem;
|
|
41
|
+
background: #eee;
|
|
42
|
+
}
|
|
43
|
+
.designer-panel,
|
|
44
|
+
.signer-panel {
|
|
45
|
+
width: 320px;
|
|
46
|
+
overflow-y: auto;
|
|
47
|
+
border-left: 1px solid #e5e5e5;
|
|
48
|
+
background: #fff;
|
|
49
|
+
padding: 1rem;
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: column;
|
|
52
|
+
gap: 1rem;
|
|
53
|
+
}
|
|
54
|
+
.pdf-viewer {
|
|
55
|
+
display: flex;
|
|
56
|
+
flex-direction: column;
|
|
57
|
+
gap: 1rem;
|
|
58
|
+
align-items: center;
|
|
59
|
+
}
|
|
60
|
+
.pdf-page {
|
|
61
|
+
position: relative;
|
|
62
|
+
width: 100%;
|
|
63
|
+
max-width: 800px;
|
|
64
|
+
background: #fff;
|
|
65
|
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
|
|
66
|
+
cursor: crosshair;
|
|
67
|
+
}
|
|
68
|
+
.pdf-page-image {
|
|
69
|
+
width: 100%;
|
|
70
|
+
height: 100%;
|
|
71
|
+
display: block;
|
|
72
|
+
pointer-events: none;
|
|
73
|
+
}
|
|
74
|
+
.field-overlay {
|
|
75
|
+
position: absolute;
|
|
76
|
+
border: 1.5px solid;
|
|
77
|
+
border-radius: 2px;
|
|
78
|
+
display: flex;
|
|
79
|
+
align-items: center;
|
|
80
|
+
justify-content: center;
|
|
81
|
+
overflow: hidden;
|
|
82
|
+
transition: box-shadow 0.1s;
|
|
83
|
+
}
|
|
84
|
+
.field-overlay.selected {
|
|
85
|
+
box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
|
|
86
|
+
z-index: 10;
|
|
87
|
+
}
|
|
88
|
+
.field-overlay.editable {
|
|
89
|
+
cursor: text;
|
|
90
|
+
}
|
|
91
|
+
.field-overlay-label {
|
|
92
|
+
position: absolute;
|
|
93
|
+
top: -18px;
|
|
94
|
+
left: -1px;
|
|
95
|
+
font-size: 10px;
|
|
96
|
+
color: #fff;
|
|
97
|
+
padding: 1px 6px;
|
|
98
|
+
border-radius: 2px 2px 0 0;
|
|
99
|
+
white-space: nowrap;
|
|
100
|
+
pointer-events: none;
|
|
101
|
+
}
|
|
102
|
+
.field-overlay-placeholder {
|
|
103
|
+
color: #999;
|
|
104
|
+
font-size: 11px;
|
|
105
|
+
padding: 2px 4px;
|
|
106
|
+
width: 100%;
|
|
107
|
+
text-overflow: ellipsis;
|
|
108
|
+
overflow: hidden;
|
|
109
|
+
white-space: nowrap;
|
|
110
|
+
}
|
|
111
|
+
.field-overlay-placeholder.readonly {
|
|
112
|
+
color: #666;
|
|
113
|
+
}
|
|
114
|
+
.field-overlay-value {
|
|
115
|
+
font-size: 11px;
|
|
116
|
+
padding: 2px 4px;
|
|
117
|
+
width: 100%;
|
|
118
|
+
}
|
|
119
|
+
.field-inline-input {
|
|
120
|
+
width: 100%;
|
|
121
|
+
height: 100%;
|
|
122
|
+
border: none;
|
|
123
|
+
background: transparent;
|
|
124
|
+
padding: 2px 4px;
|
|
125
|
+
outline: none;
|
|
126
|
+
font-family: inherit;
|
|
127
|
+
}
|
|
128
|
+
.field-signature-preview {
|
|
129
|
+
width: 100%;
|
|
130
|
+
height: 100%;
|
|
131
|
+
object-fit: contain;
|
|
132
|
+
}
|
|
133
|
+
.field-signature-filled {
|
|
134
|
+
width: 100%;
|
|
135
|
+
height: 100%;
|
|
136
|
+
cursor: pointer;
|
|
137
|
+
}
|
|
138
|
+
.field-checkbox-display {
|
|
139
|
+
width: 100%;
|
|
140
|
+
height: 100%;
|
|
141
|
+
display: flex;
|
|
142
|
+
align-items: center;
|
|
143
|
+
justify-content: center;
|
|
144
|
+
font-size: 16px;
|
|
145
|
+
font-weight: bold;
|
|
146
|
+
}
|
|
147
|
+
.field-checkbox-display.editable {
|
|
148
|
+
cursor: pointer;
|
|
149
|
+
}
|
|
150
|
+
.field-resize-handle {
|
|
151
|
+
position: absolute;
|
|
152
|
+
bottom: 0;
|
|
153
|
+
right: 0;
|
|
154
|
+
width: 10px;
|
|
155
|
+
height: 10px;
|
|
156
|
+
background: #fff;
|
|
157
|
+
border: 1px solid #999;
|
|
158
|
+
cursor: nwse-resize;
|
|
159
|
+
}
|
|
160
|
+
.upload-btn {
|
|
161
|
+
display: inline-block;
|
|
162
|
+
padding: 0.4rem 1rem;
|
|
163
|
+
background: #111;
|
|
164
|
+
color: #fff;
|
|
165
|
+
border: none;
|
|
166
|
+
border-radius: 4px;
|
|
167
|
+
cursor: pointer;
|
|
168
|
+
font-size: 0.85rem;
|
|
169
|
+
font-weight: 500;
|
|
170
|
+
}
|
|
171
|
+
.upload-btn:hover {
|
|
172
|
+
background: #333;
|
|
173
|
+
}
|
|
174
|
+
.upload-btn-small {
|
|
175
|
+
font-size: 0.8rem;
|
|
176
|
+
padding: 0.3rem 0.75rem;
|
|
177
|
+
background: #555;
|
|
178
|
+
}
|
|
179
|
+
.upload-btn-large {
|
|
180
|
+
font-size: 1rem;
|
|
181
|
+
padding: 0.6rem 1.5rem;
|
|
182
|
+
}
|
|
183
|
+
.export-btn {
|
|
184
|
+
padding: 0.4rem 1rem;
|
|
185
|
+
background: #111;
|
|
186
|
+
color: #fff;
|
|
187
|
+
border: none;
|
|
188
|
+
border-radius: 4px;
|
|
189
|
+
cursor: pointer;
|
|
190
|
+
font-size: 0.85rem;
|
|
191
|
+
font-weight: 500;
|
|
192
|
+
}
|
|
193
|
+
.export-btn:hover {
|
|
194
|
+
background: #333;
|
|
195
|
+
}
|
|
196
|
+
.field-type-selector {
|
|
197
|
+
display: flex;
|
|
198
|
+
gap: 2px;
|
|
199
|
+
}
|
|
200
|
+
.field-type-btn {
|
|
201
|
+
padding: 0.3rem 0.6rem;
|
|
202
|
+
background: #fff;
|
|
203
|
+
border: 1px solid #ddd;
|
|
204
|
+
border-radius: 4px;
|
|
205
|
+
cursor: pointer;
|
|
206
|
+
font-size: 0.8rem;
|
|
207
|
+
color: #555;
|
|
208
|
+
}
|
|
209
|
+
.field-type-btn.active {
|
|
210
|
+
background: #111;
|
|
211
|
+
color: #fff;
|
|
212
|
+
border-color: #111;
|
|
213
|
+
}
|
|
214
|
+
.field-type-btn:hover:not(.active) {
|
|
215
|
+
background: #f5f5f5;
|
|
216
|
+
}
|
|
217
|
+
.signer-role-selector {
|
|
218
|
+
padding: 0.5rem 1rem;
|
|
219
|
+
border-bottom: 1px solid #e5e5e5;
|
|
220
|
+
background: #fff;
|
|
221
|
+
}
|
|
222
|
+
.signer-role-label {
|
|
223
|
+
font-size: 0.75rem;
|
|
224
|
+
color: #888;
|
|
225
|
+
margin-bottom: 0.35rem;
|
|
226
|
+
}
|
|
227
|
+
.signer-role-list {
|
|
228
|
+
display: flex;
|
|
229
|
+
gap: 0.35rem;
|
|
230
|
+
flex-wrap: wrap;
|
|
231
|
+
align-items: center;
|
|
232
|
+
}
|
|
233
|
+
.signer-role-chip {
|
|
234
|
+
padding: 0.2rem 0.6rem;
|
|
235
|
+
border: 1.5px solid;
|
|
236
|
+
border-radius: 4px;
|
|
237
|
+
cursor: pointer;
|
|
238
|
+
font-size: 0.8rem;
|
|
239
|
+
font-weight: 500;
|
|
240
|
+
background: transparent;
|
|
241
|
+
transition: all 0.1s;
|
|
242
|
+
}
|
|
243
|
+
.signer-role-remove {
|
|
244
|
+
margin-left: 0.3rem;
|
|
245
|
+
cursor: pointer;
|
|
246
|
+
font-size: 1rem;
|
|
247
|
+
}
|
|
248
|
+
.signer-role-add-btn {
|
|
249
|
+
padding: 0.2rem 0.5rem;
|
|
250
|
+
border: 1px dashed #ccc;
|
|
251
|
+
border-radius: 4px;
|
|
252
|
+
background: none;
|
|
253
|
+
cursor: pointer;
|
|
254
|
+
font-size: 0.8rem;
|
|
255
|
+
color: #888;
|
|
256
|
+
}
|
|
257
|
+
.signer-role-add-input {
|
|
258
|
+
display: flex;
|
|
259
|
+
gap: 0.25rem;
|
|
260
|
+
align-items: center;
|
|
261
|
+
}
|
|
262
|
+
.signer-role-add-input input {
|
|
263
|
+
padding: 0.2rem 0.4rem;
|
|
264
|
+
border: 1px solid #ccc;
|
|
265
|
+
border-radius: 4px;
|
|
266
|
+
font-size: 0.8rem;
|
|
267
|
+
width: 120px;
|
|
268
|
+
}
|
|
269
|
+
.signer-role-add-input button {
|
|
270
|
+
padding: 0.2rem 0.5rem;
|
|
271
|
+
border: 1px solid #ccc;
|
|
272
|
+
border-radius: 4px;
|
|
273
|
+
background: #fff;
|
|
274
|
+
cursor: pointer;
|
|
275
|
+
font-size: 0.8rem;
|
|
276
|
+
}
|
|
277
|
+
.field-property-panel {
|
|
278
|
+
display: flex;
|
|
279
|
+
flex-direction: column;
|
|
280
|
+
gap: 0.75rem;
|
|
281
|
+
}
|
|
282
|
+
.panel-header {
|
|
283
|
+
display: flex;
|
|
284
|
+
justify-content: space-between;
|
|
285
|
+
align-items: center;
|
|
286
|
+
}
|
|
287
|
+
.panel-header h3 {
|
|
288
|
+
margin: 0;
|
|
289
|
+
font-size: 1rem;
|
|
290
|
+
}
|
|
291
|
+
.panel-delete-btn {
|
|
292
|
+
padding: 0.2rem 0.5rem;
|
|
293
|
+
background: none;
|
|
294
|
+
border: 1px solid #e44;
|
|
295
|
+
color: #e44;
|
|
296
|
+
border-radius: 4px;
|
|
297
|
+
cursor: pointer;
|
|
298
|
+
font-size: 0.8rem;
|
|
299
|
+
}
|
|
300
|
+
.panel-delete-btn:hover {
|
|
301
|
+
background: #e44;
|
|
302
|
+
color: #fff;
|
|
303
|
+
}
|
|
304
|
+
.panel-field label {
|
|
305
|
+
display: block;
|
|
306
|
+
font-size: 0.75rem;
|
|
307
|
+
color: #888;
|
|
308
|
+
margin-bottom: 0.2rem;
|
|
309
|
+
}
|
|
310
|
+
.panel-field input[type=text],
|
|
311
|
+
.panel-field input[type=number],
|
|
312
|
+
.panel-field input[type=email],
|
|
313
|
+
.panel-field input[type=tel],
|
|
314
|
+
.panel-field input[type=date],
|
|
315
|
+
.panel-field select {
|
|
316
|
+
width: 100%;
|
|
317
|
+
padding: 0.35rem 0.5rem;
|
|
318
|
+
border: 1px solid #ddd;
|
|
319
|
+
border-radius: 4px;
|
|
320
|
+
font-size: 0.85rem;
|
|
321
|
+
background: #fff;
|
|
322
|
+
}
|
|
323
|
+
.panel-field-group {
|
|
324
|
+
display: grid;
|
|
325
|
+
grid-template-columns: 1fr 1fr;
|
|
326
|
+
gap: 0.5rem;
|
|
327
|
+
}
|
|
328
|
+
.panel-checkbox-label {
|
|
329
|
+
display: flex;
|
|
330
|
+
align-items: center;
|
|
331
|
+
gap: 0.4rem;
|
|
332
|
+
font-size: 0.85rem;
|
|
333
|
+
cursor: pointer;
|
|
334
|
+
}
|
|
335
|
+
.panel-empty {
|
|
336
|
+
color: #888;
|
|
337
|
+
font-size: 0.85rem;
|
|
338
|
+
padding: 2rem 1rem;
|
|
339
|
+
text-align: center;
|
|
340
|
+
}
|
|
341
|
+
.prefill-section {
|
|
342
|
+
border-top: 1px solid #eee;
|
|
343
|
+
padding-top: 0.75rem;
|
|
344
|
+
}
|
|
345
|
+
.prefill-section h4 {
|
|
346
|
+
margin: 0 0 0.5rem;
|
|
347
|
+
font-size: 0.85rem;
|
|
348
|
+
color: #555;
|
|
349
|
+
}
|
|
350
|
+
.prefill-input {
|
|
351
|
+
width: 100%;
|
|
352
|
+
padding: 0.35rem 0.5rem;
|
|
353
|
+
border: 1px solid #ddd;
|
|
354
|
+
border-radius: 4px;
|
|
355
|
+
font-size: 0.85rem;
|
|
356
|
+
}
|
|
357
|
+
.field-list {
|
|
358
|
+
border-top: 1px solid #eee;
|
|
359
|
+
padding-top: 0.75rem;
|
|
360
|
+
}
|
|
361
|
+
.field-list h4 {
|
|
362
|
+
margin: 0 0 0.5rem;
|
|
363
|
+
font-size: 0.85rem;
|
|
364
|
+
color: #555;
|
|
365
|
+
}
|
|
366
|
+
.field-list-item {
|
|
367
|
+
display: flex;
|
|
368
|
+
align-items: center;
|
|
369
|
+
gap: 0.4rem;
|
|
370
|
+
padding: 0.35rem 0.5rem;
|
|
371
|
+
border-radius: 4px;
|
|
372
|
+
cursor: pointer;
|
|
373
|
+
font-size: 0.8rem;
|
|
374
|
+
}
|
|
375
|
+
.field-list-item:hover {
|
|
376
|
+
background: #f5f5f5;
|
|
377
|
+
}
|
|
378
|
+
.field-list-item.active {
|
|
379
|
+
background: #eee;
|
|
380
|
+
}
|
|
381
|
+
.field-list-dot {
|
|
382
|
+
width: 8px;
|
|
383
|
+
height: 8px;
|
|
384
|
+
border-radius: 50%;
|
|
385
|
+
flex-shrink: 0;
|
|
386
|
+
}
|
|
387
|
+
.field-list-name {
|
|
388
|
+
flex: 1;
|
|
389
|
+
overflow: hidden;
|
|
390
|
+
text-overflow: ellipsis;
|
|
391
|
+
white-space: nowrap;
|
|
392
|
+
}
|
|
393
|
+
.field-list-page {
|
|
394
|
+
color: #aaa;
|
|
395
|
+
font-size: 0.75rem;
|
|
396
|
+
}
|
|
397
|
+
.field-list-required {
|
|
398
|
+
color: #e44;
|
|
399
|
+
font-weight: bold;
|
|
400
|
+
}
|
|
401
|
+
.signer-field-input h3 {
|
|
402
|
+
margin: 0 0 0.5rem;
|
|
403
|
+
font-size: 1rem;
|
|
404
|
+
}
|
|
405
|
+
.required-badge {
|
|
406
|
+
display: inline-block;
|
|
407
|
+
font-size: 0.7rem;
|
|
408
|
+
background: #fee;
|
|
409
|
+
color: #c33;
|
|
410
|
+
padding: 1px 6px;
|
|
411
|
+
border-radius: 3px;
|
|
412
|
+
margin-bottom: 0.5rem;
|
|
413
|
+
}
|
|
414
|
+
.signer-text-input {
|
|
415
|
+
width: 100%;
|
|
416
|
+
padding: 0.4rem 0.5rem;
|
|
417
|
+
border: 1px solid #ddd;
|
|
418
|
+
border-radius: 4px;
|
|
419
|
+
font-size: 0.9rem;
|
|
420
|
+
}
|
|
421
|
+
.signer-checkbox-label {
|
|
422
|
+
display: flex;
|
|
423
|
+
align-items: center;
|
|
424
|
+
gap: 0.5rem;
|
|
425
|
+
font-size: 0.9rem;
|
|
426
|
+
cursor: pointer;
|
|
427
|
+
}
|
|
428
|
+
.signer-date-display {
|
|
429
|
+
font-size: 0.9rem;
|
|
430
|
+
color: #555;
|
|
431
|
+
padding: 0.4rem 0;
|
|
432
|
+
}
|
|
433
|
+
.signer-field-readonly {
|
|
434
|
+
color: #888;
|
|
435
|
+
font-size: 0.85rem;
|
|
436
|
+
}
|
|
437
|
+
.signer-field-readonly h3 {
|
|
438
|
+
margin: 0 0 0.25rem;
|
|
439
|
+
font-size: 1rem;
|
|
440
|
+
color: #555;
|
|
441
|
+
}
|
|
442
|
+
.signature-canvas-wrapper {
|
|
443
|
+
display: flex;
|
|
444
|
+
flex-direction: column;
|
|
445
|
+
gap: 0.35rem;
|
|
446
|
+
}
|
|
447
|
+
.signature-canvas {
|
|
448
|
+
border: 1px solid #ddd;
|
|
449
|
+
border-radius: 4px;
|
|
450
|
+
background: #fff;
|
|
451
|
+
cursor: crosshair;
|
|
452
|
+
}
|
|
453
|
+
.signature-canvas-actions {
|
|
454
|
+
display: flex;
|
|
455
|
+
align-items: center;
|
|
456
|
+
justify-content: space-between;
|
|
457
|
+
}
|
|
458
|
+
.signature-clear-btn {
|
|
459
|
+
padding: 0.2rem 0.5rem;
|
|
460
|
+
background: none;
|
|
461
|
+
border: 1px solid #ccc;
|
|
462
|
+
border-radius: 4px;
|
|
463
|
+
cursor: pointer;
|
|
464
|
+
font-size: 0.8rem;
|
|
465
|
+
color: #888;
|
|
466
|
+
}
|
|
467
|
+
.signature-hint {
|
|
468
|
+
font-size: 0.75rem;
|
|
469
|
+
color: #aaa;
|
|
470
|
+
}
|
|
471
|
+
.field-navigator {
|
|
472
|
+
margin-top: auto;
|
|
473
|
+
border-top: 1px solid #eee;
|
|
474
|
+
padding-top: 0.75rem;
|
|
475
|
+
display: flex;
|
|
476
|
+
flex-direction: column;
|
|
477
|
+
gap: 0.5rem;
|
|
478
|
+
}
|
|
479
|
+
.field-navigator-progress {
|
|
480
|
+
font-size: 0.8rem;
|
|
481
|
+
color: #888;
|
|
482
|
+
text-align: center;
|
|
483
|
+
}
|
|
484
|
+
.field-navigator-controls {
|
|
485
|
+
display: flex;
|
|
486
|
+
align-items: center;
|
|
487
|
+
justify-content: center;
|
|
488
|
+
gap: 1rem;
|
|
489
|
+
}
|
|
490
|
+
.nav-btn {
|
|
491
|
+
padding: 0.35rem 1rem;
|
|
492
|
+
border: 1px solid #ddd;
|
|
493
|
+
border-radius: 4px;
|
|
494
|
+
background: #fff;
|
|
495
|
+
cursor: pointer;
|
|
496
|
+
font-size: 0.85rem;
|
|
497
|
+
}
|
|
498
|
+
.nav-btn:hover:not(:disabled) {
|
|
499
|
+
background: #f5f5f5;
|
|
500
|
+
}
|
|
501
|
+
.nav-btn:disabled {
|
|
502
|
+
opacity: 0.4;
|
|
503
|
+
cursor: default;
|
|
504
|
+
}
|
|
505
|
+
.field-navigator-position {
|
|
506
|
+
font-size: 0.85rem;
|
|
507
|
+
color: #888;
|
|
508
|
+
min-width: 50px;
|
|
509
|
+
text-align: center;
|
|
510
|
+
}
|
|
511
|
+
.submit-btn {
|
|
512
|
+
padding: 0.5rem;
|
|
513
|
+
background: #111;
|
|
514
|
+
color: #fff;
|
|
515
|
+
border: none;
|
|
516
|
+
border-radius: 4px;
|
|
517
|
+
cursor: pointer;
|
|
518
|
+
font-size: 0.9rem;
|
|
519
|
+
font-weight: 500;
|
|
520
|
+
}
|
|
521
|
+
.submit-btn:hover:not(:disabled) {
|
|
522
|
+
background: #333;
|
|
523
|
+
}
|
|
524
|
+
.submit-btn:disabled {
|
|
525
|
+
opacity: 0.4;
|
|
526
|
+
cursor: default;
|
|
527
|
+
}
|
|
528
|
+
.loading-indicator {
|
|
529
|
+
text-align: center;
|
|
530
|
+
padding: 2rem;
|
|
531
|
+
color: #888;
|
|
532
|
+
font-size: 0.9rem;
|
|
533
|
+
}
|
|
534
|
+
.empty-state {
|
|
535
|
+
display: flex;
|
|
536
|
+
flex-direction: column;
|
|
537
|
+
align-items: center;
|
|
538
|
+
justify-content: center;
|
|
539
|
+
height: 100%;
|
|
540
|
+
gap: 0.75rem;
|
|
541
|
+
color: #888;
|
|
542
|
+
}
|
|
543
|
+
.empty-state h2 {
|
|
544
|
+
margin: 0;
|
|
545
|
+
font-size: 1.25rem;
|
|
546
|
+
color: #555;
|
|
547
|
+
}
|
|
548
|
+
.empty-state p {
|
|
549
|
+
margin: 0;
|
|
550
|
+
font-size: 0.9rem;
|
|
551
|
+
}
|
|
552
|
+
.powered-by {
|
|
553
|
+
text-align: center;
|
|
554
|
+
padding: 0.4rem;
|
|
555
|
+
font-size: 0.7rem;
|
|
556
|
+
color: #aaa;
|
|
557
|
+
border-top: 1px solid #eee;
|
|
558
|
+
background: #fff;
|
|
559
|
+
}
|
|
560
|
+
.powered-by a {
|
|
561
|
+
color: #888;
|
|
562
|
+
text-decoration: none;
|
|
563
|
+
}
|
|
564
|
+
.powered-by a:hover {
|
|
565
|
+
text-decoration: underline;
|
|
566
|
+
}
|
|
567
|
+
/*# sourceMappingURL=index.css.map */
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/styles/pdf-builder.css"],"sourcesContent":["/* ── Layout ────────────────────────────────── */\n\n.designer-layout,\n.signer-layout {\n display: flex;\n flex-direction: column;\n height: 100vh;\n font-family: system-ui, -apple-system, sans-serif;\n color: #222;\n background: #fafafa;\n}\n\n.designer-toolbar {\n display: flex;\n justify-content: space-between;\n align-items: center;\n padding: 0.5rem 1rem;\n border-bottom: 1px solid #e5e5e5;\n background: #fff;\n gap: 1rem;\n flex-wrap: wrap;\n}\n\n.toolbar-left,\n.toolbar-right {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n}\n\n.designer-content,\n.signer-content {\n display: flex;\n flex: 1;\n overflow: hidden;\n}\n\n.designer-pdf-area,\n.signer-pdf-area {\n flex: 1;\n overflow-y: auto;\n padding: 1rem;\n background: #eee;\n}\n\n.designer-panel,\n.signer-panel {\n width: 320px;\n overflow-y: auto;\n border-left: 1px solid #e5e5e5;\n background: #fff;\n padding: 1rem;\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n\n/* ── PDF Viewer ───────────────────────────── */\n\n.pdf-viewer {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n align-items: center;\n}\n\n.pdf-page {\n position: relative;\n width: 100%;\n max-width: 800px;\n background: #fff;\n box-shadow: 0 1px 4px rgba(0,0,0,0.1);\n cursor: crosshair;\n}\n\n.pdf-page-image {\n width: 100%;\n height: 100%;\n display: block;\n pointer-events: none;\n}\n\n/* ── Field Overlays ───────────────────────── */\n\n.field-overlay {\n position: absolute;\n border: 1.5px solid;\n border-radius: 2px;\n display: flex;\n align-items: center;\n justify-content: center;\n overflow: hidden;\n transition: box-shadow 0.1s;\n}\n\n.field-overlay.selected {\n box-shadow: 0 0 0 2px rgba(0,0,0,0.2);\n z-index: 10;\n}\n\n.field-overlay.editable {\n cursor: text;\n}\n\n.field-overlay-label {\n position: absolute;\n top: -18px;\n left: -1px;\n font-size: 10px;\n color: #fff;\n padding: 1px 6px;\n border-radius: 2px 2px 0 0;\n white-space: nowrap;\n pointer-events: none;\n}\n\n.field-overlay-placeholder {\n color: #999;\n font-size: 11px;\n padding: 2px 4px;\n width: 100%;\n text-overflow: ellipsis;\n overflow: hidden;\n white-space: nowrap;\n}\n\n.field-overlay-placeholder.readonly {\n color: #666;\n}\n\n.field-overlay-value {\n font-size: 11px;\n padding: 2px 4px;\n width: 100%;\n}\n\n.field-inline-input {\n width: 100%;\n height: 100%;\n border: none;\n background: transparent;\n padding: 2px 4px;\n outline: none;\n font-family: inherit;\n}\n\n.field-signature-preview {\n width: 100%;\n height: 100%;\n object-fit: contain;\n}\n\n.field-signature-filled {\n width: 100%;\n height: 100%;\n cursor: pointer;\n}\n\n.field-checkbox-display {\n width: 100%;\n height: 100%;\n display: flex;\n align-items: center;\n justify-content: center;\n font-size: 16px;\n font-weight: bold;\n}\n\n.field-checkbox-display.editable {\n cursor: pointer;\n}\n\n.field-resize-handle {\n position: absolute;\n bottom: 0;\n right: 0;\n width: 10px;\n height: 10px;\n background: #fff;\n border: 1px solid #999;\n cursor: nwse-resize;\n}\n\n/* ── Buttons ──────────────────────────────── */\n\n.upload-btn {\n display: inline-block;\n padding: 0.4rem 1rem;\n background: #111;\n color: #fff;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.85rem;\n font-weight: 500;\n}\n\n.upload-btn:hover { background: #333; }\n\n.upload-btn-small { font-size: 0.8rem; padding: 0.3rem 0.75rem; background: #555; }\n.upload-btn-large { font-size: 1rem; padding: 0.6rem 1.5rem; }\n\n.export-btn {\n padding: 0.4rem 1rem;\n background: #111;\n color: #fff;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.85rem;\n font-weight: 500;\n}\n\n.export-btn:hover { background: #333; }\n\n.field-type-selector {\n display: flex;\n gap: 2px;\n}\n\n.field-type-btn {\n padding: 0.3rem 0.6rem;\n background: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.8rem;\n color: #555;\n}\n\n.field-type-btn.active {\n background: #111;\n color: #fff;\n border-color: #111;\n}\n\n.field-type-btn:hover:not(.active) {\n background: #f5f5f5;\n}\n\n/* ── Signer Roles ─────────────────────────── */\n\n.signer-role-selector {\n padding: 0.5rem 1rem;\n border-bottom: 1px solid #e5e5e5;\n background: #fff;\n}\n\n.signer-role-label {\n font-size: 0.75rem;\n color: #888;\n margin-bottom: 0.35rem;\n}\n\n.signer-role-list {\n display: flex;\n gap: 0.35rem;\n flex-wrap: wrap;\n align-items: center;\n}\n\n.signer-role-chip {\n padding: 0.2rem 0.6rem;\n border: 1.5px solid;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.8rem;\n font-weight: 500;\n background: transparent;\n transition: all 0.1s;\n}\n\n.signer-role-remove {\n margin-left: 0.3rem;\n cursor: pointer;\n font-size: 1rem;\n}\n\n.signer-role-add-btn {\n padding: 0.2rem 0.5rem;\n border: 1px dashed #ccc;\n border-radius: 4px;\n background: none;\n cursor: pointer;\n font-size: 0.8rem;\n color: #888;\n}\n\n.signer-role-add-input {\n display: flex;\n gap: 0.25rem;\n align-items: center;\n}\n\n.signer-role-add-input input {\n padding: 0.2rem 0.4rem;\n border: 1px solid #ccc;\n border-radius: 4px;\n font-size: 0.8rem;\n width: 120px;\n}\n\n.signer-role-add-input button {\n padding: 0.2rem 0.5rem;\n border: 1px solid #ccc;\n border-radius: 4px;\n background: #fff;\n cursor: pointer;\n font-size: 0.8rem;\n}\n\n/* ── Property Panel ───────────────────────── */\n\n.field-property-panel {\n display: flex;\n flex-direction: column;\n gap: 0.75rem;\n}\n\n.panel-header {\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.panel-header h3 {\n margin: 0;\n font-size: 1rem;\n}\n\n.panel-delete-btn {\n padding: 0.2rem 0.5rem;\n background: none;\n border: 1px solid #e44;\n color: #e44;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.8rem;\n}\n\n.panel-delete-btn:hover {\n background: #e44;\n color: #fff;\n}\n\n.panel-field label {\n display: block;\n font-size: 0.75rem;\n color: #888;\n margin-bottom: 0.2rem;\n}\n\n.panel-field input[type=\"text\"],\n.panel-field input[type=\"number\"],\n.panel-field input[type=\"email\"],\n.panel-field input[type=\"tel\"],\n.panel-field input[type=\"date\"],\n.panel-field select {\n width: 100%;\n padding: 0.35rem 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n font-size: 0.85rem;\n background: #fff;\n}\n\n.panel-field-group {\n display: grid;\n grid-template-columns: 1fr 1fr;\n gap: 0.5rem;\n}\n\n.panel-checkbox-label {\n display: flex;\n align-items: center;\n gap: 0.4rem;\n font-size: 0.85rem;\n cursor: pointer;\n}\n\n.panel-empty {\n color: #888;\n font-size: 0.85rem;\n padding: 2rem 1rem;\n text-align: center;\n}\n\n/* ── Pre-fill ─────────────────────────────── */\n\n.prefill-section {\n border-top: 1px solid #eee;\n padding-top: 0.75rem;\n}\n\n.prefill-section h4 {\n margin: 0 0 0.5rem;\n font-size: 0.85rem;\n color: #555;\n}\n\n.prefill-input {\n width: 100%;\n padding: 0.35rem 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n font-size: 0.85rem;\n}\n\n/* ── Field List ───────────────────────────── */\n\n.field-list {\n border-top: 1px solid #eee;\n padding-top: 0.75rem;\n}\n\n.field-list h4 {\n margin: 0 0 0.5rem;\n font-size: 0.85rem;\n color: #555;\n}\n\n.field-list-item {\n display: flex;\n align-items: center;\n gap: 0.4rem;\n padding: 0.35rem 0.5rem;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.8rem;\n}\n\n.field-list-item:hover { background: #f5f5f5; }\n.field-list-item.active { background: #eee; }\n\n.field-list-dot {\n width: 8px;\n height: 8px;\n border-radius: 50%;\n flex-shrink: 0;\n}\n\n.field-list-name {\n flex: 1;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n\n.field-list-page {\n color: #aaa;\n font-size: 0.75rem;\n}\n\n.field-list-required {\n color: #e44;\n font-weight: bold;\n}\n\n/* ── Signer Panel ─────────────────────────── */\n\n.signer-field-input h3 {\n margin: 0 0 0.5rem;\n font-size: 1rem;\n}\n\n.required-badge {\n display: inline-block;\n font-size: 0.7rem;\n background: #fee;\n color: #c33;\n padding: 1px 6px;\n border-radius: 3px;\n margin-bottom: 0.5rem;\n}\n\n.signer-text-input {\n width: 100%;\n padding: 0.4rem 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n font-size: 0.9rem;\n}\n\n.signer-checkbox-label {\n display: flex;\n align-items: center;\n gap: 0.5rem;\n font-size: 0.9rem;\n cursor: pointer;\n}\n\n.signer-date-display {\n font-size: 0.9rem;\n color: #555;\n padding: 0.4rem 0;\n}\n\n.signer-field-readonly {\n color: #888;\n font-size: 0.85rem;\n}\n\n.signer-field-readonly h3 {\n margin: 0 0 0.25rem;\n font-size: 1rem;\n color: #555;\n}\n\n/* ── Signature Canvas ─────────────────────── */\n\n.signature-canvas-wrapper {\n display: flex;\n flex-direction: column;\n gap: 0.35rem;\n}\n\n.signature-canvas {\n border: 1px solid #ddd;\n border-radius: 4px;\n background: #fff;\n cursor: crosshair;\n}\n\n.signature-canvas-actions {\n display: flex;\n align-items: center;\n justify-content: space-between;\n}\n\n.signature-clear-btn {\n padding: 0.2rem 0.5rem;\n background: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.8rem;\n color: #888;\n}\n\n.signature-hint {\n font-size: 0.75rem;\n color: #aaa;\n}\n\n/* ── Field Navigator ──────────────────────── */\n\n.field-navigator {\n margin-top: auto;\n border-top: 1px solid #eee;\n padding-top: 0.75rem;\n display: flex;\n flex-direction: column;\n gap: 0.5rem;\n}\n\n.field-navigator-progress {\n font-size: 0.8rem;\n color: #888;\n text-align: center;\n}\n\n.field-navigator-controls {\n display: flex;\n align-items: center;\n justify-content: center;\n gap: 1rem;\n}\n\n.nav-btn {\n padding: 0.35rem 1rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n background: #fff;\n cursor: pointer;\n font-size: 0.85rem;\n}\n\n.nav-btn:hover:not(:disabled) { background: #f5f5f5; }\n.nav-btn:disabled { opacity: 0.4; cursor: default; }\n\n.field-navigator-position {\n font-size: 0.85rem;\n color: #888;\n min-width: 50px;\n text-align: center;\n}\n\n.submit-btn {\n padding: 0.5rem;\n background: #111;\n color: #fff;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n font-size: 0.9rem;\n font-weight: 500;\n}\n\n.submit-btn:hover:not(:disabled) { background: #333; }\n.submit-btn:disabled { opacity: 0.4; cursor: default; }\n\n/* ── States ───────────────────────────────── */\n\n.loading-indicator {\n text-align: center;\n padding: 2rem;\n color: #888;\n font-size: 0.9rem;\n}\n\n.empty-state {\n display: flex;\n flex-direction: column;\n align-items: center;\n justify-content: center;\n height: 100%;\n gap: 0.75rem;\n color: #888;\n}\n\n.empty-state h2 {\n margin: 0;\n font-size: 1.25rem;\n color: #555;\n}\n\n.empty-state p {\n margin: 0;\n font-size: 0.9rem;\n}\n\n/* ── Powered By ───────────────────────────── */\n\n.powered-by {\n text-align: center;\n padding: 0.4rem;\n font-size: 0.7rem;\n color: #aaa;\n border-top: 1px solid #eee;\n background: #fff;\n}\n\n.powered-by a {\n color: #888;\n text-decoration: none;\n}\n\n.powered-by a:hover {\n text-decoration: underline;\n}\n"],"mappings":";AAEA,CAAC;AACD,CAAC;AACC,WAAS;AACT,kBAAgB;AAChB,UAAQ;AACR;AAAA,IAAa,SAAS;AAAA,IAAE,aAAa;AAAA,IAAE;AACvC,SAAO;AACP,cAAY;AACd;AAEA,CAAC;AACC,WAAS;AACT,mBAAiB;AACjB,eAAa;AACb,WAAS,OAAO;AAChB,iBAAe,IAAI,MAAM;AACzB,cAAY;AACZ,OAAK;AACL,aAAW;AACb;AAEA,CAAC;AACD,CAAC;AACC,WAAS;AACT,eAAa;AACb,OAAK;AACP;AAEA,CAAC;AACD,CAAC;AACC,WAAS;AACT,QAAM;AACN,YAAU;AACZ;AAEA,CAAC;AACD,CAAC;AACC,QAAM;AACN,cAAY;AACZ,WAAS;AACT,cAAY;AACd;AAEA,CAAC;AACD,CAAC;AACC,SAAO;AACP,cAAY;AACZ,eAAa,IAAI,MAAM;AACvB,cAAY;AACZ,WAAS;AACT,WAAS;AACT,kBAAgB;AAChB,OAAK;AACP;AAIA,CAAC;AACC,WAAS;AACT,kBAAgB;AAChB,OAAK;AACL,eAAa;AACf;AAEA,CAAC;AACC,YAAU;AACV,SAAO;AACP,aAAW;AACX,cAAY;AACZ,cAAY,EAAE,IAAI,IAAI,KAAK,CAAC,EAAC,CAAC,EAAC,CAAC,EAAC;AACjC,UAAQ;AACV;AAEA,CAAC;AACC,SAAO;AACP,UAAQ;AACR,WAAS;AACT,kBAAgB;AAClB;AAIA,CAAC;AACC,YAAU;AACV,UAAQ,MAAM;AACd,iBAAe;AACf,WAAS;AACT,eAAa;AACb,mBAAiB;AACjB,YAAU;AACV,cAAY,WAAW;AACzB;AAEA,CAXC,aAWa,CAAC;AACb,cAAY,EAAE,EAAE,EAAE,IAAI,KAAK,CAAC,EAAC,CAAC,EAAC,CAAC,EAAC;AACjC,WAAS;AACX;AAEA,CAhBC,aAgBa,CAAC;AACb,UAAQ;AACV;AAEA,CAAC;AACC,YAAU;AACV,OAAK;AACL,QAAM;AACN,aAAW;AACX,SAAO;AACP,WAAS,IAAI;AACb,iBAAe,IAAI,IAAI,EAAE;AACzB,eAAa;AACb,kBAAgB;AAClB;AAEA,CAAC;AACC,SAAO;AACP,aAAW;AACX,WAAS,IAAI;AACb,SAAO;AACP,iBAAe;AACf,YAAU;AACV,eAAa;AACf;AAEA,CAVC,yBAUyB,CAAC;AACzB,SAAO;AACT;AAEA,CAAC;AACC,aAAW;AACX,WAAS,IAAI;AACb,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACP,UAAQ;AACR,UAAQ;AACR,cAAY;AACZ,WAAS,IAAI;AACb,WAAS;AACT,eAAa;AACf;AAEA,CAAC;AACC,SAAO;AACP,UAAQ;AACR,cAAY;AACd;AAEA,CAAC;AACC,SAAO;AACP,UAAQ;AACR,UAAQ;AACV;AAEA,CAAC;AACC,SAAO;AACP,UAAQ;AACR,WAAS;AACT,eAAa;AACb,mBAAiB;AACjB,aAAW;AACX,eAAa;AACf;AAEA,CAVC,sBAUsB,CApER;AAqEb,UAAQ;AACV;AAEA,CAAC;AACC,YAAU;AACV,UAAQ;AACR,SAAO;AACP,SAAO;AACP,UAAQ;AACR,cAAY;AACZ,UAAQ,IAAI,MAAM;AAClB,UAAQ;AACV;AAIA,CAAC;AACC,WAAS;AACT,WAAS,OAAO;AAChB,cAAY;AACZ,SAAO;AACP,UAAQ;AACR,iBAAe;AACf,UAAQ;AACR,aAAW;AACX,eAAa;AACf;AAEA,CAZC,UAYU;AAAS,cAAY;AAAM;AAEtC,CAAC;AAAmB,aAAW;AAAQ,WAAS,OAAO;AAAS,cAAY;AAAM;AAClF,CAAC;AAAmB,aAAW;AAAM,WAAS,OAAO;AAAQ;AAE7D,CAAC;AACC,WAAS,OAAO;AAChB,cAAY;AACZ,SAAO;AACP,UAAQ;AACR,iBAAe;AACf,UAAQ;AACR,aAAW;AACX,eAAa;AACf;AAEA,CAXC,UAWU;AAAS,cAAY;AAAM;AAEtC,CAAC;AACC,WAAS;AACT,OAAK;AACP;AAEA,CAAC;AACC,WAAS,OAAO;AAChB,cAAY;AACZ,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,UAAQ;AACR,aAAW;AACX,SAAO;AACT;AAEA,CAVC,cAUc,CAAC;AACd,cAAY;AACZ,SAAO;AACP,gBAAc;AAChB;AAEA,CAhBC,cAgBc,MAAM,KAAK,CANV;AAOd,cAAY;AACd;AAIA,CAAC;AACC,WAAS,OAAO;AAChB,iBAAe,IAAI,MAAM;AACzB,cAAY;AACd;AAEA,CAAC;AACC,aAAW;AACX,SAAO;AACP,iBAAe;AACjB;AAEA,CAAC;AACC,WAAS;AACT,OAAK;AACL,aAAW;AACX,eAAa;AACf;AAEA,CAAC;AACC,WAAS,OAAO;AAChB,UAAQ,MAAM;AACd,iBAAe;AACf,UAAQ;AACR,aAAW;AACX,eAAa;AACb,cAAY;AACZ,cAAY,IAAI;AAClB;AAEA,CAAC;AACC,eAAa;AACb,UAAQ;AACR,aAAW;AACb;AAEA,CAAC;AACC,WAAS,OAAO;AAChB,UAAQ,IAAI,OAAO;AACnB,iBAAe;AACf,cAAY;AACZ,UAAQ;AACR,aAAW;AACX,SAAO;AACT;AAEA,CAAC;AACC,WAAS;AACT,OAAK;AACL,eAAa;AACf;AAEA,CANC,sBAMsB;AACrB,WAAS,OAAO;AAChB,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,aAAW;AACX,SAAO;AACT;AAEA,CAdC,sBAcsB;AACrB,WAAS,OAAO;AAChB,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,cAAY;AACZ,UAAQ;AACR,aAAW;AACb;AAIA,CAAC;AACC,WAAS;AACT,kBAAgB;AAChB,OAAK;AACP;AAEA,CAAC;AACC,WAAS;AACT,mBAAiB;AACjB,eAAa;AACf;AAEA,CANC,aAMa;AACZ,UAAQ;AACR,aAAW;AACb;AAEA,CAAC;AACC,WAAS,OAAO;AAChB,cAAY;AACZ,UAAQ,IAAI,MAAM;AAClB,SAAO;AACP,iBAAe;AACf,UAAQ;AACR,aAAW;AACb;AAEA,CAVC,gBAUgB;AACf,cAAY;AACZ,SAAO;AACT;AAEA,CAAC,YAAY;AACX,WAAS;AACT,aAAW;AACX,SAAO;AACP,iBAAe;AACjB;AAEA,CAPC,YAOY,KAAK,CAAC;AACnB,CARC,YAQY,KAAK,CAAC;AACnB,CATC,YASY,KAAK,CAAC;AACnB,CAVC,YAUY,KAAK,CAAC;AACnB,CAXC,YAWY,KAAK,CAAC;AACnB,CAZC,YAYY;AACX,SAAO;AACP,WAAS,QAAQ;AACjB,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,aAAW;AACX,cAAY;AACd;AAEA,CAAC;AACC,WAAS;AACT,yBAAuB,IAAI;AAC3B,OAAK;AACP;AAEA,CAAC;AACC,WAAS;AACT,eAAa;AACb,OAAK;AACL,aAAW;AACX,UAAQ;AACV;AAEA,CAAC;AACC,SAAO;AACP,aAAW;AACX,WAAS,KAAK;AACd,cAAY;AACd;AAIA,CAAC;AACC,cAAY,IAAI,MAAM;AACtB,eAAa;AACf;AAEA,CALC,gBAKgB;AACf,UAAQ,EAAE,EAAE;AACZ,aAAW;AACX,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACP,WAAS,QAAQ;AACjB,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,aAAW;AACb;AAIA,CAAC;AACC,cAAY,IAAI,MAAM;AACtB,eAAa;AACf;AAEA,CALC,WAKW;AACV,UAAQ,EAAE,EAAE;AACZ,aAAW;AACX,SAAO;AACT;AAEA,CAAC;AACC,WAAS;AACT,eAAa;AACb,OAAK;AACL,WAAS,QAAQ;AACjB,iBAAe;AACf,UAAQ;AACR,aAAW;AACb;AAEA,CAVC,eAUe;AAAS,cAAY;AAAS;AAC9C,CAXC,eAWe,CA1MA;AA0MU,cAAY;AAAM;AAE5C,CAAC;AACC,SAAO;AACP,UAAQ;AACR,iBAAe;AACf,eAAa;AACf;AAEA,CAAC;AACC,QAAM;AACN,YAAU;AACV,iBAAe;AACf,eAAa;AACf;AAEA,CAAC;AACC,SAAO;AACP,aAAW;AACb;AAEA,CAAC;AACC,SAAO;AACP,eAAa;AACf;AAIA,CAAC,mBAAmB;AAClB,UAAQ,EAAE,EAAE;AACZ,aAAW;AACb;AAEA,CAAC;AACC,WAAS;AACT,aAAW;AACX,cAAY;AACZ,SAAO;AACP,WAAS,IAAI;AACb,iBAAe;AACf,iBAAe;AACjB;AAEA,CAAC;AACC,SAAO;AACP,WAAS,OAAO;AAChB,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,aAAW;AACb;AAEA,CAAC;AACC,WAAS;AACT,eAAa;AACb,OAAK;AACL,aAAW;AACX,UAAQ;AACV;AAEA,CAAC;AACC,aAAW;AACX,SAAO;AACP,WAAS,OAAO;AAClB;AAEA,CAAC;AACC,SAAO;AACP,aAAW;AACb;AAEA,CALC,sBAKsB;AACrB,UAAQ,EAAE,EAAE;AACZ,aAAW;AACX,SAAO;AACT;AAIA,CAAC;AACC,WAAS;AACT,kBAAgB;AAChB,OAAK;AACP;AAEA,CAAC;AACC,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,cAAY;AACZ,UAAQ;AACV;AAEA,CAAC;AACC,WAAS;AACT,eAAa;AACb,mBAAiB;AACnB;AAEA,CAAC;AACC,WAAS,OAAO;AAChB,cAAY;AACZ,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,UAAQ;AACR,aAAW;AACX,SAAO;AACT;AAEA,CAAC;AACC,aAAW;AACX,SAAO;AACT;AAIA,CAAC;AACC,cAAY;AACZ,cAAY,IAAI,MAAM;AACtB,eAAa;AACb,WAAS;AACT,kBAAgB;AAChB,OAAK;AACP;AAEA,CAAC;AACC,aAAW;AACX,SAAO;AACP,cAAY;AACd;AAEA,CAAC;AACC,WAAS;AACT,eAAa;AACb,mBAAiB;AACjB,OAAK;AACP;AAEA,CAAC;AACC,WAAS,QAAQ;AACjB,UAAQ,IAAI,MAAM;AAClB,iBAAe;AACf,cAAY;AACZ,UAAQ;AACR,aAAW;AACb;AAEA,CATC,OASO,MAAM,KAAK;AAAa,cAAY;AAAS;AACrD,CAVC,OAUO;AAAY,WAAS;AAAK,UAAQ;AAAS;AAEnD,CAAC;AACC,aAAW;AACX,SAAO;AACP,aAAW;AACX,cAAY;AACd;AAEA,CAAC;AACC,WAAS;AACT,cAAY;AACZ,SAAO;AACP,UAAQ;AACR,iBAAe;AACf,UAAQ;AACR,aAAW;AACX,eAAa;AACf;AAEA,CAXC,UAWU,MAAM,KAAK;AAAa,cAAY;AAAM;AACrD,CAZC,UAYU;AAAY,WAAS;AAAK,UAAQ;AAAS;AAItD,CAAC;AACC,cAAY;AACZ,WAAS;AACT,SAAO;AACP,aAAW;AACb;AAEA,CAAC;AACC,WAAS;AACT,kBAAgB;AAChB,eAAa;AACb,mBAAiB;AACjB,UAAQ;AACR,OAAK;AACL,SAAO;AACT;AAEA,CAVC,YAUY;AACX,UAAQ;AACR,aAAW;AACX,SAAO;AACT;AAEA,CAhBC,YAgBY;AACX,UAAQ;AACR,aAAW;AACb;AAIA,CAAC;AACC,cAAY;AACZ,WAAS;AACT,aAAW;AACX,SAAO;AACP,cAAY,IAAI,MAAM;AACtB,cAAY;AACd;AAEA,CATC,WASW;AACV,SAAO;AACP,mBAAiB;AACnB;AAEA,CAdC,WAcW,CAAC;AACX,mBAAiB;AACnB;","names":[]}
|
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
declare function DesignerView(): react_jsx_runtime.JSX.Element;
|
|
4
|
+
|
|
5
|
+
type FieldType = 'text' | 'signature' | 'signed-date' | 'checkbox' | 'initials';
|
|
6
|
+
type TextSubtype = 'freeform' | 'number' | 'date' | 'email' | 'phone';
|
|
7
|
+
interface FormField {
|
|
8
|
+
id: string;
|
|
9
|
+
type: FieldType;
|
|
10
|
+
textSubtype?: TextSubtype;
|
|
11
|
+
label: string;
|
|
12
|
+
placeholder: string;
|
|
13
|
+
required: boolean;
|
|
14
|
+
assignee: string;
|
|
15
|
+
page: number;
|
|
16
|
+
x: number;
|
|
17
|
+
y: number;
|
|
18
|
+
width: number;
|
|
19
|
+
height: number;
|
|
20
|
+
fontSize: number;
|
|
21
|
+
value: string;
|
|
22
|
+
}
|
|
23
|
+
interface Template {
|
|
24
|
+
fields: FormField[];
|
|
25
|
+
signerRoles: string[];
|
|
26
|
+
pdfUrl: string;
|
|
27
|
+
}
|
|
28
|
+
declare const DEFAULT_SIGNER_ROLES: string[];
|
|
29
|
+
declare const SIGNER_ROLE_COLORS: Record<string, string>;
|
|
30
|
+
declare function getSignerColor(role: string): string;
|
|
31
|
+
declare const FIELD_DEFAULTS: Record<FieldType, Partial<FormField>>;
|
|
32
|
+
declare function createField(type: FieldType, assignee: string, page: number, x: number, y: number): FormField;
|
|
33
|
+
|
|
34
|
+
interface SignerViewProps {
|
|
35
|
+
/** If provided, use these instead of URL params / postMessage */
|
|
36
|
+
initialPdfUrl?: string;
|
|
37
|
+
initialTemplate?: Template;
|
|
38
|
+
initialSigner?: string;
|
|
39
|
+
callbackUrl?: string;
|
|
40
|
+
onComplete?: (pdfBlob: Blob) => void;
|
|
41
|
+
}
|
|
42
|
+
declare function SignerView({ initialPdfUrl, initialTemplate, initialSigner, callbackUrl: initialCallbackUrl, onComplete, }?: SignerViewProps): react_jsx_runtime.JSX.Element;
|
|
43
|
+
|
|
44
|
+
interface RenderedPage {
|
|
45
|
+
pageNumber: number;
|
|
46
|
+
dataUrl: string;
|
|
47
|
+
width: number;
|
|
48
|
+
height: number;
|
|
49
|
+
}
|
|
50
|
+
declare function renderPdfPages(source: string | ArrayBuffer, scale?: number): Promise<RenderedPage[]>;
|
|
51
|
+
|
|
52
|
+
interface PdfViewerProps {
|
|
53
|
+
pages: RenderedPage[];
|
|
54
|
+
fields: FormField[];
|
|
55
|
+
selectedFieldId: string | null;
|
|
56
|
+
onSelectField: (id: string | null) => void;
|
|
57
|
+
onFieldMove?: (id: string, page: number, x: number, y: number) => void;
|
|
58
|
+
onFieldResize?: (id: string, width: number, height: number) => void;
|
|
59
|
+
onPageClick?: (page: number, x: number, y: number) => void;
|
|
60
|
+
mode: 'designer' | 'signer';
|
|
61
|
+
currentSigner?: string;
|
|
62
|
+
renderFieldContent?: (field: FormField) => React.ReactNode;
|
|
63
|
+
}
|
|
64
|
+
declare function PdfViewer({ pages, fields, selectedFieldId, onSelectField, onFieldMove, onFieldResize, onPageClick, mode, currentSigner, renderFieldContent, }: PdfViewerProps): react_jsx_runtime.JSX.Element;
|
|
65
|
+
|
|
66
|
+
interface SignatureCanvasProps {
|
|
67
|
+
width?: number;
|
|
68
|
+
height?: number;
|
|
69
|
+
onSign: (dataUrl: string) => void;
|
|
70
|
+
initialValue?: string;
|
|
71
|
+
className?: string;
|
|
72
|
+
}
|
|
73
|
+
declare function SignatureCanvas({ width, height, onSign, initialValue, className, }: SignatureCanvasProps): react_jsx_runtime.JSX.Element;
|
|
74
|
+
|
|
75
|
+
interface FieldPropertyPanelProps {
|
|
76
|
+
field: FormField;
|
|
77
|
+
signerRoles: string[];
|
|
78
|
+
onUpdate: (id: string, updates: Partial<FormField>) => void;
|
|
79
|
+
onDelete: (id: string) => void;
|
|
80
|
+
}
|
|
81
|
+
declare function FieldPropertyPanel({ field, signerRoles, onUpdate, onDelete }: FieldPropertyPanelProps): react_jsx_runtime.JSX.Element;
|
|
82
|
+
|
|
83
|
+
interface FieldNavigatorProps {
|
|
84
|
+
fields: FormField[];
|
|
85
|
+
currentFieldId: string | null;
|
|
86
|
+
onNavigate: (fieldId: string) => void;
|
|
87
|
+
allRequiredFilled: boolean;
|
|
88
|
+
onSubmit: () => void;
|
|
89
|
+
}
|
|
90
|
+
declare function FieldNavigator({ fields, currentFieldId, onNavigate, allRequiredFilled, onSubmit, }: FieldNavigatorProps): react_jsx_runtime.JSX.Element;
|
|
91
|
+
|
|
92
|
+
interface SignerRoleSelectorProps {
|
|
93
|
+
roles: string[];
|
|
94
|
+
activeRole: string;
|
|
95
|
+
onSetActiveRole: (role: string) => void;
|
|
96
|
+
onAddRole: (role: string) => void;
|
|
97
|
+
onRemoveRole: (role: string) => void;
|
|
98
|
+
}
|
|
99
|
+
declare function SignerRoleSelector({ roles, activeRole, onSetActiveRole, onAddRole, onRemoveRole, }: SignerRoleSelectorProps): react_jsx_runtime.JSX.Element;
|
|
100
|
+
|
|
101
|
+
declare function generateFilledPdf(pdfSource: string | ArrayBuffer, fields: FormField[]): Promise<Uint8Array>;
|
|
102
|
+
declare function downloadPdf(bytes: Uint8Array, filename: string): void;
|
|
103
|
+
declare function postPdfToCallback(bytes: Uint8Array, callbackUrl: string, filename: string): Promise<void>;
|
|
104
|
+
|
|
105
|
+
export { DEFAULT_SIGNER_ROLES, DesignerView, FIELD_DEFAULTS, FieldNavigator, FieldPropertyPanel, type FieldType, type FormField, PdfViewer, type RenderedPage, SIGNER_ROLE_COLORS, SignatureCanvas, SignerRoleSelector, SignerView, type Template, type TextSubtype, createField, downloadPdf, generateFilledPdf, getSignerColor, postPdfToCallback, renderPdfPages };
|