@prismicio/types-internal 2.0.0-alpha.13 → 2.0.0-alpha.14
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/content/Document.js +6 -1
- package/lib/customtypes/CustomType.d.ts +14 -168
- package/lib/customtypes/Section.d.ts +14 -168
- package/lib/customtypes/diff/SharedSlice.d.ts +4 -48
- package/lib/customtypes/diff/Variation.d.ts +4 -48
- package/lib/customtypes/widgets/Group.d.ts +2 -46
- package/lib/customtypes/widgets/Widget.d.ts +16 -258
- package/lib/customtypes/widgets/nestable/Link.d.ts +29 -0
- package/lib/customtypes/widgets/nestable/{Link/index.js → Link.js} +2 -4
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +1 -23
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +2 -46
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +2 -46
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +4 -92
- package/lib/customtypes/widgets/slices/Slices.d.ts +24 -420
- package/package.json +1 -1
- package/src/content/Document.ts +6 -2
- package/src/customtypes/widgets/nestable/{Link/index.ts → Link.ts} +2 -5
- package/lib/customtypes/widgets/nestable/Link/ContentRelationshipResolver.d.ts +0 -21
- package/lib/customtypes/widgets/nestable/Link/ContentRelationshipResolver.js +0 -54
- package/lib/customtypes/widgets/nestable/Link/index.d.ts +0 -74
- package/src/customtypes/widgets/nestable/Link/ContentRelationshipResolver.ts +0 -109
package/lib/content/Document.js
CHANGED
|
@@ -62,7 +62,12 @@ function extractMetadata(data) {
|
|
|
62
62
|
widgets: {},
|
|
63
63
|
});
|
|
64
64
|
const slugs = data["slugs_INTERNAL"] || [];
|
|
65
|
-
const uid =
|
|
65
|
+
const uid = (() => {
|
|
66
|
+
const rawUID = data["uid"];
|
|
67
|
+
if ((0, fields_1.isUIDContent)(rawUID))
|
|
68
|
+
return rawUID.value;
|
|
69
|
+
return;
|
|
70
|
+
})();
|
|
66
71
|
return {
|
|
67
72
|
widgets,
|
|
68
73
|
types,
|
|
@@ -95,18 +95,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
95
95
|
useAsTitle?: boolean;
|
|
96
96
|
placeholder?: string;
|
|
97
97
|
select?: "media" | "document" | "web" | null;
|
|
98
|
-
customtypes?: readonly
|
|
99
|
-
customTypeId: string;
|
|
100
|
-
fields?: readonly {
|
|
101
|
-
fieldId: string;
|
|
102
|
-
customTypes?: readonly {
|
|
103
|
-
customTypeId: string;
|
|
104
|
-
fields?: readonly {
|
|
105
|
-
fieldId: string;
|
|
106
|
-
}[];
|
|
107
|
-
}[];
|
|
108
|
-
}[];
|
|
109
|
-
}[];
|
|
98
|
+
customtypes?: readonly string[];
|
|
110
99
|
masks?: readonly string[];
|
|
111
100
|
tags?: readonly string[];
|
|
112
101
|
allowTargetBlank?: boolean;
|
|
@@ -272,18 +261,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
272
261
|
useAsTitle?: boolean;
|
|
273
262
|
placeholder?: string;
|
|
274
263
|
select?: "media" | "document" | "web" | null;
|
|
275
|
-
customtypes?: readonly
|
|
276
|
-
customTypeId: string;
|
|
277
|
-
fields?: readonly {
|
|
278
|
-
fieldId: string;
|
|
279
|
-
customTypes?: readonly {
|
|
280
|
-
customTypeId: string;
|
|
281
|
-
fields?: readonly {
|
|
282
|
-
fieldId: string;
|
|
283
|
-
}[];
|
|
284
|
-
}[];
|
|
285
|
-
}[];
|
|
286
|
-
}[];
|
|
264
|
+
customtypes?: readonly string[];
|
|
287
265
|
masks?: readonly string[];
|
|
288
266
|
tags?: readonly string[];
|
|
289
267
|
allowTargetBlank?: boolean;
|
|
@@ -456,18 +434,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
456
434
|
useAsTitle?: boolean;
|
|
457
435
|
placeholder?: string;
|
|
458
436
|
select?: "media" | "document" | "web" | null;
|
|
459
|
-
customtypes?: readonly
|
|
460
|
-
customTypeId: string;
|
|
461
|
-
fields?: readonly {
|
|
462
|
-
fieldId: string;
|
|
463
|
-
customTypes?: readonly {
|
|
464
|
-
customTypeId: string;
|
|
465
|
-
fields?: readonly {
|
|
466
|
-
fieldId: string;
|
|
467
|
-
}[];
|
|
468
|
-
}[];
|
|
469
|
-
}[];
|
|
470
|
-
}[];
|
|
437
|
+
customtypes?: readonly string[];
|
|
471
438
|
masks?: readonly string[];
|
|
472
439
|
tags?: readonly string[];
|
|
473
440
|
allowTargetBlank?: boolean;
|
|
@@ -633,18 +600,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
633
600
|
useAsTitle?: boolean;
|
|
634
601
|
placeholder?: string;
|
|
635
602
|
select?: "media" | "document" | "web" | null;
|
|
636
|
-
customtypes?: readonly
|
|
637
|
-
customTypeId: string;
|
|
638
|
-
fields?: readonly {
|
|
639
|
-
fieldId: string;
|
|
640
|
-
customTypes?: readonly {
|
|
641
|
-
customTypeId: string;
|
|
642
|
-
fields?: readonly {
|
|
643
|
-
fieldId: string;
|
|
644
|
-
}[];
|
|
645
|
-
}[];
|
|
646
|
-
}[];
|
|
647
|
-
}[];
|
|
603
|
+
customtypes?: readonly string[];
|
|
648
604
|
masks?: readonly string[];
|
|
649
605
|
tags?: readonly string[];
|
|
650
606
|
allowTargetBlank?: boolean;
|
|
@@ -811,18 +767,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
811
767
|
useAsTitle?: boolean;
|
|
812
768
|
placeholder?: string;
|
|
813
769
|
select?: "media" | "document" | "web" | null;
|
|
814
|
-
customtypes?: readonly
|
|
815
|
-
customTypeId: string;
|
|
816
|
-
fields?: readonly {
|
|
817
|
-
fieldId: string;
|
|
818
|
-
customTypes?: readonly {
|
|
819
|
-
customTypeId: string;
|
|
820
|
-
fields?: readonly {
|
|
821
|
-
fieldId: string;
|
|
822
|
-
}[];
|
|
823
|
-
}[];
|
|
824
|
-
}[];
|
|
825
|
-
}[];
|
|
770
|
+
customtypes?: readonly string[];
|
|
826
771
|
masks?: readonly string[];
|
|
827
772
|
tags?: readonly string[];
|
|
828
773
|
allowTargetBlank?: boolean;
|
|
@@ -981,18 +926,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
981
926
|
useAsTitle?: boolean;
|
|
982
927
|
placeholder?: string;
|
|
983
928
|
select?: "media" | "document" | "web" | null;
|
|
984
|
-
customtypes?: readonly
|
|
985
|
-
customTypeId: string;
|
|
986
|
-
fields?: readonly {
|
|
987
|
-
fieldId: string;
|
|
988
|
-
customTypes?: readonly {
|
|
989
|
-
customTypeId: string;
|
|
990
|
-
fields?: readonly {
|
|
991
|
-
fieldId: string;
|
|
992
|
-
}[];
|
|
993
|
-
}[];
|
|
994
|
-
}[];
|
|
995
|
-
}[];
|
|
929
|
+
customtypes?: readonly string[];
|
|
996
930
|
masks?: readonly string[];
|
|
997
931
|
tags?: readonly string[];
|
|
998
932
|
allowTargetBlank?: boolean;
|
|
@@ -1167,18 +1101,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1167
1101
|
useAsTitle?: boolean;
|
|
1168
1102
|
placeholder?: string;
|
|
1169
1103
|
select?: "media" | "document" | "web" | null;
|
|
1170
|
-
customtypes?: readonly
|
|
1171
|
-
customTypeId: string;
|
|
1172
|
-
fields?: readonly {
|
|
1173
|
-
fieldId: string;
|
|
1174
|
-
customTypes?: readonly {
|
|
1175
|
-
customTypeId: string;
|
|
1176
|
-
fields?: readonly {
|
|
1177
|
-
fieldId: string;
|
|
1178
|
-
}[];
|
|
1179
|
-
}[];
|
|
1180
|
-
}[];
|
|
1181
|
-
}[];
|
|
1104
|
+
customtypes?: readonly string[];
|
|
1182
1105
|
masks?: readonly string[];
|
|
1183
1106
|
tags?: readonly string[];
|
|
1184
1107
|
allowTargetBlank?: boolean;
|
|
@@ -1337,18 +1260,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1337
1260
|
useAsTitle?: boolean;
|
|
1338
1261
|
placeholder?: string;
|
|
1339
1262
|
select?: "media" | "document" | "web" | null;
|
|
1340
|
-
customtypes?: readonly
|
|
1341
|
-
customTypeId: string;
|
|
1342
|
-
fields?: readonly {
|
|
1343
|
-
fieldId: string;
|
|
1344
|
-
customTypes?: readonly {
|
|
1345
|
-
customTypeId: string;
|
|
1346
|
-
fields?: readonly {
|
|
1347
|
-
fieldId: string;
|
|
1348
|
-
}[];
|
|
1349
|
-
}[];
|
|
1350
|
-
}[];
|
|
1351
|
-
}[];
|
|
1263
|
+
customtypes?: readonly string[];
|
|
1352
1264
|
masks?: readonly string[];
|
|
1353
1265
|
tags?: readonly string[];
|
|
1354
1266
|
allowTargetBlank?: boolean;
|
|
@@ -1537,18 +1449,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1537
1449
|
useAsTitle?: boolean;
|
|
1538
1450
|
placeholder?: string;
|
|
1539
1451
|
select?: "media" | "document" | "web" | null;
|
|
1540
|
-
customtypes?: readonly
|
|
1541
|
-
customTypeId: string;
|
|
1542
|
-
fields?: readonly {
|
|
1543
|
-
fieldId: string;
|
|
1544
|
-
customTypes?: readonly {
|
|
1545
|
-
customTypeId: string;
|
|
1546
|
-
fields?: readonly {
|
|
1547
|
-
fieldId: string;
|
|
1548
|
-
}[];
|
|
1549
|
-
}[];
|
|
1550
|
-
}[];
|
|
1551
|
-
}[];
|
|
1452
|
+
customtypes?: readonly string[];
|
|
1552
1453
|
masks?: readonly string[];
|
|
1553
1454
|
tags?: readonly string[];
|
|
1554
1455
|
allowTargetBlank?: boolean;
|
|
@@ -1714,18 +1615,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1714
1615
|
useAsTitle?: boolean;
|
|
1715
1616
|
placeholder?: string;
|
|
1716
1617
|
select?: "media" | "document" | "web" | null;
|
|
1717
|
-
customtypes?: readonly
|
|
1718
|
-
customTypeId: string;
|
|
1719
|
-
fields?: readonly {
|
|
1720
|
-
fieldId: string;
|
|
1721
|
-
customTypes?: readonly {
|
|
1722
|
-
customTypeId: string;
|
|
1723
|
-
fields?: readonly {
|
|
1724
|
-
fieldId: string;
|
|
1725
|
-
}[];
|
|
1726
|
-
}[];
|
|
1727
|
-
}[];
|
|
1728
|
-
}[];
|
|
1618
|
+
customtypes?: readonly string[];
|
|
1729
1619
|
masks?: readonly string[];
|
|
1730
1620
|
tags?: readonly string[];
|
|
1731
1621
|
allowTargetBlank?: boolean;
|
|
@@ -1898,18 +1788,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1898
1788
|
useAsTitle?: boolean;
|
|
1899
1789
|
placeholder?: string;
|
|
1900
1790
|
select?: "media" | "document" | "web" | null;
|
|
1901
|
-
customtypes?: readonly
|
|
1902
|
-
customTypeId: string;
|
|
1903
|
-
fields?: readonly {
|
|
1904
|
-
fieldId: string;
|
|
1905
|
-
customTypes?: readonly {
|
|
1906
|
-
customTypeId: string;
|
|
1907
|
-
fields?: readonly {
|
|
1908
|
-
fieldId: string;
|
|
1909
|
-
}[];
|
|
1910
|
-
}[];
|
|
1911
|
-
}[];
|
|
1912
|
-
}[];
|
|
1791
|
+
customtypes?: readonly string[];
|
|
1913
1792
|
masks?: readonly string[];
|
|
1914
1793
|
tags?: readonly string[];
|
|
1915
1794
|
allowTargetBlank?: boolean;
|
|
@@ -2075,18 +1954,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2075
1954
|
useAsTitle?: boolean;
|
|
2076
1955
|
placeholder?: string;
|
|
2077
1956
|
select?: "media" | "document" | "web" | null;
|
|
2078
|
-
customtypes?: readonly
|
|
2079
|
-
customTypeId: string;
|
|
2080
|
-
fields?: readonly {
|
|
2081
|
-
fieldId: string;
|
|
2082
|
-
customTypes?: readonly {
|
|
2083
|
-
customTypeId: string;
|
|
2084
|
-
fields?: readonly {
|
|
2085
|
-
fieldId: string;
|
|
2086
|
-
}[];
|
|
2087
|
-
}[];
|
|
2088
|
-
}[];
|
|
2089
|
-
}[];
|
|
1957
|
+
customtypes?: readonly string[];
|
|
2090
1958
|
masks?: readonly string[];
|
|
2091
1959
|
tags?: readonly string[];
|
|
2092
1960
|
allowTargetBlank?: boolean;
|
|
@@ -2253,18 +2121,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2253
2121
|
useAsTitle?: boolean;
|
|
2254
2122
|
placeholder?: string;
|
|
2255
2123
|
select?: "media" | "document" | "web" | null;
|
|
2256
|
-
customtypes?: readonly
|
|
2257
|
-
customTypeId: string;
|
|
2258
|
-
fields?: readonly {
|
|
2259
|
-
fieldId: string;
|
|
2260
|
-
customTypes?: readonly {
|
|
2261
|
-
customTypeId: string;
|
|
2262
|
-
fields?: readonly {
|
|
2263
|
-
fieldId: string;
|
|
2264
|
-
}[];
|
|
2265
|
-
}[];
|
|
2266
|
-
}[];
|
|
2267
|
-
}[];
|
|
2124
|
+
customtypes?: readonly string[];
|
|
2268
2125
|
masks?: readonly string[];
|
|
2269
2126
|
tags?: readonly string[];
|
|
2270
2127
|
allowTargetBlank?: boolean;
|
|
@@ -2423,18 +2280,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2423
2280
|
useAsTitle?: boolean;
|
|
2424
2281
|
placeholder?: string;
|
|
2425
2282
|
select?: "media" | "document" | "web" | null;
|
|
2426
|
-
customtypes?: readonly
|
|
2427
|
-
customTypeId: string;
|
|
2428
|
-
fields?: readonly {
|
|
2429
|
-
fieldId: string;
|
|
2430
|
-
customTypes?: readonly {
|
|
2431
|
-
customTypeId: string;
|
|
2432
|
-
fields?: readonly {
|
|
2433
|
-
fieldId: string;
|
|
2434
|
-
}[];
|
|
2435
|
-
}[];
|
|
2436
|
-
}[];
|
|
2437
|
-
}[];
|
|
2283
|
+
customtypes?: readonly string[];
|
|
2438
2284
|
masks?: readonly string[];
|
|
2439
2285
|
tags?: readonly string[];
|
|
2440
2286
|
allowTargetBlank?: boolean;
|
|
@@ -80,18 +80,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
80
80
|
useAsTitle?: boolean;
|
|
81
81
|
placeholder?: string;
|
|
82
82
|
select?: "media" | "document" | "web" | null;
|
|
83
|
-
customtypes?: readonly
|
|
84
|
-
customTypeId: string;
|
|
85
|
-
fields?: readonly {
|
|
86
|
-
fieldId: string;
|
|
87
|
-
customTypes?: readonly {
|
|
88
|
-
customTypeId: string;
|
|
89
|
-
fields?: readonly {
|
|
90
|
-
fieldId: string;
|
|
91
|
-
}[];
|
|
92
|
-
}[];
|
|
93
|
-
}[];
|
|
94
|
-
}[];
|
|
83
|
+
customtypes?: readonly string[];
|
|
95
84
|
masks?: readonly string[];
|
|
96
85
|
tags?: readonly string[];
|
|
97
86
|
allowTargetBlank?: boolean;
|
|
@@ -257,18 +246,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
257
246
|
useAsTitle?: boolean;
|
|
258
247
|
placeholder?: string;
|
|
259
248
|
select?: "media" | "document" | "web" | null;
|
|
260
|
-
customtypes?: readonly
|
|
261
|
-
customTypeId: string;
|
|
262
|
-
fields?: readonly {
|
|
263
|
-
fieldId: string;
|
|
264
|
-
customTypes?: readonly {
|
|
265
|
-
customTypeId: string;
|
|
266
|
-
fields?: readonly {
|
|
267
|
-
fieldId: string;
|
|
268
|
-
}[];
|
|
269
|
-
}[];
|
|
270
|
-
}[];
|
|
271
|
-
}[];
|
|
249
|
+
customtypes?: readonly string[];
|
|
272
250
|
masks?: readonly string[];
|
|
273
251
|
tags?: readonly string[];
|
|
274
252
|
allowTargetBlank?: boolean;
|
|
@@ -441,18 +419,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
441
419
|
useAsTitle?: boolean;
|
|
442
420
|
placeholder?: string;
|
|
443
421
|
select?: "media" | "document" | "web" | null;
|
|
444
|
-
customtypes?: readonly
|
|
445
|
-
customTypeId: string;
|
|
446
|
-
fields?: readonly {
|
|
447
|
-
fieldId: string;
|
|
448
|
-
customTypes?: readonly {
|
|
449
|
-
customTypeId: string;
|
|
450
|
-
fields?: readonly {
|
|
451
|
-
fieldId: string;
|
|
452
|
-
}[];
|
|
453
|
-
}[];
|
|
454
|
-
}[];
|
|
455
|
-
}[];
|
|
422
|
+
customtypes?: readonly string[];
|
|
456
423
|
masks?: readonly string[];
|
|
457
424
|
tags?: readonly string[];
|
|
458
425
|
allowTargetBlank?: boolean;
|
|
@@ -618,18 +585,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
618
585
|
useAsTitle?: boolean;
|
|
619
586
|
placeholder?: string;
|
|
620
587
|
select?: "media" | "document" | "web" | null;
|
|
621
|
-
customtypes?: readonly
|
|
622
|
-
customTypeId: string;
|
|
623
|
-
fields?: readonly {
|
|
624
|
-
fieldId: string;
|
|
625
|
-
customTypes?: readonly {
|
|
626
|
-
customTypeId: string;
|
|
627
|
-
fields?: readonly {
|
|
628
|
-
fieldId: string;
|
|
629
|
-
}[];
|
|
630
|
-
}[];
|
|
631
|
-
}[];
|
|
632
|
-
}[];
|
|
588
|
+
customtypes?: readonly string[];
|
|
633
589
|
masks?: readonly string[];
|
|
634
590
|
tags?: readonly string[];
|
|
635
591
|
allowTargetBlank?: boolean;
|
|
@@ -796,18 +752,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
796
752
|
useAsTitle?: boolean;
|
|
797
753
|
placeholder?: string;
|
|
798
754
|
select?: "media" | "document" | "web" | null;
|
|
799
|
-
customtypes?: readonly
|
|
800
|
-
customTypeId: string;
|
|
801
|
-
fields?: readonly {
|
|
802
|
-
fieldId: string;
|
|
803
|
-
customTypes?: readonly {
|
|
804
|
-
customTypeId: string;
|
|
805
|
-
fields?: readonly {
|
|
806
|
-
fieldId: string;
|
|
807
|
-
}[];
|
|
808
|
-
}[];
|
|
809
|
-
}[];
|
|
810
|
-
}[];
|
|
755
|
+
customtypes?: readonly string[];
|
|
811
756
|
masks?: readonly string[];
|
|
812
757
|
tags?: readonly string[];
|
|
813
758
|
allowTargetBlank?: boolean;
|
|
@@ -966,18 +911,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
966
911
|
useAsTitle?: boolean;
|
|
967
912
|
placeholder?: string;
|
|
968
913
|
select?: "media" | "document" | "web" | null;
|
|
969
|
-
customtypes?: readonly
|
|
970
|
-
customTypeId: string;
|
|
971
|
-
fields?: readonly {
|
|
972
|
-
fieldId: string;
|
|
973
|
-
customTypes?: readonly {
|
|
974
|
-
customTypeId: string;
|
|
975
|
-
fields?: readonly {
|
|
976
|
-
fieldId: string;
|
|
977
|
-
}[];
|
|
978
|
-
}[];
|
|
979
|
-
}[];
|
|
980
|
-
}[];
|
|
914
|
+
customtypes?: readonly string[];
|
|
981
915
|
masks?: readonly string[];
|
|
982
916
|
tags?: readonly string[];
|
|
983
917
|
allowTargetBlank?: boolean;
|
|
@@ -1152,18 +1086,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1152
1086
|
useAsTitle?: boolean;
|
|
1153
1087
|
placeholder?: string;
|
|
1154
1088
|
select?: "media" | "document" | "web" | null;
|
|
1155
|
-
customtypes?: readonly
|
|
1156
|
-
customTypeId: string;
|
|
1157
|
-
fields?: readonly {
|
|
1158
|
-
fieldId: string;
|
|
1159
|
-
customTypes?: readonly {
|
|
1160
|
-
customTypeId: string;
|
|
1161
|
-
fields?: readonly {
|
|
1162
|
-
fieldId: string;
|
|
1163
|
-
}[];
|
|
1164
|
-
}[];
|
|
1165
|
-
}[];
|
|
1166
|
-
}[];
|
|
1089
|
+
customtypes?: readonly string[];
|
|
1167
1090
|
masks?: readonly string[];
|
|
1168
1091
|
tags?: readonly string[];
|
|
1169
1092
|
allowTargetBlank?: boolean;
|
|
@@ -1322,18 +1245,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1322
1245
|
useAsTitle?: boolean;
|
|
1323
1246
|
placeholder?: string;
|
|
1324
1247
|
select?: "media" | "document" | "web" | null;
|
|
1325
|
-
customtypes?: readonly
|
|
1326
|
-
customTypeId: string;
|
|
1327
|
-
fields?: readonly {
|
|
1328
|
-
fieldId: string;
|
|
1329
|
-
customTypes?: readonly {
|
|
1330
|
-
customTypeId: string;
|
|
1331
|
-
fields?: readonly {
|
|
1332
|
-
fieldId: string;
|
|
1333
|
-
}[];
|
|
1334
|
-
}[];
|
|
1335
|
-
}[];
|
|
1336
|
-
}[];
|
|
1248
|
+
customtypes?: readonly string[];
|
|
1337
1249
|
masks?: readonly string[];
|
|
1338
1250
|
tags?: readonly string[];
|
|
1339
1251
|
allowTargetBlank?: boolean;
|
|
@@ -1508,18 +1420,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
1508
1420
|
useAsTitle?: boolean;
|
|
1509
1421
|
placeholder?: string;
|
|
1510
1422
|
select?: "media" | "document" | "web" | null;
|
|
1511
|
-
customtypes?: readonly
|
|
1512
|
-
customTypeId: string;
|
|
1513
|
-
fields?: readonly {
|
|
1514
|
-
fieldId: string;
|
|
1515
|
-
customTypes?: readonly {
|
|
1516
|
-
customTypeId: string;
|
|
1517
|
-
fields?: readonly {
|
|
1518
|
-
fieldId: string;
|
|
1519
|
-
}[];
|
|
1520
|
-
}[];
|
|
1521
|
-
}[];
|
|
1522
|
-
}[];
|
|
1423
|
+
customtypes?: readonly string[];
|
|
1523
1424
|
masks?: readonly string[];
|
|
1524
1425
|
tags?: readonly string[];
|
|
1525
1426
|
allowTargetBlank?: boolean;
|
|
@@ -1685,18 +1586,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
1685
1586
|
useAsTitle?: boolean;
|
|
1686
1587
|
placeholder?: string;
|
|
1687
1588
|
select?: "media" | "document" | "web" | null;
|
|
1688
|
-
customtypes?: readonly
|
|
1689
|
-
customTypeId: string;
|
|
1690
|
-
fields?: readonly {
|
|
1691
|
-
fieldId: string;
|
|
1692
|
-
customTypes?: readonly {
|
|
1693
|
-
customTypeId: string;
|
|
1694
|
-
fields?: readonly {
|
|
1695
|
-
fieldId: string;
|
|
1696
|
-
}[];
|
|
1697
|
-
}[];
|
|
1698
|
-
}[];
|
|
1699
|
-
}[];
|
|
1589
|
+
customtypes?: readonly string[];
|
|
1700
1590
|
masks?: readonly string[];
|
|
1701
1591
|
tags?: readonly string[];
|
|
1702
1592
|
allowTargetBlank?: boolean;
|
|
@@ -1869,18 +1759,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
1869
1759
|
useAsTitle?: boolean;
|
|
1870
1760
|
placeholder?: string;
|
|
1871
1761
|
select?: "media" | "document" | "web" | null;
|
|
1872
|
-
customtypes?: readonly
|
|
1873
|
-
customTypeId: string;
|
|
1874
|
-
fields?: readonly {
|
|
1875
|
-
fieldId: string;
|
|
1876
|
-
customTypes?: readonly {
|
|
1877
|
-
customTypeId: string;
|
|
1878
|
-
fields?: readonly {
|
|
1879
|
-
fieldId: string;
|
|
1880
|
-
}[];
|
|
1881
|
-
}[];
|
|
1882
|
-
}[];
|
|
1883
|
-
}[];
|
|
1762
|
+
customtypes?: readonly string[];
|
|
1884
1763
|
masks?: readonly string[];
|
|
1885
1764
|
tags?: readonly string[];
|
|
1886
1765
|
allowTargetBlank?: boolean;
|
|
@@ -2046,18 +1925,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2046
1925
|
useAsTitle?: boolean;
|
|
2047
1926
|
placeholder?: string;
|
|
2048
1927
|
select?: "media" | "document" | "web" | null;
|
|
2049
|
-
customtypes?: readonly
|
|
2050
|
-
customTypeId: string;
|
|
2051
|
-
fields?: readonly {
|
|
2052
|
-
fieldId: string;
|
|
2053
|
-
customTypes?: readonly {
|
|
2054
|
-
customTypeId: string;
|
|
2055
|
-
fields?: readonly {
|
|
2056
|
-
fieldId: string;
|
|
2057
|
-
}[];
|
|
2058
|
-
}[];
|
|
2059
|
-
}[];
|
|
2060
|
-
}[];
|
|
1928
|
+
customtypes?: readonly string[];
|
|
2061
1929
|
masks?: readonly string[];
|
|
2062
1930
|
tags?: readonly string[];
|
|
2063
1931
|
allowTargetBlank?: boolean;
|
|
@@ -2224,18 +2092,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2224
2092
|
useAsTitle?: boolean;
|
|
2225
2093
|
placeholder?: string;
|
|
2226
2094
|
select?: "media" | "document" | "web" | null;
|
|
2227
|
-
customtypes?: readonly
|
|
2228
|
-
customTypeId: string;
|
|
2229
|
-
fields?: readonly {
|
|
2230
|
-
fieldId: string;
|
|
2231
|
-
customTypes?: readonly {
|
|
2232
|
-
customTypeId: string;
|
|
2233
|
-
fields?: readonly {
|
|
2234
|
-
fieldId: string;
|
|
2235
|
-
}[];
|
|
2236
|
-
}[];
|
|
2237
|
-
}[];
|
|
2238
|
-
}[];
|
|
2095
|
+
customtypes?: readonly string[];
|
|
2239
2096
|
masks?: readonly string[];
|
|
2240
2097
|
tags?: readonly string[];
|
|
2241
2098
|
allowTargetBlank?: boolean;
|
|
@@ -2394,18 +2251,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2394
2251
|
useAsTitle?: boolean;
|
|
2395
2252
|
placeholder?: string;
|
|
2396
2253
|
select?: "media" | "document" | "web" | null;
|
|
2397
|
-
customtypes?: readonly
|
|
2398
|
-
customTypeId: string;
|
|
2399
|
-
fields?: readonly {
|
|
2400
|
-
fieldId: string;
|
|
2401
|
-
customTypes?: readonly {
|
|
2402
|
-
customTypeId: string;
|
|
2403
|
-
fields?: readonly {
|
|
2404
|
-
fieldId: string;
|
|
2405
|
-
}[];
|
|
2406
|
-
}[];
|
|
2407
|
-
}[];
|
|
2408
|
-
}[];
|
|
2254
|
+
customtypes?: readonly string[];
|
|
2409
2255
|
masks?: readonly string[];
|
|
2410
2256
|
tags?: readonly string[];
|
|
2411
2257
|
allowTargetBlank?: boolean;
|
|
@@ -98,18 +98,7 @@ export declare const SliceComparator: {
|
|
|
98
98
|
useAsTitle?: boolean;
|
|
99
99
|
placeholder?: string;
|
|
100
100
|
select?: "media" | "document" | "web" | null;
|
|
101
|
-
customtypes?: readonly
|
|
102
|
-
customTypeId: string;
|
|
103
|
-
fields?: readonly {
|
|
104
|
-
fieldId: string;
|
|
105
|
-
customTypes?: readonly {
|
|
106
|
-
customTypeId: string;
|
|
107
|
-
fields?: readonly {
|
|
108
|
-
fieldId: string;
|
|
109
|
-
}[];
|
|
110
|
-
}[];
|
|
111
|
-
}[];
|
|
112
|
-
}[];
|
|
101
|
+
customtypes?: readonly string[];
|
|
113
102
|
masks?: readonly string[];
|
|
114
103
|
tags?: readonly string[];
|
|
115
104
|
allowTargetBlank?: boolean;
|
|
@@ -268,18 +257,7 @@ export declare const SliceComparator: {
|
|
|
268
257
|
useAsTitle?: boolean;
|
|
269
258
|
placeholder?: string;
|
|
270
259
|
select?: "media" | "document" | "web" | null;
|
|
271
|
-
customtypes?: readonly
|
|
272
|
-
customTypeId: string;
|
|
273
|
-
fields?: readonly {
|
|
274
|
-
fieldId: string;
|
|
275
|
-
customTypes?: readonly {
|
|
276
|
-
customTypeId: string;
|
|
277
|
-
fields?: readonly {
|
|
278
|
-
fieldId: string;
|
|
279
|
-
}[];
|
|
280
|
-
}[];
|
|
281
|
-
}[];
|
|
282
|
-
}[];
|
|
260
|
+
customtypes?: readonly string[];
|
|
283
261
|
masks?: readonly string[];
|
|
284
262
|
tags?: readonly string[];
|
|
285
263
|
allowTargetBlank?: boolean;
|
|
@@ -454,18 +432,7 @@ export declare const SliceComparator: {
|
|
|
454
432
|
useAsTitle?: boolean;
|
|
455
433
|
placeholder?: string;
|
|
456
434
|
select?: "media" | "document" | "web" | null;
|
|
457
|
-
customtypes?: readonly
|
|
458
|
-
customTypeId: string;
|
|
459
|
-
fields?: readonly {
|
|
460
|
-
fieldId: string;
|
|
461
|
-
customTypes?: readonly {
|
|
462
|
-
customTypeId: string;
|
|
463
|
-
fields?: readonly {
|
|
464
|
-
fieldId: string;
|
|
465
|
-
}[];
|
|
466
|
-
}[];
|
|
467
|
-
}[];
|
|
468
|
-
}[];
|
|
435
|
+
customtypes?: readonly string[];
|
|
469
436
|
masks?: readonly string[];
|
|
470
437
|
tags?: readonly string[];
|
|
471
438
|
allowTargetBlank?: boolean;
|
|
@@ -624,18 +591,7 @@ export declare const SliceComparator: {
|
|
|
624
591
|
useAsTitle?: boolean;
|
|
625
592
|
placeholder?: string;
|
|
626
593
|
select?: "media" | "document" | "web" | null;
|
|
627
|
-
customtypes?: readonly
|
|
628
|
-
customTypeId: string;
|
|
629
|
-
fields?: readonly {
|
|
630
|
-
fieldId: string;
|
|
631
|
-
customTypes?: readonly {
|
|
632
|
-
customTypeId: string;
|
|
633
|
-
fields?: readonly {
|
|
634
|
-
fieldId: string;
|
|
635
|
-
}[];
|
|
636
|
-
}[];
|
|
637
|
-
}[];
|
|
638
|
-
}[];
|
|
594
|
+
customtypes?: readonly string[];
|
|
639
595
|
masks?: readonly string[];
|
|
640
596
|
tags?: readonly string[];
|
|
641
597
|
allowTargetBlank?: boolean;
|