@opencrvs/toolkit 1.8.0-rc.ff0a1b5 → 1.8.0-rc.ff0b26c
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 +2923 -7
- package/dist/commons/events/ActionConfig.d.ts +8022 -1007
- package/dist/commons/events/AdvancedSearchConfig.d.ts +603 -12
- package/dist/commons/events/EventConfig.d.ts +3622 -113
- package/dist/commons/events/EventIndex.d.ts +318 -45
- package/dist/commons/events/EventMetadata.d.ts +1 -0
- package/dist/commons/events/FieldConfig.d.ts +517 -0
- package/dist/commons/events/FormConfig.d.ts +3641 -467
- package/dist/commons/events/PageConfig.d.ts +782 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +344 -52
- package/dist/commons/events/defineConfig.d.ts +253 -1
- package/dist/commons/events/event.d.ts +35 -8
- package/dist/commons/events/field.d.ts +21 -7
- package/dist/commons/events/scopes.d.ts +20 -1
- package/dist/commons/events/test.utils.d.ts +3 -3
- package/dist/commons/events/utils.d.ts +115 -0
- package/dist/events/index.js +429 -121
- package/dist/scopes/index.d.ts +94 -6
- package/dist/scopes/index.js +42 -21
- 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?: {
|
@@ -1128,6 +1216,11 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1128
1216
|
description: string;
|
1129
1217
|
defaultMessage: string;
|
1130
1218
|
}>;
|
1219
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1220
|
+
id: string;
|
1221
|
+
description: string;
|
1222
|
+
defaultMessage: string;
|
1223
|
+
}>>;
|
1131
1224
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1132
1225
|
}, {
|
1133
1226
|
type: z.ZodLiteral<"DATE_RANGE">;
|
@@ -1171,6 +1264,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1171
1264
|
conditional: import(".").JSONSchema;
|
1172
1265
|
})[] | undefined;
|
1173
1266
|
placeholder?: TranslationConfig | undefined;
|
1267
|
+
helperText?: TranslationConfig | undefined;
|
1174
1268
|
hideLabel?: boolean | undefined;
|
1175
1269
|
configuration?: {
|
1176
1270
|
notice?: TranslationConfig | undefined;
|
@@ -1211,6 +1305,11 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
1211
1305
|
description: string;
|
1212
1306
|
defaultMessage: string;
|
1213
1307
|
} | undefined;
|
1308
|
+
helperText?: {
|
1309
|
+
id: string;
|
1310
|
+
description: string;
|
1311
|
+
defaultMessage: string;
|
1312
|
+
} | undefined;
|
1214
1313
|
hideLabel?: boolean | undefined;
|
1215
1314
|
configuration?: {
|
1216
1315
|
notice?: {
|
@@ -1263,6 +1362,11 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1263
1362
|
description: string;
|
1264
1363
|
defaultMessage: string;
|
1265
1364
|
}>;
|
1365
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1366
|
+
id: string;
|
1367
|
+
description: string;
|
1368
|
+
defaultMessage: string;
|
1369
|
+
}>>;
|
1266
1370
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1267
1371
|
}, {
|
1268
1372
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -1313,6 +1417,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1313
1417
|
conditional: import(".").JSONSchema;
|
1314
1418
|
})[] | undefined;
|
1315
1419
|
placeholder?: TranslationConfig | undefined;
|
1420
|
+
helperText?: TranslationConfig | undefined;
|
1316
1421
|
hideLabel?: boolean | undefined;
|
1317
1422
|
}, {
|
1318
1423
|
type: "PARAGRAPH";
|
@@ -1350,6 +1455,11 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
1350
1455
|
description: string;
|
1351
1456
|
defaultMessage: string;
|
1352
1457
|
} | undefined;
|
1458
|
+
helperText?: {
|
1459
|
+
id: string;
|
1460
|
+
description: string;
|
1461
|
+
defaultMessage: string;
|
1462
|
+
} | undefined;
|
1353
1463
|
hideLabel?: boolean | undefined;
|
1354
1464
|
configuration?: {
|
1355
1465
|
styles?: {
|
@@ -1398,6 +1508,11 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1398
1508
|
description: string;
|
1399
1509
|
defaultMessage: string;
|
1400
1510
|
}>;
|
1511
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1512
|
+
id: string;
|
1513
|
+
description: string;
|
1514
|
+
defaultMessage: string;
|
1515
|
+
}>>;
|
1401
1516
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1402
1517
|
}, {
|
1403
1518
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -1426,6 +1541,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1426
1541
|
conditional: import(".").JSONSchema;
|
1427
1542
|
})[] | undefined;
|
1428
1543
|
placeholder?: TranslationConfig | undefined;
|
1544
|
+
helperText?: TranslationConfig | undefined;
|
1429
1545
|
hideLabel?: boolean | undefined;
|
1430
1546
|
}, {
|
1431
1547
|
type: "PAGE_HEADER";
|
@@ -1463,6 +1579,11 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
1463
1579
|
description: string;
|
1464
1580
|
defaultMessage: string;
|
1465
1581
|
} | undefined;
|
1582
|
+
helperText?: {
|
1583
|
+
id: string;
|
1584
|
+
description: string;
|
1585
|
+
defaultMessage: string;
|
1586
|
+
} | undefined;
|
1466
1587
|
hideLabel?: boolean | undefined;
|
1467
1588
|
}>;
|
1468
1589
|
export type PageHeader = z.infer<typeof PageHeader>;
|
@@ -1506,6 +1627,11 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1506
1627
|
description: string;
|
1507
1628
|
defaultMessage: string;
|
1508
1629
|
}>;
|
1630
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1631
|
+
id: string;
|
1632
|
+
description: string;
|
1633
|
+
defaultMessage: string;
|
1634
|
+
}>>;
|
1509
1635
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1510
1636
|
}, {
|
1511
1637
|
type: z.ZodLiteral<"FILE">;
|
@@ -1575,6 +1701,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1575
1701
|
conditional: import(".").JSONSchema;
|
1576
1702
|
})[] | undefined;
|
1577
1703
|
placeholder?: TranslationConfig | undefined;
|
1704
|
+
helperText?: TranslationConfig | undefined;
|
1578
1705
|
hideLabel?: boolean | undefined;
|
1579
1706
|
}, {
|
1580
1707
|
type: "FILE";
|
@@ -1612,6 +1739,11 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
1612
1739
|
description: string;
|
1613
1740
|
defaultMessage: string;
|
1614
1741
|
} | undefined;
|
1742
|
+
helperText?: {
|
1743
|
+
id: string;
|
1744
|
+
description: string;
|
1745
|
+
defaultMessage: string;
|
1746
|
+
} | undefined;
|
1615
1747
|
hideLabel?: boolean | undefined;
|
1616
1748
|
configuration?: {
|
1617
1749
|
maxFileSize?: number | undefined;
|
@@ -1685,6 +1817,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1685
1817
|
description: string;
|
1686
1818
|
defaultMessage: string;
|
1687
1819
|
}>;
|
1820
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1821
|
+
id: string;
|
1822
|
+
description: string;
|
1823
|
+
defaultMessage: string;
|
1824
|
+
}>>;
|
1688
1825
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1689
1826
|
}, {
|
1690
1827
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -1752,6 +1889,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1752
1889
|
conditional: import(".").JSONSchema;
|
1753
1890
|
})[] | undefined;
|
1754
1891
|
placeholder?: TranslationConfig | undefined;
|
1892
|
+
helperText?: TranslationConfig | undefined;
|
1755
1893
|
hideLabel?: boolean | undefined;
|
1756
1894
|
configuration?: {
|
1757
1895
|
styles?: {
|
@@ -1802,6 +1940,11 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
1802
1940
|
description: string;
|
1803
1941
|
defaultMessage: string;
|
1804
1942
|
} | undefined;
|
1943
|
+
helperText?: {
|
1944
|
+
id: string;
|
1945
|
+
description: string;
|
1946
|
+
defaultMessage: string;
|
1947
|
+
} | undefined;
|
1805
1948
|
hideLabel?: boolean | undefined;
|
1806
1949
|
configuration?: {
|
1807
1950
|
styles?: {
|
@@ -1850,6 +1993,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
1850
1993
|
description: string;
|
1851
1994
|
defaultMessage: string;
|
1852
1995
|
}>;
|
1996
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1997
|
+
id: string;
|
1998
|
+
description: string;
|
1999
|
+
defaultMessage: string;
|
2000
|
+
}>>;
|
1853
2001
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1854
2002
|
}, {
|
1855
2003
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -1906,6 +2054,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
1906
2054
|
conditional: import(".").JSONSchema;
|
1907
2055
|
})[] | undefined;
|
1908
2056
|
placeholder?: TranslationConfig | undefined;
|
2057
|
+
helperText?: TranslationConfig | undefined;
|
1909
2058
|
hideLabel?: boolean | undefined;
|
1910
2059
|
}, {
|
1911
2060
|
type: "BULLET_LIST";
|
@@ -1948,6 +2097,11 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
1948
2097
|
description: string;
|
1949
2098
|
defaultMessage: string;
|
1950
2099
|
} | undefined;
|
2100
|
+
helperText?: {
|
2101
|
+
id: string;
|
2102
|
+
description: string;
|
2103
|
+
defaultMessage: string;
|
2104
|
+
} | undefined;
|
1951
2105
|
hideLabel?: boolean | undefined;
|
1952
2106
|
configuration?: {
|
1953
2107
|
styles?: {
|
@@ -1996,6 +2150,11 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
1996
2150
|
description: string;
|
1997
2151
|
defaultMessage: string;
|
1998
2152
|
}>;
|
2153
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2154
|
+
id: string;
|
2155
|
+
description: string;
|
2156
|
+
defaultMessage: string;
|
2157
|
+
}>>;
|
1999
2158
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2000
2159
|
}, {
|
2001
2160
|
type: z.ZodLiteral<"SELECT">;
|
@@ -2046,6 +2205,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2046
2205
|
conditional: import(".").JSONSchema;
|
2047
2206
|
})[] | undefined;
|
2048
2207
|
placeholder?: TranslationConfig | undefined;
|
2208
|
+
helperText?: TranslationConfig | undefined;
|
2049
2209
|
hideLabel?: boolean | undefined;
|
2050
2210
|
}, {
|
2051
2211
|
type: "SELECT";
|
@@ -2091,6 +2251,11 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
2091
2251
|
description: string;
|
2092
2252
|
defaultMessage: string;
|
2093
2253
|
} | undefined;
|
2254
|
+
helperText?: {
|
2255
|
+
id: string;
|
2256
|
+
description: string;
|
2257
|
+
defaultMessage: string;
|
2258
|
+
} | undefined;
|
2094
2259
|
hideLabel?: boolean | undefined;
|
2095
2260
|
}>;
|
2096
2261
|
declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
@@ -2133,6 +2298,11 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2133
2298
|
description: string;
|
2134
2299
|
defaultMessage: string;
|
2135
2300
|
}>;
|
2301
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2302
|
+
id: string;
|
2303
|
+
description: string;
|
2304
|
+
defaultMessage: string;
|
2305
|
+
}>>;
|
2136
2306
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2137
2307
|
}, {
|
2138
2308
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -2161,6 +2331,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2161
2331
|
conditional: import(".").JSONSchema;
|
2162
2332
|
})[] | undefined;
|
2163
2333
|
placeholder?: TranslationConfig | undefined;
|
2334
|
+
helperText?: TranslationConfig | undefined;
|
2164
2335
|
hideLabel?: boolean | undefined;
|
2165
2336
|
}, {
|
2166
2337
|
type: "CHECKBOX";
|
@@ -2198,6 +2369,11 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
2198
2369
|
description: string;
|
2199
2370
|
defaultMessage: string;
|
2200
2371
|
} | undefined;
|
2372
|
+
helperText?: {
|
2373
|
+
id: string;
|
2374
|
+
description: string;
|
2375
|
+
defaultMessage: string;
|
2376
|
+
} | undefined;
|
2201
2377
|
hideLabel?: boolean | undefined;
|
2202
2378
|
}>;
|
2203
2379
|
export type Checkbox = z.infer<typeof Checkbox>;
|
@@ -2241,6 +2417,11 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2241
2417
|
description: string;
|
2242
2418
|
defaultMessage: string;
|
2243
2419
|
}>;
|
2420
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2421
|
+
id: string;
|
2422
|
+
description: string;
|
2423
|
+
defaultMessage: string;
|
2424
|
+
}>>;
|
2244
2425
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2245
2426
|
}, {
|
2246
2427
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -2269,6 +2450,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2269
2450
|
conditional: import(".").JSONSchema;
|
2270
2451
|
})[] | undefined;
|
2271
2452
|
placeholder?: TranslationConfig | undefined;
|
2453
|
+
helperText?: TranslationConfig | undefined;
|
2272
2454
|
hideLabel?: boolean | undefined;
|
2273
2455
|
}, {
|
2274
2456
|
type: "COUNTRY";
|
@@ -2306,6 +2488,11 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
2306
2488
|
description: string;
|
2307
2489
|
defaultMessage: string;
|
2308
2490
|
} | undefined;
|
2491
|
+
helperText?: {
|
2492
|
+
id: string;
|
2493
|
+
description: string;
|
2494
|
+
defaultMessage: string;
|
2495
|
+
} | undefined;
|
2309
2496
|
hideLabel?: boolean | undefined;
|
2310
2497
|
}>;
|
2311
2498
|
export type Country = z.infer<typeof Country>;
|
@@ -2370,6 +2557,11 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2370
2557
|
description: string;
|
2371
2558
|
defaultMessage: string;
|
2372
2559
|
}>;
|
2560
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2561
|
+
id: string;
|
2562
|
+
description: string;
|
2563
|
+
defaultMessage: string;
|
2564
|
+
}>>;
|
2373
2565
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2374
2566
|
}, {
|
2375
2567
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -2424,6 +2616,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2424
2616
|
conditional: import(".").JSONSchema;
|
2425
2617
|
})[] | undefined;
|
2426
2618
|
placeholder?: TranslationConfig | undefined;
|
2619
|
+
helperText?: TranslationConfig | undefined;
|
2427
2620
|
hideLabel?: boolean | undefined;
|
2428
2621
|
}, {
|
2429
2622
|
type: "ADMINISTRATIVE_AREA";
|
@@ -2467,6 +2660,11 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
2467
2660
|
description: string;
|
2468
2661
|
defaultMessage: string;
|
2469
2662
|
} | undefined;
|
2663
|
+
helperText?: {
|
2664
|
+
id: string;
|
2665
|
+
description: string;
|
2666
|
+
defaultMessage: string;
|
2667
|
+
} | undefined;
|
2470
2668
|
hideLabel?: boolean | undefined;
|
2471
2669
|
}>;
|
2472
2670
|
export type AdministrativeArea = z.infer<typeof AdministrativeArea>;
|
@@ -2510,6 +2708,11 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
2510
2708
|
description: string;
|
2511
2709
|
defaultMessage: string;
|
2512
2710
|
}>;
|
2711
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2712
|
+
id: string;
|
2713
|
+
description: string;
|
2714
|
+
defaultMessage: string;
|
2715
|
+
}>>;
|
2513
2716
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2514
2717
|
}, {
|
2515
2718
|
type: z.ZodLiteral<"LOCATION">;
|
@@ -2538,6 +2741,7 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
2538
2741
|
conditional: import(".").JSONSchema;
|
2539
2742
|
})[] | undefined;
|
2540
2743
|
placeholder?: TranslationConfig | undefined;
|
2744
|
+
helperText?: TranslationConfig | undefined;
|
2541
2745
|
hideLabel?: boolean | undefined;
|
2542
2746
|
}, {
|
2543
2747
|
type: "LOCATION";
|
@@ -2575,6 +2779,11 @@ declare const Location: z.ZodObject<z.objectUtil.extendShape<{
|
|
2575
2779
|
description: string;
|
2576
2780
|
defaultMessage: string;
|
2577
2781
|
} | undefined;
|
2782
|
+
helperText?: {
|
2783
|
+
id: string;
|
2784
|
+
description: string;
|
2785
|
+
defaultMessage: string;
|
2786
|
+
} | undefined;
|
2578
2787
|
hideLabel?: boolean | undefined;
|
2579
2788
|
}>;
|
2580
2789
|
export type Location = z.infer<typeof Location>;
|
@@ -2618,6 +2827,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
2618
2827
|
description: string;
|
2619
2828
|
defaultMessage: string;
|
2620
2829
|
}>;
|
2830
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2831
|
+
id: string;
|
2832
|
+
description: string;
|
2833
|
+
defaultMessage: string;
|
2834
|
+
}>>;
|
2621
2835
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2622
2836
|
}, {
|
2623
2837
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -2681,6 +2895,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
2681
2895
|
conditional: import(".").JSONSchema;
|
2682
2896
|
})[] | undefined;
|
2683
2897
|
placeholder?: TranslationConfig | undefined;
|
2898
|
+
helperText?: TranslationConfig | undefined;
|
2684
2899
|
hideLabel?: boolean | undefined;
|
2685
2900
|
}, {
|
2686
2901
|
type: "FILE_WITH_OPTIONS";
|
@@ -2726,6 +2941,11 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
2726
2941
|
description: string;
|
2727
2942
|
defaultMessage: string;
|
2728
2943
|
} | undefined;
|
2944
|
+
helperText?: {
|
2945
|
+
id: string;
|
2946
|
+
description: string;
|
2947
|
+
defaultMessage: string;
|
2948
|
+
} | undefined;
|
2729
2949
|
hideLabel?: boolean | undefined;
|
2730
2950
|
configuration?: {
|
2731
2951
|
maxFileSize?: number | undefined;
|
@@ -2773,6 +2993,11 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
2773
2993
|
description: string;
|
2774
2994
|
defaultMessage: string;
|
2775
2995
|
}>;
|
2996
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
2997
|
+
id: string;
|
2998
|
+
description: string;
|
2999
|
+
defaultMessage: string;
|
3000
|
+
}>>;
|
2776
3001
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2777
3002
|
}, {
|
2778
3003
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -2801,6 +3026,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
2801
3026
|
conditional: import(".").JSONSchema;
|
2802
3027
|
})[] | undefined;
|
2803
3028
|
placeholder?: TranslationConfig | undefined;
|
3029
|
+
helperText?: TranslationConfig | undefined;
|
2804
3030
|
hideLabel?: boolean | undefined;
|
2805
3031
|
}, {
|
2806
3032
|
type: "FACILITY";
|
@@ -2838,6 +3064,11 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
2838
3064
|
description: string;
|
2839
3065
|
defaultMessage: string;
|
2840
3066
|
} | undefined;
|
3067
|
+
helperText?: {
|
3068
|
+
id: string;
|
3069
|
+
description: string;
|
3070
|
+
defaultMessage: string;
|
3071
|
+
} | undefined;
|
2841
3072
|
hideLabel?: boolean | undefined;
|
2842
3073
|
}>;
|
2843
3074
|
export type Facility = z.infer<typeof Facility>;
|
@@ -2881,6 +3112,11 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
2881
3112
|
description: string;
|
2882
3113
|
defaultMessage: string;
|
2883
3114
|
}>;
|
3115
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3116
|
+
id: string;
|
3117
|
+
description: string;
|
3118
|
+
defaultMessage: string;
|
3119
|
+
}>>;
|
2884
3120
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2885
3121
|
}, {
|
2886
3122
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -2909,6 +3145,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
2909
3145
|
conditional: import(".").JSONSchema;
|
2910
3146
|
})[] | undefined;
|
2911
3147
|
placeholder?: TranslationConfig | undefined;
|
3148
|
+
helperText?: TranslationConfig | undefined;
|
2912
3149
|
hideLabel?: boolean | undefined;
|
2913
3150
|
}, {
|
2914
3151
|
type: "OFFICE";
|
@@ -2946,6 +3183,11 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
2946
3183
|
description: string;
|
2947
3184
|
defaultMessage: string;
|
2948
3185
|
} | undefined;
|
3186
|
+
helperText?: {
|
3187
|
+
id: string;
|
3188
|
+
description: string;
|
3189
|
+
defaultMessage: string;
|
3190
|
+
} | undefined;
|
2949
3191
|
hideLabel?: boolean | undefined;
|
2950
3192
|
}>;
|
2951
3193
|
export type Office = z.infer<typeof Office>;
|
@@ -2989,6 +3231,11 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
2989
3231
|
description: string;
|
2990
3232
|
defaultMessage: string;
|
2991
3233
|
}>;
|
3234
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3235
|
+
id: string;
|
3236
|
+
description: string;
|
3237
|
+
defaultMessage: string;
|
3238
|
+
}>>;
|
2992
3239
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
2993
3240
|
}, {
|
2994
3241
|
type: z.ZodLiteral<"ADDRESS">;
|
@@ -3131,6 +3378,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3131
3378
|
conditional: import(".").JSONSchema;
|
3132
3379
|
})[] | undefined;
|
3133
3380
|
placeholder?: TranslationConfig | undefined;
|
3381
|
+
helperText?: TranslationConfig | undefined;
|
3134
3382
|
hideLabel?: boolean | undefined;
|
3135
3383
|
}, {
|
3136
3384
|
type: "ADDRESS";
|
@@ -3196,6 +3444,11 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
3196
3444
|
description: string;
|
3197
3445
|
defaultMessage: string;
|
3198
3446
|
} | undefined;
|
3447
|
+
helperText?: {
|
3448
|
+
id: string;
|
3449
|
+
description: string;
|
3450
|
+
defaultMessage: string;
|
3451
|
+
} | undefined;
|
3199
3452
|
hideLabel?: boolean | undefined;
|
3200
3453
|
}>;
|
3201
3454
|
export declare const DataEntry: z.ZodUnion<[z.ZodObject<{
|
@@ -3271,6 +3524,11 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3271
3524
|
description: string;
|
3272
3525
|
defaultMessage: string;
|
3273
3526
|
}>;
|
3527
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3528
|
+
id: string;
|
3529
|
+
description: string;
|
3530
|
+
defaultMessage: string;
|
3531
|
+
}>>;
|
3274
3532
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3275
3533
|
}, {
|
3276
3534
|
type: z.ZodLiteral<"DATA">;
|
@@ -3374,6 +3632,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3374
3632
|
conditional: import(".").JSONSchema;
|
3375
3633
|
})[] | undefined;
|
3376
3634
|
placeholder?: TranslationConfig | undefined;
|
3635
|
+
helperText?: TranslationConfig | undefined;
|
3377
3636
|
hideLabel?: boolean | undefined;
|
3378
3637
|
}, {
|
3379
3638
|
type: "DATA";
|
@@ -3432,6 +3691,11 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
3432
3691
|
description: string;
|
3433
3692
|
defaultMessage: string;
|
3434
3693
|
} | undefined;
|
3694
|
+
helperText?: {
|
3695
|
+
id: string;
|
3696
|
+
description: string;
|
3697
|
+
defaultMessage: string;
|
3698
|
+
} | undefined;
|
3435
3699
|
hideLabel?: boolean | undefined;
|
3436
3700
|
}>;
|
3437
3701
|
export type DataField = z.infer<typeof DataField>;
|
@@ -3484,6 +3748,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3484
3748
|
description: string;
|
3485
3749
|
defaultMessage: string;
|
3486
3750
|
}>;
|
3751
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
3752
|
+
id: string;
|
3753
|
+
description: string;
|
3754
|
+
defaultMessage: string;
|
3755
|
+
}>>;
|
3487
3756
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3488
3757
|
}, {
|
3489
3758
|
type: z.ZodLiteral<"ADDRESS">;
|
@@ -3626,6 +3895,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3626
3895
|
conditional: import(".").JSONSchema;
|
3627
3896
|
})[] | undefined;
|
3628
3897
|
placeholder?: TranslationConfig | undefined;
|
3898
|
+
helperText?: TranslationConfig | undefined;
|
3629
3899
|
hideLabel?: boolean | undefined;
|
3630
3900
|
}, {
|
3631
3901
|
type: "ADDRESS";
|
@@ -3691,6 +3961,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3691
3961
|
description: string;
|
3692
3962
|
defaultMessage: string;
|
3693
3963
|
} | undefined;
|
3964
|
+
helperText?: {
|
3965
|
+
id: string;
|
3966
|
+
description: string;
|
3967
|
+
defaultMessage: string;
|
3968
|
+
} | undefined;
|
3694
3969
|
hideLabel?: boolean | undefined;
|
3695
3970
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3696
3971
|
id: z.ZodString;
|
@@ -3732,6 +4007,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3732
4007
|
description: string;
|
3733
4008
|
defaultMessage: string;
|
3734
4009
|
}>;
|
4010
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4011
|
+
id: string;
|
4012
|
+
description: string;
|
4013
|
+
defaultMessage: string;
|
4014
|
+
}>>;
|
3735
4015
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3736
4016
|
}, {
|
3737
4017
|
type: z.ZodLiteral<"TEXT">;
|
@@ -3792,6 +4072,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3792
4072
|
conditional: import(".").JSONSchema;
|
3793
4073
|
})[] | undefined;
|
3794
4074
|
placeholder?: TranslationConfig | undefined;
|
4075
|
+
helperText?: TranslationConfig | undefined;
|
3795
4076
|
hideLabel?: boolean | undefined;
|
3796
4077
|
configuration?: {
|
3797
4078
|
type?: "text" | "password" | undefined;
|
@@ -3835,6 +4116,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3835
4116
|
description: string;
|
3836
4117
|
defaultMessage: string;
|
3837
4118
|
} | undefined;
|
4119
|
+
helperText?: {
|
4120
|
+
id: string;
|
4121
|
+
description: string;
|
4122
|
+
defaultMessage: string;
|
4123
|
+
} | undefined;
|
3838
4124
|
hideLabel?: boolean | undefined;
|
3839
4125
|
configuration?: {
|
3840
4126
|
type?: "text" | "password" | undefined;
|
@@ -3890,6 +4176,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3890
4176
|
description: string;
|
3891
4177
|
defaultMessage: string;
|
3892
4178
|
}>;
|
4179
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4180
|
+
id: string;
|
4181
|
+
description: string;
|
4182
|
+
defaultMessage: string;
|
4183
|
+
}>>;
|
3893
4184
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
3894
4185
|
}, {
|
3895
4186
|
type: z.ZodLiteral<"NUMBER">;
|
@@ -3950,6 +4241,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3950
4241
|
conditional: import(".").JSONSchema;
|
3951
4242
|
})[] | undefined;
|
3952
4243
|
placeholder?: TranslationConfig | undefined;
|
4244
|
+
helperText?: TranslationConfig | undefined;
|
3953
4245
|
hideLabel?: boolean | undefined;
|
3954
4246
|
configuration?: {
|
3955
4247
|
prefix?: TranslationConfig | undefined;
|
@@ -3993,6 +4285,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3993
4285
|
description: string;
|
3994
4286
|
defaultMessage: string;
|
3995
4287
|
} | undefined;
|
4288
|
+
helperText?: {
|
4289
|
+
id: string;
|
4290
|
+
description: string;
|
4291
|
+
defaultMessage: string;
|
4292
|
+
} | undefined;
|
3996
4293
|
hideLabel?: boolean | undefined;
|
3997
4294
|
configuration?: {
|
3998
4295
|
prefix?: {
|
@@ -4048,6 +4345,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4048
4345
|
description: string;
|
4049
4346
|
defaultMessage: string;
|
4050
4347
|
}>;
|
4348
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4349
|
+
id: string;
|
4350
|
+
description: string;
|
4351
|
+
defaultMessage: string;
|
4352
|
+
}>>;
|
4051
4353
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4052
4354
|
}, {
|
4053
4355
|
type: z.ZodLiteral<"TEXTAREA">;
|
@@ -4111,6 +4413,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4111
4413
|
conditional: import(".").JSONSchema;
|
4112
4414
|
})[] | undefined;
|
4113
4415
|
placeholder?: TranslationConfig | undefined;
|
4416
|
+
helperText?: TranslationConfig | undefined;
|
4114
4417
|
hideLabel?: boolean | undefined;
|
4115
4418
|
configuration?: {
|
4116
4419
|
maxLength?: number | undefined;
|
@@ -4155,6 +4458,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4155
4458
|
description: string;
|
4156
4459
|
defaultMessage: string;
|
4157
4460
|
} | undefined;
|
4461
|
+
helperText?: {
|
4462
|
+
id: string;
|
4463
|
+
description: string;
|
4464
|
+
defaultMessage: string;
|
4465
|
+
} | undefined;
|
4158
4466
|
hideLabel?: boolean | undefined;
|
4159
4467
|
configuration?: {
|
4160
4468
|
maxLength?: number | undefined;
|
@@ -4211,6 +4519,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4211
4519
|
description: string;
|
4212
4520
|
defaultMessage: string;
|
4213
4521
|
}>;
|
4522
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4523
|
+
id: string;
|
4524
|
+
description: string;
|
4525
|
+
defaultMessage: string;
|
4526
|
+
}>>;
|
4214
4527
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4215
4528
|
}, {
|
4216
4529
|
type: z.ZodLiteral<"DATE">;
|
@@ -4254,6 +4567,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4254
4567
|
conditional: import(".").JSONSchema;
|
4255
4568
|
})[] | undefined;
|
4256
4569
|
placeholder?: TranslationConfig | undefined;
|
4570
|
+
helperText?: TranslationConfig | undefined;
|
4257
4571
|
hideLabel?: boolean | undefined;
|
4258
4572
|
configuration?: {
|
4259
4573
|
notice?: TranslationConfig | undefined;
|
@@ -4294,6 +4608,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4294
4608
|
description: string;
|
4295
4609
|
defaultMessage: string;
|
4296
4610
|
} | undefined;
|
4611
|
+
helperText?: {
|
4612
|
+
id: string;
|
4613
|
+
description: string;
|
4614
|
+
defaultMessage: string;
|
4615
|
+
} | undefined;
|
4297
4616
|
hideLabel?: boolean | undefined;
|
4298
4617
|
configuration?: {
|
4299
4618
|
notice?: {
|
@@ -4342,6 +4661,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4342
4661
|
description: string;
|
4343
4662
|
defaultMessage: string;
|
4344
4663
|
}>;
|
4664
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4665
|
+
id: string;
|
4666
|
+
description: string;
|
4667
|
+
defaultMessage: string;
|
4668
|
+
}>>;
|
4345
4669
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4346
4670
|
}, {
|
4347
4671
|
type: z.ZodLiteral<"DATE_RANGE">;
|
@@ -4385,6 +4709,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4385
4709
|
conditional: import(".").JSONSchema;
|
4386
4710
|
})[] | undefined;
|
4387
4711
|
placeholder?: TranslationConfig | undefined;
|
4712
|
+
helperText?: TranslationConfig | undefined;
|
4388
4713
|
hideLabel?: boolean | undefined;
|
4389
4714
|
configuration?: {
|
4390
4715
|
notice?: TranslationConfig | undefined;
|
@@ -4425,6 +4750,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4425
4750
|
description: string;
|
4426
4751
|
defaultMessage: string;
|
4427
4752
|
} | undefined;
|
4753
|
+
helperText?: {
|
4754
|
+
id: string;
|
4755
|
+
description: string;
|
4756
|
+
defaultMessage: string;
|
4757
|
+
} | undefined;
|
4428
4758
|
hideLabel?: boolean | undefined;
|
4429
4759
|
configuration?: {
|
4430
4760
|
notice?: {
|
@@ -4473,6 +4803,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4473
4803
|
description: string;
|
4474
4804
|
defaultMessage: string;
|
4475
4805
|
}>;
|
4806
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4807
|
+
id: string;
|
4808
|
+
description: string;
|
4809
|
+
defaultMessage: string;
|
4810
|
+
}>>;
|
4476
4811
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4477
4812
|
}, {
|
4478
4813
|
type: z.ZodLiteral<"PARAGRAPH">;
|
@@ -4523,6 +4858,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4523
4858
|
conditional: import(".").JSONSchema;
|
4524
4859
|
})[] | undefined;
|
4525
4860
|
placeholder?: TranslationConfig | undefined;
|
4861
|
+
helperText?: TranslationConfig | undefined;
|
4526
4862
|
hideLabel?: boolean | undefined;
|
4527
4863
|
}, {
|
4528
4864
|
type: "PARAGRAPH";
|
@@ -4560,6 +4896,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4560
4896
|
description: string;
|
4561
4897
|
defaultMessage: string;
|
4562
4898
|
} | undefined;
|
4899
|
+
helperText?: {
|
4900
|
+
id: string;
|
4901
|
+
description: string;
|
4902
|
+
defaultMessage: string;
|
4903
|
+
} | undefined;
|
4563
4904
|
hideLabel?: boolean | undefined;
|
4564
4905
|
configuration?: {
|
4565
4906
|
styles?: {
|
@@ -4606,6 +4947,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4606
4947
|
description: string;
|
4607
4948
|
defaultMessage: string;
|
4608
4949
|
}>;
|
4950
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
4951
|
+
id: string;
|
4952
|
+
description: string;
|
4953
|
+
defaultMessage: string;
|
4954
|
+
}>>;
|
4609
4955
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4610
4956
|
}, {
|
4611
4957
|
type: z.ZodLiteral<"RADIO_GROUP">;
|
@@ -4673,6 +5019,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4673
5019
|
conditional: import(".").JSONSchema;
|
4674
5020
|
})[] | undefined;
|
4675
5021
|
placeholder?: TranslationConfig | undefined;
|
5022
|
+
helperText?: TranslationConfig | undefined;
|
4676
5023
|
hideLabel?: boolean | undefined;
|
4677
5024
|
configuration?: {
|
4678
5025
|
styles?: {
|
@@ -4723,6 +5070,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4723
5070
|
description: string;
|
4724
5071
|
defaultMessage: string;
|
4725
5072
|
} | undefined;
|
5073
|
+
helperText?: {
|
5074
|
+
id: string;
|
5075
|
+
description: string;
|
5076
|
+
defaultMessage: string;
|
5077
|
+
} | undefined;
|
4726
5078
|
hideLabel?: boolean | undefined;
|
4727
5079
|
configuration?: {
|
4728
5080
|
styles?: {
|
@@ -4769,6 +5121,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4769
5121
|
description: string;
|
4770
5122
|
defaultMessage: string;
|
4771
5123
|
}>;
|
5124
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5125
|
+
id: string;
|
5126
|
+
description: string;
|
5127
|
+
defaultMessage: string;
|
5128
|
+
}>>;
|
4772
5129
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4773
5130
|
}, {
|
4774
5131
|
type: z.ZodLiteral<"BULLET_LIST">;
|
@@ -4825,6 +5182,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4825
5182
|
conditional: import(".").JSONSchema;
|
4826
5183
|
})[] | undefined;
|
4827
5184
|
placeholder?: TranslationConfig | undefined;
|
5185
|
+
helperText?: TranslationConfig | undefined;
|
4828
5186
|
hideLabel?: boolean | undefined;
|
4829
5187
|
}, {
|
4830
5188
|
type: "BULLET_LIST";
|
@@ -4867,6 +5225,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4867
5225
|
description: string;
|
4868
5226
|
defaultMessage: string;
|
4869
5227
|
} | undefined;
|
5228
|
+
helperText?: {
|
5229
|
+
id: string;
|
5230
|
+
description: string;
|
5231
|
+
defaultMessage: string;
|
5232
|
+
} | undefined;
|
4870
5233
|
hideLabel?: boolean | undefined;
|
4871
5234
|
configuration?: {
|
4872
5235
|
styles?: {
|
@@ -4913,6 +5276,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4913
5276
|
description: string;
|
4914
5277
|
defaultMessage: string;
|
4915
5278
|
}>;
|
5279
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5280
|
+
id: string;
|
5281
|
+
description: string;
|
5282
|
+
defaultMessage: string;
|
5283
|
+
}>>;
|
4916
5284
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
4917
5285
|
}, {
|
4918
5286
|
type: z.ZodLiteral<"PAGE_HEADER">;
|
@@ -4941,6 +5309,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4941
5309
|
conditional: import(".").JSONSchema;
|
4942
5310
|
})[] | undefined;
|
4943
5311
|
placeholder?: TranslationConfig | undefined;
|
5312
|
+
helperText?: TranslationConfig | undefined;
|
4944
5313
|
hideLabel?: boolean | undefined;
|
4945
5314
|
}, {
|
4946
5315
|
type: "PAGE_HEADER";
|
@@ -4978,6 +5347,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4978
5347
|
description: string;
|
4979
5348
|
defaultMessage: string;
|
4980
5349
|
} | undefined;
|
5350
|
+
helperText?: {
|
5351
|
+
id: string;
|
5352
|
+
description: string;
|
5353
|
+
defaultMessage: string;
|
5354
|
+
} | undefined;
|
4981
5355
|
hideLabel?: boolean | undefined;
|
4982
5356
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4983
5357
|
id: z.ZodString;
|
@@ -5019,6 +5393,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5019
5393
|
description: string;
|
5020
5394
|
defaultMessage: string;
|
5021
5395
|
}>;
|
5396
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5397
|
+
id: string;
|
5398
|
+
description: string;
|
5399
|
+
defaultMessage: string;
|
5400
|
+
}>>;
|
5022
5401
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5023
5402
|
}, {
|
5024
5403
|
type: z.ZodLiteral<"SELECT">;
|
@@ -5069,6 +5448,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5069
5448
|
conditional: import(".").JSONSchema;
|
5070
5449
|
})[] | undefined;
|
5071
5450
|
placeholder?: TranslationConfig | undefined;
|
5451
|
+
helperText?: TranslationConfig | undefined;
|
5072
5452
|
hideLabel?: boolean | undefined;
|
5073
5453
|
}, {
|
5074
5454
|
type: "SELECT";
|
@@ -5114,6 +5494,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5114
5494
|
description: string;
|
5115
5495
|
defaultMessage: string;
|
5116
5496
|
} | undefined;
|
5497
|
+
helperText?: {
|
5498
|
+
id: string;
|
5499
|
+
description: string;
|
5500
|
+
defaultMessage: string;
|
5501
|
+
} | undefined;
|
5117
5502
|
hideLabel?: boolean | undefined;
|
5118
5503
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5119
5504
|
id: z.ZodString;
|
@@ -5155,6 +5540,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5155
5540
|
description: string;
|
5156
5541
|
defaultMessage: string;
|
5157
5542
|
}>;
|
5543
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5544
|
+
id: string;
|
5545
|
+
description: string;
|
5546
|
+
defaultMessage: string;
|
5547
|
+
}>>;
|
5158
5548
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5159
5549
|
}, {
|
5160
5550
|
type: z.ZodLiteral<"CHECKBOX">;
|
@@ -5183,6 +5573,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5183
5573
|
conditional: import(".").JSONSchema;
|
5184
5574
|
})[] | undefined;
|
5185
5575
|
placeholder?: TranslationConfig | undefined;
|
5576
|
+
helperText?: TranslationConfig | undefined;
|
5186
5577
|
hideLabel?: boolean | undefined;
|
5187
5578
|
}, {
|
5188
5579
|
type: "CHECKBOX";
|
@@ -5220,6 +5611,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5220
5611
|
description: string;
|
5221
5612
|
defaultMessage: string;
|
5222
5613
|
} | undefined;
|
5614
|
+
helperText?: {
|
5615
|
+
id: string;
|
5616
|
+
description: string;
|
5617
|
+
defaultMessage: string;
|
5618
|
+
} | undefined;
|
5223
5619
|
hideLabel?: boolean | undefined;
|
5224
5620
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5225
5621
|
id: z.ZodString;
|
@@ -5261,6 +5657,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5261
5657
|
description: string;
|
5262
5658
|
defaultMessage: string;
|
5263
5659
|
}>;
|
5660
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5661
|
+
id: string;
|
5662
|
+
description: string;
|
5663
|
+
defaultMessage: string;
|
5664
|
+
}>>;
|
5264
5665
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5265
5666
|
}, {
|
5266
5667
|
type: z.ZodLiteral<"FILE">;
|
@@ -5330,6 +5731,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5330
5731
|
conditional: import(".").JSONSchema;
|
5331
5732
|
})[] | undefined;
|
5332
5733
|
placeholder?: TranslationConfig | undefined;
|
5734
|
+
helperText?: TranslationConfig | undefined;
|
5333
5735
|
hideLabel?: boolean | undefined;
|
5334
5736
|
}, {
|
5335
5737
|
type: "FILE";
|
@@ -5367,6 +5769,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5367
5769
|
description: string;
|
5368
5770
|
defaultMessage: string;
|
5369
5771
|
} | undefined;
|
5772
|
+
helperText?: {
|
5773
|
+
id: string;
|
5774
|
+
description: string;
|
5775
|
+
defaultMessage: string;
|
5776
|
+
} | undefined;
|
5370
5777
|
hideLabel?: boolean | undefined;
|
5371
5778
|
configuration?: {
|
5372
5779
|
maxFileSize?: number | undefined;
|
@@ -5420,6 +5827,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5420
5827
|
description: string;
|
5421
5828
|
defaultMessage: string;
|
5422
5829
|
}>;
|
5830
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5831
|
+
id: string;
|
5832
|
+
description: string;
|
5833
|
+
defaultMessage: string;
|
5834
|
+
}>>;
|
5423
5835
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5424
5836
|
}, {
|
5425
5837
|
type: z.ZodLiteral<"COUNTRY">;
|
@@ -5448,6 +5860,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5448
5860
|
conditional: import(".").JSONSchema;
|
5449
5861
|
})[] | undefined;
|
5450
5862
|
placeholder?: TranslationConfig | undefined;
|
5863
|
+
helperText?: TranslationConfig | undefined;
|
5451
5864
|
hideLabel?: boolean | undefined;
|
5452
5865
|
}, {
|
5453
5866
|
type: "COUNTRY";
|
@@ -5485,6 +5898,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5485
5898
|
description: string;
|
5486
5899
|
defaultMessage: string;
|
5487
5900
|
} | undefined;
|
5901
|
+
helperText?: {
|
5902
|
+
id: string;
|
5903
|
+
description: string;
|
5904
|
+
defaultMessage: string;
|
5905
|
+
} | undefined;
|
5488
5906
|
hideLabel?: boolean | undefined;
|
5489
5907
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5490
5908
|
id: z.ZodString;
|
@@ -5526,6 +5944,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5526
5944
|
description: string;
|
5527
5945
|
defaultMessage: string;
|
5528
5946
|
}>;
|
5947
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
5948
|
+
id: string;
|
5949
|
+
description: string;
|
5950
|
+
defaultMessage: string;
|
5951
|
+
}>>;
|
5529
5952
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5530
5953
|
}, {
|
5531
5954
|
type: z.ZodLiteral<"ADMINISTRATIVE_AREA">;
|
@@ -5580,6 +6003,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5580
6003
|
conditional: import(".").JSONSchema;
|
5581
6004
|
})[] | undefined;
|
5582
6005
|
placeholder?: TranslationConfig | undefined;
|
6006
|
+
helperText?: TranslationConfig | undefined;
|
5583
6007
|
hideLabel?: boolean | undefined;
|
5584
6008
|
}, {
|
5585
6009
|
type: "ADMINISTRATIVE_AREA";
|
@@ -5623,6 +6047,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5623
6047
|
description: string;
|
5624
6048
|
defaultMessage: string;
|
5625
6049
|
} | undefined;
|
6050
|
+
helperText?: {
|
6051
|
+
id: string;
|
6052
|
+
description: string;
|
6053
|
+
defaultMessage: string;
|
6054
|
+
} | undefined;
|
5626
6055
|
hideLabel?: boolean | undefined;
|
5627
6056
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5628
6057
|
id: z.ZodString;
|
@@ -5664,6 +6093,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5664
6093
|
description: string;
|
5665
6094
|
defaultMessage: string;
|
5666
6095
|
}>;
|
6096
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6097
|
+
id: string;
|
6098
|
+
description: string;
|
6099
|
+
defaultMessage: string;
|
6100
|
+
}>>;
|
5667
6101
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5668
6102
|
}, {
|
5669
6103
|
type: z.ZodLiteral<"DIVIDER">;
|
@@ -5691,6 +6125,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5691
6125
|
conditional: import(".").JSONSchema;
|
5692
6126
|
})[] | undefined;
|
5693
6127
|
placeholder?: TranslationConfig | undefined;
|
6128
|
+
helperText?: TranslationConfig | undefined;
|
5694
6129
|
hideLabel?: boolean | undefined;
|
5695
6130
|
}, {
|
5696
6131
|
type: "DIVIDER";
|
@@ -5728,6 +6163,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5728
6163
|
description: string;
|
5729
6164
|
defaultMessage: string;
|
5730
6165
|
} | undefined;
|
6166
|
+
helperText?: {
|
6167
|
+
id: string;
|
6168
|
+
description: string;
|
6169
|
+
defaultMessage: string;
|
6170
|
+
} | undefined;
|
5731
6171
|
hideLabel?: boolean | undefined;
|
5732
6172
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5733
6173
|
id: z.ZodString;
|
@@ -5769,6 +6209,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5769
6209
|
description: string;
|
5770
6210
|
defaultMessage: string;
|
5771
6211
|
}>;
|
6212
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6213
|
+
id: string;
|
6214
|
+
description: string;
|
6215
|
+
defaultMessage: string;
|
6216
|
+
}>>;
|
5772
6217
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5773
6218
|
}, {
|
5774
6219
|
type: z.ZodLiteral<"LOCATION">;
|
@@ -5797,6 +6242,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5797
6242
|
conditional: import(".").JSONSchema;
|
5798
6243
|
})[] | undefined;
|
5799
6244
|
placeholder?: TranslationConfig | undefined;
|
6245
|
+
helperText?: TranslationConfig | undefined;
|
5800
6246
|
hideLabel?: boolean | undefined;
|
5801
6247
|
}, {
|
5802
6248
|
type: "LOCATION";
|
@@ -5834,6 +6280,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5834
6280
|
description: string;
|
5835
6281
|
defaultMessage: string;
|
5836
6282
|
} | undefined;
|
6283
|
+
helperText?: {
|
6284
|
+
id: string;
|
6285
|
+
description: string;
|
6286
|
+
defaultMessage: string;
|
6287
|
+
} | undefined;
|
5837
6288
|
hideLabel?: boolean | undefined;
|
5838
6289
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5839
6290
|
id: z.ZodString;
|
@@ -5875,6 +6326,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5875
6326
|
description: string;
|
5876
6327
|
defaultMessage: string;
|
5877
6328
|
}>;
|
6329
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6330
|
+
id: string;
|
6331
|
+
description: string;
|
6332
|
+
defaultMessage: string;
|
6333
|
+
}>>;
|
5878
6334
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5879
6335
|
}, {
|
5880
6336
|
type: z.ZodLiteral<"FACILITY">;
|
@@ -5903,6 +6359,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5903
6359
|
conditional: import(".").JSONSchema;
|
5904
6360
|
})[] | undefined;
|
5905
6361
|
placeholder?: TranslationConfig | undefined;
|
6362
|
+
helperText?: TranslationConfig | undefined;
|
5906
6363
|
hideLabel?: boolean | undefined;
|
5907
6364
|
}, {
|
5908
6365
|
type: "FACILITY";
|
@@ -5940,6 +6397,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5940
6397
|
description: string;
|
5941
6398
|
defaultMessage: string;
|
5942
6399
|
} | undefined;
|
6400
|
+
helperText?: {
|
6401
|
+
id: string;
|
6402
|
+
description: string;
|
6403
|
+
defaultMessage: string;
|
6404
|
+
} | undefined;
|
5943
6405
|
hideLabel?: boolean | undefined;
|
5944
6406
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5945
6407
|
id: z.ZodString;
|
@@ -5981,6 +6443,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5981
6443
|
description: string;
|
5982
6444
|
defaultMessage: string;
|
5983
6445
|
}>;
|
6446
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6447
|
+
id: string;
|
6448
|
+
description: string;
|
6449
|
+
defaultMessage: string;
|
6450
|
+
}>>;
|
5984
6451
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
5985
6452
|
}, {
|
5986
6453
|
type: z.ZodLiteral<"OFFICE">;
|
@@ -6009,6 +6476,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6009
6476
|
conditional: import(".").JSONSchema;
|
6010
6477
|
})[] | undefined;
|
6011
6478
|
placeholder?: TranslationConfig | undefined;
|
6479
|
+
helperText?: TranslationConfig | undefined;
|
6012
6480
|
hideLabel?: boolean | undefined;
|
6013
6481
|
}, {
|
6014
6482
|
type: "OFFICE";
|
@@ -6046,6 +6514,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6046
6514
|
description: string;
|
6047
6515
|
defaultMessage: string;
|
6048
6516
|
} | undefined;
|
6517
|
+
helperText?: {
|
6518
|
+
id: string;
|
6519
|
+
description: string;
|
6520
|
+
defaultMessage: string;
|
6521
|
+
} | undefined;
|
6049
6522
|
hideLabel?: boolean | undefined;
|
6050
6523
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6051
6524
|
id: z.ZodString;
|
@@ -6087,6 +6560,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6087
6560
|
description: string;
|
6088
6561
|
defaultMessage: string;
|
6089
6562
|
}>;
|
6563
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6564
|
+
id: string;
|
6565
|
+
description: string;
|
6566
|
+
defaultMessage: string;
|
6567
|
+
}>>;
|
6090
6568
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6091
6569
|
}, {
|
6092
6570
|
type: z.ZodLiteral<"SIGNATURE">;
|
@@ -6134,6 +6612,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6134
6612
|
conditional: import(".").JSONSchema;
|
6135
6613
|
})[] | undefined;
|
6136
6614
|
placeholder?: TranslationConfig | undefined;
|
6615
|
+
helperText?: TranslationConfig | undefined;
|
6137
6616
|
hideLabel?: boolean | undefined;
|
6138
6617
|
}, {
|
6139
6618
|
type: "SIGNATURE";
|
@@ -6176,6 +6655,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6176
6655
|
description: string;
|
6177
6656
|
defaultMessage: string;
|
6178
6657
|
} | undefined;
|
6658
|
+
helperText?: {
|
6659
|
+
id: string;
|
6660
|
+
description: string;
|
6661
|
+
defaultMessage: string;
|
6662
|
+
} | undefined;
|
6179
6663
|
hideLabel?: boolean | undefined;
|
6180
6664
|
configuration?: {
|
6181
6665
|
maxFileSize?: number | undefined;
|
@@ -6221,6 +6705,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6221
6705
|
description: string;
|
6222
6706
|
defaultMessage: string;
|
6223
6707
|
}>;
|
6708
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6709
|
+
id: string;
|
6710
|
+
description: string;
|
6711
|
+
defaultMessage: string;
|
6712
|
+
}>>;
|
6224
6713
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6225
6714
|
}, {
|
6226
6715
|
type: z.ZodLiteral<"EMAIL">;
|
@@ -6256,6 +6745,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6256
6745
|
conditional: import(".").JSONSchema;
|
6257
6746
|
})[] | undefined;
|
6258
6747
|
placeholder?: TranslationConfig | undefined;
|
6748
|
+
helperText?: TranslationConfig | undefined;
|
6259
6749
|
hideLabel?: boolean | undefined;
|
6260
6750
|
configuration?: {
|
6261
6751
|
maxLength?: number | undefined;
|
@@ -6296,6 +6786,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6296
6786
|
description: string;
|
6297
6787
|
defaultMessage: string;
|
6298
6788
|
} | undefined;
|
6789
|
+
helperText?: {
|
6790
|
+
id: string;
|
6791
|
+
description: string;
|
6792
|
+
defaultMessage: string;
|
6793
|
+
} | undefined;
|
6299
6794
|
hideLabel?: boolean | undefined;
|
6300
6795
|
configuration?: {
|
6301
6796
|
maxLength?: number | undefined;
|
@@ -6340,6 +6835,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6340
6835
|
description: string;
|
6341
6836
|
defaultMessage: string;
|
6342
6837
|
}>;
|
6838
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
6839
|
+
id: string;
|
6840
|
+
description: string;
|
6841
|
+
defaultMessage: string;
|
6842
|
+
}>>;
|
6343
6843
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6344
6844
|
}, {
|
6345
6845
|
type: z.ZodLiteral<"FILE_WITH_OPTIONS">;
|
@@ -6403,6 +6903,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6403
6903
|
conditional: import(".").JSONSchema;
|
6404
6904
|
})[] | undefined;
|
6405
6905
|
placeholder?: TranslationConfig | undefined;
|
6906
|
+
helperText?: TranslationConfig | undefined;
|
6406
6907
|
hideLabel?: boolean | undefined;
|
6407
6908
|
}, {
|
6408
6909
|
type: "FILE_WITH_OPTIONS";
|
@@ -6448,6 +6949,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6448
6949
|
description: string;
|
6449
6950
|
defaultMessage: string;
|
6450
6951
|
} | undefined;
|
6952
|
+
helperText?: {
|
6953
|
+
id: string;
|
6954
|
+
description: string;
|
6955
|
+
defaultMessage: string;
|
6956
|
+
} | undefined;
|
6451
6957
|
hideLabel?: boolean | undefined;
|
6452
6958
|
configuration?: {
|
6453
6959
|
maxFileSize?: number | undefined;
|
@@ -6493,6 +6999,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6493
6999
|
description: string;
|
6494
7000
|
defaultMessage: string;
|
6495
7001
|
}>;
|
7002
|
+
helperText: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7003
|
+
id: string;
|
7004
|
+
description: string;
|
7005
|
+
defaultMessage: string;
|
7006
|
+
}>>;
|
6496
7007
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
6497
7008
|
}, {
|
6498
7009
|
type: z.ZodLiteral<"DATA">;
|
@@ -6596,6 +7107,7 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6596
7107
|
conditional: import(".").JSONSchema;
|
6597
7108
|
})[] | undefined;
|
6598
7109
|
placeholder?: TranslationConfig | undefined;
|
7110
|
+
helperText?: TranslationConfig | undefined;
|
6599
7111
|
hideLabel?: boolean | undefined;
|
6600
7112
|
}, {
|
6601
7113
|
type: "DATA";
|
@@ -6654,6 +7166,11 @@ export declare const FieldConfig: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6654
7166
|
description: string;
|
6655
7167
|
defaultMessage: string;
|
6656
7168
|
} | undefined;
|
7169
|
+
helperText?: {
|
7170
|
+
id: string;
|
7171
|
+
description: string;
|
7172
|
+
defaultMessage: string;
|
7173
|
+
} | undefined;
|
6657
7174
|
hideLabel?: boolean | undefined;
|
6658
7175
|
}>]>;
|
6659
7176
|
export type SelectField = z.infer<typeof Select>;
|