@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
|
@@ -140,55 +140,29 @@ export declare function widgetReader<T extends StaticSlices | DynamicSlices>(cod
|
|
|
140
140
|
useAsTitle: t.BooleanC;
|
|
141
141
|
placeholder: t.StringC;
|
|
142
142
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
143
|
-
customtypes: t.Type<readonly (string | {
|
|
143
|
+
customtypes: t.Type<readonly (string | ({
|
|
144
144
|
id: string;
|
|
145
|
-
|
|
145
|
+
} & {
|
|
146
|
+
fields?: readonly (string | {
|
|
146
147
|
id: string;
|
|
147
|
-
customtypes: readonly (string | {
|
|
148
|
+
customtypes: readonly (string | ({
|
|
148
149
|
id: string;
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
})[];
|
|
153
|
-
})[];
|
|
154
|
-
} | {
|
|
155
|
-
id: string;
|
|
156
|
-
fields: readonly (string | {
|
|
157
|
-
id: string;
|
|
158
|
-
customtypes: readonly (string | {
|
|
159
|
-
id: string;
|
|
160
|
-
fields: readonly (string | {
|
|
161
|
-
id: string;
|
|
162
|
-
fields: readonly string[];
|
|
163
|
-
})[];
|
|
164
|
-
})[];
|
|
165
|
-
})[];
|
|
150
|
+
} & {
|
|
151
|
+
fields?: readonly string[];
|
|
152
|
+
}))[];
|
|
166
153
|
})[];
|
|
167
|
-
})[], readonly (string | {
|
|
154
|
+
}))[], readonly (string | ({
|
|
168
155
|
id: string;
|
|
169
|
-
|
|
156
|
+
} & {
|
|
157
|
+
fields?: readonly (string | {
|
|
170
158
|
id: string;
|
|
171
|
-
customtypes: readonly (string | {
|
|
159
|
+
customtypes: readonly (string | ({
|
|
172
160
|
id: string;
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
})[];
|
|
177
|
-
})[];
|
|
178
|
-
} | {
|
|
179
|
-
id: string;
|
|
180
|
-
fields: readonly (string | {
|
|
181
|
-
id: string;
|
|
182
|
-
customtypes: readonly (string | {
|
|
183
|
-
id: string;
|
|
184
|
-
fields: readonly (string | {
|
|
185
|
-
id: string;
|
|
186
|
-
fields: readonly string[];
|
|
187
|
-
})[];
|
|
188
|
-
})[];
|
|
189
|
-
})[];
|
|
161
|
+
} & {
|
|
162
|
+
fields?: readonly string[];
|
|
163
|
+
}))[];
|
|
190
164
|
})[];
|
|
191
|
-
})[], unknown>;
|
|
165
|
+
}))[], unknown>;
|
|
192
166
|
masks: t.Type<readonly string[], object, unknown>;
|
|
193
167
|
tags: t.Type<readonly string[], object, unknown>;
|
|
194
168
|
allowTargetBlank: t.BooleanC;
|
|
@@ -362,55 +336,29 @@ export declare function widgetReader<T extends StaticSlices | DynamicSlices>(cod
|
|
|
362
336
|
useAsTitle: t.BooleanC;
|
|
363
337
|
placeholder: t.StringC;
|
|
364
338
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
365
|
-
customtypes: t.Type<readonly (string | {
|
|
339
|
+
customtypes: t.Type<readonly (string | ({
|
|
366
340
|
id: string;
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
customtypes: readonly (string | {
|
|
370
|
-
id: string;
|
|
371
|
-
fields: readonly (string | {
|
|
372
|
-
id: string;
|
|
373
|
-
fields: readonly string[];
|
|
374
|
-
})[];
|
|
375
|
-
})[];
|
|
376
|
-
} | {
|
|
341
|
+
} & {
|
|
342
|
+
fields?: readonly (string | {
|
|
377
343
|
id: string;
|
|
378
|
-
|
|
344
|
+
customtypes: readonly (string | ({
|
|
379
345
|
id: string;
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
id: string;
|
|
384
|
-
fields: readonly string[];
|
|
385
|
-
})[];
|
|
386
|
-
})[];
|
|
387
|
-
})[];
|
|
346
|
+
} & {
|
|
347
|
+
fields?: readonly string[];
|
|
348
|
+
}))[];
|
|
388
349
|
})[];
|
|
389
|
-
})[], readonly (string | {
|
|
350
|
+
}))[], readonly (string | ({
|
|
390
351
|
id: string;
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
customtypes: readonly (string | {
|
|
394
|
-
id: string;
|
|
395
|
-
fields: readonly (string | {
|
|
396
|
-
id: string;
|
|
397
|
-
fields: readonly string[];
|
|
398
|
-
})[];
|
|
399
|
-
})[];
|
|
400
|
-
} | {
|
|
352
|
+
} & {
|
|
353
|
+
fields?: readonly (string | {
|
|
401
354
|
id: string;
|
|
402
|
-
|
|
355
|
+
customtypes: readonly (string | ({
|
|
403
356
|
id: string;
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
id: string;
|
|
408
|
-
fields: readonly string[];
|
|
409
|
-
})[];
|
|
410
|
-
})[];
|
|
411
|
-
})[];
|
|
357
|
+
} & {
|
|
358
|
+
fields?: readonly string[];
|
|
359
|
+
}))[];
|
|
412
360
|
})[];
|
|
413
|
-
})[], unknown>;
|
|
361
|
+
}))[], unknown>;
|
|
414
362
|
masks: t.Type<readonly string[], object, unknown>;
|
|
415
363
|
tags: t.Type<readonly string[], object, unknown>;
|
|
416
364
|
allowTargetBlank: t.BooleanC;
|
|
@@ -584,55 +532,29 @@ export declare function widgetReader<T extends StaticSlices | DynamicSlices>(cod
|
|
|
584
532
|
useAsTitle: t.BooleanC;
|
|
585
533
|
placeholder: t.StringC;
|
|
586
534
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
587
|
-
customtypes: t.Type<readonly (string | {
|
|
535
|
+
customtypes: t.Type<readonly (string | ({
|
|
588
536
|
id: string;
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
customtypes: readonly (string | {
|
|
592
|
-
id: string;
|
|
593
|
-
fields: readonly (string | {
|
|
594
|
-
id: string;
|
|
595
|
-
fields: readonly string[];
|
|
596
|
-
})[];
|
|
597
|
-
})[];
|
|
598
|
-
} | {
|
|
537
|
+
} & {
|
|
538
|
+
fields?: readonly (string | {
|
|
599
539
|
id: string;
|
|
600
|
-
|
|
540
|
+
customtypes: readonly (string | ({
|
|
601
541
|
id: string;
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
id: string;
|
|
606
|
-
fields: readonly string[];
|
|
607
|
-
})[];
|
|
608
|
-
})[];
|
|
609
|
-
})[];
|
|
542
|
+
} & {
|
|
543
|
+
fields?: readonly string[];
|
|
544
|
+
}))[];
|
|
610
545
|
})[];
|
|
611
|
-
})[], readonly (string | {
|
|
546
|
+
}))[], readonly (string | ({
|
|
612
547
|
id: string;
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
customtypes: readonly (string | {
|
|
616
|
-
id: string;
|
|
617
|
-
fields: readonly (string | {
|
|
618
|
-
id: string;
|
|
619
|
-
fields: readonly string[];
|
|
620
|
-
})[];
|
|
621
|
-
})[];
|
|
622
|
-
} | {
|
|
548
|
+
} & {
|
|
549
|
+
fields?: readonly (string | {
|
|
623
550
|
id: string;
|
|
624
|
-
|
|
551
|
+
customtypes: readonly (string | ({
|
|
625
552
|
id: string;
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
id: string;
|
|
630
|
-
fields: readonly string[];
|
|
631
|
-
})[];
|
|
632
|
-
})[];
|
|
633
|
-
})[];
|
|
553
|
+
} & {
|
|
554
|
+
fields?: readonly string[];
|
|
555
|
+
}))[];
|
|
634
556
|
})[];
|
|
635
|
-
})[], unknown>;
|
|
557
|
+
}))[], unknown>;
|
|
636
558
|
masks: t.Type<readonly string[], object, unknown>;
|
|
637
559
|
tags: t.Type<readonly string[], object, unknown>;
|
|
638
560
|
allowTargetBlank: t.BooleanC;
|
|
@@ -811,55 +733,29 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
811
733
|
useAsTitle: t.BooleanC;
|
|
812
734
|
placeholder: t.StringC;
|
|
813
735
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
814
|
-
customtypes: t.Type<readonly (string | {
|
|
736
|
+
customtypes: t.Type<readonly (string | ({
|
|
815
737
|
id: string;
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
customtypes: readonly (string | {
|
|
819
|
-
id: string;
|
|
820
|
-
fields: readonly (string | {
|
|
821
|
-
id: string;
|
|
822
|
-
fields: readonly string[];
|
|
823
|
-
})[];
|
|
824
|
-
})[];
|
|
825
|
-
} | {
|
|
738
|
+
} & {
|
|
739
|
+
fields?: readonly (string | {
|
|
826
740
|
id: string;
|
|
827
|
-
|
|
741
|
+
customtypes: readonly (string | ({
|
|
828
742
|
id: string;
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
id: string;
|
|
833
|
-
fields: readonly string[];
|
|
834
|
-
})[];
|
|
835
|
-
})[];
|
|
836
|
-
})[];
|
|
743
|
+
} & {
|
|
744
|
+
fields?: readonly string[];
|
|
745
|
+
}))[];
|
|
837
746
|
})[];
|
|
838
|
-
})[], readonly (string | {
|
|
747
|
+
}))[], readonly (string | ({
|
|
839
748
|
id: string;
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
customtypes: readonly (string | {
|
|
843
|
-
id: string;
|
|
844
|
-
fields: readonly (string | {
|
|
845
|
-
id: string;
|
|
846
|
-
fields: readonly string[];
|
|
847
|
-
})[];
|
|
848
|
-
})[];
|
|
849
|
-
} | {
|
|
749
|
+
} & {
|
|
750
|
+
fields?: readonly (string | {
|
|
850
751
|
id: string;
|
|
851
|
-
|
|
752
|
+
customtypes: readonly (string | ({
|
|
852
753
|
id: string;
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
id: string;
|
|
857
|
-
fields: readonly string[];
|
|
858
|
-
})[];
|
|
859
|
-
})[];
|
|
860
|
-
})[];
|
|
754
|
+
} & {
|
|
755
|
+
fields?: readonly string[];
|
|
756
|
+
}))[];
|
|
861
757
|
})[];
|
|
862
|
-
})[], unknown>;
|
|
758
|
+
}))[], unknown>;
|
|
863
759
|
masks: t.Type<readonly string[], object, unknown>;
|
|
864
760
|
tags: t.Type<readonly string[], object, unknown>;
|
|
865
761
|
allowTargetBlank: t.BooleanC;
|
|
@@ -1033,55 +929,29 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1033
929
|
useAsTitle: t.BooleanC;
|
|
1034
930
|
placeholder: t.StringC;
|
|
1035
931
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
1036
|
-
customtypes: t.Type<readonly (string | {
|
|
932
|
+
customtypes: t.Type<readonly (string | ({
|
|
1037
933
|
id: string;
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
customtypes: readonly (string | {
|
|
1041
|
-
id: string;
|
|
1042
|
-
fields: readonly (string | {
|
|
1043
|
-
id: string;
|
|
1044
|
-
fields: readonly string[];
|
|
1045
|
-
})[];
|
|
1046
|
-
})[];
|
|
1047
|
-
} | {
|
|
934
|
+
} & {
|
|
935
|
+
fields?: readonly (string | {
|
|
1048
936
|
id: string;
|
|
1049
|
-
|
|
937
|
+
customtypes: readonly (string | ({
|
|
1050
938
|
id: string;
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
id: string;
|
|
1055
|
-
fields: readonly string[];
|
|
1056
|
-
})[];
|
|
1057
|
-
})[];
|
|
1058
|
-
})[];
|
|
939
|
+
} & {
|
|
940
|
+
fields?: readonly string[];
|
|
941
|
+
}))[];
|
|
1059
942
|
})[];
|
|
1060
|
-
})[], readonly (string | {
|
|
943
|
+
}))[], readonly (string | ({
|
|
1061
944
|
id: string;
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
customtypes: readonly (string | {
|
|
1065
|
-
id: string;
|
|
1066
|
-
fields: readonly (string | {
|
|
1067
|
-
id: string;
|
|
1068
|
-
fields: readonly string[];
|
|
1069
|
-
})[];
|
|
1070
|
-
})[];
|
|
1071
|
-
} | {
|
|
945
|
+
} & {
|
|
946
|
+
fields?: readonly (string | {
|
|
1072
947
|
id: string;
|
|
1073
|
-
|
|
948
|
+
customtypes: readonly (string | ({
|
|
1074
949
|
id: string;
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
id: string;
|
|
1079
|
-
fields: readonly string[];
|
|
1080
|
-
})[];
|
|
1081
|
-
})[];
|
|
1082
|
-
})[];
|
|
950
|
+
} & {
|
|
951
|
+
fields?: readonly string[];
|
|
952
|
+
}))[];
|
|
1083
953
|
})[];
|
|
1084
|
-
})[], unknown>;
|
|
954
|
+
}))[], unknown>;
|
|
1085
955
|
masks: t.Type<readonly string[], object, unknown>;
|
|
1086
956
|
tags: t.Type<readonly string[], object, unknown>;
|
|
1087
957
|
allowTargetBlank: t.BooleanC;
|
|
@@ -1255,55 +1125,29 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1255
1125
|
useAsTitle: t.BooleanC;
|
|
1256
1126
|
placeholder: t.StringC;
|
|
1257
1127
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
1258
|
-
customtypes: t.Type<readonly (string | {
|
|
1128
|
+
customtypes: t.Type<readonly (string | ({
|
|
1259
1129
|
id: string;
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
customtypes: readonly (string | {
|
|
1263
|
-
id: string;
|
|
1264
|
-
fields: readonly (string | {
|
|
1265
|
-
id: string;
|
|
1266
|
-
fields: readonly string[];
|
|
1267
|
-
})[];
|
|
1268
|
-
})[];
|
|
1269
|
-
} | {
|
|
1130
|
+
} & {
|
|
1131
|
+
fields?: readonly (string | {
|
|
1270
1132
|
id: string;
|
|
1271
|
-
|
|
1133
|
+
customtypes: readonly (string | ({
|
|
1272
1134
|
id: string;
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
id: string;
|
|
1277
|
-
fields: readonly string[];
|
|
1278
|
-
})[];
|
|
1279
|
-
})[];
|
|
1280
|
-
})[];
|
|
1135
|
+
} & {
|
|
1136
|
+
fields?: readonly string[];
|
|
1137
|
+
}))[];
|
|
1281
1138
|
})[];
|
|
1282
|
-
})[], readonly (string | {
|
|
1139
|
+
}))[], readonly (string | ({
|
|
1283
1140
|
id: string;
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
customtypes: readonly (string | {
|
|
1287
|
-
id: string;
|
|
1288
|
-
fields: readonly (string | {
|
|
1289
|
-
id: string;
|
|
1290
|
-
fields: readonly string[];
|
|
1291
|
-
})[];
|
|
1292
|
-
})[];
|
|
1293
|
-
} | {
|
|
1141
|
+
} & {
|
|
1142
|
+
fields?: readonly (string | {
|
|
1294
1143
|
id: string;
|
|
1295
|
-
|
|
1144
|
+
customtypes: readonly (string | ({
|
|
1296
1145
|
id: string;
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
id: string;
|
|
1301
|
-
fields: readonly string[];
|
|
1302
|
-
})[];
|
|
1303
|
-
})[];
|
|
1304
|
-
})[];
|
|
1146
|
+
} & {
|
|
1147
|
+
fields?: readonly string[];
|
|
1148
|
+
}))[];
|
|
1305
1149
|
})[];
|
|
1306
|
-
})[], unknown>;
|
|
1150
|
+
}))[], unknown>;
|
|
1307
1151
|
masks: t.Type<readonly string[], object, unknown>;
|
|
1308
1152
|
tags: t.Type<readonly string[], object, unknown>;
|
|
1309
1153
|
allowTargetBlank: t.BooleanC;
|
|
@@ -1434,31 +1278,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1434
1278
|
useAsTitle?: boolean;
|
|
1435
1279
|
placeholder?: string;
|
|
1436
1280
|
select?: "media" | "document" | "web" | null;
|
|
1437
|
-
customtypes?: readonly (string | {
|
|
1281
|
+
customtypes?: readonly (string | ({
|
|
1438
1282
|
id: string;
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
customtypes: readonly (string | {
|
|
1442
|
-
id: string;
|
|
1443
|
-
fields: readonly (string | {
|
|
1444
|
-
id: string;
|
|
1445
|
-
fields: readonly string[];
|
|
1446
|
-
})[];
|
|
1447
|
-
})[];
|
|
1448
|
-
} | {
|
|
1283
|
+
} & {
|
|
1284
|
+
fields?: readonly (string | {
|
|
1449
1285
|
id: string;
|
|
1450
|
-
|
|
1286
|
+
customtypes: readonly (string | ({
|
|
1451
1287
|
id: string;
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
id: string;
|
|
1456
|
-
fields: readonly string[];
|
|
1457
|
-
})[];
|
|
1458
|
-
})[];
|
|
1459
|
-
})[];
|
|
1288
|
+
} & {
|
|
1289
|
+
fields?: readonly string[];
|
|
1290
|
+
}))[];
|
|
1460
1291
|
})[];
|
|
1461
|
-
})[];
|
|
1292
|
+
}))[];
|
|
1462
1293
|
masks?: readonly string[];
|
|
1463
1294
|
tags?: readonly string[];
|
|
1464
1295
|
allowTargetBlank?: boolean;
|
|
@@ -1633,31 +1464,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1633
1464
|
useAsTitle?: boolean;
|
|
1634
1465
|
placeholder?: string;
|
|
1635
1466
|
select?: "media" | "document" | "web" | null;
|
|
1636
|
-
customtypes?: readonly (string | {
|
|
1467
|
+
customtypes?: readonly (string | ({
|
|
1637
1468
|
id: string;
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
customtypes: readonly (string | {
|
|
1641
|
-
id: string;
|
|
1642
|
-
fields: readonly (string | {
|
|
1643
|
-
id: string;
|
|
1644
|
-
fields: readonly string[];
|
|
1645
|
-
})[];
|
|
1646
|
-
})[];
|
|
1647
|
-
} | {
|
|
1469
|
+
} & {
|
|
1470
|
+
fields?: readonly (string | {
|
|
1648
1471
|
id: string;
|
|
1649
|
-
|
|
1472
|
+
customtypes: readonly (string | ({
|
|
1650
1473
|
id: string;
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
id: string;
|
|
1655
|
-
fields: readonly string[];
|
|
1656
|
-
})[];
|
|
1657
|
-
})[];
|
|
1658
|
-
})[];
|
|
1474
|
+
} & {
|
|
1475
|
+
fields?: readonly string[];
|
|
1476
|
+
}))[];
|
|
1659
1477
|
})[];
|
|
1660
|
-
})[];
|
|
1478
|
+
}))[];
|
|
1661
1479
|
masks?: readonly string[];
|
|
1662
1480
|
tags?: readonly string[];
|
|
1663
1481
|
allowTargetBlank?: boolean;
|
|
@@ -1833,31 +1651,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1833
1651
|
useAsTitle?: boolean;
|
|
1834
1652
|
placeholder?: string;
|
|
1835
1653
|
select?: "media" | "document" | "web" | null;
|
|
1836
|
-
customtypes?: readonly (string | {
|
|
1654
|
+
customtypes?: readonly (string | ({
|
|
1837
1655
|
id: string;
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
customtypes: readonly (string | {
|
|
1841
|
-
id: string;
|
|
1842
|
-
fields: readonly (string | {
|
|
1843
|
-
id: string;
|
|
1844
|
-
fields: readonly string[];
|
|
1845
|
-
})[];
|
|
1846
|
-
})[];
|
|
1847
|
-
} | {
|
|
1656
|
+
} & {
|
|
1657
|
+
fields?: readonly (string | {
|
|
1848
1658
|
id: string;
|
|
1849
|
-
|
|
1659
|
+
customtypes: readonly (string | ({
|
|
1850
1660
|
id: string;
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
id: string;
|
|
1855
|
-
fields: readonly string[];
|
|
1856
|
-
})[];
|
|
1857
|
-
})[];
|
|
1858
|
-
})[];
|
|
1661
|
+
} & {
|
|
1662
|
+
fields?: readonly string[];
|
|
1663
|
+
}))[];
|
|
1859
1664
|
})[];
|
|
1860
|
-
})[];
|
|
1665
|
+
}))[];
|
|
1861
1666
|
masks?: readonly string[];
|
|
1862
1667
|
tags?: readonly string[];
|
|
1863
1668
|
allowTargetBlank?: boolean;
|
|
@@ -2025,31 +1830,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2025
1830
|
useAsTitle?: boolean;
|
|
2026
1831
|
placeholder?: string;
|
|
2027
1832
|
select?: "media" | "document" | "web" | null;
|
|
2028
|
-
customtypes?: readonly (string | {
|
|
1833
|
+
customtypes?: readonly (string | ({
|
|
2029
1834
|
id: string;
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
customtypes: readonly (string | {
|
|
2033
|
-
id: string;
|
|
2034
|
-
fields: readonly (string | {
|
|
2035
|
-
id: string;
|
|
2036
|
-
fields: readonly string[];
|
|
2037
|
-
})[];
|
|
2038
|
-
})[];
|
|
2039
|
-
} | {
|
|
1835
|
+
} & {
|
|
1836
|
+
fields?: readonly (string | {
|
|
2040
1837
|
id: string;
|
|
2041
|
-
|
|
1838
|
+
customtypes: readonly (string | ({
|
|
2042
1839
|
id: string;
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
id: string;
|
|
2047
|
-
fields: readonly string[];
|
|
2048
|
-
})[];
|
|
2049
|
-
})[];
|
|
2050
|
-
})[];
|
|
1840
|
+
} & {
|
|
1841
|
+
fields?: readonly string[];
|
|
1842
|
+
}))[];
|
|
2051
1843
|
})[];
|
|
2052
|
-
})[];
|
|
1844
|
+
}))[];
|
|
2053
1845
|
masks?: readonly string[];
|
|
2054
1846
|
tags?: readonly string[];
|
|
2055
1847
|
allowTargetBlank?: boolean;
|
|
@@ -2233,31 +2025,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2233
2025
|
useAsTitle?: boolean;
|
|
2234
2026
|
placeholder?: string;
|
|
2235
2027
|
select?: "media" | "document" | "web" | null;
|
|
2236
|
-
customtypes?: readonly (string | {
|
|
2028
|
+
customtypes?: readonly (string | ({
|
|
2237
2029
|
id: string;
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
customtypes: readonly (string | {
|
|
2241
|
-
id: string;
|
|
2242
|
-
fields: readonly (string | {
|
|
2243
|
-
id: string;
|
|
2244
|
-
fields: readonly string[];
|
|
2245
|
-
})[];
|
|
2246
|
-
})[];
|
|
2247
|
-
} | {
|
|
2030
|
+
} & {
|
|
2031
|
+
fields?: readonly (string | {
|
|
2248
2032
|
id: string;
|
|
2249
|
-
|
|
2033
|
+
customtypes: readonly (string | ({
|
|
2250
2034
|
id: string;
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
id: string;
|
|
2255
|
-
fields: readonly string[];
|
|
2256
|
-
})[];
|
|
2257
|
-
})[];
|
|
2258
|
-
})[];
|
|
2035
|
+
} & {
|
|
2036
|
+
fields?: readonly string[];
|
|
2037
|
+
}))[];
|
|
2259
2038
|
})[];
|
|
2260
|
-
})[];
|
|
2039
|
+
}))[];
|
|
2261
2040
|
masks?: readonly string[];
|
|
2262
2041
|
tags?: readonly string[];
|
|
2263
2042
|
allowTargetBlank?: boolean;
|
|
@@ -2432,31 +2211,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2432
2211
|
useAsTitle?: boolean;
|
|
2433
2212
|
placeholder?: string;
|
|
2434
2213
|
select?: "media" | "document" | "web" | null;
|
|
2435
|
-
customtypes?: readonly (string | {
|
|
2214
|
+
customtypes?: readonly (string | ({
|
|
2436
2215
|
id: string;
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
customtypes: readonly (string | {
|
|
2440
|
-
id: string;
|
|
2441
|
-
fields: readonly (string | {
|
|
2442
|
-
id: string;
|
|
2443
|
-
fields: readonly string[];
|
|
2444
|
-
})[];
|
|
2445
|
-
})[];
|
|
2446
|
-
} | {
|
|
2216
|
+
} & {
|
|
2217
|
+
fields?: readonly (string | {
|
|
2447
2218
|
id: string;
|
|
2448
|
-
|
|
2219
|
+
customtypes: readonly (string | ({
|
|
2449
2220
|
id: string;
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
id: string;
|
|
2454
|
-
fields: readonly string[];
|
|
2455
|
-
})[];
|
|
2456
|
-
})[];
|
|
2457
|
-
})[];
|
|
2221
|
+
} & {
|
|
2222
|
+
fields?: readonly string[];
|
|
2223
|
+
}))[];
|
|
2458
2224
|
})[];
|
|
2459
|
-
})[];
|
|
2225
|
+
}))[];
|
|
2460
2226
|
masks?: readonly string[];
|
|
2461
2227
|
tags?: readonly string[];
|
|
2462
2228
|
allowTargetBlank?: boolean;
|
|
@@ -2631,31 +2397,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2631
2397
|
useAsTitle?: boolean;
|
|
2632
2398
|
placeholder?: string;
|
|
2633
2399
|
select?: "media" | "document" | "web" | null;
|
|
2634
|
-
customtypes?: readonly (string | {
|
|
2400
|
+
customtypes?: readonly (string | ({
|
|
2635
2401
|
id: string;
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
customtypes: readonly (string | {
|
|
2639
|
-
id: string;
|
|
2640
|
-
fields: readonly (string | {
|
|
2641
|
-
id: string;
|
|
2642
|
-
fields: readonly string[];
|
|
2643
|
-
})[];
|
|
2644
|
-
})[];
|
|
2645
|
-
} | {
|
|
2402
|
+
} & {
|
|
2403
|
+
fields?: readonly (string | {
|
|
2646
2404
|
id: string;
|
|
2647
|
-
|
|
2405
|
+
customtypes: readonly (string | ({
|
|
2648
2406
|
id: string;
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2652
|
-
id: string;
|
|
2653
|
-
fields: readonly string[];
|
|
2654
|
-
})[];
|
|
2655
|
-
})[];
|
|
2656
|
-
})[];
|
|
2407
|
+
} & {
|
|
2408
|
+
fields?: readonly string[];
|
|
2409
|
+
}))[];
|
|
2657
2410
|
})[];
|
|
2658
|
-
})[];
|
|
2411
|
+
}))[];
|
|
2659
2412
|
masks?: readonly string[];
|
|
2660
2413
|
tags?: readonly string[];
|
|
2661
2414
|
allowTargetBlank?: boolean;
|
|
@@ -2829,31 +2582,18 @@ export declare const StaticWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2829
2582
|
useAsTitle?: boolean;
|
|
2830
2583
|
placeholder?: string;
|
|
2831
2584
|
select?: "media" | "document" | "web" | null;
|
|
2832
|
-
customtypes?: readonly (string | {
|
|
2585
|
+
customtypes?: readonly (string | ({
|
|
2833
2586
|
id: string;
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
customtypes: readonly (string | {
|
|
2837
|
-
id: string;
|
|
2838
|
-
fields: readonly (string | {
|
|
2839
|
-
id: string;
|
|
2840
|
-
fields: readonly string[];
|
|
2841
|
-
})[];
|
|
2842
|
-
})[];
|
|
2843
|
-
} | {
|
|
2587
|
+
} & {
|
|
2588
|
+
fields?: readonly (string | {
|
|
2844
2589
|
id: string;
|
|
2845
|
-
|
|
2590
|
+
customtypes: readonly (string | ({
|
|
2846
2591
|
id: string;
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
id: string;
|
|
2851
|
-
fields: readonly string[];
|
|
2852
|
-
})[];
|
|
2853
|
-
})[];
|
|
2854
|
-
})[];
|
|
2592
|
+
} & {
|
|
2593
|
+
fields?: readonly string[];
|
|
2594
|
+
}))[];
|
|
2855
2595
|
})[];
|
|
2856
|
-
})[];
|
|
2596
|
+
}))[];
|
|
2857
2597
|
masks?: readonly string[];
|
|
2858
2598
|
tags?: readonly string[];
|
|
2859
2599
|
allowTargetBlank?: boolean;
|
|
@@ -3092,55 +2832,29 @@ export declare const DynamicWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<
|
|
|
3092
2832
|
useAsTitle: t.BooleanC;
|
|
3093
2833
|
placeholder: t.StringC;
|
|
3094
2834
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
3095
|
-
customtypes: t.Type<readonly (string | {
|
|
2835
|
+
customtypes: t.Type<readonly (string | ({
|
|
3096
2836
|
id: string;
|
|
3097
|
-
|
|
2837
|
+
} & {
|
|
2838
|
+
fields?: readonly (string | {
|
|
3098
2839
|
id: string;
|
|
3099
|
-
customtypes: readonly (string | {
|
|
2840
|
+
customtypes: readonly (string | ({
|
|
3100
2841
|
id: string;
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
})[];
|
|
3105
|
-
})[];
|
|
3106
|
-
} | {
|
|
3107
|
-
id: string;
|
|
3108
|
-
fields: readonly (string | {
|
|
3109
|
-
id: string;
|
|
3110
|
-
customtypes: readonly (string | {
|
|
3111
|
-
id: string;
|
|
3112
|
-
fields: readonly (string | {
|
|
3113
|
-
id: string;
|
|
3114
|
-
fields: readonly string[];
|
|
3115
|
-
})[];
|
|
3116
|
-
})[];
|
|
3117
|
-
})[];
|
|
2842
|
+
} & {
|
|
2843
|
+
fields?: readonly string[];
|
|
2844
|
+
}))[];
|
|
3118
2845
|
})[];
|
|
3119
|
-
})[], readonly (string | {
|
|
2846
|
+
}))[], readonly (string | ({
|
|
3120
2847
|
id: string;
|
|
3121
|
-
|
|
2848
|
+
} & {
|
|
2849
|
+
fields?: readonly (string | {
|
|
3122
2850
|
id: string;
|
|
3123
|
-
customtypes: readonly (string | {
|
|
2851
|
+
customtypes: readonly (string | ({
|
|
3124
2852
|
id: string;
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
})[];
|
|
3129
|
-
})[];
|
|
3130
|
-
} | {
|
|
3131
|
-
id: string;
|
|
3132
|
-
fields: readonly (string | {
|
|
3133
|
-
id: string;
|
|
3134
|
-
customtypes: readonly (string | {
|
|
3135
|
-
id: string;
|
|
3136
|
-
fields: readonly (string | {
|
|
3137
|
-
id: string;
|
|
3138
|
-
fields: readonly string[];
|
|
3139
|
-
})[];
|
|
3140
|
-
})[];
|
|
3141
|
-
})[];
|
|
2853
|
+
} & {
|
|
2854
|
+
fields?: readonly string[];
|
|
2855
|
+
}))[];
|
|
3142
2856
|
})[];
|
|
3143
|
-
})[], unknown>;
|
|
2857
|
+
}))[], unknown>;
|
|
3144
2858
|
masks: t.Type<readonly string[], object, unknown>;
|
|
3145
2859
|
tags: t.Type<readonly string[], object, unknown>;
|
|
3146
2860
|
allowTargetBlank: t.BooleanC;
|
|
@@ -3314,55 +3028,29 @@ export declare const DynamicWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<
|
|
|
3314
3028
|
useAsTitle: t.BooleanC;
|
|
3315
3029
|
placeholder: t.StringC;
|
|
3316
3030
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
3317
|
-
customtypes: t.Type<readonly (string | {
|
|
3031
|
+
customtypes: t.Type<readonly (string | ({
|
|
3318
3032
|
id: string;
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
customtypes: readonly (string | {
|
|
3322
|
-
id: string;
|
|
3323
|
-
fields: readonly (string | {
|
|
3324
|
-
id: string;
|
|
3325
|
-
fields: readonly string[];
|
|
3326
|
-
})[];
|
|
3327
|
-
})[];
|
|
3328
|
-
} | {
|
|
3033
|
+
} & {
|
|
3034
|
+
fields?: readonly (string | {
|
|
3329
3035
|
id: string;
|
|
3330
|
-
|
|
3036
|
+
customtypes: readonly (string | ({
|
|
3331
3037
|
id: string;
|
|
3332
|
-
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
id: string;
|
|
3336
|
-
fields: readonly string[];
|
|
3337
|
-
})[];
|
|
3338
|
-
})[];
|
|
3339
|
-
})[];
|
|
3038
|
+
} & {
|
|
3039
|
+
fields?: readonly string[];
|
|
3040
|
+
}))[];
|
|
3340
3041
|
})[];
|
|
3341
|
-
})[], readonly (string | {
|
|
3042
|
+
}))[], readonly (string | ({
|
|
3342
3043
|
id: string;
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
customtypes: readonly (string | {
|
|
3346
|
-
id: string;
|
|
3347
|
-
fields: readonly (string | {
|
|
3348
|
-
id: string;
|
|
3349
|
-
fields: readonly string[];
|
|
3350
|
-
})[];
|
|
3351
|
-
})[];
|
|
3352
|
-
} | {
|
|
3044
|
+
} & {
|
|
3045
|
+
fields?: readonly (string | {
|
|
3353
3046
|
id: string;
|
|
3354
|
-
|
|
3047
|
+
customtypes: readonly (string | ({
|
|
3355
3048
|
id: string;
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
id: string;
|
|
3360
|
-
fields: readonly string[];
|
|
3361
|
-
})[];
|
|
3362
|
-
})[];
|
|
3363
|
-
})[];
|
|
3049
|
+
} & {
|
|
3050
|
+
fields?: readonly string[];
|
|
3051
|
+
}))[];
|
|
3364
3052
|
})[];
|
|
3365
|
-
})[], unknown>;
|
|
3053
|
+
}))[], unknown>;
|
|
3366
3054
|
masks: t.Type<readonly string[], object, unknown>;
|
|
3367
3055
|
tags: t.Type<readonly string[], object, unknown>;
|
|
3368
3056
|
allowTargetBlank: t.BooleanC;
|
|
@@ -3536,55 +3224,29 @@ export declare const DynamicWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<
|
|
|
3536
3224
|
useAsTitle: t.BooleanC;
|
|
3537
3225
|
placeholder: t.StringC;
|
|
3538
3226
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
3539
|
-
customtypes: t.Type<readonly (string | {
|
|
3227
|
+
customtypes: t.Type<readonly (string | ({
|
|
3540
3228
|
id: string;
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
customtypes: readonly (string | {
|
|
3544
|
-
id: string;
|
|
3545
|
-
fields: readonly (string | {
|
|
3546
|
-
id: string;
|
|
3547
|
-
fields: readonly string[];
|
|
3548
|
-
})[];
|
|
3549
|
-
})[];
|
|
3550
|
-
} | {
|
|
3229
|
+
} & {
|
|
3230
|
+
fields?: readonly (string | {
|
|
3551
3231
|
id: string;
|
|
3552
|
-
|
|
3232
|
+
customtypes: readonly (string | ({
|
|
3553
3233
|
id: string;
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
id: string;
|
|
3558
|
-
fields: readonly string[];
|
|
3559
|
-
})[];
|
|
3560
|
-
})[];
|
|
3561
|
-
})[];
|
|
3234
|
+
} & {
|
|
3235
|
+
fields?: readonly string[];
|
|
3236
|
+
}))[];
|
|
3562
3237
|
})[];
|
|
3563
|
-
})[], readonly (string | {
|
|
3238
|
+
}))[], readonly (string | ({
|
|
3564
3239
|
id: string;
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
customtypes: readonly (string | {
|
|
3568
|
-
id: string;
|
|
3569
|
-
fields: readonly (string | {
|
|
3570
|
-
id: string;
|
|
3571
|
-
fields: readonly string[];
|
|
3572
|
-
})[];
|
|
3573
|
-
})[];
|
|
3574
|
-
} | {
|
|
3240
|
+
} & {
|
|
3241
|
+
fields?: readonly (string | {
|
|
3575
3242
|
id: string;
|
|
3576
|
-
|
|
3243
|
+
customtypes: readonly (string | ({
|
|
3577
3244
|
id: string;
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
id: string;
|
|
3582
|
-
fields: readonly string[];
|
|
3583
|
-
})[];
|
|
3584
|
-
})[];
|
|
3585
|
-
})[];
|
|
3245
|
+
} & {
|
|
3246
|
+
fields?: readonly string[];
|
|
3247
|
+
}))[];
|
|
3586
3248
|
})[];
|
|
3587
|
-
})[], unknown>;
|
|
3249
|
+
}))[], unknown>;
|
|
3588
3250
|
masks: t.Type<readonly string[], object, unknown>;
|
|
3589
3251
|
tags: t.Type<readonly string[], object, unknown>;
|
|
3590
3252
|
allowTargetBlank: t.BooleanC;
|
|
@@ -3715,31 +3377,18 @@ export declare const DynamicWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<
|
|
|
3715
3377
|
useAsTitle?: boolean;
|
|
3716
3378
|
placeholder?: string;
|
|
3717
3379
|
select?: "media" | "document" | "web" | null;
|
|
3718
|
-
customtypes?: readonly (string | {
|
|
3380
|
+
customtypes?: readonly (string | ({
|
|
3719
3381
|
id: string;
|
|
3720
|
-
|
|
3721
|
-
|
|
3722
|
-
customtypes: readonly (string | {
|
|
3723
|
-
id: string;
|
|
3724
|
-
fields: readonly (string | {
|
|
3725
|
-
id: string;
|
|
3726
|
-
fields: readonly string[];
|
|
3727
|
-
})[];
|
|
3728
|
-
})[];
|
|
3729
|
-
} | {
|
|
3382
|
+
} & {
|
|
3383
|
+
fields?: readonly (string | {
|
|
3730
3384
|
id: string;
|
|
3731
|
-
|
|
3385
|
+
customtypes: readonly (string | ({
|
|
3732
3386
|
id: string;
|
|
3733
|
-
|
|
3734
|
-
|
|
3735
|
-
|
|
3736
|
-
id: string;
|
|
3737
|
-
fields: readonly string[];
|
|
3738
|
-
})[];
|
|
3739
|
-
})[];
|
|
3740
|
-
})[];
|
|
3387
|
+
} & {
|
|
3388
|
+
fields?: readonly string[];
|
|
3389
|
+
}))[];
|
|
3741
3390
|
})[];
|
|
3742
|
-
})[];
|
|
3391
|
+
}))[];
|
|
3743
3392
|
masks?: readonly string[];
|
|
3744
3393
|
tags?: readonly string[];
|
|
3745
3394
|
allowTargetBlank?: boolean;
|
|
@@ -3914,31 +3563,18 @@ export declare const DynamicWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<
|
|
|
3914
3563
|
useAsTitle?: boolean;
|
|
3915
3564
|
placeholder?: string;
|
|
3916
3565
|
select?: "media" | "document" | "web" | null;
|
|
3917
|
-
customtypes?: readonly (string | {
|
|
3566
|
+
customtypes?: readonly (string | ({
|
|
3918
3567
|
id: string;
|
|
3919
|
-
|
|
3920
|
-
|
|
3921
|
-
customtypes: readonly (string | {
|
|
3922
|
-
id: string;
|
|
3923
|
-
fields: readonly (string | {
|
|
3924
|
-
id: string;
|
|
3925
|
-
fields: readonly string[];
|
|
3926
|
-
})[];
|
|
3927
|
-
})[];
|
|
3928
|
-
} | {
|
|
3568
|
+
} & {
|
|
3569
|
+
fields?: readonly (string | {
|
|
3929
3570
|
id: string;
|
|
3930
|
-
|
|
3571
|
+
customtypes: readonly (string | ({
|
|
3931
3572
|
id: string;
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
id: string;
|
|
3936
|
-
fields: readonly string[];
|
|
3937
|
-
})[];
|
|
3938
|
-
})[];
|
|
3939
|
-
})[];
|
|
3573
|
+
} & {
|
|
3574
|
+
fields?: readonly string[];
|
|
3575
|
+
}))[];
|
|
3940
3576
|
})[];
|
|
3941
|
-
})[];
|
|
3577
|
+
}))[];
|
|
3942
3578
|
masks?: readonly string[];
|
|
3943
3579
|
tags?: readonly string[];
|
|
3944
3580
|
allowTargetBlank?: boolean;
|
|
@@ -4114,31 +3750,18 @@ export declare const DynamicWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<
|
|
|
4114
3750
|
useAsTitle?: boolean;
|
|
4115
3751
|
placeholder?: string;
|
|
4116
3752
|
select?: "media" | "document" | "web" | null;
|
|
4117
|
-
customtypes?: readonly (string | {
|
|
3753
|
+
customtypes?: readonly (string | ({
|
|
4118
3754
|
id: string;
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
customtypes: readonly (string | {
|
|
4122
|
-
id: string;
|
|
4123
|
-
fields: readonly (string | {
|
|
4124
|
-
id: string;
|
|
4125
|
-
fields: readonly string[];
|
|
4126
|
-
})[];
|
|
4127
|
-
})[];
|
|
4128
|
-
} | {
|
|
3755
|
+
} & {
|
|
3756
|
+
fields?: readonly (string | {
|
|
4129
3757
|
id: string;
|
|
4130
|
-
|
|
3758
|
+
customtypes: readonly (string | ({
|
|
4131
3759
|
id: string;
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
|
|
4135
|
-
id: string;
|
|
4136
|
-
fields: readonly string[];
|
|
4137
|
-
})[];
|
|
4138
|
-
})[];
|
|
4139
|
-
})[];
|
|
3760
|
+
} & {
|
|
3761
|
+
fields?: readonly string[];
|
|
3762
|
+
}))[];
|
|
4140
3763
|
})[];
|
|
4141
|
-
})[];
|
|
3764
|
+
}))[];
|
|
4142
3765
|
masks?: readonly string[];
|
|
4143
3766
|
tags?: readonly string[];
|
|
4144
3767
|
allowTargetBlank?: boolean;
|
|
@@ -4306,31 +3929,18 @@ export declare const DynamicWidget: t.UnionC<[t.ExactC<t.IntersectionC<[t.TypeC<
|
|
|
4306
3929
|
useAsTitle?: boolean;
|
|
4307
3930
|
placeholder?: string;
|
|
4308
3931
|
select?: "media" | "document" | "web" | null;
|
|
4309
|
-
customtypes?: readonly (string | {
|
|
3932
|
+
customtypes?: readonly (string | ({
|
|
4310
3933
|
id: string;
|
|
4311
|
-
|
|
4312
|
-
|
|
4313
|
-
customtypes: readonly (string | {
|
|
4314
|
-
id: string;
|
|
4315
|
-
fields: readonly (string | {
|
|
4316
|
-
id: string;
|
|
4317
|
-
fields: readonly string[];
|
|
4318
|
-
})[];
|
|
4319
|
-
})[];
|
|
4320
|
-
} | {
|
|
3934
|
+
} & {
|
|
3935
|
+
fields?: readonly (string | {
|
|
4321
3936
|
id: string;
|
|
4322
|
-
|
|
3937
|
+
customtypes: readonly (string | ({
|
|
4323
3938
|
id: string;
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
id: string;
|
|
4328
|
-
fields: readonly string[];
|
|
4329
|
-
})[];
|
|
4330
|
-
})[];
|
|
4331
|
-
})[];
|
|
3939
|
+
} & {
|
|
3940
|
+
fields?: readonly string[];
|
|
3941
|
+
}))[];
|
|
4332
3942
|
})[];
|
|
4333
|
-
})[];
|
|
3943
|
+
}))[];
|
|
4334
3944
|
masks?: readonly string[];
|
|
4335
3945
|
tags?: readonly string[];
|
|
4336
3946
|
allowTargetBlank?: boolean;
|