@prismicio/types-internal 3.10.0-alpha.1 → 3.10.0
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/lib/customtypes/CustomType.d.ts +144 -378
- package/lib/customtypes/Section.d.ts +144 -378
- package/lib/customtypes/diff/SharedSlice.d.ts +64 -168
- package/lib/customtypes/diff/Variation.d.ts +64 -168
- package/lib/customtypes/widgets/Group.d.ts +90 -246
- package/lib/customtypes/widgets/Widget.d.ts +231 -621
- package/lib/customtypes/widgets/nestable/Link.d.ts +30 -82
- package/lib/customtypes/widgets/nestable/Link.js +19 -43
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +15 -41
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +30 -82
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +30 -82
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +120 -328
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +69 -186
- package/lib/customtypes/widgets/slices/Slices.d.ts +308 -828
- package/package.json +1 -1
- package/src/customtypes/widgets/nestable/Link.ts +24 -85
|
@@ -82,31 +82,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
82
82
|
useAsTitle?: boolean;
|
|
83
83
|
placeholder?: string;
|
|
84
84
|
select?: "media" | "document" | "web" | null;
|
|
85
|
-
customtypes?: readonly (string | {
|
|
85
|
+
customtypes?: readonly (string | ({
|
|
86
86
|
id: string;
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
customtypes: readonly (string | {
|
|
90
|
-
id: string;
|
|
91
|
-
fields: readonly (string | {
|
|
92
|
-
id: string;
|
|
93
|
-
fields: readonly string[];
|
|
94
|
-
})[];
|
|
95
|
-
})[];
|
|
96
|
-
} | {
|
|
87
|
+
} & {
|
|
88
|
+
fields?: readonly (string | {
|
|
97
89
|
id: string;
|
|
98
|
-
|
|
90
|
+
customtypes: readonly (string | ({
|
|
99
91
|
id: string;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
id: string;
|
|
104
|
-
fields: readonly string[];
|
|
105
|
-
})[];
|
|
106
|
-
})[];
|
|
107
|
-
})[];
|
|
92
|
+
} & {
|
|
93
|
+
fields?: readonly string[];
|
|
94
|
+
}))[];
|
|
108
95
|
})[];
|
|
109
|
-
})[];
|
|
96
|
+
}))[];
|
|
110
97
|
masks?: readonly string[];
|
|
111
98
|
tags?: readonly string[];
|
|
112
99
|
allowTargetBlank?: boolean;
|
|
@@ -281,31 +268,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
281
268
|
useAsTitle?: boolean;
|
|
282
269
|
placeholder?: string;
|
|
283
270
|
select?: "media" | "document" | "web" | null;
|
|
284
|
-
customtypes?: readonly (string | {
|
|
271
|
+
customtypes?: readonly (string | ({
|
|
285
272
|
id: string;
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
customtypes: readonly (string | {
|
|
289
|
-
id: string;
|
|
290
|
-
fields: readonly (string | {
|
|
291
|
-
id: string;
|
|
292
|
-
fields: readonly string[];
|
|
293
|
-
})[];
|
|
294
|
-
})[];
|
|
295
|
-
} | {
|
|
273
|
+
} & {
|
|
274
|
+
fields?: readonly (string | {
|
|
296
275
|
id: string;
|
|
297
|
-
|
|
276
|
+
customtypes: readonly (string | ({
|
|
298
277
|
id: string;
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
id: string;
|
|
303
|
-
fields: readonly string[];
|
|
304
|
-
})[];
|
|
305
|
-
})[];
|
|
306
|
-
})[];
|
|
278
|
+
} & {
|
|
279
|
+
fields?: readonly string[];
|
|
280
|
+
}))[];
|
|
307
281
|
})[];
|
|
308
|
-
})[];
|
|
282
|
+
}))[];
|
|
309
283
|
masks?: readonly string[];
|
|
310
284
|
tags?: readonly string[];
|
|
311
285
|
allowTargetBlank?: boolean;
|
|
@@ -480,31 +454,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
480
454
|
useAsTitle?: boolean;
|
|
481
455
|
placeholder?: string;
|
|
482
456
|
select?: "media" | "document" | "web" | null;
|
|
483
|
-
customtypes?: readonly (string | {
|
|
457
|
+
customtypes?: readonly (string | ({
|
|
484
458
|
id: string;
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
customtypes: readonly (string | {
|
|
488
|
-
id: string;
|
|
489
|
-
fields: readonly (string | {
|
|
490
|
-
id: string;
|
|
491
|
-
fields: readonly string[];
|
|
492
|
-
})[];
|
|
493
|
-
})[];
|
|
494
|
-
} | {
|
|
459
|
+
} & {
|
|
460
|
+
fields?: readonly (string | {
|
|
495
461
|
id: string;
|
|
496
|
-
|
|
462
|
+
customtypes: readonly (string | ({
|
|
497
463
|
id: string;
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
id: string;
|
|
502
|
-
fields: readonly string[];
|
|
503
|
-
})[];
|
|
504
|
-
})[];
|
|
505
|
-
})[];
|
|
464
|
+
} & {
|
|
465
|
+
fields?: readonly string[];
|
|
466
|
+
}))[];
|
|
506
467
|
})[];
|
|
507
|
-
})[];
|
|
468
|
+
}))[];
|
|
508
469
|
masks?: readonly string[];
|
|
509
470
|
tags?: readonly string[];
|
|
510
471
|
allowTargetBlank?: boolean;
|
|
@@ -698,31 +659,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
698
659
|
useAsTitle?: boolean;
|
|
699
660
|
placeholder?: string;
|
|
700
661
|
select?: "media" | "document" | "web" | null;
|
|
701
|
-
customtypes?: readonly (string | {
|
|
662
|
+
customtypes?: readonly (string | ({
|
|
702
663
|
id: string;
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
customtypes: readonly (string | {
|
|
706
|
-
id: string;
|
|
707
|
-
fields: readonly (string | {
|
|
708
|
-
id: string;
|
|
709
|
-
fields: readonly string[];
|
|
710
|
-
})[];
|
|
711
|
-
})[];
|
|
712
|
-
} | {
|
|
664
|
+
} & {
|
|
665
|
+
fields?: readonly (string | {
|
|
713
666
|
id: string;
|
|
714
|
-
|
|
667
|
+
customtypes: readonly (string | ({
|
|
715
668
|
id: string;
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
id: string;
|
|
720
|
-
fields: readonly string[];
|
|
721
|
-
})[];
|
|
722
|
-
})[];
|
|
723
|
-
})[];
|
|
669
|
+
} & {
|
|
670
|
+
fields?: readonly string[];
|
|
671
|
+
}))[];
|
|
724
672
|
})[];
|
|
725
|
-
})[];
|
|
673
|
+
}))[];
|
|
726
674
|
masks?: readonly string[];
|
|
727
675
|
tags?: readonly string[];
|
|
728
676
|
allowTargetBlank?: boolean;
|
|
@@ -897,31 +845,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
897
845
|
useAsTitle?: boolean;
|
|
898
846
|
placeholder?: string;
|
|
899
847
|
select?: "media" | "document" | "web" | null;
|
|
900
|
-
customtypes?: readonly (string | {
|
|
848
|
+
customtypes?: readonly (string | ({
|
|
901
849
|
id: string;
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
customtypes: readonly (string | {
|
|
905
|
-
id: string;
|
|
906
|
-
fields: readonly (string | {
|
|
907
|
-
id: string;
|
|
908
|
-
fields: readonly string[];
|
|
909
|
-
})[];
|
|
910
|
-
})[];
|
|
911
|
-
} | {
|
|
850
|
+
} & {
|
|
851
|
+
fields?: readonly (string | {
|
|
912
852
|
id: string;
|
|
913
|
-
|
|
853
|
+
customtypes: readonly (string | ({
|
|
914
854
|
id: string;
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
id: string;
|
|
919
|
-
fields: readonly string[];
|
|
920
|
-
})[];
|
|
921
|
-
})[];
|
|
922
|
-
})[];
|
|
855
|
+
} & {
|
|
856
|
+
fields?: readonly string[];
|
|
857
|
+
}))[];
|
|
923
858
|
})[];
|
|
924
|
-
})[];
|
|
859
|
+
}))[];
|
|
925
860
|
masks?: readonly string[];
|
|
926
861
|
tags?: readonly string[];
|
|
927
862
|
allowTargetBlank?: boolean;
|
|
@@ -1097,31 +1032,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1097
1032
|
useAsTitle?: boolean;
|
|
1098
1033
|
placeholder?: string;
|
|
1099
1034
|
select?: "media" | "document" | "web" | null;
|
|
1100
|
-
customtypes?: readonly (string | {
|
|
1035
|
+
customtypes?: readonly (string | ({
|
|
1101
1036
|
id: string;
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
customtypes: readonly (string | {
|
|
1105
|
-
id: string;
|
|
1106
|
-
fields: readonly (string | {
|
|
1107
|
-
id: string;
|
|
1108
|
-
fields: readonly string[];
|
|
1109
|
-
})[];
|
|
1110
|
-
})[];
|
|
1111
|
-
} | {
|
|
1037
|
+
} & {
|
|
1038
|
+
fields?: readonly (string | {
|
|
1112
1039
|
id: string;
|
|
1113
|
-
|
|
1040
|
+
customtypes: readonly (string | ({
|
|
1114
1041
|
id: string;
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
id: string;
|
|
1119
|
-
fields: readonly string[];
|
|
1120
|
-
})[];
|
|
1121
|
-
})[];
|
|
1122
|
-
})[];
|
|
1042
|
+
} & {
|
|
1043
|
+
fields?: readonly string[];
|
|
1044
|
+
}))[];
|
|
1123
1045
|
})[];
|
|
1124
|
-
})[];
|
|
1046
|
+
}))[];
|
|
1125
1047
|
masks?: readonly string[];
|
|
1126
1048
|
tags?: readonly string[];
|
|
1127
1049
|
allowTargetBlank?: boolean;
|
|
@@ -1289,31 +1211,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1289
1211
|
useAsTitle?: boolean;
|
|
1290
1212
|
placeholder?: string;
|
|
1291
1213
|
select?: "media" | "document" | "web" | null;
|
|
1292
|
-
customtypes?: readonly (string | {
|
|
1214
|
+
customtypes?: readonly (string | ({
|
|
1293
1215
|
id: string;
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
customtypes: readonly (string | {
|
|
1297
|
-
id: string;
|
|
1298
|
-
fields: readonly (string | {
|
|
1299
|
-
id: string;
|
|
1300
|
-
fields: readonly string[];
|
|
1301
|
-
})[];
|
|
1302
|
-
})[];
|
|
1303
|
-
} | {
|
|
1216
|
+
} & {
|
|
1217
|
+
fields?: readonly (string | {
|
|
1304
1218
|
id: string;
|
|
1305
|
-
|
|
1219
|
+
customtypes: readonly (string | ({
|
|
1306
1220
|
id: string;
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
id: string;
|
|
1311
|
-
fields: readonly string[];
|
|
1312
|
-
})[];
|
|
1313
|
-
})[];
|
|
1314
|
-
})[];
|
|
1221
|
+
} & {
|
|
1222
|
+
fields?: readonly string[];
|
|
1223
|
+
}))[];
|
|
1315
1224
|
})[];
|
|
1316
|
-
})[];
|
|
1225
|
+
}))[];
|
|
1317
1226
|
masks?: readonly string[];
|
|
1318
1227
|
tags?: readonly string[];
|
|
1319
1228
|
allowTargetBlank?: boolean;
|
|
@@ -1497,31 +1406,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1497
1406
|
useAsTitle?: boolean;
|
|
1498
1407
|
placeholder?: string;
|
|
1499
1408
|
select?: "media" | "document" | "web" | null;
|
|
1500
|
-
customtypes?: readonly (string | {
|
|
1409
|
+
customtypes?: readonly (string | ({
|
|
1501
1410
|
id: string;
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
customtypes: readonly (string | {
|
|
1505
|
-
id: string;
|
|
1506
|
-
fields: readonly (string | {
|
|
1507
|
-
id: string;
|
|
1508
|
-
fields: readonly string[];
|
|
1509
|
-
})[];
|
|
1510
|
-
})[];
|
|
1511
|
-
} | {
|
|
1411
|
+
} & {
|
|
1412
|
+
fields?: readonly (string | {
|
|
1512
1413
|
id: string;
|
|
1513
|
-
|
|
1414
|
+
customtypes: readonly (string | ({
|
|
1514
1415
|
id: string;
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
id: string;
|
|
1519
|
-
fields: readonly string[];
|
|
1520
|
-
})[];
|
|
1521
|
-
})[];
|
|
1522
|
-
})[];
|
|
1416
|
+
} & {
|
|
1417
|
+
fields?: readonly string[];
|
|
1418
|
+
}))[];
|
|
1523
1419
|
})[];
|
|
1524
|
-
})[];
|
|
1420
|
+
}))[];
|
|
1525
1421
|
masks?: readonly string[];
|
|
1526
1422
|
tags?: readonly string[];
|
|
1527
1423
|
allowTargetBlank?: boolean;
|
|
@@ -1696,31 +1592,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1696
1592
|
useAsTitle?: boolean;
|
|
1697
1593
|
placeholder?: string;
|
|
1698
1594
|
select?: "media" | "document" | "web" | null;
|
|
1699
|
-
customtypes?: readonly (string | {
|
|
1595
|
+
customtypes?: readonly (string | ({
|
|
1700
1596
|
id: string;
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
customtypes: readonly (string | {
|
|
1704
|
-
id: string;
|
|
1705
|
-
fields: readonly (string | {
|
|
1706
|
-
id: string;
|
|
1707
|
-
fields: readonly string[];
|
|
1708
|
-
})[];
|
|
1709
|
-
})[];
|
|
1710
|
-
} | {
|
|
1597
|
+
} & {
|
|
1598
|
+
fields?: readonly (string | {
|
|
1711
1599
|
id: string;
|
|
1712
|
-
|
|
1600
|
+
customtypes: readonly (string | ({
|
|
1713
1601
|
id: string;
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
id: string;
|
|
1718
|
-
fields: readonly string[];
|
|
1719
|
-
})[];
|
|
1720
|
-
})[];
|
|
1721
|
-
})[];
|
|
1602
|
+
} & {
|
|
1603
|
+
fields?: readonly string[];
|
|
1604
|
+
}))[];
|
|
1722
1605
|
})[];
|
|
1723
|
-
})[];
|
|
1606
|
+
}))[];
|
|
1724
1607
|
masks?: readonly string[];
|
|
1725
1608
|
tags?: readonly string[];
|
|
1726
1609
|
allowTargetBlank?: boolean;
|
|
@@ -1895,31 +1778,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1895
1778
|
useAsTitle?: boolean;
|
|
1896
1779
|
placeholder?: string;
|
|
1897
1780
|
select?: "media" | "document" | "web" | null;
|
|
1898
|
-
customtypes?: readonly (string | {
|
|
1781
|
+
customtypes?: readonly (string | ({
|
|
1899
1782
|
id: string;
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
customtypes: readonly (string | {
|
|
1903
|
-
id: string;
|
|
1904
|
-
fields: readonly (string | {
|
|
1905
|
-
id: string;
|
|
1906
|
-
fields: readonly string[];
|
|
1907
|
-
})[];
|
|
1908
|
-
})[];
|
|
1909
|
-
} | {
|
|
1783
|
+
} & {
|
|
1784
|
+
fields?: readonly (string | {
|
|
1910
1785
|
id: string;
|
|
1911
|
-
|
|
1786
|
+
customtypes: readonly (string | ({
|
|
1912
1787
|
id: string;
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
id: string;
|
|
1917
|
-
fields: readonly string[];
|
|
1918
|
-
})[];
|
|
1919
|
-
})[];
|
|
1920
|
-
})[];
|
|
1788
|
+
} & {
|
|
1789
|
+
fields?: readonly string[];
|
|
1790
|
+
}))[];
|
|
1921
1791
|
})[];
|
|
1922
|
-
})[];
|
|
1792
|
+
}))[];
|
|
1923
1793
|
masks?: readonly string[];
|
|
1924
1794
|
tags?: readonly string[];
|
|
1925
1795
|
allowTargetBlank?: boolean;
|
|
@@ -2093,31 +1963,18 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
2093
1963
|
useAsTitle?: boolean;
|
|
2094
1964
|
placeholder?: string;
|
|
2095
1965
|
select?: "media" | "document" | "web" | null;
|
|
2096
|
-
customtypes?: readonly (string | {
|
|
1966
|
+
customtypes?: readonly (string | ({
|
|
2097
1967
|
id: string;
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
customtypes: readonly (string | {
|
|
2101
|
-
id: string;
|
|
2102
|
-
fields: readonly (string | {
|
|
2103
|
-
id: string;
|
|
2104
|
-
fields: readonly string[];
|
|
2105
|
-
})[];
|
|
2106
|
-
})[];
|
|
2107
|
-
} | {
|
|
1968
|
+
} & {
|
|
1969
|
+
fields?: readonly (string | {
|
|
2108
1970
|
id: string;
|
|
2109
|
-
|
|
1971
|
+
customtypes: readonly (string | ({
|
|
2110
1972
|
id: string;
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
id: string;
|
|
2115
|
-
fields: readonly string[];
|
|
2116
|
-
})[];
|
|
2117
|
-
})[];
|
|
2118
|
-
})[];
|
|
1973
|
+
} & {
|
|
1974
|
+
fields?: readonly string[];
|
|
1975
|
+
}))[];
|
|
2119
1976
|
})[];
|
|
2120
|
-
})[];
|
|
1977
|
+
}))[];
|
|
2121
1978
|
masks?: readonly string[];
|
|
2122
1979
|
tags?: readonly string[];
|
|
2123
1980
|
allowTargetBlank?: boolean;
|
|
@@ -2295,31 +2152,18 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2295
2152
|
useAsTitle?: boolean;
|
|
2296
2153
|
placeholder?: string;
|
|
2297
2154
|
select?: "media" | "document" | "web" | null;
|
|
2298
|
-
customtypes?: readonly (string | {
|
|
2155
|
+
customtypes?: readonly (string | ({
|
|
2299
2156
|
id: string;
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
customtypes: readonly (string | {
|
|
2303
|
-
id: string;
|
|
2304
|
-
fields: readonly (string | {
|
|
2305
|
-
id: string;
|
|
2306
|
-
fields: readonly string[];
|
|
2307
|
-
})[];
|
|
2308
|
-
})[];
|
|
2309
|
-
} | {
|
|
2157
|
+
} & {
|
|
2158
|
+
fields?: readonly (string | {
|
|
2310
2159
|
id: string;
|
|
2311
|
-
|
|
2160
|
+
customtypes: readonly (string | ({
|
|
2312
2161
|
id: string;
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
id: string;
|
|
2317
|
-
fields: readonly string[];
|
|
2318
|
-
})[];
|
|
2319
|
-
})[];
|
|
2320
|
-
})[];
|
|
2162
|
+
} & {
|
|
2163
|
+
fields?: readonly string[];
|
|
2164
|
+
}))[];
|
|
2321
2165
|
})[];
|
|
2322
|
-
})[];
|
|
2166
|
+
}))[];
|
|
2323
2167
|
masks?: readonly string[];
|
|
2324
2168
|
tags?: readonly string[];
|
|
2325
2169
|
allowTargetBlank?: boolean;
|
|
@@ -2494,31 +2338,18 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2494
2338
|
useAsTitle?: boolean;
|
|
2495
2339
|
placeholder?: string;
|
|
2496
2340
|
select?: "media" | "document" | "web" | null;
|
|
2497
|
-
customtypes?: readonly (string | {
|
|
2341
|
+
customtypes?: readonly (string | ({
|
|
2498
2342
|
id: string;
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
customtypes: readonly (string | {
|
|
2502
|
-
id: string;
|
|
2503
|
-
fields: readonly (string | {
|
|
2504
|
-
id: string;
|
|
2505
|
-
fields: readonly string[];
|
|
2506
|
-
})[];
|
|
2507
|
-
})[];
|
|
2508
|
-
} | {
|
|
2343
|
+
} & {
|
|
2344
|
+
fields?: readonly (string | {
|
|
2509
2345
|
id: string;
|
|
2510
|
-
|
|
2346
|
+
customtypes: readonly (string | ({
|
|
2511
2347
|
id: string;
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
id: string;
|
|
2516
|
-
fields: readonly string[];
|
|
2517
|
-
})[];
|
|
2518
|
-
})[];
|
|
2519
|
-
})[];
|
|
2348
|
+
} & {
|
|
2349
|
+
fields?: readonly string[];
|
|
2350
|
+
}))[];
|
|
2520
2351
|
})[];
|
|
2521
|
-
})[];
|
|
2352
|
+
}))[];
|
|
2522
2353
|
masks?: readonly string[];
|
|
2523
2354
|
tags?: readonly string[];
|
|
2524
2355
|
allowTargetBlank?: boolean;
|
|
@@ -2693,31 +2524,18 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2693
2524
|
useAsTitle?: boolean;
|
|
2694
2525
|
placeholder?: string;
|
|
2695
2526
|
select?: "media" | "document" | "web" | null;
|
|
2696
|
-
customtypes?: readonly (string | {
|
|
2527
|
+
customtypes?: readonly (string | ({
|
|
2697
2528
|
id: string;
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
customtypes: readonly (string | {
|
|
2701
|
-
id: string;
|
|
2702
|
-
fields: readonly (string | {
|
|
2703
|
-
id: string;
|
|
2704
|
-
fields: readonly string[];
|
|
2705
|
-
})[];
|
|
2706
|
-
})[];
|
|
2707
|
-
} | {
|
|
2529
|
+
} & {
|
|
2530
|
+
fields?: readonly (string | {
|
|
2708
2531
|
id: string;
|
|
2709
|
-
|
|
2532
|
+
customtypes: readonly (string | ({
|
|
2710
2533
|
id: string;
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
id: string;
|
|
2715
|
-
fields: readonly string[];
|
|
2716
|
-
})[];
|
|
2717
|
-
})[];
|
|
2718
|
-
})[];
|
|
2534
|
+
} & {
|
|
2535
|
+
fields?: readonly string[];
|
|
2536
|
+
}))[];
|
|
2719
2537
|
})[];
|
|
2720
|
-
})[];
|
|
2538
|
+
}))[];
|
|
2721
2539
|
masks?: readonly string[];
|
|
2722
2540
|
tags?: readonly string[];
|
|
2723
2541
|
allowTargetBlank?: boolean;
|
|
@@ -2911,31 +2729,18 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2911
2729
|
useAsTitle?: boolean;
|
|
2912
2730
|
placeholder?: string;
|
|
2913
2731
|
select?: "media" | "document" | "web" | null;
|
|
2914
|
-
customtypes?: readonly (string | {
|
|
2732
|
+
customtypes?: readonly (string | ({
|
|
2915
2733
|
id: string;
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
customtypes: readonly (string | {
|
|
2919
|
-
id: string;
|
|
2920
|
-
fields: readonly (string | {
|
|
2921
|
-
id: string;
|
|
2922
|
-
fields: readonly string[];
|
|
2923
|
-
})[];
|
|
2924
|
-
})[];
|
|
2925
|
-
} | {
|
|
2734
|
+
} & {
|
|
2735
|
+
fields?: readonly (string | {
|
|
2926
2736
|
id: string;
|
|
2927
|
-
|
|
2737
|
+
customtypes: readonly (string | ({
|
|
2928
2738
|
id: string;
|
|
2929
|
-
|
|
2930
|
-
|
|
2931
|
-
|
|
2932
|
-
id: string;
|
|
2933
|
-
fields: readonly string[];
|
|
2934
|
-
})[];
|
|
2935
|
-
})[];
|
|
2936
|
-
})[];
|
|
2739
|
+
} & {
|
|
2740
|
+
fields?: readonly string[];
|
|
2741
|
+
}))[];
|
|
2937
2742
|
})[];
|
|
2938
|
-
})[];
|
|
2743
|
+
}))[];
|
|
2939
2744
|
masks?: readonly string[];
|
|
2940
2745
|
tags?: readonly string[];
|
|
2941
2746
|
allowTargetBlank?: boolean;
|
|
@@ -3110,31 +2915,18 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
3110
2915
|
useAsTitle?: boolean;
|
|
3111
2916
|
placeholder?: string;
|
|
3112
2917
|
select?: "media" | "document" | "web" | null;
|
|
3113
|
-
customtypes?: readonly (string | {
|
|
2918
|
+
customtypes?: readonly (string | ({
|
|
3114
2919
|
id: string;
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
customtypes: readonly (string | {
|
|
3118
|
-
id: string;
|
|
3119
|
-
fields: readonly (string | {
|
|
3120
|
-
id: string;
|
|
3121
|
-
fields: readonly string[];
|
|
3122
|
-
})[];
|
|
3123
|
-
})[];
|
|
3124
|
-
} | {
|
|
2920
|
+
} & {
|
|
2921
|
+
fields?: readonly (string | {
|
|
3125
2922
|
id: string;
|
|
3126
|
-
|
|
2923
|
+
customtypes: readonly (string | ({
|
|
3127
2924
|
id: string;
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
id: string;
|
|
3132
|
-
fields: readonly string[];
|
|
3133
|
-
})[];
|
|
3134
|
-
})[];
|
|
3135
|
-
})[];
|
|
2925
|
+
} & {
|
|
2926
|
+
fields?: readonly string[];
|
|
2927
|
+
}))[];
|
|
3136
2928
|
})[];
|
|
3137
|
-
})[];
|
|
2929
|
+
}))[];
|
|
3138
2930
|
masks?: readonly string[];
|
|
3139
2931
|
tags?: readonly string[];
|
|
3140
2932
|
allowTargetBlank?: boolean;
|
|
@@ -3310,31 +3102,18 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
3310
3102
|
useAsTitle?: boolean;
|
|
3311
3103
|
placeholder?: string;
|
|
3312
3104
|
select?: "media" | "document" | "web" | null;
|
|
3313
|
-
customtypes?: readonly (string | {
|
|
3105
|
+
customtypes?: readonly (string | ({
|
|
3314
3106
|
id: string;
|
|
3315
|
-
|
|
3316
|
-
|
|
3317
|
-
customtypes: readonly (string | {
|
|
3318
|
-
id: string;
|
|
3319
|
-
fields: readonly (string | {
|
|
3320
|
-
id: string;
|
|
3321
|
-
fields: readonly string[];
|
|
3322
|
-
})[];
|
|
3323
|
-
})[];
|
|
3324
|
-
} | {
|
|
3107
|
+
} & {
|
|
3108
|
+
fields?: readonly (string | {
|
|
3325
3109
|
id: string;
|
|
3326
|
-
|
|
3110
|
+
customtypes: readonly (string | ({
|
|
3327
3111
|
id: string;
|
|
3328
|
-
|
|
3329
|
-
|
|
3330
|
-
|
|
3331
|
-
id: string;
|
|
3332
|
-
fields: readonly string[];
|
|
3333
|
-
})[];
|
|
3334
|
-
})[];
|
|
3335
|
-
})[];
|
|
3112
|
+
} & {
|
|
3113
|
+
fields?: readonly string[];
|
|
3114
|
+
}))[];
|
|
3336
3115
|
})[];
|
|
3337
|
-
})[];
|
|
3116
|
+
}))[];
|
|
3338
3117
|
masks?: readonly string[];
|
|
3339
3118
|
tags?: readonly string[];
|
|
3340
3119
|
allowTargetBlank?: boolean;
|
|
@@ -3502,31 +3281,18 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
3502
3281
|
useAsTitle?: boolean;
|
|
3503
3282
|
placeholder?: string;
|
|
3504
3283
|
select?: "media" | "document" | "web" | null;
|
|
3505
|
-
customtypes?: readonly (string | {
|
|
3284
|
+
customtypes?: readonly (string | ({
|
|
3506
3285
|
id: string;
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
customtypes: readonly (string | {
|
|
3510
|
-
id: string;
|
|
3511
|
-
fields: readonly (string | {
|
|
3512
|
-
id: string;
|
|
3513
|
-
fields: readonly string[];
|
|
3514
|
-
})[];
|
|
3515
|
-
})[];
|
|
3516
|
-
} | {
|
|
3286
|
+
} & {
|
|
3287
|
+
fields?: readonly (string | {
|
|
3517
3288
|
id: string;
|
|
3518
|
-
|
|
3289
|
+
customtypes: readonly (string | ({
|
|
3519
3290
|
id: string;
|
|
3520
|
-
|
|
3521
|
-
|
|
3522
|
-
|
|
3523
|
-
id: string;
|
|
3524
|
-
fields: readonly string[];
|
|
3525
|
-
})[];
|
|
3526
|
-
})[];
|
|
3527
|
-
})[];
|
|
3291
|
+
} & {
|
|
3292
|
+
fields?: readonly string[];
|
|
3293
|
+
}))[];
|
|
3528
3294
|
})[];
|
|
3529
|
-
})[];
|
|
3295
|
+
}))[];
|
|
3530
3296
|
masks?: readonly string[];
|
|
3531
3297
|
tags?: readonly string[];
|
|
3532
3298
|
allowTargetBlank?: boolean;
|