@opencrvs/toolkit 1.9.6-rc.f660676 → 1.9.6-rc.f7b878f
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/conditionals/conditionals.d.ts +5 -0
- package/dist/commons/events/FieldConfig.d.ts +168 -6
- package/dist/commons/events/FieldTypeMapping.d.ts +18 -0
- package/dist/commons/events/FieldValue.d.ts +1 -0
- package/dist/conditionals/index.js +11 -0
- package/dist/events/index.js +471 -455
- package/dist/notification/index.js +488 -473
- package/package.json +1 -1
|
@@ -120,6 +120,7 @@ declare const BaseField: z.ZodObject<{
|
|
|
120
120
|
defaultMessage: string;
|
|
121
121
|
}>>;
|
|
122
122
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
123
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
123
124
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
124
125
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
125
126
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -179,6 +180,7 @@ declare const BaseField: z.ZodObject<{
|
|
|
179
180
|
placeholder?: TranslationConfig | undefined;
|
|
180
181
|
helperText?: TranslationConfig | undefined;
|
|
181
182
|
hideLabel?: boolean | undefined;
|
|
183
|
+
hideErrorLabel?: boolean | undefined;
|
|
182
184
|
uncorrectable?: boolean | undefined;
|
|
183
185
|
analytics?: boolean | undefined;
|
|
184
186
|
}, {
|
|
@@ -239,6 +241,7 @@ declare const BaseField: z.ZodObject<{
|
|
|
239
241
|
defaultMessage: string;
|
|
240
242
|
} | undefined;
|
|
241
243
|
hideLabel?: boolean | undefined;
|
|
244
|
+
hideErrorLabel?: boolean | undefined;
|
|
242
245
|
uncorrectable?: boolean | undefined;
|
|
243
246
|
analytics?: boolean | undefined;
|
|
244
247
|
}>;
|
|
@@ -315,6 +318,7 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
315
318
|
defaultMessage: string;
|
|
316
319
|
}>>;
|
|
317
320
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
321
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
318
322
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
319
323
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
320
324
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -377,6 +381,7 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
377
381
|
placeholder?: TranslationConfig | undefined;
|
|
378
382
|
helperText?: TranslationConfig | undefined;
|
|
379
383
|
hideLabel?: boolean | undefined;
|
|
384
|
+
hideErrorLabel?: boolean | undefined;
|
|
380
385
|
uncorrectable?: boolean | undefined;
|
|
381
386
|
analytics?: boolean | undefined;
|
|
382
387
|
}, {
|
|
@@ -438,6 +443,7 @@ declare const Divider: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
438
443
|
defaultMessage: string;
|
|
439
444
|
} | undefined;
|
|
440
445
|
hideLabel?: boolean | undefined;
|
|
446
|
+
hideErrorLabel?: boolean | undefined;
|
|
441
447
|
uncorrectable?: boolean | undefined;
|
|
442
448
|
analytics?: boolean | undefined;
|
|
443
449
|
}>;
|
|
@@ -514,6 +520,7 @@ export declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
514
520
|
defaultMessage: string;
|
|
515
521
|
}>>;
|
|
516
522
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
523
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
517
524
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
518
525
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
519
526
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -618,6 +625,7 @@ export declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
618
625
|
placeholder?: TranslationConfig | undefined;
|
|
619
626
|
helperText?: TranslationConfig | undefined;
|
|
620
627
|
hideLabel?: boolean | undefined;
|
|
628
|
+
hideErrorLabel?: boolean | undefined;
|
|
621
629
|
uncorrectable?: boolean | undefined;
|
|
622
630
|
analytics?: boolean | undefined;
|
|
623
631
|
defaultValue?: string | {
|
|
@@ -689,6 +697,7 @@ export declare const TextField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
689
697
|
defaultMessage: string;
|
|
690
698
|
} | undefined;
|
|
691
699
|
hideLabel?: boolean | undefined;
|
|
700
|
+
hideErrorLabel?: boolean | undefined;
|
|
692
701
|
uncorrectable?: boolean | undefined;
|
|
693
702
|
analytics?: boolean | undefined;
|
|
694
703
|
defaultValue?: string | {
|
|
@@ -783,6 +792,7 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
783
792
|
defaultMessage: string;
|
|
784
793
|
}>>;
|
|
785
794
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
795
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
786
796
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
787
797
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
788
798
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -878,6 +888,7 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
878
888
|
placeholder?: TranslationConfig | undefined;
|
|
879
889
|
helperText?: TranslationConfig | undefined;
|
|
880
890
|
hideLabel?: boolean | undefined;
|
|
891
|
+
hideErrorLabel?: boolean | undefined;
|
|
881
892
|
uncorrectable?: boolean | undefined;
|
|
882
893
|
analytics?: boolean | undefined;
|
|
883
894
|
defaultValue?: number | undefined;
|
|
@@ -946,6 +957,7 @@ declare const NumberField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
946
957
|
defaultMessage: string;
|
|
947
958
|
} | undefined;
|
|
948
959
|
hideLabel?: boolean | undefined;
|
|
960
|
+
hideErrorLabel?: boolean | undefined;
|
|
949
961
|
uncorrectable?: boolean | undefined;
|
|
950
962
|
analytics?: boolean | undefined;
|
|
951
963
|
defaultValue?: number | undefined;
|
|
@@ -1036,6 +1048,7 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1036
1048
|
defaultMessage: string;
|
|
1037
1049
|
}>>;
|
|
1038
1050
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1051
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1039
1052
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1040
1053
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1041
1054
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1134,6 +1147,7 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1134
1147
|
placeholder?: TranslationConfig | undefined;
|
|
1135
1148
|
helperText?: TranslationConfig | undefined;
|
|
1136
1149
|
hideLabel?: boolean | undefined;
|
|
1150
|
+
hideErrorLabel?: boolean | undefined;
|
|
1137
1151
|
uncorrectable?: boolean | undefined;
|
|
1138
1152
|
analytics?: boolean | undefined;
|
|
1139
1153
|
defaultValue?: string | undefined;
|
|
@@ -1203,6 +1217,7 @@ declare const TextAreaField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1203
1217
|
defaultMessage: string;
|
|
1204
1218
|
} | undefined;
|
|
1205
1219
|
hideLabel?: boolean | undefined;
|
|
1220
|
+
hideErrorLabel?: boolean | undefined;
|
|
1206
1221
|
uncorrectable?: boolean | undefined;
|
|
1207
1222
|
analytics?: boolean | undefined;
|
|
1208
1223
|
defaultValue?: string | undefined;
|
|
@@ -1299,6 +1314,7 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1299
1314
|
defaultMessage: string;
|
|
1300
1315
|
}>>;
|
|
1301
1316
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1317
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1302
1318
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1303
1319
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1304
1320
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1382,6 +1398,7 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1382
1398
|
placeholder?: TranslationConfig | undefined;
|
|
1383
1399
|
helperText?: TranslationConfig | undefined;
|
|
1384
1400
|
hideLabel?: boolean | undefined;
|
|
1401
|
+
hideErrorLabel?: boolean | undefined;
|
|
1385
1402
|
uncorrectable?: boolean | undefined;
|
|
1386
1403
|
analytics?: boolean | undefined;
|
|
1387
1404
|
defaultValue?: string | undefined;
|
|
@@ -1449,6 +1466,7 @@ declare const SignatureField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1449
1466
|
defaultMessage: string;
|
|
1450
1467
|
} | undefined;
|
|
1451
1468
|
hideLabel?: boolean | undefined;
|
|
1469
|
+
hideErrorLabel?: boolean | undefined;
|
|
1452
1470
|
uncorrectable?: boolean | undefined;
|
|
1453
1471
|
analytics?: boolean | undefined;
|
|
1454
1472
|
defaultValue?: string | undefined;
|
|
@@ -1530,6 +1548,7 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1530
1548
|
defaultMessage: string;
|
|
1531
1549
|
}>>;
|
|
1532
1550
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1551
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1533
1552
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1534
1553
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1535
1554
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1600,6 +1619,7 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1600
1619
|
placeholder?: TranslationConfig | undefined;
|
|
1601
1620
|
helperText?: TranslationConfig | undefined;
|
|
1602
1621
|
hideLabel?: boolean | undefined;
|
|
1622
|
+
hideErrorLabel?: boolean | undefined;
|
|
1603
1623
|
uncorrectable?: boolean | undefined;
|
|
1604
1624
|
analytics?: boolean | undefined;
|
|
1605
1625
|
defaultValue?: string | undefined;
|
|
@@ -1665,6 +1685,7 @@ export declare const EmailField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1665
1685
|
defaultMessage: string;
|
|
1666
1686
|
} | undefined;
|
|
1667
1687
|
hideLabel?: boolean | undefined;
|
|
1688
|
+
hideErrorLabel?: boolean | undefined;
|
|
1668
1689
|
uncorrectable?: boolean | undefined;
|
|
1669
1690
|
analytics?: boolean | undefined;
|
|
1670
1691
|
defaultValue?: string | undefined;
|
|
@@ -1745,6 +1766,7 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1745
1766
|
defaultMessage: string;
|
|
1746
1767
|
}>>;
|
|
1747
1768
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1769
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1748
1770
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1749
1771
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1750
1772
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1768,7 +1790,13 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1768
1790
|
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1769
1791
|
}, {
|
|
1770
1792
|
type: z.ZodLiteral<"DATE">;
|
|
1771
|
-
defaultValue: z.ZodOptional<z.
|
|
1793
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1794
|
+
$$now: z.ZodLiteral<true>;
|
|
1795
|
+
}, "strip", z.ZodTypeAny, {
|
|
1796
|
+
$$now: true;
|
|
1797
|
+
}, {
|
|
1798
|
+
$$now: true;
|
|
1799
|
+
}>, z.ZodString]>>;
|
|
1772
1800
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
1773
1801
|
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
1774
1802
|
id: string;
|
|
@@ -1823,9 +1851,12 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1823
1851
|
placeholder?: TranslationConfig | undefined;
|
|
1824
1852
|
helperText?: TranslationConfig | undefined;
|
|
1825
1853
|
hideLabel?: boolean | undefined;
|
|
1854
|
+
hideErrorLabel?: boolean | undefined;
|
|
1826
1855
|
uncorrectable?: boolean | undefined;
|
|
1827
1856
|
analytics?: boolean | undefined;
|
|
1828
|
-
defaultValue?: string |
|
|
1857
|
+
defaultValue?: string | {
|
|
1858
|
+
$$now: true;
|
|
1859
|
+
} | undefined;
|
|
1829
1860
|
configuration?: {
|
|
1830
1861
|
notice?: TranslationConfig | undefined;
|
|
1831
1862
|
} | undefined;
|
|
@@ -1888,9 +1919,12 @@ declare const DateField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1888
1919
|
defaultMessage: string;
|
|
1889
1920
|
} | undefined;
|
|
1890
1921
|
hideLabel?: boolean | undefined;
|
|
1922
|
+
hideErrorLabel?: boolean | undefined;
|
|
1891
1923
|
uncorrectable?: boolean | undefined;
|
|
1892
1924
|
analytics?: boolean | undefined;
|
|
1893
|
-
defaultValue?: string |
|
|
1925
|
+
defaultValue?: string | {
|
|
1926
|
+
$$now: true;
|
|
1927
|
+
} | undefined;
|
|
1894
1928
|
configuration?: {
|
|
1895
1929
|
notice?: {
|
|
1896
1930
|
id: string;
|
|
@@ -1972,6 +2006,7 @@ declare const AgeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1972
2006
|
defaultMessage: string;
|
|
1973
2007
|
}>>;
|
|
1974
2008
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2009
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1975
2010
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1976
2011
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1977
2012
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2087,6 +2122,7 @@ declare const AgeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2087
2122
|
placeholder?: TranslationConfig | undefined;
|
|
2088
2123
|
helperText?: TranslationConfig | undefined;
|
|
2089
2124
|
hideLabel?: boolean | undefined;
|
|
2125
|
+
hideErrorLabel?: boolean | undefined;
|
|
2090
2126
|
uncorrectable?: boolean | undefined;
|
|
2091
2127
|
analytics?: boolean | undefined;
|
|
2092
2128
|
defaultValue?: number | undefined;
|
|
@@ -2165,6 +2201,7 @@ declare const AgeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2165
2201
|
defaultMessage: string;
|
|
2166
2202
|
} | undefined;
|
|
2167
2203
|
hideLabel?: boolean | undefined;
|
|
2204
|
+
hideErrorLabel?: boolean | undefined;
|
|
2168
2205
|
uncorrectable?: boolean | undefined;
|
|
2169
2206
|
analytics?: boolean | undefined;
|
|
2170
2207
|
defaultValue?: number | undefined;
|
|
@@ -2242,6 +2279,7 @@ declare const TimeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2242
2279
|
defaultMessage: string;
|
|
2243
2280
|
}>>;
|
|
2244
2281
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2282
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2245
2283
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2246
2284
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2247
2285
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2265,7 +2303,13 @@ declare const TimeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2265
2303
|
analytics: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2266
2304
|
}, {
|
|
2267
2305
|
type: z.ZodLiteral<"TIME">;
|
|
2268
|
-
defaultValue: z.ZodOptional<z.
|
|
2306
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2307
|
+
$$now: z.ZodLiteral<true>;
|
|
2308
|
+
}, "strip", z.ZodTypeAny, {
|
|
2309
|
+
$$now: true;
|
|
2310
|
+
}, {
|
|
2311
|
+
$$now: true;
|
|
2312
|
+
}>, z.ZodString]>>;
|
|
2269
2313
|
configuration: z.ZodOptional<z.ZodObject<{
|
|
2270
2314
|
use12HourFormat: z.ZodOptional<z.ZodBoolean>;
|
|
2271
2315
|
notice: z.ZodOptional<z.ZodObject<import("./TranslationConfig").MessageDescriptorZod, "strip", z.ZodTypeAny, TranslationConfig, {
|
|
@@ -2323,9 +2367,12 @@ declare const TimeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2323
2367
|
placeholder?: TranslationConfig | undefined;
|
|
2324
2368
|
helperText?: TranslationConfig | undefined;
|
|
2325
2369
|
hideLabel?: boolean | undefined;
|
|
2370
|
+
hideErrorLabel?: boolean | undefined;
|
|
2326
2371
|
uncorrectable?: boolean | undefined;
|
|
2327
2372
|
analytics?: boolean | undefined;
|
|
2328
|
-
defaultValue?: string |
|
|
2373
|
+
defaultValue?: string | {
|
|
2374
|
+
$$now: true;
|
|
2375
|
+
} | undefined;
|
|
2329
2376
|
configuration?: {
|
|
2330
2377
|
notice?: TranslationConfig | undefined;
|
|
2331
2378
|
use12HourFormat?: boolean | undefined;
|
|
@@ -2389,9 +2436,12 @@ declare const TimeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2389
2436
|
defaultMessage: string;
|
|
2390
2437
|
} | undefined;
|
|
2391
2438
|
hideLabel?: boolean | undefined;
|
|
2439
|
+
hideErrorLabel?: boolean | undefined;
|
|
2392
2440
|
uncorrectable?: boolean | undefined;
|
|
2393
2441
|
analytics?: boolean | undefined;
|
|
2394
|
-
defaultValue?: string |
|
|
2442
|
+
defaultValue?: string | {
|
|
2443
|
+
$$now: true;
|
|
2444
|
+
} | undefined;
|
|
2395
2445
|
configuration?: {
|
|
2396
2446
|
notice?: {
|
|
2397
2447
|
id: string;
|
|
@@ -2474,6 +2524,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2474
2524
|
defaultMessage: string;
|
|
2475
2525
|
}>>;
|
|
2476
2526
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2527
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2477
2528
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2478
2529
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2479
2530
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2561,6 +2612,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2561
2612
|
placeholder?: TranslationConfig | undefined;
|
|
2562
2613
|
helperText?: TranslationConfig | undefined;
|
|
2563
2614
|
hideLabel?: boolean | undefined;
|
|
2615
|
+
hideErrorLabel?: boolean | undefined;
|
|
2564
2616
|
uncorrectable?: boolean | undefined;
|
|
2565
2617
|
analytics?: boolean | undefined;
|
|
2566
2618
|
defaultValue?: string | {
|
|
@@ -2629,6 +2681,7 @@ declare const DateRangeField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2629
2681
|
defaultMessage: string;
|
|
2630
2682
|
} | undefined;
|
|
2631
2683
|
hideLabel?: boolean | undefined;
|
|
2684
|
+
hideErrorLabel?: boolean | undefined;
|
|
2632
2685
|
uncorrectable?: boolean | undefined;
|
|
2633
2686
|
analytics?: boolean | undefined;
|
|
2634
2687
|
defaultValue?: string | {
|
|
@@ -2741,6 +2794,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2741
2794
|
defaultMessage: string;
|
|
2742
2795
|
}>>;
|
|
2743
2796
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2797
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2744
2798
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2745
2799
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2746
2800
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -2832,6 +2886,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2832
2886
|
placeholder?: TranslationConfig | undefined;
|
|
2833
2887
|
helperText?: TranslationConfig | undefined;
|
|
2834
2888
|
hideLabel?: boolean | undefined;
|
|
2889
|
+
hideErrorLabel?: boolean | undefined;
|
|
2835
2890
|
uncorrectable?: boolean | undefined;
|
|
2836
2891
|
analytics?: boolean | undefined;
|
|
2837
2892
|
defaultValue?: string | undefined;
|
|
@@ -2894,6 +2949,7 @@ declare const Paragraph: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2894
2949
|
defaultMessage: string;
|
|
2895
2950
|
} | undefined;
|
|
2896
2951
|
hideLabel?: boolean | undefined;
|
|
2952
|
+
hideErrorLabel?: boolean | undefined;
|
|
2897
2953
|
uncorrectable?: boolean | undefined;
|
|
2898
2954
|
analytics?: boolean | undefined;
|
|
2899
2955
|
defaultValue?: string | undefined;
|
|
@@ -2977,6 +3033,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2977
3033
|
defaultMessage: string;
|
|
2978
3034
|
}>>;
|
|
2979
3035
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3036
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2980
3037
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
2981
3038
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2982
3039
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -3040,6 +3097,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3040
3097
|
placeholder?: TranslationConfig | undefined;
|
|
3041
3098
|
helperText?: TranslationConfig | undefined;
|
|
3042
3099
|
hideLabel?: boolean | undefined;
|
|
3100
|
+
hideErrorLabel?: boolean | undefined;
|
|
3043
3101
|
uncorrectable?: boolean | undefined;
|
|
3044
3102
|
analytics?: boolean | undefined;
|
|
3045
3103
|
defaultValue?: string | undefined;
|
|
@@ -3102,6 +3160,7 @@ declare const PageHeader: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3102
3160
|
defaultMessage: string;
|
|
3103
3161
|
} | undefined;
|
|
3104
3162
|
hideLabel?: boolean | undefined;
|
|
3163
|
+
hideErrorLabel?: boolean | undefined;
|
|
3105
3164
|
uncorrectable?: boolean | undefined;
|
|
3106
3165
|
analytics?: boolean | undefined;
|
|
3107
3166
|
defaultValue?: string | undefined;
|
|
@@ -3179,6 +3238,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3179
3238
|
defaultMessage: string;
|
|
3180
3239
|
}>>;
|
|
3181
3240
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3241
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3182
3242
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3183
3243
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3184
3244
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -3336,6 +3396,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3336
3396
|
placeholder?: TranslationConfig | undefined;
|
|
3337
3397
|
helperText?: TranslationConfig | undefined;
|
|
3338
3398
|
hideLabel?: boolean | undefined;
|
|
3399
|
+
hideErrorLabel?: boolean | undefined;
|
|
3339
3400
|
uncorrectable?: boolean | undefined;
|
|
3340
3401
|
analytics?: boolean | undefined;
|
|
3341
3402
|
defaultValue?: {
|
|
@@ -3402,6 +3463,7 @@ declare const File: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3402
3463
|
defaultMessage: string;
|
|
3403
3464
|
} | undefined;
|
|
3404
3465
|
hideLabel?: boolean | undefined;
|
|
3466
|
+
hideErrorLabel?: boolean | undefined;
|
|
3405
3467
|
uncorrectable?: boolean | undefined;
|
|
3406
3468
|
analytics?: boolean | undefined;
|
|
3407
3469
|
defaultValue?: {
|
|
@@ -3519,6 +3581,7 @@ declare const NumberWithUnitField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3519
3581
|
defaultMessage: string;
|
|
3520
3582
|
}>>;
|
|
3521
3583
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3584
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3522
3585
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3523
3586
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3524
3587
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -3634,6 +3697,7 @@ declare const NumberWithUnitField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3634
3697
|
placeholder?: TranslationConfig | undefined;
|
|
3635
3698
|
helperText?: TranslationConfig | undefined;
|
|
3636
3699
|
hideLabel?: boolean | undefined;
|
|
3700
|
+
hideErrorLabel?: boolean | undefined;
|
|
3637
3701
|
uncorrectable?: boolean | undefined;
|
|
3638
3702
|
analytics?: boolean | undefined;
|
|
3639
3703
|
defaultValue?: {
|
|
@@ -3712,6 +3776,7 @@ declare const NumberWithUnitField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3712
3776
|
defaultMessage: string;
|
|
3713
3777
|
} | undefined;
|
|
3714
3778
|
hideLabel?: boolean | undefined;
|
|
3779
|
+
hideErrorLabel?: boolean | undefined;
|
|
3715
3780
|
uncorrectable?: boolean | undefined;
|
|
3716
3781
|
analytics?: boolean | undefined;
|
|
3717
3782
|
defaultValue?: {
|
|
@@ -3800,6 +3865,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3800
3865
|
defaultMessage: string;
|
|
3801
3866
|
}>>;
|
|
3802
3867
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3868
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3803
3869
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
3804
3870
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3805
3871
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -3902,6 +3968,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3902
3968
|
placeholder?: TranslationConfig | undefined;
|
|
3903
3969
|
helperText?: TranslationConfig | undefined;
|
|
3904
3970
|
hideLabel?: boolean | undefined;
|
|
3971
|
+
hideErrorLabel?: boolean | undefined;
|
|
3905
3972
|
uncorrectable?: boolean | undefined;
|
|
3906
3973
|
analytics?: boolean | undefined;
|
|
3907
3974
|
defaultValue?: string | undefined;
|
|
@@ -3977,6 +4044,7 @@ declare const RadioGroup: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3977
4044
|
defaultMessage: string;
|
|
3978
4045
|
} | undefined;
|
|
3979
4046
|
hideLabel?: boolean | undefined;
|
|
4047
|
+
hideErrorLabel?: boolean | undefined;
|
|
3980
4048
|
uncorrectable?: boolean | undefined;
|
|
3981
4049
|
analytics?: boolean | undefined;
|
|
3982
4050
|
defaultValue?: string | undefined;
|
|
@@ -4059,6 +4127,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4059
4127
|
defaultMessage: string;
|
|
4060
4128
|
}>>;
|
|
4061
4129
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4130
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4062
4131
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4063
4132
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4064
4133
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -4150,6 +4219,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4150
4219
|
placeholder?: TranslationConfig | undefined;
|
|
4151
4220
|
helperText?: TranslationConfig | undefined;
|
|
4152
4221
|
hideLabel?: boolean | undefined;
|
|
4222
|
+
hideErrorLabel?: boolean | undefined;
|
|
4153
4223
|
uncorrectable?: boolean | undefined;
|
|
4154
4224
|
analytics?: boolean | undefined;
|
|
4155
4225
|
defaultValue?: string | undefined;
|
|
@@ -4217,6 +4287,7 @@ declare const BulletList: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4217
4287
|
defaultMessage: string;
|
|
4218
4288
|
} | undefined;
|
|
4219
4289
|
hideLabel?: boolean | undefined;
|
|
4290
|
+
hideErrorLabel?: boolean | undefined;
|
|
4220
4291
|
uncorrectable?: boolean | undefined;
|
|
4221
4292
|
analytics?: boolean | undefined;
|
|
4222
4293
|
defaultValue?: string | undefined;
|
|
@@ -4299,6 +4370,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4299
4370
|
defaultMessage: string;
|
|
4300
4371
|
}>>;
|
|
4301
4372
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4373
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4302
4374
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4303
4375
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4304
4376
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -4389,6 +4461,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4389
4461
|
placeholder?: TranslationConfig | undefined;
|
|
4390
4462
|
helperText?: TranslationConfig | undefined;
|
|
4391
4463
|
hideLabel?: boolean | undefined;
|
|
4464
|
+
hideErrorLabel?: boolean | undefined;
|
|
4392
4465
|
uncorrectable?: boolean | undefined;
|
|
4393
4466
|
analytics?: boolean | undefined;
|
|
4394
4467
|
defaultValue?: string | undefined;
|
|
@@ -4460,6 +4533,7 @@ declare const Select: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4460
4533
|
defaultMessage: string;
|
|
4461
4534
|
} | undefined;
|
|
4462
4535
|
hideLabel?: boolean | undefined;
|
|
4536
|
+
hideErrorLabel?: boolean | undefined;
|
|
4463
4537
|
uncorrectable?: boolean | undefined;
|
|
4464
4538
|
analytics?: boolean | undefined;
|
|
4465
4539
|
defaultValue?: string | undefined;
|
|
@@ -4563,6 +4637,7 @@ export declare const SelectDateRangeField: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4563
4637
|
defaultMessage: string;
|
|
4564
4638
|
}>>;
|
|
4565
4639
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4640
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4566
4641
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4567
4642
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4568
4643
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -4648,6 +4723,7 @@ export declare const SelectDateRangeField: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4648
4723
|
placeholder?: TranslationConfig | undefined;
|
|
4649
4724
|
helperText?: TranslationConfig | undefined;
|
|
4650
4725
|
hideLabel?: boolean | undefined;
|
|
4726
|
+
hideErrorLabel?: boolean | undefined;
|
|
4651
4727
|
uncorrectable?: boolean | undefined;
|
|
4652
4728
|
analytics?: boolean | undefined;
|
|
4653
4729
|
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
|
@@ -4718,6 +4794,7 @@ export declare const SelectDateRangeField: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4718
4794
|
defaultMessage: string;
|
|
4719
4795
|
} | undefined;
|
|
4720
4796
|
hideLabel?: boolean | undefined;
|
|
4797
|
+
hideErrorLabel?: boolean | undefined;
|
|
4721
4798
|
uncorrectable?: boolean | undefined;
|
|
4722
4799
|
analytics?: boolean | undefined;
|
|
4723
4800
|
defaultValue?: "last7Days" | "last30Days" | "last90Days" | "last365Days" | undefined;
|
|
@@ -4980,6 +5057,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4980
5057
|
defaultMessage: string;
|
|
4981
5058
|
}>>;
|
|
4982
5059
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5060
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4983
5061
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
4984
5062
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4985
5063
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -5380,6 +5458,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5380
5458
|
placeholder?: TranslationConfig | undefined;
|
|
5381
5459
|
helperText?: TranslationConfig | undefined;
|
|
5382
5460
|
hideLabel?: boolean | undefined;
|
|
5461
|
+
hideErrorLabel?: boolean | undefined;
|
|
5383
5462
|
uncorrectable?: boolean | undefined;
|
|
5384
5463
|
analytics?: boolean | undefined;
|
|
5385
5464
|
defaultValue?: {
|
|
@@ -5481,6 +5560,7 @@ declare const NameField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5481
5560
|
defaultMessage: string;
|
|
5482
5561
|
} | undefined;
|
|
5483
5562
|
hideLabel?: boolean | undefined;
|
|
5563
|
+
hideErrorLabel?: boolean | undefined;
|
|
5484
5564
|
uncorrectable?: boolean | undefined;
|
|
5485
5565
|
analytics?: boolean | undefined;
|
|
5486
5566
|
defaultValue?: {
|
|
@@ -5628,6 +5708,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5628
5708
|
defaultMessage: string;
|
|
5629
5709
|
}>>;
|
|
5630
5710
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5711
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5631
5712
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5632
5713
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5633
5714
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -5691,6 +5772,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5691
5772
|
placeholder?: TranslationConfig | undefined;
|
|
5692
5773
|
helperText?: TranslationConfig | undefined;
|
|
5693
5774
|
hideLabel?: boolean | undefined;
|
|
5775
|
+
hideErrorLabel?: boolean | undefined;
|
|
5694
5776
|
uncorrectable?: boolean | undefined;
|
|
5695
5777
|
analytics?: boolean | undefined;
|
|
5696
5778
|
defaultValue?: string | undefined;
|
|
@@ -5753,6 +5835,7 @@ declare const PhoneField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5753
5835
|
defaultMessage: string;
|
|
5754
5836
|
} | undefined;
|
|
5755
5837
|
hideLabel?: boolean | undefined;
|
|
5838
|
+
hideErrorLabel?: boolean | undefined;
|
|
5756
5839
|
uncorrectable?: boolean | undefined;
|
|
5757
5840
|
analytics?: boolean | undefined;
|
|
5758
5841
|
defaultValue?: string | undefined;
|
|
@@ -5829,6 +5912,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5829
5912
|
defaultMessage: string;
|
|
5830
5913
|
}>>;
|
|
5831
5914
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5915
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5832
5916
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
5833
5917
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
5834
5918
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -5892,6 +5976,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5892
5976
|
placeholder?: TranslationConfig | undefined;
|
|
5893
5977
|
helperText?: TranslationConfig | undefined;
|
|
5894
5978
|
hideLabel?: boolean | undefined;
|
|
5979
|
+
hideErrorLabel?: boolean | undefined;
|
|
5895
5980
|
uncorrectable?: boolean | undefined;
|
|
5896
5981
|
analytics?: boolean | undefined;
|
|
5897
5982
|
defaultValue?: string | undefined;
|
|
@@ -5954,6 +6039,7 @@ declare const IdField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5954
6039
|
defaultMessage: string;
|
|
5955
6040
|
} | undefined;
|
|
5956
6041
|
hideLabel?: boolean | undefined;
|
|
6042
|
+
hideErrorLabel?: boolean | undefined;
|
|
5957
6043
|
uncorrectable?: boolean | undefined;
|
|
5958
6044
|
analytics?: boolean | undefined;
|
|
5959
6045
|
defaultValue?: string | undefined;
|
|
@@ -6030,6 +6116,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6030
6116
|
defaultMessage: string;
|
|
6031
6117
|
}>>;
|
|
6032
6118
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6119
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6033
6120
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6034
6121
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6035
6122
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -6094,6 +6181,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6094
6181
|
placeholder?: TranslationConfig | undefined;
|
|
6095
6182
|
helperText?: TranslationConfig | undefined;
|
|
6096
6183
|
hideLabel?: boolean | undefined;
|
|
6184
|
+
hideErrorLabel?: boolean | undefined;
|
|
6097
6185
|
uncorrectable?: boolean | undefined;
|
|
6098
6186
|
analytics?: boolean | undefined;
|
|
6099
6187
|
}, {
|
|
@@ -6155,6 +6243,7 @@ declare const Checkbox: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6155
6243
|
defaultMessage: string;
|
|
6156
6244
|
} | undefined;
|
|
6157
6245
|
hideLabel?: boolean | undefined;
|
|
6246
|
+
hideErrorLabel?: boolean | undefined;
|
|
6158
6247
|
uncorrectable?: boolean | undefined;
|
|
6159
6248
|
analytics?: boolean | undefined;
|
|
6160
6249
|
defaultValue?: boolean | undefined;
|
|
@@ -6232,6 +6321,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6232
6321
|
defaultMessage: string;
|
|
6233
6322
|
}>>;
|
|
6234
6323
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6324
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6235
6325
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6236
6326
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6237
6327
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -6295,6 +6385,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6295
6385
|
placeholder?: TranslationConfig | undefined;
|
|
6296
6386
|
helperText?: TranslationConfig | undefined;
|
|
6297
6387
|
hideLabel?: boolean | undefined;
|
|
6388
|
+
hideErrorLabel?: boolean | undefined;
|
|
6298
6389
|
uncorrectable?: boolean | undefined;
|
|
6299
6390
|
analytics?: boolean | undefined;
|
|
6300
6391
|
defaultValue?: string | undefined;
|
|
@@ -6357,6 +6448,7 @@ declare const Country: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6357
6448
|
defaultMessage: string;
|
|
6358
6449
|
} | undefined;
|
|
6359
6450
|
hideLabel?: boolean | undefined;
|
|
6451
|
+
hideErrorLabel?: boolean | undefined;
|
|
6360
6452
|
uncorrectable?: boolean | undefined;
|
|
6361
6453
|
analytics?: boolean | undefined;
|
|
6362
6454
|
defaultValue?: string | undefined;
|
|
@@ -6455,6 +6547,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6455
6547
|
defaultMessage: string;
|
|
6456
6548
|
}>>;
|
|
6457
6549
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6550
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6458
6551
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6459
6552
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6460
6553
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -6544,6 +6637,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6544
6637
|
placeholder?: TranslationConfig | undefined;
|
|
6545
6638
|
helperText?: TranslationConfig | undefined;
|
|
6546
6639
|
hideLabel?: boolean | undefined;
|
|
6640
|
+
hideErrorLabel?: boolean | undefined;
|
|
6547
6641
|
uncorrectable?: boolean | undefined;
|
|
6548
6642
|
analytics?: boolean | undefined;
|
|
6549
6643
|
defaultValue?: string | undefined;
|
|
@@ -6612,6 +6706,7 @@ declare const AdministrativeArea: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6612
6706
|
defaultMessage: string;
|
|
6613
6707
|
} | undefined;
|
|
6614
6708
|
hideLabel?: boolean | undefined;
|
|
6709
|
+
hideErrorLabel?: boolean | undefined;
|
|
6615
6710
|
uncorrectable?: boolean | undefined;
|
|
6616
6711
|
analytics?: boolean | undefined;
|
|
6617
6712
|
defaultValue?: string | undefined;
|
|
@@ -6689,6 +6784,7 @@ declare const LocationInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6689
6784
|
defaultMessage: string;
|
|
6690
6785
|
}>>;
|
|
6691
6786
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6787
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6692
6788
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6693
6789
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6694
6790
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -6762,6 +6858,7 @@ declare const LocationInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6762
6858
|
placeholder?: TranslationConfig | undefined;
|
|
6763
6859
|
helperText?: TranslationConfig | undefined;
|
|
6764
6860
|
hideLabel?: boolean | undefined;
|
|
6861
|
+
hideErrorLabel?: boolean | undefined;
|
|
6765
6862
|
uncorrectable?: boolean | undefined;
|
|
6766
6863
|
analytics?: boolean | undefined;
|
|
6767
6864
|
defaultValue?: string | undefined;
|
|
@@ -6827,6 +6924,7 @@ declare const LocationInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6827
6924
|
defaultMessage: string;
|
|
6828
6925
|
} | undefined;
|
|
6829
6926
|
hideLabel?: boolean | undefined;
|
|
6927
|
+
hideErrorLabel?: boolean | undefined;
|
|
6830
6928
|
uncorrectable?: boolean | undefined;
|
|
6831
6929
|
analytics?: boolean | undefined;
|
|
6832
6930
|
defaultValue?: string | undefined;
|
|
@@ -6904,6 +7002,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
6904
7002
|
defaultMessage: string;
|
|
6905
7003
|
}>>;
|
|
6906
7004
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7005
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6907
7006
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
6908
7007
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6909
7008
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7058,6 +7157,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7058
7157
|
placeholder?: TranslationConfig | undefined;
|
|
7059
7158
|
helperText?: TranslationConfig | undefined;
|
|
7060
7159
|
hideLabel?: boolean | undefined;
|
|
7160
|
+
hideErrorLabel?: boolean | undefined;
|
|
7061
7161
|
uncorrectable?: boolean | undefined;
|
|
7062
7162
|
analytics?: boolean | undefined;
|
|
7063
7163
|
defaultValue?: {
|
|
@@ -7133,6 +7233,7 @@ declare const FileUploadWithOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7133
7233
|
defaultMessage: string;
|
|
7134
7234
|
} | undefined;
|
|
7135
7235
|
hideLabel?: boolean | undefined;
|
|
7236
|
+
hideErrorLabel?: boolean | undefined;
|
|
7136
7237
|
uncorrectable?: boolean | undefined;
|
|
7137
7238
|
analytics?: boolean | undefined;
|
|
7138
7239
|
defaultValue?: {
|
|
@@ -7225,6 +7326,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7225
7326
|
defaultMessage: string;
|
|
7226
7327
|
}>>;
|
|
7227
7328
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7329
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7228
7330
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7229
7331
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7230
7332
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7288,6 +7390,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7288
7390
|
placeholder?: TranslationConfig | undefined;
|
|
7289
7391
|
helperText?: TranslationConfig | undefined;
|
|
7290
7392
|
hideLabel?: boolean | undefined;
|
|
7393
|
+
hideErrorLabel?: boolean | undefined;
|
|
7291
7394
|
uncorrectable?: boolean | undefined;
|
|
7292
7395
|
analytics?: boolean | undefined;
|
|
7293
7396
|
defaultValue?: string | undefined;
|
|
@@ -7350,6 +7453,7 @@ declare const Facility: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7350
7453
|
defaultMessage: string;
|
|
7351
7454
|
} | undefined;
|
|
7352
7455
|
hideLabel?: boolean | undefined;
|
|
7456
|
+
hideErrorLabel?: boolean | undefined;
|
|
7353
7457
|
uncorrectable?: boolean | undefined;
|
|
7354
7458
|
analytics?: boolean | undefined;
|
|
7355
7459
|
defaultValue?: string | undefined;
|
|
@@ -7427,6 +7531,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7427
7531
|
defaultMessage: string;
|
|
7428
7532
|
}>>;
|
|
7429
7533
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7534
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7430
7535
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7431
7536
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7432
7537
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7490,6 +7595,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7490
7595
|
placeholder?: TranslationConfig | undefined;
|
|
7491
7596
|
helperText?: TranslationConfig | undefined;
|
|
7492
7597
|
hideLabel?: boolean | undefined;
|
|
7598
|
+
hideErrorLabel?: boolean | undefined;
|
|
7493
7599
|
uncorrectable?: boolean | undefined;
|
|
7494
7600
|
analytics?: boolean | undefined;
|
|
7495
7601
|
defaultValue?: string | undefined;
|
|
@@ -7552,6 +7658,7 @@ declare const Office: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7552
7658
|
defaultMessage: string;
|
|
7553
7659
|
} | undefined;
|
|
7554
7660
|
hideLabel?: boolean | undefined;
|
|
7661
|
+
hideErrorLabel?: boolean | undefined;
|
|
7555
7662
|
uncorrectable?: boolean | undefined;
|
|
7556
7663
|
analytics?: boolean | undefined;
|
|
7557
7664
|
defaultValue?: string | undefined;
|
|
@@ -7664,6 +7771,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7664
7771
|
defaultMessage: string;
|
|
7665
7772
|
}>>;
|
|
7666
7773
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7774
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7667
7775
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
7668
7776
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
7669
7777
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7910,6 +8018,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
7910
8018
|
placeholder?: TranslationConfig | undefined;
|
|
7911
8019
|
helperText?: TranslationConfig | undefined;
|
|
7912
8020
|
hideLabel?: boolean | undefined;
|
|
8021
|
+
hideErrorLabel?: boolean | undefined;
|
|
7913
8022
|
uncorrectable?: boolean | undefined;
|
|
7914
8023
|
analytics?: boolean | undefined;
|
|
7915
8024
|
defaultValue?: {
|
|
@@ -8007,6 +8116,7 @@ declare const Address: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8007
8116
|
defaultMessage: string;
|
|
8008
8117
|
} | undefined;
|
|
8009
8118
|
hideLabel?: boolean | undefined;
|
|
8119
|
+
hideErrorLabel?: boolean | undefined;
|
|
8010
8120
|
uncorrectable?: boolean | undefined;
|
|
8011
8121
|
analytics?: boolean | undefined;
|
|
8012
8122
|
defaultValue?: {
|
|
@@ -8222,6 +8332,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8222
8332
|
defaultMessage: string;
|
|
8223
8333
|
}>>;
|
|
8224
8334
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8335
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8225
8336
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8226
8337
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8227
8338
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -8390,6 +8501,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8390
8501
|
placeholder?: TranslationConfig | undefined;
|
|
8391
8502
|
helperText?: TranslationConfig | undefined;
|
|
8392
8503
|
hideLabel?: boolean | undefined;
|
|
8504
|
+
hideErrorLabel?: boolean | undefined;
|
|
8393
8505
|
uncorrectable?: boolean | undefined;
|
|
8394
8506
|
analytics?: boolean | undefined;
|
|
8395
8507
|
}, {
|
|
@@ -8476,6 +8588,7 @@ declare const DataField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8476
8588
|
defaultMessage: string;
|
|
8477
8589
|
} | undefined;
|
|
8478
8590
|
hideLabel?: boolean | undefined;
|
|
8591
|
+
hideErrorLabel?: boolean | undefined;
|
|
8479
8592
|
uncorrectable?: boolean | undefined;
|
|
8480
8593
|
analytics?: boolean | undefined;
|
|
8481
8594
|
}>;
|
|
@@ -8552,6 +8665,7 @@ declare const ButtonField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8552
8665
|
defaultMessage: string;
|
|
8553
8666
|
}>>;
|
|
8554
8667
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8668
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8555
8669
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8556
8670
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8557
8671
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -8641,6 +8755,7 @@ declare const ButtonField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8641
8755
|
placeholder?: TranslationConfig | undefined;
|
|
8642
8756
|
helperText?: TranslationConfig | undefined;
|
|
8643
8757
|
hideLabel?: boolean | undefined;
|
|
8758
|
+
hideErrorLabel?: boolean | undefined;
|
|
8644
8759
|
uncorrectable?: boolean | undefined;
|
|
8645
8760
|
analytics?: boolean | undefined;
|
|
8646
8761
|
defaultValue?: number | undefined;
|
|
@@ -8712,6 +8827,7 @@ declare const ButtonField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8712
8827
|
defaultMessage: string;
|
|
8713
8828
|
} | undefined;
|
|
8714
8829
|
hideLabel?: boolean | undefined;
|
|
8830
|
+
hideErrorLabel?: boolean | undefined;
|
|
8715
8831
|
uncorrectable?: boolean | undefined;
|
|
8716
8832
|
analytics?: boolean | undefined;
|
|
8717
8833
|
defaultValue?: number | undefined;
|
|
@@ -8789,6 +8905,7 @@ declare const AlphaPrintButton: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8789
8905
|
defaultMessage: string;
|
|
8790
8906
|
}>>;
|
|
8791
8907
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8908
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8792
8909
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
8793
8910
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
8794
8911
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -8873,6 +8990,7 @@ declare const AlphaPrintButton: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8873
8990
|
placeholder?: TranslationConfig | undefined;
|
|
8874
8991
|
helperText?: TranslationConfig | undefined;
|
|
8875
8992
|
hideLabel?: boolean | undefined;
|
|
8993
|
+
hideErrorLabel?: boolean | undefined;
|
|
8876
8994
|
uncorrectable?: boolean | undefined;
|
|
8877
8995
|
analytics?: boolean | undefined;
|
|
8878
8996
|
}, {
|
|
@@ -8942,6 +9060,7 @@ declare const AlphaPrintButton: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8942
9060
|
defaultMessage: string;
|
|
8943
9061
|
} | undefined;
|
|
8944
9062
|
hideLabel?: boolean | undefined;
|
|
9063
|
+
hideErrorLabel?: boolean | undefined;
|
|
8945
9064
|
uncorrectable?: boolean | undefined;
|
|
8946
9065
|
analytics?: boolean | undefined;
|
|
8947
9066
|
}>;
|
|
@@ -9018,6 +9137,7 @@ declare const HttpField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9018
9137
|
defaultMessage: string;
|
|
9019
9138
|
}>>;
|
|
9020
9139
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9140
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9021
9141
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9022
9142
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9023
9143
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -9182,6 +9302,7 @@ declare const HttpField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9182
9302
|
placeholder?: TranslationConfig | undefined;
|
|
9183
9303
|
helperText?: TranslationConfig | undefined;
|
|
9184
9304
|
hideLabel?: boolean | undefined;
|
|
9305
|
+
hideErrorLabel?: boolean | undefined;
|
|
9185
9306
|
uncorrectable?: boolean | undefined;
|
|
9186
9307
|
analytics?: boolean | undefined;
|
|
9187
9308
|
defaultValue?: {
|
|
@@ -9267,6 +9388,7 @@ declare const HttpField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
9267
9388
|
defaultMessage: string;
|
|
9268
9389
|
} | undefined;
|
|
9269
9390
|
hideLabel?: boolean | undefined;
|
|
9391
|
+
hideErrorLabel?: boolean | undefined;
|
|
9270
9392
|
uncorrectable?: boolean | undefined;
|
|
9271
9393
|
analytics?: boolean | undefined;
|
|
9272
9394
|
defaultValue?: {
|
|
@@ -9351,6 +9473,7 @@ declare const SearchField: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
9351
9473
|
defaultMessage: string;
|
|
9352
9474
|
}>>;
|
|
9353
9475
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9476
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9354
9477
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
9355
9478
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
9356
9479
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -9813,6 +9936,7 @@ declare const SearchField: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
9813
9936
|
placeholder?: TranslationConfig | undefined;
|
|
9814
9937
|
helperText?: TranslationConfig | undefined;
|
|
9815
9938
|
hideLabel?: boolean | undefined;
|
|
9939
|
+
hideErrorLabel?: boolean | undefined;
|
|
9816
9940
|
uncorrectable?: boolean | undefined;
|
|
9817
9941
|
analytics?: boolean | undefined;
|
|
9818
9942
|
defaultValue?: {
|
|
@@ -9954,6 +10078,7 @@ declare const SearchField: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ext
|
|
|
9954
10078
|
defaultMessage: string;
|
|
9955
10079
|
} | undefined;
|
|
9956
10080
|
hideLabel?: boolean | undefined;
|
|
10081
|
+
hideErrorLabel?: boolean | undefined;
|
|
9957
10082
|
uncorrectable?: boolean | undefined;
|
|
9958
10083
|
analytics?: boolean | undefined;
|
|
9959
10084
|
defaultValue?: {
|
|
@@ -10038,6 +10163,7 @@ declare const LinkButtonField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10038
10163
|
defaultMessage: string;
|
|
10039
10164
|
}>>;
|
|
10040
10165
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10166
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10041
10167
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10042
10168
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10043
10169
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -10126,6 +10252,7 @@ declare const LinkButtonField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10126
10252
|
placeholder?: TranslationConfig | undefined;
|
|
10127
10253
|
helperText?: TranslationConfig | undefined;
|
|
10128
10254
|
hideLabel?: boolean | undefined;
|
|
10255
|
+
hideErrorLabel?: boolean | undefined;
|
|
10129
10256
|
uncorrectable?: boolean | undefined;
|
|
10130
10257
|
analytics?: boolean | undefined;
|
|
10131
10258
|
}, {
|
|
@@ -10196,6 +10323,7 @@ declare const LinkButtonField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10196
10323
|
defaultMessage: string;
|
|
10197
10324
|
} | undefined;
|
|
10198
10325
|
hideLabel?: boolean | undefined;
|
|
10326
|
+
hideErrorLabel?: boolean | undefined;
|
|
10199
10327
|
uncorrectable?: boolean | undefined;
|
|
10200
10328
|
analytics?: boolean | undefined;
|
|
10201
10329
|
}>;
|
|
@@ -10272,6 +10400,7 @@ declare const VerificationStatus: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10272
10400
|
defaultMessage: string;
|
|
10273
10401
|
}>>;
|
|
10274
10402
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10403
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10275
10404
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10276
10405
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10277
10406
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -10365,6 +10494,7 @@ declare const VerificationStatus: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10365
10494
|
placeholder?: TranslationConfig | undefined;
|
|
10366
10495
|
helperText?: TranslationConfig | undefined;
|
|
10367
10496
|
hideLabel?: boolean | undefined;
|
|
10497
|
+
hideErrorLabel?: boolean | undefined;
|
|
10368
10498
|
uncorrectable?: boolean | undefined;
|
|
10369
10499
|
analytics?: boolean | undefined;
|
|
10370
10500
|
defaultValue?: "failed" | "verified" | "authenticated" | "pending" | undefined;
|
|
@@ -10439,6 +10569,7 @@ declare const VerificationStatus: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10439
10569
|
defaultMessage: string;
|
|
10440
10570
|
} | undefined;
|
|
10441
10571
|
hideLabel?: boolean | undefined;
|
|
10572
|
+
hideErrorLabel?: boolean | undefined;
|
|
10442
10573
|
uncorrectable?: boolean | undefined;
|
|
10443
10574
|
analytics?: boolean | undefined;
|
|
10444
10575
|
defaultValue?: "failed" | "verified" | "authenticated" | "pending" | undefined;
|
|
@@ -10516,6 +10647,7 @@ declare const QueryParamReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10516
10647
|
defaultMessage: string;
|
|
10517
10648
|
}>>;
|
|
10518
10649
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10650
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10519
10651
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10520
10652
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10521
10653
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -10588,6 +10720,7 @@ declare const QueryParamReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10588
10720
|
placeholder?: TranslationConfig | undefined;
|
|
10589
10721
|
helperText?: TranslationConfig | undefined;
|
|
10590
10722
|
hideLabel?: boolean | undefined;
|
|
10723
|
+
hideErrorLabel?: boolean | undefined;
|
|
10591
10724
|
uncorrectable?: boolean | undefined;
|
|
10592
10725
|
analytics?: boolean | undefined;
|
|
10593
10726
|
}, {
|
|
@@ -10652,6 +10785,7 @@ declare const QueryParamReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10652
10785
|
defaultMessage: string;
|
|
10653
10786
|
} | undefined;
|
|
10654
10787
|
hideLabel?: boolean | undefined;
|
|
10788
|
+
hideErrorLabel?: boolean | undefined;
|
|
10655
10789
|
uncorrectable?: boolean | undefined;
|
|
10656
10790
|
analytics?: boolean | undefined;
|
|
10657
10791
|
}>;
|
|
@@ -10728,6 +10862,7 @@ declare const QrReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10728
10862
|
defaultMessage: string;
|
|
10729
10863
|
}>>;
|
|
10730
10864
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10865
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10731
10866
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10732
10867
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10733
10868
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -10804,6 +10939,7 @@ declare const QrReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10804
10939
|
placeholder?: TranslationConfig | undefined;
|
|
10805
10940
|
helperText?: TranslationConfig | undefined;
|
|
10806
10941
|
hideLabel?: boolean | undefined;
|
|
10942
|
+
hideErrorLabel?: boolean | undefined;
|
|
10807
10943
|
uncorrectable?: boolean | undefined;
|
|
10808
10944
|
analytics?: boolean | undefined;
|
|
10809
10945
|
defaultValue?: {
|
|
@@ -10871,6 +11007,7 @@ declare const QrReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10871
11007
|
defaultMessage: string;
|
|
10872
11008
|
} | undefined;
|
|
10873
11009
|
hideLabel?: boolean | undefined;
|
|
11010
|
+
hideErrorLabel?: boolean | undefined;
|
|
10874
11011
|
uncorrectable?: boolean | undefined;
|
|
10875
11012
|
analytics?: boolean | undefined;
|
|
10876
11013
|
defaultValue?: {
|
|
@@ -10953,6 +11090,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
10953
11090
|
defaultMessage: string;
|
|
10954
11091
|
}>>;
|
|
10955
11092
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11093
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10956
11094
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
10957
11095
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
10958
11096
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -11055,6 +11193,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11055
11193
|
defaultMessage: string;
|
|
11056
11194
|
}>>;
|
|
11057
11195
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11196
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11058
11197
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11059
11198
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11060
11199
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -11131,6 +11270,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11131
11270
|
placeholder?: TranslationConfig | undefined;
|
|
11132
11271
|
helperText?: TranslationConfig | undefined;
|
|
11133
11272
|
hideLabel?: boolean | undefined;
|
|
11273
|
+
hideErrorLabel?: boolean | undefined;
|
|
11134
11274
|
uncorrectable?: boolean | undefined;
|
|
11135
11275
|
analytics?: boolean | undefined;
|
|
11136
11276
|
defaultValue?: {
|
|
@@ -11198,6 +11338,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11198
11338
|
defaultMessage: string;
|
|
11199
11339
|
} | undefined;
|
|
11200
11340
|
hideLabel?: boolean | undefined;
|
|
11341
|
+
hideErrorLabel?: boolean | undefined;
|
|
11201
11342
|
uncorrectable?: boolean | undefined;
|
|
11202
11343
|
analytics?: boolean | undefined;
|
|
11203
11344
|
defaultValue?: {
|
|
@@ -11278,6 +11419,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11278
11419
|
defaultMessage: string;
|
|
11279
11420
|
}>>;
|
|
11280
11421
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11422
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11281
11423
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11282
11424
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11283
11425
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -11366,6 +11508,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11366
11508
|
placeholder?: TranslationConfig | undefined;
|
|
11367
11509
|
helperText?: TranslationConfig | undefined;
|
|
11368
11510
|
hideLabel?: boolean | undefined;
|
|
11511
|
+
hideErrorLabel?: boolean | undefined;
|
|
11369
11512
|
uncorrectable?: boolean | undefined;
|
|
11370
11513
|
analytics?: boolean | undefined;
|
|
11371
11514
|
}, {
|
|
@@ -11436,6 +11579,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11436
11579
|
defaultMessage: string;
|
|
11437
11580
|
} | undefined;
|
|
11438
11581
|
hideLabel?: boolean | undefined;
|
|
11582
|
+
hideErrorLabel?: boolean | undefined;
|
|
11439
11583
|
uncorrectable?: boolean | undefined;
|
|
11440
11584
|
analytics?: boolean | undefined;
|
|
11441
11585
|
}>]>, "many">;
|
|
@@ -11487,6 +11631,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11487
11631
|
placeholder?: TranslationConfig | undefined;
|
|
11488
11632
|
helperText?: TranslationConfig | undefined;
|
|
11489
11633
|
hideLabel?: boolean | undefined;
|
|
11634
|
+
hideErrorLabel?: boolean | undefined;
|
|
11490
11635
|
uncorrectable?: boolean | undefined;
|
|
11491
11636
|
analytics?: boolean | undefined;
|
|
11492
11637
|
} | {
|
|
@@ -11528,6 +11673,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11528
11673
|
placeholder?: TranslationConfig | undefined;
|
|
11529
11674
|
helperText?: TranslationConfig | undefined;
|
|
11530
11675
|
hideLabel?: boolean | undefined;
|
|
11676
|
+
hideErrorLabel?: boolean | undefined;
|
|
11531
11677
|
uncorrectable?: boolean | undefined;
|
|
11532
11678
|
analytics?: boolean | undefined;
|
|
11533
11679
|
defaultValue?: {
|
|
@@ -11572,6 +11718,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11572
11718
|
placeholder?: TranslationConfig | undefined;
|
|
11573
11719
|
helperText?: TranslationConfig | undefined;
|
|
11574
11720
|
hideLabel?: boolean | undefined;
|
|
11721
|
+
hideErrorLabel?: boolean | undefined;
|
|
11575
11722
|
uncorrectable?: boolean | undefined;
|
|
11576
11723
|
analytics?: boolean | undefined;
|
|
11577
11724
|
defaultValue?: {
|
|
@@ -11653,6 +11800,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11653
11800
|
defaultMessage: string;
|
|
11654
11801
|
} | undefined;
|
|
11655
11802
|
hideLabel?: boolean | undefined;
|
|
11803
|
+
hideErrorLabel?: boolean | undefined;
|
|
11656
11804
|
uncorrectable?: boolean | undefined;
|
|
11657
11805
|
analytics?: boolean | undefined;
|
|
11658
11806
|
} | {
|
|
@@ -11714,6 +11862,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11714
11862
|
defaultMessage: string;
|
|
11715
11863
|
} | undefined;
|
|
11716
11864
|
hideLabel?: boolean | undefined;
|
|
11865
|
+
hideErrorLabel?: boolean | undefined;
|
|
11717
11866
|
uncorrectable?: boolean | undefined;
|
|
11718
11867
|
analytics?: boolean | undefined;
|
|
11719
11868
|
defaultValue?: {
|
|
@@ -11774,6 +11923,7 @@ declare const IdReaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11774
11923
|
defaultMessage: string;
|
|
11775
11924
|
} | undefined;
|
|
11776
11925
|
hideLabel?: boolean | undefined;
|
|
11926
|
+
hideErrorLabel?: boolean | undefined;
|
|
11777
11927
|
uncorrectable?: boolean | undefined;
|
|
11778
11928
|
analytics?: boolean | undefined;
|
|
11779
11929
|
defaultValue?: {
|
|
@@ -11853,6 +12003,7 @@ declare const LoaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11853
12003
|
defaultMessage: string;
|
|
11854
12004
|
}>>;
|
|
11855
12005
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12006
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11856
12007
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
11857
12008
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11858
12009
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -11933,6 +12084,7 @@ declare const LoaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
11933
12084
|
placeholder?: TranslationConfig | undefined;
|
|
11934
12085
|
helperText?: TranslationConfig | undefined;
|
|
11935
12086
|
hideLabel?: boolean | undefined;
|
|
12087
|
+
hideErrorLabel?: boolean | undefined;
|
|
11936
12088
|
uncorrectable?: boolean | undefined;
|
|
11937
12089
|
analytics?: boolean | undefined;
|
|
11938
12090
|
}, {
|
|
@@ -12001,6 +12153,7 @@ declare const LoaderField: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12001
12153
|
defaultMessage: string;
|
|
12002
12154
|
} | undefined;
|
|
12003
12155
|
hideLabel?: boolean | undefined;
|
|
12156
|
+
hideErrorLabel?: boolean | undefined;
|
|
12004
12157
|
uncorrectable?: boolean | undefined;
|
|
12005
12158
|
analytics?: boolean | undefined;
|
|
12006
12159
|
}>;
|
|
@@ -12105,6 +12258,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12105
12258
|
defaultMessage: string;
|
|
12106
12259
|
}>>;
|
|
12107
12260
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12261
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12108
12262
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12109
12263
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12110
12264
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -12188,6 +12342,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12188
12342
|
placeholder?: TranslationConfig | undefined;
|
|
12189
12343
|
helperText?: TranslationConfig | undefined;
|
|
12190
12344
|
hideLabel?: boolean | undefined;
|
|
12345
|
+
hideErrorLabel?: boolean | undefined;
|
|
12191
12346
|
uncorrectable?: boolean | undefined;
|
|
12192
12347
|
analytics?: boolean | undefined;
|
|
12193
12348
|
defaultValue?: string | undefined;
|
|
@@ -12255,6 +12410,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12255
12410
|
defaultMessage: string;
|
|
12256
12411
|
} | undefined;
|
|
12257
12412
|
hideLabel?: boolean | undefined;
|
|
12413
|
+
hideErrorLabel?: boolean | undefined;
|
|
12258
12414
|
uncorrectable?: boolean | undefined;
|
|
12259
12415
|
analytics?: boolean | undefined;
|
|
12260
12416
|
defaultValue?: string | undefined;
|
|
@@ -12334,6 +12490,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12334
12490
|
defaultMessage: string;
|
|
12335
12491
|
}>>;
|
|
12336
12492
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12493
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12337
12494
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12338
12495
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12339
12496
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -12491,6 +12648,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12491
12648
|
placeholder?: TranslationConfig | undefined;
|
|
12492
12649
|
helperText?: TranslationConfig | undefined;
|
|
12493
12650
|
hideLabel?: boolean | undefined;
|
|
12651
|
+
hideErrorLabel?: boolean | undefined;
|
|
12494
12652
|
uncorrectable?: boolean | undefined;
|
|
12495
12653
|
analytics?: boolean | undefined;
|
|
12496
12654
|
defaultValue?: {
|
|
@@ -12557,6 +12715,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12557
12715
|
defaultMessage: string;
|
|
12558
12716
|
} | undefined;
|
|
12559
12717
|
hideLabel?: boolean | undefined;
|
|
12718
|
+
hideErrorLabel?: boolean | undefined;
|
|
12560
12719
|
uncorrectable?: boolean | undefined;
|
|
12561
12720
|
analytics?: boolean | undefined;
|
|
12562
12721
|
defaultValue?: {
|
|
@@ -12654,6 +12813,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12654
12813
|
defaultMessage: string;
|
|
12655
12814
|
}>>;
|
|
12656
12815
|
hideLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12816
|
+
hideErrorLabel: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12657
12817
|
uncorrectable: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
12658
12818
|
value: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
12659
12819
|
$$field: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -12808,6 +12968,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12808
12968
|
placeholder?: TranslationConfig | undefined;
|
|
12809
12969
|
helperText?: TranslationConfig | undefined;
|
|
12810
12970
|
hideLabel?: boolean | undefined;
|
|
12971
|
+
hideErrorLabel?: boolean | undefined;
|
|
12811
12972
|
uncorrectable?: boolean | undefined;
|
|
12812
12973
|
analytics?: boolean | undefined;
|
|
12813
12974
|
defaultValue?: {
|
|
@@ -12883,6 +13044,7 @@ export declare const AnyFileField: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
|
|
|
12883
13044
|
defaultMessage: string;
|
|
12884
13045
|
} | undefined;
|
|
12885
13046
|
hideLabel?: boolean | undefined;
|
|
13047
|
+
hideErrorLabel?: boolean | undefined;
|
|
12886
13048
|
uncorrectable?: boolean | undefined;
|
|
12887
13049
|
analytics?: boolean | undefined;
|
|
12888
13050
|
defaultValue?: {
|