@rangertechnologies/ngnxt 2.1.160 → 2.1.162
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/esm2022/environments/version.mjs +2 -2
- package/esm2022/lib/components/custom-dropdown/custom-dropdown.component.mjs +3 -3
- package/esm2022/lib/pages/pdfDesigner/pdf-designer/pdf-designer.component.mjs +5 -5
- package/esm2022/lib/pages/pdfDesigner/pdf-properties/pdf-properties.component.mjs +160 -118
- package/esm2022/lib/services/pdf-designer.service.mjs +130 -107
- package/fesm2022/rangertechnologies-ngnxt.mjs +295 -230
- package/fesm2022/rangertechnologies-ngnxt.mjs.map +1 -1
- package/lib/pages/pdfDesigner/pdf-properties/pdf-properties.component.d.ts +102 -81
- package/lib/services/pdf-designer.service.d.ts +1 -20
- package/package.json +1 -1
- package/rangertechnologies-ngnxt-2.1.162.tgz +0 -0
- package/rangertechnologies-ngnxt-2.1.160.tgz +0 -0
|
@@ -182,6 +182,45 @@ export declare class PdfPropertiesComponent {
|
|
|
182
182
|
placeholder?: undefined;
|
|
183
183
|
})[];
|
|
184
184
|
fieldProps: any[];
|
|
185
|
+
appearance: ({
|
|
186
|
+
label: string;
|
|
187
|
+
type: string;
|
|
188
|
+
key: string;
|
|
189
|
+
placeholder: string;
|
|
190
|
+
options: string[];
|
|
191
|
+
value?: undefined;
|
|
192
|
+
} | {
|
|
193
|
+
label: string;
|
|
194
|
+
type: string;
|
|
195
|
+
key: string;
|
|
196
|
+
value: string;
|
|
197
|
+
placeholder?: undefined;
|
|
198
|
+
options?: undefined;
|
|
199
|
+
} | {
|
|
200
|
+
label: string;
|
|
201
|
+
type: string;
|
|
202
|
+
key: string;
|
|
203
|
+
value: number;
|
|
204
|
+
placeholder?: undefined;
|
|
205
|
+
options?: undefined;
|
|
206
|
+
} | {
|
|
207
|
+
label: string;
|
|
208
|
+
type: string;
|
|
209
|
+
key: string;
|
|
210
|
+
value: string;
|
|
211
|
+
options: {
|
|
212
|
+
value: string;
|
|
213
|
+
label: string;
|
|
214
|
+
}[];
|
|
215
|
+
placeholder?: undefined;
|
|
216
|
+
} | {
|
|
217
|
+
label: string;
|
|
218
|
+
type: string;
|
|
219
|
+
key: string;
|
|
220
|
+
placeholder: string;
|
|
221
|
+
value: number[];
|
|
222
|
+
options?: undefined;
|
|
223
|
+
})[];
|
|
185
224
|
};
|
|
186
225
|
Space: {
|
|
187
226
|
elementProps: {
|
|
@@ -190,6 +229,45 @@ export declare class PdfPropertiesComponent {
|
|
|
190
229
|
key: string;
|
|
191
230
|
}[];
|
|
192
231
|
fieldProps: any[];
|
|
232
|
+
appearance: ({
|
|
233
|
+
label: string;
|
|
234
|
+
type: string;
|
|
235
|
+
key: string;
|
|
236
|
+
placeholder: string;
|
|
237
|
+
options: string[];
|
|
238
|
+
value?: undefined;
|
|
239
|
+
} | {
|
|
240
|
+
label: string;
|
|
241
|
+
type: string;
|
|
242
|
+
key: string;
|
|
243
|
+
value: string;
|
|
244
|
+
placeholder?: undefined;
|
|
245
|
+
options?: undefined;
|
|
246
|
+
} | {
|
|
247
|
+
label: string;
|
|
248
|
+
type: string;
|
|
249
|
+
key: string;
|
|
250
|
+
value: number;
|
|
251
|
+
placeholder?: undefined;
|
|
252
|
+
options?: undefined;
|
|
253
|
+
} | {
|
|
254
|
+
label: string;
|
|
255
|
+
type: string;
|
|
256
|
+
key: string;
|
|
257
|
+
value: string;
|
|
258
|
+
options: {
|
|
259
|
+
value: string;
|
|
260
|
+
label: string;
|
|
261
|
+
}[];
|
|
262
|
+
placeholder?: undefined;
|
|
263
|
+
} | {
|
|
264
|
+
label: string;
|
|
265
|
+
type: string;
|
|
266
|
+
key: string;
|
|
267
|
+
placeholder: string;
|
|
268
|
+
value: number[];
|
|
269
|
+
options?: undefined;
|
|
270
|
+
})[];
|
|
193
271
|
};
|
|
194
272
|
Table: {
|
|
195
273
|
elementProps: ({
|
|
@@ -230,16 +308,30 @@ export declare class PdfPropertiesComponent {
|
|
|
230
308
|
value: string;
|
|
231
309
|
placeholder?: undefined;
|
|
232
310
|
options?: undefined;
|
|
311
|
+
} | {
|
|
312
|
+
label: string;
|
|
313
|
+
type: string;
|
|
314
|
+
key: string;
|
|
315
|
+
value: number;
|
|
316
|
+
placeholder?: undefined;
|
|
317
|
+
options?: undefined;
|
|
233
318
|
} | {
|
|
234
319
|
label: string;
|
|
235
320
|
type: string;
|
|
236
321
|
key: string;
|
|
237
322
|
value: string;
|
|
238
323
|
options: {
|
|
239
|
-
label: string;
|
|
240
324
|
value: string;
|
|
325
|
+
label: string;
|
|
241
326
|
}[];
|
|
242
327
|
placeholder?: undefined;
|
|
328
|
+
} | {
|
|
329
|
+
label: string;
|
|
330
|
+
type: string;
|
|
331
|
+
key: string;
|
|
332
|
+
placeholder: string;
|
|
333
|
+
value: number[];
|
|
334
|
+
options?: undefined;
|
|
243
335
|
})[];
|
|
244
336
|
};
|
|
245
337
|
TableColumn: {
|
|
@@ -324,42 +416,14 @@ export declare class PdfPropertiesComponent {
|
|
|
324
416
|
})[];
|
|
325
417
|
appearance: ({
|
|
326
418
|
label: string;
|
|
327
|
-
type: string;
|
|
328
|
-
key: string;
|
|
329
419
|
placeholder: string;
|
|
330
|
-
options: string[];
|
|
331
|
-
value?: undefined;
|
|
332
|
-
} | {
|
|
333
|
-
label: string;
|
|
334
420
|
type: string;
|
|
335
421
|
key: string;
|
|
336
|
-
value: string;
|
|
337
|
-
placeholder?: undefined;
|
|
338
|
-
options?: undefined;
|
|
339
422
|
} | {
|
|
340
423
|
label: string;
|
|
341
424
|
type: string;
|
|
342
425
|
key: string;
|
|
343
|
-
value: number;
|
|
344
|
-
placeholder?: undefined;
|
|
345
|
-
options?: undefined;
|
|
346
|
-
} | {
|
|
347
|
-
label: string;
|
|
348
|
-
type: string;
|
|
349
|
-
key: string;
|
|
350
|
-
value: string;
|
|
351
|
-
options: {
|
|
352
|
-
value: string;
|
|
353
|
-
label: string;
|
|
354
|
-
}[];
|
|
355
426
|
placeholder?: undefined;
|
|
356
|
-
} | {
|
|
357
|
-
label: string;
|
|
358
|
-
type: string;
|
|
359
|
-
key: string;
|
|
360
|
-
placeholder: string;
|
|
361
|
-
value: number[];
|
|
362
|
-
options?: undefined;
|
|
363
427
|
})[];
|
|
364
428
|
};
|
|
365
429
|
TextArea: {
|
|
@@ -468,57 +532,7 @@ export declare class PdfPropertiesComponent {
|
|
|
468
532
|
label: string;
|
|
469
533
|
type: string;
|
|
470
534
|
key: string;
|
|
471
|
-
value:
|
|
472
|
-
options: {
|
|
473
|
-
label: string;
|
|
474
|
-
value: string;
|
|
475
|
-
}[];
|
|
476
|
-
placeholder?: undefined;
|
|
477
|
-
})[];
|
|
478
|
-
};
|
|
479
|
-
Label: {
|
|
480
|
-
elementProps: {
|
|
481
|
-
label: string;
|
|
482
|
-
type: string;
|
|
483
|
-
key: string;
|
|
484
|
-
}[];
|
|
485
|
-
fieldProps: ({
|
|
486
|
-
label: string;
|
|
487
|
-
type: string;
|
|
488
|
-
key: string;
|
|
489
|
-
placeholder?: undefined;
|
|
490
|
-
subQuestion?: undefined;
|
|
491
|
-
} | {
|
|
492
|
-
label: string;
|
|
493
|
-
placeholder: string;
|
|
494
|
-
type: string;
|
|
495
|
-
key?: undefined;
|
|
496
|
-
subQuestion?: undefined;
|
|
497
|
-
} | {
|
|
498
|
-
label: string;
|
|
499
|
-
placeholder: string;
|
|
500
|
-
type: string;
|
|
501
|
-
key: string;
|
|
502
|
-
subQuestion?: undefined;
|
|
503
|
-
} | {
|
|
504
|
-
label: string;
|
|
505
|
-
placeholder: string;
|
|
506
|
-
type: string;
|
|
507
|
-
key: string;
|
|
508
|
-
subQuestion: any[];
|
|
509
|
-
})[];
|
|
510
|
-
appearance: ({
|
|
511
|
-
label: string;
|
|
512
|
-
type: string;
|
|
513
|
-
key: string;
|
|
514
|
-
placeholder: string;
|
|
515
|
-
options: string[];
|
|
516
|
-
value?: undefined;
|
|
517
|
-
} | {
|
|
518
|
-
label: string;
|
|
519
|
-
type: string;
|
|
520
|
-
key: string;
|
|
521
|
-
value: string;
|
|
535
|
+
value: number;
|
|
522
536
|
placeholder?: undefined;
|
|
523
537
|
options?: undefined;
|
|
524
538
|
} | {
|
|
@@ -527,10 +541,17 @@ export declare class PdfPropertiesComponent {
|
|
|
527
541
|
key: string;
|
|
528
542
|
value: string;
|
|
529
543
|
options: {
|
|
530
|
-
label: string;
|
|
531
544
|
value: string;
|
|
545
|
+
label: string;
|
|
532
546
|
}[];
|
|
533
547
|
placeholder?: undefined;
|
|
548
|
+
} | {
|
|
549
|
+
label: string;
|
|
550
|
+
type: string;
|
|
551
|
+
key: string;
|
|
552
|
+
placeholder: string;
|
|
553
|
+
value: number[];
|
|
554
|
+
options?: undefined;
|
|
534
555
|
})[];
|
|
535
556
|
};
|
|
536
557
|
};
|
|
@@ -9,9 +9,7 @@ export declare class PdfDesignerService {
|
|
|
9
9
|
private selectedElementSubject;
|
|
10
10
|
private selectHeaderSubject;
|
|
11
11
|
private elementComponent;
|
|
12
|
-
summaryRowData: any;
|
|
13
12
|
pdf: any;
|
|
14
|
-
data: any;
|
|
15
13
|
unique_id: any;
|
|
16
14
|
tempElem: any[];
|
|
17
15
|
pdfElements$: Observable<any[]>;
|
|
@@ -40,27 +38,10 @@ export declare class PdfDesignerService {
|
|
|
40
38
|
sortElementsByOrder(): void;
|
|
41
39
|
getBook(): any;
|
|
42
40
|
downloadElement(): any;
|
|
43
|
-
|
|
44
|
-
content: any;
|
|
45
|
-
styles: {
|
|
46
|
-
header: {
|
|
47
|
-
fontSize: number;
|
|
48
|
-
bold: boolean;
|
|
49
|
-
margin: number[];
|
|
50
|
-
};
|
|
51
|
-
subheader: {
|
|
52
|
-
fontSize: number;
|
|
53
|
-
bold: boolean;
|
|
54
|
-
margin: number[];
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
};
|
|
41
|
+
convertToPdfLayout(input: any): any;
|
|
58
42
|
updateElementsOrder(updatedElements: any[]): void;
|
|
59
43
|
removeElementComponent(id: any): void;
|
|
60
44
|
elementUpdate(index: any, element: any): void;
|
|
61
|
-
convertToPdfLayout(input: any): any;
|
|
62
|
-
setSummaryRowData(data: any): void;
|
|
63
|
-
getSummaryRowData(): any;
|
|
64
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<PdfDesignerService, never>;
|
|
65
46
|
static ɵprov: i0.ɵɵInjectableDeclaration<PdfDesignerService>;
|
|
66
47
|
}
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|