@opencrvs/toolkit 1.8.0-rc.f9d33b7 → 1.8.0-rc.f9fb039
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/commons/api/router.d.ts +920 -287
- package/dist/commons/events/ActionConfig.d.ts +12137 -1475
- package/dist/commons/events/ActionDocument.d.ts +433 -413
- package/dist/commons/events/ActionInput.d.ts +180 -180
- package/dist/commons/events/AdvancedSearchConfig.d.ts +212 -48
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +6173 -1007
- package/dist/commons/events/EventDocument.d.ts +247 -312
- package/dist/commons/events/EventIndex.d.ts +710 -45
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +850 -69
- package/dist/commons/events/FieldType.d.ts +3 -2
- package/dist/commons/events/FieldTypeMapping.d.ts +11 -4
- package/dist/commons/events/FieldValue.d.ts +6 -3
- package/dist/commons/events/FormConfig.d.ts +5749 -925
- package/dist/commons/events/PageConfig.d.ts +1191 -3
- package/dist/commons/events/WorkqueueConfig.d.ts +1362 -8
- package/dist/commons/events/defineConfig.d.ts +533 -3
- package/dist/commons/events/event.d.ts +37 -8
- package/dist/commons/events/field.d.ts +19 -10
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +308 -21
- package/dist/events/index.js +1016 -724
- package/package.json +1 -1
@@ -36,6 +36,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
36
36
|
conditional: import(".").JSONSchema;
|
37
37
|
})[] | undefined;
|
38
38
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
39
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
39
40
|
hideLabel?: boolean | undefined;
|
40
41
|
} | {
|
41
42
|
type: "TEXT";
|
@@ -61,6 +62,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
61
62
|
conditional: import(".").JSONSchema;
|
62
63
|
})[] | undefined;
|
63
64
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
65
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
64
66
|
hideLabel?: boolean | undefined;
|
65
67
|
configuration?: {
|
66
68
|
type?: "text" | "password" | undefined;
|
@@ -92,6 +94,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
92
94
|
conditional: import(".").JSONSchema;
|
93
95
|
})[] | undefined;
|
94
96
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
97
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
95
98
|
hideLabel?: boolean | undefined;
|
96
99
|
configuration?: {
|
97
100
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -123,6 +126,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
123
126
|
conditional: import(".").JSONSchema;
|
124
127
|
})[] | undefined;
|
125
128
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
129
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
126
130
|
hideLabel?: boolean | undefined;
|
127
131
|
configuration?: {
|
128
132
|
maxLength?: number | undefined;
|
@@ -160,6 +164,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
160
164
|
conditional: import(".").JSONSchema;
|
161
165
|
})[] | undefined;
|
162
166
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
167
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
163
168
|
hideLabel?: boolean | undefined;
|
164
169
|
} | {
|
165
170
|
type: "EMAIL";
|
@@ -185,6 +190,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
185
190
|
conditional: import(".").JSONSchema;
|
186
191
|
})[] | undefined;
|
187
192
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
193
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
188
194
|
hideLabel?: boolean | undefined;
|
189
195
|
configuration?: {
|
190
196
|
maxLength?: number | undefined;
|
@@ -213,6 +219,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
213
219
|
conditional: import(".").JSONSchema;
|
214
220
|
})[] | undefined;
|
215
221
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
222
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
223
|
+
hideLabel?: boolean | undefined;
|
224
|
+
configuration?: {
|
225
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
226
|
+
} | undefined;
|
227
|
+
} | {
|
228
|
+
type: "DATE_RANGE";
|
229
|
+
id: string;
|
230
|
+
label: import("./TranslationConfig").TranslationConfig;
|
231
|
+
parent?: {
|
232
|
+
_fieldId?: string | undefined;
|
233
|
+
} | undefined;
|
234
|
+
validation?: {
|
235
|
+
message: import("./TranslationConfig").TranslationConfig;
|
236
|
+
validator: import(".").JSONSchema;
|
237
|
+
}[] | undefined;
|
238
|
+
required?: boolean | undefined;
|
239
|
+
defaultValue?: string | [string, string] | undefined;
|
240
|
+
conditionals?: ({
|
241
|
+
type: "SHOW";
|
242
|
+
conditional: import(".").JSONSchema;
|
243
|
+
} | {
|
244
|
+
type: "ENABLE";
|
245
|
+
conditional: import(".").JSONSchema;
|
246
|
+
} | {
|
247
|
+
type: "DISPLAY_ON_REVIEW";
|
248
|
+
conditional: import(".").JSONSchema;
|
249
|
+
})[] | undefined;
|
250
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
251
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
216
252
|
hideLabel?: boolean | undefined;
|
217
253
|
configuration?: {
|
218
254
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -246,6 +282,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
246
282
|
conditional: import(".").JSONSchema;
|
247
283
|
})[] | undefined;
|
248
284
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
285
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
249
286
|
hideLabel?: boolean | undefined;
|
250
287
|
} | {
|
251
288
|
type: "PAGE_HEADER";
|
@@ -271,6 +308,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
271
308
|
conditional: import(".").JSONSchema;
|
272
309
|
})[] | undefined;
|
273
310
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
311
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
274
312
|
hideLabel?: boolean | undefined;
|
275
313
|
} | {
|
276
314
|
type: "FILE";
|
@@ -304,6 +342,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
304
342
|
conditional: import(".").JSONSchema;
|
305
343
|
})[] | undefined;
|
306
344
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
345
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
307
346
|
hideLabel?: boolean | undefined;
|
308
347
|
} | {
|
309
348
|
type: "RADIO_GROUP";
|
@@ -333,6 +372,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
333
372
|
conditional: import(".").JSONSchema;
|
334
373
|
})[] | undefined;
|
335
374
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
375
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
336
376
|
hideLabel?: boolean | undefined;
|
337
377
|
configuration?: {
|
338
378
|
styles?: {
|
@@ -369,6 +409,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
369
409
|
conditional: import(".").JSONSchema;
|
370
410
|
})[] | undefined;
|
371
411
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
412
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
372
413
|
hideLabel?: boolean | undefined;
|
373
414
|
} | {
|
374
415
|
type: "SELECT";
|
@@ -398,6 +439,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
398
439
|
conditional: import(".").JSONSchema;
|
399
440
|
})[] | undefined;
|
400
441
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
442
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
401
443
|
hideLabel?: boolean | undefined;
|
402
444
|
} | {
|
403
445
|
type: "CHECKBOX";
|
@@ -423,6 +465,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
423
465
|
conditional: import(".").JSONSchema;
|
424
466
|
})[] | undefined;
|
425
467
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
468
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
426
469
|
hideLabel?: boolean | undefined;
|
427
470
|
} | {
|
428
471
|
type: "COUNTRY";
|
@@ -448,6 +491,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
448
491
|
conditional: import(".").JSONSchema;
|
449
492
|
})[] | undefined;
|
450
493
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
494
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
451
495
|
hideLabel?: boolean | undefined;
|
452
496
|
} | {
|
453
497
|
type: "ADMINISTRATIVE_AREA";
|
@@ -479,6 +523,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
479
523
|
conditional: import(".").JSONSchema;
|
480
524
|
})[] | undefined;
|
481
525
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
526
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
482
527
|
hideLabel?: boolean | undefined;
|
483
528
|
} | {
|
484
529
|
type: "LOCATION";
|
@@ -504,6 +549,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
504
549
|
conditional: import(".").JSONSchema;
|
505
550
|
})[] | undefined;
|
506
551
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
552
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
507
553
|
hideLabel?: boolean | undefined;
|
508
554
|
} | {
|
509
555
|
type: "FILE_WITH_OPTIONS";
|
@@ -537,6 +583,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
537
583
|
conditional: import(".").JSONSchema;
|
538
584
|
})[] | undefined;
|
539
585
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
586
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
540
587
|
hideLabel?: boolean | undefined;
|
541
588
|
} | {
|
542
589
|
type: "FACILITY";
|
@@ -562,6 +609,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
562
609
|
conditional: import(".").JSONSchema;
|
563
610
|
})[] | undefined;
|
564
611
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
612
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
565
613
|
hideLabel?: boolean | undefined;
|
566
614
|
} | {
|
567
615
|
type: "OFFICE";
|
@@ -587,6 +635,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
587
635
|
conditional: import(".").JSONSchema;
|
588
636
|
})[] | undefined;
|
589
637
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
638
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
590
639
|
hideLabel?: boolean | undefined;
|
591
640
|
} | {
|
592
641
|
type: "ADDRESS";
|
@@ -640,6 +689,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
640
689
|
conditional: import(".").JSONSchema;
|
641
690
|
})[] | undefined;
|
642
691
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
692
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
643
693
|
hideLabel?: boolean | undefined;
|
644
694
|
} | {
|
645
695
|
type: "DATA";
|
@@ -674,6 +724,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
674
724
|
conditional: import(".").JSONSchema;
|
675
725
|
})[] | undefined;
|
676
726
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
727
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
677
728
|
hideLabel?: boolean | undefined;
|
678
729
|
})[];
|
679
730
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -715,6 +766,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
715
766
|
conditional: import(".").JSONSchema;
|
716
767
|
})[] | undefined;
|
717
768
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
769
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
718
770
|
hideLabel?: boolean | undefined;
|
719
771
|
} | {
|
720
772
|
type: "TEXT";
|
@@ -740,6 +792,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
740
792
|
conditional: import(".").JSONSchema;
|
741
793
|
})[] | undefined;
|
742
794
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
795
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
743
796
|
hideLabel?: boolean | undefined;
|
744
797
|
configuration?: {
|
745
798
|
type?: "text" | "password" | undefined;
|
@@ -771,6 +824,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
771
824
|
conditional: import(".").JSONSchema;
|
772
825
|
})[] | undefined;
|
773
826
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
827
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
774
828
|
hideLabel?: boolean | undefined;
|
775
829
|
configuration?: {
|
776
830
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -802,6 +856,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
802
856
|
conditional: import(".").JSONSchema;
|
803
857
|
})[] | undefined;
|
804
858
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
859
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
805
860
|
hideLabel?: boolean | undefined;
|
806
861
|
configuration?: {
|
807
862
|
maxLength?: number | undefined;
|
@@ -839,6 +894,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
839
894
|
conditional: import(".").JSONSchema;
|
840
895
|
})[] | undefined;
|
841
896
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
897
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
842
898
|
hideLabel?: boolean | undefined;
|
843
899
|
} | {
|
844
900
|
type: "EMAIL";
|
@@ -864,6 +920,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
864
920
|
conditional: import(".").JSONSchema;
|
865
921
|
})[] | undefined;
|
866
922
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
923
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
867
924
|
hideLabel?: boolean | undefined;
|
868
925
|
configuration?: {
|
869
926
|
maxLength?: number | undefined;
|
@@ -892,6 +949,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
892
949
|
conditional: import(".").JSONSchema;
|
893
950
|
})[] | undefined;
|
894
951
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
952
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
953
|
+
hideLabel?: boolean | undefined;
|
954
|
+
configuration?: {
|
955
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
956
|
+
} | undefined;
|
957
|
+
} | {
|
958
|
+
type: "DATE_RANGE";
|
959
|
+
id: string;
|
960
|
+
label: import("./TranslationConfig").TranslationConfig;
|
961
|
+
parent?: {
|
962
|
+
_fieldId?: string | undefined;
|
963
|
+
} | undefined;
|
964
|
+
validation?: {
|
965
|
+
message: import("./TranslationConfig").TranslationConfig;
|
966
|
+
validator: import(".").JSONSchema;
|
967
|
+
}[] | undefined;
|
968
|
+
required?: boolean | undefined;
|
969
|
+
defaultValue?: string | [string, string] | undefined;
|
970
|
+
conditionals?: ({
|
971
|
+
type: "SHOW";
|
972
|
+
conditional: import(".").JSONSchema;
|
973
|
+
} | {
|
974
|
+
type: "ENABLE";
|
975
|
+
conditional: import(".").JSONSchema;
|
976
|
+
} | {
|
977
|
+
type: "DISPLAY_ON_REVIEW";
|
978
|
+
conditional: import(".").JSONSchema;
|
979
|
+
})[] | undefined;
|
980
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
981
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
895
982
|
hideLabel?: boolean | undefined;
|
896
983
|
configuration?: {
|
897
984
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -925,6 +1012,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
925
1012
|
conditional: import(".").JSONSchema;
|
926
1013
|
})[] | undefined;
|
927
1014
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1015
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
928
1016
|
hideLabel?: boolean | undefined;
|
929
1017
|
} | {
|
930
1018
|
type: "PAGE_HEADER";
|
@@ -950,6 +1038,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
950
1038
|
conditional: import(".").JSONSchema;
|
951
1039
|
})[] | undefined;
|
952
1040
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1041
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
953
1042
|
hideLabel?: boolean | undefined;
|
954
1043
|
} | {
|
955
1044
|
type: "FILE";
|
@@ -983,6 +1072,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
983
1072
|
conditional: import(".").JSONSchema;
|
984
1073
|
})[] | undefined;
|
985
1074
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1075
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
986
1076
|
hideLabel?: boolean | undefined;
|
987
1077
|
} | {
|
988
1078
|
type: "RADIO_GROUP";
|
@@ -1012,6 +1102,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1012
1102
|
conditional: import(".").JSONSchema;
|
1013
1103
|
})[] | undefined;
|
1014
1104
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1105
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1015
1106
|
hideLabel?: boolean | undefined;
|
1016
1107
|
configuration?: {
|
1017
1108
|
styles?: {
|
@@ -1048,6 +1139,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1048
1139
|
conditional: import(".").JSONSchema;
|
1049
1140
|
})[] | undefined;
|
1050
1141
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1142
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1051
1143
|
hideLabel?: boolean | undefined;
|
1052
1144
|
} | {
|
1053
1145
|
type: "SELECT";
|
@@ -1077,6 +1169,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1077
1169
|
conditional: import(".").JSONSchema;
|
1078
1170
|
})[] | undefined;
|
1079
1171
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1172
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1080
1173
|
hideLabel?: boolean | undefined;
|
1081
1174
|
} | {
|
1082
1175
|
type: "CHECKBOX";
|
@@ -1102,6 +1195,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1102
1195
|
conditional: import(".").JSONSchema;
|
1103
1196
|
})[] | undefined;
|
1104
1197
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1198
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1105
1199
|
hideLabel?: boolean | undefined;
|
1106
1200
|
} | {
|
1107
1201
|
type: "COUNTRY";
|
@@ -1127,6 +1221,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1127
1221
|
conditional: import(".").JSONSchema;
|
1128
1222
|
})[] | undefined;
|
1129
1223
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1224
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1130
1225
|
hideLabel?: boolean | undefined;
|
1131
1226
|
} | {
|
1132
1227
|
type: "ADMINISTRATIVE_AREA";
|
@@ -1158,6 +1253,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1158
1253
|
conditional: import(".").JSONSchema;
|
1159
1254
|
})[] | undefined;
|
1160
1255
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1256
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1161
1257
|
hideLabel?: boolean | undefined;
|
1162
1258
|
} | {
|
1163
1259
|
type: "LOCATION";
|
@@ -1183,6 +1279,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1183
1279
|
conditional: import(".").JSONSchema;
|
1184
1280
|
})[] | undefined;
|
1185
1281
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1282
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1186
1283
|
hideLabel?: boolean | undefined;
|
1187
1284
|
} | {
|
1188
1285
|
type: "FILE_WITH_OPTIONS";
|
@@ -1216,6 +1313,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1216
1313
|
conditional: import(".").JSONSchema;
|
1217
1314
|
})[] | undefined;
|
1218
1315
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1316
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1219
1317
|
hideLabel?: boolean | undefined;
|
1220
1318
|
} | {
|
1221
1319
|
type: "FACILITY";
|
@@ -1241,6 +1339,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1241
1339
|
conditional: import(".").JSONSchema;
|
1242
1340
|
})[] | undefined;
|
1243
1341
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1342
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1244
1343
|
hideLabel?: boolean | undefined;
|
1245
1344
|
} | {
|
1246
1345
|
type: "OFFICE";
|
@@ -1266,6 +1365,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1266
1365
|
conditional: import(".").JSONSchema;
|
1267
1366
|
})[] | undefined;
|
1268
1367
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1368
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1269
1369
|
hideLabel?: boolean | undefined;
|
1270
1370
|
} | {
|
1271
1371
|
type: "ADDRESS";
|
@@ -1319,6 +1419,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1319
1419
|
conditional: import(".").JSONSchema;
|
1320
1420
|
})[] | undefined;
|
1321
1421
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1422
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1322
1423
|
hideLabel?: boolean | undefined;
|
1323
1424
|
} | {
|
1324
1425
|
type: "DATA";
|
@@ -1353,6 +1454,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1353
1454
|
conditional: import(".").JSONSchema;
|
1354
1455
|
})[] | undefined;
|
1355
1456
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1457
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1356
1458
|
hideLabel?: boolean | undefined;
|
1357
1459
|
})[];
|
1358
1460
|
};
|
@@ -1393,6 +1495,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1393
1495
|
conditional: import(".").JSONSchema;
|
1394
1496
|
})[] | undefined;
|
1395
1497
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1498
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1396
1499
|
hideLabel?: boolean | undefined;
|
1397
1500
|
} | {
|
1398
1501
|
type: "TEXT";
|
@@ -1418,6 +1521,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1418
1521
|
conditional: import(".").JSONSchema;
|
1419
1522
|
})[] | undefined;
|
1420
1523
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1524
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1421
1525
|
hideLabel?: boolean | undefined;
|
1422
1526
|
configuration?: {
|
1423
1527
|
type?: "text" | "password" | undefined;
|
@@ -1449,6 +1553,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1449
1553
|
conditional: import(".").JSONSchema;
|
1450
1554
|
})[] | undefined;
|
1451
1555
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1556
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1452
1557
|
hideLabel?: boolean | undefined;
|
1453
1558
|
configuration?: {
|
1454
1559
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -1480,6 +1585,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1480
1585
|
conditional: import(".").JSONSchema;
|
1481
1586
|
})[] | undefined;
|
1482
1587
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1588
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1483
1589
|
hideLabel?: boolean | undefined;
|
1484
1590
|
configuration?: {
|
1485
1591
|
maxLength?: number | undefined;
|
@@ -1517,6 +1623,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1517
1623
|
conditional: import(".").JSONSchema;
|
1518
1624
|
})[] | undefined;
|
1519
1625
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1626
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1520
1627
|
hideLabel?: boolean | undefined;
|
1521
1628
|
} | {
|
1522
1629
|
type: "EMAIL";
|
@@ -1542,6 +1649,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1542
1649
|
conditional: import(".").JSONSchema;
|
1543
1650
|
})[] | undefined;
|
1544
1651
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1652
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1545
1653
|
hideLabel?: boolean | undefined;
|
1546
1654
|
configuration?: {
|
1547
1655
|
maxLength?: number | undefined;
|
@@ -1570,6 +1678,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1570
1678
|
conditional: import(".").JSONSchema;
|
1571
1679
|
})[] | undefined;
|
1572
1680
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1681
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1682
|
+
hideLabel?: boolean | undefined;
|
1683
|
+
configuration?: {
|
1684
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
1685
|
+
} | undefined;
|
1686
|
+
} | {
|
1687
|
+
type: "DATE_RANGE";
|
1688
|
+
id: string;
|
1689
|
+
label: import("./TranslationConfig").TranslationConfig;
|
1690
|
+
parent?: {
|
1691
|
+
_fieldId?: string | undefined;
|
1692
|
+
} | undefined;
|
1693
|
+
validation?: {
|
1694
|
+
message: import("./TranslationConfig").TranslationConfig;
|
1695
|
+
validator: import(".").JSONSchema;
|
1696
|
+
}[] | undefined;
|
1697
|
+
required?: boolean | undefined;
|
1698
|
+
defaultValue?: string | [string, string] | undefined;
|
1699
|
+
conditionals?: ({
|
1700
|
+
type: "SHOW";
|
1701
|
+
conditional: import(".").JSONSchema;
|
1702
|
+
} | {
|
1703
|
+
type: "ENABLE";
|
1704
|
+
conditional: import(".").JSONSchema;
|
1705
|
+
} | {
|
1706
|
+
type: "DISPLAY_ON_REVIEW";
|
1707
|
+
conditional: import(".").JSONSchema;
|
1708
|
+
})[] | undefined;
|
1709
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1710
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1573
1711
|
hideLabel?: boolean | undefined;
|
1574
1712
|
configuration?: {
|
1575
1713
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -1603,6 +1741,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1603
1741
|
conditional: import(".").JSONSchema;
|
1604
1742
|
})[] | undefined;
|
1605
1743
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1744
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1606
1745
|
hideLabel?: boolean | undefined;
|
1607
1746
|
} | {
|
1608
1747
|
type: "PAGE_HEADER";
|
@@ -1628,6 +1767,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1628
1767
|
conditional: import(".").JSONSchema;
|
1629
1768
|
})[] | undefined;
|
1630
1769
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1770
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1631
1771
|
hideLabel?: boolean | undefined;
|
1632
1772
|
} | {
|
1633
1773
|
type: "FILE";
|
@@ -1661,6 +1801,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1661
1801
|
conditional: import(".").JSONSchema;
|
1662
1802
|
})[] | undefined;
|
1663
1803
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1804
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1664
1805
|
hideLabel?: boolean | undefined;
|
1665
1806
|
} | {
|
1666
1807
|
type: "RADIO_GROUP";
|
@@ -1690,6 +1831,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1690
1831
|
conditional: import(".").JSONSchema;
|
1691
1832
|
})[] | undefined;
|
1692
1833
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1834
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1693
1835
|
hideLabel?: boolean | undefined;
|
1694
1836
|
configuration?: {
|
1695
1837
|
styles?: {
|
@@ -1726,6 +1868,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1726
1868
|
conditional: import(".").JSONSchema;
|
1727
1869
|
})[] | undefined;
|
1728
1870
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1871
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1729
1872
|
hideLabel?: boolean | undefined;
|
1730
1873
|
} | {
|
1731
1874
|
type: "SELECT";
|
@@ -1755,6 +1898,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1755
1898
|
conditional: import(".").JSONSchema;
|
1756
1899
|
})[] | undefined;
|
1757
1900
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1901
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1758
1902
|
hideLabel?: boolean | undefined;
|
1759
1903
|
} | {
|
1760
1904
|
type: "CHECKBOX";
|
@@ -1780,6 +1924,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1780
1924
|
conditional: import(".").JSONSchema;
|
1781
1925
|
})[] | undefined;
|
1782
1926
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1927
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1783
1928
|
hideLabel?: boolean | undefined;
|
1784
1929
|
} | {
|
1785
1930
|
type: "COUNTRY";
|
@@ -1805,6 +1950,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1805
1950
|
conditional: import(".").JSONSchema;
|
1806
1951
|
})[] | undefined;
|
1807
1952
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1953
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1808
1954
|
hideLabel?: boolean | undefined;
|
1809
1955
|
} | {
|
1810
1956
|
type: "ADMINISTRATIVE_AREA";
|
@@ -1836,6 +1982,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1836
1982
|
conditional: import(".").JSONSchema;
|
1837
1983
|
})[] | undefined;
|
1838
1984
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
1985
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1839
1986
|
hideLabel?: boolean | undefined;
|
1840
1987
|
} | {
|
1841
1988
|
type: "LOCATION";
|
@@ -1861,6 +2008,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1861
2008
|
conditional: import(".").JSONSchema;
|
1862
2009
|
})[] | undefined;
|
1863
2010
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2011
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1864
2012
|
hideLabel?: boolean | undefined;
|
1865
2013
|
} | {
|
1866
2014
|
type: "FILE_WITH_OPTIONS";
|
@@ -1894,6 +2042,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1894
2042
|
conditional: import(".").JSONSchema;
|
1895
2043
|
})[] | undefined;
|
1896
2044
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2045
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1897
2046
|
hideLabel?: boolean | undefined;
|
1898
2047
|
} | {
|
1899
2048
|
type: "FACILITY";
|
@@ -1919,6 +2068,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1919
2068
|
conditional: import(".").JSONSchema;
|
1920
2069
|
})[] | undefined;
|
1921
2070
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2071
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1922
2072
|
hideLabel?: boolean | undefined;
|
1923
2073
|
} | {
|
1924
2074
|
type: "OFFICE";
|
@@ -1944,6 +2094,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1944
2094
|
conditional: import(".").JSONSchema;
|
1945
2095
|
})[] | undefined;
|
1946
2096
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2097
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
1947
2098
|
hideLabel?: boolean | undefined;
|
1948
2099
|
} | {
|
1949
2100
|
type: "ADDRESS";
|
@@ -1997,6 +2148,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
1997
2148
|
conditional: import(".").JSONSchema;
|
1998
2149
|
})[] | undefined;
|
1999
2150
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2151
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2000
2152
|
hideLabel?: boolean | undefined;
|
2001
2153
|
} | {
|
2002
2154
|
type: "DATA";
|
@@ -2031,6 +2183,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2031
2183
|
conditional: import(".").JSONSchema;
|
2032
2184
|
})[] | undefined;
|
2033
2185
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2186
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2034
2187
|
hideLabel?: boolean | undefined;
|
2035
2188
|
})[];
|
2036
2189
|
};
|
@@ -2071,6 +2224,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2071
2224
|
conditional: import(".").JSONSchema;
|
2072
2225
|
})[] | undefined;
|
2073
2226
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2227
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2074
2228
|
hideLabel?: boolean | undefined;
|
2075
2229
|
} | {
|
2076
2230
|
type: "TEXT";
|
@@ -2096,6 +2250,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2096
2250
|
conditional: import(".").JSONSchema;
|
2097
2251
|
})[] | undefined;
|
2098
2252
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2253
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2099
2254
|
hideLabel?: boolean | undefined;
|
2100
2255
|
configuration?: {
|
2101
2256
|
type?: "text" | "password" | undefined;
|
@@ -2127,6 +2282,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2127
2282
|
conditional: import(".").JSONSchema;
|
2128
2283
|
})[] | undefined;
|
2129
2284
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2285
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2130
2286
|
hideLabel?: boolean | undefined;
|
2131
2287
|
configuration?: {
|
2132
2288
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2158,6 +2314,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2158
2314
|
conditional: import(".").JSONSchema;
|
2159
2315
|
})[] | undefined;
|
2160
2316
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2317
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2161
2318
|
hideLabel?: boolean | undefined;
|
2162
2319
|
configuration?: {
|
2163
2320
|
maxLength?: number | undefined;
|
@@ -2195,6 +2352,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2195
2352
|
conditional: import(".").JSONSchema;
|
2196
2353
|
})[] | undefined;
|
2197
2354
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2355
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2198
2356
|
hideLabel?: boolean | undefined;
|
2199
2357
|
} | {
|
2200
2358
|
type: "EMAIL";
|
@@ -2220,6 +2378,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2220
2378
|
conditional: import(".").JSONSchema;
|
2221
2379
|
})[] | undefined;
|
2222
2380
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2381
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2223
2382
|
hideLabel?: boolean | undefined;
|
2224
2383
|
configuration?: {
|
2225
2384
|
maxLength?: number | undefined;
|
@@ -2248,6 +2407,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2248
2407
|
conditional: import(".").JSONSchema;
|
2249
2408
|
})[] | undefined;
|
2250
2409
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2410
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2411
|
+
hideLabel?: boolean | undefined;
|
2412
|
+
configuration?: {
|
2413
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
2414
|
+
} | undefined;
|
2415
|
+
} | {
|
2416
|
+
type: "DATE_RANGE";
|
2417
|
+
id: string;
|
2418
|
+
label: import("./TranslationConfig").TranslationConfig;
|
2419
|
+
parent?: {
|
2420
|
+
_fieldId?: string | undefined;
|
2421
|
+
} | undefined;
|
2422
|
+
validation?: {
|
2423
|
+
message: import("./TranslationConfig").TranslationConfig;
|
2424
|
+
validator: import(".").JSONSchema;
|
2425
|
+
}[] | undefined;
|
2426
|
+
required?: boolean | undefined;
|
2427
|
+
defaultValue?: string | [string, string] | undefined;
|
2428
|
+
conditionals?: ({
|
2429
|
+
type: "SHOW";
|
2430
|
+
conditional: import(".").JSONSchema;
|
2431
|
+
} | {
|
2432
|
+
type: "ENABLE";
|
2433
|
+
conditional: import(".").JSONSchema;
|
2434
|
+
} | {
|
2435
|
+
type: "DISPLAY_ON_REVIEW";
|
2436
|
+
conditional: import(".").JSONSchema;
|
2437
|
+
})[] | undefined;
|
2438
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2439
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2251
2440
|
hideLabel?: boolean | undefined;
|
2252
2441
|
configuration?: {
|
2253
2442
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2281,6 +2470,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2281
2470
|
conditional: import(".").JSONSchema;
|
2282
2471
|
})[] | undefined;
|
2283
2472
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2473
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2284
2474
|
hideLabel?: boolean | undefined;
|
2285
2475
|
} | {
|
2286
2476
|
type: "PAGE_HEADER";
|
@@ -2306,6 +2496,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2306
2496
|
conditional: import(".").JSONSchema;
|
2307
2497
|
})[] | undefined;
|
2308
2498
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2499
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2309
2500
|
hideLabel?: boolean | undefined;
|
2310
2501
|
} | {
|
2311
2502
|
type: "FILE";
|
@@ -2339,6 +2530,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2339
2530
|
conditional: import(".").JSONSchema;
|
2340
2531
|
})[] | undefined;
|
2341
2532
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2533
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2342
2534
|
hideLabel?: boolean | undefined;
|
2343
2535
|
} | {
|
2344
2536
|
type: "RADIO_GROUP";
|
@@ -2368,6 +2560,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2368
2560
|
conditional: import(".").JSONSchema;
|
2369
2561
|
})[] | undefined;
|
2370
2562
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2563
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2371
2564
|
hideLabel?: boolean | undefined;
|
2372
2565
|
configuration?: {
|
2373
2566
|
styles?: {
|
@@ -2404,6 +2597,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2404
2597
|
conditional: import(".").JSONSchema;
|
2405
2598
|
})[] | undefined;
|
2406
2599
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2600
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2407
2601
|
hideLabel?: boolean | undefined;
|
2408
2602
|
} | {
|
2409
2603
|
type: "SELECT";
|
@@ -2433,6 +2627,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2433
2627
|
conditional: import(".").JSONSchema;
|
2434
2628
|
})[] | undefined;
|
2435
2629
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2630
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2436
2631
|
hideLabel?: boolean | undefined;
|
2437
2632
|
} | {
|
2438
2633
|
type: "CHECKBOX";
|
@@ -2458,6 +2653,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2458
2653
|
conditional: import(".").JSONSchema;
|
2459
2654
|
})[] | undefined;
|
2460
2655
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2656
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2461
2657
|
hideLabel?: boolean | undefined;
|
2462
2658
|
} | {
|
2463
2659
|
type: "COUNTRY";
|
@@ -2483,6 +2679,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2483
2679
|
conditional: import(".").JSONSchema;
|
2484
2680
|
})[] | undefined;
|
2485
2681
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2682
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2486
2683
|
hideLabel?: boolean | undefined;
|
2487
2684
|
} | {
|
2488
2685
|
type: "ADMINISTRATIVE_AREA";
|
@@ -2514,6 +2711,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2514
2711
|
conditional: import(".").JSONSchema;
|
2515
2712
|
})[] | undefined;
|
2516
2713
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2714
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2517
2715
|
hideLabel?: boolean | undefined;
|
2518
2716
|
} | {
|
2519
2717
|
type: "LOCATION";
|
@@ -2539,6 +2737,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2539
2737
|
conditional: import(".").JSONSchema;
|
2540
2738
|
})[] | undefined;
|
2541
2739
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2740
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2542
2741
|
hideLabel?: boolean | undefined;
|
2543
2742
|
} | {
|
2544
2743
|
type: "FILE_WITH_OPTIONS";
|
@@ -2572,6 +2771,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2572
2771
|
conditional: import(".").JSONSchema;
|
2573
2772
|
})[] | undefined;
|
2574
2773
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2774
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2575
2775
|
hideLabel?: boolean | undefined;
|
2576
2776
|
} | {
|
2577
2777
|
type: "FACILITY";
|
@@ -2597,6 +2797,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2597
2797
|
conditional: import(".").JSONSchema;
|
2598
2798
|
})[] | undefined;
|
2599
2799
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2800
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2600
2801
|
hideLabel?: boolean | undefined;
|
2601
2802
|
} | {
|
2602
2803
|
type: "OFFICE";
|
@@ -2622,6 +2823,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2622
2823
|
conditional: import(".").JSONSchema;
|
2623
2824
|
})[] | undefined;
|
2624
2825
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2826
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2625
2827
|
hideLabel?: boolean | undefined;
|
2626
2828
|
} | {
|
2627
2829
|
type: "ADDRESS";
|
@@ -2675,6 +2877,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2675
2877
|
conditional: import(".").JSONSchema;
|
2676
2878
|
})[] | undefined;
|
2677
2879
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2880
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2678
2881
|
hideLabel?: boolean | undefined;
|
2679
2882
|
} | {
|
2680
2883
|
type: "DATA";
|
@@ -2709,6 +2912,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2709
2912
|
conditional: import(".").JSONSchema;
|
2710
2913
|
})[] | undefined;
|
2711
2914
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
2915
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2712
2916
|
hideLabel?: boolean | undefined;
|
2713
2917
|
})[];
|
2714
2918
|
};
|
@@ -2797,6 +3001,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2797
3001
|
conditional: import(".").JSONSchema;
|
2798
3002
|
})[] | undefined;
|
2799
3003
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3004
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2800
3005
|
hideLabel?: boolean | undefined;
|
2801
3006
|
} | {
|
2802
3007
|
type: "TEXT";
|
@@ -2822,6 +3027,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2822
3027
|
conditional: import(".").JSONSchema;
|
2823
3028
|
})[] | undefined;
|
2824
3029
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3030
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2825
3031
|
hideLabel?: boolean | undefined;
|
2826
3032
|
configuration?: {
|
2827
3033
|
type?: "text" | "password" | undefined;
|
@@ -2853,6 +3059,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2853
3059
|
conditional: import(".").JSONSchema;
|
2854
3060
|
})[] | undefined;
|
2855
3061
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3062
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2856
3063
|
hideLabel?: boolean | undefined;
|
2857
3064
|
configuration?: {
|
2858
3065
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -2884,6 +3091,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2884
3091
|
conditional: import(".").JSONSchema;
|
2885
3092
|
})[] | undefined;
|
2886
3093
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3094
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2887
3095
|
hideLabel?: boolean | undefined;
|
2888
3096
|
configuration?: {
|
2889
3097
|
maxLength?: number | undefined;
|
@@ -2921,6 +3129,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2921
3129
|
conditional: import(".").JSONSchema;
|
2922
3130
|
})[] | undefined;
|
2923
3131
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3132
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2924
3133
|
hideLabel?: boolean | undefined;
|
2925
3134
|
} | {
|
2926
3135
|
type: "EMAIL";
|
@@ -2946,6 +3155,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2946
3155
|
conditional: import(".").JSONSchema;
|
2947
3156
|
})[] | undefined;
|
2948
3157
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3158
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2949
3159
|
hideLabel?: boolean | undefined;
|
2950
3160
|
configuration?: {
|
2951
3161
|
maxLength?: number | undefined;
|
@@ -2974,6 +3184,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
2974
3184
|
conditional: import(".").JSONSchema;
|
2975
3185
|
})[] | undefined;
|
2976
3186
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3187
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3188
|
+
hideLabel?: boolean | undefined;
|
3189
|
+
configuration?: {
|
3190
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
3191
|
+
} | undefined;
|
3192
|
+
} | {
|
3193
|
+
type: "DATE_RANGE";
|
3194
|
+
id: string;
|
3195
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3196
|
+
parent?: {
|
3197
|
+
_fieldId?: string | undefined;
|
3198
|
+
} | undefined;
|
3199
|
+
validation?: {
|
3200
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3201
|
+
validator: import(".").JSONSchema;
|
3202
|
+
}[] | undefined;
|
3203
|
+
required?: boolean | undefined;
|
3204
|
+
defaultValue?: string | [string, string] | undefined;
|
3205
|
+
conditionals?: ({
|
3206
|
+
type: "SHOW";
|
3207
|
+
conditional: import(".").JSONSchema;
|
3208
|
+
} | {
|
3209
|
+
type: "ENABLE";
|
3210
|
+
conditional: import(".").JSONSchema;
|
3211
|
+
} | {
|
3212
|
+
type: "DISPLAY_ON_REVIEW";
|
3213
|
+
conditional: import(".").JSONSchema;
|
3214
|
+
})[] | undefined;
|
3215
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3216
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
2977
3217
|
hideLabel?: boolean | undefined;
|
2978
3218
|
configuration?: {
|
2979
3219
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -3007,6 +3247,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3007
3247
|
conditional: import(".").JSONSchema;
|
3008
3248
|
})[] | undefined;
|
3009
3249
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3250
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3010
3251
|
hideLabel?: boolean | undefined;
|
3011
3252
|
} | {
|
3012
3253
|
type: "PAGE_HEADER";
|
@@ -3032,6 +3273,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3032
3273
|
conditional: import(".").JSONSchema;
|
3033
3274
|
})[] | undefined;
|
3034
3275
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3276
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3035
3277
|
hideLabel?: boolean | undefined;
|
3036
3278
|
} | {
|
3037
3279
|
type: "FILE";
|
@@ -3065,6 +3307,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3065
3307
|
conditional: import(".").JSONSchema;
|
3066
3308
|
})[] | undefined;
|
3067
3309
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3310
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3068
3311
|
hideLabel?: boolean | undefined;
|
3069
3312
|
} | {
|
3070
3313
|
type: "RADIO_GROUP";
|
@@ -3094,6 +3337,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3094
3337
|
conditional: import(".").JSONSchema;
|
3095
3338
|
})[] | undefined;
|
3096
3339
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3340
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3097
3341
|
hideLabel?: boolean | undefined;
|
3098
3342
|
configuration?: {
|
3099
3343
|
styles?: {
|
@@ -3130,6 +3374,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3130
3374
|
conditional: import(".").JSONSchema;
|
3131
3375
|
})[] | undefined;
|
3132
3376
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3377
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3133
3378
|
hideLabel?: boolean | undefined;
|
3134
3379
|
} | {
|
3135
3380
|
type: "SELECT";
|
@@ -3159,6 +3404,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3159
3404
|
conditional: import(".").JSONSchema;
|
3160
3405
|
})[] | undefined;
|
3161
3406
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3407
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3162
3408
|
hideLabel?: boolean | undefined;
|
3163
3409
|
} | {
|
3164
3410
|
type: "CHECKBOX";
|
@@ -3184,6 +3430,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3184
3430
|
conditional: import(".").JSONSchema;
|
3185
3431
|
})[] | undefined;
|
3186
3432
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3433
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3187
3434
|
hideLabel?: boolean | undefined;
|
3188
3435
|
} | {
|
3189
3436
|
type: "COUNTRY";
|
@@ -3209,6 +3456,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3209
3456
|
conditional: import(".").JSONSchema;
|
3210
3457
|
})[] | undefined;
|
3211
3458
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3459
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3212
3460
|
hideLabel?: boolean | undefined;
|
3213
3461
|
} | {
|
3214
3462
|
type: "ADMINISTRATIVE_AREA";
|
@@ -3240,6 +3488,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3240
3488
|
conditional: import(".").JSONSchema;
|
3241
3489
|
})[] | undefined;
|
3242
3490
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3491
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3243
3492
|
hideLabel?: boolean | undefined;
|
3244
3493
|
} | {
|
3245
3494
|
type: "LOCATION";
|
@@ -3265,6 +3514,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3265
3514
|
conditional: import(".").JSONSchema;
|
3266
3515
|
})[] | undefined;
|
3267
3516
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3517
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3268
3518
|
hideLabel?: boolean | undefined;
|
3269
3519
|
} | {
|
3270
3520
|
type: "FILE_WITH_OPTIONS";
|
@@ -3298,6 +3548,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3298
3548
|
conditional: import(".").JSONSchema;
|
3299
3549
|
})[] | undefined;
|
3300
3550
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3551
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3301
3552
|
hideLabel?: boolean | undefined;
|
3302
3553
|
} | {
|
3303
3554
|
type: "FACILITY";
|
@@ -3323,6 +3574,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3323
3574
|
conditional: import(".").JSONSchema;
|
3324
3575
|
})[] | undefined;
|
3325
3576
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3577
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3326
3578
|
hideLabel?: boolean | undefined;
|
3327
3579
|
} | {
|
3328
3580
|
type: "OFFICE";
|
@@ -3348,6 +3600,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3348
3600
|
conditional: import(".").JSONSchema;
|
3349
3601
|
})[] | undefined;
|
3350
3602
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3603
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3351
3604
|
hideLabel?: boolean | undefined;
|
3352
3605
|
} | {
|
3353
3606
|
type: "ADDRESS";
|
@@ -3401,6 +3654,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3401
3654
|
conditional: import(".").JSONSchema;
|
3402
3655
|
})[] | undefined;
|
3403
3656
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3657
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3404
3658
|
hideLabel?: boolean | undefined;
|
3405
3659
|
} | {
|
3406
3660
|
type: "DATA";
|
@@ -3435,6 +3689,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3435
3689
|
conditional: import(".").JSONSchema;
|
3436
3690
|
})[] | undefined;
|
3437
3691
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3692
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3438
3693
|
hideLabel?: boolean | undefined;
|
3439
3694
|
})[];
|
3440
3695
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -3478,6 +3733,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3478
3733
|
conditional: import(".").JSONSchema;
|
3479
3734
|
})[] | undefined;
|
3480
3735
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3736
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3481
3737
|
hideLabel?: boolean | undefined;
|
3482
3738
|
} | {
|
3483
3739
|
type: "TEXT";
|
@@ -3503,6 +3759,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3503
3759
|
conditional: import(".").JSONSchema;
|
3504
3760
|
})[] | undefined;
|
3505
3761
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3762
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3506
3763
|
hideLabel?: boolean | undefined;
|
3507
3764
|
configuration?: {
|
3508
3765
|
type?: "text" | "password" | undefined;
|
@@ -3534,6 +3791,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3534
3791
|
conditional: import(".").JSONSchema;
|
3535
3792
|
})[] | undefined;
|
3536
3793
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3794
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3537
3795
|
hideLabel?: boolean | undefined;
|
3538
3796
|
configuration?: {
|
3539
3797
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -3565,6 +3823,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3565
3823
|
conditional: import(".").JSONSchema;
|
3566
3824
|
})[] | undefined;
|
3567
3825
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3826
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3568
3827
|
hideLabel?: boolean | undefined;
|
3569
3828
|
configuration?: {
|
3570
3829
|
maxLength?: number | undefined;
|
@@ -3602,6 +3861,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3602
3861
|
conditional: import(".").JSONSchema;
|
3603
3862
|
})[] | undefined;
|
3604
3863
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3864
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3605
3865
|
hideLabel?: boolean | undefined;
|
3606
3866
|
} | {
|
3607
3867
|
type: "EMAIL";
|
@@ -3627,6 +3887,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3627
3887
|
conditional: import(".").JSONSchema;
|
3628
3888
|
})[] | undefined;
|
3629
3889
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3890
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3630
3891
|
hideLabel?: boolean | undefined;
|
3631
3892
|
configuration?: {
|
3632
3893
|
maxLength?: number | undefined;
|
@@ -3655,6 +3916,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3655
3916
|
conditional: import(".").JSONSchema;
|
3656
3917
|
})[] | undefined;
|
3657
3918
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3919
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3920
|
+
hideLabel?: boolean | undefined;
|
3921
|
+
configuration?: {
|
3922
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
3923
|
+
} | undefined;
|
3924
|
+
} | {
|
3925
|
+
type: "DATE_RANGE";
|
3926
|
+
id: string;
|
3927
|
+
label: import("./TranslationConfig").TranslationConfig;
|
3928
|
+
parent?: {
|
3929
|
+
_fieldId?: string | undefined;
|
3930
|
+
} | undefined;
|
3931
|
+
validation?: {
|
3932
|
+
message: import("./TranslationConfig").TranslationConfig;
|
3933
|
+
validator: import(".").JSONSchema;
|
3934
|
+
}[] | undefined;
|
3935
|
+
required?: boolean | undefined;
|
3936
|
+
defaultValue?: string | [string, string] | undefined;
|
3937
|
+
conditionals?: ({
|
3938
|
+
type: "SHOW";
|
3939
|
+
conditional: import(".").JSONSchema;
|
3940
|
+
} | {
|
3941
|
+
type: "ENABLE";
|
3942
|
+
conditional: import(".").JSONSchema;
|
3943
|
+
} | {
|
3944
|
+
type: "DISPLAY_ON_REVIEW";
|
3945
|
+
conditional: import(".").JSONSchema;
|
3946
|
+
})[] | undefined;
|
3947
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3948
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3658
3949
|
hideLabel?: boolean | undefined;
|
3659
3950
|
configuration?: {
|
3660
3951
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -3688,6 +3979,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3688
3979
|
conditional: import(".").JSONSchema;
|
3689
3980
|
})[] | undefined;
|
3690
3981
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
3982
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3691
3983
|
hideLabel?: boolean | undefined;
|
3692
3984
|
} | {
|
3693
3985
|
type: "PAGE_HEADER";
|
@@ -3713,6 +4005,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3713
4005
|
conditional: import(".").JSONSchema;
|
3714
4006
|
})[] | undefined;
|
3715
4007
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4008
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3716
4009
|
hideLabel?: boolean | undefined;
|
3717
4010
|
} | {
|
3718
4011
|
type: "FILE";
|
@@ -3746,6 +4039,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3746
4039
|
conditional: import(".").JSONSchema;
|
3747
4040
|
})[] | undefined;
|
3748
4041
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4042
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3749
4043
|
hideLabel?: boolean | undefined;
|
3750
4044
|
} | {
|
3751
4045
|
type: "RADIO_GROUP";
|
@@ -3775,6 +4069,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3775
4069
|
conditional: import(".").JSONSchema;
|
3776
4070
|
})[] | undefined;
|
3777
4071
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4072
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3778
4073
|
hideLabel?: boolean | undefined;
|
3779
4074
|
configuration?: {
|
3780
4075
|
styles?: {
|
@@ -3811,6 +4106,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3811
4106
|
conditional: import(".").JSONSchema;
|
3812
4107
|
})[] | undefined;
|
3813
4108
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4109
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3814
4110
|
hideLabel?: boolean | undefined;
|
3815
4111
|
} | {
|
3816
4112
|
type: "SELECT";
|
@@ -3840,6 +4136,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3840
4136
|
conditional: import(".").JSONSchema;
|
3841
4137
|
})[] | undefined;
|
3842
4138
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4139
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3843
4140
|
hideLabel?: boolean | undefined;
|
3844
4141
|
} | {
|
3845
4142
|
type: "CHECKBOX";
|
@@ -3865,6 +4162,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3865
4162
|
conditional: import(".").JSONSchema;
|
3866
4163
|
})[] | undefined;
|
3867
4164
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4165
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3868
4166
|
hideLabel?: boolean | undefined;
|
3869
4167
|
} | {
|
3870
4168
|
type: "COUNTRY";
|
@@ -3890,6 +4188,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3890
4188
|
conditional: import(".").JSONSchema;
|
3891
4189
|
})[] | undefined;
|
3892
4190
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4191
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3893
4192
|
hideLabel?: boolean | undefined;
|
3894
4193
|
} | {
|
3895
4194
|
type: "ADMINISTRATIVE_AREA";
|
@@ -3921,6 +4220,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3921
4220
|
conditional: import(".").JSONSchema;
|
3922
4221
|
})[] | undefined;
|
3923
4222
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4223
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3924
4224
|
hideLabel?: boolean | undefined;
|
3925
4225
|
} | {
|
3926
4226
|
type: "LOCATION";
|
@@ -3946,6 +4246,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3946
4246
|
conditional: import(".").JSONSchema;
|
3947
4247
|
})[] | undefined;
|
3948
4248
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4249
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3949
4250
|
hideLabel?: boolean | undefined;
|
3950
4251
|
} | {
|
3951
4252
|
type: "FILE_WITH_OPTIONS";
|
@@ -3979,6 +4280,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
3979
4280
|
conditional: import(".").JSONSchema;
|
3980
4281
|
})[] | undefined;
|
3981
4282
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4283
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
3982
4284
|
hideLabel?: boolean | undefined;
|
3983
4285
|
} | {
|
3984
4286
|
type: "FACILITY";
|
@@ -4004,6 +4306,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4004
4306
|
conditional: import(".").JSONSchema;
|
4005
4307
|
})[] | undefined;
|
4006
4308
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4309
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4007
4310
|
hideLabel?: boolean | undefined;
|
4008
4311
|
} | {
|
4009
4312
|
type: "OFFICE";
|
@@ -4029,6 +4332,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4029
4332
|
conditional: import(".").JSONSchema;
|
4030
4333
|
})[] | undefined;
|
4031
4334
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4335
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4032
4336
|
hideLabel?: boolean | undefined;
|
4033
4337
|
} | {
|
4034
4338
|
type: "ADDRESS";
|
@@ -4082,6 +4386,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4082
4386
|
conditional: import(".").JSONSchema;
|
4083
4387
|
})[] | undefined;
|
4084
4388
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4389
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4085
4390
|
hideLabel?: boolean | undefined;
|
4086
4391
|
} | {
|
4087
4392
|
type: "DATA";
|
@@ -4116,6 +4421,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4116
4421
|
conditional: import(".").JSONSchema;
|
4117
4422
|
})[] | undefined;
|
4118
4423
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4424
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4119
4425
|
hideLabel?: boolean | undefined;
|
4120
4426
|
})[];
|
4121
4427
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -4160,6 +4466,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4160
4466
|
conditional: import(".").JSONSchema;
|
4161
4467
|
})[] | undefined;
|
4162
4468
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4469
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4163
4470
|
hideLabel?: boolean | undefined;
|
4164
4471
|
} | {
|
4165
4472
|
type: "TEXT";
|
@@ -4185,6 +4492,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4185
4492
|
conditional: import(".").JSONSchema;
|
4186
4493
|
})[] | undefined;
|
4187
4494
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4495
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4188
4496
|
hideLabel?: boolean | undefined;
|
4189
4497
|
configuration?: {
|
4190
4498
|
type?: "text" | "password" | undefined;
|
@@ -4216,6 +4524,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4216
4524
|
conditional: import(".").JSONSchema;
|
4217
4525
|
})[] | undefined;
|
4218
4526
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4527
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4219
4528
|
hideLabel?: boolean | undefined;
|
4220
4529
|
configuration?: {
|
4221
4530
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -4247,6 +4556,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4247
4556
|
conditional: import(".").JSONSchema;
|
4248
4557
|
})[] | undefined;
|
4249
4558
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4559
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4250
4560
|
hideLabel?: boolean | undefined;
|
4251
4561
|
configuration?: {
|
4252
4562
|
maxLength?: number | undefined;
|
@@ -4284,6 +4594,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4284
4594
|
conditional: import(".").JSONSchema;
|
4285
4595
|
})[] | undefined;
|
4286
4596
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4597
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4287
4598
|
hideLabel?: boolean | undefined;
|
4288
4599
|
} | {
|
4289
4600
|
type: "EMAIL";
|
@@ -4309,6 +4620,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4309
4620
|
conditional: import(".").JSONSchema;
|
4310
4621
|
})[] | undefined;
|
4311
4622
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4623
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4312
4624
|
hideLabel?: boolean | undefined;
|
4313
4625
|
configuration?: {
|
4314
4626
|
maxLength?: number | undefined;
|
@@ -4337,6 +4649,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4337
4649
|
conditional: import(".").JSONSchema;
|
4338
4650
|
})[] | undefined;
|
4339
4651
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4652
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4653
|
+
hideLabel?: boolean | undefined;
|
4654
|
+
configuration?: {
|
4655
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
4656
|
+
} | undefined;
|
4657
|
+
} | {
|
4658
|
+
type: "DATE_RANGE";
|
4659
|
+
id: string;
|
4660
|
+
label: import("./TranslationConfig").TranslationConfig;
|
4661
|
+
parent?: {
|
4662
|
+
_fieldId?: string | undefined;
|
4663
|
+
} | undefined;
|
4664
|
+
validation?: {
|
4665
|
+
message: import("./TranslationConfig").TranslationConfig;
|
4666
|
+
validator: import(".").JSONSchema;
|
4667
|
+
}[] | undefined;
|
4668
|
+
required?: boolean | undefined;
|
4669
|
+
defaultValue?: string | [string, string] | undefined;
|
4670
|
+
conditionals?: ({
|
4671
|
+
type: "SHOW";
|
4672
|
+
conditional: import(".").JSONSchema;
|
4673
|
+
} | {
|
4674
|
+
type: "ENABLE";
|
4675
|
+
conditional: import(".").JSONSchema;
|
4676
|
+
} | {
|
4677
|
+
type: "DISPLAY_ON_REVIEW";
|
4678
|
+
conditional: import(".").JSONSchema;
|
4679
|
+
})[] | undefined;
|
4680
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4681
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4340
4682
|
hideLabel?: boolean | undefined;
|
4341
4683
|
configuration?: {
|
4342
4684
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -4370,6 +4712,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4370
4712
|
conditional: import(".").JSONSchema;
|
4371
4713
|
})[] | undefined;
|
4372
4714
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4715
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4373
4716
|
hideLabel?: boolean | undefined;
|
4374
4717
|
} | {
|
4375
4718
|
type: "PAGE_HEADER";
|
@@ -4395,6 +4738,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4395
4738
|
conditional: import(".").JSONSchema;
|
4396
4739
|
})[] | undefined;
|
4397
4740
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4741
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4398
4742
|
hideLabel?: boolean | undefined;
|
4399
4743
|
} | {
|
4400
4744
|
type: "FILE";
|
@@ -4428,6 +4772,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4428
4772
|
conditional: import(".").JSONSchema;
|
4429
4773
|
})[] | undefined;
|
4430
4774
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4775
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4431
4776
|
hideLabel?: boolean | undefined;
|
4432
4777
|
} | {
|
4433
4778
|
type: "RADIO_GROUP";
|
@@ -4457,6 +4802,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4457
4802
|
conditional: import(".").JSONSchema;
|
4458
4803
|
})[] | undefined;
|
4459
4804
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4805
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4460
4806
|
hideLabel?: boolean | undefined;
|
4461
4807
|
configuration?: {
|
4462
4808
|
styles?: {
|
@@ -4493,6 +4839,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4493
4839
|
conditional: import(".").JSONSchema;
|
4494
4840
|
})[] | undefined;
|
4495
4841
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4842
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4496
4843
|
hideLabel?: boolean | undefined;
|
4497
4844
|
} | {
|
4498
4845
|
type: "SELECT";
|
@@ -4522,6 +4869,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4522
4869
|
conditional: import(".").JSONSchema;
|
4523
4870
|
})[] | undefined;
|
4524
4871
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4872
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4525
4873
|
hideLabel?: boolean | undefined;
|
4526
4874
|
} | {
|
4527
4875
|
type: "CHECKBOX";
|
@@ -4547,6 +4895,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4547
4895
|
conditional: import(".").JSONSchema;
|
4548
4896
|
})[] | undefined;
|
4549
4897
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4898
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4550
4899
|
hideLabel?: boolean | undefined;
|
4551
4900
|
} | {
|
4552
4901
|
type: "COUNTRY";
|
@@ -4572,6 +4921,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4572
4921
|
conditional: import(".").JSONSchema;
|
4573
4922
|
})[] | undefined;
|
4574
4923
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4924
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4575
4925
|
hideLabel?: boolean | undefined;
|
4576
4926
|
} | {
|
4577
4927
|
type: "ADMINISTRATIVE_AREA";
|
@@ -4603,6 +4953,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4603
4953
|
conditional: import(".").JSONSchema;
|
4604
4954
|
})[] | undefined;
|
4605
4955
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4956
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4606
4957
|
hideLabel?: boolean | undefined;
|
4607
4958
|
} | {
|
4608
4959
|
type: "LOCATION";
|
@@ -4628,6 +4979,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4628
4979
|
conditional: import(".").JSONSchema;
|
4629
4980
|
})[] | undefined;
|
4630
4981
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
4982
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4631
4983
|
hideLabel?: boolean | undefined;
|
4632
4984
|
} | {
|
4633
4985
|
type: "FILE_WITH_OPTIONS";
|
@@ -4661,6 +5013,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4661
5013
|
conditional: import(".").JSONSchema;
|
4662
5014
|
})[] | undefined;
|
4663
5015
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5016
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4664
5017
|
hideLabel?: boolean | undefined;
|
4665
5018
|
} | {
|
4666
5019
|
type: "FACILITY";
|
@@ -4686,6 +5039,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4686
5039
|
conditional: import(".").JSONSchema;
|
4687
5040
|
})[] | undefined;
|
4688
5041
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5042
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4689
5043
|
hideLabel?: boolean | undefined;
|
4690
5044
|
} | {
|
4691
5045
|
type: "OFFICE";
|
@@ -4711,6 +5065,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4711
5065
|
conditional: import(".").JSONSchema;
|
4712
5066
|
})[] | undefined;
|
4713
5067
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5068
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4714
5069
|
hideLabel?: boolean | undefined;
|
4715
5070
|
} | {
|
4716
5071
|
type: "ADDRESS";
|
@@ -4764,6 +5119,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4764
5119
|
conditional: import(".").JSONSchema;
|
4765
5120
|
})[] | undefined;
|
4766
5121
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5122
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4767
5123
|
hideLabel?: boolean | undefined;
|
4768
5124
|
} | {
|
4769
5125
|
type: "DATA";
|
@@ -4798,6 +5154,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4798
5154
|
conditional: import(".").JSONSchema;
|
4799
5155
|
})[] | undefined;
|
4800
5156
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5157
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4801
5158
|
hideLabel?: boolean | undefined;
|
4802
5159
|
})[];
|
4803
5160
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -4841,6 +5198,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4841
5198
|
conditional: import(".").JSONSchema;
|
4842
5199
|
})[] | undefined;
|
4843
5200
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5201
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4844
5202
|
hideLabel?: boolean | undefined;
|
4845
5203
|
} | {
|
4846
5204
|
type: "TEXT";
|
@@ -4866,6 +5224,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4866
5224
|
conditional: import(".").JSONSchema;
|
4867
5225
|
})[] | undefined;
|
4868
5226
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5227
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4869
5228
|
hideLabel?: boolean | undefined;
|
4870
5229
|
configuration?: {
|
4871
5230
|
type?: "text" | "password" | undefined;
|
@@ -4897,6 +5256,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4897
5256
|
conditional: import(".").JSONSchema;
|
4898
5257
|
})[] | undefined;
|
4899
5258
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5259
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4900
5260
|
hideLabel?: boolean | undefined;
|
4901
5261
|
configuration?: {
|
4902
5262
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -4928,6 +5288,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4928
5288
|
conditional: import(".").JSONSchema;
|
4929
5289
|
})[] | undefined;
|
4930
5290
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5291
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4931
5292
|
hideLabel?: boolean | undefined;
|
4932
5293
|
configuration?: {
|
4933
5294
|
maxLength?: number | undefined;
|
@@ -4965,6 +5326,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4965
5326
|
conditional: import(".").JSONSchema;
|
4966
5327
|
})[] | undefined;
|
4967
5328
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5329
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4968
5330
|
hideLabel?: boolean | undefined;
|
4969
5331
|
} | {
|
4970
5332
|
type: "EMAIL";
|
@@ -4990,6 +5352,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
4990
5352
|
conditional: import(".").JSONSchema;
|
4991
5353
|
})[] | undefined;
|
4992
5354
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5355
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
4993
5356
|
hideLabel?: boolean | undefined;
|
4994
5357
|
configuration?: {
|
4995
5358
|
maxLength?: number | undefined;
|
@@ -5018,6 +5381,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5018
5381
|
conditional: import(".").JSONSchema;
|
5019
5382
|
})[] | undefined;
|
5020
5383
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5384
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5385
|
+
hideLabel?: boolean | undefined;
|
5386
|
+
configuration?: {
|
5387
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
5388
|
+
} | undefined;
|
5389
|
+
} | {
|
5390
|
+
type: "DATE_RANGE";
|
5391
|
+
id: string;
|
5392
|
+
label: import("./TranslationConfig").TranslationConfig;
|
5393
|
+
parent?: {
|
5394
|
+
_fieldId?: string | undefined;
|
5395
|
+
} | undefined;
|
5396
|
+
validation?: {
|
5397
|
+
message: import("./TranslationConfig").TranslationConfig;
|
5398
|
+
validator: import(".").JSONSchema;
|
5399
|
+
}[] | undefined;
|
5400
|
+
required?: boolean | undefined;
|
5401
|
+
defaultValue?: string | [string, string] | undefined;
|
5402
|
+
conditionals?: ({
|
5403
|
+
type: "SHOW";
|
5404
|
+
conditional: import(".").JSONSchema;
|
5405
|
+
} | {
|
5406
|
+
type: "ENABLE";
|
5407
|
+
conditional: import(".").JSONSchema;
|
5408
|
+
} | {
|
5409
|
+
type: "DISPLAY_ON_REVIEW";
|
5410
|
+
conditional: import(".").JSONSchema;
|
5411
|
+
})[] | undefined;
|
5412
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5413
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5021
5414
|
hideLabel?: boolean | undefined;
|
5022
5415
|
configuration?: {
|
5023
5416
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -5051,6 +5444,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5051
5444
|
conditional: import(".").JSONSchema;
|
5052
5445
|
})[] | undefined;
|
5053
5446
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5447
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5054
5448
|
hideLabel?: boolean | undefined;
|
5055
5449
|
} | {
|
5056
5450
|
type: "PAGE_HEADER";
|
@@ -5076,6 +5470,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5076
5470
|
conditional: import(".").JSONSchema;
|
5077
5471
|
})[] | undefined;
|
5078
5472
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5473
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5079
5474
|
hideLabel?: boolean | undefined;
|
5080
5475
|
} | {
|
5081
5476
|
type: "FILE";
|
@@ -5109,6 +5504,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5109
5504
|
conditional: import(".").JSONSchema;
|
5110
5505
|
})[] | undefined;
|
5111
5506
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5507
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5112
5508
|
hideLabel?: boolean | undefined;
|
5113
5509
|
} | {
|
5114
5510
|
type: "RADIO_GROUP";
|
@@ -5138,6 +5534,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5138
5534
|
conditional: import(".").JSONSchema;
|
5139
5535
|
})[] | undefined;
|
5140
5536
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5537
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5141
5538
|
hideLabel?: boolean | undefined;
|
5142
5539
|
configuration?: {
|
5143
5540
|
styles?: {
|
@@ -5174,6 +5571,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5174
5571
|
conditional: import(".").JSONSchema;
|
5175
5572
|
})[] | undefined;
|
5176
5573
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5574
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5177
5575
|
hideLabel?: boolean | undefined;
|
5178
5576
|
} | {
|
5179
5577
|
type: "SELECT";
|
@@ -5203,6 +5601,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5203
5601
|
conditional: import(".").JSONSchema;
|
5204
5602
|
})[] | undefined;
|
5205
5603
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5604
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5206
5605
|
hideLabel?: boolean | undefined;
|
5207
5606
|
} | {
|
5208
5607
|
type: "CHECKBOX";
|
@@ -5228,6 +5627,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5228
5627
|
conditional: import(".").JSONSchema;
|
5229
5628
|
})[] | undefined;
|
5230
5629
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5630
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5231
5631
|
hideLabel?: boolean | undefined;
|
5232
5632
|
} | {
|
5233
5633
|
type: "COUNTRY";
|
@@ -5253,6 +5653,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5253
5653
|
conditional: import(".").JSONSchema;
|
5254
5654
|
})[] | undefined;
|
5255
5655
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5656
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5256
5657
|
hideLabel?: boolean | undefined;
|
5257
5658
|
} | {
|
5258
5659
|
type: "ADMINISTRATIVE_AREA";
|
@@ -5284,6 +5685,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5284
5685
|
conditional: import(".").JSONSchema;
|
5285
5686
|
})[] | undefined;
|
5286
5687
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5688
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5287
5689
|
hideLabel?: boolean | undefined;
|
5288
5690
|
} | {
|
5289
5691
|
type: "LOCATION";
|
@@ -5309,6 +5711,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5309
5711
|
conditional: import(".").JSONSchema;
|
5310
5712
|
})[] | undefined;
|
5311
5713
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5714
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5312
5715
|
hideLabel?: boolean | undefined;
|
5313
5716
|
} | {
|
5314
5717
|
type: "FILE_WITH_OPTIONS";
|
@@ -5342,6 +5745,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5342
5745
|
conditional: import(".").JSONSchema;
|
5343
5746
|
})[] | undefined;
|
5344
5747
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5748
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5345
5749
|
hideLabel?: boolean | undefined;
|
5346
5750
|
} | {
|
5347
5751
|
type: "FACILITY";
|
@@ -5367,6 +5771,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5367
5771
|
conditional: import(".").JSONSchema;
|
5368
5772
|
})[] | undefined;
|
5369
5773
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5774
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5370
5775
|
hideLabel?: boolean | undefined;
|
5371
5776
|
} | {
|
5372
5777
|
type: "OFFICE";
|
@@ -5392,6 +5797,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5392
5797
|
conditional: import(".").JSONSchema;
|
5393
5798
|
})[] | undefined;
|
5394
5799
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5800
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5395
5801
|
hideLabel?: boolean | undefined;
|
5396
5802
|
} | {
|
5397
5803
|
type: "ADDRESS";
|
@@ -5445,6 +5851,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5445
5851
|
conditional: import(".").JSONSchema;
|
5446
5852
|
})[] | undefined;
|
5447
5853
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5854
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5448
5855
|
hideLabel?: boolean | undefined;
|
5449
5856
|
} | {
|
5450
5857
|
type: "DATA";
|
@@ -5479,6 +5886,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5479
5886
|
conditional: import(".").JSONSchema;
|
5480
5887
|
})[] | undefined;
|
5481
5888
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5889
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5482
5890
|
hideLabel?: boolean | undefined;
|
5483
5891
|
})[];
|
5484
5892
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -5511,6 +5919,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5511
5919
|
conditional: import(".").JSONSchema;
|
5512
5920
|
})[] | undefined;
|
5513
5921
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5922
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5514
5923
|
hideLabel?: boolean | undefined;
|
5515
5924
|
} | {
|
5516
5925
|
type: "TEXT";
|
@@ -5536,6 +5945,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5536
5945
|
conditional: import(".").JSONSchema;
|
5537
5946
|
})[] | undefined;
|
5538
5947
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5948
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5539
5949
|
hideLabel?: boolean | undefined;
|
5540
5950
|
configuration?: {
|
5541
5951
|
type?: "text" | "password" | undefined;
|
@@ -5567,6 +5977,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5567
5977
|
conditional: import(".").JSONSchema;
|
5568
5978
|
})[] | undefined;
|
5569
5979
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
5980
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5570
5981
|
hideLabel?: boolean | undefined;
|
5571
5982
|
configuration?: {
|
5572
5983
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -5598,6 +6009,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5598
6009
|
conditional: import(".").JSONSchema;
|
5599
6010
|
})[] | undefined;
|
5600
6011
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6012
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5601
6013
|
hideLabel?: boolean | undefined;
|
5602
6014
|
configuration?: {
|
5603
6015
|
maxLength?: number | undefined;
|
@@ -5635,6 +6047,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5635
6047
|
conditional: import(".").JSONSchema;
|
5636
6048
|
})[] | undefined;
|
5637
6049
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6050
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5638
6051
|
hideLabel?: boolean | undefined;
|
5639
6052
|
} | {
|
5640
6053
|
type: "EMAIL";
|
@@ -5660,6 +6073,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5660
6073
|
conditional: import(".").JSONSchema;
|
5661
6074
|
})[] | undefined;
|
5662
6075
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6076
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5663
6077
|
hideLabel?: boolean | undefined;
|
5664
6078
|
configuration?: {
|
5665
6079
|
maxLength?: number | undefined;
|
@@ -5688,6 +6102,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5688
6102
|
conditional: import(".").JSONSchema;
|
5689
6103
|
})[] | undefined;
|
5690
6104
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6105
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6106
|
+
hideLabel?: boolean | undefined;
|
6107
|
+
configuration?: {
|
6108
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
6109
|
+
} | undefined;
|
6110
|
+
} | {
|
6111
|
+
type: "DATE_RANGE";
|
6112
|
+
id: string;
|
6113
|
+
label: import("./TranslationConfig").TranslationConfig;
|
6114
|
+
parent?: {
|
6115
|
+
_fieldId?: string | undefined;
|
6116
|
+
} | undefined;
|
6117
|
+
validation?: {
|
6118
|
+
message: import("./TranslationConfig").TranslationConfig;
|
6119
|
+
validator: import(".").JSONSchema;
|
6120
|
+
}[] | undefined;
|
6121
|
+
required?: boolean | undefined;
|
6122
|
+
defaultValue?: string | [string, string] | undefined;
|
6123
|
+
conditionals?: ({
|
6124
|
+
type: "SHOW";
|
6125
|
+
conditional: import(".").JSONSchema;
|
6126
|
+
} | {
|
6127
|
+
type: "ENABLE";
|
6128
|
+
conditional: import(".").JSONSchema;
|
6129
|
+
} | {
|
6130
|
+
type: "DISPLAY_ON_REVIEW";
|
6131
|
+
conditional: import(".").JSONSchema;
|
6132
|
+
})[] | undefined;
|
6133
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6134
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5691
6135
|
hideLabel?: boolean | undefined;
|
5692
6136
|
configuration?: {
|
5693
6137
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -5721,6 +6165,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5721
6165
|
conditional: import(".").JSONSchema;
|
5722
6166
|
})[] | undefined;
|
5723
6167
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6168
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5724
6169
|
hideLabel?: boolean | undefined;
|
5725
6170
|
} | {
|
5726
6171
|
type: "PAGE_HEADER";
|
@@ -5746,6 +6191,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5746
6191
|
conditional: import(".").JSONSchema;
|
5747
6192
|
})[] | undefined;
|
5748
6193
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6194
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5749
6195
|
hideLabel?: boolean | undefined;
|
5750
6196
|
} | {
|
5751
6197
|
type: "FILE";
|
@@ -5779,6 +6225,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5779
6225
|
conditional: import(".").JSONSchema;
|
5780
6226
|
})[] | undefined;
|
5781
6227
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6228
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5782
6229
|
hideLabel?: boolean | undefined;
|
5783
6230
|
} | {
|
5784
6231
|
type: "RADIO_GROUP";
|
@@ -5808,6 +6255,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5808
6255
|
conditional: import(".").JSONSchema;
|
5809
6256
|
})[] | undefined;
|
5810
6257
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6258
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5811
6259
|
hideLabel?: boolean | undefined;
|
5812
6260
|
configuration?: {
|
5813
6261
|
styles?: {
|
@@ -5844,6 +6292,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5844
6292
|
conditional: import(".").JSONSchema;
|
5845
6293
|
})[] | undefined;
|
5846
6294
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6295
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5847
6296
|
hideLabel?: boolean | undefined;
|
5848
6297
|
} | {
|
5849
6298
|
type: "SELECT";
|
@@ -5873,6 +6322,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5873
6322
|
conditional: import(".").JSONSchema;
|
5874
6323
|
})[] | undefined;
|
5875
6324
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6325
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5876
6326
|
hideLabel?: boolean | undefined;
|
5877
6327
|
} | {
|
5878
6328
|
type: "CHECKBOX";
|
@@ -5898,6 +6348,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5898
6348
|
conditional: import(".").JSONSchema;
|
5899
6349
|
})[] | undefined;
|
5900
6350
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6351
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5901
6352
|
hideLabel?: boolean | undefined;
|
5902
6353
|
} | {
|
5903
6354
|
type: "COUNTRY";
|
@@ -5923,6 +6374,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5923
6374
|
conditional: import(".").JSONSchema;
|
5924
6375
|
})[] | undefined;
|
5925
6376
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6377
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5926
6378
|
hideLabel?: boolean | undefined;
|
5927
6379
|
} | {
|
5928
6380
|
type: "ADMINISTRATIVE_AREA";
|
@@ -5954,6 +6406,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5954
6406
|
conditional: import(".").JSONSchema;
|
5955
6407
|
})[] | undefined;
|
5956
6408
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6409
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5957
6410
|
hideLabel?: boolean | undefined;
|
5958
6411
|
} | {
|
5959
6412
|
type: "LOCATION";
|
@@ -5979,6 +6432,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
5979
6432
|
conditional: import(".").JSONSchema;
|
5980
6433
|
})[] | undefined;
|
5981
6434
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6435
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
5982
6436
|
hideLabel?: boolean | undefined;
|
5983
6437
|
} | {
|
5984
6438
|
type: "FILE_WITH_OPTIONS";
|
@@ -6012,6 +6466,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6012
6466
|
conditional: import(".").JSONSchema;
|
6013
6467
|
})[] | undefined;
|
6014
6468
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6469
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6015
6470
|
hideLabel?: boolean | undefined;
|
6016
6471
|
} | {
|
6017
6472
|
type: "FACILITY";
|
@@ -6037,6 +6492,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6037
6492
|
conditional: import(".").JSONSchema;
|
6038
6493
|
})[] | undefined;
|
6039
6494
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6495
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6040
6496
|
hideLabel?: boolean | undefined;
|
6041
6497
|
} | {
|
6042
6498
|
type: "OFFICE";
|
@@ -6062,6 +6518,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6062
6518
|
conditional: import(".").JSONSchema;
|
6063
6519
|
})[] | undefined;
|
6064
6520
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6521
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6065
6522
|
hideLabel?: boolean | undefined;
|
6066
6523
|
} | {
|
6067
6524
|
type: "ADDRESS";
|
@@ -6115,6 +6572,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6115
6572
|
conditional: import(".").JSONSchema;
|
6116
6573
|
})[] | undefined;
|
6117
6574
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6575
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6118
6576
|
hideLabel?: boolean | undefined;
|
6119
6577
|
} | {
|
6120
6578
|
type: "DATA";
|
@@ -6149,6 +6607,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6149
6607
|
conditional: import(".").JSONSchema;
|
6150
6608
|
})[] | undefined;
|
6151
6609
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6610
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6152
6611
|
hideLabel?: boolean | undefined;
|
6153
6612
|
})[];
|
6154
6613
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -6192,6 +6651,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6192
6651
|
conditional: import(".").JSONSchema;
|
6193
6652
|
})[] | undefined;
|
6194
6653
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6654
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6195
6655
|
hideLabel?: boolean | undefined;
|
6196
6656
|
} | {
|
6197
6657
|
type: "TEXT";
|
@@ -6217,6 +6677,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6217
6677
|
conditional: import(".").JSONSchema;
|
6218
6678
|
})[] | undefined;
|
6219
6679
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6680
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6220
6681
|
hideLabel?: boolean | undefined;
|
6221
6682
|
configuration?: {
|
6222
6683
|
type?: "text" | "password" | undefined;
|
@@ -6248,6 +6709,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6248
6709
|
conditional: import(".").JSONSchema;
|
6249
6710
|
})[] | undefined;
|
6250
6711
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6712
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6251
6713
|
hideLabel?: boolean | undefined;
|
6252
6714
|
configuration?: {
|
6253
6715
|
prefix?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -6279,6 +6741,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6279
6741
|
conditional: import(".").JSONSchema;
|
6280
6742
|
})[] | undefined;
|
6281
6743
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6744
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6282
6745
|
hideLabel?: boolean | undefined;
|
6283
6746
|
configuration?: {
|
6284
6747
|
maxLength?: number | undefined;
|
@@ -6316,6 +6779,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6316
6779
|
conditional: import(".").JSONSchema;
|
6317
6780
|
})[] | undefined;
|
6318
6781
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6782
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6319
6783
|
hideLabel?: boolean | undefined;
|
6320
6784
|
} | {
|
6321
6785
|
type: "EMAIL";
|
@@ -6341,6 +6805,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6341
6805
|
conditional: import(".").JSONSchema;
|
6342
6806
|
})[] | undefined;
|
6343
6807
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6808
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6344
6809
|
hideLabel?: boolean | undefined;
|
6345
6810
|
configuration?: {
|
6346
6811
|
maxLength?: number | undefined;
|
@@ -6369,6 +6834,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6369
6834
|
conditional: import(".").JSONSchema;
|
6370
6835
|
})[] | undefined;
|
6371
6836
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6837
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6838
|
+
hideLabel?: boolean | undefined;
|
6839
|
+
configuration?: {
|
6840
|
+
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
6841
|
+
} | undefined;
|
6842
|
+
} | {
|
6843
|
+
type: "DATE_RANGE";
|
6844
|
+
id: string;
|
6845
|
+
label: import("./TranslationConfig").TranslationConfig;
|
6846
|
+
parent?: {
|
6847
|
+
_fieldId?: string | undefined;
|
6848
|
+
} | undefined;
|
6849
|
+
validation?: {
|
6850
|
+
message: import("./TranslationConfig").TranslationConfig;
|
6851
|
+
validator: import(".").JSONSchema;
|
6852
|
+
}[] | undefined;
|
6853
|
+
required?: boolean | undefined;
|
6854
|
+
defaultValue?: string | [string, string] | undefined;
|
6855
|
+
conditionals?: ({
|
6856
|
+
type: "SHOW";
|
6857
|
+
conditional: import(".").JSONSchema;
|
6858
|
+
} | {
|
6859
|
+
type: "ENABLE";
|
6860
|
+
conditional: import(".").JSONSchema;
|
6861
|
+
} | {
|
6862
|
+
type: "DISPLAY_ON_REVIEW";
|
6863
|
+
conditional: import(".").JSONSchema;
|
6864
|
+
})[] | undefined;
|
6865
|
+
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6866
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6372
6867
|
hideLabel?: boolean | undefined;
|
6373
6868
|
configuration?: {
|
6374
6869
|
notice?: import("./TranslationConfig").TranslationConfig | undefined;
|
@@ -6402,6 +6897,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6402
6897
|
conditional: import(".").JSONSchema;
|
6403
6898
|
})[] | undefined;
|
6404
6899
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6900
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6405
6901
|
hideLabel?: boolean | undefined;
|
6406
6902
|
} | {
|
6407
6903
|
type: "PAGE_HEADER";
|
@@ -6427,6 +6923,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6427
6923
|
conditional: import(".").JSONSchema;
|
6428
6924
|
})[] | undefined;
|
6429
6925
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6926
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6430
6927
|
hideLabel?: boolean | undefined;
|
6431
6928
|
} | {
|
6432
6929
|
type: "FILE";
|
@@ -6460,6 +6957,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6460
6957
|
conditional: import(".").JSONSchema;
|
6461
6958
|
})[] | undefined;
|
6462
6959
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6960
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6463
6961
|
hideLabel?: boolean | undefined;
|
6464
6962
|
} | {
|
6465
6963
|
type: "RADIO_GROUP";
|
@@ -6489,6 +6987,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6489
6987
|
conditional: import(".").JSONSchema;
|
6490
6988
|
})[] | undefined;
|
6491
6989
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
6990
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6492
6991
|
hideLabel?: boolean | undefined;
|
6493
6992
|
configuration?: {
|
6494
6993
|
styles?: {
|
@@ -6525,6 +7024,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6525
7024
|
conditional: import(".").JSONSchema;
|
6526
7025
|
})[] | undefined;
|
6527
7026
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7027
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6528
7028
|
hideLabel?: boolean | undefined;
|
6529
7029
|
} | {
|
6530
7030
|
type: "SELECT";
|
@@ -6554,6 +7054,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6554
7054
|
conditional: import(".").JSONSchema;
|
6555
7055
|
})[] | undefined;
|
6556
7056
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7057
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6557
7058
|
hideLabel?: boolean | undefined;
|
6558
7059
|
} | {
|
6559
7060
|
type: "CHECKBOX";
|
@@ -6579,6 +7080,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6579
7080
|
conditional: import(".").JSONSchema;
|
6580
7081
|
})[] | undefined;
|
6581
7082
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7083
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6582
7084
|
hideLabel?: boolean | undefined;
|
6583
7085
|
} | {
|
6584
7086
|
type: "COUNTRY";
|
@@ -6604,6 +7106,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6604
7106
|
conditional: import(".").JSONSchema;
|
6605
7107
|
})[] | undefined;
|
6606
7108
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7109
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6607
7110
|
hideLabel?: boolean | undefined;
|
6608
7111
|
} | {
|
6609
7112
|
type: "ADMINISTRATIVE_AREA";
|
@@ -6635,6 +7138,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6635
7138
|
conditional: import(".").JSONSchema;
|
6636
7139
|
})[] | undefined;
|
6637
7140
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7141
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6638
7142
|
hideLabel?: boolean | undefined;
|
6639
7143
|
} | {
|
6640
7144
|
type: "LOCATION";
|
@@ -6660,6 +7164,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6660
7164
|
conditional: import(".").JSONSchema;
|
6661
7165
|
})[] | undefined;
|
6662
7166
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7167
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6663
7168
|
hideLabel?: boolean | undefined;
|
6664
7169
|
} | {
|
6665
7170
|
type: "FILE_WITH_OPTIONS";
|
@@ -6693,6 +7198,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6693
7198
|
conditional: import(".").JSONSchema;
|
6694
7199
|
})[] | undefined;
|
6695
7200
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7201
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6696
7202
|
hideLabel?: boolean | undefined;
|
6697
7203
|
} | {
|
6698
7204
|
type: "FACILITY";
|
@@ -6718,6 +7224,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6718
7224
|
conditional: import(".").JSONSchema;
|
6719
7225
|
})[] | undefined;
|
6720
7226
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7227
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6721
7228
|
hideLabel?: boolean | undefined;
|
6722
7229
|
} | {
|
6723
7230
|
type: "OFFICE";
|
@@ -6743,6 +7250,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6743
7250
|
conditional: import(".").JSONSchema;
|
6744
7251
|
})[] | undefined;
|
6745
7252
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7253
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6746
7254
|
hideLabel?: boolean | undefined;
|
6747
7255
|
} | {
|
6748
7256
|
type: "ADDRESS";
|
@@ -6796,6 +7304,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6796
7304
|
conditional: import(".").JSONSchema;
|
6797
7305
|
})[] | undefined;
|
6798
7306
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7307
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6799
7308
|
hideLabel?: boolean | undefined;
|
6800
7309
|
} | {
|
6801
7310
|
type: "DATA";
|
@@ -6830,6 +7339,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6830
7339
|
conditional: import(".").JSONSchema;
|
6831
7340
|
})[] | undefined;
|
6832
7341
|
placeholder?: import("./TranslationConfig").TranslationConfig | undefined;
|
7342
|
+
helperText?: import("./TranslationConfig").TranslationConfig | undefined;
|
6833
7343
|
hideLabel?: boolean | undefined;
|
6834
7344
|
})[];
|
6835
7345
|
conditional?: import(".").JSONSchema | undefined;
|
@@ -6887,7 +7397,7 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6887
7397
|
title: import("./TranslationConfig").TranslationConfig;
|
6888
7398
|
fields: ({
|
6889
7399
|
config: {
|
6890
|
-
type: "
|
7400
|
+
type: "exact" | "fuzzy" | "range";
|
6891
7401
|
};
|
6892
7402
|
fieldId: string;
|
6893
7403
|
fieldType: "field";
|
@@ -6895,16 +7405,36 @@ export declare const defineConfig: (config: EventConfigInput) => {
|
|
6895
7405
|
value: string;
|
6896
7406
|
label: import("./TranslationConfig").TranslationConfig;
|
6897
7407
|
}[] | undefined;
|
7408
|
+
conditionals?: ({
|
7409
|
+
type: "SHOW";
|
7410
|
+
conditional: import(".").JSONSchema;
|
7411
|
+
} | {
|
7412
|
+
type: "ENABLE";
|
7413
|
+
conditional: import(".").JSONSchema;
|
7414
|
+
} | {
|
7415
|
+
type: "DISPLAY_ON_REVIEW";
|
7416
|
+
conditional: import(".").JSONSchema;
|
7417
|
+
})[] | undefined;
|
6898
7418
|
} | {
|
6899
7419
|
config: {
|
6900
|
-
type: "
|
7420
|
+
type: "exact" | "fuzzy" | "range";
|
6901
7421
|
};
|
6902
|
-
fieldId: "status" | "trackingId";
|
7422
|
+
fieldId: "status" | "updatedAt" | "registeredAt" | "registeredAtLocation" | "trackingId";
|
6903
7423
|
fieldType: "event";
|
6904
7424
|
options?: {
|
6905
7425
|
value: string;
|
6906
7426
|
label: import("./TranslationConfig").TranslationConfig;
|
6907
7427
|
}[] | undefined;
|
7428
|
+
conditionals?: ({
|
7429
|
+
type: "SHOW";
|
7430
|
+
conditional: import(".").JSONSchema;
|
7431
|
+
} | {
|
7432
|
+
type: "ENABLE";
|
7433
|
+
conditional: import(".").JSONSchema;
|
7434
|
+
} | {
|
7435
|
+
type: "DISPLAY_ON_REVIEW";
|
7436
|
+
conditional: import(".").JSONSchema;
|
7437
|
+
})[] | undefined;
|
6908
7438
|
})[];
|
6909
7439
|
}[];
|
6910
7440
|
dateOfEvent?: {
|