@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
@@ -41,6 +41,11 @@ declare const BaseField: z.ZodObject<{
|
|
41
41
|
description: string;
|
42
42
|
defaultMessage: string;
|
43
43
|
}>;
|
44
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
45
|
+
id: string;
|
46
|
+
description: string;
|
47
|
+
defaultMessage: string;
|
48
|
+
}>>;
|
44
49
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
45
50
|
}, "strip", z.ZodTypeAny, {
|
46
51
|
id: string;
|
@@ -65,6 +70,7 @@ declare const BaseField: z.ZodObject<{
|
|
65
70
|
conditional: import(".").JSONSchema;
|
66
71
|
})[] | undefined;
|
67
72
|
placeholder?: TranslationConfig | undefined;
|
73
|
+
helperText?: TranslationConfig | undefined;
|
68
74
|
hideLabel?: boolean | undefined;
|
69
75
|
}, {
|
70
76
|
id: string;
|
@@ -101,6 +107,11 @@ declare const BaseField: z.ZodObject<{
|
|
101
107
|
description: string;
|
102
108
|
defaultMessage: string;
|
103
109
|
} | undefined;
|
110
|
+
helperText?: {
|
111
|
+
id: string;
|
112
|
+
description: string;
|
113
|
+
defaultMessage: string;
|
114
|
+
} | undefined;
|
104
115
|
hideLabel?: boolean | undefined;
|
105
116
|
}>;
|
106
117
|
export type BaseField = z.infer<typeof BaseField>;
|
@@ -144,6 +155,11 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
144
155
|
description: string;
|
145
156
|
defaultMessage: string;
|
146
157
|
}>;
|
158
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
159
|
+
id: string;
|
160
|
+
description: string;
|
161
|
+
defaultMessage: string;
|
162
|
+
}>>;
|
147
163
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
148
164
|
}, {
|
149
165
|
type: z.ZodLiteral<"DIVIDER">;
|
@@ -171,6 +187,7 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
171
187
|
conditional: import(".").JSONSchema;
|
172
188
|
})[] | undefined;
|
173
189
|
placeholder?: TranslationConfig | undefined;
|
190
|
+
helperText?: TranslationConfig | undefined;
|
174
191
|
hideLabel?: boolean | undefined;
|
175
192
|
}, {
|
176
193
|
type: "DIVIDER";
|
@@ -208,6 +225,11 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
208
225
|
description: string;
|
209
226
|
defaultMessage: string;
|
210
227
|
} | undefined;
|
228
|
+
helperText?: {
|
229
|
+
id: string;
|
230
|
+
description: string;
|
231
|
+
defaultMessage: string;
|
232
|
+
} | undefined;
|
211
233
|
hideLabel?: boolean | undefined;
|
212
234
|
}>;
|
213
235
|
export type Divider = z.infer<typeof Divider>;
|
@@ -251,6 +273,11 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
251
273
|
description: string;
|
252
274
|
defaultMessage: string;
|
253
275
|
}>;
|
276
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
277
|
+
id: string;
|
278
|
+
description: string;
|
279
|
+
defaultMessage: string;
|
280
|
+
}>>;
|
254
281
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
255
282
|
}, {
|
256
283
|
type: z.ZodLiteral<"TEXT">;
|
@@ -311,6 +338,7 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
311
338
|
conditional: import(".").JSONSchema;
|
312
339
|
})[] | undefined;
|
313
340
|
placeholder?: TranslationConfig | undefined;
|
341
|
+
helperText?: TranslationConfig | undefined;
|
314
342
|
hideLabel?: boolean | undefined;
|
315
343
|
configuration?: {
|
316
344
|
type?: "text" | "password" | undefined;
|
@@ -354,6 +382,11 @@ declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
354
382
|
description: string;
|
355
383
|
defaultMessage: string;
|
356
384
|
} | undefined;
|
385
|
+
helperText?: {
|
386
|
+
id: string;
|
387
|
+
description: string;
|
388
|
+
defaultMessage: string;
|
389
|
+
} | undefined;
|
357
390
|
hideLabel?: boolean | undefined;
|
358
391
|
configuration?: {
|
359
392
|
type?: "text" | "password" | undefined;
|
@@ -411,6 +444,11 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
411
444
|
description: string;
|
412
445
|
defaultMessage: string;
|
413
446
|
}>;
|
447
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
448
|
+
id: string;
|
449
|
+
description: string;
|
450
|
+
defaultMessage: string;
|
451
|
+
}>>;
|
414
452
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
415
453
|
}, {
|
416
454
|
type: z.ZodLiteral<"NUMBER">;
|
@@ -471,6 +509,7 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
471
509
|
conditional: import(".").JSONSchema;
|
472
510
|
})[] | undefined;
|
473
511
|
placeholder?: TranslationConfig | undefined;
|
512
|
+
helperText?: TranslationConfig | undefined;
|
474
513
|
hideLabel?: boolean | undefined;
|
475
514
|
configuration?: {
|
476
515
|
prefix?: TranslationConfig | undefined;
|
@@ -514,6 +553,11 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
514
553
|
description: string;
|
515
554
|
defaultMessage: string;
|
516
555
|
} | undefined;
|
556
|
+
helperText?: {
|
557
|
+
id: string;
|
558
|
+
description: string;
|
559
|
+
defaultMessage: string;
|
560
|
+
} | undefined;
|
517
561
|
hideLabel?: boolean | undefined;
|
518
562
|
configuration?: {
|
519
563
|
prefix?: {
|
@@ -570,6 +614,11 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
570
614
|
description: string;
|
571
615
|
defaultMessage: string;
|
572
616
|
}>;
|
617
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
618
|
+
id: string;
|
619
|
+
description: string;
|
620
|
+
defaultMessage: string;
|
621
|
+
}>>;
|
573
622
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
574
623
|
}, {
|
575
624
|
type: z.ZodLiteral<"TEXTAREA">;
|
@@ -633,6 +682,7 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
633
682
|
conditional: import(".").JSONSchema;
|
634
683
|
})[] | undefined;
|
635
684
|
placeholder?: TranslationConfig | undefined;
|
685
|
+
helperText?: TranslationConfig | undefined;
|
636
686
|
hideLabel?: boolean | undefined;
|
637
687
|
configuration?: {
|
638
688
|
maxLength?: number | undefined;
|
@@ -677,6 +727,11 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
677
727
|
description: string;
|
678
728
|
defaultMessage: string;
|
679
729
|
} | undefined;
|
730
|
+
helperText?: {
|
731
|
+
id: string;
|
732
|
+
description: string;
|
733
|
+
defaultMessage: string;
|
734
|
+
} | undefined;
|
680
735
|
hideLabel?: boolean | undefined;
|
681
736
|
configuration?: {
|
682
737
|
maxLength?: number | undefined;
|
@@ -738,6 +793,11 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
738
793
|
description: string;
|
739
794
|
defaultMessage: string;
|
740
795
|
}>;
|
796
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
797
|
+
id: string;
|
798
|
+
description: string;
|
799
|
+
defaultMessage: string;
|
800
|
+
}>>;
|
741
801
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
742
802
|
}, {
|
743
803
|
type: z.ZodLiteral<"SIGNATURE">;
|
@@ -785,6 +845,7 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
785
845
|
conditional: import(".").JSONSchema;
|
786
846
|
})[] | undefined;
|
787
847
|
placeholder?: TranslationConfig | undefined;
|
848
|
+
helperText?: TranslationConfig | undefined;
|
788
849
|
hideLabel?: boolean | undefined;
|
789
850
|
}, {
|
790
851
|
type: "SIGNATURE";
|
@@ -827,6 +888,11 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
827
888
|
description: string;
|
828
889
|
defaultMessage: string;
|
829
890
|
} | undefined;
|
891
|
+
helperText?: {
|
892
|
+
id: string;
|
893
|
+
description: string;
|
894
|
+
defaultMessage: string;
|
895
|
+
} | undefined;
|
830
896
|
hideLabel?: boolean | undefined;
|
831
897
|
configuration?: {
|
832
898
|
maxFileSize?: number | undefined;
|
@@ -874,6 +940,11 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
874
940
|
description: string;
|
875
941
|
defaultMessage: string;
|
876
942
|
}>;
|
943
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
944
|
+
id: string;
|
945
|
+
description: string;
|
946
|
+
defaultMessage: string;
|
947
|
+
}>>;
|
877
948
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
878
949
|
}, {
|
879
950
|
type: z.ZodLiteral<"EMAIL">;
|
@@ -909,6 +980,7 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
909
980
|
conditional: import(".").JSONSchema;
|
910
981
|
})[] | undefined;
|
911
982
|
placeholder?: TranslationConfig | undefined;
|
983
|
+
helperText?: TranslationConfig | undefined;
|
912
984
|
hideLabel?: boolean | undefined;
|
913
985
|
configuration?: {
|
914
986
|
maxLength?: number | undefined;
|
@@ -949,6 +1021,11 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
949
1021
|
description: string;
|
950
1022
|
defaultMessage: string;
|
951
1023
|
} | undefined;
|
1024
|
+
helperText?: {
|
1025
|
+
id: string;
|
1026
|
+
description: string;
|
1027
|
+
defaultMessage: string;
|
1028
|
+
} | undefined;
|
952
1029
|
hideLabel?: boolean | undefined;
|
953
1030
|
configuration?: {
|
954
1031
|
maxLength?: number | undefined;
|
@@ -995,6 +1072,11 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
995
1072
|
description: string;
|
996
1073
|
defaultMessage: string;
|
997
1074
|
}>;
|
1075
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1076
|
+
id: string;
|
1077
|
+
description: string;
|
1078
|
+
defaultMessage: string;
|
1079
|
+
}>>;
|
998
1080
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
999
1081
|
}, {
|
1000
1082
|
type: z.ZodLiteral<"DATE">;
|
@@ -1038,6 +1120,7 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1038
1120
|
conditional: import(".").JSONSchema;
|
1039
1121
|
})[] | undefined;
|
1040
1122
|
placeholder?: TranslationConfig | undefined;
|
1123
|
+
helperText?: TranslationConfig | undefined;
|
1041
1124
|
hideLabel?: boolean | undefined;
|
1042
1125
|
configuration?: {
|
1043
1126
|
notice?: TranslationConfig | undefined;
|
@@ -1078,6 +1161,11 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1078
1161
|
description: string;
|
1079
1162
|
defaultMessage: string;
|
1080
1163
|
} | undefined;
|
1164
|
+
helperText?: {
|
1165
|
+
id: string;
|
1166
|
+
description: string;
|
1167
|
+
defaultMessage: string;
|
1168
|
+
} | undefined;
|
1081
1169
|
hideLabel?: boolean | undefined;
|
1082
1170
|
configuration?: {
|
1083
1171
|
notice?: {
|
@@ -1088,6 +1176,150 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1088
1176
|
} | undefined;
|
1089
1177
|
}>;
|
1090
1178
|
export type DateField = z.infer<typeof DateField>;
|
1179
|
+
declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
1180
|
+
id: z.ZodString;
|
1181
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
1182
|
+
parent: z.ZodOptional<z.ZodObject<{
|
1183
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
1184
|
+
}, "strip", z.ZodTypeAny, {
|
1185
|
+
_fieldId?: string | undefined;
|
1186
|
+
}, {
|
1187
|
+
_fieldId?: string | undefined;
|
1188
|
+
}>>;
|
1189
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1190
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1191
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1192
|
+
id: string;
|
1193
|
+
description: string;
|
1194
|
+
defaultMessage: string;
|
1195
|
+
}>>;
|
1196
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
1197
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
1198
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1199
|
+
id: string;
|
1200
|
+
description: string;
|
1201
|
+
defaultMessage: string;
|
1202
|
+
}>;
|
1203
|
+
}, "strip", z.ZodTypeAny, {
|
1204
|
+
message: TranslationConfig;
|
1205
|
+
validator: import(".").JSONSchema;
|
1206
|
+
}, {
|
1207
|
+
message: {
|
1208
|
+
id: string;
|
1209
|
+
description: string;
|
1210
|
+
defaultMessage: string;
|
1211
|
+
};
|
1212
|
+
validator: import(".").JSONSchema;
|
1213
|
+
}>, "many">>>;
|
1214
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1215
|
+
id: string;
|
1216
|
+
description: string;
|
1217
|
+
defaultMessage: string;
|
1218
|
+
}>;
|
1219
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1220
|
+
id: string;
|
1221
|
+
description: string;
|
1222
|
+
defaultMessage: string;
|
1223
|
+
}>>;
|
1224
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1225
|
+
}, {
|
1226
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
1227
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
1228
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
1229
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1230
|
+
id: string;
|
1231
|
+
description: string;
|
1232
|
+
defaultMessage: string;
|
1233
|
+
}>>;
|
1234
|
+
}, "strip", z.ZodTypeAny, {
|
1235
|
+
notice?: TranslationConfig | undefined;
|
1236
|
+
}, {
|
1237
|
+
notice?: {
|
1238
|
+
id: string;
|
1239
|
+
description: string;
|
1240
|
+
defaultMessage: string;
|
1241
|
+
} | undefined;
|
1242
|
+
}>>;
|
1243
|
+
}>, "strip", z.ZodTypeAny, {
|
1244
|
+
type: "DATE_RANGE";
|
1245
|
+
id: string;
|
1246
|
+
label: TranslationConfig;
|
1247
|
+
parent?: {
|
1248
|
+
_fieldId?: string | undefined;
|
1249
|
+
} | undefined;
|
1250
|
+
validation?: {
|
1251
|
+
message: TranslationConfig;
|
1252
|
+
validator: import(".").JSONSchema;
|
1253
|
+
}[] | undefined;
|
1254
|
+
required?: boolean | undefined;
|
1255
|
+
defaultValue?: string | [string, string] | undefined;
|
1256
|
+
conditionals?: ({
|
1257
|
+
type: "SHOW";
|
1258
|
+
conditional: import(".").JSONSchema;
|
1259
|
+
} | {
|
1260
|
+
type: "ENABLE";
|
1261
|
+
conditional: import(".").JSONSchema;
|
1262
|
+
} | {
|
1263
|
+
type: "DISPLAY_ON_REVIEW";
|
1264
|
+
conditional: import(".").JSONSchema;
|
1265
|
+
})[] | undefined;
|
1266
|
+
placeholder?: TranslationConfig | undefined;
|
1267
|
+
helperText?: TranslationConfig | undefined;
|
1268
|
+
hideLabel?: boolean | undefined;
|
1269
|
+
configuration?: {
|
1270
|
+
notice?: TranslationConfig | undefined;
|
1271
|
+
} | undefined;
|
1272
|
+
}, {
|
1273
|
+
type: "DATE_RANGE";
|
1274
|
+
id: string;
|
1275
|
+
label: {
|
1276
|
+
id: string;
|
1277
|
+
description: string;
|
1278
|
+
defaultMessage: string;
|
1279
|
+
};
|
1280
|
+
parent?: {
|
1281
|
+
_fieldId?: string | undefined;
|
1282
|
+
} | undefined;
|
1283
|
+
validation?: {
|
1284
|
+
message: {
|
1285
|
+
id: string;
|
1286
|
+
description: string;
|
1287
|
+
defaultMessage: string;
|
1288
|
+
};
|
1289
|
+
validator: import(".").JSONSchema;
|
1290
|
+
}[] | undefined;
|
1291
|
+
required?: boolean | undefined;
|
1292
|
+
defaultValue?: string | [string, string] | undefined;
|
1293
|
+
conditionals?: ({
|
1294
|
+
type: "SHOW";
|
1295
|
+
conditional: import(".").JSONSchema;
|
1296
|
+
} | {
|
1297
|
+
type: "ENABLE";
|
1298
|
+
conditional: import(".").JSONSchema;
|
1299
|
+
} | {
|
1300
|
+
type: "DISPLAY_ON_REVIEW";
|
1301
|
+
conditional: import(".").JSONSchema;
|
1302
|
+
})[] | undefined;
|
1303
|
+
placeholder?: {
|
1304
|
+
id: string;
|
1305
|
+
description: string;
|
1306
|
+
defaultMessage: string;
|
1307
|
+
} | undefined;
|
1308
|
+
helperText?: {
|
1309
|
+
id: string;
|
1310
|
+
description: string;
|
1311
|
+
defaultMessage: string;
|
1312
|
+
} | undefined;
|
1313
|
+
hideLabel?: boolean | undefined;
|
1314
|
+
configuration?: {
|
1315
|
+
notice?: {
|
1316
|
+
id: string;
|
1317
|
+
description: string;
|
1318
|
+
defaultMessage: string;
|
1319
|
+
} | undefined;
|
1320
|
+
} | undefined;
|
1321
|
+
}>;
|
1322
|
+
export type DateRangeField = z.infer<typeof DateRangeField>;
|
1091
1323
|
declare const HtmlFontVariant: z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>;
|
1092
1324
|
export type HtmlFontVariant = z.infer<typeof HtmlFontVariant>;
|
1093
1325
|
declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -1130,6 +1362,11 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1130
1362
|
description: string;
|
1131
1363
|
defaultMessage: string;
|
1132
1364
|
}>;
|
1365
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1366
|
+
id: string;
|
1367
|
+
description: string;
|
1368
|
+
defaultMessage: string;
|
1369
|
+
}>>;
|
1133
1370
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1134
1371
|
}, {
|
1135
1372
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -1180,6 +1417,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1180
1417
|
conditional: import(".").JSONSchema;
|
1181
1418
|
})[] | undefined;
|
1182
1419
|
placeholder?: TranslationConfig | undefined;
|
1420
|
+
helperText?: TranslationConfig | undefined;
|
1183
1421
|
hideLabel?: boolean | undefined;
|
1184
1422
|
}, {
|
1185
1423
|
type: "PARAGRAPH";
|
@@ -1217,6 +1455,11 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1217
1455
|
description: string;
|
1218
1456
|
defaultMessage: string;
|
1219
1457
|
} | undefined;
|
1458
|
+
helperText?: {
|
1459
|
+
id: string;
|
1460
|
+
description: string;
|
1461
|
+
defaultMessage: string;
|
1462
|
+
} | undefined;
|
1220
1463
|
hideLabel?: boolean | undefined;
|
1221
1464
|
configuration?: {
|
1222
1465
|
styles?: {
|
@@ -1265,6 +1508,11 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1265
1508
|
description: string;
|
1266
1509
|
defaultMessage: string;
|
1267
1510
|
}>;
|
1511
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1512
|
+
id: string;
|
1513
|
+
description: string;
|
1514
|
+
defaultMessage: string;
|
1515
|
+
}>>;
|
1268
1516
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1269
1517
|
}, {
|
1270
1518
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -1293,6 +1541,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1293
1541
|
conditional: import(".").JSONSchema;
|
1294
1542
|
})[] | undefined;
|
1295
1543
|
placeholder?: TranslationConfig | undefined;
|
1544
|
+
helperText?: TranslationConfig | undefined;
|
1296
1545
|
hideLabel?: boolean | undefined;
|
1297
1546
|
}, {
|
1298
1547
|
type: "PAGE_HEADER";
|
@@ -1330,6 +1579,11 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1330
1579
|
description: string;
|
1331
1580
|
defaultMessage: string;
|
1332
1581
|
} | undefined;
|
1582
|
+
helperText?: {
|
1583
|
+
id: string;
|
1584
|
+
description: string;
|
1585
|
+
defaultMessage: string;
|
1586
|
+
} | undefined;
|
1333
1587
|
hideLabel?: boolean | undefined;
|
1334
1588
|
}>;
|
1335
1589
|
export type PageHeader = z.infer<typeof PageHeader>;
|
@@ -1373,6 +1627,11 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1373
1627
|
description: string;
|
1374
1628
|
defaultMessage: string;
|
1375
1629
|
}>;
|
1630
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1631
|
+
id: string;
|
1632
|
+
description: string;
|
1633
|
+
defaultMessage: string;
|
1634
|
+
}>>;
|
1376
1635
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1377
1636
|
}, {
|
1378
1637
|
type: z.ZodLiteral<"FILE">;
|
@@ -1442,6 +1701,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1442
1701
|
conditional: import(".").JSONSchema;
|
1443
1702
|
})[] | undefined;
|
1444
1703
|
placeholder?: TranslationConfig | undefined;
|
1704
|
+
helperText?: TranslationConfig | undefined;
|
1445
1705
|
hideLabel?: boolean | undefined;
|
1446
1706
|
}, {
|
1447
1707
|
type: "FILE";
|
@@ -1479,6 +1739,11 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1479
1739
|
description: string;
|
1480
1740
|
defaultMessage: string;
|
1481
1741
|
} | undefined;
|
1742
|
+
helperText?: {
|
1743
|
+
id: string;
|
1744
|
+
description: string;
|
1745
|
+
defaultMessage: string;
|
1746
|
+
} | undefined;
|
1482
1747
|
hideLabel?: boolean | undefined;
|
1483
1748
|
configuration?: {
|
1484
1749
|
maxFileSize?: number | undefined;
|
@@ -1552,6 +1817,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1552
1817
|
description: string;
|
1553
1818
|
defaultMessage: string;
|
1554
1819
|
}>;
|
1820
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1821
|
+
id: string;
|
1822
|
+
description: string;
|
1823
|
+
defaultMessage: string;
|
1824
|
+
}>>;
|
1555
1825
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1556
1826
|
}, {
|
1557
1827
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -1619,6 +1889,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1619
1889
|
conditional: import(".").JSONSchema;
|
1620
1890
|
})[] | undefined;
|
1621
1891
|
placeholder?: TranslationConfig | undefined;
|
1892
|
+
helperText?: TranslationConfig | undefined;
|
1622
1893
|
hideLabel?: boolean | undefined;
|
1623
1894
|
configuration?: {
|
1624
1895
|
styles?: {
|
@@ -1669,6 +1940,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1669
1940
|
description: string;
|
1670
1941
|
defaultMessage: string;
|
1671
1942
|
} | undefined;
|
1943
|
+
helperText?: {
|
1944
|
+
id: string;
|
1945
|
+
description: string;
|
1946
|
+
defaultMessage: string;
|
1947
|
+
} | undefined;
|
1672
1948
|
hideLabel?: boolean | undefined;
|
1673
1949
|
configuration?: {
|
1674
1950
|
styles?: {
|
@@ -1717,6 +1993,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
1717
1993
|
description: string;
|
1718
1994
|
defaultMessage: string;
|
1719
1995
|
}>;
|
1996
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1997
|
+
id: string;
|
1998
|
+
description: string;
|
1999
|
+
defaultMessage: string;
|
2000
|
+
}>>;
|
1720
2001
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1721
2002
|
}, {
|
1722
2003
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -1773,6 +2054,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
1773
2054
|
conditional: import(".").JSONSchema;
|
1774
2055
|
})[] | undefined;
|
1775
2056
|
placeholder?: TranslationConfig | undefined;
|
2057
|
+
helperText?: TranslationConfig | undefined;
|
1776
2058
|
hideLabel?: boolean | undefined;
|
1777
2059
|
}, {
|
1778
2060
|
type: "BULLET_LIST";
|
@@ -1815,6 +2097,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
1815
2097
|
description: string;
|
1816
2098
|
defaultMessage: string;
|
1817
2099
|
} | undefined;
|
2100
|
+
helperText?: {
|
2101
|
+
id: string;
|
2102
|
+
description: string;
|
2103
|
+
defaultMessage: string;
|
2104
|
+
} | undefined;
|
1818
2105
|
hideLabel?: boolean | undefined;
|
1819
2106
|
configuration?: {
|
1820
2107
|
styles?: {
|
@@ -1863,6 +2150,11 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
1863
2150
|
description: string;
|
1864
2151
|
defaultMessage: string;
|
1865
2152
|
}>;
|
2153
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2154
|
+
id: string;
|
2155
|
+
description: string;
|
2156
|
+
defaultMessage: string;
|
2157
|
+
}>>;
|
1866
2158
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1867
2159
|
}, {
|
1868
2160
|
type: z.ZodLiteral<"SELECT">;
|
@@ -1913,6 +2205,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
1913
2205
|
conditional: import(".").JSONSchema;
|
1914
2206
|
})[] | undefined;
|
1915
2207
|
placeholder?: TranslationConfig | undefined;
|
2208
|
+
helperText?: TranslationConfig | undefined;
|
1916
2209
|
hideLabel?: boolean | undefined;
|
1917
2210
|
}, {
|
1918
2211
|
type: "SELECT";
|
@@ -1958,6 +2251,11 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
1958
2251
|
description: string;
|
1959
2252
|
defaultMessage: string;
|
1960
2253
|
} | undefined;
|
2254
|
+
helperText?: {
|
2255
|
+
id: string;
|
2256
|
+
description: string;
|
2257
|
+
defaultMessage: string;
|
2258
|
+
} | undefined;
|
1961
2259
|
hideLabel?: boolean | undefined;
|
1962
2260
|
}>;
|
1963
2261
|
declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2000,6 +2298,11 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2000
2298
|
description: string;
|
2001
2299
|
defaultMessage: string;
|
2002
2300
|
}>;
|
2301
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2302
|
+
id: string;
|
2303
|
+
description: string;
|
2304
|
+
defaultMessage: string;
|
2305
|
+
}>>;
|
2003
2306
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2004
2307
|
}, {
|
2005
2308
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -2028,6 +2331,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2028
2331
|
conditional: import(".").JSONSchema;
|
2029
2332
|
})[] | undefined;
|
2030
2333
|
placeholder?: TranslationConfig | undefined;
|
2334
|
+
helperText?: TranslationConfig | undefined;
|
2031
2335
|
hideLabel?: boolean | undefined;
|
2032
2336
|
}, {
|
2033
2337
|
type: "CHECKBOX";
|
@@ -2065,6 +2369,11 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2065
2369
|
description: string;
|
2066
2370
|
defaultMessage: string;
|
2067
2371
|
} | undefined;
|
2372
|
+
helperText?: {
|
2373
|
+
id: string;
|
2374
|
+
description: string;
|
2375
|
+
defaultMessage: string;
|
2376
|
+
} | undefined;
|
2068
2377
|
hideLabel?: boolean | undefined;
|
2069
2378
|
}>;
|
2070
2379
|
export type Checkbox = z.infer<typeof Checkbox>;
|
@@ -2108,6 +2417,11 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2108
2417
|
description: string;
|
2109
2418
|
defaultMessage: string;
|
2110
2419
|
}>;
|
2420
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2421
|
+
id: string;
|
2422
|
+
description: string;
|
2423
|
+
defaultMessage: string;
|
2424
|
+
}>>;
|
2111
2425
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2112
2426
|
}, {
|
2113
2427
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -2136,6 +2450,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2136
2450
|
conditional: import(".").JSONSchema;
|
2137
2451
|
})[] | undefined;
|
2138
2452
|
placeholder?: TranslationConfig | undefined;
|
2453
|
+
helperText?: TranslationConfig | undefined;
|
2139
2454
|
hideLabel?: boolean | undefined;
|
2140
2455
|
}, {
|
2141
2456
|
type: "COUNTRY";
|
@@ -2173,6 +2488,11 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2173
2488
|
description: string;
|
2174
2489
|
defaultMessage: string;
|
2175
2490
|
} | undefined;
|
2491
|
+
helperText?: {
|
2492
|
+
id: string;
|
2493
|
+
description: string;
|
2494
|
+
defaultMessage: string;
|
2495
|
+
} | undefined;
|
2176
2496
|
hideLabel?: boolean | undefined;
|
2177
2497
|
}>;
|
2178
2498
|
export type Country = z.infer<typeof Country>;
|
@@ -2237,6 +2557,11 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2237
2557
|
description: string;
|
2238
2558
|
defaultMessage: string;
|
2239
2559
|
}>;
|
2560
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2561
|
+
id: string;
|
2562
|
+
description: string;
|
2563
|
+
defaultMessage: string;
|
2564
|
+
}>>;
|
2240
2565
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2241
2566
|
}, {
|
2242
2567
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -2291,6 +2616,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2291
2616
|
conditional: import(".").JSONSchema;
|
2292
2617
|
})[] | undefined;
|
2293
2618
|
placeholder?: TranslationConfig | undefined;
|
2619
|
+
helperText?: TranslationConfig | undefined;
|
2294
2620
|
hideLabel?: boolean | undefined;
|
2295
2621
|
}, {
|
2296
2622
|
type: "ADMINISTRATIVE_AREA";
|
@@ -2334,6 +2660,11 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2334
2660
|
description: string;
|
2335
2661
|
defaultMessage: string;
|
2336
2662
|
} | undefined;
|
2663
|
+
helperText?: {
|
2664
|
+
id: string;
|
2665
|
+
description: string;
|
2666
|
+
defaultMessage: string;
|
2667
|
+
} | undefined;
|
2337
2668
|
hideLabel?: boolean | undefined;
|
2338
2669
|
}>;
|
2339
2670
|
export type AdministrativeArea = z.infer<typeof AdministrativeArea>;
|
@@ -2377,6 +2708,11 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
2377
2708
|
description: string;
|
2378
2709
|
defaultMessage: string;
|
2379
2710
|
}>;
|
2711
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2712
|
+
id: string;
|
2713
|
+
description: string;
|
2714
|
+
defaultMessage: string;
|
2715
|
+
}>>;
|
2380
2716
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2381
2717
|
}, {
|
2382
2718
|
type: z.ZodLiteral<"LOCATION">;
|
@@ -2405,6 +2741,7 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
2405
2741
|
conditional: import(".").JSONSchema;
|
2406
2742
|
})[] | undefined;
|
2407
2743
|
placeholder?: TranslationConfig | undefined;
|
2744
|
+
helperText?: TranslationConfig | undefined;
|
2408
2745
|
hideLabel?: boolean | undefined;
|
2409
2746
|
}, {
|
2410
2747
|
type: "LOCATION";
|
@@ -2442,6 +2779,11 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
2442
2779
|
description: string;
|
2443
2780
|
defaultMessage: string;
|
2444
2781
|
} | undefined;
|
2782
|
+
helperText?: {
|
2783
|
+
id: string;
|
2784
|
+
description: string;
|
2785
|
+
defaultMessage: string;
|
2786
|
+
} | undefined;
|
2445
2787
|
hideLabel?: boolean | undefined;
|
2446
2788
|
}>;
|
2447
2789
|
export type Location = z.infer<typeof Location>;
|
@@ -2485,6 +2827,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
2485
2827
|
description: string;
|
2486
2828
|
defaultMessage: string;
|
2487
2829
|
}>;
|
2830
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2831
|
+
id: string;
|
2832
|
+
description: string;
|
2833
|
+
defaultMessage: string;
|
2834
|
+
}>>;
|
2488
2835
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2489
2836
|
}, {
|
2490
2837
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -2548,6 +2895,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
2548
2895
|
conditional: import(".").JSONSchema;
|
2549
2896
|
})[] | undefined;
|
2550
2897
|
placeholder?: TranslationConfig | undefined;
|
2898
|
+
helperText?: TranslationConfig | undefined;
|
2551
2899
|
hideLabel?: boolean | undefined;
|
2552
2900
|
}, {
|
2553
2901
|
type: "FILE_WITH_OPTIONS";
|
@@ -2593,6 +2941,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
2593
2941
|
description: string;
|
2594
2942
|
defaultMessage: string;
|
2595
2943
|
} | undefined;
|
2944
|
+
helperText?: {
|
2945
|
+
id: string;
|
2946
|
+
description: string;
|
2947
|
+
defaultMessage: string;
|
2948
|
+
} | undefined;
|
2596
2949
|
hideLabel?: boolean | undefined;
|
2597
2950
|
configuration?: {
|
2598
2951
|
maxFileSize?: number | undefined;
|
@@ -2640,6 +2993,11 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
2640
2993
|
description: string;
|
2641
2994
|
defaultMessage: string;
|
2642
2995
|
}>;
|
2996
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2997
|
+
id: string;
|
2998
|
+
description: string;
|
2999
|
+
defaultMessage: string;
|
3000
|
+
}>>;
|
2643
3001
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2644
3002
|
}, {
|
2645
3003
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -2668,6 +3026,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
2668
3026
|
conditional: import(".").JSONSchema;
|
2669
3027
|
})[] | undefined;
|
2670
3028
|
placeholder?: TranslationConfig | undefined;
|
3029
|
+
helperText?: TranslationConfig | undefined;
|
2671
3030
|
hideLabel?: boolean | undefined;
|
2672
3031
|
}, {
|
2673
3032
|
type: "FACILITY";
|
@@ -2705,6 +3064,11 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
2705
3064
|
description: string;
|
2706
3065
|
defaultMessage: string;
|
2707
3066
|
} | undefined;
|
3067
|
+
helperText?: {
|
3068
|
+
id: string;
|
3069
|
+
description: string;
|
3070
|
+
defaultMessage: string;
|
3071
|
+
} | undefined;
|
2708
3072
|
hideLabel?: boolean | undefined;
|
2709
3073
|
}>;
|
2710
3074
|
export type Facility = z.infer<typeof Facility>;
|
@@ -2748,6 +3112,11 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
2748
3112
|
description: string;
|
2749
3113
|
defaultMessage: string;
|
2750
3114
|
}>;
|
3115
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3116
|
+
id: string;
|
3117
|
+
description: string;
|
3118
|
+
defaultMessage: string;
|
3119
|
+
}>>;
|
2751
3120
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2752
3121
|
}, {
|
2753
3122
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -2776,6 +3145,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
2776
3145
|
conditional: import(".").JSONSchema;
|
2777
3146
|
})[] | undefined;
|
2778
3147
|
placeholder?: TranslationConfig | undefined;
|
3148
|
+
helperText?: TranslationConfig | undefined;
|
2779
3149
|
hideLabel?: boolean | undefined;
|
2780
3150
|
}, {
|
2781
3151
|
type: "OFFICE";
|
@@ -2813,6 +3183,11 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
2813
3183
|
description: string;
|
2814
3184
|
defaultMessage: string;
|
2815
3185
|
} | undefined;
|
3186
|
+
helperText?: {
|
3187
|
+
id: string;
|
3188
|
+
description: string;
|
3189
|
+
defaultMessage: string;
|
3190
|
+
} | undefined;
|
2816
3191
|
hideLabel?: boolean | undefined;
|
2817
3192
|
}>;
|
2818
3193
|
export type Office = z.infer<typeof Office>;
|
@@ -2856,6 +3231,11 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
2856
3231
|
description: string;
|
2857
3232
|
defaultMessage: string;
|
2858
3233
|
}>;
|
3234
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3235
|
+
id: string;
|
3236
|
+
description: string;
|
3237
|
+
defaultMessage: string;
|
3238
|
+
}>>;
|
2859
3239
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2860
3240
|
}, {
|
2861
3241
|
type: z.ZodLiteral<"ADDRESS">;
|
@@ -2998,6 +3378,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
2998
3378
|
conditional: import(".").JSONSchema;
|
2999
3379
|
})[] | undefined;
|
3000
3380
|
placeholder?: TranslationConfig | undefined;
|
3381
|
+
helperText?: TranslationConfig | undefined;
|
3001
3382
|
hideLabel?: boolean | undefined;
|
3002
3383
|
}, {
|
3003
3384
|
type: "ADDRESS";
|
@@ -3063,6 +3444,11 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3063
3444
|
description: string;
|
3064
3445
|
defaultMessage: string;
|
3065
3446
|
} | undefined;
|
3447
|
+
helperText?: {
|
3448
|
+
id: string;
|
3449
|
+
description: string;
|
3450
|
+
defaultMessage: string;
|
3451
|
+
} | undefined;
|
3066
3452
|
hideLabel?: boolean | undefined;
|
3067
3453
|
}>;
|
3068
3454
|
export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
|
@@ -3138,6 +3524,11 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3138
3524
|
description: string;
|
3139
3525
|
defaultMessage: string;
|
3140
3526
|
}>;
|
3527
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3528
|
+
id: string;
|
3529
|
+
description: string;
|
3530
|
+
defaultMessage: string;
|
3531
|
+
}>>;
|
3141
3532
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3142
3533
|
}, {
|
3143
3534
|
type: z.ZodLiteral<"DATA">;
|
@@ -3241,6 +3632,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3241
3632
|
conditional: import(".").JSONSchema;
|
3242
3633
|
})[] | undefined;
|
3243
3634
|
placeholder?: TranslationConfig | undefined;
|
3635
|
+
helperText?: TranslationConfig | undefined;
|
3244
3636
|
hideLabel?: boolean | undefined;
|
3245
3637
|
}, {
|
3246
3638
|
type: "DATA";
|
@@ -3299,18 +3691,23 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3299
3691
|
description: string;
|
3300
3692
|
defaultMessage: string;
|
3301
3693
|
} | undefined;
|
3694
|
+
helperText?: {
|
3695
|
+
id: string;
|
3696
|
+
description: string;
|
3697
|
+
defaultMessage: string;
|
3698
|
+
} | undefined;
|
3302
3699
|
hideLabel?: boolean | undefined;
|
3303
3700
|
}>;
|
3304
3701
|
export type DataField = z.infer<typeof DataField>;
|
3305
3702
|
/** @knipignore */
|
3306
|
-
export type AllFields = typeof Address | typeof TextField | typeof NumberField | typeof TextAreaField | typeof DateField | typeof Paragraph | typeof RadioGroup | typeof BulletList | typeof PageHeader | typeof Select | typeof Checkbox | typeof File | typeof Country | typeof AdministrativeArea | typeof Divider | typeof Location | typeof Facility | typeof Office | typeof SignatureField | typeof EmailField | typeof FileUploadWithOptions | typeof DataField;
|
3703
|
+
export type AllFields = typeof Address | typeof TextField | typeof NumberField | typeof TextAreaField | typeof DateField | typeof DateRangeField | typeof Paragraph | typeof RadioGroup | typeof BulletList | typeof PageHeader | typeof Select | typeof Checkbox | typeof File | typeof Country | typeof AdministrativeArea | typeof Divider | typeof Location | typeof Facility | typeof Office | typeof SignatureField | typeof EmailField | typeof FileUploadWithOptions | typeof DataField;
|
3307
3704
|
/** @knipignore */
|
3308
|
-
export type Inferred = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
|
3705
|
+
export type Inferred = z.infer<typeof Address> | z.infer<typeof TextField> | z.infer<typeof NumberField> | z.infer<typeof TextAreaField> | z.infer<typeof DateField> | z.infer<typeof DateRangeField> | z.infer<typeof Paragraph> | z.infer<typeof RadioGroup> | z.infer<typeof BulletList> | z.infer<typeof PageHeader> | z.infer<typeof Select> | z.infer<typeof Checkbox> | z.infer<typeof File> | z.infer<typeof FileUploadWithOptions> | z.infer<typeof Country> | z.infer<typeof AdministrativeArea> | z.infer<typeof Divider> | z.infer<typeof Location> | z.infer<typeof Facility> | z.infer<typeof Office> | z.infer<typeof SignatureField> | z.infer<typeof EmailField> | z.infer<typeof DataField>;
|
3309
3706
|
/** @knipignore */
|
3310
3707
|
/**
|
3311
3708
|
* This is the type that should be used for the input of the FieldConfig. Useful when config uses zod defaults.
|
3312
3709
|
*/
|
3313
|
-
export type InferredInput = z.input<typeof Address> | z.input<typeof TextField> | z.input<typeof NumberField> | z.input<typeof TextAreaField> | z.input<typeof DateField> | z.input<typeof Paragraph> | z.input<typeof RadioGroup> | z.input<typeof BulletList> | z.input<typeof PageHeader> | z.input<typeof Select> | z.input<typeof Checkbox> | z.input<typeof File> | z.input<typeof FileUploadWithOptions> | z.input<typeof Country> | z.input<typeof AdministrativeArea> | z.input<typeof Divider> | z.input<typeof Location> | z.input<typeof Facility> | z.input<typeof Office> | z.input<typeof SignatureField> | z.input<typeof EmailField> | z.input<typeof DataField>;
|
3710
|
+
export type InferredInput = z.input<typeof Address> | z.input<typeof TextField> | z.input<typeof NumberField> | z.input<typeof TextAreaField> | z.input<typeof DateField> | z.input<typeof DateRangeField> | z.input<typeof Paragraph> | z.input<typeof RadioGroup> | z.input<typeof BulletList> | z.input<typeof PageHeader> | z.input<typeof Select> | z.input<typeof Checkbox> | z.input<typeof File> | z.input<typeof FileUploadWithOptions> | z.input<typeof Country> | z.input<typeof AdministrativeArea> | z.input<typeof Divider> | z.input<typeof Location> | z.input<typeof Facility> | z.input<typeof Office> | z.input<typeof SignatureField> | z.input<typeof EmailField> | z.input<typeof DataField>;
|
3314
3711
|
export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
3315
3712
|
id: z.ZodString;
|
3316
3713
|
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
@@ -3351,6 +3748,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3351
3748
|
description: string;
|
3352
3749
|
defaultMessage: string;
|
3353
3750
|
}>;
|
3751
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3752
|
+
id: string;
|
3753
|
+
description: string;
|
3754
|
+
defaultMessage: string;
|
3755
|
+
}>>;
|
3354
3756
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3355
3757
|
}, {
|
3356
3758
|
type: z.ZodLiteral<"ADDRESS">;
|
@@ -3493,6 +3895,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3493
3895
|
conditional: import(".").JSONSchema;
|
3494
3896
|
})[] | undefined;
|
3495
3897
|
placeholder?: TranslationConfig | undefined;
|
3898
|
+
helperText?: TranslationConfig | undefined;
|
3496
3899
|
hideLabel?: boolean | undefined;
|
3497
3900
|
}, {
|
3498
3901
|
type: "ADDRESS";
|
@@ -3558,6 +3961,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3558
3961
|
description: string;
|
3559
3962
|
defaultMessage: string;
|
3560
3963
|
} | undefined;
|
3964
|
+
helperText?: {
|
3965
|
+
id: string;
|
3966
|
+
description: string;
|
3967
|
+
defaultMessage: string;
|
3968
|
+
} | undefined;
|
3561
3969
|
hideLabel?: boolean | undefined;
|
3562
3970
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3563
3971
|
id: z.ZodString;
|
@@ -3599,6 +4007,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3599
4007
|
description: string;
|
3600
4008
|
defaultMessage: string;
|
3601
4009
|
}>;
|
4010
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4011
|
+
id: string;
|
4012
|
+
description: string;
|
4013
|
+
defaultMessage: string;
|
4014
|
+
}>>;
|
3602
4015
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3603
4016
|
}, {
|
3604
4017
|
type: z.ZodLiteral<"TEXT">;
|
@@ -3659,6 +4072,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3659
4072
|
conditional: import(".").JSONSchema;
|
3660
4073
|
})[] | undefined;
|
3661
4074
|
placeholder?: TranslationConfig | undefined;
|
4075
|
+
helperText?: TranslationConfig | undefined;
|
3662
4076
|
hideLabel?: boolean | undefined;
|
3663
4077
|
configuration?: {
|
3664
4078
|
type?: "text" | "password" | undefined;
|
@@ -3702,6 +4116,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3702
4116
|
description: string;
|
3703
4117
|
defaultMessage: string;
|
3704
4118
|
} | undefined;
|
4119
|
+
helperText?: {
|
4120
|
+
id: string;
|
4121
|
+
description: string;
|
4122
|
+
defaultMessage: string;
|
4123
|
+
} | undefined;
|
3705
4124
|
hideLabel?: boolean | undefined;
|
3706
4125
|
configuration?: {
|
3707
4126
|
type?: "text" | "password" | undefined;
|
@@ -3757,13 +4176,188 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3757
4176
|
description: string;
|
3758
4177
|
defaultMessage: string;
|
3759
4178
|
}>;
|
4179
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4180
|
+
id: string;
|
4181
|
+
description: string;
|
4182
|
+
defaultMessage: string;
|
4183
|
+
}>>;
|
4184
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4185
|
+
}, {
|
4186
|
+
type: z.ZodLiteral<"NUMBER">;
|
4187
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
4188
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
4189
|
+
min: z.ZodOptional<z.ZodNumber>;
|
4190
|
+
max: z.ZodOptional<z.ZodNumber>;
|
4191
|
+
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4192
|
+
id: string;
|
4193
|
+
description: string;
|
4194
|
+
defaultMessage: string;
|
4195
|
+
}>>;
|
4196
|
+
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4197
|
+
id: string;
|
4198
|
+
description: string;
|
4199
|
+
defaultMessage: string;
|
4200
|
+
}>>;
|
4201
|
+
}, "strip", z.ZodTypeAny, {
|
4202
|
+
prefix?: TranslationConfig | undefined;
|
4203
|
+
postfix?: TranslationConfig | undefined;
|
4204
|
+
min?: number | undefined;
|
4205
|
+
max?: number | undefined;
|
4206
|
+
}, {
|
4207
|
+
prefix?: {
|
4208
|
+
id: string;
|
4209
|
+
description: string;
|
4210
|
+
defaultMessage: string;
|
4211
|
+
} | undefined;
|
4212
|
+
postfix?: {
|
4213
|
+
id: string;
|
4214
|
+
description: string;
|
4215
|
+
defaultMessage: string;
|
4216
|
+
} | undefined;
|
4217
|
+
min?: number | undefined;
|
4218
|
+
max?: number | undefined;
|
4219
|
+
}>>;
|
4220
|
+
}>, "strip", z.ZodTypeAny, {
|
4221
|
+
type: "NUMBER";
|
4222
|
+
id: string;
|
4223
|
+
label: TranslationConfig;
|
4224
|
+
parent?: {
|
4225
|
+
_fieldId?: string | undefined;
|
4226
|
+
} | undefined;
|
4227
|
+
validation?: {
|
4228
|
+
message: TranslationConfig;
|
4229
|
+
validator: import(".").JSONSchema;
|
4230
|
+
}[] | undefined;
|
4231
|
+
required?: boolean | undefined;
|
4232
|
+
defaultValue?: number | undefined;
|
4233
|
+
conditionals?: ({
|
4234
|
+
type: "SHOW";
|
4235
|
+
conditional: import(".").JSONSchema;
|
4236
|
+
} | {
|
4237
|
+
type: "ENABLE";
|
4238
|
+
conditional: import(".").JSONSchema;
|
4239
|
+
} | {
|
4240
|
+
type: "DISPLAY_ON_REVIEW";
|
4241
|
+
conditional: import(".").JSONSchema;
|
4242
|
+
})[] | undefined;
|
4243
|
+
placeholder?: TranslationConfig | undefined;
|
4244
|
+
helperText?: TranslationConfig | undefined;
|
4245
|
+
hideLabel?: boolean | undefined;
|
4246
|
+
configuration?: {
|
4247
|
+
prefix?: TranslationConfig | undefined;
|
4248
|
+
postfix?: TranslationConfig | undefined;
|
4249
|
+
min?: number | undefined;
|
4250
|
+
max?: number | undefined;
|
4251
|
+
} | undefined;
|
4252
|
+
}, {
|
4253
|
+
type: "NUMBER";
|
4254
|
+
id: string;
|
4255
|
+
label: {
|
4256
|
+
id: string;
|
4257
|
+
description: string;
|
4258
|
+
defaultMessage: string;
|
4259
|
+
};
|
4260
|
+
parent?: {
|
4261
|
+
_fieldId?: string | undefined;
|
4262
|
+
} | undefined;
|
4263
|
+
validation?: {
|
4264
|
+
message: {
|
4265
|
+
id: string;
|
4266
|
+
description: string;
|
4267
|
+
defaultMessage: string;
|
4268
|
+
};
|
4269
|
+
validator: import(".").JSONSchema;
|
4270
|
+
}[] | undefined;
|
4271
|
+
required?: boolean | undefined;
|
4272
|
+
defaultValue?: number | undefined;
|
4273
|
+
conditionals?: ({
|
4274
|
+
type: "SHOW";
|
4275
|
+
conditional: import(".").JSONSchema;
|
4276
|
+
} | {
|
4277
|
+
type: "ENABLE";
|
4278
|
+
conditional: import(".").JSONSchema;
|
4279
|
+
} | {
|
4280
|
+
type: "DISPLAY_ON_REVIEW";
|
4281
|
+
conditional: import(".").JSONSchema;
|
4282
|
+
})[] | undefined;
|
4283
|
+
placeholder?: {
|
4284
|
+
id: string;
|
4285
|
+
description: string;
|
4286
|
+
defaultMessage: string;
|
4287
|
+
} | undefined;
|
4288
|
+
helperText?: {
|
4289
|
+
id: string;
|
4290
|
+
description: string;
|
4291
|
+
defaultMessage: string;
|
4292
|
+
} | undefined;
|
4293
|
+
hideLabel?: boolean | undefined;
|
4294
|
+
configuration?: {
|
4295
|
+
prefix?: {
|
4296
|
+
id: string;
|
4297
|
+
description: string;
|
4298
|
+
defaultMessage: string;
|
4299
|
+
} | undefined;
|
4300
|
+
postfix?: {
|
4301
|
+
id: string;
|
4302
|
+
description: string;
|
4303
|
+
defaultMessage: string;
|
4304
|
+
} | undefined;
|
4305
|
+
min?: number | undefined;
|
4306
|
+
max?: number | undefined;
|
4307
|
+
} | undefined;
|
4308
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4309
|
+
id: z.ZodString;
|
4310
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
4311
|
+
parent: z.ZodOptional<z.ZodObject<{
|
4312
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
4313
|
+
}, "strip", z.ZodTypeAny, {
|
4314
|
+
_fieldId?: string | undefined;
|
4315
|
+
}, {
|
4316
|
+
_fieldId?: string | undefined;
|
4317
|
+
}>>;
|
4318
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
4319
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4320
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4321
|
+
id: string;
|
4322
|
+
description: string;
|
4323
|
+
defaultMessage: string;
|
4324
|
+
}>>;
|
4325
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
4326
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
4327
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4328
|
+
id: string;
|
4329
|
+
description: string;
|
4330
|
+
defaultMessage: string;
|
4331
|
+
}>;
|
4332
|
+
}, "strip", z.ZodTypeAny, {
|
4333
|
+
message: TranslationConfig;
|
4334
|
+
validator: import(".").JSONSchema;
|
4335
|
+
}, {
|
4336
|
+
message: {
|
4337
|
+
id: string;
|
4338
|
+
description: string;
|
4339
|
+
defaultMessage: string;
|
4340
|
+
};
|
4341
|
+
validator: import(".").JSONSchema;
|
4342
|
+
}>, "many">>>;
|
4343
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4344
|
+
id: string;
|
4345
|
+
description: string;
|
4346
|
+
defaultMessage: string;
|
4347
|
+
}>;
|
4348
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4349
|
+
id: string;
|
4350
|
+
description: string;
|
4351
|
+
defaultMessage: string;
|
4352
|
+
}>>;
|
3760
4353
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3761
4354
|
}, {
|
3762
|
-
type: z.ZodLiteral<"
|
3763
|
-
defaultValue: z.ZodOptional<z.
|
3764
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
3765
|
-
|
3766
|
-
|
4355
|
+
type: z.ZodLiteral<"TEXTAREA">;
|
4356
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
4357
|
+
configuration: z.ZodOptional<z.ZodDefault<z.ZodObject<{
|
4358
|
+
maxLength: z.ZodOptional<z.ZodNumber>;
|
4359
|
+
rows: z.ZodOptional<z.ZodNumber>;
|
4360
|
+
cols: z.ZodOptional<z.ZodNumber>;
|
3767
4361
|
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3768
4362
|
id: string;
|
3769
4363
|
description: string;
|
@@ -3775,11 +4369,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3775
4369
|
defaultMessage: string;
|
3776
4370
|
}>>;
|
3777
4371
|
}, "strip", z.ZodTypeAny, {
|
4372
|
+
maxLength?: number | undefined;
|
3778
4373
|
prefix?: TranslationConfig | undefined;
|
3779
4374
|
postfix?: TranslationConfig | undefined;
|
3780
|
-
|
3781
|
-
|
4375
|
+
rows?: number | undefined;
|
4376
|
+
cols?: number | undefined;
|
3782
4377
|
}, {
|
4378
|
+
maxLength?: number | undefined;
|
3783
4379
|
prefix?: {
|
3784
4380
|
id: string;
|
3785
4381
|
description: string;
|
@@ -3790,11 +4386,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3790
4386
|
description: string;
|
3791
4387
|
defaultMessage: string;
|
3792
4388
|
} | undefined;
|
3793
|
-
|
3794
|
-
|
3795
|
-
}
|
4389
|
+
rows?: number | undefined;
|
4390
|
+
cols?: number | undefined;
|
4391
|
+
}>>>;
|
3796
4392
|
}>, "strip", z.ZodTypeAny, {
|
3797
|
-
type: "
|
4393
|
+
type: "TEXTAREA";
|
3798
4394
|
id: string;
|
3799
4395
|
label: TranslationConfig;
|
3800
4396
|
parent?: {
|
@@ -3805,7 +4401,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3805
4401
|
validator: import(".").JSONSchema;
|
3806
4402
|
}[] | undefined;
|
3807
4403
|
required?: boolean | undefined;
|
3808
|
-
defaultValue?:
|
4404
|
+
defaultValue?: string | undefined;
|
3809
4405
|
conditionals?: ({
|
3810
4406
|
type: "SHOW";
|
3811
4407
|
conditional: import(".").JSONSchema;
|
@@ -3817,15 +4413,17 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3817
4413
|
conditional: import(".").JSONSchema;
|
3818
4414
|
})[] | undefined;
|
3819
4415
|
placeholder?: TranslationConfig | undefined;
|
4416
|
+
helperText?: TranslationConfig | undefined;
|
3820
4417
|
hideLabel?: boolean | undefined;
|
3821
4418
|
configuration?: {
|
4419
|
+
maxLength?: number | undefined;
|
3822
4420
|
prefix?: TranslationConfig | undefined;
|
3823
4421
|
postfix?: TranslationConfig | undefined;
|
3824
|
-
|
3825
|
-
|
4422
|
+
rows?: number | undefined;
|
4423
|
+
cols?: number | undefined;
|
3826
4424
|
} | undefined;
|
3827
4425
|
}, {
|
3828
|
-
type: "
|
4426
|
+
type: "TEXTAREA";
|
3829
4427
|
id: string;
|
3830
4428
|
label: {
|
3831
4429
|
id: string;
|
@@ -3844,7 +4442,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3844
4442
|
validator: import(".").JSONSchema;
|
3845
4443
|
}[] | undefined;
|
3846
4444
|
required?: boolean | undefined;
|
3847
|
-
defaultValue?:
|
4445
|
+
defaultValue?: string | undefined;
|
3848
4446
|
conditionals?: ({
|
3849
4447
|
type: "SHOW";
|
3850
4448
|
conditional: import(".").JSONSchema;
|
@@ -3860,8 +4458,14 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3860
4458
|
description: string;
|
3861
4459
|
defaultMessage: string;
|
3862
4460
|
} | undefined;
|
4461
|
+
helperText?: {
|
4462
|
+
id: string;
|
4463
|
+
description: string;
|
4464
|
+
defaultMessage: string;
|
4465
|
+
} | undefined;
|
3863
4466
|
hideLabel?: boolean | undefined;
|
3864
4467
|
configuration?: {
|
4468
|
+
maxLength?: number | undefined;
|
3865
4469
|
prefix?: {
|
3866
4470
|
id: string;
|
3867
4471
|
description: string;
|
@@ -3872,8 +4476,8 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3872
4476
|
description: string;
|
3873
4477
|
defaultMessage: string;
|
3874
4478
|
} | undefined;
|
3875
|
-
|
3876
|
-
|
4479
|
+
rows?: number | undefined;
|
4480
|
+
cols?: number | undefined;
|
3877
4481
|
} | undefined;
|
3878
4482
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3879
4483
|
id: z.ZodString;
|
@@ -3915,47 +4519,32 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3915
4519
|
description: string;
|
3916
4520
|
defaultMessage: string;
|
3917
4521
|
}>;
|
4522
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4523
|
+
id: string;
|
4524
|
+
description: string;
|
4525
|
+
defaultMessage: string;
|
4526
|
+
}>>;
|
3918
4527
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3919
4528
|
}, {
|
3920
|
-
type: z.ZodLiteral<"
|
4529
|
+
type: z.ZodLiteral<"DATE">;
|
3921
4530
|
defaultValue: z.ZodOptional<z.ZodString>;
|
3922
|
-
configuration: z.ZodOptional<z.
|
3923
|
-
|
3924
|
-
rows: z.ZodOptional<z.ZodNumber>;
|
3925
|
-
cols: z.ZodOptional<z.ZodNumber>;
|
3926
|
-
prefix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3927
|
-
id: string;
|
3928
|
-
description: string;
|
3929
|
-
defaultMessage: string;
|
3930
|
-
}>>;
|
3931
|
-
postfix: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4531
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
4532
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3932
4533
|
id: string;
|
3933
4534
|
description: string;
|
3934
4535
|
defaultMessage: string;
|
3935
4536
|
}>>;
|
3936
4537
|
}, "strip", z.ZodTypeAny, {
|
3937
|
-
|
3938
|
-
prefix?: TranslationConfig | undefined;
|
3939
|
-
postfix?: TranslationConfig | undefined;
|
3940
|
-
rows?: number | undefined;
|
3941
|
-
cols?: number | undefined;
|
4538
|
+
notice?: TranslationConfig | undefined;
|
3942
4539
|
}, {
|
3943
|
-
|
3944
|
-
prefix?: {
|
3945
|
-
id: string;
|
3946
|
-
description: string;
|
3947
|
-
defaultMessage: string;
|
3948
|
-
} | undefined;
|
3949
|
-
postfix?: {
|
4540
|
+
notice?: {
|
3950
4541
|
id: string;
|
3951
4542
|
description: string;
|
3952
4543
|
defaultMessage: string;
|
3953
4544
|
} | undefined;
|
3954
|
-
|
3955
|
-
cols?: number | undefined;
|
3956
|
-
}>>>;
|
4545
|
+
}>>;
|
3957
4546
|
}>, "strip", z.ZodTypeAny, {
|
3958
|
-
type: "
|
4547
|
+
type: "DATE";
|
3959
4548
|
id: string;
|
3960
4549
|
label: TranslationConfig;
|
3961
4550
|
parent?: {
|
@@ -3978,16 +4567,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3978
4567
|
conditional: import(".").JSONSchema;
|
3979
4568
|
})[] | undefined;
|
3980
4569
|
placeholder?: TranslationConfig | undefined;
|
4570
|
+
helperText?: TranslationConfig | undefined;
|
3981
4571
|
hideLabel?: boolean | undefined;
|
3982
4572
|
configuration?: {
|
3983
|
-
|
3984
|
-
prefix?: TranslationConfig | undefined;
|
3985
|
-
postfix?: TranslationConfig | undefined;
|
3986
|
-
rows?: number | undefined;
|
3987
|
-
cols?: number | undefined;
|
4573
|
+
notice?: TranslationConfig | undefined;
|
3988
4574
|
} | undefined;
|
3989
4575
|
}, {
|
3990
|
-
type: "
|
4576
|
+
type: "DATE";
|
3991
4577
|
id: string;
|
3992
4578
|
label: {
|
3993
4579
|
id: string;
|
@@ -4022,21 +4608,18 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4022
4608
|
description: string;
|
4023
4609
|
defaultMessage: string;
|
4024
4610
|
} | undefined;
|
4611
|
+
helperText?: {
|
4612
|
+
id: string;
|
4613
|
+
description: string;
|
4614
|
+
defaultMessage: string;
|
4615
|
+
} | undefined;
|
4025
4616
|
hideLabel?: boolean | undefined;
|
4026
4617
|
configuration?: {
|
4027
|
-
|
4028
|
-
prefix?: {
|
4029
|
-
id: string;
|
4030
|
-
description: string;
|
4031
|
-
defaultMessage: string;
|
4032
|
-
} | undefined;
|
4033
|
-
postfix?: {
|
4618
|
+
notice?: {
|
4034
4619
|
id: string;
|
4035
4620
|
description: string;
|
4036
4621
|
defaultMessage: string;
|
4037
4622
|
} | undefined;
|
4038
|
-
rows?: number | undefined;
|
4039
|
-
cols?: number | undefined;
|
4040
4623
|
} | undefined;
|
4041
4624
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4042
4625
|
id: z.ZodString;
|
@@ -4078,10 +4661,15 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4078
4661
|
description: string;
|
4079
4662
|
defaultMessage: string;
|
4080
4663
|
}>;
|
4664
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4665
|
+
id: string;
|
4666
|
+
description: string;
|
4667
|
+
defaultMessage: string;
|
4668
|
+
}>>;
|
4081
4669
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4082
4670
|
}, {
|
4083
|
-
type: z.ZodLiteral<"
|
4084
|
-
defaultValue: z.ZodOptional<z.ZodString
|
4671
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
4672
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
4085
4673
|
configuration: z.ZodOptional<z.ZodObject<{
|
4086
4674
|
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4087
4675
|
id: string;
|
@@ -4098,7 +4686,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4098
4686
|
} | undefined;
|
4099
4687
|
}>>;
|
4100
4688
|
}>, "strip", z.ZodTypeAny, {
|
4101
|
-
type: "
|
4689
|
+
type: "DATE_RANGE";
|
4102
4690
|
id: string;
|
4103
4691
|
label: TranslationConfig;
|
4104
4692
|
parent?: {
|
@@ -4109,7 +4697,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4109
4697
|
validator: import(".").JSONSchema;
|
4110
4698
|
}[] | undefined;
|
4111
4699
|
required?: boolean | undefined;
|
4112
|
-
defaultValue?: string | undefined;
|
4700
|
+
defaultValue?: string | [string, string] | undefined;
|
4113
4701
|
conditionals?: ({
|
4114
4702
|
type: "SHOW";
|
4115
4703
|
conditional: import(".").JSONSchema;
|
@@ -4121,12 +4709,13 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4121
4709
|
conditional: import(".").JSONSchema;
|
4122
4710
|
})[] | undefined;
|
4123
4711
|
placeholder?: TranslationConfig | undefined;
|
4712
|
+
helperText?: TranslationConfig | undefined;
|
4124
4713
|
hideLabel?: boolean | undefined;
|
4125
4714
|
configuration?: {
|
4126
4715
|
notice?: TranslationConfig | undefined;
|
4127
4716
|
} | undefined;
|
4128
4717
|
}, {
|
4129
|
-
type: "
|
4718
|
+
type: "DATE_RANGE";
|
4130
4719
|
id: string;
|
4131
4720
|
label: {
|
4132
4721
|
id: string;
|
@@ -4145,7 +4734,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4145
4734
|
validator: import(".").JSONSchema;
|
4146
4735
|
}[] | undefined;
|
4147
4736
|
required?: boolean | undefined;
|
4148
|
-
defaultValue?: string | undefined;
|
4737
|
+
defaultValue?: string | [string, string] | undefined;
|
4149
4738
|
conditionals?: ({
|
4150
4739
|
type: "SHOW";
|
4151
4740
|
conditional: import(".").JSONSchema;
|
@@ -4161,6 +4750,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4161
4750
|
description: string;
|
4162
4751
|
defaultMessage: string;
|
4163
4752
|
} | undefined;
|
4753
|
+
helperText?: {
|
4754
|
+
id: string;
|
4755
|
+
description: string;
|
4756
|
+
defaultMessage: string;
|
4757
|
+
} | undefined;
|
4164
4758
|
hideLabel?: boolean | undefined;
|
4165
4759
|
configuration?: {
|
4166
4760
|
notice?: {
|
@@ -4209,6 +4803,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4209
4803
|
description: string;
|
4210
4804
|
defaultMessage: string;
|
4211
4805
|
}>;
|
4806
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4807
|
+
id: string;
|
4808
|
+
description: string;
|
4809
|
+
defaultMessage: string;
|
4810
|
+
}>>;
|
4212
4811
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4213
4812
|
}, {
|
4214
4813
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -4259,6 +4858,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4259
4858
|
conditional: import(".").JSONSchema;
|
4260
4859
|
})[] | undefined;
|
4261
4860
|
placeholder?: TranslationConfig | undefined;
|
4861
|
+
helperText?: TranslationConfig | undefined;
|
4262
4862
|
hideLabel?: boolean | undefined;
|
4263
4863
|
}, {
|
4264
4864
|
type: "PARAGRAPH";
|
@@ -4296,6 +4896,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4296
4896
|
description: string;
|
4297
4897
|
defaultMessage: string;
|
4298
4898
|
} | undefined;
|
4899
|
+
helperText?: {
|
4900
|
+
id: string;
|
4901
|
+
description: string;
|
4902
|
+
defaultMessage: string;
|
4903
|
+
} | undefined;
|
4299
4904
|
hideLabel?: boolean | undefined;
|
4300
4905
|
configuration?: {
|
4301
4906
|
styles?: {
|
@@ -4342,6 +4947,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4342
4947
|
description: string;
|
4343
4948
|
defaultMessage: string;
|
4344
4949
|
}>;
|
4950
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4951
|
+
id: string;
|
4952
|
+
description: string;
|
4953
|
+
defaultMessage: string;
|
4954
|
+
}>>;
|
4345
4955
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4346
4956
|
}, {
|
4347
4957
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -4409,6 +5019,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4409
5019
|
conditional: import(".").JSONSchema;
|
4410
5020
|
})[] | undefined;
|
4411
5021
|
placeholder?: TranslationConfig | undefined;
|
5022
|
+
helperText?: TranslationConfig | undefined;
|
4412
5023
|
hideLabel?: boolean | undefined;
|
4413
5024
|
configuration?: {
|
4414
5025
|
styles?: {
|
@@ -4459,6 +5070,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4459
5070
|
description: string;
|
4460
5071
|
defaultMessage: string;
|
4461
5072
|
} | undefined;
|
5073
|
+
helperText?: {
|
5074
|
+
id: string;
|
5075
|
+
description: string;
|
5076
|
+
defaultMessage: string;
|
5077
|
+
} | undefined;
|
4462
5078
|
hideLabel?: boolean | undefined;
|
4463
5079
|
configuration?: {
|
4464
5080
|
styles?: {
|
@@ -4505,6 +5121,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4505
5121
|
description: string;
|
4506
5122
|
defaultMessage: string;
|
4507
5123
|
}>;
|
5124
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5125
|
+
id: string;
|
5126
|
+
description: string;
|
5127
|
+
defaultMessage: string;
|
5128
|
+
}>>;
|
4508
5129
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4509
5130
|
}, {
|
4510
5131
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -4561,6 +5182,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4561
5182
|
conditional: import(".").JSONSchema;
|
4562
5183
|
})[] | undefined;
|
4563
5184
|
placeholder?: TranslationConfig | undefined;
|
5185
|
+
helperText?: TranslationConfig | undefined;
|
4564
5186
|
hideLabel?: boolean | undefined;
|
4565
5187
|
}, {
|
4566
5188
|
type: "BULLET_LIST";
|
@@ -4603,6 +5225,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4603
5225
|
description: string;
|
4604
5226
|
defaultMessage: string;
|
4605
5227
|
} | undefined;
|
5228
|
+
helperText?: {
|
5229
|
+
id: string;
|
5230
|
+
description: string;
|
5231
|
+
defaultMessage: string;
|
5232
|
+
} | undefined;
|
4606
5233
|
hideLabel?: boolean | undefined;
|
4607
5234
|
configuration?: {
|
4608
5235
|
styles?: {
|
@@ -4649,6 +5276,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4649
5276
|
description: string;
|
4650
5277
|
defaultMessage: string;
|
4651
5278
|
}>;
|
5279
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5280
|
+
id: string;
|
5281
|
+
description: string;
|
5282
|
+
defaultMessage: string;
|
5283
|
+
}>>;
|
4652
5284
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4653
5285
|
}, {
|
4654
5286
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -4677,6 +5309,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4677
5309
|
conditional: import(".").JSONSchema;
|
4678
5310
|
})[] | undefined;
|
4679
5311
|
placeholder?: TranslationConfig | undefined;
|
5312
|
+
helperText?: TranslationConfig | undefined;
|
4680
5313
|
hideLabel?: boolean | undefined;
|
4681
5314
|
}, {
|
4682
5315
|
type: "PAGE_HEADER";
|
@@ -4714,6 +5347,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4714
5347
|
description: string;
|
4715
5348
|
defaultMessage: string;
|
4716
5349
|
} | undefined;
|
5350
|
+
helperText?: {
|
5351
|
+
id: string;
|
5352
|
+
description: string;
|
5353
|
+
defaultMessage: string;
|
5354
|
+
} | undefined;
|
4717
5355
|
hideLabel?: boolean | undefined;
|
4718
5356
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4719
5357
|
id: z.ZodString;
|
@@ -4755,6 +5393,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4755
5393
|
description: string;
|
4756
5394
|
defaultMessage: string;
|
4757
5395
|
}>;
|
5396
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5397
|
+
id: string;
|
5398
|
+
description: string;
|
5399
|
+
defaultMessage: string;
|
5400
|
+
}>>;
|
4758
5401
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4759
5402
|
}, {
|
4760
5403
|
type: z.ZodLiteral<"SELECT">;
|
@@ -4805,6 +5448,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4805
5448
|
conditional: import(".").JSONSchema;
|
4806
5449
|
})[] | undefined;
|
4807
5450
|
placeholder?: TranslationConfig | undefined;
|
5451
|
+
helperText?: TranslationConfig | undefined;
|
4808
5452
|
hideLabel?: boolean | undefined;
|
4809
5453
|
}, {
|
4810
5454
|
type: "SELECT";
|
@@ -4850,6 +5494,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4850
5494
|
description: string;
|
4851
5495
|
defaultMessage: string;
|
4852
5496
|
} | undefined;
|
5497
|
+
helperText?: {
|
5498
|
+
id: string;
|
5499
|
+
description: string;
|
5500
|
+
defaultMessage: string;
|
5501
|
+
} | undefined;
|
4853
5502
|
hideLabel?: boolean | undefined;
|
4854
5503
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4855
5504
|
id: z.ZodString;
|
@@ -4891,6 +5540,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4891
5540
|
description: string;
|
4892
5541
|
defaultMessage: string;
|
4893
5542
|
}>;
|
5543
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5544
|
+
id: string;
|
5545
|
+
description: string;
|
5546
|
+
defaultMessage: string;
|
5547
|
+
}>>;
|
4894
5548
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4895
5549
|
}, {
|
4896
5550
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -4919,6 +5573,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4919
5573
|
conditional: import(".").JSONSchema;
|
4920
5574
|
})[] | undefined;
|
4921
5575
|
placeholder?: TranslationConfig | undefined;
|
5576
|
+
helperText?: TranslationConfig | undefined;
|
4922
5577
|
hideLabel?: boolean | undefined;
|
4923
5578
|
}, {
|
4924
5579
|
type: "CHECKBOX";
|
@@ -4956,6 +5611,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4956
5611
|
description: string;
|
4957
5612
|
defaultMessage: string;
|
4958
5613
|
} | undefined;
|
5614
|
+
helperText?: {
|
5615
|
+
id: string;
|
5616
|
+
description: string;
|
5617
|
+
defaultMessage: string;
|
5618
|
+
} | undefined;
|
4959
5619
|
hideLabel?: boolean | undefined;
|
4960
5620
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4961
5621
|
id: z.ZodString;
|
@@ -4997,6 +5657,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4997
5657
|
description: string;
|
4998
5658
|
defaultMessage: string;
|
4999
5659
|
}>;
|
5660
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5661
|
+
id: string;
|
5662
|
+
description: string;
|
5663
|
+
defaultMessage: string;
|
5664
|
+
}>>;
|
5000
5665
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5001
5666
|
}, {
|
5002
5667
|
type: z.ZodLiteral<"FILE">;
|
@@ -5066,6 +5731,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5066
5731
|
conditional: import(".").JSONSchema;
|
5067
5732
|
})[] | undefined;
|
5068
5733
|
placeholder?: TranslationConfig | undefined;
|
5734
|
+
helperText?: TranslationConfig | undefined;
|
5069
5735
|
hideLabel?: boolean | undefined;
|
5070
5736
|
}, {
|
5071
5737
|
type: "FILE";
|
@@ -5103,6 +5769,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5103
5769
|
description: string;
|
5104
5770
|
defaultMessage: string;
|
5105
5771
|
} | undefined;
|
5772
|
+
helperText?: {
|
5773
|
+
id: string;
|
5774
|
+
description: string;
|
5775
|
+
defaultMessage: string;
|
5776
|
+
} | undefined;
|
5106
5777
|
hideLabel?: boolean | undefined;
|
5107
5778
|
configuration?: {
|
5108
5779
|
maxFileSize?: number | undefined;
|
@@ -5156,6 +5827,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5156
5827
|
description: string;
|
5157
5828
|
defaultMessage: string;
|
5158
5829
|
}>;
|
5830
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5831
|
+
id: string;
|
5832
|
+
description: string;
|
5833
|
+
defaultMessage: string;
|
5834
|
+
}>>;
|
5159
5835
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5160
5836
|
}, {
|
5161
5837
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -5184,6 +5860,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5184
5860
|
conditional: import(".").JSONSchema;
|
5185
5861
|
})[] | undefined;
|
5186
5862
|
placeholder?: TranslationConfig | undefined;
|
5863
|
+
helperText?: TranslationConfig | undefined;
|
5187
5864
|
hideLabel?: boolean | undefined;
|
5188
5865
|
}, {
|
5189
5866
|
type: "COUNTRY";
|
@@ -5221,6 +5898,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5221
5898
|
description: string;
|
5222
5899
|
defaultMessage: string;
|
5223
5900
|
} | undefined;
|
5901
|
+
helperText?: {
|
5902
|
+
id: string;
|
5903
|
+
description: string;
|
5904
|
+
defaultMessage: string;
|
5905
|
+
} | undefined;
|
5224
5906
|
hideLabel?: boolean | undefined;
|
5225
5907
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5226
5908
|
id: z.ZodString;
|
@@ -5262,6 +5944,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5262
5944
|
description: string;
|
5263
5945
|
defaultMessage: string;
|
5264
5946
|
}>;
|
5947
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5948
|
+
id: string;
|
5949
|
+
description: string;
|
5950
|
+
defaultMessage: string;
|
5951
|
+
}>>;
|
5265
5952
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5266
5953
|
}, {
|
5267
5954
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -5316,6 +6003,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5316
6003
|
conditional: import(".").JSONSchema;
|
5317
6004
|
})[] | undefined;
|
5318
6005
|
placeholder?: TranslationConfig | undefined;
|
6006
|
+
helperText?: TranslationConfig | undefined;
|
5319
6007
|
hideLabel?: boolean | undefined;
|
5320
6008
|
}, {
|
5321
6009
|
type: "ADMINISTRATIVE_AREA";
|
@@ -5359,6 +6047,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5359
6047
|
description: string;
|
5360
6048
|
defaultMessage: string;
|
5361
6049
|
} | undefined;
|
6050
|
+
helperText?: {
|
6051
|
+
id: string;
|
6052
|
+
description: string;
|
6053
|
+
defaultMessage: string;
|
6054
|
+
} | undefined;
|
5362
6055
|
hideLabel?: boolean | undefined;
|
5363
6056
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5364
6057
|
id: z.ZodString;
|
@@ -5400,6 +6093,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5400
6093
|
description: string;
|
5401
6094
|
defaultMessage: string;
|
5402
6095
|
}>;
|
6096
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6097
|
+
id: string;
|
6098
|
+
description: string;
|
6099
|
+
defaultMessage: string;
|
6100
|
+
}>>;
|
5403
6101
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5404
6102
|
}, {
|
5405
6103
|
type: z.ZodLiteral<"DIVIDER">;
|
@@ -5427,6 +6125,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5427
6125
|
conditional: import(".").JSONSchema;
|
5428
6126
|
})[] | undefined;
|
5429
6127
|
placeholder?: TranslationConfig | undefined;
|
6128
|
+
helperText?: TranslationConfig | undefined;
|
5430
6129
|
hideLabel?: boolean | undefined;
|
5431
6130
|
}, {
|
5432
6131
|
type: "DIVIDER";
|
@@ -5464,6 +6163,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5464
6163
|
description: string;
|
5465
6164
|
defaultMessage: string;
|
5466
6165
|
} | undefined;
|
6166
|
+
helperText?: {
|
6167
|
+
id: string;
|
6168
|
+
description: string;
|
6169
|
+
defaultMessage: string;
|
6170
|
+
} | undefined;
|
5467
6171
|
hideLabel?: boolean | undefined;
|
5468
6172
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5469
6173
|
id: z.ZodString;
|
@@ -5505,6 +6209,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5505
6209
|
description: string;
|
5506
6210
|
defaultMessage: string;
|
5507
6211
|
}>;
|
6212
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6213
|
+
id: string;
|
6214
|
+
description: string;
|
6215
|
+
defaultMessage: string;
|
6216
|
+
}>>;
|
5508
6217
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5509
6218
|
}, {
|
5510
6219
|
type: z.ZodLiteral<"LOCATION">;
|
@@ -5533,6 +6242,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5533
6242
|
conditional: import(".").JSONSchema;
|
5534
6243
|
})[] | undefined;
|
5535
6244
|
placeholder?: TranslationConfig | undefined;
|
6245
|
+
helperText?: TranslationConfig | undefined;
|
5536
6246
|
hideLabel?: boolean | undefined;
|
5537
6247
|
}, {
|
5538
6248
|
type: "LOCATION";
|
@@ -5570,6 +6280,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5570
6280
|
description: string;
|
5571
6281
|
defaultMessage: string;
|
5572
6282
|
} | undefined;
|
6283
|
+
helperText?: {
|
6284
|
+
id: string;
|
6285
|
+
description: string;
|
6286
|
+
defaultMessage: string;
|
6287
|
+
} | undefined;
|
5573
6288
|
hideLabel?: boolean | undefined;
|
5574
6289
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5575
6290
|
id: z.ZodString;
|
@@ -5611,6 +6326,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5611
6326
|
description: string;
|
5612
6327
|
defaultMessage: string;
|
5613
6328
|
}>;
|
6329
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6330
|
+
id: string;
|
6331
|
+
description: string;
|
6332
|
+
defaultMessage: string;
|
6333
|
+
}>>;
|
5614
6334
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5615
6335
|
}, {
|
5616
6336
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -5639,6 +6359,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5639
6359
|
conditional: import(".").JSONSchema;
|
5640
6360
|
})[] | undefined;
|
5641
6361
|
placeholder?: TranslationConfig | undefined;
|
6362
|
+
helperText?: TranslationConfig | undefined;
|
5642
6363
|
hideLabel?: boolean | undefined;
|
5643
6364
|
}, {
|
5644
6365
|
type: "FACILITY";
|
@@ -5676,6 +6397,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5676
6397
|
description: string;
|
5677
6398
|
defaultMessage: string;
|
5678
6399
|
} | undefined;
|
6400
|
+
helperText?: {
|
6401
|
+
id: string;
|
6402
|
+
description: string;
|
6403
|
+
defaultMessage: string;
|
6404
|
+
} | undefined;
|
5679
6405
|
hideLabel?: boolean | undefined;
|
5680
6406
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5681
6407
|
id: z.ZodString;
|
@@ -5717,6 +6443,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5717
6443
|
description: string;
|
5718
6444
|
defaultMessage: string;
|
5719
6445
|
}>;
|
6446
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6447
|
+
id: string;
|
6448
|
+
description: string;
|
6449
|
+
defaultMessage: string;
|
6450
|
+
}>>;
|
5720
6451
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5721
6452
|
}, {
|
5722
6453
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -5745,6 +6476,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5745
6476
|
conditional: import(".").JSONSchema;
|
5746
6477
|
})[] | undefined;
|
5747
6478
|
placeholder?: TranslationConfig | undefined;
|
6479
|
+
helperText?: TranslationConfig | undefined;
|
5748
6480
|
hideLabel?: boolean | undefined;
|
5749
6481
|
}, {
|
5750
6482
|
type: "OFFICE";
|
@@ -5782,6 +6514,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5782
6514
|
description: string;
|
5783
6515
|
defaultMessage: string;
|
5784
6516
|
} | undefined;
|
6517
|
+
helperText?: {
|
6518
|
+
id: string;
|
6519
|
+
description: string;
|
6520
|
+
defaultMessage: string;
|
6521
|
+
} | undefined;
|
5785
6522
|
hideLabel?: boolean | undefined;
|
5786
6523
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5787
6524
|
id: z.ZodString;
|
@@ -5823,6 +6560,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5823
6560
|
description: string;
|
5824
6561
|
defaultMessage: string;
|
5825
6562
|
}>;
|
6563
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6564
|
+
id: string;
|
6565
|
+
description: string;
|
6566
|
+
defaultMessage: string;
|
6567
|
+
}>>;
|
5826
6568
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5827
6569
|
}, {
|
5828
6570
|
type: z.ZodLiteral<"SIGNATURE">;
|
@@ -5870,6 +6612,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5870
6612
|
conditional: import(".").JSONSchema;
|
5871
6613
|
})[] | undefined;
|
5872
6614
|
placeholder?: TranslationConfig | undefined;
|
6615
|
+
helperText?: TranslationConfig | undefined;
|
5873
6616
|
hideLabel?: boolean | undefined;
|
5874
6617
|
}, {
|
5875
6618
|
type: "SIGNATURE";
|
@@ -5912,6 +6655,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5912
6655
|
description: string;
|
5913
6656
|
defaultMessage: string;
|
5914
6657
|
} | undefined;
|
6658
|
+
helperText?: {
|
6659
|
+
id: string;
|
6660
|
+
description: string;
|
6661
|
+
defaultMessage: string;
|
6662
|
+
} | undefined;
|
5915
6663
|
hideLabel?: boolean | undefined;
|
5916
6664
|
configuration?: {
|
5917
6665
|
maxFileSize?: number | undefined;
|
@@ -5957,6 +6705,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5957
6705
|
description: string;
|
5958
6706
|
defaultMessage: string;
|
5959
6707
|
}>;
|
6708
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6709
|
+
id: string;
|
6710
|
+
description: string;
|
6711
|
+
defaultMessage: string;
|
6712
|
+
}>>;
|
5960
6713
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5961
6714
|
}, {
|
5962
6715
|
type: z.ZodLiteral<"EMAIL">;
|
@@ -5992,6 +6745,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5992
6745
|
conditional: import(".").JSONSchema;
|
5993
6746
|
})[] | undefined;
|
5994
6747
|
placeholder?: TranslationConfig | undefined;
|
6748
|
+
helperText?: TranslationConfig | undefined;
|
5995
6749
|
hideLabel?: boolean | undefined;
|
5996
6750
|
configuration?: {
|
5997
6751
|
maxLength?: number | undefined;
|
@@ -6032,6 +6786,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6032
6786
|
description: string;
|
6033
6787
|
defaultMessage: string;
|
6034
6788
|
} | undefined;
|
6789
|
+
helperText?: {
|
6790
|
+
id: string;
|
6791
|
+
description: string;
|
6792
|
+
defaultMessage: string;
|
6793
|
+
} | undefined;
|
6035
6794
|
hideLabel?: boolean | undefined;
|
6036
6795
|
configuration?: {
|
6037
6796
|
maxLength?: number | undefined;
|
@@ -6076,6 +6835,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6076
6835
|
description: string;
|
6077
6836
|
defaultMessage: string;
|
6078
6837
|
}>;
|
6838
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6839
|
+
id: string;
|
6840
|
+
description: string;
|
6841
|
+
defaultMessage: string;
|
6842
|
+
}>>;
|
6079
6843
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6080
6844
|
}, {
|
6081
6845
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -6139,6 +6903,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6139
6903
|
conditional: import(".").JSONSchema;
|
6140
6904
|
})[] | undefined;
|
6141
6905
|
placeholder?: TranslationConfig | undefined;
|
6906
|
+
helperText?: TranslationConfig | undefined;
|
6142
6907
|
hideLabel?: boolean | undefined;
|
6143
6908
|
}, {
|
6144
6909
|
type: "FILE_WITH_OPTIONS";
|
@@ -6184,6 +6949,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6184
6949
|
description: string;
|
6185
6950
|
defaultMessage: string;
|
6186
6951
|
} | undefined;
|
6952
|
+
helperText?: {
|
6953
|
+
id: string;
|
6954
|
+
description: string;
|
6955
|
+
defaultMessage: string;
|
6956
|
+
} | undefined;
|
6187
6957
|
hideLabel?: boolean | undefined;
|
6188
6958
|
configuration?: {
|
6189
6959
|
maxFileSize?: number | undefined;
|
@@ -6229,6 +6999,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6229
6999
|
description: string;
|
6230
7000
|
defaultMessage: string;
|
6231
7001
|
}>;
|
7002
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7003
|
+
id: string;
|
7004
|
+
description: string;
|
7005
|
+
defaultMessage: string;
|
7006
|
+
}>>;
|
6232
7007
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6233
7008
|
}, {
|
6234
7009
|
type: z.ZodLiteral<"DATA">;
|
@@ -6332,6 +7107,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6332
7107
|
conditional: import(".").JSONSchema;
|
6333
7108
|
})[] | undefined;
|
6334
7109
|
placeholder?: TranslationConfig | undefined;
|
7110
|
+
helperText?: TranslationConfig | undefined;
|
6335
7111
|
hideLabel?: boolean | undefined;
|
6336
7112
|
}, {
|
6337
7113
|
type: "DATA";
|
@@ -6390,6 +7166,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6390
7166
|
description: string;
|
6391
7167
|
defaultMessage: string;
|
6392
7168
|
} | undefined;
|
7169
|
+
helperText?: {
|
7170
|
+
id: string;
|
7171
|
+
description: string;
|
7172
|
+
defaultMessage: string;
|
7173
|
+
} | undefined;
|
6393
7174
|
hideLabel?: boolean | undefined;
|
6394
7175
|
}>]>;
|
6395
7176
|
export type SelectField = z.infer<typeof Select>;
|