@zentto/report-core 1.5.4 → 1.5.6
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/engine/band-engine.d.ts.map +1 -1
- package/dist/engine/band-engine.js +9 -2
- package/dist/engine/band-engine.js.map +1 -1
- package/dist/engine/join-resolver.d.ts +8 -0
- package/dist/engine/join-resolver.d.ts.map +1 -0
- package/dist/engine/join-resolver.js +106 -0
- package/dist/engine/join-resolver.js.map +1 -0
- package/dist/index.d.ts +4 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/dist/render/html-renderer.d.ts +3 -1
- package/dist/render/html-renderer.d.ts.map +1 -1
- package/dist/render/html-renderer.js +2 -2
- package/dist/render/html-renderer.js.map +1 -1
- package/dist/render/shared-styles.d.ts +10 -0
- package/dist/render/shared-styles.d.ts.map +1 -0
- package/dist/render/shared-styles.js +60 -0
- package/dist/render/shared-styles.js.map +1 -0
- package/dist/schema/report-schema.d.ts +267 -113
- package/dist/schema/report-schema.d.ts.map +1 -1
- package/dist/schema/report-schema.js +22 -0
- package/dist/schema/report-schema.js.map +1 -1
- package/dist/serialization/json.d.ts +58 -22
- package/dist/serialization/json.d.ts.map +1 -1
- package/dist/types.d.ts +34 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -42,17 +42,29 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
42
42
|
label: z.ZodOptional<z.ZodString>;
|
|
43
43
|
type: z.ZodEnum<["string", "number", "date", "boolean", "currency", "image"]>;
|
|
44
44
|
format: z.ZodOptional<z.ZodString>;
|
|
45
|
+
isPrimaryKey: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
nullable: z.ZodOptional<z.ZodBoolean>;
|
|
47
|
+
nativeType: z.ZodOptional<z.ZodString>;
|
|
45
48
|
}, "strip", z.ZodTypeAny, {
|
|
46
49
|
type: "string" | "number" | "boolean" | "image" | "date" | "currency";
|
|
47
50
|
name: string;
|
|
48
51
|
format?: string | undefined;
|
|
49
52
|
label?: string | undefined;
|
|
53
|
+
isPrimaryKey?: boolean | undefined;
|
|
54
|
+
nullable?: boolean | undefined;
|
|
55
|
+
nativeType?: string | undefined;
|
|
50
56
|
}, {
|
|
51
57
|
type: "string" | "number" | "boolean" | "image" | "date" | "currency";
|
|
52
58
|
name: string;
|
|
53
59
|
format?: string | undefined;
|
|
54
60
|
label?: string | undefined;
|
|
61
|
+
isPrimaryKey?: boolean | undefined;
|
|
62
|
+
nullable?: boolean | undefined;
|
|
63
|
+
nativeType?: string | undefined;
|
|
55
64
|
}>, "many">>;
|
|
65
|
+
connectionId: z.ZodOptional<z.ZodString>;
|
|
66
|
+
schema: z.ZodOptional<z.ZodString>;
|
|
67
|
+
table: z.ZodOptional<z.ZodString>;
|
|
56
68
|
}, "strip", z.ZodTypeAny, {
|
|
57
69
|
type: "object" | "array";
|
|
58
70
|
name: string;
|
|
@@ -62,7 +74,13 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
62
74
|
name: string;
|
|
63
75
|
format?: string | undefined;
|
|
64
76
|
label?: string | undefined;
|
|
77
|
+
isPrimaryKey?: boolean | undefined;
|
|
78
|
+
nullable?: boolean | undefined;
|
|
79
|
+
nativeType?: string | undefined;
|
|
65
80
|
}[] | undefined;
|
|
81
|
+
connectionId?: string | undefined;
|
|
82
|
+
schema?: string | undefined;
|
|
83
|
+
table?: string | undefined;
|
|
66
84
|
}, {
|
|
67
85
|
type: "object" | "array";
|
|
68
86
|
name: string;
|
|
@@ -72,8 +90,51 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
72
90
|
name: string;
|
|
73
91
|
format?: string | undefined;
|
|
74
92
|
label?: string | undefined;
|
|
93
|
+
isPrimaryKey?: boolean | undefined;
|
|
94
|
+
nullable?: boolean | undefined;
|
|
95
|
+
nativeType?: string | undefined;
|
|
75
96
|
}[] | undefined;
|
|
97
|
+
connectionId?: string | undefined;
|
|
98
|
+
schema?: string | undefined;
|
|
99
|
+
table?: string | undefined;
|
|
76
100
|
}>, "many">;
|
|
101
|
+
relations: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
102
|
+
id: z.ZodString;
|
|
103
|
+
parentSource: z.ZodString;
|
|
104
|
+
childSource: z.ZodString;
|
|
105
|
+
joins: z.ZodArray<z.ZodObject<{
|
|
106
|
+
parentField: z.ZodString;
|
|
107
|
+
childField: z.ZodString;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
parentField: string;
|
|
110
|
+
childField: string;
|
|
111
|
+
}, {
|
|
112
|
+
parentField: string;
|
|
113
|
+
childField: string;
|
|
114
|
+
}>, "many">;
|
|
115
|
+
joinType: z.ZodEnum<["inner", "left", "right", "full"]>;
|
|
116
|
+
alias: z.ZodOptional<z.ZodString>;
|
|
117
|
+
}, "strip", z.ZodTypeAny, {
|
|
118
|
+
id: string;
|
|
119
|
+
parentSource: string;
|
|
120
|
+
childSource: string;
|
|
121
|
+
joins: {
|
|
122
|
+
parentField: string;
|
|
123
|
+
childField: string;
|
|
124
|
+
}[];
|
|
125
|
+
joinType: "inner" | "left" | "right" | "full";
|
|
126
|
+
alias?: string | undefined;
|
|
127
|
+
}, {
|
|
128
|
+
id: string;
|
|
129
|
+
parentSource: string;
|
|
130
|
+
childSource: string;
|
|
131
|
+
joins: {
|
|
132
|
+
parentField: string;
|
|
133
|
+
childField: string;
|
|
134
|
+
}[];
|
|
135
|
+
joinType: "inner" | "left" | "right" | "full";
|
|
136
|
+
alias?: string | undefined;
|
|
137
|
+
}>, "many">>;
|
|
77
138
|
bands: z.ZodArray<z.ZodObject<{
|
|
78
139
|
id: z.ZodString;
|
|
79
140
|
type: z.ZodEnum<["reportHeader", "pageHeader", "groupHeader", "columnHeader", "detail", "columnFooter", "groupFooter", "pageFooter", "reportFooter"]>;
|
|
@@ -109,7 +170,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
109
170
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
110
171
|
fontStyle?: "normal" | "italic" | undefined;
|
|
111
172
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
112
|
-
textAlign?: "left" | "
|
|
173
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
113
174
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
114
175
|
color?: string | undefined;
|
|
115
176
|
backgroundColor?: string | undefined;
|
|
@@ -128,7 +189,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
128
189
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
129
190
|
fontStyle?: "normal" | "italic" | undefined;
|
|
130
191
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
131
|
-
textAlign?: "left" | "
|
|
192
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
132
193
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
133
194
|
color?: string | undefined;
|
|
134
195
|
backgroundColor?: string | undefined;
|
|
@@ -163,7 +224,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
163
224
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
164
225
|
fontStyle?: "normal" | "italic" | undefined;
|
|
165
226
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
166
|
-
textAlign?: "left" | "
|
|
227
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
167
228
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
168
229
|
color?: string | undefined;
|
|
169
230
|
backgroundColor?: string | undefined;
|
|
@@ -194,7 +255,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
194
255
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
195
256
|
fontStyle?: "normal" | "italic" | undefined;
|
|
196
257
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
197
|
-
textAlign?: "left" | "
|
|
258
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
198
259
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
199
260
|
color?: string | undefined;
|
|
200
261
|
backgroundColor?: string | undefined;
|
|
@@ -241,7 +302,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
241
302
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
242
303
|
fontStyle?: "normal" | "italic" | undefined;
|
|
243
304
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
244
|
-
textAlign?: "left" | "
|
|
305
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
245
306
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
246
307
|
color?: string | undefined;
|
|
247
308
|
backgroundColor?: string | undefined;
|
|
@@ -260,7 +321,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
260
321
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
261
322
|
fontStyle?: "normal" | "italic" | undefined;
|
|
262
323
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
263
|
-
textAlign?: "left" | "
|
|
324
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
264
325
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
265
326
|
color?: string | undefined;
|
|
266
327
|
backgroundColor?: string | undefined;
|
|
@@ -302,7 +363,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
302
363
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
303
364
|
fontStyle?: "normal" | "italic" | undefined;
|
|
304
365
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
305
|
-
textAlign?: "left" | "
|
|
366
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
306
367
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
307
368
|
color?: string | undefined;
|
|
308
369
|
backgroundColor?: string | undefined;
|
|
@@ -338,7 +399,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
338
399
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
339
400
|
fontStyle?: "normal" | "italic" | undefined;
|
|
340
401
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
341
|
-
textAlign?: "left" | "
|
|
402
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
342
403
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
343
404
|
color?: string | undefined;
|
|
344
405
|
backgroundColor?: string | undefined;
|
|
@@ -388,7 +449,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
388
449
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
389
450
|
fontStyle?: "normal" | "italic" | undefined;
|
|
390
451
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
391
|
-
textAlign?: "left" | "
|
|
452
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
392
453
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
393
454
|
color?: string | undefined;
|
|
394
455
|
backgroundColor?: string | undefined;
|
|
@@ -407,7 +468,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
407
468
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
408
469
|
fontStyle?: "normal" | "italic" | undefined;
|
|
409
470
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
410
|
-
textAlign?: "left" | "
|
|
471
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
411
472
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
412
473
|
color?: string | undefined;
|
|
413
474
|
backgroundColor?: string | undefined;
|
|
@@ -443,7 +504,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
443
504
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
444
505
|
fontStyle?: "normal" | "italic" | undefined;
|
|
445
506
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
446
|
-
textAlign?: "left" | "
|
|
507
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
447
508
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
448
509
|
color?: string | undefined;
|
|
449
510
|
backgroundColor?: string | undefined;
|
|
@@ -475,7 +536,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
475
536
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
476
537
|
fontStyle?: "normal" | "italic" | undefined;
|
|
477
538
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
478
|
-
textAlign?: "left" | "
|
|
539
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
479
540
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
480
541
|
color?: string | undefined;
|
|
481
542
|
backgroundColor?: string | undefined;
|
|
@@ -523,7 +584,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
523
584
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
524
585
|
fontStyle?: "normal" | "italic" | undefined;
|
|
525
586
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
526
|
-
textAlign?: "left" | "
|
|
587
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
527
588
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
528
589
|
color?: string | undefined;
|
|
529
590
|
backgroundColor?: string | undefined;
|
|
@@ -542,7 +603,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
542
603
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
543
604
|
fontStyle?: "normal" | "italic" | undefined;
|
|
544
605
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
545
|
-
textAlign?: "left" | "
|
|
606
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
546
607
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
547
608
|
color?: string | undefined;
|
|
548
609
|
backgroundColor?: string | undefined;
|
|
@@ -592,7 +653,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
592
653
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
593
654
|
fontStyle?: "normal" | "italic" | undefined;
|
|
594
655
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
595
|
-
textAlign?: "left" | "
|
|
656
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
596
657
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
597
658
|
color?: string | undefined;
|
|
598
659
|
backgroundColor?: string | undefined;
|
|
@@ -629,7 +690,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
629
690
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
630
691
|
fontStyle?: "normal" | "italic" | undefined;
|
|
631
692
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
632
|
-
textAlign?: "left" | "
|
|
693
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
633
694
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
634
695
|
color?: string | undefined;
|
|
635
696
|
backgroundColor?: string | undefined;
|
|
@@ -681,7 +742,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
681
742
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
682
743
|
fontStyle?: "normal" | "italic" | undefined;
|
|
683
744
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
684
|
-
textAlign?: "left" | "
|
|
745
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
685
746
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
686
747
|
color?: string | undefined;
|
|
687
748
|
backgroundColor?: string | undefined;
|
|
@@ -700,7 +761,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
700
761
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
701
762
|
fontStyle?: "normal" | "italic" | undefined;
|
|
702
763
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
703
|
-
textAlign?: "left" | "
|
|
764
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
704
765
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
705
766
|
color?: string | undefined;
|
|
706
767
|
backgroundColor?: string | undefined;
|
|
@@ -750,7 +811,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
750
811
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
751
812
|
fontStyle?: "normal" | "italic" | undefined;
|
|
752
813
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
753
|
-
textAlign?: "left" | "
|
|
814
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
754
815
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
755
816
|
color?: string | undefined;
|
|
756
817
|
backgroundColor?: string | undefined;
|
|
@@ -787,7 +848,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
787
848
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
788
849
|
fontStyle?: "normal" | "italic" | undefined;
|
|
789
850
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
790
|
-
textAlign?: "left" | "
|
|
851
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
791
852
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
792
853
|
color?: string | undefined;
|
|
793
854
|
backgroundColor?: string | undefined;
|
|
@@ -839,7 +900,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
839
900
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
840
901
|
fontStyle?: "normal" | "italic" | undefined;
|
|
841
902
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
842
|
-
textAlign?: "left" | "
|
|
903
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
843
904
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
844
905
|
color?: string | undefined;
|
|
845
906
|
backgroundColor?: string | undefined;
|
|
@@ -858,7 +919,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
858
919
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
859
920
|
fontStyle?: "normal" | "italic" | undefined;
|
|
860
921
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
861
|
-
textAlign?: "left" | "
|
|
922
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
862
923
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
863
924
|
color?: string | undefined;
|
|
864
925
|
backgroundColor?: string | undefined;
|
|
@@ -895,7 +956,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
895
956
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
896
957
|
fontStyle?: "normal" | "italic" | undefined;
|
|
897
958
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
898
|
-
textAlign?: "left" | "
|
|
959
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
899
960
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
900
961
|
color?: string | undefined;
|
|
901
962
|
backgroundColor?: string | undefined;
|
|
@@ -927,7 +988,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
927
988
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
928
989
|
fontStyle?: "normal" | "italic" | undefined;
|
|
929
990
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
930
|
-
textAlign?: "left" | "
|
|
991
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
931
992
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
932
993
|
color?: string | undefined;
|
|
933
994
|
backgroundColor?: string | undefined;
|
|
@@ -974,7 +1035,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
974
1035
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
975
1036
|
fontStyle?: "normal" | "italic" | undefined;
|
|
976
1037
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
977
|
-
textAlign?: "left" | "
|
|
1038
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
978
1039
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
979
1040
|
color?: string | undefined;
|
|
980
1041
|
backgroundColor?: string | undefined;
|
|
@@ -993,7 +1054,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
993
1054
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
994
1055
|
fontStyle?: "normal" | "italic" | undefined;
|
|
995
1056
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
996
|
-
textAlign?: "left" | "
|
|
1057
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
997
1058
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
998
1059
|
color?: string | undefined;
|
|
999
1060
|
backgroundColor?: string | undefined;
|
|
@@ -1028,7 +1089,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1028
1089
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1029
1090
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1030
1091
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1031
|
-
textAlign?: "left" | "
|
|
1092
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1032
1093
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1033
1094
|
color?: string | undefined;
|
|
1034
1095
|
backgroundColor?: string | undefined;
|
|
@@ -1059,7 +1120,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1059
1120
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1060
1121
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1061
1122
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1062
|
-
textAlign?: "left" | "
|
|
1123
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1063
1124
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1064
1125
|
color?: string | undefined;
|
|
1065
1126
|
backgroundColor?: string | undefined;
|
|
@@ -1106,7 +1167,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1106
1167
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1107
1168
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1108
1169
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1109
|
-
textAlign?: "left" | "
|
|
1170
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1110
1171
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1111
1172
|
color?: string | undefined;
|
|
1112
1173
|
backgroundColor?: string | undefined;
|
|
@@ -1125,7 +1186,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1125
1186
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1126
1187
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1127
1188
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1128
|
-
textAlign?: "left" | "
|
|
1189
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1129
1190
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1130
1191
|
color?: string | undefined;
|
|
1131
1192
|
backgroundColor?: string | undefined;
|
|
@@ -1158,7 +1219,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1158
1219
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1159
1220
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1160
1221
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1161
|
-
textAlign?: "left" | "
|
|
1222
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1162
1223
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1163
1224
|
color?: string | undefined;
|
|
1164
1225
|
backgroundColor?: string | undefined;
|
|
@@ -1188,7 +1249,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1188
1249
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1189
1250
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1190
1251
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1191
|
-
textAlign?: "left" | "
|
|
1252
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1192
1253
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1193
1254
|
color?: string | undefined;
|
|
1194
1255
|
backgroundColor?: string | undefined;
|
|
@@ -1235,7 +1296,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1235
1296
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1236
1297
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1237
1298
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1238
|
-
textAlign?: "left" | "
|
|
1299
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1239
1300
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1240
1301
|
color?: string | undefined;
|
|
1241
1302
|
backgroundColor?: string | undefined;
|
|
@@ -1254,7 +1315,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1254
1315
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1255
1316
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1256
1317
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1257
|
-
textAlign?: "left" | "
|
|
1318
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1258
1319
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1259
1320
|
color?: string | undefined;
|
|
1260
1321
|
backgroundColor?: string | undefined;
|
|
@@ -1289,7 +1350,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1289
1350
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1290
1351
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1291
1352
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1292
|
-
textAlign?: "left" | "
|
|
1353
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1293
1354
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1294
1355
|
color?: string | undefined;
|
|
1295
1356
|
backgroundColor?: string | undefined;
|
|
@@ -1320,7 +1381,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1320
1381
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1321
1382
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1322
1383
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1323
|
-
textAlign?: "left" | "
|
|
1384
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1324
1385
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1325
1386
|
color?: string | undefined;
|
|
1326
1387
|
backgroundColor?: string | undefined;
|
|
@@ -1343,6 +1404,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1343
1404
|
repeatOnEveryPage: z.ZodOptional<z.ZodBoolean>;
|
|
1344
1405
|
backgroundColor: z.ZodOptional<z.ZodString>;
|
|
1345
1406
|
visible: z.ZodOptional<z.ZodBoolean>;
|
|
1407
|
+
subBandIndex: z.ZodOptional<z.ZodNumber>;
|
|
1346
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1347
1409
|
type: "reportHeader" | "pageHeader" | "groupHeader" | "columnHeader" | "detail" | "columnFooter" | "groupFooter" | "pageFooter" | "reportFooter";
|
|
1348
1410
|
height: number;
|
|
@@ -1362,7 +1424,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1362
1424
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1363
1425
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1364
1426
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1365
|
-
textAlign?: "left" | "
|
|
1427
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1366
1428
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1367
1429
|
color?: string | undefined;
|
|
1368
1430
|
backgroundColor?: string | undefined;
|
|
@@ -1395,7 +1457,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1395
1457
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1396
1458
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1397
1459
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1398
|
-
textAlign?: "left" | "
|
|
1460
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1399
1461
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1400
1462
|
color?: string | undefined;
|
|
1401
1463
|
backgroundColor?: string | undefined;
|
|
@@ -1429,7 +1491,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1429
1491
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1430
1492
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1431
1493
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1432
|
-
textAlign?: "left" | "
|
|
1494
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1433
1495
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1434
1496
|
color?: string | undefined;
|
|
1435
1497
|
backgroundColor?: string | undefined;
|
|
@@ -1462,7 +1524,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1462
1524
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1463
1525
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1464
1526
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1465
|
-
textAlign?: "left" | "
|
|
1527
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1466
1528
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1467
1529
|
color?: string | undefined;
|
|
1468
1530
|
backgroundColor?: string | undefined;
|
|
@@ -1499,7 +1561,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1499
1561
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1500
1562
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1501
1563
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1502
|
-
textAlign?: "left" | "
|
|
1564
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1503
1565
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1504
1566
|
color?: string | undefined;
|
|
1505
1567
|
backgroundColor?: string | undefined;
|
|
@@ -1536,7 +1598,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1536
1598
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1537
1599
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1538
1600
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1539
|
-
textAlign?: "left" | "
|
|
1601
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1540
1602
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1541
1603
|
color?: string | undefined;
|
|
1542
1604
|
backgroundColor?: string | undefined;
|
|
@@ -1567,7 +1629,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1567
1629
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1568
1630
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1569
1631
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1570
|
-
textAlign?: "left" | "
|
|
1632
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1571
1633
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1572
1634
|
color?: string | undefined;
|
|
1573
1635
|
backgroundColor?: string | undefined;
|
|
@@ -1597,7 +1659,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1597
1659
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1598
1660
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1599
1661
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1600
|
-
textAlign?: "left" | "
|
|
1662
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1601
1663
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1602
1664
|
color?: string | undefined;
|
|
1603
1665
|
backgroundColor?: string | undefined;
|
|
@@ -1628,7 +1690,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1628
1690
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1629
1691
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1630
1692
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1631
|
-
textAlign?: "left" | "
|
|
1693
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1632
1694
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1633
1695
|
color?: string | undefined;
|
|
1634
1696
|
backgroundColor?: string | undefined;
|
|
@@ -1651,6 +1713,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1651
1713
|
groupField?: string | undefined;
|
|
1652
1714
|
keepTogether?: boolean | undefined;
|
|
1653
1715
|
repeatOnEveryPage?: boolean | undefined;
|
|
1716
|
+
subBandIndex?: number | undefined;
|
|
1654
1717
|
}, {
|
|
1655
1718
|
type: "reportHeader" | "pageHeader" | "groupHeader" | "columnHeader" | "detail" | "columnFooter" | "groupFooter" | "pageFooter" | "reportFooter";
|
|
1656
1719
|
height: number;
|
|
@@ -1670,7 +1733,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1670
1733
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1671
1734
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1672
1735
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1673
|
-
textAlign?: "left" | "
|
|
1736
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1674
1737
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1675
1738
|
color?: string | undefined;
|
|
1676
1739
|
backgroundColor?: string | undefined;
|
|
@@ -1703,7 +1766,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1703
1766
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1704
1767
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1705
1768
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1706
|
-
textAlign?: "left" | "
|
|
1769
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1707
1770
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1708
1771
|
color?: string | undefined;
|
|
1709
1772
|
backgroundColor?: string | undefined;
|
|
@@ -1737,7 +1800,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1737
1800
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1738
1801
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1739
1802
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1740
|
-
textAlign?: "left" | "
|
|
1803
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1741
1804
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1742
1805
|
color?: string | undefined;
|
|
1743
1806
|
backgroundColor?: string | undefined;
|
|
@@ -1770,7 +1833,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1770
1833
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1771
1834
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1772
1835
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1773
|
-
textAlign?: "left" | "
|
|
1836
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1774
1837
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1775
1838
|
color?: string | undefined;
|
|
1776
1839
|
backgroundColor?: string | undefined;
|
|
@@ -1807,7 +1870,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1807
1870
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1808
1871
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1809
1872
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1810
|
-
textAlign?: "left" | "
|
|
1873
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1811
1874
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1812
1875
|
color?: string | undefined;
|
|
1813
1876
|
backgroundColor?: string | undefined;
|
|
@@ -1844,7 +1907,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1844
1907
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1845
1908
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1846
1909
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1847
|
-
textAlign?: "left" | "
|
|
1910
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1848
1911
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1849
1912
|
color?: string | undefined;
|
|
1850
1913
|
backgroundColor?: string | undefined;
|
|
@@ -1875,7 +1938,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1875
1938
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1876
1939
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1877
1940
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1878
|
-
textAlign?: "left" | "
|
|
1941
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1879
1942
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1880
1943
|
color?: string | undefined;
|
|
1881
1944
|
backgroundColor?: string | undefined;
|
|
@@ -1905,7 +1968,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1905
1968
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1906
1969
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1907
1970
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1908
|
-
textAlign?: "left" | "
|
|
1971
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1909
1972
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1910
1973
|
color?: string | undefined;
|
|
1911
1974
|
backgroundColor?: string | undefined;
|
|
@@ -1936,7 +1999,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1936
1999
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
1937
2000
|
fontStyle?: "normal" | "italic" | undefined;
|
|
1938
2001
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
1939
|
-
textAlign?: "left" | "
|
|
2002
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
1940
2003
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
1941
2004
|
color?: string | undefined;
|
|
1942
2005
|
backgroundColor?: string | undefined;
|
|
@@ -1959,6 +2022,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
1959
2022
|
groupField?: string | undefined;
|
|
1960
2023
|
keepTogether?: boolean | undefined;
|
|
1961
2024
|
repeatOnEveryPage?: boolean | undefined;
|
|
2025
|
+
subBandIndex?: number | undefined;
|
|
1962
2026
|
}>, "many">;
|
|
1963
2027
|
groups: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1964
2028
|
field: z.ZodString;
|
|
@@ -2014,7 +2078,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2014
2078
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2015
2079
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2016
2080
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2017
|
-
textAlign?: "left" | "
|
|
2081
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2018
2082
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2019
2083
|
color?: string | undefined;
|
|
2020
2084
|
backgroundColor?: string | undefined;
|
|
@@ -2033,7 +2097,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2033
2097
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2034
2098
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2035
2099
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2036
|
-
textAlign?: "left" | "
|
|
2100
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2037
2101
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2038
2102
|
color?: string | undefined;
|
|
2039
2103
|
backgroundColor?: string | undefined;
|
|
@@ -2072,7 +2136,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2072
2136
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2073
2137
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2074
2138
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2075
|
-
textAlign?: "left" | "
|
|
2139
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2076
2140
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2077
2141
|
color?: string | undefined;
|
|
2078
2142
|
backgroundColor?: string | undefined;
|
|
@@ -2091,7 +2155,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2091
2155
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2092
2156
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2093
2157
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2094
|
-
textAlign?: "left" | "
|
|
2158
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2095
2159
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2096
2160
|
color?: string | undefined;
|
|
2097
2161
|
backgroundColor?: string | undefined;
|
|
@@ -2169,7 +2233,13 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2169
2233
|
name: string;
|
|
2170
2234
|
format?: string | undefined;
|
|
2171
2235
|
label?: string | undefined;
|
|
2236
|
+
isPrimaryKey?: boolean | undefined;
|
|
2237
|
+
nullable?: boolean | undefined;
|
|
2238
|
+
nativeType?: string | undefined;
|
|
2172
2239
|
}[] | undefined;
|
|
2240
|
+
connectionId?: string | undefined;
|
|
2241
|
+
schema?: string | undefined;
|
|
2242
|
+
table?: string | undefined;
|
|
2173
2243
|
}[];
|
|
2174
2244
|
bands: {
|
|
2175
2245
|
type: "reportHeader" | "pageHeader" | "groupHeader" | "columnHeader" | "detail" | "columnFooter" | "groupFooter" | "pageFooter" | "reportFooter";
|
|
@@ -2190,7 +2260,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2190
2260
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2191
2261
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2192
2262
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2193
|
-
textAlign?: "left" | "
|
|
2263
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2194
2264
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2195
2265
|
color?: string | undefined;
|
|
2196
2266
|
backgroundColor?: string | undefined;
|
|
@@ -2223,7 +2293,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2223
2293
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2224
2294
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2225
2295
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2226
|
-
textAlign?: "left" | "
|
|
2296
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2227
2297
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2228
2298
|
color?: string | undefined;
|
|
2229
2299
|
backgroundColor?: string | undefined;
|
|
@@ -2257,7 +2327,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2257
2327
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2258
2328
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2259
2329
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2260
|
-
textAlign?: "left" | "
|
|
2330
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2261
2331
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2262
2332
|
color?: string | undefined;
|
|
2263
2333
|
backgroundColor?: string | undefined;
|
|
@@ -2290,7 +2360,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2290
2360
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2291
2361
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2292
2362
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2293
|
-
textAlign?: "left" | "
|
|
2363
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2294
2364
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2295
2365
|
color?: string | undefined;
|
|
2296
2366
|
backgroundColor?: string | undefined;
|
|
@@ -2327,7 +2397,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2327
2397
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2328
2398
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2329
2399
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2330
|
-
textAlign?: "left" | "
|
|
2400
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2331
2401
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2332
2402
|
color?: string | undefined;
|
|
2333
2403
|
backgroundColor?: string | undefined;
|
|
@@ -2364,7 +2434,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2364
2434
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2365
2435
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2366
2436
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2367
|
-
textAlign?: "left" | "
|
|
2437
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2368
2438
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2369
2439
|
color?: string | undefined;
|
|
2370
2440
|
backgroundColor?: string | undefined;
|
|
@@ -2395,7 +2465,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2395
2465
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2396
2466
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2397
2467
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2398
|
-
textAlign?: "left" | "
|
|
2468
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2399
2469
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2400
2470
|
color?: string | undefined;
|
|
2401
2471
|
backgroundColor?: string | undefined;
|
|
@@ -2425,7 +2495,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2425
2495
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2426
2496
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2427
2497
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2428
|
-
textAlign?: "left" | "
|
|
2498
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2429
2499
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2430
2500
|
color?: string | undefined;
|
|
2431
2501
|
backgroundColor?: string | undefined;
|
|
@@ -2456,7 +2526,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2456
2526
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2457
2527
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2458
2528
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2459
|
-
textAlign?: "left" | "
|
|
2529
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2460
2530
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2461
2531
|
color?: string | undefined;
|
|
2462
2532
|
backgroundColor?: string | undefined;
|
|
@@ -2479,6 +2549,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2479
2549
|
groupField?: string | undefined;
|
|
2480
2550
|
keepTogether?: boolean | undefined;
|
|
2481
2551
|
repeatOnEveryPage?: boolean | undefined;
|
|
2552
|
+
subBandIndex?: number | undefined;
|
|
2482
2553
|
}[];
|
|
2483
2554
|
parameters?: {
|
|
2484
2555
|
type: "string" | "number" | "boolean" | "date" | "select";
|
|
@@ -2494,6 +2565,17 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2494
2565
|
}[] | undefined;
|
|
2495
2566
|
description?: string | undefined;
|
|
2496
2567
|
orientation?: "portrait" | "landscape" | undefined;
|
|
2568
|
+
relations?: {
|
|
2569
|
+
id: string;
|
|
2570
|
+
parentSource: string;
|
|
2571
|
+
childSource: string;
|
|
2572
|
+
joins: {
|
|
2573
|
+
parentField: string;
|
|
2574
|
+
childField: string;
|
|
2575
|
+
}[];
|
|
2576
|
+
joinType: "inner" | "left" | "right" | "full";
|
|
2577
|
+
alias?: string | undefined;
|
|
2578
|
+
}[] | undefined;
|
|
2497
2579
|
groups?: {
|
|
2498
2580
|
field: string;
|
|
2499
2581
|
headerBandId: string;
|
|
@@ -2511,7 +2593,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2511
2593
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2512
2594
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2513
2595
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2514
|
-
textAlign?: "left" | "
|
|
2596
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2515
2597
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2516
2598
|
color?: string | undefined;
|
|
2517
2599
|
backgroundColor?: string | undefined;
|
|
@@ -2531,7 +2613,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2531
2613
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2532
2614
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2533
2615
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2534
|
-
textAlign?: "left" | "
|
|
2616
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2535
2617
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2536
2618
|
color?: string | undefined;
|
|
2537
2619
|
backgroundColor?: string | undefined;
|
|
@@ -2569,7 +2651,13 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2569
2651
|
name: string;
|
|
2570
2652
|
format?: string | undefined;
|
|
2571
2653
|
label?: string | undefined;
|
|
2654
|
+
isPrimaryKey?: boolean | undefined;
|
|
2655
|
+
nullable?: boolean | undefined;
|
|
2656
|
+
nativeType?: string | undefined;
|
|
2572
2657
|
}[] | undefined;
|
|
2658
|
+
connectionId?: string | undefined;
|
|
2659
|
+
schema?: string | undefined;
|
|
2660
|
+
table?: string | undefined;
|
|
2573
2661
|
}[];
|
|
2574
2662
|
bands: {
|
|
2575
2663
|
type: "reportHeader" | "pageHeader" | "groupHeader" | "columnHeader" | "detail" | "columnFooter" | "groupFooter" | "pageFooter" | "reportFooter";
|
|
@@ -2590,7 +2678,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2590
2678
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2591
2679
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2592
2680
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2593
|
-
textAlign?: "left" | "
|
|
2681
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2594
2682
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2595
2683
|
color?: string | undefined;
|
|
2596
2684
|
backgroundColor?: string | undefined;
|
|
@@ -2623,7 +2711,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2623
2711
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2624
2712
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2625
2713
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2626
|
-
textAlign?: "left" | "
|
|
2714
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2627
2715
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2628
2716
|
color?: string | undefined;
|
|
2629
2717
|
backgroundColor?: string | undefined;
|
|
@@ -2657,7 +2745,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2657
2745
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2658
2746
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2659
2747
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2660
|
-
textAlign?: "left" | "
|
|
2748
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2661
2749
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2662
2750
|
color?: string | undefined;
|
|
2663
2751
|
backgroundColor?: string | undefined;
|
|
@@ -2690,7 +2778,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2690
2778
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2691
2779
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2692
2780
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2693
|
-
textAlign?: "left" | "
|
|
2781
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2694
2782
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2695
2783
|
color?: string | undefined;
|
|
2696
2784
|
backgroundColor?: string | undefined;
|
|
@@ -2727,7 +2815,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2727
2815
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2728
2816
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2729
2817
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2730
|
-
textAlign?: "left" | "
|
|
2818
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2731
2819
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2732
2820
|
color?: string | undefined;
|
|
2733
2821
|
backgroundColor?: string | undefined;
|
|
@@ -2764,7 +2852,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2764
2852
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2765
2853
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2766
2854
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2767
|
-
textAlign?: "left" | "
|
|
2855
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2768
2856
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2769
2857
|
color?: string | undefined;
|
|
2770
2858
|
backgroundColor?: string | undefined;
|
|
@@ -2795,7 +2883,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2795
2883
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2796
2884
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2797
2885
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2798
|
-
textAlign?: "left" | "
|
|
2886
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2799
2887
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2800
2888
|
color?: string | undefined;
|
|
2801
2889
|
backgroundColor?: string | undefined;
|
|
@@ -2825,7 +2913,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2825
2913
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2826
2914
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2827
2915
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2828
|
-
textAlign?: "left" | "
|
|
2916
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2829
2917
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2830
2918
|
color?: string | undefined;
|
|
2831
2919
|
backgroundColor?: string | undefined;
|
|
@@ -2856,7 +2944,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2856
2944
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2857
2945
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2858
2946
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2859
|
-
textAlign?: "left" | "
|
|
2947
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2860
2948
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2861
2949
|
color?: string | undefined;
|
|
2862
2950
|
backgroundColor?: string | undefined;
|
|
@@ -2879,6 +2967,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2879
2967
|
groupField?: string | undefined;
|
|
2880
2968
|
keepTogether?: boolean | undefined;
|
|
2881
2969
|
repeatOnEveryPage?: boolean | undefined;
|
|
2970
|
+
subBandIndex?: number | undefined;
|
|
2882
2971
|
}[];
|
|
2883
2972
|
parameters?: {
|
|
2884
2973
|
type: "string" | "number" | "boolean" | "date" | "select";
|
|
@@ -2894,6 +2983,17 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2894
2983
|
}[] | undefined;
|
|
2895
2984
|
description?: string | undefined;
|
|
2896
2985
|
orientation?: "portrait" | "landscape" | undefined;
|
|
2986
|
+
relations?: {
|
|
2987
|
+
id: string;
|
|
2988
|
+
parentSource: string;
|
|
2989
|
+
childSource: string;
|
|
2990
|
+
joins: {
|
|
2991
|
+
parentField: string;
|
|
2992
|
+
childField: string;
|
|
2993
|
+
}[];
|
|
2994
|
+
joinType: "inner" | "left" | "right" | "full";
|
|
2995
|
+
alias?: string | undefined;
|
|
2996
|
+
}[] | undefined;
|
|
2897
2997
|
groups?: {
|
|
2898
2998
|
field: string;
|
|
2899
2999
|
headerBandId: string;
|
|
@@ -2911,7 +3011,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2911
3011
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2912
3012
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2913
3013
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2914
|
-
textAlign?: "left" | "
|
|
3014
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2915
3015
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2916
3016
|
color?: string | undefined;
|
|
2917
3017
|
backgroundColor?: string | undefined;
|
|
@@ -2931,7 +3031,7 @@ export declare const reportLayoutSchema: z.ZodObject<{
|
|
|
2931
3031
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2932
3032
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2933
3033
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2934
|
-
textAlign?: "left" | "
|
|
3034
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2935
3035
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2936
3036
|
color?: string | undefined;
|
|
2937
3037
|
backgroundColor?: string | undefined;
|
|
@@ -2971,7 +3071,13 @@ export declare function validateLayout(data: unknown): {
|
|
|
2971
3071
|
name: string;
|
|
2972
3072
|
format?: string | undefined;
|
|
2973
3073
|
label?: string | undefined;
|
|
3074
|
+
isPrimaryKey?: boolean | undefined;
|
|
3075
|
+
nullable?: boolean | undefined;
|
|
3076
|
+
nativeType?: string | undefined;
|
|
2974
3077
|
}[] | undefined;
|
|
3078
|
+
connectionId?: string | undefined;
|
|
3079
|
+
schema?: string | undefined;
|
|
3080
|
+
table?: string | undefined;
|
|
2975
3081
|
}[];
|
|
2976
3082
|
bands: {
|
|
2977
3083
|
type: "reportHeader" | "pageHeader" | "groupHeader" | "columnHeader" | "detail" | "columnFooter" | "groupFooter" | "pageFooter" | "reportFooter";
|
|
@@ -2992,7 +3098,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
2992
3098
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
2993
3099
|
fontStyle?: "normal" | "italic" | undefined;
|
|
2994
3100
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
2995
|
-
textAlign?: "left" | "
|
|
3101
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
2996
3102
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
2997
3103
|
color?: string | undefined;
|
|
2998
3104
|
backgroundColor?: string | undefined;
|
|
@@ -3025,7 +3131,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3025
3131
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3026
3132
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3027
3133
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3028
|
-
textAlign?: "left" | "
|
|
3134
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3029
3135
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3030
3136
|
color?: string | undefined;
|
|
3031
3137
|
backgroundColor?: string | undefined;
|
|
@@ -3059,7 +3165,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3059
3165
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3060
3166
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3061
3167
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3062
|
-
textAlign?: "left" | "
|
|
3168
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3063
3169
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3064
3170
|
color?: string | undefined;
|
|
3065
3171
|
backgroundColor?: string | undefined;
|
|
@@ -3092,7 +3198,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3092
3198
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3093
3199
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3094
3200
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3095
|
-
textAlign?: "left" | "
|
|
3201
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3096
3202
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3097
3203
|
color?: string | undefined;
|
|
3098
3204
|
backgroundColor?: string | undefined;
|
|
@@ -3129,7 +3235,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3129
3235
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3130
3236
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3131
3237
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3132
|
-
textAlign?: "left" | "
|
|
3238
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3133
3239
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3134
3240
|
color?: string | undefined;
|
|
3135
3241
|
backgroundColor?: string | undefined;
|
|
@@ -3166,7 +3272,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3166
3272
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3167
3273
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3168
3274
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3169
|
-
textAlign?: "left" | "
|
|
3275
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3170
3276
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3171
3277
|
color?: string | undefined;
|
|
3172
3278
|
backgroundColor?: string | undefined;
|
|
@@ -3197,7 +3303,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3197
3303
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3198
3304
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3199
3305
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3200
|
-
textAlign?: "left" | "
|
|
3306
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3201
3307
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3202
3308
|
color?: string | undefined;
|
|
3203
3309
|
backgroundColor?: string | undefined;
|
|
@@ -3227,7 +3333,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3227
3333
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3228
3334
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3229
3335
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3230
|
-
textAlign?: "left" | "
|
|
3336
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3231
3337
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3232
3338
|
color?: string | undefined;
|
|
3233
3339
|
backgroundColor?: string | undefined;
|
|
@@ -3258,7 +3364,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3258
3364
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3259
3365
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3260
3366
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3261
|
-
textAlign?: "left" | "
|
|
3367
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3262
3368
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3263
3369
|
color?: string | undefined;
|
|
3264
3370
|
backgroundColor?: string | undefined;
|
|
@@ -3281,6 +3387,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3281
3387
|
groupField?: string | undefined;
|
|
3282
3388
|
keepTogether?: boolean | undefined;
|
|
3283
3389
|
repeatOnEveryPage?: boolean | undefined;
|
|
3390
|
+
subBandIndex?: number | undefined;
|
|
3284
3391
|
}[];
|
|
3285
3392
|
parameters?: {
|
|
3286
3393
|
type: "string" | "number" | "boolean" | "date" | "select";
|
|
@@ -3296,6 +3403,17 @@ export declare function validateLayout(data: unknown): {
|
|
|
3296
3403
|
}[] | undefined;
|
|
3297
3404
|
description?: string | undefined;
|
|
3298
3405
|
orientation?: "portrait" | "landscape" | undefined;
|
|
3406
|
+
relations?: {
|
|
3407
|
+
id: string;
|
|
3408
|
+
parentSource: string;
|
|
3409
|
+
childSource: string;
|
|
3410
|
+
joins: {
|
|
3411
|
+
parentField: string;
|
|
3412
|
+
childField: string;
|
|
3413
|
+
}[];
|
|
3414
|
+
joinType: "inner" | "left" | "right" | "full";
|
|
3415
|
+
alias?: string | undefined;
|
|
3416
|
+
}[] | undefined;
|
|
3299
3417
|
groups?: {
|
|
3300
3418
|
field: string;
|
|
3301
3419
|
headerBandId: string;
|
|
@@ -3313,7 +3431,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3313
3431
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3314
3432
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3315
3433
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3316
|
-
textAlign?: "left" | "
|
|
3434
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3317
3435
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3318
3436
|
color?: string | undefined;
|
|
3319
3437
|
backgroundColor?: string | undefined;
|
|
@@ -3333,7 +3451,7 @@ export declare function validateLayout(data: unknown): {
|
|
|
3333
3451
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3334
3452
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3335
3453
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3336
|
-
textAlign?: "left" | "
|
|
3454
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3337
3455
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3338
3456
|
color?: string | undefined;
|
|
3339
3457
|
backgroundColor?: string | undefined;
|
|
@@ -3373,7 +3491,13 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3373
3491
|
name: string;
|
|
3374
3492
|
format?: string | undefined;
|
|
3375
3493
|
label?: string | undefined;
|
|
3494
|
+
isPrimaryKey?: boolean | undefined;
|
|
3495
|
+
nullable?: boolean | undefined;
|
|
3496
|
+
nativeType?: string | undefined;
|
|
3376
3497
|
}[] | undefined;
|
|
3498
|
+
connectionId?: string | undefined;
|
|
3499
|
+
schema?: string | undefined;
|
|
3500
|
+
table?: string | undefined;
|
|
3377
3501
|
}[];
|
|
3378
3502
|
bands: {
|
|
3379
3503
|
type: "reportHeader" | "pageHeader" | "groupHeader" | "columnHeader" | "detail" | "columnFooter" | "groupFooter" | "pageFooter" | "reportFooter";
|
|
@@ -3394,7 +3518,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3394
3518
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3395
3519
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3396
3520
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3397
|
-
textAlign?: "left" | "
|
|
3521
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3398
3522
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3399
3523
|
color?: string | undefined;
|
|
3400
3524
|
backgroundColor?: string | undefined;
|
|
@@ -3427,7 +3551,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3427
3551
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3428
3552
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3429
3553
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3430
|
-
textAlign?: "left" | "
|
|
3554
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3431
3555
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3432
3556
|
color?: string | undefined;
|
|
3433
3557
|
backgroundColor?: string | undefined;
|
|
@@ -3461,7 +3585,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3461
3585
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3462
3586
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3463
3587
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3464
|
-
textAlign?: "left" | "
|
|
3588
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3465
3589
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3466
3590
|
color?: string | undefined;
|
|
3467
3591
|
backgroundColor?: string | undefined;
|
|
@@ -3494,7 +3618,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3494
3618
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3495
3619
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3496
3620
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3497
|
-
textAlign?: "left" | "
|
|
3621
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3498
3622
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3499
3623
|
color?: string | undefined;
|
|
3500
3624
|
backgroundColor?: string | undefined;
|
|
@@ -3531,7 +3655,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3531
3655
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3532
3656
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3533
3657
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3534
|
-
textAlign?: "left" | "
|
|
3658
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3535
3659
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3536
3660
|
color?: string | undefined;
|
|
3537
3661
|
backgroundColor?: string | undefined;
|
|
@@ -3568,7 +3692,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3568
3692
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3569
3693
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3570
3694
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3571
|
-
textAlign?: "left" | "
|
|
3695
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3572
3696
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3573
3697
|
color?: string | undefined;
|
|
3574
3698
|
backgroundColor?: string | undefined;
|
|
@@ -3599,7 +3723,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3599
3723
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3600
3724
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3601
3725
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3602
|
-
textAlign?: "left" | "
|
|
3726
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3603
3727
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3604
3728
|
color?: string | undefined;
|
|
3605
3729
|
backgroundColor?: string | undefined;
|
|
@@ -3629,7 +3753,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3629
3753
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3630
3754
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3631
3755
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3632
|
-
textAlign?: "left" | "
|
|
3756
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3633
3757
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3634
3758
|
color?: string | undefined;
|
|
3635
3759
|
backgroundColor?: string | undefined;
|
|
@@ -3660,7 +3784,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3660
3784
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3661
3785
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3662
3786
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3663
|
-
textAlign?: "left" | "
|
|
3787
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3664
3788
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3665
3789
|
color?: string | undefined;
|
|
3666
3790
|
backgroundColor?: string | undefined;
|
|
@@ -3683,6 +3807,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3683
3807
|
groupField?: string | undefined;
|
|
3684
3808
|
keepTogether?: boolean | undefined;
|
|
3685
3809
|
repeatOnEveryPage?: boolean | undefined;
|
|
3810
|
+
subBandIndex?: number | undefined;
|
|
3686
3811
|
}[];
|
|
3687
3812
|
parameters?: {
|
|
3688
3813
|
type: "string" | "number" | "boolean" | "date" | "select";
|
|
@@ -3698,6 +3823,17 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3698
3823
|
}[] | undefined;
|
|
3699
3824
|
description?: string | undefined;
|
|
3700
3825
|
orientation?: "portrait" | "landscape" | undefined;
|
|
3826
|
+
relations?: {
|
|
3827
|
+
id: string;
|
|
3828
|
+
parentSource: string;
|
|
3829
|
+
childSource: string;
|
|
3830
|
+
joins: {
|
|
3831
|
+
parentField: string;
|
|
3832
|
+
childField: string;
|
|
3833
|
+
}[];
|
|
3834
|
+
joinType: "inner" | "left" | "right" | "full";
|
|
3835
|
+
alias?: string | undefined;
|
|
3836
|
+
}[] | undefined;
|
|
3701
3837
|
groups?: {
|
|
3702
3838
|
field: string;
|
|
3703
3839
|
headerBandId: string;
|
|
@@ -3715,7 +3851,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3715
3851
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3716
3852
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3717
3853
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3718
|
-
textAlign?: "left" | "
|
|
3854
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3719
3855
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3720
3856
|
color?: string | undefined;
|
|
3721
3857
|
backgroundColor?: string | undefined;
|
|
@@ -3735,7 +3871,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3735
3871
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3736
3872
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3737
3873
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3738
|
-
textAlign?: "left" | "
|
|
3874
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3739
3875
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3740
3876
|
color?: string | undefined;
|
|
3741
3877
|
backgroundColor?: string | undefined;
|
|
@@ -3773,7 +3909,13 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3773
3909
|
name: string;
|
|
3774
3910
|
format?: string | undefined;
|
|
3775
3911
|
label?: string | undefined;
|
|
3912
|
+
isPrimaryKey?: boolean | undefined;
|
|
3913
|
+
nullable?: boolean | undefined;
|
|
3914
|
+
nativeType?: string | undefined;
|
|
3776
3915
|
}[] | undefined;
|
|
3916
|
+
connectionId?: string | undefined;
|
|
3917
|
+
schema?: string | undefined;
|
|
3918
|
+
table?: string | undefined;
|
|
3777
3919
|
}[];
|
|
3778
3920
|
bands: {
|
|
3779
3921
|
type: "reportHeader" | "pageHeader" | "groupHeader" | "columnHeader" | "detail" | "columnFooter" | "groupFooter" | "pageFooter" | "reportFooter";
|
|
@@ -3794,7 +3936,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3794
3936
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3795
3937
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3796
3938
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3797
|
-
textAlign?: "left" | "
|
|
3939
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3798
3940
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3799
3941
|
color?: string | undefined;
|
|
3800
3942
|
backgroundColor?: string | undefined;
|
|
@@ -3827,7 +3969,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3827
3969
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3828
3970
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3829
3971
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3830
|
-
textAlign?: "left" | "
|
|
3972
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3831
3973
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3832
3974
|
color?: string | undefined;
|
|
3833
3975
|
backgroundColor?: string | undefined;
|
|
@@ -3861,7 +4003,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3861
4003
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3862
4004
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3863
4005
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3864
|
-
textAlign?: "left" | "
|
|
4006
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3865
4007
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3866
4008
|
color?: string | undefined;
|
|
3867
4009
|
backgroundColor?: string | undefined;
|
|
@@ -3894,7 +4036,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3894
4036
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3895
4037
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3896
4038
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3897
|
-
textAlign?: "left" | "
|
|
4039
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3898
4040
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3899
4041
|
color?: string | undefined;
|
|
3900
4042
|
backgroundColor?: string | undefined;
|
|
@@ -3931,7 +4073,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3931
4073
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3932
4074
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3933
4075
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3934
|
-
textAlign?: "left" | "
|
|
4076
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3935
4077
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3936
4078
|
color?: string | undefined;
|
|
3937
4079
|
backgroundColor?: string | undefined;
|
|
@@ -3968,7 +4110,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3968
4110
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
3969
4111
|
fontStyle?: "normal" | "italic" | undefined;
|
|
3970
4112
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
3971
|
-
textAlign?: "left" | "
|
|
4113
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
3972
4114
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
3973
4115
|
color?: string | undefined;
|
|
3974
4116
|
backgroundColor?: string | undefined;
|
|
@@ -3999,7 +4141,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
3999
4141
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
4000
4142
|
fontStyle?: "normal" | "italic" | undefined;
|
|
4001
4143
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
4002
|
-
textAlign?: "left" | "
|
|
4144
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
4003
4145
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
4004
4146
|
color?: string | undefined;
|
|
4005
4147
|
backgroundColor?: string | undefined;
|
|
@@ -4029,7 +4171,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
4029
4171
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
4030
4172
|
fontStyle?: "normal" | "italic" | undefined;
|
|
4031
4173
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
4032
|
-
textAlign?: "left" | "
|
|
4174
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
4033
4175
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
4034
4176
|
color?: string | undefined;
|
|
4035
4177
|
backgroundColor?: string | undefined;
|
|
@@ -4060,7 +4202,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
4060
4202
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
4061
4203
|
fontStyle?: "normal" | "italic" | undefined;
|
|
4062
4204
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
4063
|
-
textAlign?: "left" | "
|
|
4205
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
4064
4206
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
4065
4207
|
color?: string | undefined;
|
|
4066
4208
|
backgroundColor?: string | undefined;
|
|
@@ -4083,6 +4225,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
4083
4225
|
groupField?: string | undefined;
|
|
4084
4226
|
keepTogether?: boolean | undefined;
|
|
4085
4227
|
repeatOnEveryPage?: boolean | undefined;
|
|
4228
|
+
subBandIndex?: number | undefined;
|
|
4086
4229
|
}[];
|
|
4087
4230
|
parameters?: {
|
|
4088
4231
|
type: "string" | "number" | "boolean" | "date" | "select";
|
|
@@ -4098,6 +4241,17 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
4098
4241
|
}[] | undefined;
|
|
4099
4242
|
description?: string | undefined;
|
|
4100
4243
|
orientation?: "portrait" | "landscape" | undefined;
|
|
4244
|
+
relations?: {
|
|
4245
|
+
id: string;
|
|
4246
|
+
parentSource: string;
|
|
4247
|
+
childSource: string;
|
|
4248
|
+
joins: {
|
|
4249
|
+
parentField: string;
|
|
4250
|
+
childField: string;
|
|
4251
|
+
}[];
|
|
4252
|
+
joinType: "inner" | "left" | "right" | "full";
|
|
4253
|
+
alias?: string | undefined;
|
|
4254
|
+
}[] | undefined;
|
|
4101
4255
|
groups?: {
|
|
4102
4256
|
field: string;
|
|
4103
4257
|
headerBandId: string;
|
|
@@ -4115,7 +4269,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
4115
4269
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
4116
4270
|
fontStyle?: "normal" | "italic" | undefined;
|
|
4117
4271
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
4118
|
-
textAlign?: "left" | "
|
|
4272
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
4119
4273
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
4120
4274
|
color?: string | undefined;
|
|
4121
4275
|
backgroundColor?: string | undefined;
|
|
@@ -4135,7 +4289,7 @@ export declare function safeValidateLayout(data: unknown): z.SafeParseReturnType
|
|
|
4135
4289
|
fontWeight?: number | "normal" | "bold" | "lighter" | "bolder" | undefined;
|
|
4136
4290
|
fontStyle?: "normal" | "italic" | undefined;
|
|
4137
4291
|
textDecoration?: "none" | "underline" | "line-through" | undefined;
|
|
4138
|
-
textAlign?: "left" | "
|
|
4292
|
+
textAlign?: "left" | "right" | "center" | "justify" | undefined;
|
|
4139
4293
|
verticalAlign?: "top" | "middle" | "bottom" | undefined;
|
|
4140
4294
|
color?: string | undefined;
|
|
4141
4295
|
backgroundColor?: string | undefined;
|