@opencrvs/toolkit 1.8.0-rc.feef45c → 1.8.0-rc.ff0a1b5
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 +679 -332
- package/dist/commons/events/ActionConfig.d.ts +4879 -1232
- 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 +34 -36
- package/dist/commons/events/Draft.d.ts +24 -26
- package/dist/commons/events/EventConfig.d.ts +2711 -967
- package/dist/commons/events/EventDocument.d.ts +241 -312
- package/dist/commons/events/EventIndex.d.ts +817 -279
- package/dist/commons/events/EventMetadata.d.ts +263 -11
- package/dist/commons/events/FieldConfig.d.ts +267 -3
- 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 +2279 -629
- package/dist/commons/events/PageConfig.d.ts +406 -0
- package/dist/commons/events/SummaryConfig.d.ts +17 -0
- package/dist/commons/events/WorkqueueConfig.d.ts +1222 -8
- package/dist/commons/events/defineConfig.d.ts +283 -2
- package/dist/commons/events/event.d.ts +3 -1
- package/dist/commons/events/field.d.ts +3 -3
- package/dist/commons/events/test.utils.d.ts +7 -7
- package/dist/commons/events/utils.d.ts +193 -21
- package/dist/events/index.js +1141 -774
- package/dist/scopes/index.d.ts +70 -1
- package/dist/scopes/index.js +130 -0
- package/package.json +1 -1
@@ -912,6 +912,137 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
912
912
|
defaultMessage: string;
|
913
913
|
}>;
|
914
914
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
915
|
+
}, {
|
916
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
917
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
918
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
919
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
920
|
+
id: string;
|
921
|
+
description: string;
|
922
|
+
defaultMessage: string;
|
923
|
+
}>>;
|
924
|
+
}, "strip", z.ZodTypeAny, {
|
925
|
+
notice?: TranslationConfig | undefined;
|
926
|
+
}, {
|
927
|
+
notice?: {
|
928
|
+
id: string;
|
929
|
+
description: string;
|
930
|
+
defaultMessage: string;
|
931
|
+
} | undefined;
|
932
|
+
}>>;
|
933
|
+
}>, "strip", z.ZodTypeAny, {
|
934
|
+
type: "DATE_RANGE";
|
935
|
+
id: string;
|
936
|
+
label: TranslationConfig;
|
937
|
+
parent?: {
|
938
|
+
_fieldId?: string | undefined;
|
939
|
+
} | undefined;
|
940
|
+
validation?: {
|
941
|
+
message: TranslationConfig;
|
942
|
+
validator: import(".").JSONSchema;
|
943
|
+
}[] | undefined;
|
944
|
+
required?: boolean | undefined;
|
945
|
+
defaultValue?: string | [string, string] | undefined;
|
946
|
+
conditionals?: ({
|
947
|
+
type: "SHOW";
|
948
|
+
conditional: import(".").JSONSchema;
|
949
|
+
} | {
|
950
|
+
type: "ENABLE";
|
951
|
+
conditional: import(".").JSONSchema;
|
952
|
+
} | {
|
953
|
+
type: "DISPLAY_ON_REVIEW";
|
954
|
+
conditional: import(".").JSONSchema;
|
955
|
+
})[] | undefined;
|
956
|
+
placeholder?: TranslationConfig | undefined;
|
957
|
+
hideLabel?: boolean | undefined;
|
958
|
+
configuration?: {
|
959
|
+
notice?: TranslationConfig | undefined;
|
960
|
+
} | undefined;
|
961
|
+
}, {
|
962
|
+
type: "DATE_RANGE";
|
963
|
+
id: string;
|
964
|
+
label: {
|
965
|
+
id: string;
|
966
|
+
description: string;
|
967
|
+
defaultMessage: string;
|
968
|
+
};
|
969
|
+
parent?: {
|
970
|
+
_fieldId?: string | undefined;
|
971
|
+
} | undefined;
|
972
|
+
validation?: {
|
973
|
+
message: {
|
974
|
+
id: string;
|
975
|
+
description: string;
|
976
|
+
defaultMessage: string;
|
977
|
+
};
|
978
|
+
validator: import(".").JSONSchema;
|
979
|
+
}[] | undefined;
|
980
|
+
required?: boolean | undefined;
|
981
|
+
defaultValue?: string | [string, string] | undefined;
|
982
|
+
conditionals?: ({
|
983
|
+
type: "SHOW";
|
984
|
+
conditional: import(".").JSONSchema;
|
985
|
+
} | {
|
986
|
+
type: "ENABLE";
|
987
|
+
conditional: import(".").JSONSchema;
|
988
|
+
} | {
|
989
|
+
type: "DISPLAY_ON_REVIEW";
|
990
|
+
conditional: import(".").JSONSchema;
|
991
|
+
})[] | undefined;
|
992
|
+
placeholder?: {
|
993
|
+
id: string;
|
994
|
+
description: string;
|
995
|
+
defaultMessage: string;
|
996
|
+
} | undefined;
|
997
|
+
hideLabel?: boolean | undefined;
|
998
|
+
configuration?: {
|
999
|
+
notice?: {
|
1000
|
+
id: string;
|
1001
|
+
description: string;
|
1002
|
+
defaultMessage: string;
|
1003
|
+
} | undefined;
|
1004
|
+
} | undefined;
|
1005
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1006
|
+
id: z.ZodString;
|
1007
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
1008
|
+
parent: z.ZodOptional<z.ZodObject<{
|
1009
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
1010
|
+
}, "strip", z.ZodTypeAny, {
|
1011
|
+
_fieldId?: string | undefined;
|
1012
|
+
}, {
|
1013
|
+
_fieldId?: string | undefined;
|
1014
|
+
}>>;
|
1015
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
1016
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
1017
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1018
|
+
id: string;
|
1019
|
+
description: string;
|
1020
|
+
defaultMessage: string;
|
1021
|
+
}>>;
|
1022
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
1023
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
1024
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1025
|
+
id: string;
|
1026
|
+
description: string;
|
1027
|
+
defaultMessage: string;
|
1028
|
+
}>;
|
1029
|
+
}, "strip", z.ZodTypeAny, {
|
1030
|
+
message: TranslationConfig;
|
1031
|
+
validator: import(".").JSONSchema;
|
1032
|
+
}, {
|
1033
|
+
message: {
|
1034
|
+
id: string;
|
1035
|
+
description: string;
|
1036
|
+
defaultMessage: string;
|
1037
|
+
};
|
1038
|
+
validator: import(".").JSONSchema;
|
1039
|
+
}>, "many">>>;
|
1040
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
1041
|
+
id: string;
|
1042
|
+
description: string;
|
1043
|
+
defaultMessage: string;
|
1044
|
+
}>;
|
1045
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
915
1046
|
}, {
|
916
1047
|
type: z.ZodLiteral<"PARAGRAPH">;
|
917
1048
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -3306,6 +3437,34 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
3306
3437
|
configuration?: {
|
3307
3438
|
notice?: TranslationConfig | undefined;
|
3308
3439
|
} | undefined;
|
3440
|
+
} | {
|
3441
|
+
type: "DATE_RANGE";
|
3442
|
+
id: string;
|
3443
|
+
label: TranslationConfig;
|
3444
|
+
parent?: {
|
3445
|
+
_fieldId?: string | undefined;
|
3446
|
+
} | undefined;
|
3447
|
+
validation?: {
|
3448
|
+
message: TranslationConfig;
|
3449
|
+
validator: import(".").JSONSchema;
|
3450
|
+
}[] | undefined;
|
3451
|
+
required?: boolean | undefined;
|
3452
|
+
defaultValue?: string | [string, string] | undefined;
|
3453
|
+
conditionals?: ({
|
3454
|
+
type: "SHOW";
|
3455
|
+
conditional: import(".").JSONSchema;
|
3456
|
+
} | {
|
3457
|
+
type: "ENABLE";
|
3458
|
+
conditional: import(".").JSONSchema;
|
3459
|
+
} | {
|
3460
|
+
type: "DISPLAY_ON_REVIEW";
|
3461
|
+
conditional: import(".").JSONSchema;
|
3462
|
+
})[] | undefined;
|
3463
|
+
placeholder?: TranslationConfig | undefined;
|
3464
|
+
hideLabel?: boolean | undefined;
|
3465
|
+
configuration?: {
|
3466
|
+
notice?: TranslationConfig | undefined;
|
3467
|
+
} | undefined;
|
3309
3468
|
} | {
|
3310
3469
|
type: "PARAGRAPH";
|
3311
3470
|
id: string;
|
@@ -4095,7 +4254,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
4095
4254
|
} | undefined;
|
4096
4255
|
} | undefined;
|
4097
4256
|
} | {
|
4098
|
-
type: "
|
4257
|
+
type: "DATE_RANGE";
|
4099
4258
|
id: string;
|
4100
4259
|
label: {
|
4101
4260
|
id: string;
|
@@ -4114,7 +4273,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
4114
4273
|
validator: import(".").JSONSchema;
|
4115
4274
|
}[] | undefined;
|
4116
4275
|
required?: boolean | undefined;
|
4117
|
-
defaultValue?: string | undefined;
|
4276
|
+
defaultValue?: string | [string, string] | undefined;
|
4118
4277
|
conditionals?: ({
|
4119
4278
|
type: "SHOW";
|
4120
4279
|
conditional: import(".").JSONSchema;
|
@@ -4132,107 +4291,15 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
4132
4291
|
} | undefined;
|
4133
4292
|
hideLabel?: boolean | undefined;
|
4134
4293
|
configuration?: {
|
4135
|
-
|
4136
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
4137
|
-
} | undefined;
|
4138
|
-
} | undefined;
|
4139
|
-
} | {
|
4140
|
-
type: "PAGE_HEADER";
|
4141
|
-
id: string;
|
4142
|
-
label: {
|
4143
|
-
id: string;
|
4144
|
-
description: string;
|
4145
|
-
defaultMessage: string;
|
4146
|
-
};
|
4147
|
-
parent?: {
|
4148
|
-
_fieldId?: string | undefined;
|
4149
|
-
} | undefined;
|
4150
|
-
validation?: {
|
4151
|
-
message: {
|
4152
|
-
id: string;
|
4153
|
-
description: string;
|
4154
|
-
defaultMessage: string;
|
4155
|
-
};
|
4156
|
-
validator: import(".").JSONSchema;
|
4157
|
-
}[] | undefined;
|
4158
|
-
required?: boolean | undefined;
|
4159
|
-
defaultValue?: string | undefined;
|
4160
|
-
conditionals?: ({
|
4161
|
-
type: "SHOW";
|
4162
|
-
conditional: import(".").JSONSchema;
|
4163
|
-
} | {
|
4164
|
-
type: "ENABLE";
|
4165
|
-
conditional: import(".").JSONSchema;
|
4166
|
-
} | {
|
4167
|
-
type: "DISPLAY_ON_REVIEW";
|
4168
|
-
conditional: import(".").JSONSchema;
|
4169
|
-
})[] | undefined;
|
4170
|
-
placeholder?: {
|
4171
|
-
id: string;
|
4172
|
-
description: string;
|
4173
|
-
defaultMessage: string;
|
4174
|
-
} | undefined;
|
4175
|
-
hideLabel?: boolean | undefined;
|
4176
|
-
} | {
|
4177
|
-
type: "FILE";
|
4178
|
-
id: string;
|
4179
|
-
label: {
|
4180
|
-
id: string;
|
4181
|
-
description: string;
|
4182
|
-
defaultMessage: string;
|
4183
|
-
};
|
4184
|
-
parent?: {
|
4185
|
-
_fieldId?: string | undefined;
|
4186
|
-
} | undefined;
|
4187
|
-
validation?: {
|
4188
|
-
message: {
|
4189
|
-
id: string;
|
4190
|
-
description: string;
|
4191
|
-
defaultMessage: string;
|
4192
|
-
};
|
4193
|
-
validator: import(".").JSONSchema;
|
4194
|
-
}[] | undefined;
|
4195
|
-
required?: boolean | undefined;
|
4196
|
-
defaultValue?: string | number | boolean | undefined;
|
4197
|
-
conditionals?: ({
|
4198
|
-
type: "SHOW";
|
4199
|
-
conditional: import(".").JSONSchema;
|
4200
|
-
} | {
|
4201
|
-
type: "ENABLE";
|
4202
|
-
conditional: import(".").JSONSchema;
|
4203
|
-
} | {
|
4204
|
-
type: "DISPLAY_ON_REVIEW";
|
4205
|
-
conditional: import(".").JSONSchema;
|
4206
|
-
})[] | undefined;
|
4207
|
-
placeholder?: {
|
4208
|
-
id: string;
|
4209
|
-
description: string;
|
4210
|
-
defaultMessage: string;
|
4211
|
-
} | undefined;
|
4212
|
-
hideLabel?: boolean | undefined;
|
4213
|
-
configuration?: {
|
4214
|
-
maxFileSize?: number | undefined;
|
4215
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
4216
|
-
style?: {
|
4217
|
-
width?: "full" | "auto" | undefined;
|
4218
|
-
} | undefined;
|
4219
|
-
fileName?: {
|
4294
|
+
notice?: {
|
4220
4295
|
id: string;
|
4221
4296
|
description: string;
|
4222
4297
|
defaultMessage: string;
|
4223
4298
|
} | undefined;
|
4224
4299
|
} | undefined;
|
4225
4300
|
} | {
|
4226
|
-
type: "
|
4301
|
+
type: "PARAGRAPH";
|
4227
4302
|
id: string;
|
4228
|
-
options: {
|
4229
|
-
value: string;
|
4230
|
-
label: {
|
4231
|
-
id: string;
|
4232
|
-
description: string;
|
4233
|
-
defaultMessage: string;
|
4234
|
-
};
|
4235
|
-
}[];
|
4236
4303
|
label: {
|
4237
4304
|
id: string;
|
4238
4305
|
description: string;
|
@@ -4269,22 +4336,158 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
4269
4336
|
hideLabel?: boolean | undefined;
|
4270
4337
|
configuration?: {
|
4271
4338
|
styles?: {
|
4272
|
-
|
4339
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
4273
4340
|
} | undefined;
|
4274
4341
|
} | undefined;
|
4275
4342
|
} | {
|
4276
|
-
type: "
|
4343
|
+
type: "PAGE_HEADER";
|
4277
4344
|
id: string;
|
4278
4345
|
label: {
|
4279
4346
|
id: string;
|
4280
4347
|
description: string;
|
4281
4348
|
defaultMessage: string;
|
4282
4349
|
};
|
4283
|
-
|
4284
|
-
|
4285
|
-
|
4286
|
-
|
4287
|
-
|
4350
|
+
parent?: {
|
4351
|
+
_fieldId?: string | undefined;
|
4352
|
+
} | undefined;
|
4353
|
+
validation?: {
|
4354
|
+
message: {
|
4355
|
+
id: string;
|
4356
|
+
description: string;
|
4357
|
+
defaultMessage: string;
|
4358
|
+
};
|
4359
|
+
validator: import(".").JSONSchema;
|
4360
|
+
}[] | undefined;
|
4361
|
+
required?: boolean | undefined;
|
4362
|
+
defaultValue?: string | undefined;
|
4363
|
+
conditionals?: ({
|
4364
|
+
type: "SHOW";
|
4365
|
+
conditional: import(".").JSONSchema;
|
4366
|
+
} | {
|
4367
|
+
type: "ENABLE";
|
4368
|
+
conditional: import(".").JSONSchema;
|
4369
|
+
} | {
|
4370
|
+
type: "DISPLAY_ON_REVIEW";
|
4371
|
+
conditional: import(".").JSONSchema;
|
4372
|
+
})[] | undefined;
|
4373
|
+
placeholder?: {
|
4374
|
+
id: string;
|
4375
|
+
description: string;
|
4376
|
+
defaultMessage: string;
|
4377
|
+
} | undefined;
|
4378
|
+
hideLabel?: boolean | undefined;
|
4379
|
+
} | {
|
4380
|
+
type: "FILE";
|
4381
|
+
id: string;
|
4382
|
+
label: {
|
4383
|
+
id: string;
|
4384
|
+
description: string;
|
4385
|
+
defaultMessage: string;
|
4386
|
+
};
|
4387
|
+
parent?: {
|
4388
|
+
_fieldId?: string | undefined;
|
4389
|
+
} | undefined;
|
4390
|
+
validation?: {
|
4391
|
+
message: {
|
4392
|
+
id: string;
|
4393
|
+
description: string;
|
4394
|
+
defaultMessage: string;
|
4395
|
+
};
|
4396
|
+
validator: import(".").JSONSchema;
|
4397
|
+
}[] | undefined;
|
4398
|
+
required?: boolean | undefined;
|
4399
|
+
defaultValue?: string | number | boolean | undefined;
|
4400
|
+
conditionals?: ({
|
4401
|
+
type: "SHOW";
|
4402
|
+
conditional: import(".").JSONSchema;
|
4403
|
+
} | {
|
4404
|
+
type: "ENABLE";
|
4405
|
+
conditional: import(".").JSONSchema;
|
4406
|
+
} | {
|
4407
|
+
type: "DISPLAY_ON_REVIEW";
|
4408
|
+
conditional: import(".").JSONSchema;
|
4409
|
+
})[] | undefined;
|
4410
|
+
placeholder?: {
|
4411
|
+
id: string;
|
4412
|
+
description: string;
|
4413
|
+
defaultMessage: string;
|
4414
|
+
} | undefined;
|
4415
|
+
hideLabel?: boolean | undefined;
|
4416
|
+
configuration?: {
|
4417
|
+
maxFileSize?: number | undefined;
|
4418
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
4419
|
+
style?: {
|
4420
|
+
width?: "full" | "auto" | undefined;
|
4421
|
+
} | undefined;
|
4422
|
+
fileName?: {
|
4423
|
+
id: string;
|
4424
|
+
description: string;
|
4425
|
+
defaultMessage: string;
|
4426
|
+
} | undefined;
|
4427
|
+
} | undefined;
|
4428
|
+
} | {
|
4429
|
+
type: "RADIO_GROUP";
|
4430
|
+
id: string;
|
4431
|
+
options: {
|
4432
|
+
value: string;
|
4433
|
+
label: {
|
4434
|
+
id: string;
|
4435
|
+
description: string;
|
4436
|
+
defaultMessage: string;
|
4437
|
+
};
|
4438
|
+
}[];
|
4439
|
+
label: {
|
4440
|
+
id: string;
|
4441
|
+
description: string;
|
4442
|
+
defaultMessage: string;
|
4443
|
+
};
|
4444
|
+
parent?: {
|
4445
|
+
_fieldId?: string | undefined;
|
4446
|
+
} | undefined;
|
4447
|
+
validation?: {
|
4448
|
+
message: {
|
4449
|
+
id: string;
|
4450
|
+
description: string;
|
4451
|
+
defaultMessage: string;
|
4452
|
+
};
|
4453
|
+
validator: import(".").JSONSchema;
|
4454
|
+
}[] | undefined;
|
4455
|
+
required?: boolean | undefined;
|
4456
|
+
defaultValue?: string | undefined;
|
4457
|
+
conditionals?: ({
|
4458
|
+
type: "SHOW";
|
4459
|
+
conditional: import(".").JSONSchema;
|
4460
|
+
} | {
|
4461
|
+
type: "ENABLE";
|
4462
|
+
conditional: import(".").JSONSchema;
|
4463
|
+
} | {
|
4464
|
+
type: "DISPLAY_ON_REVIEW";
|
4465
|
+
conditional: import(".").JSONSchema;
|
4466
|
+
})[] | undefined;
|
4467
|
+
placeholder?: {
|
4468
|
+
id: string;
|
4469
|
+
description: string;
|
4470
|
+
defaultMessage: string;
|
4471
|
+
} | undefined;
|
4472
|
+
hideLabel?: boolean | undefined;
|
4473
|
+
configuration?: {
|
4474
|
+
styles?: {
|
4475
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
4476
|
+
} | undefined;
|
4477
|
+
} | undefined;
|
4478
|
+
} | {
|
4479
|
+
type: "BULLET_LIST";
|
4480
|
+
id: string;
|
4481
|
+
label: {
|
4482
|
+
id: string;
|
4483
|
+
description: string;
|
4484
|
+
defaultMessage: string;
|
4485
|
+
};
|
4486
|
+
items: {
|
4487
|
+
id: string;
|
4488
|
+
description: string;
|
4489
|
+
defaultMessage: string;
|
4490
|
+
}[];
|
4288
4491
|
parent?: {
|
4289
4492
|
_fieldId?: string | undefined;
|
4290
4493
|
} | undefined;
|
@@ -4979,6 +5182,34 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
4979
5182
|
configuration?: {
|
4980
5183
|
notice?: TranslationConfig | undefined;
|
4981
5184
|
} | undefined;
|
5185
|
+
} | {
|
5186
|
+
type: "DATE_RANGE";
|
5187
|
+
id: string;
|
5188
|
+
label: TranslationConfig;
|
5189
|
+
parent?: {
|
5190
|
+
_fieldId?: string | undefined;
|
5191
|
+
} | undefined;
|
5192
|
+
validation?: {
|
5193
|
+
message: TranslationConfig;
|
5194
|
+
validator: import(".").JSONSchema;
|
5195
|
+
}[] | undefined;
|
5196
|
+
required?: boolean | undefined;
|
5197
|
+
defaultValue?: string | [string, string] | undefined;
|
5198
|
+
conditionals?: ({
|
5199
|
+
type: "SHOW";
|
5200
|
+
conditional: import(".").JSONSchema;
|
5201
|
+
} | {
|
5202
|
+
type: "ENABLE";
|
5203
|
+
conditional: import(".").JSONSchema;
|
5204
|
+
} | {
|
5205
|
+
type: "DISPLAY_ON_REVIEW";
|
5206
|
+
conditional: import(".").JSONSchema;
|
5207
|
+
})[] | undefined;
|
5208
|
+
placeholder?: TranslationConfig | undefined;
|
5209
|
+
hideLabel?: boolean | undefined;
|
5210
|
+
configuration?: {
|
5211
|
+
notice?: TranslationConfig | undefined;
|
5212
|
+
} | undefined;
|
4982
5213
|
} | {
|
4983
5214
|
type: "PARAGRAPH";
|
4984
5215
|
id: string;
|
@@ -5775,7 +6006,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5775
6006
|
} | undefined;
|
5776
6007
|
} | undefined;
|
5777
6008
|
} | {
|
5778
|
-
type: "
|
6009
|
+
type: "DATE_RANGE";
|
5779
6010
|
id: string;
|
5780
6011
|
label: {
|
5781
6012
|
id: string;
|
@@ -5794,7 +6025,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5794
6025
|
validator: import(".").JSONSchema;
|
5795
6026
|
}[] | undefined;
|
5796
6027
|
required?: boolean | undefined;
|
5797
|
-
defaultValue?: string | undefined;
|
6028
|
+
defaultValue?: string | [string, string] | undefined;
|
5798
6029
|
conditionals?: ({
|
5799
6030
|
type: "SHOW";
|
5800
6031
|
conditional: import(".").JSONSchema;
|
@@ -5812,49 +6043,14 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5812
6043
|
} | undefined;
|
5813
6044
|
hideLabel?: boolean | undefined;
|
5814
6045
|
configuration?: {
|
5815
|
-
|
5816
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5817
|
-
} | undefined;
|
5818
|
-
} | undefined;
|
5819
|
-
} | {
|
5820
|
-
type: "PAGE_HEADER";
|
5821
|
-
id: string;
|
5822
|
-
label: {
|
5823
|
-
id: string;
|
5824
|
-
description: string;
|
5825
|
-
defaultMessage: string;
|
5826
|
-
};
|
5827
|
-
parent?: {
|
5828
|
-
_fieldId?: string | undefined;
|
5829
|
-
} | undefined;
|
5830
|
-
validation?: {
|
5831
|
-
message: {
|
6046
|
+
notice?: {
|
5832
6047
|
id: string;
|
5833
6048
|
description: string;
|
5834
6049
|
defaultMessage: string;
|
5835
|
-
};
|
5836
|
-
validator: import(".").JSONSchema;
|
5837
|
-
}[] | undefined;
|
5838
|
-
required?: boolean | undefined;
|
5839
|
-
defaultValue?: string | undefined;
|
5840
|
-
conditionals?: ({
|
5841
|
-
type: "SHOW";
|
5842
|
-
conditional: import(".").JSONSchema;
|
5843
|
-
} | {
|
5844
|
-
type: "ENABLE";
|
5845
|
-
conditional: import(".").JSONSchema;
|
5846
|
-
} | {
|
5847
|
-
type: "DISPLAY_ON_REVIEW";
|
5848
|
-
conditional: import(".").JSONSchema;
|
5849
|
-
})[] | undefined;
|
5850
|
-
placeholder?: {
|
5851
|
-
id: string;
|
5852
|
-
description: string;
|
5853
|
-
defaultMessage: string;
|
6050
|
+
} | undefined;
|
5854
6051
|
} | undefined;
|
5855
|
-
hideLabel?: boolean | undefined;
|
5856
6052
|
} | {
|
5857
|
-
type: "
|
6053
|
+
type: "PARAGRAPH";
|
5858
6054
|
id: string;
|
5859
6055
|
label: {
|
5860
6056
|
id: string;
|
@@ -5873,7 +6069,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5873
6069
|
validator: import(".").JSONSchema;
|
5874
6070
|
}[] | undefined;
|
5875
6071
|
required?: boolean | undefined;
|
5876
|
-
defaultValue?: string |
|
6072
|
+
defaultValue?: string | undefined;
|
5877
6073
|
conditionals?: ({
|
5878
6074
|
type: "SHOW";
|
5879
6075
|
conditional: import(".").JSONSchema;
|
@@ -5891,28 +6087,13 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5891
6087
|
} | undefined;
|
5892
6088
|
hideLabel?: boolean | undefined;
|
5893
6089
|
configuration?: {
|
5894
|
-
|
5895
|
-
|
5896
|
-
style?: {
|
5897
|
-
width?: "full" | "auto" | undefined;
|
5898
|
-
} | undefined;
|
5899
|
-
fileName?: {
|
5900
|
-
id: string;
|
5901
|
-
description: string;
|
5902
|
-
defaultMessage: string;
|
6090
|
+
styles?: {
|
6091
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
5903
6092
|
} | undefined;
|
5904
6093
|
} | undefined;
|
5905
6094
|
} | {
|
5906
|
-
type: "
|
6095
|
+
type: "PAGE_HEADER";
|
5907
6096
|
id: string;
|
5908
|
-
options: {
|
5909
|
-
value: string;
|
5910
|
-
label: {
|
5911
|
-
id: string;
|
5912
|
-
description: string;
|
5913
|
-
defaultMessage: string;
|
5914
|
-
};
|
5915
|
-
}[];
|
5916
6097
|
label: {
|
5917
6098
|
id: string;
|
5918
6099
|
description: string;
|
@@ -5947,24 +6128,14 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5947
6128
|
defaultMessage: string;
|
5948
6129
|
} | undefined;
|
5949
6130
|
hideLabel?: boolean | undefined;
|
5950
|
-
configuration?: {
|
5951
|
-
styles?: {
|
5952
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
5953
|
-
} | undefined;
|
5954
|
-
} | undefined;
|
5955
6131
|
} | {
|
5956
|
-
type: "
|
6132
|
+
type: "FILE";
|
5957
6133
|
id: string;
|
5958
6134
|
label: {
|
5959
6135
|
id: string;
|
5960
6136
|
description: string;
|
5961
6137
|
defaultMessage: string;
|
5962
6138
|
};
|
5963
|
-
items: {
|
5964
|
-
id: string;
|
5965
|
-
description: string;
|
5966
|
-
defaultMessage: string;
|
5967
|
-
}[];
|
5968
6139
|
parent?: {
|
5969
6140
|
_fieldId?: string | undefined;
|
5970
6141
|
} | undefined;
|
@@ -5977,7 +6148,7 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5977
6148
|
validator: import(".").JSONSchema;
|
5978
6149
|
}[] | undefined;
|
5979
6150
|
required?: boolean | undefined;
|
5980
|
-
defaultValue?: string | undefined;
|
6151
|
+
defaultValue?: string | number | boolean | undefined;
|
5981
6152
|
conditionals?: ({
|
5982
6153
|
type: "SHOW";
|
5983
6154
|
conditional: import(".").JSONSchema;
|
@@ -5995,12 +6166,116 @@ export declare const DeclarationFormConfig: z.ZodObject<{
|
|
5995
6166
|
} | undefined;
|
5996
6167
|
hideLabel?: boolean | undefined;
|
5997
6168
|
configuration?: {
|
5998
|
-
|
5999
|
-
|
6169
|
+
maxFileSize?: number | undefined;
|
6170
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
6171
|
+
style?: {
|
6172
|
+
width?: "full" | "auto" | undefined;
|
6173
|
+
} | undefined;
|
6174
|
+
fileName?: {
|
6175
|
+
id: string;
|
6176
|
+
description: string;
|
6177
|
+
defaultMessage: string;
|
6000
6178
|
} | undefined;
|
6001
6179
|
} | undefined;
|
6002
6180
|
} | {
|
6003
|
-
type: "
|
6181
|
+
type: "RADIO_GROUP";
|
6182
|
+
id: string;
|
6183
|
+
options: {
|
6184
|
+
value: string;
|
6185
|
+
label: {
|
6186
|
+
id: string;
|
6187
|
+
description: string;
|
6188
|
+
defaultMessage: string;
|
6189
|
+
};
|
6190
|
+
}[];
|
6191
|
+
label: {
|
6192
|
+
id: string;
|
6193
|
+
description: string;
|
6194
|
+
defaultMessage: string;
|
6195
|
+
};
|
6196
|
+
parent?: {
|
6197
|
+
_fieldId?: string | undefined;
|
6198
|
+
} | undefined;
|
6199
|
+
validation?: {
|
6200
|
+
message: {
|
6201
|
+
id: string;
|
6202
|
+
description: string;
|
6203
|
+
defaultMessage: string;
|
6204
|
+
};
|
6205
|
+
validator: import(".").JSONSchema;
|
6206
|
+
}[] | undefined;
|
6207
|
+
required?: boolean | undefined;
|
6208
|
+
defaultValue?: string | undefined;
|
6209
|
+
conditionals?: ({
|
6210
|
+
type: "SHOW";
|
6211
|
+
conditional: import(".").JSONSchema;
|
6212
|
+
} | {
|
6213
|
+
type: "ENABLE";
|
6214
|
+
conditional: import(".").JSONSchema;
|
6215
|
+
} | {
|
6216
|
+
type: "DISPLAY_ON_REVIEW";
|
6217
|
+
conditional: import(".").JSONSchema;
|
6218
|
+
})[] | undefined;
|
6219
|
+
placeholder?: {
|
6220
|
+
id: string;
|
6221
|
+
description: string;
|
6222
|
+
defaultMessage: string;
|
6223
|
+
} | undefined;
|
6224
|
+
hideLabel?: boolean | undefined;
|
6225
|
+
configuration?: {
|
6226
|
+
styles?: {
|
6227
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
6228
|
+
} | undefined;
|
6229
|
+
} | undefined;
|
6230
|
+
} | {
|
6231
|
+
type: "BULLET_LIST";
|
6232
|
+
id: string;
|
6233
|
+
label: {
|
6234
|
+
id: string;
|
6235
|
+
description: string;
|
6236
|
+
defaultMessage: string;
|
6237
|
+
};
|
6238
|
+
items: {
|
6239
|
+
id: string;
|
6240
|
+
description: string;
|
6241
|
+
defaultMessage: string;
|
6242
|
+
}[];
|
6243
|
+
parent?: {
|
6244
|
+
_fieldId?: string | undefined;
|
6245
|
+
} | undefined;
|
6246
|
+
validation?: {
|
6247
|
+
message: {
|
6248
|
+
id: string;
|
6249
|
+
description: string;
|
6250
|
+
defaultMessage: string;
|
6251
|
+
};
|
6252
|
+
validator: import(".").JSONSchema;
|
6253
|
+
}[] | undefined;
|
6254
|
+
required?: boolean | undefined;
|
6255
|
+
defaultValue?: string | undefined;
|
6256
|
+
conditionals?: ({
|
6257
|
+
type: "SHOW";
|
6258
|
+
conditional: import(".").JSONSchema;
|
6259
|
+
} | {
|
6260
|
+
type: "ENABLE";
|
6261
|
+
conditional: import(".").JSONSchema;
|
6262
|
+
} | {
|
6263
|
+
type: "DISPLAY_ON_REVIEW";
|
6264
|
+
conditional: import(".").JSONSchema;
|
6265
|
+
})[] | undefined;
|
6266
|
+
placeholder?: {
|
6267
|
+
id: string;
|
6268
|
+
description: string;
|
6269
|
+
defaultMessage: string;
|
6270
|
+
} | undefined;
|
6271
|
+
hideLabel?: boolean | undefined;
|
6272
|
+
configuration?: {
|
6273
|
+
styles?: {
|
6274
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
6275
|
+
} | undefined;
|
6276
|
+
} | undefined;
|
6277
|
+
} | {
|
6278
|
+
type: "SELECT";
|
6004
6279
|
id: string;
|
6005
6280
|
options: {
|
6006
6281
|
value: string;
|
@@ -7363,6 +7638,137 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
7363
7638
|
defaultMessage: string;
|
7364
7639
|
}>;
|
7365
7640
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7641
|
+
}, {
|
7642
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
7643
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
7644
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
7645
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7646
|
+
id: string;
|
7647
|
+
description: string;
|
7648
|
+
defaultMessage: string;
|
7649
|
+
}>>;
|
7650
|
+
}, "strip", z.ZodTypeAny, {
|
7651
|
+
notice?: TranslationConfig | undefined;
|
7652
|
+
}, {
|
7653
|
+
notice?: {
|
7654
|
+
id: string;
|
7655
|
+
description: string;
|
7656
|
+
defaultMessage: string;
|
7657
|
+
} | undefined;
|
7658
|
+
}>>;
|
7659
|
+
}>, "strip", z.ZodTypeAny, {
|
7660
|
+
type: "DATE_RANGE";
|
7661
|
+
id: string;
|
7662
|
+
label: TranslationConfig;
|
7663
|
+
parent?: {
|
7664
|
+
_fieldId?: string | undefined;
|
7665
|
+
} | undefined;
|
7666
|
+
validation?: {
|
7667
|
+
message: TranslationConfig;
|
7668
|
+
validator: import(".").JSONSchema;
|
7669
|
+
}[] | undefined;
|
7670
|
+
required?: boolean | undefined;
|
7671
|
+
defaultValue?: string | [string, string] | undefined;
|
7672
|
+
conditionals?: ({
|
7673
|
+
type: "SHOW";
|
7674
|
+
conditional: import(".").JSONSchema;
|
7675
|
+
} | {
|
7676
|
+
type: "ENABLE";
|
7677
|
+
conditional: import(".").JSONSchema;
|
7678
|
+
} | {
|
7679
|
+
type: "DISPLAY_ON_REVIEW";
|
7680
|
+
conditional: import(".").JSONSchema;
|
7681
|
+
})[] | undefined;
|
7682
|
+
placeholder?: TranslationConfig | undefined;
|
7683
|
+
hideLabel?: boolean | undefined;
|
7684
|
+
configuration?: {
|
7685
|
+
notice?: TranslationConfig | undefined;
|
7686
|
+
} | undefined;
|
7687
|
+
}, {
|
7688
|
+
type: "DATE_RANGE";
|
7689
|
+
id: string;
|
7690
|
+
label: {
|
7691
|
+
id: string;
|
7692
|
+
description: string;
|
7693
|
+
defaultMessage: string;
|
7694
|
+
};
|
7695
|
+
parent?: {
|
7696
|
+
_fieldId?: string | undefined;
|
7697
|
+
} | undefined;
|
7698
|
+
validation?: {
|
7699
|
+
message: {
|
7700
|
+
id: string;
|
7701
|
+
description: string;
|
7702
|
+
defaultMessage: string;
|
7703
|
+
};
|
7704
|
+
validator: import(".").JSONSchema;
|
7705
|
+
}[] | undefined;
|
7706
|
+
required?: boolean | undefined;
|
7707
|
+
defaultValue?: string | [string, string] | undefined;
|
7708
|
+
conditionals?: ({
|
7709
|
+
type: "SHOW";
|
7710
|
+
conditional: import(".").JSONSchema;
|
7711
|
+
} | {
|
7712
|
+
type: "ENABLE";
|
7713
|
+
conditional: import(".").JSONSchema;
|
7714
|
+
} | {
|
7715
|
+
type: "DISPLAY_ON_REVIEW";
|
7716
|
+
conditional: import(".").JSONSchema;
|
7717
|
+
})[] | undefined;
|
7718
|
+
placeholder?: {
|
7719
|
+
id: string;
|
7720
|
+
description: string;
|
7721
|
+
defaultMessage: string;
|
7722
|
+
} | undefined;
|
7723
|
+
hideLabel?: boolean | undefined;
|
7724
|
+
configuration?: {
|
7725
|
+
notice?: {
|
7726
|
+
id: string;
|
7727
|
+
description: string;
|
7728
|
+
defaultMessage: string;
|
7729
|
+
} | undefined;
|
7730
|
+
} | undefined;
|
7731
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7732
|
+
id: z.ZodString;
|
7733
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
7734
|
+
parent: z.ZodOptional<z.ZodObject<{
|
7735
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
7736
|
+
}, "strip", z.ZodTypeAny, {
|
7737
|
+
_fieldId?: string | undefined;
|
7738
|
+
}, {
|
7739
|
+
_fieldId?: string | undefined;
|
7740
|
+
}>>;
|
7741
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
7742
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7743
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7744
|
+
id: string;
|
7745
|
+
description: string;
|
7746
|
+
defaultMessage: string;
|
7747
|
+
}>>;
|
7748
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
7749
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
7750
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7751
|
+
id: string;
|
7752
|
+
description: string;
|
7753
|
+
defaultMessage: string;
|
7754
|
+
}>;
|
7755
|
+
}, "strip", z.ZodTypeAny, {
|
7756
|
+
message: TranslationConfig;
|
7757
|
+
validator: import(".").JSONSchema;
|
7758
|
+
}, {
|
7759
|
+
message: {
|
7760
|
+
id: string;
|
7761
|
+
description: string;
|
7762
|
+
defaultMessage: string;
|
7763
|
+
};
|
7764
|
+
validator: import(".").JSONSchema;
|
7765
|
+
}>, "many">>>;
|
7766
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
7767
|
+
id: string;
|
7768
|
+
description: string;
|
7769
|
+
defaultMessage: string;
|
7770
|
+
}>;
|
7771
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
7366
7772
|
}, {
|
7367
7773
|
type: z.ZodLiteral<"PARAGRAPH">;
|
7368
7774
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -9757,6 +10163,34 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
9757
10163
|
configuration?: {
|
9758
10164
|
notice?: TranslationConfig | undefined;
|
9759
10165
|
} | undefined;
|
10166
|
+
} | {
|
10167
|
+
type: "DATE_RANGE";
|
10168
|
+
id: string;
|
10169
|
+
label: TranslationConfig;
|
10170
|
+
parent?: {
|
10171
|
+
_fieldId?: string | undefined;
|
10172
|
+
} | undefined;
|
10173
|
+
validation?: {
|
10174
|
+
message: TranslationConfig;
|
10175
|
+
validator: import(".").JSONSchema;
|
10176
|
+
}[] | undefined;
|
10177
|
+
required?: boolean | undefined;
|
10178
|
+
defaultValue?: string | [string, string] | undefined;
|
10179
|
+
conditionals?: ({
|
10180
|
+
type: "SHOW";
|
10181
|
+
conditional: import(".").JSONSchema;
|
10182
|
+
} | {
|
10183
|
+
type: "ENABLE";
|
10184
|
+
conditional: import(".").JSONSchema;
|
10185
|
+
} | {
|
10186
|
+
type: "DISPLAY_ON_REVIEW";
|
10187
|
+
conditional: import(".").JSONSchema;
|
10188
|
+
})[] | undefined;
|
10189
|
+
placeholder?: TranslationConfig | undefined;
|
10190
|
+
hideLabel?: boolean | undefined;
|
10191
|
+
configuration?: {
|
10192
|
+
notice?: TranslationConfig | undefined;
|
10193
|
+
} | undefined;
|
9760
10194
|
} | {
|
9761
10195
|
type: "PARAGRAPH";
|
9762
10196
|
id: string;
|
@@ -10546,7 +10980,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
10546
10980
|
} | undefined;
|
10547
10981
|
} | undefined;
|
10548
10982
|
} | {
|
10549
|
-
type: "
|
10983
|
+
type: "DATE_RANGE";
|
10550
10984
|
id: string;
|
10551
10985
|
label: {
|
10552
10986
|
id: string;
|
@@ -10565,7 +10999,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
10565
10999
|
validator: import(".").JSONSchema;
|
10566
11000
|
}[] | undefined;
|
10567
11001
|
required?: boolean | undefined;
|
10568
|
-
defaultValue?: string | undefined;
|
11002
|
+
defaultValue?: string | [string, string] | undefined;
|
10569
11003
|
conditionals?: ({
|
10570
11004
|
type: "SHOW";
|
10571
11005
|
conditional: import(".").JSONSchema;
|
@@ -10583,12 +11017,56 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
10583
11017
|
} | undefined;
|
10584
11018
|
hideLabel?: boolean | undefined;
|
10585
11019
|
configuration?: {
|
10586
|
-
|
10587
|
-
|
11020
|
+
notice?: {
|
11021
|
+
id: string;
|
11022
|
+
description: string;
|
11023
|
+
defaultMessage: string;
|
10588
11024
|
} | undefined;
|
10589
11025
|
} | undefined;
|
10590
11026
|
} | {
|
10591
|
-
type: "
|
11027
|
+
type: "PARAGRAPH";
|
11028
|
+
id: string;
|
11029
|
+
label: {
|
11030
|
+
id: string;
|
11031
|
+
description: string;
|
11032
|
+
defaultMessage: string;
|
11033
|
+
};
|
11034
|
+
parent?: {
|
11035
|
+
_fieldId?: string | undefined;
|
11036
|
+
} | undefined;
|
11037
|
+
validation?: {
|
11038
|
+
message: {
|
11039
|
+
id: string;
|
11040
|
+
description: string;
|
11041
|
+
defaultMessage: string;
|
11042
|
+
};
|
11043
|
+
validator: import(".").JSONSchema;
|
11044
|
+
}[] | undefined;
|
11045
|
+
required?: boolean | undefined;
|
11046
|
+
defaultValue?: string | undefined;
|
11047
|
+
conditionals?: ({
|
11048
|
+
type: "SHOW";
|
11049
|
+
conditional: import(".").JSONSchema;
|
11050
|
+
} | {
|
11051
|
+
type: "ENABLE";
|
11052
|
+
conditional: import(".").JSONSchema;
|
11053
|
+
} | {
|
11054
|
+
type: "DISPLAY_ON_REVIEW";
|
11055
|
+
conditional: import(".").JSONSchema;
|
11056
|
+
})[] | undefined;
|
11057
|
+
placeholder?: {
|
11058
|
+
id: string;
|
11059
|
+
description: string;
|
11060
|
+
defaultMessage: string;
|
11061
|
+
} | undefined;
|
11062
|
+
hideLabel?: boolean | undefined;
|
11063
|
+
configuration?: {
|
11064
|
+
styles?: {
|
11065
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
11066
|
+
} | undefined;
|
11067
|
+
} | undefined;
|
11068
|
+
} | {
|
11069
|
+
type: "PAGE_HEADER";
|
10592
11070
|
id: string;
|
10593
11071
|
label: {
|
10594
11072
|
id: string;
|
@@ -12125,34 +12603,27 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12125
12603
|
}>;
|
12126
12604
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12127
12605
|
}, {
|
12128
|
-
type: z.ZodLiteral<"
|
12129
|
-
defaultValue: z.ZodOptional<z.ZodString
|
12130
|
-
configuration: z.
|
12131
|
-
|
12132
|
-
|
12133
|
-
|
12134
|
-
|
12135
|
-
}, {
|
12136
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12606
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
12607
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
12608
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
12609
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
12610
|
+
id: string;
|
12611
|
+
description: string;
|
12612
|
+
defaultMessage: string;
|
12137
12613
|
}>>;
|
12138
12614
|
}, "strip", z.ZodTypeAny, {
|
12139
|
-
|
12140
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12141
|
-
} | undefined;
|
12615
|
+
notice?: TranslationConfig | undefined;
|
12142
12616
|
}, {
|
12143
|
-
|
12144
|
-
|
12617
|
+
notice?: {
|
12618
|
+
id: string;
|
12619
|
+
description: string;
|
12620
|
+
defaultMessage: string;
|
12145
12621
|
} | undefined;
|
12146
12622
|
}>>;
|
12147
12623
|
}>, "strip", z.ZodTypeAny, {
|
12148
|
-
type: "
|
12624
|
+
type: "DATE_RANGE";
|
12149
12625
|
id: string;
|
12150
12626
|
label: TranslationConfig;
|
12151
|
-
configuration: {
|
12152
|
-
styles?: {
|
12153
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12154
|
-
} | undefined;
|
12155
|
-
};
|
12156
12627
|
parent?: {
|
12157
12628
|
_fieldId?: string | undefined;
|
12158
12629
|
} | undefined;
|
@@ -12161,7 +12632,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12161
12632
|
validator: import(".").JSONSchema;
|
12162
12633
|
}[] | undefined;
|
12163
12634
|
required?: boolean | undefined;
|
12164
|
-
defaultValue?: string | undefined;
|
12635
|
+
defaultValue?: string | [string, string] | undefined;
|
12165
12636
|
conditionals?: ({
|
12166
12637
|
type: "SHOW";
|
12167
12638
|
conditional: import(".").JSONSchema;
|
@@ -12174,8 +12645,11 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12174
12645
|
})[] | undefined;
|
12175
12646
|
placeholder?: TranslationConfig | undefined;
|
12176
12647
|
hideLabel?: boolean | undefined;
|
12648
|
+
configuration?: {
|
12649
|
+
notice?: TranslationConfig | undefined;
|
12650
|
+
} | undefined;
|
12177
12651
|
}, {
|
12178
|
-
type: "
|
12652
|
+
type: "DATE_RANGE";
|
12179
12653
|
id: string;
|
12180
12654
|
label: {
|
12181
12655
|
id: string;
|
@@ -12194,7 +12668,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12194
12668
|
validator: import(".").JSONSchema;
|
12195
12669
|
}[] | undefined;
|
12196
12670
|
required?: boolean | undefined;
|
12197
|
-
defaultValue?: string | undefined;
|
12671
|
+
defaultValue?: string | [string, string] | undefined;
|
12198
12672
|
conditionals?: ({
|
12199
12673
|
type: "SHOW";
|
12200
12674
|
conditional: import(".").JSONSchema;
|
@@ -12212,8 +12686,10 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12212
12686
|
} | undefined;
|
12213
12687
|
hideLabel?: boolean | undefined;
|
12214
12688
|
configuration?: {
|
12215
|
-
|
12216
|
-
|
12689
|
+
notice?: {
|
12690
|
+
id: string;
|
12691
|
+
description: string;
|
12692
|
+
defaultMessage: string;
|
12217
12693
|
} | undefined;
|
12218
12694
|
} | undefined;
|
12219
12695
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -12258,51 +12734,34 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12258
12734
|
}>;
|
12259
12735
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12260
12736
|
}, {
|
12261
|
-
type: z.ZodLiteral<"
|
12737
|
+
type: z.ZodLiteral<"PARAGRAPH">;
|
12262
12738
|
defaultValue: z.ZodOptional<z.ZodString>;
|
12263
|
-
|
12264
|
-
value: z.ZodString;
|
12265
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
12266
|
-
id: string;
|
12267
|
-
description: string;
|
12268
|
-
defaultMessage: string;
|
12269
|
-
}>;
|
12270
|
-
}, "strip", z.ZodTypeAny, {
|
12271
|
-
value: string;
|
12272
|
-
label: TranslationConfig;
|
12273
|
-
}, {
|
12274
|
-
value: string;
|
12275
|
-
label: {
|
12276
|
-
id: string;
|
12277
|
-
description: string;
|
12278
|
-
defaultMessage: string;
|
12279
|
-
};
|
12280
|
-
}>, "many">;
|
12281
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
12739
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
12282
12740
|
styles: z.ZodOptional<z.ZodObject<{
|
12283
|
-
|
12741
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
12284
12742
|
}, "strip", z.ZodTypeAny, {
|
12285
|
-
|
12743
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12286
12744
|
}, {
|
12287
|
-
|
12745
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12288
12746
|
}>>;
|
12289
12747
|
}, "strip", z.ZodTypeAny, {
|
12290
12748
|
styles?: {
|
12291
|
-
|
12749
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12292
12750
|
} | undefined;
|
12293
12751
|
}, {
|
12294
12752
|
styles?: {
|
12295
|
-
|
12753
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12296
12754
|
} | undefined;
|
12297
12755
|
}>>;
|
12298
12756
|
}>, "strip", z.ZodTypeAny, {
|
12299
|
-
type: "
|
12757
|
+
type: "PARAGRAPH";
|
12300
12758
|
id: string;
|
12301
|
-
options: {
|
12302
|
-
value: string;
|
12303
|
-
label: TranslationConfig;
|
12304
|
-
}[];
|
12305
12759
|
label: TranslationConfig;
|
12760
|
+
configuration: {
|
12761
|
+
styles?: {
|
12762
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12763
|
+
} | undefined;
|
12764
|
+
};
|
12306
12765
|
parent?: {
|
12307
12766
|
_fieldId?: string | undefined;
|
12308
12767
|
} | undefined;
|
@@ -12324,22 +12783,9 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12324
12783
|
})[] | undefined;
|
12325
12784
|
placeholder?: TranslationConfig | undefined;
|
12326
12785
|
hideLabel?: boolean | undefined;
|
12327
|
-
configuration?: {
|
12328
|
-
styles?: {
|
12329
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
12330
|
-
} | undefined;
|
12331
|
-
} | undefined;
|
12332
12786
|
}, {
|
12333
|
-
type: "
|
12787
|
+
type: "PARAGRAPH";
|
12334
12788
|
id: string;
|
12335
|
-
options: {
|
12336
|
-
value: string;
|
12337
|
-
label: {
|
12338
|
-
id: string;
|
12339
|
-
description: string;
|
12340
|
-
defaultMessage: string;
|
12341
|
-
};
|
12342
|
-
}[];
|
12343
12789
|
label: {
|
12344
12790
|
id: string;
|
12345
12791
|
description: string;
|
@@ -12376,7 +12822,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12376
12822
|
hideLabel?: boolean | undefined;
|
12377
12823
|
configuration?: {
|
12378
12824
|
styles?: {
|
12379
|
-
|
12825
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12380
12826
|
} | undefined;
|
12381
12827
|
} | undefined;
|
12382
12828
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -12421,40 +12867,51 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12421
12867
|
}>;
|
12422
12868
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12423
12869
|
}, {
|
12424
|
-
type: z.ZodLiteral<"
|
12870
|
+
type: z.ZodLiteral<"RADIO_GROUP">;
|
12425
12871
|
defaultValue: z.ZodOptional<z.ZodString>;
|
12426
|
-
|
12427
|
-
|
12428
|
-
|
12429
|
-
|
12872
|
+
options: z.ZodArray<z.ZodObject<{
|
12873
|
+
value: z.ZodString;
|
12874
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
12875
|
+
id: string;
|
12876
|
+
description: string;
|
12877
|
+
defaultMessage: string;
|
12878
|
+
}>;
|
12879
|
+
}, "strip", z.ZodTypeAny, {
|
12880
|
+
value: string;
|
12881
|
+
label: TranslationConfig;
|
12882
|
+
}, {
|
12883
|
+
value: string;
|
12884
|
+
label: {
|
12885
|
+
id: string;
|
12886
|
+
description: string;
|
12887
|
+
defaultMessage: string;
|
12888
|
+
};
|
12430
12889
|
}>, "many">;
|
12431
|
-
configuration: z.
|
12890
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
12432
12891
|
styles: z.ZodOptional<z.ZodObject<{
|
12433
|
-
|
12892
|
+
size: z.ZodOptional<z.ZodEnum<["NORMAL", "LARGE"]>>;
|
12434
12893
|
}, "strip", z.ZodTypeAny, {
|
12435
|
-
|
12894
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
12436
12895
|
}, {
|
12437
|
-
|
12896
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
12438
12897
|
}>>;
|
12439
12898
|
}, "strip", z.ZodTypeAny, {
|
12440
12899
|
styles?: {
|
12441
|
-
|
12900
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
12442
12901
|
} | undefined;
|
12443
12902
|
}, {
|
12444
12903
|
styles?: {
|
12445
|
-
|
12904
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
12446
12905
|
} | undefined;
|
12447
12906
|
}>>;
|
12448
12907
|
}>, "strip", z.ZodTypeAny, {
|
12449
|
-
type: "
|
12908
|
+
type: "RADIO_GROUP";
|
12450
12909
|
id: string;
|
12910
|
+
options: {
|
12911
|
+
value: string;
|
12912
|
+
label: TranslationConfig;
|
12913
|
+
}[];
|
12451
12914
|
label: TranslationConfig;
|
12452
|
-
configuration: {
|
12453
|
-
styles?: {
|
12454
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
12455
|
-
} | undefined;
|
12456
|
-
};
|
12457
|
-
items: TranslationConfig[];
|
12458
12915
|
parent?: {
|
12459
12916
|
_fieldId?: string | undefined;
|
12460
12917
|
} | undefined;
|
@@ -12476,19 +12933,27 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12476
12933
|
})[] | undefined;
|
12477
12934
|
placeholder?: TranslationConfig | undefined;
|
12478
12935
|
hideLabel?: boolean | undefined;
|
12936
|
+
configuration?: {
|
12937
|
+
styles?: {
|
12938
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
12939
|
+
} | undefined;
|
12940
|
+
} | undefined;
|
12479
12941
|
}, {
|
12480
|
-
type: "
|
12942
|
+
type: "RADIO_GROUP";
|
12481
12943
|
id: string;
|
12944
|
+
options: {
|
12945
|
+
value: string;
|
12946
|
+
label: {
|
12947
|
+
id: string;
|
12948
|
+
description: string;
|
12949
|
+
defaultMessage: string;
|
12950
|
+
};
|
12951
|
+
}[];
|
12482
12952
|
label: {
|
12483
12953
|
id: string;
|
12484
12954
|
description: string;
|
12485
12955
|
defaultMessage: string;
|
12486
12956
|
};
|
12487
|
-
items: {
|
12488
|
-
id: string;
|
12489
|
-
description: string;
|
12490
|
-
defaultMessage: string;
|
12491
|
-
}[];
|
12492
12957
|
parent?: {
|
12493
12958
|
_fieldId?: string | undefined;
|
12494
12959
|
} | undefined;
|
@@ -12520,7 +12985,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12520
12985
|
hideLabel?: boolean | undefined;
|
12521
12986
|
configuration?: {
|
12522
12987
|
styles?: {
|
12523
|
-
|
12988
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
12524
12989
|
} | undefined;
|
12525
12990
|
} | undefined;
|
12526
12991
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -12565,12 +13030,40 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12565
13030
|
}>;
|
12566
13031
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
12567
13032
|
}, {
|
12568
|
-
type: z.ZodLiteral<"
|
13033
|
+
type: z.ZodLiteral<"BULLET_LIST">;
|
12569
13034
|
defaultValue: z.ZodOptional<z.ZodString>;
|
13035
|
+
items: z.ZodArray<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
13036
|
+
id: string;
|
13037
|
+
description: string;
|
13038
|
+
defaultMessage: string;
|
13039
|
+
}>, "many">;
|
13040
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
13041
|
+
styles: z.ZodOptional<z.ZodObject<{
|
13042
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
13043
|
+
}, "strip", z.ZodTypeAny, {
|
13044
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
13045
|
+
}, {
|
13046
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
13047
|
+
}>>;
|
13048
|
+
}, "strip", z.ZodTypeAny, {
|
13049
|
+
styles?: {
|
13050
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
13051
|
+
} | undefined;
|
13052
|
+
}, {
|
13053
|
+
styles?: {
|
13054
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
13055
|
+
} | undefined;
|
13056
|
+
}>>;
|
12570
13057
|
}>, "strip", z.ZodTypeAny, {
|
12571
|
-
type: "
|
13058
|
+
type: "BULLET_LIST";
|
12572
13059
|
id: string;
|
12573
13060
|
label: TranslationConfig;
|
13061
|
+
configuration: {
|
13062
|
+
styles?: {
|
13063
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
13064
|
+
} | undefined;
|
13065
|
+
};
|
13066
|
+
items: TranslationConfig[];
|
12574
13067
|
parent?: {
|
12575
13068
|
_fieldId?: string | undefined;
|
12576
13069
|
} | undefined;
|
@@ -12593,7 +13086,123 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
12593
13086
|
placeholder?: TranslationConfig | undefined;
|
12594
13087
|
hideLabel?: boolean | undefined;
|
12595
13088
|
}, {
|
12596
|
-
type: "
|
13089
|
+
type: "BULLET_LIST";
|
13090
|
+
id: string;
|
13091
|
+
label: {
|
13092
|
+
id: string;
|
13093
|
+
description: string;
|
13094
|
+
defaultMessage: string;
|
13095
|
+
};
|
13096
|
+
items: {
|
13097
|
+
id: string;
|
13098
|
+
description: string;
|
13099
|
+
defaultMessage: string;
|
13100
|
+
}[];
|
13101
|
+
parent?: {
|
13102
|
+
_fieldId?: string | undefined;
|
13103
|
+
} | undefined;
|
13104
|
+
validation?: {
|
13105
|
+
message: {
|
13106
|
+
id: string;
|
13107
|
+
description: string;
|
13108
|
+
defaultMessage: string;
|
13109
|
+
};
|
13110
|
+
validator: import(".").JSONSchema;
|
13111
|
+
}[] | undefined;
|
13112
|
+
required?: boolean | undefined;
|
13113
|
+
defaultValue?: string | undefined;
|
13114
|
+
conditionals?: ({
|
13115
|
+
type: "SHOW";
|
13116
|
+
conditional: import(".").JSONSchema;
|
13117
|
+
} | {
|
13118
|
+
type: "ENABLE";
|
13119
|
+
conditional: import(".").JSONSchema;
|
13120
|
+
} | {
|
13121
|
+
type: "DISPLAY_ON_REVIEW";
|
13122
|
+
conditional: import(".").JSONSchema;
|
13123
|
+
})[] | undefined;
|
13124
|
+
placeholder?: {
|
13125
|
+
id: string;
|
13126
|
+
description: string;
|
13127
|
+
defaultMessage: string;
|
13128
|
+
} | undefined;
|
13129
|
+
hideLabel?: boolean | undefined;
|
13130
|
+
configuration?: {
|
13131
|
+
styles?: {
|
13132
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
13133
|
+
} | undefined;
|
13134
|
+
} | undefined;
|
13135
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
13136
|
+
id: z.ZodString;
|
13137
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
13138
|
+
parent: z.ZodOptional<z.ZodObject<{
|
13139
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
13140
|
+
}, "strip", z.ZodTypeAny, {
|
13141
|
+
_fieldId?: string | undefined;
|
13142
|
+
}, {
|
13143
|
+
_fieldId?: string | undefined;
|
13144
|
+
}>>;
|
13145
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
13146
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
13147
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
13148
|
+
id: string;
|
13149
|
+
description: string;
|
13150
|
+
defaultMessage: string;
|
13151
|
+
}>>;
|
13152
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
13153
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
13154
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
13155
|
+
id: string;
|
13156
|
+
description: string;
|
13157
|
+
defaultMessage: string;
|
13158
|
+
}>;
|
13159
|
+
}, "strip", z.ZodTypeAny, {
|
13160
|
+
message: TranslationConfig;
|
13161
|
+
validator: import(".").JSONSchema;
|
13162
|
+
}, {
|
13163
|
+
message: {
|
13164
|
+
id: string;
|
13165
|
+
description: string;
|
13166
|
+
defaultMessage: string;
|
13167
|
+
};
|
13168
|
+
validator: import(".").JSONSchema;
|
13169
|
+
}>, "many">>>;
|
13170
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
13171
|
+
id: string;
|
13172
|
+
description: string;
|
13173
|
+
defaultMessage: string;
|
13174
|
+
}>;
|
13175
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
13176
|
+
}, {
|
13177
|
+
type: z.ZodLiteral<"PAGE_HEADER">;
|
13178
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
13179
|
+
}>, "strip", z.ZodTypeAny, {
|
13180
|
+
type: "PAGE_HEADER";
|
13181
|
+
id: string;
|
13182
|
+
label: TranslationConfig;
|
13183
|
+
parent?: {
|
13184
|
+
_fieldId?: string | undefined;
|
13185
|
+
} | undefined;
|
13186
|
+
validation?: {
|
13187
|
+
message: TranslationConfig;
|
13188
|
+
validator: import(".").JSONSchema;
|
13189
|
+
}[] | undefined;
|
13190
|
+
required?: boolean | undefined;
|
13191
|
+
defaultValue?: string | undefined;
|
13192
|
+
conditionals?: ({
|
13193
|
+
type: "SHOW";
|
13194
|
+
conditional: import(".").JSONSchema;
|
13195
|
+
} | {
|
13196
|
+
type: "ENABLE";
|
13197
|
+
conditional: import(".").JSONSchema;
|
13198
|
+
} | {
|
13199
|
+
type: "DISPLAY_ON_REVIEW";
|
13200
|
+
conditional: import(".").JSONSchema;
|
13201
|
+
})[] | undefined;
|
13202
|
+
placeholder?: TranslationConfig | undefined;
|
13203
|
+
hideLabel?: boolean | undefined;
|
13204
|
+
}, {
|
13205
|
+
type: "PAGE_HEADER";
|
12597
13206
|
id: string;
|
12598
13207
|
label: {
|
12599
13208
|
id: string;
|
@@ -14644,6 +15253,34 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
14644
15253
|
configuration?: {
|
14645
15254
|
notice?: TranslationConfig | undefined;
|
14646
15255
|
} | undefined;
|
15256
|
+
} | {
|
15257
|
+
type: "DATE_RANGE";
|
15258
|
+
id: string;
|
15259
|
+
label: TranslationConfig;
|
15260
|
+
parent?: {
|
15261
|
+
_fieldId?: string | undefined;
|
15262
|
+
} | undefined;
|
15263
|
+
validation?: {
|
15264
|
+
message: TranslationConfig;
|
15265
|
+
validator: import(".").JSONSchema;
|
15266
|
+
}[] | undefined;
|
15267
|
+
required?: boolean | undefined;
|
15268
|
+
defaultValue?: string | [string, string] | undefined;
|
15269
|
+
conditionals?: ({
|
15270
|
+
type: "SHOW";
|
15271
|
+
conditional: import(".").JSONSchema;
|
15272
|
+
} | {
|
15273
|
+
type: "ENABLE";
|
15274
|
+
conditional: import(".").JSONSchema;
|
15275
|
+
} | {
|
15276
|
+
type: "DISPLAY_ON_REVIEW";
|
15277
|
+
conditional: import(".").JSONSchema;
|
15278
|
+
})[] | undefined;
|
15279
|
+
placeholder?: TranslationConfig | undefined;
|
15280
|
+
hideLabel?: boolean | undefined;
|
15281
|
+
configuration?: {
|
15282
|
+
notice?: TranslationConfig | undefined;
|
15283
|
+
} | undefined;
|
14647
15284
|
} | {
|
14648
15285
|
type: "PARAGRAPH";
|
14649
15286
|
id: string;
|
@@ -15461,6 +16098,50 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
15461
16098
|
defaultMessage: string;
|
15462
16099
|
} | undefined;
|
15463
16100
|
} | undefined;
|
16101
|
+
} | {
|
16102
|
+
type: "DATE_RANGE";
|
16103
|
+
id: string;
|
16104
|
+
label: {
|
16105
|
+
id: string;
|
16106
|
+
description: string;
|
16107
|
+
defaultMessage: string;
|
16108
|
+
};
|
16109
|
+
parent?: {
|
16110
|
+
_fieldId?: string | undefined;
|
16111
|
+
} | undefined;
|
16112
|
+
validation?: {
|
16113
|
+
message: {
|
16114
|
+
id: string;
|
16115
|
+
description: string;
|
16116
|
+
defaultMessage: string;
|
16117
|
+
};
|
16118
|
+
validator: import(".").JSONSchema;
|
16119
|
+
}[] | undefined;
|
16120
|
+
required?: boolean | undefined;
|
16121
|
+
defaultValue?: string | [string, string] | undefined;
|
16122
|
+
conditionals?: ({
|
16123
|
+
type: "SHOW";
|
16124
|
+
conditional: import(".").JSONSchema;
|
16125
|
+
} | {
|
16126
|
+
type: "ENABLE";
|
16127
|
+
conditional: import(".").JSONSchema;
|
16128
|
+
} | {
|
16129
|
+
type: "DISPLAY_ON_REVIEW";
|
16130
|
+
conditional: import(".").JSONSchema;
|
16131
|
+
})[] | undefined;
|
16132
|
+
placeholder?: {
|
16133
|
+
id: string;
|
16134
|
+
description: string;
|
16135
|
+
defaultMessage: string;
|
16136
|
+
} | undefined;
|
16137
|
+
hideLabel?: boolean | undefined;
|
16138
|
+
configuration?: {
|
16139
|
+
notice?: {
|
16140
|
+
id: string;
|
16141
|
+
description: string;
|
16142
|
+
defaultMessage: string;
|
16143
|
+
} | undefined;
|
16144
|
+
} | undefined;
|
15464
16145
|
} | {
|
15465
16146
|
type: "PARAGRAPH";
|
15466
16147
|
id: string;
|
@@ -16346,14 +17027,9 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16346
17027
|
notice?: TranslationConfig | undefined;
|
16347
17028
|
} | undefined;
|
16348
17029
|
} | {
|
16349
|
-
type: "
|
17030
|
+
type: "DATE_RANGE";
|
16350
17031
|
id: string;
|
16351
17032
|
label: TranslationConfig;
|
16352
|
-
configuration: {
|
16353
|
-
styles?: {
|
16354
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
16355
|
-
} | undefined;
|
16356
|
-
};
|
16357
17033
|
parent?: {
|
16358
17034
|
_fieldId?: string | undefined;
|
16359
17035
|
} | undefined;
|
@@ -16362,7 +17038,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16362
17038
|
validator: import(".").JSONSchema;
|
16363
17039
|
}[] | undefined;
|
16364
17040
|
required?: boolean | undefined;
|
16365
|
-
defaultValue?: string | undefined;
|
17041
|
+
defaultValue?: string | [string, string] | undefined;
|
16366
17042
|
conditionals?: ({
|
16367
17043
|
type: "SHOW";
|
16368
17044
|
conditional: import(".").JSONSchema;
|
@@ -16375,42 +17051,17 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16375
17051
|
})[] | undefined;
|
16376
17052
|
placeholder?: TranslationConfig | undefined;
|
16377
17053
|
hideLabel?: boolean | undefined;
|
16378
|
-
|
16379
|
-
|
16380
|
-
id: string;
|
16381
|
-
label: TranslationConfig;
|
16382
|
-
parent?: {
|
16383
|
-
_fieldId?: string | undefined;
|
17054
|
+
configuration?: {
|
17055
|
+
notice?: TranslationConfig | undefined;
|
16384
17056
|
} | undefined;
|
16385
|
-
validation?: {
|
16386
|
-
message: TranslationConfig;
|
16387
|
-
validator: import(".").JSONSchema;
|
16388
|
-
}[] | undefined;
|
16389
|
-
required?: boolean | undefined;
|
16390
|
-
defaultValue?: string | undefined;
|
16391
|
-
conditionals?: ({
|
16392
|
-
type: "SHOW";
|
16393
|
-
conditional: import(".").JSONSchema;
|
16394
|
-
} | {
|
16395
|
-
type: "ENABLE";
|
16396
|
-
conditional: import(".").JSONSchema;
|
16397
|
-
} | {
|
16398
|
-
type: "DISPLAY_ON_REVIEW";
|
16399
|
-
conditional: import(".").JSONSchema;
|
16400
|
-
})[] | undefined;
|
16401
|
-
placeholder?: TranslationConfig | undefined;
|
16402
|
-
hideLabel?: boolean | undefined;
|
16403
17057
|
} | {
|
16404
|
-
type: "
|
17058
|
+
type: "PARAGRAPH";
|
16405
17059
|
id: string;
|
16406
17060
|
label: TranslationConfig;
|
16407
17061
|
configuration: {
|
16408
|
-
|
16409
|
-
|
16410
|
-
style?: {
|
16411
|
-
width?: "full" | "auto" | undefined;
|
17062
|
+
styles?: {
|
17063
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
16412
17064
|
} | undefined;
|
16413
|
-
fileName?: TranslationConfig | undefined;
|
16414
17065
|
};
|
16415
17066
|
parent?: {
|
16416
17067
|
_fieldId?: string | undefined;
|
@@ -16420,35 +17071,6 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16420
17071
|
validator: import(".").JSONSchema;
|
16421
17072
|
}[] | undefined;
|
16422
17073
|
required?: boolean | undefined;
|
16423
|
-
defaultValue?: string | number | boolean | undefined;
|
16424
|
-
conditionals?: ({
|
16425
|
-
type: "SHOW";
|
16426
|
-
conditional: import(".").JSONSchema;
|
16427
|
-
} | {
|
16428
|
-
type: "ENABLE";
|
16429
|
-
conditional: import(".").JSONSchema;
|
16430
|
-
} | {
|
16431
|
-
type: "DISPLAY_ON_REVIEW";
|
16432
|
-
conditional: import(".").JSONSchema;
|
16433
|
-
})[] | undefined;
|
16434
|
-
placeholder?: TranslationConfig | undefined;
|
16435
|
-
hideLabel?: boolean | undefined;
|
16436
|
-
} | {
|
16437
|
-
type: "RADIO_GROUP";
|
16438
|
-
id: string;
|
16439
|
-
options: {
|
16440
|
-
value: string;
|
16441
|
-
label: TranslationConfig;
|
16442
|
-
}[];
|
16443
|
-
label: TranslationConfig;
|
16444
|
-
parent?: {
|
16445
|
-
_fieldId?: string | undefined;
|
16446
|
-
} | undefined;
|
16447
|
-
validation?: {
|
16448
|
-
message: TranslationConfig;
|
16449
|
-
validator: import(".").JSONSchema;
|
16450
|
-
}[] | undefined;
|
16451
|
-
required?: boolean | undefined;
|
16452
17074
|
defaultValue?: string | undefined;
|
16453
17075
|
conditionals?: ({
|
16454
17076
|
type: "SHOW";
|
@@ -16462,21 +17084,108 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
16462
17084
|
})[] | undefined;
|
16463
17085
|
placeholder?: TranslationConfig | undefined;
|
16464
17086
|
hideLabel?: boolean | undefined;
|
16465
|
-
configuration?: {
|
16466
|
-
styles?: {
|
16467
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
16468
|
-
} | undefined;
|
16469
|
-
} | undefined;
|
16470
17087
|
} | {
|
16471
|
-
type: "
|
17088
|
+
type: "PAGE_HEADER";
|
16472
17089
|
id: string;
|
16473
17090
|
label: TranslationConfig;
|
16474
|
-
|
16475
|
-
|
16476
|
-
|
16477
|
-
|
16478
|
-
|
16479
|
-
|
17091
|
+
parent?: {
|
17092
|
+
_fieldId?: string | undefined;
|
17093
|
+
} | undefined;
|
17094
|
+
validation?: {
|
17095
|
+
message: TranslationConfig;
|
17096
|
+
validator: import(".").JSONSchema;
|
17097
|
+
}[] | undefined;
|
17098
|
+
required?: boolean | undefined;
|
17099
|
+
defaultValue?: string | undefined;
|
17100
|
+
conditionals?: ({
|
17101
|
+
type: "SHOW";
|
17102
|
+
conditional: import(".").JSONSchema;
|
17103
|
+
} | {
|
17104
|
+
type: "ENABLE";
|
17105
|
+
conditional: import(".").JSONSchema;
|
17106
|
+
} | {
|
17107
|
+
type: "DISPLAY_ON_REVIEW";
|
17108
|
+
conditional: import(".").JSONSchema;
|
17109
|
+
})[] | undefined;
|
17110
|
+
placeholder?: TranslationConfig | undefined;
|
17111
|
+
hideLabel?: boolean | undefined;
|
17112
|
+
} | {
|
17113
|
+
type: "FILE";
|
17114
|
+
id: string;
|
17115
|
+
label: TranslationConfig;
|
17116
|
+
configuration: {
|
17117
|
+
maxFileSize: number;
|
17118
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
17119
|
+
style?: {
|
17120
|
+
width?: "full" | "auto" | undefined;
|
17121
|
+
} | undefined;
|
17122
|
+
fileName?: TranslationConfig | undefined;
|
17123
|
+
};
|
17124
|
+
parent?: {
|
17125
|
+
_fieldId?: string | undefined;
|
17126
|
+
} | undefined;
|
17127
|
+
validation?: {
|
17128
|
+
message: TranslationConfig;
|
17129
|
+
validator: import(".").JSONSchema;
|
17130
|
+
}[] | undefined;
|
17131
|
+
required?: boolean | undefined;
|
17132
|
+
defaultValue?: string | number | boolean | undefined;
|
17133
|
+
conditionals?: ({
|
17134
|
+
type: "SHOW";
|
17135
|
+
conditional: import(".").JSONSchema;
|
17136
|
+
} | {
|
17137
|
+
type: "ENABLE";
|
17138
|
+
conditional: import(".").JSONSchema;
|
17139
|
+
} | {
|
17140
|
+
type: "DISPLAY_ON_REVIEW";
|
17141
|
+
conditional: import(".").JSONSchema;
|
17142
|
+
})[] | undefined;
|
17143
|
+
placeholder?: TranslationConfig | undefined;
|
17144
|
+
hideLabel?: boolean | undefined;
|
17145
|
+
} | {
|
17146
|
+
type: "RADIO_GROUP";
|
17147
|
+
id: string;
|
17148
|
+
options: {
|
17149
|
+
value: string;
|
17150
|
+
label: TranslationConfig;
|
17151
|
+
}[];
|
17152
|
+
label: TranslationConfig;
|
17153
|
+
parent?: {
|
17154
|
+
_fieldId?: string | undefined;
|
17155
|
+
} | undefined;
|
17156
|
+
validation?: {
|
17157
|
+
message: TranslationConfig;
|
17158
|
+
validator: import(".").JSONSchema;
|
17159
|
+
}[] | undefined;
|
17160
|
+
required?: boolean | undefined;
|
17161
|
+
defaultValue?: string | undefined;
|
17162
|
+
conditionals?: ({
|
17163
|
+
type: "SHOW";
|
17164
|
+
conditional: import(".").JSONSchema;
|
17165
|
+
} | {
|
17166
|
+
type: "ENABLE";
|
17167
|
+
conditional: import(".").JSONSchema;
|
17168
|
+
} | {
|
17169
|
+
type: "DISPLAY_ON_REVIEW";
|
17170
|
+
conditional: import(".").JSONSchema;
|
17171
|
+
})[] | undefined;
|
17172
|
+
placeholder?: TranslationConfig | undefined;
|
17173
|
+
hideLabel?: boolean | undefined;
|
17174
|
+
configuration?: {
|
17175
|
+
styles?: {
|
17176
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
17177
|
+
} | undefined;
|
17178
|
+
} | undefined;
|
17179
|
+
} | {
|
17180
|
+
type: "BULLET_LIST";
|
17181
|
+
id: string;
|
17182
|
+
label: TranslationConfig;
|
17183
|
+
configuration: {
|
17184
|
+
styles?: {
|
17185
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
17186
|
+
} | undefined;
|
17187
|
+
};
|
17188
|
+
items: TranslationConfig[];
|
16480
17189
|
parent?: {
|
16481
17190
|
_fieldId?: string | undefined;
|
16482
17191
|
} | undefined;
|
@@ -17026,6 +17735,34 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
17026
17735
|
configuration?: {
|
17027
17736
|
notice?: TranslationConfig | undefined;
|
17028
17737
|
} | undefined;
|
17738
|
+
} | {
|
17739
|
+
type: "DATE_RANGE";
|
17740
|
+
id: string;
|
17741
|
+
label: TranslationConfig;
|
17742
|
+
parent?: {
|
17743
|
+
_fieldId?: string | undefined;
|
17744
|
+
} | undefined;
|
17745
|
+
validation?: {
|
17746
|
+
message: TranslationConfig;
|
17747
|
+
validator: import(".").JSONSchema;
|
17748
|
+
}[] | undefined;
|
17749
|
+
required?: boolean | undefined;
|
17750
|
+
defaultValue?: string | [string, string] | undefined;
|
17751
|
+
conditionals?: ({
|
17752
|
+
type: "SHOW";
|
17753
|
+
conditional: import(".").JSONSchema;
|
17754
|
+
} | {
|
17755
|
+
type: "ENABLE";
|
17756
|
+
conditional: import(".").JSONSchema;
|
17757
|
+
} | {
|
17758
|
+
type: "DISPLAY_ON_REVIEW";
|
17759
|
+
conditional: import(".").JSONSchema;
|
17760
|
+
})[] | undefined;
|
17761
|
+
placeholder?: TranslationConfig | undefined;
|
17762
|
+
hideLabel?: boolean | undefined;
|
17763
|
+
configuration?: {
|
17764
|
+
notice?: TranslationConfig | undefined;
|
17765
|
+
} | undefined;
|
17029
17766
|
} | {
|
17030
17767
|
type: "PARAGRAPH";
|
17031
17768
|
id: string;
|
@@ -17821,6 +18558,50 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
17821
18558
|
defaultMessage: string;
|
17822
18559
|
} | undefined;
|
17823
18560
|
} | undefined;
|
18561
|
+
} | {
|
18562
|
+
type: "DATE_RANGE";
|
18563
|
+
id: string;
|
18564
|
+
label: {
|
18565
|
+
id: string;
|
18566
|
+
description: string;
|
18567
|
+
defaultMessage: string;
|
18568
|
+
};
|
18569
|
+
parent?: {
|
18570
|
+
_fieldId?: string | undefined;
|
18571
|
+
} | undefined;
|
18572
|
+
validation?: {
|
18573
|
+
message: {
|
18574
|
+
id: string;
|
18575
|
+
description: string;
|
18576
|
+
defaultMessage: string;
|
18577
|
+
};
|
18578
|
+
validator: import(".").JSONSchema;
|
18579
|
+
}[] | undefined;
|
18580
|
+
required?: boolean | undefined;
|
18581
|
+
defaultValue?: string | [string, string] | undefined;
|
18582
|
+
conditionals?: ({
|
18583
|
+
type: "SHOW";
|
18584
|
+
conditional: import(".").JSONSchema;
|
18585
|
+
} | {
|
18586
|
+
type: "ENABLE";
|
18587
|
+
conditional: import(".").JSONSchema;
|
18588
|
+
} | {
|
18589
|
+
type: "DISPLAY_ON_REVIEW";
|
18590
|
+
conditional: import(".").JSONSchema;
|
18591
|
+
})[] | undefined;
|
18592
|
+
placeholder?: {
|
18593
|
+
id: string;
|
18594
|
+
description: string;
|
18595
|
+
defaultMessage: string;
|
18596
|
+
} | undefined;
|
18597
|
+
hideLabel?: boolean | undefined;
|
18598
|
+
configuration?: {
|
18599
|
+
notice?: {
|
18600
|
+
id: string;
|
18601
|
+
description: string;
|
18602
|
+
defaultMessage: string;
|
18603
|
+
} | undefined;
|
18604
|
+
} | undefined;
|
17824
18605
|
} | {
|
17825
18606
|
type: "PARAGRAPH";
|
17826
18607
|
id: string;
|
@@ -18852,7 +19633,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
18852
19633
|
} | undefined;
|
18853
19634
|
} | undefined;
|
18854
19635
|
} | {
|
18855
|
-
type: "
|
19636
|
+
type: "DATE_RANGE";
|
18856
19637
|
id: string;
|
18857
19638
|
label: {
|
18858
19639
|
id: string;
|
@@ -18871,7 +19652,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
18871
19652
|
validator: import(".").JSONSchema;
|
18872
19653
|
}[] | undefined;
|
18873
19654
|
required?: boolean | undefined;
|
18874
|
-
defaultValue?: string | undefined;
|
19655
|
+
defaultValue?: string | [string, string] | undefined;
|
18875
19656
|
conditionals?: ({
|
18876
19657
|
type: "SHOW";
|
18877
19658
|
conditional: import(".").JSONSchema;
|
@@ -18889,49 +19670,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
18889
19670
|
} | undefined;
|
18890
19671
|
hideLabel?: boolean | undefined;
|
18891
19672
|
configuration?: {
|
18892
|
-
|
18893
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
18894
|
-
} | undefined;
|
18895
|
-
} | undefined;
|
18896
|
-
} | {
|
18897
|
-
type: "PAGE_HEADER";
|
18898
|
-
id: string;
|
18899
|
-
label: {
|
18900
|
-
id: string;
|
18901
|
-
description: string;
|
18902
|
-
defaultMessage: string;
|
18903
|
-
};
|
18904
|
-
parent?: {
|
18905
|
-
_fieldId?: string | undefined;
|
18906
|
-
} | undefined;
|
18907
|
-
validation?: {
|
18908
|
-
message: {
|
19673
|
+
notice?: {
|
18909
19674
|
id: string;
|
18910
19675
|
description: string;
|
18911
19676
|
defaultMessage: string;
|
18912
|
-
};
|
18913
|
-
validator: import(".").JSONSchema;
|
18914
|
-
}[] | undefined;
|
18915
|
-
required?: boolean | undefined;
|
18916
|
-
defaultValue?: string | undefined;
|
18917
|
-
conditionals?: ({
|
18918
|
-
type: "SHOW";
|
18919
|
-
conditional: import(".").JSONSchema;
|
18920
|
-
} | {
|
18921
|
-
type: "ENABLE";
|
18922
|
-
conditional: import(".").JSONSchema;
|
18923
|
-
} | {
|
18924
|
-
type: "DISPLAY_ON_REVIEW";
|
18925
|
-
conditional: import(".").JSONSchema;
|
18926
|
-
})[] | undefined;
|
18927
|
-
placeholder?: {
|
18928
|
-
id: string;
|
18929
|
-
description: string;
|
18930
|
-
defaultMessage: string;
|
19677
|
+
} | undefined;
|
18931
19678
|
} | undefined;
|
18932
|
-
hideLabel?: boolean | undefined;
|
18933
19679
|
} | {
|
18934
|
-
type: "
|
19680
|
+
type: "PARAGRAPH";
|
18935
19681
|
id: string;
|
18936
19682
|
label: {
|
18937
19683
|
id: string;
|
@@ -18950,7 +19696,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
18950
19696
|
validator: import(".").JSONSchema;
|
18951
19697
|
}[] | undefined;
|
18952
19698
|
required?: boolean | undefined;
|
18953
|
-
defaultValue?: string |
|
19699
|
+
defaultValue?: string | undefined;
|
18954
19700
|
conditionals?: ({
|
18955
19701
|
type: "SHOW";
|
18956
19702
|
conditional: import(".").JSONSchema;
|
@@ -18968,28 +19714,13 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
18968
19714
|
} | undefined;
|
18969
19715
|
hideLabel?: boolean | undefined;
|
18970
19716
|
configuration?: {
|
18971
|
-
|
18972
|
-
|
18973
|
-
style?: {
|
18974
|
-
width?: "full" | "auto" | undefined;
|
18975
|
-
} | undefined;
|
18976
|
-
fileName?: {
|
18977
|
-
id: string;
|
18978
|
-
description: string;
|
18979
|
-
defaultMessage: string;
|
19717
|
+
styles?: {
|
19718
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
18980
19719
|
} | undefined;
|
18981
19720
|
} | undefined;
|
18982
19721
|
} | {
|
18983
|
-
type: "
|
19722
|
+
type: "PAGE_HEADER";
|
18984
19723
|
id: string;
|
18985
|
-
options: {
|
18986
|
-
value: string;
|
18987
|
-
label: {
|
18988
|
-
id: string;
|
18989
|
-
description: string;
|
18990
|
-
defaultMessage: string;
|
18991
|
-
};
|
18992
|
-
}[];
|
18993
19724
|
label: {
|
18994
19725
|
id: string;
|
18995
19726
|
description: string;
|
@@ -19024,24 +19755,14 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
19024
19755
|
defaultMessage: string;
|
19025
19756
|
} | undefined;
|
19026
19757
|
hideLabel?: boolean | undefined;
|
19027
|
-
configuration?: {
|
19028
|
-
styles?: {
|
19029
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
19030
|
-
} | undefined;
|
19031
|
-
} | undefined;
|
19032
19758
|
} | {
|
19033
|
-
type: "
|
19759
|
+
type: "FILE";
|
19034
19760
|
id: string;
|
19035
19761
|
label: {
|
19036
19762
|
id: string;
|
19037
19763
|
description: string;
|
19038
19764
|
defaultMessage: string;
|
19039
19765
|
};
|
19040
|
-
items: {
|
19041
|
-
id: string;
|
19042
|
-
description: string;
|
19043
|
-
defaultMessage: string;
|
19044
|
-
}[];
|
19045
19766
|
parent?: {
|
19046
19767
|
_fieldId?: string | undefined;
|
19047
19768
|
} | undefined;
|
@@ -19054,7 +19775,7 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
19054
19775
|
validator: import(".").JSONSchema;
|
19055
19776
|
}[] | undefined;
|
19056
19777
|
required?: boolean | undefined;
|
19057
|
-
defaultValue?: string | undefined;
|
19778
|
+
defaultValue?: string | number | boolean | undefined;
|
19058
19779
|
conditionals?: ({
|
19059
19780
|
type: "SHOW";
|
19060
19781
|
conditional: import(".").JSONSchema;
|
@@ -19072,12 +19793,116 @@ export declare const ActionFormConfig: z.ZodObject<{
|
|
19072
19793
|
} | undefined;
|
19073
19794
|
hideLabel?: boolean | undefined;
|
19074
19795
|
configuration?: {
|
19075
|
-
|
19076
|
-
|
19796
|
+
maxFileSize?: number | undefined;
|
19797
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
19798
|
+
style?: {
|
19799
|
+
width?: "full" | "auto" | undefined;
|
19800
|
+
} | undefined;
|
19801
|
+
fileName?: {
|
19802
|
+
id: string;
|
19803
|
+
description: string;
|
19804
|
+
defaultMessage: string;
|
19077
19805
|
} | undefined;
|
19078
19806
|
} | undefined;
|
19079
19807
|
} | {
|
19080
|
-
type: "
|
19808
|
+
type: "RADIO_GROUP";
|
19809
|
+
id: string;
|
19810
|
+
options: {
|
19811
|
+
value: string;
|
19812
|
+
label: {
|
19813
|
+
id: string;
|
19814
|
+
description: string;
|
19815
|
+
defaultMessage: string;
|
19816
|
+
};
|
19817
|
+
}[];
|
19818
|
+
label: {
|
19819
|
+
id: string;
|
19820
|
+
description: string;
|
19821
|
+
defaultMessage: string;
|
19822
|
+
};
|
19823
|
+
parent?: {
|
19824
|
+
_fieldId?: string | undefined;
|
19825
|
+
} | undefined;
|
19826
|
+
validation?: {
|
19827
|
+
message: {
|
19828
|
+
id: string;
|
19829
|
+
description: string;
|
19830
|
+
defaultMessage: string;
|
19831
|
+
};
|
19832
|
+
validator: import(".").JSONSchema;
|
19833
|
+
}[] | undefined;
|
19834
|
+
required?: boolean | undefined;
|
19835
|
+
defaultValue?: string | undefined;
|
19836
|
+
conditionals?: ({
|
19837
|
+
type: "SHOW";
|
19838
|
+
conditional: import(".").JSONSchema;
|
19839
|
+
} | {
|
19840
|
+
type: "ENABLE";
|
19841
|
+
conditional: import(".").JSONSchema;
|
19842
|
+
} | {
|
19843
|
+
type: "DISPLAY_ON_REVIEW";
|
19844
|
+
conditional: import(".").JSONSchema;
|
19845
|
+
})[] | undefined;
|
19846
|
+
placeholder?: {
|
19847
|
+
id: string;
|
19848
|
+
description: string;
|
19849
|
+
defaultMessage: string;
|
19850
|
+
} | undefined;
|
19851
|
+
hideLabel?: boolean | undefined;
|
19852
|
+
configuration?: {
|
19853
|
+
styles?: {
|
19854
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
19855
|
+
} | undefined;
|
19856
|
+
} | undefined;
|
19857
|
+
} | {
|
19858
|
+
type: "BULLET_LIST";
|
19859
|
+
id: string;
|
19860
|
+
label: {
|
19861
|
+
id: string;
|
19862
|
+
description: string;
|
19863
|
+
defaultMessage: string;
|
19864
|
+
};
|
19865
|
+
items: {
|
19866
|
+
id: string;
|
19867
|
+
description: string;
|
19868
|
+
defaultMessage: string;
|
19869
|
+
}[];
|
19870
|
+
parent?: {
|
19871
|
+
_fieldId?: string | undefined;
|
19872
|
+
} | undefined;
|
19873
|
+
validation?: {
|
19874
|
+
message: {
|
19875
|
+
id: string;
|
19876
|
+
description: string;
|
19877
|
+
defaultMessage: string;
|
19878
|
+
};
|
19879
|
+
validator: import(".").JSONSchema;
|
19880
|
+
}[] | undefined;
|
19881
|
+
required?: boolean | undefined;
|
19882
|
+
defaultValue?: string | undefined;
|
19883
|
+
conditionals?: ({
|
19884
|
+
type: "SHOW";
|
19885
|
+
conditional: import(".").JSONSchema;
|
19886
|
+
} | {
|
19887
|
+
type: "ENABLE";
|
19888
|
+
conditional: import(".").JSONSchema;
|
19889
|
+
} | {
|
19890
|
+
type: "DISPLAY_ON_REVIEW";
|
19891
|
+
conditional: import(".").JSONSchema;
|
19892
|
+
})[] | undefined;
|
19893
|
+
placeholder?: {
|
19894
|
+
id: string;
|
19895
|
+
description: string;
|
19896
|
+
defaultMessage: string;
|
19897
|
+
} | undefined;
|
19898
|
+
hideLabel?: boolean | undefined;
|
19899
|
+
configuration?: {
|
19900
|
+
styles?: {
|
19901
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
19902
|
+
} | undefined;
|
19903
|
+
} | undefined;
|
19904
|
+
} | {
|
19905
|
+
type: "SELECT";
|
19081
19906
|
id: string;
|
19082
19907
|
options: {
|
19083
19908
|
value: string;
|
@@ -20439,6 +21264,137 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
20439
21264
|
defaultMessage: string;
|
20440
21265
|
}>;
|
20441
21266
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
21267
|
+
}, {
|
21268
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
21269
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
21270
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
21271
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
21272
|
+
id: string;
|
21273
|
+
description: string;
|
21274
|
+
defaultMessage: string;
|
21275
|
+
}>>;
|
21276
|
+
}, "strip", z.ZodTypeAny, {
|
21277
|
+
notice?: TranslationConfig | undefined;
|
21278
|
+
}, {
|
21279
|
+
notice?: {
|
21280
|
+
id: string;
|
21281
|
+
description: string;
|
21282
|
+
defaultMessage: string;
|
21283
|
+
} | undefined;
|
21284
|
+
}>>;
|
21285
|
+
}>, "strip", z.ZodTypeAny, {
|
21286
|
+
type: "DATE_RANGE";
|
21287
|
+
id: string;
|
21288
|
+
label: TranslationConfig;
|
21289
|
+
parent?: {
|
21290
|
+
_fieldId?: string | undefined;
|
21291
|
+
} | undefined;
|
21292
|
+
validation?: {
|
21293
|
+
message: TranslationConfig;
|
21294
|
+
validator: import(".").JSONSchema;
|
21295
|
+
}[] | undefined;
|
21296
|
+
required?: boolean | undefined;
|
21297
|
+
defaultValue?: string | [string, string] | undefined;
|
21298
|
+
conditionals?: ({
|
21299
|
+
type: "SHOW";
|
21300
|
+
conditional: import(".").JSONSchema;
|
21301
|
+
} | {
|
21302
|
+
type: "ENABLE";
|
21303
|
+
conditional: import(".").JSONSchema;
|
21304
|
+
} | {
|
21305
|
+
type: "DISPLAY_ON_REVIEW";
|
21306
|
+
conditional: import(".").JSONSchema;
|
21307
|
+
})[] | undefined;
|
21308
|
+
placeholder?: TranslationConfig | undefined;
|
21309
|
+
hideLabel?: boolean | undefined;
|
21310
|
+
configuration?: {
|
21311
|
+
notice?: TranslationConfig | undefined;
|
21312
|
+
} | undefined;
|
21313
|
+
}, {
|
21314
|
+
type: "DATE_RANGE";
|
21315
|
+
id: string;
|
21316
|
+
label: {
|
21317
|
+
id: string;
|
21318
|
+
description: string;
|
21319
|
+
defaultMessage: string;
|
21320
|
+
};
|
21321
|
+
parent?: {
|
21322
|
+
_fieldId?: string | undefined;
|
21323
|
+
} | undefined;
|
21324
|
+
validation?: {
|
21325
|
+
message: {
|
21326
|
+
id: string;
|
21327
|
+
description: string;
|
21328
|
+
defaultMessage: string;
|
21329
|
+
};
|
21330
|
+
validator: import(".").JSONSchema;
|
21331
|
+
}[] | undefined;
|
21332
|
+
required?: boolean | undefined;
|
21333
|
+
defaultValue?: string | [string, string] | undefined;
|
21334
|
+
conditionals?: ({
|
21335
|
+
type: "SHOW";
|
21336
|
+
conditional: import(".").JSONSchema;
|
21337
|
+
} | {
|
21338
|
+
type: "ENABLE";
|
21339
|
+
conditional: import(".").JSONSchema;
|
21340
|
+
} | {
|
21341
|
+
type: "DISPLAY_ON_REVIEW";
|
21342
|
+
conditional: import(".").JSONSchema;
|
21343
|
+
})[] | undefined;
|
21344
|
+
placeholder?: {
|
21345
|
+
id: string;
|
21346
|
+
description: string;
|
21347
|
+
defaultMessage: string;
|
21348
|
+
} | undefined;
|
21349
|
+
hideLabel?: boolean | undefined;
|
21350
|
+
configuration?: {
|
21351
|
+
notice?: {
|
21352
|
+
id: string;
|
21353
|
+
description: string;
|
21354
|
+
defaultMessage: string;
|
21355
|
+
} | undefined;
|
21356
|
+
} | undefined;
|
21357
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
21358
|
+
id: z.ZodString;
|
21359
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
21360
|
+
parent: z.ZodOptional<z.ZodObject<{
|
21361
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
21362
|
+
}, "strip", z.ZodTypeAny, {
|
21363
|
+
_fieldId?: string | undefined;
|
21364
|
+
}, {
|
21365
|
+
_fieldId?: string | undefined;
|
21366
|
+
}>>;
|
21367
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
21368
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
21369
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
21370
|
+
id: string;
|
21371
|
+
description: string;
|
21372
|
+
defaultMessage: string;
|
21373
|
+
}>>;
|
21374
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
21375
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
21376
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
21377
|
+
id: string;
|
21378
|
+
description: string;
|
21379
|
+
defaultMessage: string;
|
21380
|
+
}>;
|
21381
|
+
}, "strip", z.ZodTypeAny, {
|
21382
|
+
message: TranslationConfig;
|
21383
|
+
validator: import(".").JSONSchema;
|
21384
|
+
}, {
|
21385
|
+
message: {
|
21386
|
+
id: string;
|
21387
|
+
description: string;
|
21388
|
+
defaultMessage: string;
|
21389
|
+
};
|
21390
|
+
validator: import(".").JSONSchema;
|
21391
|
+
}>, "many">>>;
|
21392
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
21393
|
+
id: string;
|
21394
|
+
description: string;
|
21395
|
+
defaultMessage: string;
|
21396
|
+
}>;
|
21397
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
20442
21398
|
}, {
|
20443
21399
|
type: z.ZodLiteral<"PARAGRAPH">;
|
20444
21400
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -22833,6 +23789,34 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
22833
23789
|
configuration?: {
|
22834
23790
|
notice?: TranslationConfig | undefined;
|
22835
23791
|
} | undefined;
|
23792
|
+
} | {
|
23793
|
+
type: "DATE_RANGE";
|
23794
|
+
id: string;
|
23795
|
+
label: TranslationConfig;
|
23796
|
+
parent?: {
|
23797
|
+
_fieldId?: string | undefined;
|
23798
|
+
} | undefined;
|
23799
|
+
validation?: {
|
23800
|
+
message: TranslationConfig;
|
23801
|
+
validator: import(".").JSONSchema;
|
23802
|
+
}[] | undefined;
|
23803
|
+
required?: boolean | undefined;
|
23804
|
+
defaultValue?: string | [string, string] | undefined;
|
23805
|
+
conditionals?: ({
|
23806
|
+
type: "SHOW";
|
23807
|
+
conditional: import(".").JSONSchema;
|
23808
|
+
} | {
|
23809
|
+
type: "ENABLE";
|
23810
|
+
conditional: import(".").JSONSchema;
|
23811
|
+
} | {
|
23812
|
+
type: "DISPLAY_ON_REVIEW";
|
23813
|
+
conditional: import(".").JSONSchema;
|
23814
|
+
})[] | undefined;
|
23815
|
+
placeholder?: TranslationConfig | undefined;
|
23816
|
+
hideLabel?: boolean | undefined;
|
23817
|
+
configuration?: {
|
23818
|
+
notice?: TranslationConfig | undefined;
|
23819
|
+
} | undefined;
|
22836
23820
|
} | {
|
22837
23821
|
type: "PARAGRAPH";
|
22838
23822
|
id: string;
|
@@ -23622,7 +24606,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
23622
24606
|
} | undefined;
|
23623
24607
|
} | undefined;
|
23624
24608
|
} | {
|
23625
|
-
type: "
|
24609
|
+
type: "DATE_RANGE";
|
23626
24610
|
id: string;
|
23627
24611
|
label: {
|
23628
24612
|
id: string;
|
@@ -23641,7 +24625,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
23641
24625
|
validator: import(".").JSONSchema;
|
23642
24626
|
}[] | undefined;
|
23643
24627
|
required?: boolean | undefined;
|
23644
|
-
defaultValue?: string | undefined;
|
24628
|
+
defaultValue?: string | [string, string] | undefined;
|
23645
24629
|
conditionals?: ({
|
23646
24630
|
type: "SHOW";
|
23647
24631
|
conditional: import(".").JSONSchema;
|
@@ -23659,12 +24643,56 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
23659
24643
|
} | undefined;
|
23660
24644
|
hideLabel?: boolean | undefined;
|
23661
24645
|
configuration?: {
|
23662
|
-
|
23663
|
-
|
24646
|
+
notice?: {
|
24647
|
+
id: string;
|
24648
|
+
description: string;
|
24649
|
+
defaultMessage: string;
|
23664
24650
|
} | undefined;
|
23665
24651
|
} | undefined;
|
23666
24652
|
} | {
|
23667
|
-
type: "
|
24653
|
+
type: "PARAGRAPH";
|
24654
|
+
id: string;
|
24655
|
+
label: {
|
24656
|
+
id: string;
|
24657
|
+
description: string;
|
24658
|
+
defaultMessage: string;
|
24659
|
+
};
|
24660
|
+
parent?: {
|
24661
|
+
_fieldId?: string | undefined;
|
24662
|
+
} | undefined;
|
24663
|
+
validation?: {
|
24664
|
+
message: {
|
24665
|
+
id: string;
|
24666
|
+
description: string;
|
24667
|
+
defaultMessage: string;
|
24668
|
+
};
|
24669
|
+
validator: import(".").JSONSchema;
|
24670
|
+
}[] | undefined;
|
24671
|
+
required?: boolean | undefined;
|
24672
|
+
defaultValue?: string | undefined;
|
24673
|
+
conditionals?: ({
|
24674
|
+
type: "SHOW";
|
24675
|
+
conditional: import(".").JSONSchema;
|
24676
|
+
} | {
|
24677
|
+
type: "ENABLE";
|
24678
|
+
conditional: import(".").JSONSchema;
|
24679
|
+
} | {
|
24680
|
+
type: "DISPLAY_ON_REVIEW";
|
24681
|
+
conditional: import(".").JSONSchema;
|
24682
|
+
})[] | undefined;
|
24683
|
+
placeholder?: {
|
24684
|
+
id: string;
|
24685
|
+
description: string;
|
24686
|
+
defaultMessage: string;
|
24687
|
+
} | undefined;
|
24688
|
+
hideLabel?: boolean | undefined;
|
24689
|
+
configuration?: {
|
24690
|
+
styles?: {
|
24691
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
24692
|
+
} | undefined;
|
24693
|
+
} | undefined;
|
24694
|
+
} | {
|
24695
|
+
type: "PAGE_HEADER";
|
23668
24696
|
id: string;
|
23669
24697
|
label: {
|
23670
24698
|
id: string;
|
@@ -24506,6 +25534,34 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
24506
25534
|
configuration?: {
|
24507
25535
|
notice?: TranslationConfig | undefined;
|
24508
25536
|
} | undefined;
|
25537
|
+
} | {
|
25538
|
+
type: "DATE_RANGE";
|
25539
|
+
id: string;
|
25540
|
+
label: TranslationConfig;
|
25541
|
+
parent?: {
|
25542
|
+
_fieldId?: string | undefined;
|
25543
|
+
} | undefined;
|
25544
|
+
validation?: {
|
25545
|
+
message: TranslationConfig;
|
25546
|
+
validator: import(".").JSONSchema;
|
25547
|
+
}[] | undefined;
|
25548
|
+
required?: boolean | undefined;
|
25549
|
+
defaultValue?: string | [string, string] | undefined;
|
25550
|
+
conditionals?: ({
|
25551
|
+
type: "SHOW";
|
25552
|
+
conditional: import(".").JSONSchema;
|
25553
|
+
} | {
|
25554
|
+
type: "ENABLE";
|
25555
|
+
conditional: import(".").JSONSchema;
|
25556
|
+
} | {
|
25557
|
+
type: "DISPLAY_ON_REVIEW";
|
25558
|
+
conditional: import(".").JSONSchema;
|
25559
|
+
})[] | undefined;
|
25560
|
+
placeholder?: TranslationConfig | undefined;
|
25561
|
+
hideLabel?: boolean | undefined;
|
25562
|
+
configuration?: {
|
25563
|
+
notice?: TranslationConfig | undefined;
|
25564
|
+
} | undefined;
|
24509
25565
|
} | {
|
24510
25566
|
type: "PARAGRAPH";
|
24511
25567
|
id: string;
|
@@ -25301,6 +26357,50 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
25301
26357
|
defaultMessage: string;
|
25302
26358
|
} | undefined;
|
25303
26359
|
} | undefined;
|
26360
|
+
} | {
|
26361
|
+
type: "DATE_RANGE";
|
26362
|
+
id: string;
|
26363
|
+
label: {
|
26364
|
+
id: string;
|
26365
|
+
description: string;
|
26366
|
+
defaultMessage: string;
|
26367
|
+
};
|
26368
|
+
parent?: {
|
26369
|
+
_fieldId?: string | undefined;
|
26370
|
+
} | undefined;
|
26371
|
+
validation?: {
|
26372
|
+
message: {
|
26373
|
+
id: string;
|
26374
|
+
description: string;
|
26375
|
+
defaultMessage: string;
|
26376
|
+
};
|
26377
|
+
validator: import(".").JSONSchema;
|
26378
|
+
}[] | undefined;
|
26379
|
+
required?: boolean | undefined;
|
26380
|
+
defaultValue?: string | [string, string] | undefined;
|
26381
|
+
conditionals?: ({
|
26382
|
+
type: "SHOW";
|
26383
|
+
conditional: import(".").JSONSchema;
|
26384
|
+
} | {
|
26385
|
+
type: "ENABLE";
|
26386
|
+
conditional: import(".").JSONSchema;
|
26387
|
+
} | {
|
26388
|
+
type: "DISPLAY_ON_REVIEW";
|
26389
|
+
conditional: import(".").JSONSchema;
|
26390
|
+
})[] | undefined;
|
26391
|
+
placeholder?: {
|
26392
|
+
id: string;
|
26393
|
+
description: string;
|
26394
|
+
defaultMessage: string;
|
26395
|
+
} | undefined;
|
26396
|
+
hideLabel?: boolean | undefined;
|
26397
|
+
configuration?: {
|
26398
|
+
notice?: {
|
26399
|
+
id: string;
|
26400
|
+
description: string;
|
26401
|
+
defaultMessage: string;
|
26402
|
+
} | undefined;
|
26403
|
+
} | undefined;
|
25304
26404
|
} | {
|
25305
26405
|
type: "PARAGRAPH";
|
25306
26406
|
id: string;
|
@@ -26888,34 +27988,27 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
26888
27988
|
}>;
|
26889
27989
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
26890
27990
|
}, {
|
26891
|
-
type: z.ZodLiteral<"
|
26892
|
-
defaultValue: z.ZodOptional<z.ZodString
|
26893
|
-
configuration: z.
|
26894
|
-
|
26895
|
-
|
26896
|
-
|
26897
|
-
|
26898
|
-
}, {
|
26899
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
27991
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
27992
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
27993
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
27994
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
27995
|
+
id: string;
|
27996
|
+
description: string;
|
27997
|
+
defaultMessage: string;
|
26900
27998
|
}>>;
|
26901
27999
|
}, "strip", z.ZodTypeAny, {
|
26902
|
-
|
26903
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
26904
|
-
} | undefined;
|
28000
|
+
notice?: TranslationConfig | undefined;
|
26905
28001
|
}, {
|
26906
|
-
|
26907
|
-
|
28002
|
+
notice?: {
|
28003
|
+
id: string;
|
28004
|
+
description: string;
|
28005
|
+
defaultMessage: string;
|
26908
28006
|
} | undefined;
|
26909
28007
|
}>>;
|
26910
28008
|
}>, "strip", z.ZodTypeAny, {
|
26911
|
-
type: "
|
28009
|
+
type: "DATE_RANGE";
|
26912
28010
|
id: string;
|
26913
28011
|
label: TranslationConfig;
|
26914
|
-
configuration: {
|
26915
|
-
styles?: {
|
26916
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
26917
|
-
} | undefined;
|
26918
|
-
};
|
26919
28012
|
parent?: {
|
26920
28013
|
_fieldId?: string | undefined;
|
26921
28014
|
} | undefined;
|
@@ -26924,7 +28017,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
26924
28017
|
validator: import(".").JSONSchema;
|
26925
28018
|
}[] | undefined;
|
26926
28019
|
required?: boolean | undefined;
|
26927
|
-
defaultValue?: string | undefined;
|
28020
|
+
defaultValue?: string | [string, string] | undefined;
|
26928
28021
|
conditionals?: ({
|
26929
28022
|
type: "SHOW";
|
26930
28023
|
conditional: import(".").JSONSchema;
|
@@ -26937,8 +28030,11 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
26937
28030
|
})[] | undefined;
|
26938
28031
|
placeholder?: TranslationConfig | undefined;
|
26939
28032
|
hideLabel?: boolean | undefined;
|
28033
|
+
configuration?: {
|
28034
|
+
notice?: TranslationConfig | undefined;
|
28035
|
+
} | undefined;
|
26940
28036
|
}, {
|
26941
|
-
type: "
|
28037
|
+
type: "DATE_RANGE";
|
26942
28038
|
id: string;
|
26943
28039
|
label: {
|
26944
28040
|
id: string;
|
@@ -26957,7 +28053,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
26957
28053
|
validator: import(".").JSONSchema;
|
26958
28054
|
}[] | undefined;
|
26959
28055
|
required?: boolean | undefined;
|
26960
|
-
defaultValue?: string | undefined;
|
28056
|
+
defaultValue?: string | [string, string] | undefined;
|
26961
28057
|
conditionals?: ({
|
26962
28058
|
type: "SHOW";
|
26963
28059
|
conditional: import(".").JSONSchema;
|
@@ -26975,8 +28071,10 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
26975
28071
|
} | undefined;
|
26976
28072
|
hideLabel?: boolean | undefined;
|
26977
28073
|
configuration?: {
|
26978
|
-
|
26979
|
-
|
28074
|
+
notice?: {
|
28075
|
+
id: string;
|
28076
|
+
description: string;
|
28077
|
+
defaultMessage: string;
|
26980
28078
|
} | undefined;
|
26981
28079
|
} | undefined;
|
26982
28080
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -27021,51 +28119,34 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
27021
28119
|
}>;
|
27022
28120
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
27023
28121
|
}, {
|
27024
|
-
type: z.ZodLiteral<"
|
28122
|
+
type: z.ZodLiteral<"PARAGRAPH">;
|
27025
28123
|
defaultValue: z.ZodOptional<z.ZodString>;
|
27026
|
-
|
27027
|
-
value: z.ZodString;
|
27028
|
-
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
27029
|
-
id: string;
|
27030
|
-
description: string;
|
27031
|
-
defaultMessage: string;
|
27032
|
-
}>;
|
27033
|
-
}, "strip", z.ZodTypeAny, {
|
27034
|
-
value: string;
|
27035
|
-
label: TranslationConfig;
|
27036
|
-
}, {
|
27037
|
-
value: string;
|
27038
|
-
label: {
|
27039
|
-
id: string;
|
27040
|
-
description: string;
|
27041
|
-
defaultMessage: string;
|
27042
|
-
};
|
27043
|
-
}>, "many">;
|
27044
|
-
configuration: z.ZodOptional<z.ZodObject<{
|
28124
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
27045
28125
|
styles: z.ZodOptional<z.ZodObject<{
|
27046
|
-
|
28126
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
27047
28127
|
}, "strip", z.ZodTypeAny, {
|
27048
|
-
|
28128
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
27049
28129
|
}, {
|
27050
|
-
|
28130
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
27051
28131
|
}>>;
|
27052
28132
|
}, "strip", z.ZodTypeAny, {
|
27053
28133
|
styles?: {
|
27054
|
-
|
28134
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
27055
28135
|
} | undefined;
|
27056
28136
|
}, {
|
27057
28137
|
styles?: {
|
27058
|
-
|
28138
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
27059
28139
|
} | undefined;
|
27060
28140
|
}>>;
|
27061
28141
|
}>, "strip", z.ZodTypeAny, {
|
27062
|
-
type: "
|
28142
|
+
type: "PARAGRAPH";
|
27063
28143
|
id: string;
|
27064
|
-
options: {
|
27065
|
-
value: string;
|
27066
|
-
label: TranslationConfig;
|
27067
|
-
}[];
|
27068
28144
|
label: TranslationConfig;
|
28145
|
+
configuration: {
|
28146
|
+
styles?: {
|
28147
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
28148
|
+
} | undefined;
|
28149
|
+
};
|
27069
28150
|
parent?: {
|
27070
28151
|
_fieldId?: string | undefined;
|
27071
28152
|
} | undefined;
|
@@ -27087,22 +28168,9 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
27087
28168
|
})[] | undefined;
|
27088
28169
|
placeholder?: TranslationConfig | undefined;
|
27089
28170
|
hideLabel?: boolean | undefined;
|
27090
|
-
configuration?: {
|
27091
|
-
styles?: {
|
27092
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
27093
|
-
} | undefined;
|
27094
|
-
} | undefined;
|
27095
28171
|
}, {
|
27096
|
-
type: "
|
28172
|
+
type: "PARAGRAPH";
|
27097
28173
|
id: string;
|
27098
|
-
options: {
|
27099
|
-
value: string;
|
27100
|
-
label: {
|
27101
|
-
id: string;
|
27102
|
-
description: string;
|
27103
|
-
defaultMessage: string;
|
27104
|
-
};
|
27105
|
-
}[];
|
27106
28174
|
label: {
|
27107
28175
|
id: string;
|
27108
28176
|
description: string;
|
@@ -27139,7 +28207,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
27139
28207
|
hideLabel?: boolean | undefined;
|
27140
28208
|
configuration?: {
|
27141
28209
|
styles?: {
|
27142
|
-
|
28210
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
27143
28211
|
} | undefined;
|
27144
28212
|
} | undefined;
|
27145
28213
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
@@ -27184,40 +28252,203 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
27184
28252
|
}>;
|
27185
28253
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
27186
28254
|
}, {
|
27187
|
-
type: z.ZodLiteral<"
|
28255
|
+
type: z.ZodLiteral<"RADIO_GROUP">;
|
27188
28256
|
defaultValue: z.ZodOptional<z.ZodString>;
|
27189
|
-
|
27190
|
-
|
27191
|
-
|
27192
|
-
|
28257
|
+
options: z.ZodArray<z.ZodObject<{
|
28258
|
+
value: z.ZodString;
|
28259
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
28260
|
+
id: string;
|
28261
|
+
description: string;
|
28262
|
+
defaultMessage: string;
|
28263
|
+
}>;
|
28264
|
+
}, "strip", z.ZodTypeAny, {
|
28265
|
+
value: string;
|
28266
|
+
label: TranslationConfig;
|
28267
|
+
}, {
|
28268
|
+
value: string;
|
28269
|
+
label: {
|
28270
|
+
id: string;
|
28271
|
+
description: string;
|
28272
|
+
defaultMessage: string;
|
28273
|
+
};
|
27193
28274
|
}>, "many">;
|
27194
|
-
configuration: z.
|
28275
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
27195
28276
|
styles: z.ZodOptional<z.ZodObject<{
|
27196
|
-
|
28277
|
+
size: z.ZodOptional<z.ZodEnum<["NORMAL", "LARGE"]>>;
|
27197
28278
|
}, "strip", z.ZodTypeAny, {
|
27198
|
-
|
28279
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
27199
28280
|
}, {
|
27200
|
-
|
28281
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
27201
28282
|
}>>;
|
27202
28283
|
}, "strip", z.ZodTypeAny, {
|
27203
28284
|
styles?: {
|
27204
|
-
|
28285
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
27205
28286
|
} | undefined;
|
27206
28287
|
}, {
|
27207
28288
|
styles?: {
|
27208
|
-
|
28289
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
27209
28290
|
} | undefined;
|
27210
28291
|
}>>;
|
27211
28292
|
}>, "strip", z.ZodTypeAny, {
|
27212
|
-
type: "
|
28293
|
+
type: "RADIO_GROUP";
|
27213
28294
|
id: string;
|
28295
|
+
options: {
|
28296
|
+
value: string;
|
28297
|
+
label: TranslationConfig;
|
28298
|
+
}[];
|
27214
28299
|
label: TranslationConfig;
|
27215
|
-
|
27216
|
-
|
27217
|
-
|
27218
|
-
|
27219
|
-
|
27220
|
-
|
28300
|
+
parent?: {
|
28301
|
+
_fieldId?: string | undefined;
|
28302
|
+
} | undefined;
|
28303
|
+
validation?: {
|
28304
|
+
message: TranslationConfig;
|
28305
|
+
validator: import(".").JSONSchema;
|
28306
|
+
}[] | undefined;
|
28307
|
+
required?: boolean | undefined;
|
28308
|
+
defaultValue?: string | undefined;
|
28309
|
+
conditionals?: ({
|
28310
|
+
type: "SHOW";
|
28311
|
+
conditional: import(".").JSONSchema;
|
28312
|
+
} | {
|
28313
|
+
type: "ENABLE";
|
28314
|
+
conditional: import(".").JSONSchema;
|
28315
|
+
} | {
|
28316
|
+
type: "DISPLAY_ON_REVIEW";
|
28317
|
+
conditional: import(".").JSONSchema;
|
28318
|
+
})[] | undefined;
|
28319
|
+
placeholder?: TranslationConfig | undefined;
|
28320
|
+
hideLabel?: boolean | undefined;
|
28321
|
+
configuration?: {
|
28322
|
+
styles?: {
|
28323
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
28324
|
+
} | undefined;
|
28325
|
+
} | undefined;
|
28326
|
+
}, {
|
28327
|
+
type: "RADIO_GROUP";
|
28328
|
+
id: string;
|
28329
|
+
options: {
|
28330
|
+
value: string;
|
28331
|
+
label: {
|
28332
|
+
id: string;
|
28333
|
+
description: string;
|
28334
|
+
defaultMessage: string;
|
28335
|
+
};
|
28336
|
+
}[];
|
28337
|
+
label: {
|
28338
|
+
id: string;
|
28339
|
+
description: string;
|
28340
|
+
defaultMessage: string;
|
28341
|
+
};
|
28342
|
+
parent?: {
|
28343
|
+
_fieldId?: string | undefined;
|
28344
|
+
} | undefined;
|
28345
|
+
validation?: {
|
28346
|
+
message: {
|
28347
|
+
id: string;
|
28348
|
+
description: string;
|
28349
|
+
defaultMessage: string;
|
28350
|
+
};
|
28351
|
+
validator: import(".").JSONSchema;
|
28352
|
+
}[] | undefined;
|
28353
|
+
required?: boolean | undefined;
|
28354
|
+
defaultValue?: string | undefined;
|
28355
|
+
conditionals?: ({
|
28356
|
+
type: "SHOW";
|
28357
|
+
conditional: import(".").JSONSchema;
|
28358
|
+
} | {
|
28359
|
+
type: "ENABLE";
|
28360
|
+
conditional: import(".").JSONSchema;
|
28361
|
+
} | {
|
28362
|
+
type: "DISPLAY_ON_REVIEW";
|
28363
|
+
conditional: import(".").JSONSchema;
|
28364
|
+
})[] | undefined;
|
28365
|
+
placeholder?: {
|
28366
|
+
id: string;
|
28367
|
+
description: string;
|
28368
|
+
defaultMessage: string;
|
28369
|
+
} | undefined;
|
28370
|
+
hideLabel?: boolean | undefined;
|
28371
|
+
configuration?: {
|
28372
|
+
styles?: {
|
28373
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
28374
|
+
} | undefined;
|
28375
|
+
} | undefined;
|
28376
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
28377
|
+
id: z.ZodString;
|
28378
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
28379
|
+
parent: z.ZodOptional<z.ZodObject<{
|
28380
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
28381
|
+
}, "strip", z.ZodTypeAny, {
|
28382
|
+
_fieldId?: string | undefined;
|
28383
|
+
}, {
|
28384
|
+
_fieldId?: string | undefined;
|
28385
|
+
}>>;
|
28386
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
28387
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
28388
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
28389
|
+
id: string;
|
28390
|
+
description: string;
|
28391
|
+
defaultMessage: string;
|
28392
|
+
}>>;
|
28393
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
28394
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
28395
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
28396
|
+
id: string;
|
28397
|
+
description: string;
|
28398
|
+
defaultMessage: string;
|
28399
|
+
}>;
|
28400
|
+
}, "strip", z.ZodTypeAny, {
|
28401
|
+
message: TranslationConfig;
|
28402
|
+
validator: import(".").JSONSchema;
|
28403
|
+
}, {
|
28404
|
+
message: {
|
28405
|
+
id: string;
|
28406
|
+
description: string;
|
28407
|
+
defaultMessage: string;
|
28408
|
+
};
|
28409
|
+
validator: import(".").JSONSchema;
|
28410
|
+
}>, "many">>>;
|
28411
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
28412
|
+
id: string;
|
28413
|
+
description: string;
|
28414
|
+
defaultMessage: string;
|
28415
|
+
}>;
|
28416
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
28417
|
+
}, {
|
28418
|
+
type: z.ZodLiteral<"BULLET_LIST">;
|
28419
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
28420
|
+
items: z.ZodArray<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
28421
|
+
id: string;
|
28422
|
+
description: string;
|
28423
|
+
defaultMessage: string;
|
28424
|
+
}>, "many">;
|
28425
|
+
configuration: z.ZodDefault<z.ZodObject<{
|
28426
|
+
styles: z.ZodOptional<z.ZodObject<{
|
28427
|
+
fontVariant: z.ZodOptional<z.ZodEnum<["reg12", "reg14", "reg16", "reg18", "h4", "h3", "h2", "h1"]>>;
|
28428
|
+
}, "strip", z.ZodTypeAny, {
|
28429
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
28430
|
+
}, {
|
28431
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
28432
|
+
}>>;
|
28433
|
+
}, "strip", z.ZodTypeAny, {
|
28434
|
+
styles?: {
|
28435
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
28436
|
+
} | undefined;
|
28437
|
+
}, {
|
28438
|
+
styles?: {
|
28439
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
28440
|
+
} | undefined;
|
28441
|
+
}>>;
|
28442
|
+
}>, "strip", z.ZodTypeAny, {
|
28443
|
+
type: "BULLET_LIST";
|
28444
|
+
id: string;
|
28445
|
+
label: TranslationConfig;
|
28446
|
+
configuration: {
|
28447
|
+
styles?: {
|
28448
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
28449
|
+
} | undefined;
|
28450
|
+
};
|
28451
|
+
items: TranslationConfig[];
|
27221
28452
|
parent?: {
|
27222
28453
|
_fieldId?: string | undefined;
|
27223
28454
|
} | undefined;
|
@@ -29282,14 +30513,9 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
29282
30513
|
notice?: TranslationConfig | undefined;
|
29283
30514
|
} | undefined;
|
29284
30515
|
} | {
|
29285
|
-
type: "
|
30516
|
+
type: "DATE_RANGE";
|
29286
30517
|
id: string;
|
29287
30518
|
label: TranslationConfig;
|
29288
|
-
configuration: {
|
29289
|
-
styles?: {
|
29290
|
-
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
29291
|
-
} | undefined;
|
29292
|
-
};
|
29293
30519
|
parent?: {
|
29294
30520
|
_fieldId?: string | undefined;
|
29295
30521
|
} | undefined;
|
@@ -29298,94 +30524,7 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
29298
30524
|
validator: import(".").JSONSchema;
|
29299
30525
|
}[] | undefined;
|
29300
30526
|
required?: boolean | undefined;
|
29301
|
-
defaultValue?: string | undefined;
|
29302
|
-
conditionals?: ({
|
29303
|
-
type: "SHOW";
|
29304
|
-
conditional: import(".").JSONSchema;
|
29305
|
-
} | {
|
29306
|
-
type: "ENABLE";
|
29307
|
-
conditional: import(".").JSONSchema;
|
29308
|
-
} | {
|
29309
|
-
type: "DISPLAY_ON_REVIEW";
|
29310
|
-
conditional: import(".").JSONSchema;
|
29311
|
-
})[] | undefined;
|
29312
|
-
placeholder?: TranslationConfig | undefined;
|
29313
|
-
hideLabel?: boolean | undefined;
|
29314
|
-
} | {
|
29315
|
-
type: "PAGE_HEADER";
|
29316
|
-
id: string;
|
29317
|
-
label: TranslationConfig;
|
29318
|
-
parent?: {
|
29319
|
-
_fieldId?: string | undefined;
|
29320
|
-
} | undefined;
|
29321
|
-
validation?: {
|
29322
|
-
message: TranslationConfig;
|
29323
|
-
validator: import(".").JSONSchema;
|
29324
|
-
}[] | undefined;
|
29325
|
-
required?: boolean | undefined;
|
29326
|
-
defaultValue?: string | undefined;
|
29327
|
-
conditionals?: ({
|
29328
|
-
type: "SHOW";
|
29329
|
-
conditional: import(".").JSONSchema;
|
29330
|
-
} | {
|
29331
|
-
type: "ENABLE";
|
29332
|
-
conditional: import(".").JSONSchema;
|
29333
|
-
} | {
|
29334
|
-
type: "DISPLAY_ON_REVIEW";
|
29335
|
-
conditional: import(".").JSONSchema;
|
29336
|
-
})[] | undefined;
|
29337
|
-
placeholder?: TranslationConfig | undefined;
|
29338
|
-
hideLabel?: boolean | undefined;
|
29339
|
-
} | {
|
29340
|
-
type: "FILE";
|
29341
|
-
id: string;
|
29342
|
-
label: TranslationConfig;
|
29343
|
-
configuration: {
|
29344
|
-
maxFileSize: number;
|
29345
|
-
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
29346
|
-
style?: {
|
29347
|
-
width?: "full" | "auto" | undefined;
|
29348
|
-
} | undefined;
|
29349
|
-
fileName?: TranslationConfig | undefined;
|
29350
|
-
};
|
29351
|
-
parent?: {
|
29352
|
-
_fieldId?: string | undefined;
|
29353
|
-
} | undefined;
|
29354
|
-
validation?: {
|
29355
|
-
message: TranslationConfig;
|
29356
|
-
validator: import(".").JSONSchema;
|
29357
|
-
}[] | undefined;
|
29358
|
-
required?: boolean | undefined;
|
29359
|
-
defaultValue?: string | number | boolean | undefined;
|
29360
|
-
conditionals?: ({
|
29361
|
-
type: "SHOW";
|
29362
|
-
conditional: import(".").JSONSchema;
|
29363
|
-
} | {
|
29364
|
-
type: "ENABLE";
|
29365
|
-
conditional: import(".").JSONSchema;
|
29366
|
-
} | {
|
29367
|
-
type: "DISPLAY_ON_REVIEW";
|
29368
|
-
conditional: import(".").JSONSchema;
|
29369
|
-
})[] | undefined;
|
29370
|
-
placeholder?: TranslationConfig | undefined;
|
29371
|
-
hideLabel?: boolean | undefined;
|
29372
|
-
} | {
|
29373
|
-
type: "RADIO_GROUP";
|
29374
|
-
id: string;
|
29375
|
-
options: {
|
29376
|
-
value: string;
|
29377
|
-
label: TranslationConfig;
|
29378
|
-
}[];
|
29379
|
-
label: TranslationConfig;
|
29380
|
-
parent?: {
|
29381
|
-
_fieldId?: string | undefined;
|
29382
|
-
} | undefined;
|
29383
|
-
validation?: {
|
29384
|
-
message: TranslationConfig;
|
29385
|
-
validator: import(".").JSONSchema;
|
29386
|
-
}[] | undefined;
|
29387
|
-
required?: boolean | undefined;
|
29388
|
-
defaultValue?: string | undefined;
|
30527
|
+
defaultValue?: string | [string, string] | undefined;
|
29389
30528
|
conditionals?: ({
|
29390
30529
|
type: "SHOW";
|
29391
30530
|
conditional: import(".").JSONSchema;
|
@@ -29399,12 +30538,10 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
29399
30538
|
placeholder?: TranslationConfig | undefined;
|
29400
30539
|
hideLabel?: boolean | undefined;
|
29401
30540
|
configuration?: {
|
29402
|
-
|
29403
|
-
size?: "NORMAL" | "LARGE" | undefined;
|
29404
|
-
} | undefined;
|
30541
|
+
notice?: TranslationConfig | undefined;
|
29405
30542
|
} | undefined;
|
29406
30543
|
} | {
|
29407
|
-
type: "
|
30544
|
+
type: "PARAGRAPH";
|
29408
30545
|
id: string;
|
29409
30546
|
label: TranslationConfig;
|
29410
30547
|
configuration: {
|
@@ -29412,7 +30549,6 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
29412
30549
|
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
29413
30550
|
} | undefined;
|
29414
30551
|
};
|
29415
|
-
items: TranslationConfig[];
|
29416
30552
|
parent?: {
|
29417
30553
|
_fieldId?: string | undefined;
|
29418
30554
|
} | undefined;
|
@@ -29435,12 +30571,135 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
29435
30571
|
placeholder?: TranslationConfig | undefined;
|
29436
30572
|
hideLabel?: boolean | undefined;
|
29437
30573
|
} | {
|
29438
|
-
type: "
|
30574
|
+
type: "PAGE_HEADER";
|
29439
30575
|
id: string;
|
29440
|
-
|
29441
|
-
|
29442
|
-
|
29443
|
-
}
|
30576
|
+
label: TranslationConfig;
|
30577
|
+
parent?: {
|
30578
|
+
_fieldId?: string | undefined;
|
30579
|
+
} | undefined;
|
30580
|
+
validation?: {
|
30581
|
+
message: TranslationConfig;
|
30582
|
+
validator: import(".").JSONSchema;
|
30583
|
+
}[] | undefined;
|
30584
|
+
required?: boolean | undefined;
|
30585
|
+
defaultValue?: string | undefined;
|
30586
|
+
conditionals?: ({
|
30587
|
+
type: "SHOW";
|
30588
|
+
conditional: import(".").JSONSchema;
|
30589
|
+
} | {
|
30590
|
+
type: "ENABLE";
|
30591
|
+
conditional: import(".").JSONSchema;
|
30592
|
+
} | {
|
30593
|
+
type: "DISPLAY_ON_REVIEW";
|
30594
|
+
conditional: import(".").JSONSchema;
|
30595
|
+
})[] | undefined;
|
30596
|
+
placeholder?: TranslationConfig | undefined;
|
30597
|
+
hideLabel?: boolean | undefined;
|
30598
|
+
} | {
|
30599
|
+
type: "FILE";
|
30600
|
+
id: string;
|
30601
|
+
label: TranslationConfig;
|
30602
|
+
configuration: {
|
30603
|
+
maxFileSize: number;
|
30604
|
+
acceptedFileTypes?: ("image/png" | "image/jpg" | "image/jpeg" | "image/svg+xml")[] | undefined;
|
30605
|
+
style?: {
|
30606
|
+
width?: "full" | "auto" | undefined;
|
30607
|
+
} | undefined;
|
30608
|
+
fileName?: TranslationConfig | undefined;
|
30609
|
+
};
|
30610
|
+
parent?: {
|
30611
|
+
_fieldId?: string | undefined;
|
30612
|
+
} | undefined;
|
30613
|
+
validation?: {
|
30614
|
+
message: TranslationConfig;
|
30615
|
+
validator: import(".").JSONSchema;
|
30616
|
+
}[] | undefined;
|
30617
|
+
required?: boolean | undefined;
|
30618
|
+
defaultValue?: string | number | boolean | undefined;
|
30619
|
+
conditionals?: ({
|
30620
|
+
type: "SHOW";
|
30621
|
+
conditional: import(".").JSONSchema;
|
30622
|
+
} | {
|
30623
|
+
type: "ENABLE";
|
30624
|
+
conditional: import(".").JSONSchema;
|
30625
|
+
} | {
|
30626
|
+
type: "DISPLAY_ON_REVIEW";
|
30627
|
+
conditional: import(".").JSONSchema;
|
30628
|
+
})[] | undefined;
|
30629
|
+
placeholder?: TranslationConfig | undefined;
|
30630
|
+
hideLabel?: boolean | undefined;
|
30631
|
+
} | {
|
30632
|
+
type: "RADIO_GROUP";
|
30633
|
+
id: string;
|
30634
|
+
options: {
|
30635
|
+
value: string;
|
30636
|
+
label: TranslationConfig;
|
30637
|
+
}[];
|
30638
|
+
label: TranslationConfig;
|
30639
|
+
parent?: {
|
30640
|
+
_fieldId?: string | undefined;
|
30641
|
+
} | undefined;
|
30642
|
+
validation?: {
|
30643
|
+
message: TranslationConfig;
|
30644
|
+
validator: import(".").JSONSchema;
|
30645
|
+
}[] | undefined;
|
30646
|
+
required?: boolean | undefined;
|
30647
|
+
defaultValue?: string | undefined;
|
30648
|
+
conditionals?: ({
|
30649
|
+
type: "SHOW";
|
30650
|
+
conditional: import(".").JSONSchema;
|
30651
|
+
} | {
|
30652
|
+
type: "ENABLE";
|
30653
|
+
conditional: import(".").JSONSchema;
|
30654
|
+
} | {
|
30655
|
+
type: "DISPLAY_ON_REVIEW";
|
30656
|
+
conditional: import(".").JSONSchema;
|
30657
|
+
})[] | undefined;
|
30658
|
+
placeholder?: TranslationConfig | undefined;
|
30659
|
+
hideLabel?: boolean | undefined;
|
30660
|
+
configuration?: {
|
30661
|
+
styles?: {
|
30662
|
+
size?: "NORMAL" | "LARGE" | undefined;
|
30663
|
+
} | undefined;
|
30664
|
+
} | undefined;
|
30665
|
+
} | {
|
30666
|
+
type: "BULLET_LIST";
|
30667
|
+
id: string;
|
30668
|
+
label: TranslationConfig;
|
30669
|
+
configuration: {
|
30670
|
+
styles?: {
|
30671
|
+
fontVariant?: "reg12" | "reg14" | "reg16" | "reg18" | "h4" | "h3" | "h2" | "h1" | undefined;
|
30672
|
+
} | undefined;
|
30673
|
+
};
|
30674
|
+
items: TranslationConfig[];
|
30675
|
+
parent?: {
|
30676
|
+
_fieldId?: string | undefined;
|
30677
|
+
} | undefined;
|
30678
|
+
validation?: {
|
30679
|
+
message: TranslationConfig;
|
30680
|
+
validator: import(".").JSONSchema;
|
30681
|
+
}[] | undefined;
|
30682
|
+
required?: boolean | undefined;
|
30683
|
+
defaultValue?: string | undefined;
|
30684
|
+
conditionals?: ({
|
30685
|
+
type: "SHOW";
|
30686
|
+
conditional: import(".").JSONSchema;
|
30687
|
+
} | {
|
30688
|
+
type: "ENABLE";
|
30689
|
+
conditional: import(".").JSONSchema;
|
30690
|
+
} | {
|
30691
|
+
type: "DISPLAY_ON_REVIEW";
|
30692
|
+
conditional: import(".").JSONSchema;
|
30693
|
+
})[] | undefined;
|
30694
|
+
placeholder?: TranslationConfig | undefined;
|
30695
|
+
hideLabel?: boolean | undefined;
|
30696
|
+
} | {
|
30697
|
+
type: "SELECT";
|
30698
|
+
id: string;
|
30699
|
+
options: {
|
30700
|
+
value: string;
|
30701
|
+
label: TranslationConfig;
|
30702
|
+
}[];
|
29444
30703
|
label: TranslationConfig;
|
29445
30704
|
parent?: {
|
29446
30705
|
_fieldId?: string | undefined;
|
@@ -30069,6 +31328,50 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
30069
31328
|
defaultMessage: string;
|
30070
31329
|
} | undefined;
|
30071
31330
|
} | undefined;
|
31331
|
+
} | {
|
31332
|
+
type: "DATE_RANGE";
|
31333
|
+
id: string;
|
31334
|
+
label: {
|
31335
|
+
id: string;
|
31336
|
+
description: string;
|
31337
|
+
defaultMessage: string;
|
31338
|
+
};
|
31339
|
+
parent?: {
|
31340
|
+
_fieldId?: string | undefined;
|
31341
|
+
} | undefined;
|
31342
|
+
validation?: {
|
31343
|
+
message: {
|
31344
|
+
id: string;
|
31345
|
+
description: string;
|
31346
|
+
defaultMessage: string;
|
31347
|
+
};
|
31348
|
+
validator: import(".").JSONSchema;
|
31349
|
+
}[] | undefined;
|
31350
|
+
required?: boolean | undefined;
|
31351
|
+
defaultValue?: string | [string, string] | undefined;
|
31352
|
+
conditionals?: ({
|
31353
|
+
type: "SHOW";
|
31354
|
+
conditional: import(".").JSONSchema;
|
31355
|
+
} | {
|
31356
|
+
type: "ENABLE";
|
31357
|
+
conditional: import(".").JSONSchema;
|
31358
|
+
} | {
|
31359
|
+
type: "DISPLAY_ON_REVIEW";
|
31360
|
+
conditional: import(".").JSONSchema;
|
31361
|
+
})[] | undefined;
|
31362
|
+
placeholder?: {
|
31363
|
+
id: string;
|
31364
|
+
description: string;
|
31365
|
+
defaultMessage: string;
|
31366
|
+
} | undefined;
|
31367
|
+
hideLabel?: boolean | undefined;
|
31368
|
+
configuration?: {
|
31369
|
+
notice?: {
|
31370
|
+
id: string;
|
31371
|
+
description: string;
|
31372
|
+
defaultMessage: string;
|
31373
|
+
} | undefined;
|
31374
|
+
} | undefined;
|
30072
31375
|
} | {
|
30073
31376
|
type: "PARAGRAPH";
|
30074
31377
|
id: string;
|
@@ -31648,6 +32951,137 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
31648
32951
|
defaultMessage: string;
|
31649
32952
|
}>;
|
31650
32953
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
32954
|
+
}, {
|
32955
|
+
type: z.ZodLiteral<"DATE_RANGE">;
|
32956
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>>;
|
32957
|
+
configuration: z.ZodOptional<z.ZodObject<{
|
32958
|
+
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
32959
|
+
id: string;
|
32960
|
+
description: string;
|
32961
|
+
defaultMessage: string;
|
32962
|
+
}>>;
|
32963
|
+
}, "strip", z.ZodTypeAny, {
|
32964
|
+
notice?: TranslationConfig | undefined;
|
32965
|
+
}, {
|
32966
|
+
notice?: {
|
32967
|
+
id: string;
|
32968
|
+
description: string;
|
32969
|
+
defaultMessage: string;
|
32970
|
+
} | undefined;
|
32971
|
+
}>>;
|
32972
|
+
}>, "strip", z.ZodTypeAny, {
|
32973
|
+
type: "DATE_RANGE";
|
32974
|
+
id: string;
|
32975
|
+
label: TranslationConfig;
|
32976
|
+
parent?: {
|
32977
|
+
_fieldId?: string | undefined;
|
32978
|
+
} | undefined;
|
32979
|
+
validation?: {
|
32980
|
+
message: TranslationConfig;
|
32981
|
+
validator: import(".").JSONSchema;
|
32982
|
+
}[] | undefined;
|
32983
|
+
required?: boolean | undefined;
|
32984
|
+
defaultValue?: string | [string, string] | undefined;
|
32985
|
+
conditionals?: ({
|
32986
|
+
type: "SHOW";
|
32987
|
+
conditional: import(".").JSONSchema;
|
32988
|
+
} | {
|
32989
|
+
type: "ENABLE";
|
32990
|
+
conditional: import(".").JSONSchema;
|
32991
|
+
} | {
|
32992
|
+
type: "DISPLAY_ON_REVIEW";
|
32993
|
+
conditional: import(".").JSONSchema;
|
32994
|
+
})[] | undefined;
|
32995
|
+
placeholder?: TranslationConfig | undefined;
|
32996
|
+
hideLabel?: boolean | undefined;
|
32997
|
+
configuration?: {
|
32998
|
+
notice?: TranslationConfig | undefined;
|
32999
|
+
} | undefined;
|
33000
|
+
}, {
|
33001
|
+
type: "DATE_RANGE";
|
33002
|
+
id: string;
|
33003
|
+
label: {
|
33004
|
+
id: string;
|
33005
|
+
description: string;
|
33006
|
+
defaultMessage: string;
|
33007
|
+
};
|
33008
|
+
parent?: {
|
33009
|
+
_fieldId?: string | undefined;
|
33010
|
+
} | undefined;
|
33011
|
+
validation?: {
|
33012
|
+
message: {
|
33013
|
+
id: string;
|
33014
|
+
description: string;
|
33015
|
+
defaultMessage: string;
|
33016
|
+
};
|
33017
|
+
validator: import(".").JSONSchema;
|
33018
|
+
}[] | undefined;
|
33019
|
+
required?: boolean | undefined;
|
33020
|
+
defaultValue?: string | [string, string] | undefined;
|
33021
|
+
conditionals?: ({
|
33022
|
+
type: "SHOW";
|
33023
|
+
conditional: import(".").JSONSchema;
|
33024
|
+
} | {
|
33025
|
+
type: "ENABLE";
|
33026
|
+
conditional: import(".").JSONSchema;
|
33027
|
+
} | {
|
33028
|
+
type: "DISPLAY_ON_REVIEW";
|
33029
|
+
conditional: import(".").JSONSchema;
|
33030
|
+
})[] | undefined;
|
33031
|
+
placeholder?: {
|
33032
|
+
id: string;
|
33033
|
+
description: string;
|
33034
|
+
defaultMessage: string;
|
33035
|
+
} | undefined;
|
33036
|
+
hideLabel?: boolean | undefined;
|
33037
|
+
configuration?: {
|
33038
|
+
notice?: {
|
33039
|
+
id: string;
|
33040
|
+
description: string;
|
33041
|
+
defaultMessage: string;
|
33042
|
+
} | undefined;
|
33043
|
+
} | undefined;
|
33044
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
33045
|
+
id: z.ZodString;
|
33046
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
33047
|
+
parent: z.ZodOptional<z.ZodObject<{
|
33048
|
+
_fieldId: z.ZodOptional<z.ZodString>;
|
33049
|
+
}, "strip", z.ZodTypeAny, {
|
33050
|
+
_fieldId?: string | undefined;
|
33051
|
+
}, {
|
33052
|
+
_fieldId?: string | undefined;
|
33053
|
+
}>>;
|
33054
|
+
conditionals: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodDiscriminatedUnion<"type", import("./Conditional").FieldConditionalType[]>, "many">>>;
|
33055
|
+
required: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
33056
|
+
placeholder: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
33057
|
+
id: string;
|
33058
|
+
description: string;
|
33059
|
+
defaultMessage: string;
|
33060
|
+
}>>;
|
33061
|
+
validation: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
|
33062
|
+
validator: z.ZodType<import(".").JSONSchema, z.ZodTypeDef, import(".").JSONSchema>;
|
33063
|
+
message: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
33064
|
+
id: string;
|
33065
|
+
description: string;
|
33066
|
+
defaultMessage: string;
|
33067
|
+
}>;
|
33068
|
+
}, "strip", z.ZodTypeAny, {
|
33069
|
+
message: TranslationConfig;
|
33070
|
+
validator: import(".").JSONSchema;
|
33071
|
+
}, {
|
33072
|
+
message: {
|
33073
|
+
id: string;
|
33074
|
+
description: string;
|
33075
|
+
defaultMessage: string;
|
33076
|
+
};
|
33077
|
+
validator: import(".").JSONSchema;
|
33078
|
+
}>, "many">>>;
|
33079
|
+
label: z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
33080
|
+
id: string;
|
33081
|
+
description: string;
|
33082
|
+
defaultMessage: string;
|
33083
|
+
}>;
|
33084
|
+
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
31651
33085
|
}, {
|
31652
33086
|
type: z.ZodLiteral<"PARAGRAPH">;
|
31653
33087
|
defaultValue: z.ZodOptional<z.ZodString>;
|
@@ -34168,6 +35602,34 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
34168
35602
|
configuration?: {
|
34169
35603
|
notice?: TranslationConfig | undefined;
|
34170
35604
|
} | undefined;
|
35605
|
+
} | {
|
35606
|
+
type: "DATE_RANGE";
|
35607
|
+
id: string;
|
35608
|
+
label: TranslationConfig;
|
35609
|
+
parent?: {
|
35610
|
+
_fieldId?: string | undefined;
|
35611
|
+
} | undefined;
|
35612
|
+
validation?: {
|
35613
|
+
message: TranslationConfig;
|
35614
|
+
validator: import(".").JSONSchema;
|
35615
|
+
}[] | undefined;
|
35616
|
+
required?: boolean | undefined;
|
35617
|
+
defaultValue?: string | [string, string] | undefined;
|
35618
|
+
conditionals?: ({
|
35619
|
+
type: "SHOW";
|
35620
|
+
conditional: import(".").JSONSchema;
|
35621
|
+
} | {
|
35622
|
+
type: "ENABLE";
|
35623
|
+
conditional: import(".").JSONSchema;
|
35624
|
+
} | {
|
35625
|
+
type: "DISPLAY_ON_REVIEW";
|
35626
|
+
conditional: import(".").JSONSchema;
|
35627
|
+
})[] | undefined;
|
35628
|
+
placeholder?: TranslationConfig | undefined;
|
35629
|
+
hideLabel?: boolean | undefined;
|
35630
|
+
configuration?: {
|
35631
|
+
notice?: TranslationConfig | undefined;
|
35632
|
+
} | undefined;
|
34171
35633
|
} | {
|
34172
35634
|
type: "PARAGRAPH";
|
34173
35635
|
id: string;
|
@@ -34985,6 +36447,50 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
34985
36447
|
defaultMessage: string;
|
34986
36448
|
} | undefined;
|
34987
36449
|
} | undefined;
|
36450
|
+
} | {
|
36451
|
+
type: "DATE_RANGE";
|
36452
|
+
id: string;
|
36453
|
+
label: {
|
36454
|
+
id: string;
|
36455
|
+
description: string;
|
36456
|
+
defaultMessage: string;
|
36457
|
+
};
|
36458
|
+
parent?: {
|
36459
|
+
_fieldId?: string | undefined;
|
36460
|
+
} | undefined;
|
36461
|
+
validation?: {
|
36462
|
+
message: {
|
36463
|
+
id: string;
|
36464
|
+
description: string;
|
36465
|
+
defaultMessage: string;
|
36466
|
+
};
|
36467
|
+
validator: import(".").JSONSchema;
|
36468
|
+
}[] | undefined;
|
36469
|
+
required?: boolean | undefined;
|
36470
|
+
defaultValue?: string | [string, string] | undefined;
|
36471
|
+
conditionals?: ({
|
36472
|
+
type: "SHOW";
|
36473
|
+
conditional: import(".").JSONSchema;
|
36474
|
+
} | {
|
36475
|
+
type: "ENABLE";
|
36476
|
+
conditional: import(".").JSONSchema;
|
36477
|
+
} | {
|
36478
|
+
type: "DISPLAY_ON_REVIEW";
|
36479
|
+
conditional: import(".").JSONSchema;
|
36480
|
+
})[] | undefined;
|
36481
|
+
placeholder?: {
|
36482
|
+
id: string;
|
36483
|
+
description: string;
|
36484
|
+
defaultMessage: string;
|
36485
|
+
} | undefined;
|
36486
|
+
hideLabel?: boolean | undefined;
|
36487
|
+
configuration?: {
|
36488
|
+
notice?: {
|
36489
|
+
id: string;
|
36490
|
+
description: string;
|
36491
|
+
defaultMessage: string;
|
36492
|
+
} | undefined;
|
36493
|
+
} | undefined;
|
34988
36494
|
} | {
|
34989
36495
|
type: "PARAGRAPH";
|
34990
36496
|
id: string;
|
@@ -35869,6 +37375,34 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
35869
37375
|
configuration?: {
|
35870
37376
|
notice?: TranslationConfig | undefined;
|
35871
37377
|
} | undefined;
|
37378
|
+
} | {
|
37379
|
+
type: "DATE_RANGE";
|
37380
|
+
id: string;
|
37381
|
+
label: TranslationConfig;
|
37382
|
+
parent?: {
|
37383
|
+
_fieldId?: string | undefined;
|
37384
|
+
} | undefined;
|
37385
|
+
validation?: {
|
37386
|
+
message: TranslationConfig;
|
37387
|
+
validator: import(".").JSONSchema;
|
37388
|
+
}[] | undefined;
|
37389
|
+
required?: boolean | undefined;
|
37390
|
+
defaultValue?: string | [string, string] | undefined;
|
37391
|
+
conditionals?: ({
|
37392
|
+
type: "SHOW";
|
37393
|
+
conditional: import(".").JSONSchema;
|
37394
|
+
} | {
|
37395
|
+
type: "ENABLE";
|
37396
|
+
conditional: import(".").JSONSchema;
|
37397
|
+
} | {
|
37398
|
+
type: "DISPLAY_ON_REVIEW";
|
37399
|
+
conditional: import(".").JSONSchema;
|
37400
|
+
})[] | undefined;
|
37401
|
+
placeholder?: TranslationConfig | undefined;
|
37402
|
+
hideLabel?: boolean | undefined;
|
37403
|
+
configuration?: {
|
37404
|
+
notice?: TranslationConfig | undefined;
|
37405
|
+
} | undefined;
|
35872
37406
|
} | {
|
35873
37407
|
type: "PARAGRAPH";
|
35874
37408
|
id: string;
|
@@ -36550,6 +38084,34 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
36550
38084
|
configuration?: {
|
36551
38085
|
notice?: TranslationConfig | undefined;
|
36552
38086
|
} | undefined;
|
38087
|
+
} | {
|
38088
|
+
type: "DATE_RANGE";
|
38089
|
+
id: string;
|
38090
|
+
label: TranslationConfig;
|
38091
|
+
parent?: {
|
38092
|
+
_fieldId?: string | undefined;
|
38093
|
+
} | undefined;
|
38094
|
+
validation?: {
|
38095
|
+
message: TranslationConfig;
|
38096
|
+
validator: import(".").JSONSchema;
|
38097
|
+
}[] | undefined;
|
38098
|
+
required?: boolean | undefined;
|
38099
|
+
defaultValue?: string | [string, string] | undefined;
|
38100
|
+
conditionals?: ({
|
38101
|
+
type: "SHOW";
|
38102
|
+
conditional: import(".").JSONSchema;
|
38103
|
+
} | {
|
38104
|
+
type: "ENABLE";
|
38105
|
+
conditional: import(".").JSONSchema;
|
38106
|
+
} | {
|
38107
|
+
type: "DISPLAY_ON_REVIEW";
|
38108
|
+
conditional: import(".").JSONSchema;
|
38109
|
+
})[] | undefined;
|
38110
|
+
placeholder?: TranslationConfig | undefined;
|
38111
|
+
hideLabel?: boolean | undefined;
|
38112
|
+
configuration?: {
|
38113
|
+
notice?: TranslationConfig | undefined;
|
38114
|
+
} | undefined;
|
36553
38115
|
} | {
|
36554
38116
|
type: "PARAGRAPH";
|
36555
38117
|
id: string;
|
@@ -37345,6 +38907,50 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
37345
38907
|
defaultMessage: string;
|
37346
38908
|
} | undefined;
|
37347
38909
|
} | undefined;
|
38910
|
+
} | {
|
38911
|
+
type: "DATE_RANGE";
|
38912
|
+
id: string;
|
38913
|
+
label: {
|
38914
|
+
id: string;
|
38915
|
+
description: string;
|
38916
|
+
defaultMessage: string;
|
38917
|
+
};
|
38918
|
+
parent?: {
|
38919
|
+
_fieldId?: string | undefined;
|
38920
|
+
} | undefined;
|
38921
|
+
validation?: {
|
38922
|
+
message: {
|
38923
|
+
id: string;
|
38924
|
+
description: string;
|
38925
|
+
defaultMessage: string;
|
38926
|
+
};
|
38927
|
+
validator: import(".").JSONSchema;
|
38928
|
+
}[] | undefined;
|
38929
|
+
required?: boolean | undefined;
|
38930
|
+
defaultValue?: string | [string, string] | undefined;
|
38931
|
+
conditionals?: ({
|
38932
|
+
type: "SHOW";
|
38933
|
+
conditional: import(".").JSONSchema;
|
38934
|
+
} | {
|
38935
|
+
type: "ENABLE";
|
38936
|
+
conditional: import(".").JSONSchema;
|
38937
|
+
} | {
|
38938
|
+
type: "DISPLAY_ON_REVIEW";
|
38939
|
+
conditional: import(".").JSONSchema;
|
38940
|
+
})[] | undefined;
|
38941
|
+
placeholder?: {
|
38942
|
+
id: string;
|
38943
|
+
description: string;
|
38944
|
+
defaultMessage: string;
|
38945
|
+
} | undefined;
|
38946
|
+
hideLabel?: boolean | undefined;
|
38947
|
+
configuration?: {
|
38948
|
+
notice?: {
|
38949
|
+
id: string;
|
38950
|
+
description: string;
|
38951
|
+
defaultMessage: string;
|
38952
|
+
} | undefined;
|
38953
|
+
} | undefined;
|
37348
38954
|
} | {
|
37349
38955
|
type: "PARAGRAPH";
|
37350
38956
|
id: string;
|
@@ -38375,6 +39981,50 @@ export declare const FormConfig: z.ZodUnion<[z.ZodObject<{
|
|
38375
39981
|
defaultMessage: string;
|
38376
39982
|
} | undefined;
|
38377
39983
|
} | undefined;
|
39984
|
+
} | {
|
39985
|
+
type: "DATE_RANGE";
|
39986
|
+
id: string;
|
39987
|
+
label: {
|
39988
|
+
id: string;
|
39989
|
+
description: string;
|
39990
|
+
defaultMessage: string;
|
39991
|
+
};
|
39992
|
+
parent?: {
|
39993
|
+
_fieldId?: string | undefined;
|
39994
|
+
} | undefined;
|
39995
|
+
validation?: {
|
39996
|
+
message: {
|
39997
|
+
id: string;
|
39998
|
+
description: string;
|
39999
|
+
defaultMessage: string;
|
40000
|
+
};
|
40001
|
+
validator: import(".").JSONSchema;
|
40002
|
+
}[] | undefined;
|
40003
|
+
required?: boolean | undefined;
|
40004
|
+
defaultValue?: string | [string, string] | undefined;
|
40005
|
+
conditionals?: ({
|
40006
|
+
type: "SHOW";
|
40007
|
+
conditional: import(".").JSONSchema;
|
40008
|
+
} | {
|
40009
|
+
type: "ENABLE";
|
40010
|
+
conditional: import(".").JSONSchema;
|
40011
|
+
} | {
|
40012
|
+
type: "DISPLAY_ON_REVIEW";
|
40013
|
+
conditional: import(".").JSONSchema;
|
40014
|
+
})[] | undefined;
|
40015
|
+
placeholder?: {
|
40016
|
+
id: string;
|
40017
|
+
description: string;
|
40018
|
+
defaultMessage: string;
|
40019
|
+
} | undefined;
|
40020
|
+
hideLabel?: boolean | undefined;
|
40021
|
+
configuration?: {
|
40022
|
+
notice?: {
|
40023
|
+
id: string;
|
40024
|
+
description: string;
|
40025
|
+
defaultMessage: string;
|
40026
|
+
} | undefined;
|
40027
|
+
} | undefined;
|
38378
40028
|
} | {
|
38379
40029
|
type: "PARAGRAPH";
|
38380
40030
|
id: string;
|