@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
|
@@ -98,31 +98,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
98
98
|
useAsTitle?: boolean;
|
|
99
99
|
placeholder?: string;
|
|
100
100
|
select?: "media" | "document" | "web" | null;
|
|
101
|
-
customtypes?: readonly (string | {
|
|
101
|
+
customtypes?: readonly (string | ({
|
|
102
102
|
id: string;
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
customtypes: readonly (string | {
|
|
106
|
-
id: string;
|
|
107
|
-
fields: readonly (string | {
|
|
108
|
-
id: string;
|
|
109
|
-
fields: readonly string[];
|
|
110
|
-
})[];
|
|
111
|
-
})[];
|
|
112
|
-
} | {
|
|
103
|
+
} & {
|
|
104
|
+
fields?: readonly (string | {
|
|
113
105
|
id: string;
|
|
114
|
-
|
|
106
|
+
customtypes: readonly (string | ({
|
|
115
107
|
id: string;
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
id: string;
|
|
120
|
-
fields: readonly string[];
|
|
121
|
-
})[];
|
|
122
|
-
})[];
|
|
123
|
-
})[];
|
|
108
|
+
} & {
|
|
109
|
+
fields?: readonly string[];
|
|
110
|
+
}))[];
|
|
124
111
|
})[];
|
|
125
|
-
})[];
|
|
112
|
+
}))[];
|
|
126
113
|
masks?: readonly string[];
|
|
127
114
|
tags?: readonly string[];
|
|
128
115
|
allowTargetBlank?: boolean;
|
|
@@ -297,31 +284,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
297
284
|
useAsTitle?: boolean;
|
|
298
285
|
placeholder?: string;
|
|
299
286
|
select?: "media" | "document" | "web" | null;
|
|
300
|
-
customtypes?: readonly (string | {
|
|
287
|
+
customtypes?: readonly (string | ({
|
|
301
288
|
id: string;
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
customtypes: readonly (string | {
|
|
305
|
-
id: string;
|
|
306
|
-
fields: readonly (string | {
|
|
307
|
-
id: string;
|
|
308
|
-
fields: readonly string[];
|
|
309
|
-
})[];
|
|
310
|
-
})[];
|
|
311
|
-
} | {
|
|
289
|
+
} & {
|
|
290
|
+
fields?: readonly (string | {
|
|
312
291
|
id: string;
|
|
313
|
-
|
|
292
|
+
customtypes: readonly (string | ({
|
|
314
293
|
id: string;
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
id: string;
|
|
319
|
-
fields: readonly string[];
|
|
320
|
-
})[];
|
|
321
|
-
})[];
|
|
322
|
-
})[];
|
|
294
|
+
} & {
|
|
295
|
+
fields?: readonly string[];
|
|
296
|
+
}))[];
|
|
323
297
|
})[];
|
|
324
|
-
})[];
|
|
298
|
+
}))[];
|
|
325
299
|
masks?: readonly string[];
|
|
326
300
|
tags?: readonly string[];
|
|
327
301
|
allowTargetBlank?: boolean;
|
|
@@ -496,31 +470,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
496
470
|
useAsTitle?: boolean;
|
|
497
471
|
placeholder?: string;
|
|
498
472
|
select?: "media" | "document" | "web" | null;
|
|
499
|
-
customtypes?: readonly (string | {
|
|
473
|
+
customtypes?: readonly (string | ({
|
|
500
474
|
id: string;
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
customtypes: readonly (string | {
|
|
504
|
-
id: string;
|
|
505
|
-
fields: readonly (string | {
|
|
506
|
-
id: string;
|
|
507
|
-
fields: readonly string[];
|
|
508
|
-
})[];
|
|
509
|
-
})[];
|
|
510
|
-
} | {
|
|
475
|
+
} & {
|
|
476
|
+
fields?: readonly (string | {
|
|
511
477
|
id: string;
|
|
512
|
-
|
|
478
|
+
customtypes: readonly (string | ({
|
|
513
479
|
id: string;
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
id: string;
|
|
518
|
-
fields: readonly string[];
|
|
519
|
-
})[];
|
|
520
|
-
})[];
|
|
521
|
-
})[];
|
|
480
|
+
} & {
|
|
481
|
+
fields?: readonly string[];
|
|
482
|
+
}))[];
|
|
522
483
|
})[];
|
|
523
|
-
})[];
|
|
484
|
+
}))[];
|
|
524
485
|
masks?: readonly string[];
|
|
525
486
|
tags?: readonly string[];
|
|
526
487
|
allowTargetBlank?: boolean;
|
|
@@ -714,31 +675,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
714
675
|
useAsTitle?: boolean;
|
|
715
676
|
placeholder?: string;
|
|
716
677
|
select?: "media" | "document" | "web" | null;
|
|
717
|
-
customtypes?: readonly (string | {
|
|
678
|
+
customtypes?: readonly (string | ({
|
|
718
679
|
id: string;
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
customtypes: readonly (string | {
|
|
722
|
-
id: string;
|
|
723
|
-
fields: readonly (string | {
|
|
724
|
-
id: string;
|
|
725
|
-
fields: readonly string[];
|
|
726
|
-
})[];
|
|
727
|
-
})[];
|
|
728
|
-
} | {
|
|
680
|
+
} & {
|
|
681
|
+
fields?: readonly (string | {
|
|
729
682
|
id: string;
|
|
730
|
-
|
|
683
|
+
customtypes: readonly (string | ({
|
|
731
684
|
id: string;
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
id: string;
|
|
736
|
-
fields: readonly string[];
|
|
737
|
-
})[];
|
|
738
|
-
})[];
|
|
739
|
-
})[];
|
|
685
|
+
} & {
|
|
686
|
+
fields?: readonly string[];
|
|
687
|
+
}))[];
|
|
740
688
|
})[];
|
|
741
|
-
})[];
|
|
689
|
+
}))[];
|
|
742
690
|
masks?: readonly string[];
|
|
743
691
|
tags?: readonly string[];
|
|
744
692
|
allowTargetBlank?: boolean;
|
|
@@ -913,31 +861,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
913
861
|
useAsTitle?: boolean;
|
|
914
862
|
placeholder?: string;
|
|
915
863
|
select?: "media" | "document" | "web" | null;
|
|
916
|
-
customtypes?: readonly (string | {
|
|
864
|
+
customtypes?: readonly (string | ({
|
|
917
865
|
id: string;
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
customtypes: readonly (string | {
|
|
921
|
-
id: string;
|
|
922
|
-
fields: readonly (string | {
|
|
923
|
-
id: string;
|
|
924
|
-
fields: readonly string[];
|
|
925
|
-
})[];
|
|
926
|
-
})[];
|
|
927
|
-
} | {
|
|
866
|
+
} & {
|
|
867
|
+
fields?: readonly (string | {
|
|
928
868
|
id: string;
|
|
929
|
-
|
|
869
|
+
customtypes: readonly (string | ({
|
|
930
870
|
id: string;
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
id: string;
|
|
935
|
-
fields: readonly string[];
|
|
936
|
-
})[];
|
|
937
|
-
})[];
|
|
938
|
-
})[];
|
|
871
|
+
} & {
|
|
872
|
+
fields?: readonly string[];
|
|
873
|
+
}))[];
|
|
939
874
|
})[];
|
|
940
|
-
})[];
|
|
875
|
+
}))[];
|
|
941
876
|
masks?: readonly string[];
|
|
942
877
|
tags?: readonly string[];
|
|
943
878
|
allowTargetBlank?: boolean;
|
|
@@ -1113,31 +1048,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1113
1048
|
useAsTitle?: boolean;
|
|
1114
1049
|
placeholder?: string;
|
|
1115
1050
|
select?: "media" | "document" | "web" | null;
|
|
1116
|
-
customtypes?: readonly (string | {
|
|
1051
|
+
customtypes?: readonly (string | ({
|
|
1117
1052
|
id: string;
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
customtypes: readonly (string | {
|
|
1121
|
-
id: string;
|
|
1122
|
-
fields: readonly (string | {
|
|
1123
|
-
id: string;
|
|
1124
|
-
fields: readonly string[];
|
|
1125
|
-
})[];
|
|
1126
|
-
})[];
|
|
1127
|
-
} | {
|
|
1053
|
+
} & {
|
|
1054
|
+
fields?: readonly (string | {
|
|
1128
1055
|
id: string;
|
|
1129
|
-
|
|
1056
|
+
customtypes: readonly (string | ({
|
|
1130
1057
|
id: string;
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
id: string;
|
|
1135
|
-
fields: readonly string[];
|
|
1136
|
-
})[];
|
|
1137
|
-
})[];
|
|
1138
|
-
})[];
|
|
1058
|
+
} & {
|
|
1059
|
+
fields?: readonly string[];
|
|
1060
|
+
}))[];
|
|
1139
1061
|
})[];
|
|
1140
|
-
})[];
|
|
1062
|
+
}))[];
|
|
1141
1063
|
masks?: readonly string[];
|
|
1142
1064
|
tags?: readonly string[];
|
|
1143
1065
|
allowTargetBlank?: boolean;
|
|
@@ -1305,31 +1227,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1305
1227
|
useAsTitle?: boolean;
|
|
1306
1228
|
placeholder?: string;
|
|
1307
1229
|
select?: "media" | "document" | "web" | null;
|
|
1308
|
-
customtypes?: readonly (string | {
|
|
1230
|
+
customtypes?: readonly (string | ({
|
|
1309
1231
|
id: string;
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
customtypes: readonly (string | {
|
|
1313
|
-
id: string;
|
|
1314
|
-
fields: readonly (string | {
|
|
1315
|
-
id: string;
|
|
1316
|
-
fields: readonly string[];
|
|
1317
|
-
})[];
|
|
1318
|
-
})[];
|
|
1319
|
-
} | {
|
|
1232
|
+
} & {
|
|
1233
|
+
fields?: readonly (string | {
|
|
1320
1234
|
id: string;
|
|
1321
|
-
|
|
1235
|
+
customtypes: readonly (string | ({
|
|
1322
1236
|
id: string;
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
id: string;
|
|
1327
|
-
fields: readonly string[];
|
|
1328
|
-
})[];
|
|
1329
|
-
})[];
|
|
1330
|
-
})[];
|
|
1237
|
+
} & {
|
|
1238
|
+
fields?: readonly string[];
|
|
1239
|
+
}))[];
|
|
1331
1240
|
})[];
|
|
1332
|
-
})[];
|
|
1241
|
+
}))[];
|
|
1333
1242
|
masks?: readonly string[];
|
|
1334
1243
|
tags?: readonly string[];
|
|
1335
1244
|
allowTargetBlank?: boolean;
|
|
@@ -1513,31 +1422,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1513
1422
|
useAsTitle?: boolean;
|
|
1514
1423
|
placeholder?: string;
|
|
1515
1424
|
select?: "media" | "document" | "web" | null;
|
|
1516
|
-
customtypes?: readonly (string | {
|
|
1425
|
+
customtypes?: readonly (string | ({
|
|
1517
1426
|
id: string;
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
customtypes: readonly (string | {
|
|
1521
|
-
id: string;
|
|
1522
|
-
fields: readonly (string | {
|
|
1523
|
-
id: string;
|
|
1524
|
-
fields: readonly string[];
|
|
1525
|
-
})[];
|
|
1526
|
-
})[];
|
|
1527
|
-
} | {
|
|
1427
|
+
} & {
|
|
1428
|
+
fields?: readonly (string | {
|
|
1528
1429
|
id: string;
|
|
1529
|
-
|
|
1430
|
+
customtypes: readonly (string | ({
|
|
1530
1431
|
id: string;
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
id: string;
|
|
1535
|
-
fields: readonly string[];
|
|
1536
|
-
})[];
|
|
1537
|
-
})[];
|
|
1538
|
-
})[];
|
|
1432
|
+
} & {
|
|
1433
|
+
fields?: readonly string[];
|
|
1434
|
+
}))[];
|
|
1539
1435
|
})[];
|
|
1540
|
-
})[];
|
|
1436
|
+
}))[];
|
|
1541
1437
|
masks?: readonly string[];
|
|
1542
1438
|
tags?: readonly string[];
|
|
1543
1439
|
allowTargetBlank?: boolean;
|
|
@@ -1712,31 +1608,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1712
1608
|
useAsTitle?: boolean;
|
|
1713
1609
|
placeholder?: string;
|
|
1714
1610
|
select?: "media" | "document" | "web" | null;
|
|
1715
|
-
customtypes?: readonly (string | {
|
|
1611
|
+
customtypes?: readonly (string | ({
|
|
1716
1612
|
id: string;
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
customtypes: readonly (string | {
|
|
1720
|
-
id: string;
|
|
1721
|
-
fields: readonly (string | {
|
|
1722
|
-
id: string;
|
|
1723
|
-
fields: readonly string[];
|
|
1724
|
-
})[];
|
|
1725
|
-
})[];
|
|
1726
|
-
} | {
|
|
1613
|
+
} & {
|
|
1614
|
+
fields?: readonly (string | {
|
|
1727
1615
|
id: string;
|
|
1728
|
-
|
|
1616
|
+
customtypes: readonly (string | ({
|
|
1729
1617
|
id: string;
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
id: string;
|
|
1734
|
-
fields: readonly string[];
|
|
1735
|
-
})[];
|
|
1736
|
-
})[];
|
|
1737
|
-
})[];
|
|
1618
|
+
} & {
|
|
1619
|
+
fields?: readonly string[];
|
|
1620
|
+
}))[];
|
|
1738
1621
|
})[];
|
|
1739
|
-
})[];
|
|
1622
|
+
}))[];
|
|
1740
1623
|
masks?: readonly string[];
|
|
1741
1624
|
tags?: readonly string[];
|
|
1742
1625
|
allowTargetBlank?: boolean;
|
|
@@ -1911,31 +1794,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1911
1794
|
useAsTitle?: boolean;
|
|
1912
1795
|
placeholder?: string;
|
|
1913
1796
|
select?: "media" | "document" | "web" | null;
|
|
1914
|
-
customtypes?: readonly (string | {
|
|
1797
|
+
customtypes?: readonly (string | ({
|
|
1915
1798
|
id: string;
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
customtypes: readonly (string | {
|
|
1919
|
-
id: string;
|
|
1920
|
-
fields: readonly (string | {
|
|
1921
|
-
id: string;
|
|
1922
|
-
fields: readonly string[];
|
|
1923
|
-
})[];
|
|
1924
|
-
})[];
|
|
1925
|
-
} | {
|
|
1799
|
+
} & {
|
|
1800
|
+
fields?: readonly (string | {
|
|
1926
1801
|
id: string;
|
|
1927
|
-
|
|
1802
|
+
customtypes: readonly (string | ({
|
|
1928
1803
|
id: string;
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
id: string;
|
|
1933
|
-
fields: readonly string[];
|
|
1934
|
-
})[];
|
|
1935
|
-
})[];
|
|
1936
|
-
})[];
|
|
1804
|
+
} & {
|
|
1805
|
+
fields?: readonly string[];
|
|
1806
|
+
}))[];
|
|
1937
1807
|
})[];
|
|
1938
|
-
})[];
|
|
1808
|
+
}))[];
|
|
1939
1809
|
masks?: readonly string[];
|
|
1940
1810
|
tags?: readonly string[];
|
|
1941
1811
|
allowTargetBlank?: boolean;
|
|
@@ -2109,31 +1979,18 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2109
1979
|
useAsTitle?: boolean;
|
|
2110
1980
|
placeholder?: string;
|
|
2111
1981
|
select?: "media" | "document" | "web" | null;
|
|
2112
|
-
customtypes?: readonly (string | {
|
|
1982
|
+
customtypes?: readonly (string | ({
|
|
2113
1983
|
id: string;
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
customtypes: readonly (string | {
|
|
2117
|
-
id: string;
|
|
2118
|
-
fields: readonly (string | {
|
|
2119
|
-
id: string;
|
|
2120
|
-
fields: readonly string[];
|
|
2121
|
-
})[];
|
|
2122
|
-
})[];
|
|
2123
|
-
} | {
|
|
1984
|
+
} & {
|
|
1985
|
+
fields?: readonly (string | {
|
|
2124
1986
|
id: string;
|
|
2125
|
-
|
|
1987
|
+
customtypes: readonly (string | ({
|
|
2126
1988
|
id: string;
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
id: string;
|
|
2131
|
-
fields: readonly string[];
|
|
2132
|
-
})[];
|
|
2133
|
-
})[];
|
|
2134
|
-
})[];
|
|
1989
|
+
} & {
|
|
1990
|
+
fields?: readonly string[];
|
|
1991
|
+
}))[];
|
|
2135
1992
|
})[];
|
|
2136
|
-
})[];
|
|
1993
|
+
}))[];
|
|
2137
1994
|
masks?: readonly string[];
|
|
2138
1995
|
tags?: readonly string[];
|
|
2139
1996
|
allowTargetBlank?: boolean;
|
|
@@ -2324,31 +2181,18 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2324
2181
|
useAsTitle?: boolean;
|
|
2325
2182
|
placeholder?: string;
|
|
2326
2183
|
select?: "media" | "document" | "web" | null;
|
|
2327
|
-
customtypes?: readonly (string | {
|
|
2184
|
+
customtypes?: readonly (string | ({
|
|
2328
2185
|
id: string;
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
customtypes: readonly (string | {
|
|
2332
|
-
id: string;
|
|
2333
|
-
fields: readonly (string | {
|
|
2334
|
-
id: string;
|
|
2335
|
-
fields: readonly string[];
|
|
2336
|
-
})[];
|
|
2337
|
-
})[];
|
|
2338
|
-
} | {
|
|
2186
|
+
} & {
|
|
2187
|
+
fields?: readonly (string | {
|
|
2339
2188
|
id: string;
|
|
2340
|
-
|
|
2189
|
+
customtypes: readonly (string | ({
|
|
2341
2190
|
id: string;
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
id: string;
|
|
2346
|
-
fields: readonly string[];
|
|
2347
|
-
})[];
|
|
2348
|
-
})[];
|
|
2349
|
-
})[];
|
|
2191
|
+
} & {
|
|
2192
|
+
fields?: readonly string[];
|
|
2193
|
+
}))[];
|
|
2350
2194
|
})[];
|
|
2351
|
-
})[];
|
|
2195
|
+
}))[];
|
|
2352
2196
|
masks?: readonly string[];
|
|
2353
2197
|
tags?: readonly string[];
|
|
2354
2198
|
allowTargetBlank?: boolean;
|
|
@@ -2523,31 +2367,18 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2523
2367
|
useAsTitle?: boolean;
|
|
2524
2368
|
placeholder?: string;
|
|
2525
2369
|
select?: "media" | "document" | "web" | null;
|
|
2526
|
-
customtypes?: readonly (string | {
|
|
2370
|
+
customtypes?: readonly (string | ({
|
|
2527
2371
|
id: string;
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
customtypes: readonly (string | {
|
|
2531
|
-
id: string;
|
|
2532
|
-
fields: readonly (string | {
|
|
2533
|
-
id: string;
|
|
2534
|
-
fields: readonly string[];
|
|
2535
|
-
})[];
|
|
2536
|
-
})[];
|
|
2537
|
-
} | {
|
|
2372
|
+
} & {
|
|
2373
|
+
fields?: readonly (string | {
|
|
2538
2374
|
id: string;
|
|
2539
|
-
|
|
2375
|
+
customtypes: readonly (string | ({
|
|
2540
2376
|
id: string;
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
id: string;
|
|
2545
|
-
fields: readonly string[];
|
|
2546
|
-
})[];
|
|
2547
|
-
})[];
|
|
2548
|
-
})[];
|
|
2377
|
+
} & {
|
|
2378
|
+
fields?: readonly string[];
|
|
2379
|
+
}))[];
|
|
2549
2380
|
})[];
|
|
2550
|
-
})[];
|
|
2381
|
+
}))[];
|
|
2551
2382
|
masks?: readonly string[];
|
|
2552
2383
|
tags?: readonly string[];
|
|
2553
2384
|
allowTargetBlank?: boolean;
|
|
@@ -2722,31 +2553,18 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2722
2553
|
useAsTitle?: boolean;
|
|
2723
2554
|
placeholder?: string;
|
|
2724
2555
|
select?: "media" | "document" | "web" | null;
|
|
2725
|
-
customtypes?: readonly (string | {
|
|
2556
|
+
customtypes?: readonly (string | ({
|
|
2726
2557
|
id: string;
|
|
2727
|
-
|
|
2728
|
-
|
|
2729
|
-
customtypes: readonly (string | {
|
|
2730
|
-
id: string;
|
|
2731
|
-
fields: readonly (string | {
|
|
2732
|
-
id: string;
|
|
2733
|
-
fields: readonly string[];
|
|
2734
|
-
})[];
|
|
2735
|
-
})[];
|
|
2736
|
-
} | {
|
|
2558
|
+
} & {
|
|
2559
|
+
fields?: readonly (string | {
|
|
2737
2560
|
id: string;
|
|
2738
|
-
|
|
2561
|
+
customtypes: readonly (string | ({
|
|
2739
2562
|
id: string;
|
|
2740
|
-
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
id: string;
|
|
2744
|
-
fields: readonly string[];
|
|
2745
|
-
})[];
|
|
2746
|
-
})[];
|
|
2747
|
-
})[];
|
|
2563
|
+
} & {
|
|
2564
|
+
fields?: readonly string[];
|
|
2565
|
+
}))[];
|
|
2748
2566
|
})[];
|
|
2749
|
-
})[];
|
|
2567
|
+
}))[];
|
|
2750
2568
|
masks?: readonly string[];
|
|
2751
2569
|
tags?: readonly string[];
|
|
2752
2570
|
allowTargetBlank?: boolean;
|
|
@@ -2940,31 +2758,18 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2940
2758
|
useAsTitle?: boolean;
|
|
2941
2759
|
placeholder?: string;
|
|
2942
2760
|
select?: "media" | "document" | "web" | null;
|
|
2943
|
-
customtypes?: readonly (string | {
|
|
2761
|
+
customtypes?: readonly (string | ({
|
|
2944
2762
|
id: string;
|
|
2945
|
-
|
|
2946
|
-
|
|
2947
|
-
customtypes: readonly (string | {
|
|
2948
|
-
id: string;
|
|
2949
|
-
fields: readonly (string | {
|
|
2950
|
-
id: string;
|
|
2951
|
-
fields: readonly string[];
|
|
2952
|
-
})[];
|
|
2953
|
-
})[];
|
|
2954
|
-
} | {
|
|
2763
|
+
} & {
|
|
2764
|
+
fields?: readonly (string | {
|
|
2955
2765
|
id: string;
|
|
2956
|
-
|
|
2766
|
+
customtypes: readonly (string | ({
|
|
2957
2767
|
id: string;
|
|
2958
|
-
|
|
2959
|
-
|
|
2960
|
-
|
|
2961
|
-
id: string;
|
|
2962
|
-
fields: readonly string[];
|
|
2963
|
-
})[];
|
|
2964
|
-
})[];
|
|
2965
|
-
})[];
|
|
2768
|
+
} & {
|
|
2769
|
+
fields?: readonly string[];
|
|
2770
|
+
}))[];
|
|
2966
2771
|
})[];
|
|
2967
|
-
})[];
|
|
2772
|
+
}))[];
|
|
2968
2773
|
masks?: readonly string[];
|
|
2969
2774
|
tags?: readonly string[];
|
|
2970
2775
|
allowTargetBlank?: boolean;
|
|
@@ -3139,31 +2944,18 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3139
2944
|
useAsTitle?: boolean;
|
|
3140
2945
|
placeholder?: string;
|
|
3141
2946
|
select?: "media" | "document" | "web" | null;
|
|
3142
|
-
customtypes?: readonly (string | {
|
|
2947
|
+
customtypes?: readonly (string | ({
|
|
3143
2948
|
id: string;
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
customtypes: readonly (string | {
|
|
3147
|
-
id: string;
|
|
3148
|
-
fields: readonly (string | {
|
|
3149
|
-
id: string;
|
|
3150
|
-
fields: readonly string[];
|
|
3151
|
-
})[];
|
|
3152
|
-
})[];
|
|
3153
|
-
} | {
|
|
2949
|
+
} & {
|
|
2950
|
+
fields?: readonly (string | {
|
|
3154
2951
|
id: string;
|
|
3155
|
-
|
|
2952
|
+
customtypes: readonly (string | ({
|
|
3156
2953
|
id: string;
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
id: string;
|
|
3161
|
-
fields: readonly string[];
|
|
3162
|
-
})[];
|
|
3163
|
-
})[];
|
|
3164
|
-
})[];
|
|
2954
|
+
} & {
|
|
2955
|
+
fields?: readonly string[];
|
|
2956
|
+
}))[];
|
|
3165
2957
|
})[];
|
|
3166
|
-
})[];
|
|
2958
|
+
}))[];
|
|
3167
2959
|
masks?: readonly string[];
|
|
3168
2960
|
tags?: readonly string[];
|
|
3169
2961
|
allowTargetBlank?: boolean;
|
|
@@ -3339,31 +3131,18 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3339
3131
|
useAsTitle?: boolean;
|
|
3340
3132
|
placeholder?: string;
|
|
3341
3133
|
select?: "media" | "document" | "web" | null;
|
|
3342
|
-
customtypes?: readonly (string | {
|
|
3134
|
+
customtypes?: readonly (string | ({
|
|
3343
3135
|
id: string;
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
customtypes: readonly (string | {
|
|
3347
|
-
id: string;
|
|
3348
|
-
fields: readonly (string | {
|
|
3349
|
-
id: string;
|
|
3350
|
-
fields: readonly string[];
|
|
3351
|
-
})[];
|
|
3352
|
-
})[];
|
|
3353
|
-
} | {
|
|
3136
|
+
} & {
|
|
3137
|
+
fields?: readonly (string | {
|
|
3354
3138
|
id: string;
|
|
3355
|
-
|
|
3139
|
+
customtypes: readonly (string | ({
|
|
3356
3140
|
id: string;
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
id: string;
|
|
3361
|
-
fields: readonly string[];
|
|
3362
|
-
})[];
|
|
3363
|
-
})[];
|
|
3364
|
-
})[];
|
|
3141
|
+
} & {
|
|
3142
|
+
fields?: readonly string[];
|
|
3143
|
+
}))[];
|
|
3365
3144
|
})[];
|
|
3366
|
-
})[];
|
|
3145
|
+
}))[];
|
|
3367
3146
|
masks?: readonly string[];
|
|
3368
3147
|
tags?: readonly string[];
|
|
3369
3148
|
allowTargetBlank?: boolean;
|
|
@@ -3531,31 +3310,18 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3531
3310
|
useAsTitle?: boolean;
|
|
3532
3311
|
placeholder?: string;
|
|
3533
3312
|
select?: "media" | "document" | "web" | null;
|
|
3534
|
-
customtypes?: readonly (string | {
|
|
3313
|
+
customtypes?: readonly (string | ({
|
|
3535
3314
|
id: string;
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
customtypes: readonly (string | {
|
|
3539
|
-
id: string;
|
|
3540
|
-
fields: readonly (string | {
|
|
3541
|
-
id: string;
|
|
3542
|
-
fields: readonly string[];
|
|
3543
|
-
})[];
|
|
3544
|
-
})[];
|
|
3545
|
-
} | {
|
|
3315
|
+
} & {
|
|
3316
|
+
fields?: readonly (string | {
|
|
3546
3317
|
id: string;
|
|
3547
|
-
|
|
3318
|
+
customtypes: readonly (string | ({
|
|
3548
3319
|
id: string;
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
id: string;
|
|
3553
|
-
fields: readonly string[];
|
|
3554
|
-
})[];
|
|
3555
|
-
})[];
|
|
3556
|
-
})[];
|
|
3320
|
+
} & {
|
|
3321
|
+
fields?: readonly string[];
|
|
3322
|
+
}))[];
|
|
3557
3323
|
})[];
|
|
3558
|
-
})[];
|
|
3324
|
+
}))[];
|
|
3559
3325
|
masks?: readonly string[];
|
|
3560
3326
|
tags?: readonly string[];
|
|
3561
3327
|
allowTargetBlank?: boolean;
|