@rangertechnologies/ngnxt 2.1.274 → 2.1.276
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/fesm2022/rangertechnologies-ngnxt.mjs +6334 -9625
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/components/custom-calendar/custom-calendar.component.d.ts +1 -2
- package/lib/components/custom-dropdown/custom-dropdown.component.d.ts +1 -5
- package/lib/components/datatable/datatable.component.d.ts +7 -2
- package/lib/components/nxt-input/nxt-input.component.d.ts +10 -4
- package/lib/pages/builder/element/element.component.d.ts +0 -1
- package/lib/pages/pdfDesigner/pdf-designer/pdf-designer.component.d.ts +16 -6
- package/lib/pages/pdfDesigner/pdf-properties/pdf-properties.component.d.ts +377 -98
- package/lib/pages/questionbook/questionbook.component.d.ts +4 -5
- package/lib/pages/questionnaire/questionnaire.component.d.ts +10 -11
- package/lib/services/country/country.service.d.ts +5 -0
- package/lib/services/pdf-designer/pdf-designer.service.d.ts +14 -4
- package/lib/services/storage/storage.service.d.ts +5 -2
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.276.tgz +0 -0
- package/lib/pages/builder/templates/templates.component.d.ts +0 -16
- package/lib/sample.d.ts +0 -11
- package/lib/wrapper.d.ts +0 -203
- package/rangertechnologies-ngnxt-2.1.274.tgz +0 -0
|
@@ -52,6 +52,19 @@ export declare class PdfPropertiesComponent {
|
|
|
52
52
|
pdfElements: any[];
|
|
53
53
|
unique_id: string;
|
|
54
54
|
selectedTemplate: any;
|
|
55
|
+
subtext: {
|
|
56
|
+
label: string;
|
|
57
|
+
type: string;
|
|
58
|
+
key: string;
|
|
59
|
+
labelPath: string;
|
|
60
|
+
subQuestion: {
|
|
61
|
+
label: string;
|
|
62
|
+
placeholder: string;
|
|
63
|
+
type: string;
|
|
64
|
+
key: string;
|
|
65
|
+
labelPath: string;
|
|
66
|
+
}[];
|
|
67
|
+
};
|
|
55
68
|
elementProperties: {
|
|
56
69
|
Header: {
|
|
57
70
|
elementProps: {
|
|
@@ -69,41 +82,46 @@ export declare class PdfPropertiesComponent {
|
|
|
69
82
|
placeholder: string;
|
|
70
83
|
type: string;
|
|
71
84
|
key: string;
|
|
85
|
+
isTranslate?: undefined;
|
|
86
|
+
} | {
|
|
87
|
+
label: string;
|
|
88
|
+
placeholder: string;
|
|
89
|
+
type: string;
|
|
90
|
+
key: string;
|
|
91
|
+
isTranslate: boolean;
|
|
92
|
+
labelPath: string;
|
|
72
93
|
} | {
|
|
73
94
|
label: string;
|
|
74
95
|
labelPath: string;
|
|
75
96
|
type: string;
|
|
76
97
|
key: string;
|
|
77
98
|
placeholder?: undefined;
|
|
99
|
+
isTranslate?: undefined;
|
|
78
100
|
})[];
|
|
79
101
|
fieldProps: ({
|
|
80
102
|
label: string;
|
|
81
|
-
labelPath: string;
|
|
82
103
|
type: string;
|
|
83
104
|
key: string;
|
|
84
|
-
placeholder?: undefined;
|
|
85
|
-
subQuestion?: undefined;
|
|
86
|
-
} | {
|
|
87
|
-
label: string;
|
|
88
105
|
labelPath: string;
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
106
|
+
subQuestion: {
|
|
107
|
+
label: string;
|
|
108
|
+
placeholder: string;
|
|
109
|
+
type: string;
|
|
110
|
+
key: string;
|
|
111
|
+
labelPath: string;
|
|
112
|
+
}[];
|
|
93
113
|
} | {
|
|
94
114
|
label: string;
|
|
95
115
|
labelPath: string;
|
|
96
|
-
placeholder: string;
|
|
97
116
|
type: string;
|
|
98
117
|
key: string;
|
|
99
|
-
|
|
118
|
+
placeholder?: undefined;
|
|
100
119
|
} | {
|
|
101
120
|
label: string;
|
|
102
121
|
labelPath: string;
|
|
103
122
|
placeholder: string;
|
|
104
123
|
type: string;
|
|
105
124
|
key: string;
|
|
106
|
-
subQuestion: any[];
|
|
107
125
|
})[];
|
|
108
126
|
appearance: ({
|
|
109
127
|
label: string;
|
|
@@ -111,7 +129,11 @@ export declare class PdfPropertiesComponent {
|
|
|
111
129
|
type: string;
|
|
112
130
|
key: string;
|
|
113
131
|
placeholder: string;
|
|
114
|
-
options:
|
|
132
|
+
options: {
|
|
133
|
+
value: string;
|
|
134
|
+
label: string;
|
|
135
|
+
labelPath: string;
|
|
136
|
+
}[];
|
|
115
137
|
value?: undefined;
|
|
116
138
|
} | {
|
|
117
139
|
label: string;
|
|
@@ -151,52 +173,69 @@ export declare class PdfPropertiesComponent {
|
|
|
151
173
|
options?: undefined;
|
|
152
174
|
})[];
|
|
153
175
|
};
|
|
154
|
-
|
|
176
|
+
currency: {
|
|
155
177
|
elementProps: ({
|
|
156
178
|
label: string;
|
|
179
|
+
labelPath: string;
|
|
157
180
|
placeholder: string;
|
|
158
181
|
type: string;
|
|
159
182
|
key: string;
|
|
183
|
+
isTranslate?: undefined;
|
|
160
184
|
} | {
|
|
161
185
|
label: string;
|
|
186
|
+
placeholder: string;
|
|
162
187
|
type: string;
|
|
163
188
|
key: string;
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
189
|
+
isTranslate: boolean;
|
|
190
|
+
labelPath: string;
|
|
191
|
+
} | {
|
|
167
192
|
label: string;
|
|
193
|
+
labelPath: string;
|
|
168
194
|
type: string;
|
|
169
195
|
key: string;
|
|
170
196
|
placeholder?: undefined;
|
|
171
|
-
|
|
172
|
-
}
|
|
197
|
+
isTranslate?: undefined;
|
|
198
|
+
})[];
|
|
199
|
+
fieldProps: ({
|
|
173
200
|
label: string;
|
|
174
|
-
placeholder: string;
|
|
175
201
|
type: string;
|
|
176
|
-
key
|
|
177
|
-
|
|
202
|
+
key: string;
|
|
203
|
+
labelPath: string;
|
|
204
|
+
subQuestion: {
|
|
205
|
+
label: string;
|
|
206
|
+
placeholder: string;
|
|
207
|
+
type: string;
|
|
208
|
+
key: string;
|
|
209
|
+
labelPath: string;
|
|
210
|
+
}[];
|
|
178
211
|
} | {
|
|
179
212
|
label: string;
|
|
180
|
-
|
|
213
|
+
labelPath: string;
|
|
181
214
|
type: string;
|
|
182
215
|
key: string;
|
|
183
|
-
|
|
216
|
+
placeholder?: undefined;
|
|
184
217
|
} | {
|
|
185
218
|
label: string;
|
|
219
|
+
labelPath: string;
|
|
186
220
|
placeholder: string;
|
|
187
221
|
type: string;
|
|
188
222
|
key: string;
|
|
189
|
-
subQuestion: any[];
|
|
190
223
|
})[];
|
|
191
224
|
appearance: ({
|
|
192
225
|
label: string;
|
|
226
|
+
labelPath: string;
|
|
193
227
|
type: string;
|
|
194
228
|
key: string;
|
|
195
229
|
placeholder: string;
|
|
196
|
-
options:
|
|
230
|
+
options: {
|
|
231
|
+
value: string;
|
|
232
|
+
label: string;
|
|
233
|
+
labelPath: string;
|
|
234
|
+
}[];
|
|
197
235
|
value?: undefined;
|
|
198
236
|
} | {
|
|
199
237
|
label: string;
|
|
238
|
+
labelPath: string;
|
|
200
239
|
type: string;
|
|
201
240
|
key: string;
|
|
202
241
|
value: string;
|
|
@@ -204,6 +243,7 @@ export declare class PdfPropertiesComponent {
|
|
|
204
243
|
options?: undefined;
|
|
205
244
|
} | {
|
|
206
245
|
label: string;
|
|
246
|
+
labelPath: string;
|
|
207
247
|
type: string;
|
|
208
248
|
key: string;
|
|
209
249
|
value: number;
|
|
@@ -211,16 +251,19 @@ export declare class PdfPropertiesComponent {
|
|
|
211
251
|
options?: undefined;
|
|
212
252
|
} | {
|
|
213
253
|
label: string;
|
|
254
|
+
labelPath: string;
|
|
214
255
|
type: string;
|
|
215
256
|
key: string;
|
|
216
257
|
value: string;
|
|
217
258
|
options: {
|
|
218
259
|
value: string;
|
|
219
260
|
label: string;
|
|
261
|
+
labelPath: string;
|
|
220
262
|
}[];
|
|
221
263
|
placeholder?: undefined;
|
|
222
264
|
} | {
|
|
223
265
|
label: string;
|
|
266
|
+
labelPath: string;
|
|
224
267
|
type: string;
|
|
225
268
|
key: string;
|
|
226
269
|
placeholder: string;
|
|
@@ -234,43 +277,63 @@ export declare class PdfPropertiesComponent {
|
|
|
234
277
|
placeholder: string;
|
|
235
278
|
type: string;
|
|
236
279
|
key: string;
|
|
280
|
+
isTranslate?: undefined;
|
|
281
|
+
labelPath?: undefined;
|
|
237
282
|
} | {
|
|
238
283
|
label: string;
|
|
284
|
+
placeholder: string;
|
|
239
285
|
type: string;
|
|
240
286
|
key: string;
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
287
|
+
isTranslate: boolean;
|
|
288
|
+
labelPath: string;
|
|
289
|
+
} | {
|
|
244
290
|
label: string;
|
|
245
291
|
type: string;
|
|
246
292
|
key: string;
|
|
247
293
|
placeholder?: undefined;
|
|
248
|
-
|
|
294
|
+
isTranslate?: undefined;
|
|
295
|
+
labelPath?: undefined;
|
|
249
296
|
} | {
|
|
250
297
|
label: string;
|
|
251
|
-
|
|
298
|
+
labelPath: string;
|
|
252
299
|
type: string;
|
|
253
|
-
key
|
|
254
|
-
|
|
300
|
+
key: string;
|
|
301
|
+
placeholder?: undefined;
|
|
302
|
+
isTranslate?: undefined;
|
|
303
|
+
})[];
|
|
304
|
+
fieldProps: ({
|
|
305
|
+
label: string;
|
|
306
|
+
type: string;
|
|
307
|
+
key: string;
|
|
308
|
+
labelPath: string;
|
|
309
|
+
subQuestion: {
|
|
310
|
+
label: string;
|
|
311
|
+
placeholder: string;
|
|
312
|
+
type: string;
|
|
313
|
+
key: string;
|
|
314
|
+
labelPath: string;
|
|
315
|
+
}[];
|
|
255
316
|
} | {
|
|
256
317
|
label: string;
|
|
257
|
-
placeholder: string;
|
|
258
318
|
type: string;
|
|
259
319
|
key: string;
|
|
260
|
-
|
|
320
|
+
placeholder?: undefined;
|
|
261
321
|
} | {
|
|
262
322
|
label: string;
|
|
263
323
|
placeholder: string;
|
|
264
324
|
type: string;
|
|
265
325
|
key: string;
|
|
266
|
-
subQuestion: any[];
|
|
267
326
|
})[];
|
|
268
327
|
appearance: ({
|
|
269
328
|
label: string;
|
|
270
329
|
type: string;
|
|
271
330
|
key: string;
|
|
272
331
|
placeholder: string;
|
|
273
|
-
options:
|
|
332
|
+
options: {
|
|
333
|
+
value: string;
|
|
334
|
+
label: string;
|
|
335
|
+
labelPath: string;
|
|
336
|
+
}[];
|
|
274
337
|
value?: undefined;
|
|
275
338
|
} | {
|
|
276
339
|
label: string;
|
|
@@ -306,33 +369,39 @@ export declare class PdfPropertiesComponent {
|
|
|
306
369
|
})[];
|
|
307
370
|
};
|
|
308
371
|
Pdf: {
|
|
309
|
-
elementProps: {
|
|
372
|
+
elementProps: ({
|
|
310
373
|
label: string;
|
|
311
374
|
labelPath: string;
|
|
312
375
|
type: string;
|
|
313
376
|
key: string;
|
|
314
|
-
|
|
315
|
-
|
|
377
|
+
placeholder?: undefined;
|
|
378
|
+
isTranslate?: undefined;
|
|
379
|
+
} | {
|
|
316
380
|
label: string;
|
|
317
|
-
labelPath: string;
|
|
318
381
|
placeholder: string;
|
|
319
382
|
type: string;
|
|
320
|
-
key
|
|
321
|
-
|
|
322
|
-
} | {
|
|
323
|
-
label: string;
|
|
383
|
+
key: string;
|
|
384
|
+
isTranslate: boolean;
|
|
324
385
|
labelPath: string;
|
|
325
|
-
|
|
386
|
+
})[];
|
|
387
|
+
fieldProps: ({
|
|
388
|
+
label: string;
|
|
326
389
|
type: string;
|
|
327
390
|
key: string;
|
|
328
|
-
|
|
391
|
+
labelPath: string;
|
|
392
|
+
subQuestion: {
|
|
393
|
+
label: string;
|
|
394
|
+
placeholder: string;
|
|
395
|
+
type: string;
|
|
396
|
+
key: string;
|
|
397
|
+
labelPath: string;
|
|
398
|
+
}[];
|
|
329
399
|
} | {
|
|
330
400
|
label: string;
|
|
331
401
|
labelPath: string;
|
|
332
402
|
placeholder: string;
|
|
333
403
|
type: string;
|
|
334
404
|
key: string;
|
|
335
|
-
subQuestion: any[];
|
|
336
405
|
})[];
|
|
337
406
|
appearance: any[];
|
|
338
407
|
};
|
|
@@ -343,18 +412,32 @@ export declare class PdfPropertiesComponent {
|
|
|
343
412
|
key: string;
|
|
344
413
|
placeholder?: undefined;
|
|
345
414
|
options?: undefined;
|
|
415
|
+
labelPath?: undefined;
|
|
346
416
|
} | {
|
|
347
417
|
label: string;
|
|
348
418
|
type: string;
|
|
349
419
|
key: string;
|
|
350
420
|
placeholder: string;
|
|
351
421
|
options?: undefined;
|
|
422
|
+
labelPath?: undefined;
|
|
352
423
|
} | {
|
|
353
424
|
label: string;
|
|
354
425
|
type: string;
|
|
355
426
|
key: string;
|
|
356
|
-
options:
|
|
427
|
+
options: {
|
|
428
|
+
value: string;
|
|
429
|
+
label: string;
|
|
430
|
+
labelPath: string;
|
|
431
|
+
}[];
|
|
357
432
|
placeholder?: undefined;
|
|
433
|
+
labelPath?: undefined;
|
|
434
|
+
} | {
|
|
435
|
+
label: string;
|
|
436
|
+
labelPath: string;
|
|
437
|
+
type: string;
|
|
438
|
+
key: string;
|
|
439
|
+
placeholder?: undefined;
|
|
440
|
+
options?: undefined;
|
|
358
441
|
})[];
|
|
359
442
|
fieldProps: any[];
|
|
360
443
|
appearance: ({
|
|
@@ -362,7 +445,11 @@ export declare class PdfPropertiesComponent {
|
|
|
362
445
|
type: string;
|
|
363
446
|
key: string;
|
|
364
447
|
placeholder: string;
|
|
365
|
-
options:
|
|
448
|
+
options: {
|
|
449
|
+
value: string;
|
|
450
|
+
label: string;
|
|
451
|
+
labelPath: string;
|
|
452
|
+
}[];
|
|
366
453
|
value?: undefined;
|
|
367
454
|
} | {
|
|
368
455
|
label: string;
|
|
@@ -398,18 +485,28 @@ export declare class PdfPropertiesComponent {
|
|
|
398
485
|
})[];
|
|
399
486
|
};
|
|
400
487
|
Space: {
|
|
401
|
-
elementProps: {
|
|
488
|
+
elementProps: ({
|
|
402
489
|
label: string;
|
|
403
490
|
type: string;
|
|
404
491
|
key: string;
|
|
405
|
-
|
|
492
|
+
labelPath?: undefined;
|
|
493
|
+
} | {
|
|
494
|
+
label: string;
|
|
495
|
+
labelPath: string;
|
|
496
|
+
type: string;
|
|
497
|
+
key: string;
|
|
498
|
+
})[];
|
|
406
499
|
fieldProps: any[];
|
|
407
500
|
appearance: ({
|
|
408
501
|
label: string;
|
|
409
502
|
type: string;
|
|
410
503
|
key: string;
|
|
411
504
|
placeholder: string;
|
|
412
|
-
options:
|
|
505
|
+
options: {
|
|
506
|
+
value: string;
|
|
507
|
+
label: string;
|
|
508
|
+
labelPath: string;
|
|
509
|
+
}[];
|
|
413
510
|
value?: undefined;
|
|
414
511
|
} | {
|
|
415
512
|
label: string;
|
|
@@ -450,11 +547,29 @@ export declare class PdfPropertiesComponent {
|
|
|
450
547
|
placeholder: string;
|
|
451
548
|
type: string;
|
|
452
549
|
key: string;
|
|
550
|
+
isTranslate?: undefined;
|
|
551
|
+
labelPath?: undefined;
|
|
453
552
|
} | {
|
|
454
553
|
label: string;
|
|
554
|
+
placeholder: string;
|
|
555
|
+
type: string;
|
|
556
|
+
key: string;
|
|
557
|
+
isTranslate: boolean;
|
|
558
|
+
labelPath: string;
|
|
559
|
+
} | {
|
|
560
|
+
label: string;
|
|
561
|
+
type: string;
|
|
562
|
+
key: string;
|
|
563
|
+
placeholder?: undefined;
|
|
564
|
+
isTranslate?: undefined;
|
|
565
|
+
labelPath?: undefined;
|
|
566
|
+
} | {
|
|
567
|
+
label: string;
|
|
568
|
+
labelPath: string;
|
|
455
569
|
type: string;
|
|
456
570
|
key: string;
|
|
457
571
|
placeholder?: undefined;
|
|
572
|
+
isTranslate?: undefined;
|
|
458
573
|
})[];
|
|
459
574
|
fieldProps: ({
|
|
460
575
|
label: string;
|
|
@@ -474,7 +589,11 @@ export declare class PdfPropertiesComponent {
|
|
|
474
589
|
type: string;
|
|
475
590
|
key: string;
|
|
476
591
|
placeholder: string;
|
|
477
|
-
options:
|
|
592
|
+
options: {
|
|
593
|
+
value: string;
|
|
594
|
+
label: string;
|
|
595
|
+
labelPath: string;
|
|
596
|
+
}[];
|
|
478
597
|
value?: undefined;
|
|
479
598
|
} | {
|
|
480
599
|
label: string;
|
|
@@ -517,8 +636,19 @@ export declare class PdfPropertiesComponent {
|
|
|
517
636
|
targetArray: string;
|
|
518
637
|
targetArrayKey: string;
|
|
519
638
|
key: string;
|
|
639
|
+
value?: undefined;
|
|
640
|
+
subQuestion?: undefined;
|
|
641
|
+
labelPath?: undefined;
|
|
642
|
+
} | {
|
|
643
|
+
label: string;
|
|
644
|
+
type: string;
|
|
645
|
+
targetArray: string;
|
|
646
|
+
targetArrayKey: string;
|
|
647
|
+
key: string;
|
|
648
|
+
value: string;
|
|
649
|
+
placeholder?: undefined;
|
|
520
650
|
subQuestion?: undefined;
|
|
521
|
-
|
|
651
|
+
labelPath?: undefined;
|
|
522
652
|
} | {
|
|
523
653
|
label: string;
|
|
524
654
|
placeholder: string;
|
|
@@ -534,90 +664,195 @@ export declare class PdfPropertiesComponent {
|
|
|
534
664
|
targetArrayKey: string;
|
|
535
665
|
key: string;
|
|
536
666
|
}[];
|
|
537
|
-
|
|
667
|
+
value?: undefined;
|
|
668
|
+
labelPath?: undefined;
|
|
538
669
|
} | {
|
|
539
670
|
label: string;
|
|
540
|
-
|
|
671
|
+
labelPath: string;
|
|
541
672
|
type: string;
|
|
542
673
|
key: string;
|
|
674
|
+
placeholder?: undefined;
|
|
543
675
|
targetArray?: undefined;
|
|
544
676
|
targetArrayKey?: undefined;
|
|
677
|
+
value?: undefined;
|
|
678
|
+
subQuestion?: undefined;
|
|
679
|
+
})[];
|
|
680
|
+
fieldProps: ({
|
|
681
|
+
label: string;
|
|
682
|
+
placeholder: string;
|
|
683
|
+
type: string;
|
|
684
|
+
targetArray: string;
|
|
685
|
+
targetArrayKey: string;
|
|
686
|
+
key: string;
|
|
687
|
+
labelPath?: undefined;
|
|
545
688
|
subQuestion?: undefined;
|
|
546
|
-
children?: undefined;
|
|
547
689
|
} | {
|
|
548
690
|
label: string;
|
|
549
691
|
type: string;
|
|
692
|
+
targetArray: string;
|
|
693
|
+
targetArrayKey: string;
|
|
550
694
|
key: string;
|
|
551
|
-
|
|
695
|
+
labelPath: string;
|
|
696
|
+
subQuestion: {
|
|
552
697
|
label: string;
|
|
698
|
+
placeholder: string;
|
|
553
699
|
type: string;
|
|
700
|
+
targetArray: string;
|
|
701
|
+
targetArrayKey: string;
|
|
554
702
|
key: string;
|
|
703
|
+
labelPath: string;
|
|
555
704
|
}[];
|
|
556
705
|
placeholder?: undefined;
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
706
|
+
})[];
|
|
707
|
+
appearance: ({
|
|
708
|
+
label: string;
|
|
709
|
+
type: string;
|
|
710
|
+
targetArray: string;
|
|
711
|
+
targetArrayKey: string;
|
|
712
|
+
key: string;
|
|
713
|
+
placeholder: string;
|
|
714
|
+
options: {
|
|
715
|
+
value: string;
|
|
716
|
+
label: string;
|
|
717
|
+
labelPath: string;
|
|
718
|
+
}[];
|
|
719
|
+
value?: undefined;
|
|
560
720
|
} | {
|
|
561
721
|
label: string;
|
|
562
722
|
type: string;
|
|
723
|
+
targetArray: string;
|
|
724
|
+
targetArrayKey: string;
|
|
563
725
|
key: string;
|
|
726
|
+
value: string;
|
|
564
727
|
placeholder?: undefined;
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
728
|
+
options?: undefined;
|
|
729
|
+
} | {
|
|
730
|
+
label: string;
|
|
731
|
+
type: string;
|
|
732
|
+
targetArray: string;
|
|
733
|
+
targetArrayKey: string;
|
|
734
|
+
key: string;
|
|
735
|
+
value: string;
|
|
736
|
+
options: {
|
|
737
|
+
label: string;
|
|
738
|
+
value: string;
|
|
739
|
+
}[];
|
|
740
|
+
placeholder?: undefined;
|
|
741
|
+
} | {
|
|
742
|
+
label: string;
|
|
743
|
+
type: string;
|
|
744
|
+
targetArray: string;
|
|
745
|
+
targetArrayKey: string;
|
|
746
|
+
key: string;
|
|
747
|
+
placeholder: string;
|
|
748
|
+
value: number[];
|
|
749
|
+
options?: undefined;
|
|
569
750
|
})[];
|
|
570
|
-
|
|
751
|
+
};
|
|
752
|
+
TextArea: {
|
|
753
|
+
elementProps: ({
|
|
754
|
+
label: string;
|
|
755
|
+
type: string;
|
|
756
|
+
key: string;
|
|
757
|
+
placeholder?: undefined;
|
|
758
|
+
isTranslate?: undefined;
|
|
759
|
+
labelPath?: undefined;
|
|
760
|
+
} | {
|
|
571
761
|
label: string;
|
|
572
762
|
placeholder: string;
|
|
573
763
|
type: string;
|
|
574
764
|
key: string;
|
|
575
|
-
|
|
576
|
-
|
|
765
|
+
isTranslate: boolean;
|
|
766
|
+
labelPath: string;
|
|
577
767
|
} | {
|
|
578
768
|
label: string;
|
|
769
|
+
labelPath: string;
|
|
579
770
|
type: string;
|
|
580
771
|
key: string;
|
|
581
772
|
placeholder?: undefined;
|
|
582
|
-
|
|
583
|
-
|
|
773
|
+
isTranslate?: undefined;
|
|
774
|
+
})[];
|
|
775
|
+
fieldProps: ({
|
|
776
|
+
label: string;
|
|
777
|
+
type: string;
|
|
778
|
+
key: string;
|
|
779
|
+
labelPath: string;
|
|
780
|
+
subQuestion: {
|
|
781
|
+
label: string;
|
|
782
|
+
placeholder: string;
|
|
783
|
+
type: string;
|
|
784
|
+
key: string;
|
|
785
|
+
labelPath: string;
|
|
786
|
+
}[];
|
|
584
787
|
} | {
|
|
585
788
|
label: string;
|
|
586
789
|
type: string;
|
|
587
|
-
targetArray: string;
|
|
588
|
-
targetArrayKey: string;
|
|
589
790
|
key: string;
|
|
590
791
|
placeholder?: undefined;
|
|
792
|
+
} | {
|
|
793
|
+
label: string;
|
|
794
|
+
placeholder: string;
|
|
795
|
+
type: string;
|
|
796
|
+
key: string;
|
|
591
797
|
})[];
|
|
592
798
|
appearance: ({
|
|
593
799
|
label: string;
|
|
800
|
+
type: string;
|
|
801
|
+
key: string;
|
|
594
802
|
placeholder: string;
|
|
803
|
+
options: {
|
|
804
|
+
value: string;
|
|
805
|
+
label: string;
|
|
806
|
+
labelPath: string;
|
|
807
|
+
}[];
|
|
808
|
+
value?: undefined;
|
|
809
|
+
} | {
|
|
810
|
+
label: string;
|
|
595
811
|
type: string;
|
|
596
812
|
key: string;
|
|
813
|
+
value: string;
|
|
814
|
+
placeholder?: undefined;
|
|
815
|
+
options?: undefined;
|
|
597
816
|
} | {
|
|
598
817
|
label: string;
|
|
599
818
|
type: string;
|
|
600
819
|
key: string;
|
|
820
|
+
value: string;
|
|
821
|
+
options: {
|
|
822
|
+
label: string;
|
|
823
|
+
value: string;
|
|
824
|
+
}[];
|
|
601
825
|
placeholder?: undefined;
|
|
602
826
|
})[];
|
|
603
827
|
};
|
|
604
|
-
|
|
605
|
-
elementProps: {
|
|
828
|
+
image: {
|
|
829
|
+
elementProps: ({
|
|
606
830
|
label: string;
|
|
607
831
|
type: string;
|
|
608
832
|
key: string;
|
|
609
|
-
|
|
610
|
-
|
|
833
|
+
placeholder?: undefined;
|
|
834
|
+
isTranslate?: undefined;
|
|
835
|
+
labelPath?: undefined;
|
|
836
|
+
} | {
|
|
611
837
|
label: string;
|
|
838
|
+
placeholder: string;
|
|
612
839
|
type: string;
|
|
613
840
|
key: string;
|
|
614
|
-
|
|
615
|
-
|
|
841
|
+
isTranslate: boolean;
|
|
842
|
+
labelPath: string;
|
|
616
843
|
} | {
|
|
617
844
|
label: string;
|
|
618
|
-
|
|
845
|
+
labelPath: string;
|
|
846
|
+
type: string;
|
|
847
|
+
key: string;
|
|
848
|
+
placeholder?: undefined;
|
|
849
|
+
isTranslate?: undefined;
|
|
850
|
+
})[];
|
|
851
|
+
fieldProps: ({
|
|
852
|
+
label: string;
|
|
619
853
|
type: string;
|
|
620
|
-
key
|
|
854
|
+
key: string;
|
|
855
|
+
placeholder?: undefined;
|
|
621
856
|
subQuestion?: undefined;
|
|
622
857
|
} | {
|
|
623
858
|
label: string;
|
|
@@ -637,7 +872,11 @@ export declare class PdfPropertiesComponent {
|
|
|
637
872
|
type: string;
|
|
638
873
|
key: string;
|
|
639
874
|
placeholder: string;
|
|
640
|
-
options:
|
|
875
|
+
options: {
|
|
876
|
+
value: string;
|
|
877
|
+
label: string;
|
|
878
|
+
labelPath: string;
|
|
879
|
+
}[];
|
|
641
880
|
value?: undefined;
|
|
642
881
|
} | {
|
|
643
882
|
label: string;
|
|
@@ -646,58 +885,95 @@ export declare class PdfPropertiesComponent {
|
|
|
646
885
|
value: string;
|
|
647
886
|
placeholder?: undefined;
|
|
648
887
|
options?: undefined;
|
|
888
|
+
} | {
|
|
889
|
+
label: string;
|
|
890
|
+
type: string;
|
|
891
|
+
key: string;
|
|
892
|
+
value: number;
|
|
893
|
+
placeholder?: undefined;
|
|
894
|
+
options?: undefined;
|
|
649
895
|
} | {
|
|
650
896
|
label: string;
|
|
651
897
|
type: string;
|
|
652
898
|
key: string;
|
|
653
899
|
value: string;
|
|
654
900
|
options: {
|
|
655
|
-
label: string;
|
|
656
901
|
value: string;
|
|
902
|
+
label: string;
|
|
657
903
|
}[];
|
|
658
904
|
placeholder?: undefined;
|
|
905
|
+
} | {
|
|
906
|
+
label: string;
|
|
907
|
+
type: string;
|
|
908
|
+
key: string;
|
|
909
|
+
placeholder: string;
|
|
910
|
+
value: number[];
|
|
911
|
+
options?: undefined;
|
|
659
912
|
})[];
|
|
660
913
|
};
|
|
661
|
-
|
|
662
|
-
elementProps: {
|
|
914
|
+
boolean: {
|
|
915
|
+
elementProps: ({
|
|
663
916
|
label: string;
|
|
917
|
+
labelPath: string;
|
|
918
|
+
placeholder: string;
|
|
664
919
|
type: string;
|
|
665
920
|
key: string;
|
|
666
|
-
|
|
667
|
-
|
|
921
|
+
isTranslate?: undefined;
|
|
922
|
+
} | {
|
|
668
923
|
label: string;
|
|
924
|
+
placeholder: string;
|
|
669
925
|
type: string;
|
|
670
926
|
key: string;
|
|
671
|
-
|
|
672
|
-
|
|
927
|
+
isTranslate: boolean;
|
|
928
|
+
labelPath: string;
|
|
673
929
|
} | {
|
|
674
930
|
label: string;
|
|
675
|
-
|
|
931
|
+
labelPath: string;
|
|
676
932
|
type: string;
|
|
677
|
-
key
|
|
678
|
-
|
|
933
|
+
key: string;
|
|
934
|
+
placeholder?: undefined;
|
|
935
|
+
isTranslate?: undefined;
|
|
936
|
+
})[];
|
|
937
|
+
fieldProps: ({
|
|
938
|
+
label: string;
|
|
939
|
+
type: string;
|
|
940
|
+
key: string;
|
|
941
|
+
labelPath: string;
|
|
942
|
+
subQuestion: {
|
|
943
|
+
label: string;
|
|
944
|
+
placeholder: string;
|
|
945
|
+
type: string;
|
|
946
|
+
key: string;
|
|
947
|
+
labelPath: string;
|
|
948
|
+
}[];
|
|
679
949
|
} | {
|
|
680
950
|
label: string;
|
|
681
|
-
|
|
951
|
+
labelPath: string;
|
|
682
952
|
type: string;
|
|
683
953
|
key: string;
|
|
684
|
-
|
|
954
|
+
placeholder?: undefined;
|
|
685
955
|
} | {
|
|
686
956
|
label: string;
|
|
957
|
+
labelPath: string;
|
|
687
958
|
placeholder: string;
|
|
688
959
|
type: string;
|
|
689
960
|
key: string;
|
|
690
|
-
subQuestion: any[];
|
|
691
961
|
})[];
|
|
692
962
|
appearance: ({
|
|
693
963
|
label: string;
|
|
964
|
+
labelPath: string;
|
|
694
965
|
type: string;
|
|
695
966
|
key: string;
|
|
696
967
|
placeholder: string;
|
|
697
|
-
options:
|
|
968
|
+
options: {
|
|
969
|
+
value: string;
|
|
970
|
+
label: string;
|
|
971
|
+
labelPath: string;
|
|
972
|
+
}[];
|
|
698
973
|
value?: undefined;
|
|
699
974
|
} | {
|
|
700
975
|
label: string;
|
|
976
|
+
labelPath: string;
|
|
701
977
|
type: string;
|
|
702
978
|
key: string;
|
|
703
979
|
value: string;
|
|
@@ -705,6 +981,7 @@ export declare class PdfPropertiesComponent {
|
|
|
705
981
|
options?: undefined;
|
|
706
982
|
} | {
|
|
707
983
|
label: string;
|
|
984
|
+
labelPath: string;
|
|
708
985
|
type: string;
|
|
709
986
|
key: string;
|
|
710
987
|
value: number;
|
|
@@ -712,16 +989,19 @@ export declare class PdfPropertiesComponent {
|
|
|
712
989
|
options?: undefined;
|
|
713
990
|
} | {
|
|
714
991
|
label: string;
|
|
992
|
+
labelPath: string;
|
|
715
993
|
type: string;
|
|
716
994
|
key: string;
|
|
717
995
|
value: string;
|
|
718
996
|
options: {
|
|
719
997
|
value: string;
|
|
720
998
|
label: string;
|
|
999
|
+
labelPath: string;
|
|
721
1000
|
}[];
|
|
722
1001
|
placeholder?: undefined;
|
|
723
1002
|
} | {
|
|
724
1003
|
label: string;
|
|
1004
|
+
labelPath: string;
|
|
725
1005
|
type: string;
|
|
726
1006
|
key: string;
|
|
727
1007
|
placeholder: string;
|
|
@@ -759,10 +1039,9 @@ export declare class PdfPropertiesComponent {
|
|
|
759
1039
|
onToggleChange(path: string, event: Event): void;
|
|
760
1040
|
validateInput(value: string, type: string): boolean;
|
|
761
1041
|
setValueByPath(path: string, value: any): void;
|
|
762
|
-
getStyleKeys(): string[];
|
|
763
1042
|
updateElement(element: any): void;
|
|
764
1043
|
getValueByArrayPath(targetArrayPath: any, targetArrayKey: string, selectColumn: string, keyPath: string): any;
|
|
765
|
-
updateValueByArrayPath(targetArrayPath: any, targetArrayKey: string, selectColumn: string, keyPath: string, event:
|
|
1044
|
+
updateValueByArrayPath(targetArrayPath: any, targetArrayKey: string, selectColumn: string, keyPath: string, event: any): void;
|
|
766
1045
|
getDataByPath(path: string): any;
|
|
767
1046
|
flipHorizontal(): void;
|
|
768
1047
|
flipVertical(): void;
|