@prismicio/types-internal 3.10.0 → 3.10.2-alpha.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/content/fields/nestable/RichTextContent/Block.d.ts +1036 -0
- package/lib/content/fields/nestable/RichTextContent/Block.js +31 -0
- package/lib/content/fields/nestable/RichTextContent/EmbedBlock.d.ts +60 -0
- package/lib/content/fields/nestable/RichTextContent/EmbedBlock.js +53 -0
- package/lib/content/fields/nestable/RichTextContent/ImageBlock.d.ts +203 -0
- package/lib/content/fields/nestable/RichTextContent/ImageBlock.js +36 -0
- package/lib/content/fields/nestable/RichTextContent/TableBlock.d.ts +500 -0
- package/lib/content/fields/nestable/RichTextContent/TableBlock.js +21 -0
- package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +590 -0
- package/lib/content/fields/nestable/RichTextContent/TextBlock.js +80 -0
- package/lib/customtypes/CustomType.d.ts +378 -144
- package/lib/customtypes/Section.d.ts +378 -144
- package/lib/customtypes/diff/SharedSlice.d.ts +168 -64
- package/lib/customtypes/diff/Variation.d.ts +168 -64
- package/lib/customtypes/widgets/Group.d.ts +246 -90
- package/lib/customtypes/widgets/Widget.d.ts +621 -231
- package/lib/customtypes/widgets/nestable/Link.d.ts +218 -30
- package/lib/customtypes/widgets/nestable/Link.js +43 -19
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +41 -15
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +82 -30
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +82 -30
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +328 -120
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +186 -69
- package/lib/customtypes/widgets/slices/Slices.d.ts +828 -308
- package/package.json +3 -3
- package/src/customtypes/widgets/nestable/Link.ts +101 -24
|
@@ -149,29 +149,55 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
|
|
|
149
149
|
useAsTitle: t.BooleanC;
|
|
150
150
|
placeholder: t.StringC;
|
|
151
151
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
152
|
-
customtypes: t.Type<readonly (string |
|
|
152
|
+
customtypes: t.Type<readonly (string | {
|
|
153
153
|
id: string;
|
|
154
|
-
|
|
155
|
-
fields?: readonly (string | {
|
|
154
|
+
fields: readonly (string | {
|
|
156
155
|
id: string;
|
|
157
|
-
customtypes: readonly (string |
|
|
156
|
+
customtypes: readonly (string | {
|
|
158
157
|
id: string;
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
158
|
+
fields: readonly (string | {
|
|
159
|
+
id: string;
|
|
160
|
+
fields: readonly string[];
|
|
161
|
+
})[];
|
|
162
|
+
})[];
|
|
163
|
+
} | {
|
|
164
|
+
id: string;
|
|
165
|
+
fields: readonly (string | {
|
|
166
|
+
id: string;
|
|
167
|
+
customtypes: readonly (string | {
|
|
168
|
+
id: string;
|
|
169
|
+
fields: readonly (string | {
|
|
170
|
+
id: string;
|
|
171
|
+
fields: readonly string[];
|
|
172
|
+
})[];
|
|
173
|
+
})[];
|
|
174
|
+
})[];
|
|
162
175
|
})[];
|
|
163
|
-
})
|
|
176
|
+
})[], readonly (string | {
|
|
164
177
|
id: string;
|
|
165
|
-
|
|
166
|
-
fields?: readonly (string | {
|
|
178
|
+
fields: readonly (string | {
|
|
167
179
|
id: string;
|
|
168
|
-
customtypes: readonly (string |
|
|
180
|
+
customtypes: readonly (string | {
|
|
169
181
|
id: string;
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
182
|
+
fields: readonly (string | {
|
|
183
|
+
id: string;
|
|
184
|
+
fields: readonly string[];
|
|
185
|
+
})[];
|
|
186
|
+
})[];
|
|
187
|
+
} | {
|
|
188
|
+
id: string;
|
|
189
|
+
fields: readonly (string | {
|
|
190
|
+
id: string;
|
|
191
|
+
customtypes: readonly (string | {
|
|
192
|
+
id: string;
|
|
193
|
+
fields: readonly (string | {
|
|
194
|
+
id: string;
|
|
195
|
+
fields: readonly string[];
|
|
196
|
+
})[];
|
|
197
|
+
})[];
|
|
198
|
+
})[];
|
|
173
199
|
})[];
|
|
174
|
-
})
|
|
200
|
+
})[], unknown>;
|
|
175
201
|
masks: t.Type<readonly string[], object, unknown>;
|
|
176
202
|
tags: t.Type<readonly string[], object, unknown>;
|
|
177
203
|
allowTargetBlank: t.BooleanC;
|
|
@@ -345,29 +371,55 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
|
|
|
345
371
|
useAsTitle: t.BooleanC;
|
|
346
372
|
placeholder: t.StringC;
|
|
347
373
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
348
|
-
customtypes: t.Type<readonly (string |
|
|
374
|
+
customtypes: t.Type<readonly (string | {
|
|
349
375
|
id: string;
|
|
350
|
-
|
|
351
|
-
fields?: readonly (string | {
|
|
376
|
+
fields: readonly (string | {
|
|
352
377
|
id: string;
|
|
353
|
-
customtypes: readonly (string |
|
|
378
|
+
customtypes: readonly (string | {
|
|
354
379
|
id: string;
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
380
|
+
fields: readonly (string | {
|
|
381
|
+
id: string;
|
|
382
|
+
fields: readonly string[];
|
|
383
|
+
})[];
|
|
384
|
+
})[];
|
|
385
|
+
} | {
|
|
386
|
+
id: string;
|
|
387
|
+
fields: readonly (string | {
|
|
388
|
+
id: string;
|
|
389
|
+
customtypes: readonly (string | {
|
|
390
|
+
id: string;
|
|
391
|
+
fields: readonly (string | {
|
|
392
|
+
id: string;
|
|
393
|
+
fields: readonly string[];
|
|
394
|
+
})[];
|
|
395
|
+
})[];
|
|
396
|
+
})[];
|
|
358
397
|
})[];
|
|
359
|
-
})
|
|
398
|
+
})[], readonly (string | {
|
|
360
399
|
id: string;
|
|
361
|
-
|
|
362
|
-
fields?: readonly (string | {
|
|
400
|
+
fields: readonly (string | {
|
|
363
401
|
id: string;
|
|
364
|
-
customtypes: readonly (string |
|
|
402
|
+
customtypes: readonly (string | {
|
|
365
403
|
id: string;
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
404
|
+
fields: readonly (string | {
|
|
405
|
+
id: string;
|
|
406
|
+
fields: readonly string[];
|
|
407
|
+
})[];
|
|
408
|
+
})[];
|
|
409
|
+
} | {
|
|
410
|
+
id: string;
|
|
411
|
+
fields: readonly (string | {
|
|
412
|
+
id: string;
|
|
413
|
+
customtypes: readonly (string | {
|
|
414
|
+
id: string;
|
|
415
|
+
fields: readonly (string | {
|
|
416
|
+
id: string;
|
|
417
|
+
fields: readonly string[];
|
|
418
|
+
})[];
|
|
419
|
+
})[];
|
|
420
|
+
})[];
|
|
369
421
|
})[];
|
|
370
|
-
})
|
|
422
|
+
})[], unknown>;
|
|
371
423
|
masks: t.Type<readonly string[], object, unknown>;
|
|
372
424
|
tags: t.Type<readonly string[], object, unknown>;
|
|
373
425
|
allowTargetBlank: t.BooleanC;
|
|
@@ -541,29 +593,55 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
|
|
|
541
593
|
useAsTitle: t.BooleanC;
|
|
542
594
|
placeholder: t.StringC;
|
|
543
595
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
544
|
-
customtypes: t.Type<readonly (string |
|
|
596
|
+
customtypes: t.Type<readonly (string | {
|
|
545
597
|
id: string;
|
|
546
|
-
|
|
547
|
-
fields?: readonly (string | {
|
|
598
|
+
fields: readonly (string | {
|
|
548
599
|
id: string;
|
|
549
|
-
customtypes: readonly (string |
|
|
600
|
+
customtypes: readonly (string | {
|
|
550
601
|
id: string;
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
602
|
+
fields: readonly (string | {
|
|
603
|
+
id: string;
|
|
604
|
+
fields: readonly string[];
|
|
605
|
+
})[];
|
|
606
|
+
})[];
|
|
607
|
+
} | {
|
|
608
|
+
id: string;
|
|
609
|
+
fields: readonly (string | {
|
|
610
|
+
id: string;
|
|
611
|
+
customtypes: readonly (string | {
|
|
612
|
+
id: string;
|
|
613
|
+
fields: readonly (string | {
|
|
614
|
+
id: string;
|
|
615
|
+
fields: readonly string[];
|
|
616
|
+
})[];
|
|
617
|
+
})[];
|
|
618
|
+
})[];
|
|
554
619
|
})[];
|
|
555
|
-
})
|
|
620
|
+
})[], readonly (string | {
|
|
556
621
|
id: string;
|
|
557
|
-
|
|
558
|
-
fields?: readonly (string | {
|
|
622
|
+
fields: readonly (string | {
|
|
559
623
|
id: string;
|
|
560
|
-
customtypes: readonly (string |
|
|
624
|
+
customtypes: readonly (string | {
|
|
561
625
|
id: string;
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
626
|
+
fields: readonly (string | {
|
|
627
|
+
id: string;
|
|
628
|
+
fields: readonly string[];
|
|
629
|
+
})[];
|
|
630
|
+
})[];
|
|
631
|
+
} | {
|
|
632
|
+
id: string;
|
|
633
|
+
fields: readonly (string | {
|
|
634
|
+
id: string;
|
|
635
|
+
customtypes: readonly (string | {
|
|
636
|
+
id: string;
|
|
637
|
+
fields: readonly (string | {
|
|
638
|
+
id: string;
|
|
639
|
+
fields: readonly string[];
|
|
640
|
+
})[];
|
|
641
|
+
})[];
|
|
642
|
+
})[];
|
|
565
643
|
})[];
|
|
566
|
-
})
|
|
644
|
+
})[], unknown>;
|
|
567
645
|
masks: t.Type<readonly string[], object, unknown>;
|
|
568
646
|
tags: t.Type<readonly string[], object, unknown>;
|
|
569
647
|
allowTargetBlank: t.BooleanC;
|
|
@@ -729,29 +807,55 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
|
|
|
729
807
|
useAsTitle: t.BooleanC;
|
|
730
808
|
placeholder: t.StringC;
|
|
731
809
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
732
|
-
customtypes: t.Type<readonly (string |
|
|
810
|
+
customtypes: t.Type<readonly (string | {
|
|
733
811
|
id: string;
|
|
734
|
-
|
|
735
|
-
fields?: readonly (string | {
|
|
812
|
+
fields: readonly (string | {
|
|
736
813
|
id: string;
|
|
737
|
-
customtypes: readonly (string |
|
|
814
|
+
customtypes: readonly (string | {
|
|
738
815
|
id: string;
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
816
|
+
fields: readonly (string | {
|
|
817
|
+
id: string;
|
|
818
|
+
fields: readonly string[];
|
|
819
|
+
})[];
|
|
820
|
+
})[];
|
|
821
|
+
} | {
|
|
822
|
+
id: string;
|
|
823
|
+
fields: readonly (string | {
|
|
824
|
+
id: string;
|
|
825
|
+
customtypes: readonly (string | {
|
|
826
|
+
id: string;
|
|
827
|
+
fields: readonly (string | {
|
|
828
|
+
id: string;
|
|
829
|
+
fields: readonly string[];
|
|
830
|
+
})[];
|
|
831
|
+
})[];
|
|
832
|
+
})[];
|
|
742
833
|
})[];
|
|
743
|
-
})
|
|
834
|
+
})[], readonly (string | {
|
|
744
835
|
id: string;
|
|
745
|
-
|
|
746
|
-
fields?: readonly (string | {
|
|
836
|
+
fields: readonly (string | {
|
|
747
837
|
id: string;
|
|
748
|
-
customtypes: readonly (string |
|
|
838
|
+
customtypes: readonly (string | {
|
|
749
839
|
id: string;
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
840
|
+
fields: readonly (string | {
|
|
841
|
+
id: string;
|
|
842
|
+
fields: readonly string[];
|
|
843
|
+
})[];
|
|
844
|
+
})[];
|
|
845
|
+
} | {
|
|
846
|
+
id: string;
|
|
847
|
+
fields: readonly (string | {
|
|
848
|
+
id: string;
|
|
849
|
+
customtypes: readonly (string | {
|
|
850
|
+
id: string;
|
|
851
|
+
fields: readonly (string | {
|
|
852
|
+
id: string;
|
|
853
|
+
fields: readonly string[];
|
|
854
|
+
})[];
|
|
855
|
+
})[];
|
|
856
|
+
})[];
|
|
753
857
|
})[];
|
|
754
|
-
})
|
|
858
|
+
})[], unknown>;
|
|
755
859
|
masks: t.Type<readonly string[], object, unknown>;
|
|
756
860
|
tags: t.Type<readonly string[], object, unknown>;
|
|
757
861
|
allowTargetBlank: t.BooleanC;
|
|
@@ -929,29 +1033,55 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
929
1033
|
useAsTitle: t.BooleanC;
|
|
930
1034
|
placeholder: t.StringC;
|
|
931
1035
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
932
|
-
customtypes: t.Type<readonly (string |
|
|
1036
|
+
customtypes: t.Type<readonly (string | {
|
|
933
1037
|
id: string;
|
|
934
|
-
|
|
935
|
-
fields?: readonly (string | {
|
|
1038
|
+
fields: readonly (string | {
|
|
936
1039
|
id: string;
|
|
937
|
-
customtypes: readonly (string |
|
|
1040
|
+
customtypes: readonly (string | {
|
|
938
1041
|
id: string;
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
1042
|
+
fields: readonly (string | {
|
|
1043
|
+
id: string;
|
|
1044
|
+
fields: readonly string[];
|
|
1045
|
+
})[];
|
|
1046
|
+
})[];
|
|
1047
|
+
} | {
|
|
1048
|
+
id: string;
|
|
1049
|
+
fields: readonly (string | {
|
|
1050
|
+
id: string;
|
|
1051
|
+
customtypes: readonly (string | {
|
|
1052
|
+
id: string;
|
|
1053
|
+
fields: readonly (string | {
|
|
1054
|
+
id: string;
|
|
1055
|
+
fields: readonly string[];
|
|
1056
|
+
})[];
|
|
1057
|
+
})[];
|
|
1058
|
+
})[];
|
|
942
1059
|
})[];
|
|
943
|
-
})
|
|
1060
|
+
})[], readonly (string | {
|
|
944
1061
|
id: string;
|
|
945
|
-
|
|
946
|
-
fields?: readonly (string | {
|
|
1062
|
+
fields: readonly (string | {
|
|
947
1063
|
id: string;
|
|
948
|
-
customtypes: readonly (string |
|
|
1064
|
+
customtypes: readonly (string | {
|
|
949
1065
|
id: string;
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
1066
|
+
fields: readonly (string | {
|
|
1067
|
+
id: string;
|
|
1068
|
+
fields: readonly string[];
|
|
1069
|
+
})[];
|
|
1070
|
+
})[];
|
|
1071
|
+
} | {
|
|
1072
|
+
id: string;
|
|
1073
|
+
fields: readonly (string | {
|
|
1074
|
+
id: string;
|
|
1075
|
+
customtypes: readonly (string | {
|
|
1076
|
+
id: string;
|
|
1077
|
+
fields: readonly (string | {
|
|
1078
|
+
id: string;
|
|
1079
|
+
fields: readonly string[];
|
|
1080
|
+
})[];
|
|
1081
|
+
})[];
|
|
1082
|
+
})[];
|
|
953
1083
|
})[];
|
|
954
|
-
})
|
|
1084
|
+
})[], unknown>;
|
|
955
1085
|
masks: t.Type<readonly string[], object, unknown>;
|
|
956
1086
|
tags: t.Type<readonly string[], object, unknown>;
|
|
957
1087
|
allowTargetBlank: t.BooleanC;
|
|
@@ -1125,29 +1255,55 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
1125
1255
|
useAsTitle: t.BooleanC;
|
|
1126
1256
|
placeholder: t.StringC;
|
|
1127
1257
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
1128
|
-
customtypes: t.Type<readonly (string |
|
|
1258
|
+
customtypes: t.Type<readonly (string | {
|
|
1129
1259
|
id: string;
|
|
1130
|
-
|
|
1131
|
-
fields?: readonly (string | {
|
|
1260
|
+
fields: readonly (string | {
|
|
1132
1261
|
id: string;
|
|
1133
|
-
customtypes: readonly (string |
|
|
1262
|
+
customtypes: readonly (string | {
|
|
1134
1263
|
id: string;
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1264
|
+
fields: readonly (string | {
|
|
1265
|
+
id: string;
|
|
1266
|
+
fields: readonly string[];
|
|
1267
|
+
})[];
|
|
1268
|
+
})[];
|
|
1269
|
+
} | {
|
|
1270
|
+
id: string;
|
|
1271
|
+
fields: readonly (string | {
|
|
1272
|
+
id: string;
|
|
1273
|
+
customtypes: readonly (string | {
|
|
1274
|
+
id: string;
|
|
1275
|
+
fields: readonly (string | {
|
|
1276
|
+
id: string;
|
|
1277
|
+
fields: readonly string[];
|
|
1278
|
+
})[];
|
|
1279
|
+
})[];
|
|
1280
|
+
})[];
|
|
1138
1281
|
})[];
|
|
1139
|
-
})
|
|
1282
|
+
})[], readonly (string | {
|
|
1140
1283
|
id: string;
|
|
1141
|
-
|
|
1142
|
-
fields?: readonly (string | {
|
|
1284
|
+
fields: readonly (string | {
|
|
1143
1285
|
id: string;
|
|
1144
|
-
customtypes: readonly (string |
|
|
1286
|
+
customtypes: readonly (string | {
|
|
1145
1287
|
id: string;
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1288
|
+
fields: readonly (string | {
|
|
1289
|
+
id: string;
|
|
1290
|
+
fields: readonly string[];
|
|
1291
|
+
})[];
|
|
1292
|
+
})[];
|
|
1293
|
+
} | {
|
|
1294
|
+
id: string;
|
|
1295
|
+
fields: readonly (string | {
|
|
1296
|
+
id: string;
|
|
1297
|
+
customtypes: readonly (string | {
|
|
1298
|
+
id: string;
|
|
1299
|
+
fields: readonly (string | {
|
|
1300
|
+
id: string;
|
|
1301
|
+
fields: readonly string[];
|
|
1302
|
+
})[];
|
|
1303
|
+
})[];
|
|
1304
|
+
})[];
|
|
1149
1305
|
})[];
|
|
1150
|
-
})
|
|
1306
|
+
})[], unknown>;
|
|
1151
1307
|
masks: t.Type<readonly string[], object, unknown>;
|
|
1152
1308
|
tags: t.Type<readonly string[], object, unknown>;
|
|
1153
1309
|
allowTargetBlank: t.BooleanC;
|
|
@@ -1321,29 +1477,55 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
1321
1477
|
useAsTitle: t.BooleanC;
|
|
1322
1478
|
placeholder: t.StringC;
|
|
1323
1479
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
1324
|
-
customtypes: t.Type<readonly (string |
|
|
1480
|
+
customtypes: t.Type<readonly (string | {
|
|
1325
1481
|
id: string;
|
|
1326
|
-
|
|
1327
|
-
fields?: readonly (string | {
|
|
1482
|
+
fields: readonly (string | {
|
|
1328
1483
|
id: string;
|
|
1329
|
-
customtypes: readonly (string |
|
|
1484
|
+
customtypes: readonly (string | {
|
|
1330
1485
|
id: string;
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1486
|
+
fields: readonly (string | {
|
|
1487
|
+
id: string;
|
|
1488
|
+
fields: readonly string[];
|
|
1489
|
+
})[];
|
|
1490
|
+
})[];
|
|
1491
|
+
} | {
|
|
1492
|
+
id: string;
|
|
1493
|
+
fields: readonly (string | {
|
|
1494
|
+
id: string;
|
|
1495
|
+
customtypes: readonly (string | {
|
|
1496
|
+
id: string;
|
|
1497
|
+
fields: readonly (string | {
|
|
1498
|
+
id: string;
|
|
1499
|
+
fields: readonly string[];
|
|
1500
|
+
})[];
|
|
1501
|
+
})[];
|
|
1502
|
+
})[];
|
|
1334
1503
|
})[];
|
|
1335
|
-
})
|
|
1504
|
+
})[], readonly (string | {
|
|
1336
1505
|
id: string;
|
|
1337
|
-
|
|
1338
|
-
fields?: readonly (string | {
|
|
1506
|
+
fields: readonly (string | {
|
|
1339
1507
|
id: string;
|
|
1340
|
-
customtypes: readonly (string |
|
|
1508
|
+
customtypes: readonly (string | {
|
|
1341
1509
|
id: string;
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1510
|
+
fields: readonly (string | {
|
|
1511
|
+
id: string;
|
|
1512
|
+
fields: readonly string[];
|
|
1513
|
+
})[];
|
|
1514
|
+
})[];
|
|
1515
|
+
} | {
|
|
1516
|
+
id: string;
|
|
1517
|
+
fields: readonly (string | {
|
|
1518
|
+
id: string;
|
|
1519
|
+
customtypes: readonly (string | {
|
|
1520
|
+
id: string;
|
|
1521
|
+
fields: readonly (string | {
|
|
1522
|
+
id: string;
|
|
1523
|
+
fields: readonly string[];
|
|
1524
|
+
})[];
|
|
1525
|
+
})[];
|
|
1526
|
+
})[];
|
|
1345
1527
|
})[];
|
|
1346
|
-
})
|
|
1528
|
+
})[], unknown>;
|
|
1347
1529
|
masks: t.Type<readonly string[], object, unknown>;
|
|
1348
1530
|
tags: t.Type<readonly string[], object, unknown>;
|
|
1349
1531
|
allowTargetBlank: t.BooleanC;
|
|
@@ -1509,29 +1691,55 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
1509
1691
|
useAsTitle: t.BooleanC;
|
|
1510
1692
|
placeholder: t.StringC;
|
|
1511
1693
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
1512
|
-
customtypes: t.Type<readonly (string |
|
|
1694
|
+
customtypes: t.Type<readonly (string | {
|
|
1513
1695
|
id: string;
|
|
1514
|
-
|
|
1515
|
-
fields?: readonly (string | {
|
|
1696
|
+
fields: readonly (string | {
|
|
1516
1697
|
id: string;
|
|
1517
|
-
customtypes: readonly (string |
|
|
1698
|
+
customtypes: readonly (string | {
|
|
1518
1699
|
id: string;
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1700
|
+
fields: readonly (string | {
|
|
1701
|
+
id: string;
|
|
1702
|
+
fields: readonly string[];
|
|
1703
|
+
})[];
|
|
1704
|
+
})[];
|
|
1705
|
+
} | {
|
|
1706
|
+
id: string;
|
|
1707
|
+
fields: readonly (string | {
|
|
1708
|
+
id: string;
|
|
1709
|
+
customtypes: readonly (string | {
|
|
1710
|
+
id: string;
|
|
1711
|
+
fields: readonly (string | {
|
|
1712
|
+
id: string;
|
|
1713
|
+
fields: readonly string[];
|
|
1714
|
+
})[];
|
|
1715
|
+
})[];
|
|
1716
|
+
})[];
|
|
1522
1717
|
})[];
|
|
1523
|
-
})
|
|
1718
|
+
})[], readonly (string | {
|
|
1524
1719
|
id: string;
|
|
1525
|
-
|
|
1526
|
-
fields?: readonly (string | {
|
|
1720
|
+
fields: readonly (string | {
|
|
1527
1721
|
id: string;
|
|
1528
|
-
customtypes: readonly (string |
|
|
1722
|
+
customtypes: readonly (string | {
|
|
1529
1723
|
id: string;
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1724
|
+
fields: readonly (string | {
|
|
1725
|
+
id: string;
|
|
1726
|
+
fields: readonly string[];
|
|
1727
|
+
})[];
|
|
1728
|
+
})[];
|
|
1729
|
+
} | {
|
|
1730
|
+
id: string;
|
|
1731
|
+
fields: readonly (string | {
|
|
1732
|
+
id: string;
|
|
1733
|
+
customtypes: readonly (string | {
|
|
1734
|
+
id: string;
|
|
1735
|
+
fields: readonly (string | {
|
|
1736
|
+
id: string;
|
|
1737
|
+
fields: readonly string[];
|
|
1738
|
+
})[];
|
|
1739
|
+
})[];
|
|
1740
|
+
})[];
|
|
1533
1741
|
})[];
|
|
1534
|
-
})
|
|
1742
|
+
})[], unknown>;
|
|
1535
1743
|
masks: t.Type<readonly string[], object, unknown>;
|
|
1536
1744
|
tags: t.Type<readonly string[], object, unknown>;
|
|
1537
1745
|
allowTargetBlank: t.BooleanC;
|
|
@@ -1662,18 +1870,31 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
1662
1870
|
useAsTitle?: boolean;
|
|
1663
1871
|
placeholder?: string;
|
|
1664
1872
|
select?: "media" | "document" | "web" | null;
|
|
1665
|
-
customtypes?: readonly (string |
|
|
1873
|
+
customtypes?: readonly (string | {
|
|
1666
1874
|
id: string;
|
|
1667
|
-
|
|
1668
|
-
fields?: readonly (string | {
|
|
1875
|
+
fields: readonly (string | {
|
|
1669
1876
|
id: string;
|
|
1670
|
-
customtypes: readonly (string |
|
|
1877
|
+
customtypes: readonly (string | {
|
|
1671
1878
|
id: string;
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1879
|
+
fields: readonly (string | {
|
|
1880
|
+
id: string;
|
|
1881
|
+
fields: readonly string[];
|
|
1882
|
+
})[];
|
|
1883
|
+
})[];
|
|
1884
|
+
} | {
|
|
1885
|
+
id: string;
|
|
1886
|
+
fields: readonly (string | {
|
|
1887
|
+
id: string;
|
|
1888
|
+
customtypes: readonly (string | {
|
|
1889
|
+
id: string;
|
|
1890
|
+
fields: readonly (string | {
|
|
1891
|
+
id: string;
|
|
1892
|
+
fields: readonly string[];
|
|
1893
|
+
})[];
|
|
1894
|
+
})[];
|
|
1895
|
+
})[];
|
|
1675
1896
|
})[];
|
|
1676
|
-
})
|
|
1897
|
+
})[];
|
|
1677
1898
|
masks?: readonly string[];
|
|
1678
1899
|
tags?: readonly string[];
|
|
1679
1900
|
allowTargetBlank?: boolean;
|
|
@@ -1848,18 +2069,31 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
1848
2069
|
useAsTitle?: boolean;
|
|
1849
2070
|
placeholder?: string;
|
|
1850
2071
|
select?: "media" | "document" | "web" | null;
|
|
1851
|
-
customtypes?: readonly (string |
|
|
2072
|
+
customtypes?: readonly (string | {
|
|
1852
2073
|
id: string;
|
|
1853
|
-
|
|
1854
|
-
fields?: readonly (string | {
|
|
2074
|
+
fields: readonly (string | {
|
|
1855
2075
|
id: string;
|
|
1856
|
-
customtypes: readonly (string |
|
|
2076
|
+
customtypes: readonly (string | {
|
|
1857
2077
|
id: string;
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
2078
|
+
fields: readonly (string | {
|
|
2079
|
+
id: string;
|
|
2080
|
+
fields: readonly string[];
|
|
2081
|
+
})[];
|
|
2082
|
+
})[];
|
|
2083
|
+
} | {
|
|
2084
|
+
id: string;
|
|
2085
|
+
fields: readonly (string | {
|
|
2086
|
+
id: string;
|
|
2087
|
+
customtypes: readonly (string | {
|
|
2088
|
+
id: string;
|
|
2089
|
+
fields: readonly (string | {
|
|
2090
|
+
id: string;
|
|
2091
|
+
fields: readonly string[];
|
|
2092
|
+
})[];
|
|
2093
|
+
})[];
|
|
2094
|
+
})[];
|
|
1861
2095
|
})[];
|
|
1862
|
-
})
|
|
2096
|
+
})[];
|
|
1863
2097
|
masks?: readonly string[];
|
|
1864
2098
|
tags?: readonly string[];
|
|
1865
2099
|
allowTargetBlank?: boolean;
|
|
@@ -2034,18 +2268,31 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
2034
2268
|
useAsTitle?: boolean;
|
|
2035
2269
|
placeholder?: string;
|
|
2036
2270
|
select?: "media" | "document" | "web" | null;
|
|
2037
|
-
customtypes?: readonly (string |
|
|
2271
|
+
customtypes?: readonly (string | {
|
|
2038
2272
|
id: string;
|
|
2039
|
-
|
|
2040
|
-
fields?: readonly (string | {
|
|
2273
|
+
fields: readonly (string | {
|
|
2041
2274
|
id: string;
|
|
2042
|
-
customtypes: readonly (string |
|
|
2275
|
+
customtypes: readonly (string | {
|
|
2043
2276
|
id: string;
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2277
|
+
fields: readonly (string | {
|
|
2278
|
+
id: string;
|
|
2279
|
+
fields: readonly string[];
|
|
2280
|
+
})[];
|
|
2281
|
+
})[];
|
|
2282
|
+
} | {
|
|
2283
|
+
id: string;
|
|
2284
|
+
fields: readonly (string | {
|
|
2285
|
+
id: string;
|
|
2286
|
+
customtypes: readonly (string | {
|
|
2287
|
+
id: string;
|
|
2288
|
+
fields: readonly (string | {
|
|
2289
|
+
id: string;
|
|
2290
|
+
fields: readonly string[];
|
|
2291
|
+
})[];
|
|
2292
|
+
})[];
|
|
2293
|
+
})[];
|
|
2047
2294
|
})[];
|
|
2048
|
-
})
|
|
2295
|
+
})[];
|
|
2049
2296
|
masks?: readonly string[];
|
|
2050
2297
|
tags?: readonly string[];
|
|
2051
2298
|
allowTargetBlank?: boolean;
|
|
@@ -2219,18 +2466,31 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
2219
2466
|
useAsTitle?: boolean;
|
|
2220
2467
|
placeholder?: string;
|
|
2221
2468
|
select?: "media" | "document" | "web" | null;
|
|
2222
|
-
customtypes?: readonly (string |
|
|
2469
|
+
customtypes?: readonly (string | {
|
|
2223
2470
|
id: string;
|
|
2224
|
-
|
|
2225
|
-
fields?: readonly (string | {
|
|
2471
|
+
fields: readonly (string | {
|
|
2226
2472
|
id: string;
|
|
2227
|
-
customtypes: readonly (string |
|
|
2473
|
+
customtypes: readonly (string | {
|
|
2228
2474
|
id: string;
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2475
|
+
fields: readonly (string | {
|
|
2476
|
+
id: string;
|
|
2477
|
+
fields: readonly string[];
|
|
2478
|
+
})[];
|
|
2479
|
+
})[];
|
|
2480
|
+
} | {
|
|
2481
|
+
id: string;
|
|
2482
|
+
fields: readonly (string | {
|
|
2483
|
+
id: string;
|
|
2484
|
+
customtypes: readonly (string | {
|
|
2485
|
+
id: string;
|
|
2486
|
+
fields: readonly (string | {
|
|
2487
|
+
id: string;
|
|
2488
|
+
fields: readonly string[];
|
|
2489
|
+
})[];
|
|
2490
|
+
})[];
|
|
2491
|
+
})[];
|
|
2232
2492
|
})[];
|
|
2233
|
-
})
|
|
2493
|
+
})[];
|
|
2234
2494
|
masks?: readonly string[];
|
|
2235
2495
|
tags?: readonly string[];
|
|
2236
2496
|
allowTargetBlank?: boolean;
|
|
@@ -2465,29 +2725,55 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
2465
2725
|
useAsTitle: t.BooleanC;
|
|
2466
2726
|
placeholder: t.StringC;
|
|
2467
2727
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
2468
|
-
customtypes: t.Type<readonly (string |
|
|
2728
|
+
customtypes: t.Type<readonly (string | {
|
|
2469
2729
|
id: string;
|
|
2470
|
-
|
|
2471
|
-
fields?: readonly (string | {
|
|
2730
|
+
fields: readonly (string | {
|
|
2472
2731
|
id: string;
|
|
2473
|
-
customtypes: readonly (string |
|
|
2732
|
+
customtypes: readonly (string | {
|
|
2474
2733
|
id: string;
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2734
|
+
fields: readonly (string | {
|
|
2735
|
+
id: string;
|
|
2736
|
+
fields: readonly string[];
|
|
2737
|
+
})[];
|
|
2738
|
+
})[];
|
|
2739
|
+
} | {
|
|
2740
|
+
id: string;
|
|
2741
|
+
fields: readonly (string | {
|
|
2742
|
+
id: string;
|
|
2743
|
+
customtypes: readonly (string | {
|
|
2744
|
+
id: string;
|
|
2745
|
+
fields: readonly (string | {
|
|
2746
|
+
id: string;
|
|
2747
|
+
fields: readonly string[];
|
|
2748
|
+
})[];
|
|
2749
|
+
})[];
|
|
2750
|
+
})[];
|
|
2478
2751
|
})[];
|
|
2479
|
-
})
|
|
2752
|
+
})[], readonly (string | {
|
|
2480
2753
|
id: string;
|
|
2481
|
-
|
|
2482
|
-
fields?: readonly (string | {
|
|
2754
|
+
fields: readonly (string | {
|
|
2483
2755
|
id: string;
|
|
2484
|
-
customtypes: readonly (string |
|
|
2756
|
+
customtypes: readonly (string | {
|
|
2485
2757
|
id: string;
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2758
|
+
fields: readonly (string | {
|
|
2759
|
+
id: string;
|
|
2760
|
+
fields: readonly string[];
|
|
2761
|
+
})[];
|
|
2762
|
+
})[];
|
|
2763
|
+
} | {
|
|
2764
|
+
id: string;
|
|
2765
|
+
fields: readonly (string | {
|
|
2766
|
+
id: string;
|
|
2767
|
+
customtypes: readonly (string | {
|
|
2768
|
+
id: string;
|
|
2769
|
+
fields: readonly (string | {
|
|
2770
|
+
id: string;
|
|
2771
|
+
fields: readonly string[];
|
|
2772
|
+
})[];
|
|
2773
|
+
})[];
|
|
2774
|
+
})[];
|
|
2489
2775
|
})[];
|
|
2490
|
-
})
|
|
2776
|
+
})[], unknown>;
|
|
2491
2777
|
masks: t.Type<readonly string[], object, unknown>;
|
|
2492
2778
|
tags: t.Type<readonly string[], object, unknown>;
|
|
2493
2779
|
allowTargetBlank: t.BooleanC;
|
|
@@ -2661,29 +2947,55 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
2661
2947
|
useAsTitle: t.BooleanC;
|
|
2662
2948
|
placeholder: t.StringC;
|
|
2663
2949
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
2664
|
-
customtypes: t.Type<readonly (string |
|
|
2950
|
+
customtypes: t.Type<readonly (string | {
|
|
2665
2951
|
id: string;
|
|
2666
|
-
|
|
2667
|
-
fields?: readonly (string | {
|
|
2952
|
+
fields: readonly (string | {
|
|
2668
2953
|
id: string;
|
|
2669
|
-
customtypes: readonly (string |
|
|
2954
|
+
customtypes: readonly (string | {
|
|
2670
2955
|
id: string;
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2956
|
+
fields: readonly (string | {
|
|
2957
|
+
id: string;
|
|
2958
|
+
fields: readonly string[];
|
|
2959
|
+
})[];
|
|
2960
|
+
})[];
|
|
2961
|
+
} | {
|
|
2962
|
+
id: string;
|
|
2963
|
+
fields: readonly (string | {
|
|
2964
|
+
id: string;
|
|
2965
|
+
customtypes: readonly (string | {
|
|
2966
|
+
id: string;
|
|
2967
|
+
fields: readonly (string | {
|
|
2968
|
+
id: string;
|
|
2969
|
+
fields: readonly string[];
|
|
2970
|
+
})[];
|
|
2971
|
+
})[];
|
|
2972
|
+
})[];
|
|
2674
2973
|
})[];
|
|
2675
|
-
})
|
|
2974
|
+
})[], readonly (string | {
|
|
2676
2975
|
id: string;
|
|
2677
|
-
|
|
2678
|
-
fields?: readonly (string | {
|
|
2976
|
+
fields: readonly (string | {
|
|
2679
2977
|
id: string;
|
|
2680
|
-
customtypes: readonly (string |
|
|
2978
|
+
customtypes: readonly (string | {
|
|
2681
2979
|
id: string;
|
|
2682
|
-
|
|
2683
|
-
|
|
2684
|
-
|
|
2980
|
+
fields: readonly (string | {
|
|
2981
|
+
id: string;
|
|
2982
|
+
fields: readonly string[];
|
|
2983
|
+
})[];
|
|
2984
|
+
})[];
|
|
2985
|
+
} | {
|
|
2986
|
+
id: string;
|
|
2987
|
+
fields: readonly (string | {
|
|
2988
|
+
id: string;
|
|
2989
|
+
customtypes: readonly (string | {
|
|
2990
|
+
id: string;
|
|
2991
|
+
fields: readonly (string | {
|
|
2992
|
+
id: string;
|
|
2993
|
+
fields: readonly string[];
|
|
2994
|
+
})[];
|
|
2995
|
+
})[];
|
|
2996
|
+
})[];
|
|
2685
2997
|
})[];
|
|
2686
|
-
})
|
|
2998
|
+
})[], unknown>;
|
|
2687
2999
|
masks: t.Type<readonly string[], object, unknown>;
|
|
2688
3000
|
tags: t.Type<readonly string[], object, unknown>;
|
|
2689
3001
|
allowTargetBlank: t.BooleanC;
|
|
@@ -2857,29 +3169,55 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
2857
3169
|
useAsTitle: t.BooleanC;
|
|
2858
3170
|
placeholder: t.StringC;
|
|
2859
3171
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
2860
|
-
customtypes: t.Type<readonly (string |
|
|
3172
|
+
customtypes: t.Type<readonly (string | {
|
|
2861
3173
|
id: string;
|
|
2862
|
-
|
|
2863
|
-
fields?: readonly (string | {
|
|
3174
|
+
fields: readonly (string | {
|
|
2864
3175
|
id: string;
|
|
2865
|
-
customtypes: readonly (string |
|
|
3176
|
+
customtypes: readonly (string | {
|
|
2866
3177
|
id: string;
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
3178
|
+
fields: readonly (string | {
|
|
3179
|
+
id: string;
|
|
3180
|
+
fields: readonly string[];
|
|
3181
|
+
})[];
|
|
3182
|
+
})[];
|
|
3183
|
+
} | {
|
|
3184
|
+
id: string;
|
|
3185
|
+
fields: readonly (string | {
|
|
3186
|
+
id: string;
|
|
3187
|
+
customtypes: readonly (string | {
|
|
3188
|
+
id: string;
|
|
3189
|
+
fields: readonly (string | {
|
|
3190
|
+
id: string;
|
|
3191
|
+
fields: readonly string[];
|
|
3192
|
+
})[];
|
|
3193
|
+
})[];
|
|
3194
|
+
})[];
|
|
2870
3195
|
})[];
|
|
2871
|
-
})
|
|
3196
|
+
})[], readonly (string | {
|
|
2872
3197
|
id: string;
|
|
2873
|
-
|
|
2874
|
-
fields?: readonly (string | {
|
|
3198
|
+
fields: readonly (string | {
|
|
2875
3199
|
id: string;
|
|
2876
|
-
customtypes: readonly (string |
|
|
3200
|
+
customtypes: readonly (string | {
|
|
2877
3201
|
id: string;
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
|
|
3202
|
+
fields: readonly (string | {
|
|
3203
|
+
id: string;
|
|
3204
|
+
fields: readonly string[];
|
|
3205
|
+
})[];
|
|
3206
|
+
})[];
|
|
3207
|
+
} | {
|
|
3208
|
+
id: string;
|
|
3209
|
+
fields: readonly (string | {
|
|
3210
|
+
id: string;
|
|
3211
|
+
customtypes: readonly (string | {
|
|
3212
|
+
id: string;
|
|
3213
|
+
fields: readonly (string | {
|
|
3214
|
+
id: string;
|
|
3215
|
+
fields: readonly string[];
|
|
3216
|
+
})[];
|
|
3217
|
+
})[];
|
|
3218
|
+
})[];
|
|
2881
3219
|
})[];
|
|
2882
|
-
})
|
|
3220
|
+
})[], unknown>;
|
|
2883
3221
|
masks: t.Type<readonly string[], object, unknown>;
|
|
2884
3222
|
tags: t.Type<readonly string[], object, unknown>;
|
|
2885
3223
|
allowTargetBlank: t.BooleanC;
|
|
@@ -3045,29 +3383,55 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
3045
3383
|
useAsTitle: t.BooleanC;
|
|
3046
3384
|
placeholder: t.StringC;
|
|
3047
3385
|
select: t.UnionC<[t.LiteralC<"media">, t.LiteralC<"document">, t.LiteralC<"web">, t.NullC]>;
|
|
3048
|
-
customtypes: t.Type<readonly (string |
|
|
3386
|
+
customtypes: t.Type<readonly (string | {
|
|
3049
3387
|
id: string;
|
|
3050
|
-
|
|
3051
|
-
fields?: readonly (string | {
|
|
3388
|
+
fields: readonly (string | {
|
|
3052
3389
|
id: string;
|
|
3053
|
-
customtypes: readonly (string |
|
|
3390
|
+
customtypes: readonly (string | {
|
|
3054
3391
|
id: string;
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3392
|
+
fields: readonly (string | {
|
|
3393
|
+
id: string;
|
|
3394
|
+
fields: readonly string[];
|
|
3395
|
+
})[];
|
|
3396
|
+
})[];
|
|
3397
|
+
} | {
|
|
3398
|
+
id: string;
|
|
3399
|
+
fields: readonly (string | {
|
|
3400
|
+
id: string;
|
|
3401
|
+
customtypes: readonly (string | {
|
|
3402
|
+
id: string;
|
|
3403
|
+
fields: readonly (string | {
|
|
3404
|
+
id: string;
|
|
3405
|
+
fields: readonly string[];
|
|
3406
|
+
})[];
|
|
3407
|
+
})[];
|
|
3408
|
+
})[];
|
|
3058
3409
|
})[];
|
|
3059
|
-
})
|
|
3410
|
+
})[], readonly (string | {
|
|
3060
3411
|
id: string;
|
|
3061
|
-
|
|
3062
|
-
fields?: readonly (string | {
|
|
3412
|
+
fields: readonly (string | {
|
|
3063
3413
|
id: string;
|
|
3064
|
-
customtypes: readonly (string |
|
|
3414
|
+
customtypes: readonly (string | {
|
|
3065
3415
|
id: string;
|
|
3066
|
-
|
|
3067
|
-
|
|
3068
|
-
|
|
3416
|
+
fields: readonly (string | {
|
|
3417
|
+
id: string;
|
|
3418
|
+
fields: readonly string[];
|
|
3419
|
+
})[];
|
|
3420
|
+
})[];
|
|
3421
|
+
} | {
|
|
3422
|
+
id: string;
|
|
3423
|
+
fields: readonly (string | {
|
|
3424
|
+
id: string;
|
|
3425
|
+
customtypes: readonly (string | {
|
|
3426
|
+
id: string;
|
|
3427
|
+
fields: readonly (string | {
|
|
3428
|
+
id: string;
|
|
3429
|
+
fields: readonly string[];
|
|
3430
|
+
})[];
|
|
3431
|
+
})[];
|
|
3432
|
+
})[];
|
|
3069
3433
|
})[];
|
|
3070
|
-
})
|
|
3434
|
+
})[], unknown>;
|
|
3071
3435
|
masks: t.Type<readonly string[], object, unknown>;
|
|
3072
3436
|
tags: t.Type<readonly string[], object, unknown>;
|
|
3073
3437
|
allowTargetBlank: t.BooleanC;
|
|
@@ -3215,18 +3579,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3215
3579
|
useAsTitle?: boolean;
|
|
3216
3580
|
placeholder?: string;
|
|
3217
3581
|
select?: "media" | "document" | "web" | null;
|
|
3218
|
-
customtypes?: readonly (string |
|
|
3582
|
+
customtypes?: readonly (string | {
|
|
3219
3583
|
id: string;
|
|
3220
|
-
|
|
3221
|
-
fields?: readonly (string | {
|
|
3584
|
+
fields: readonly (string | {
|
|
3222
3585
|
id: string;
|
|
3223
|
-
customtypes: readonly (string |
|
|
3586
|
+
customtypes: readonly (string | {
|
|
3224
3587
|
id: string;
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3588
|
+
fields: readonly (string | {
|
|
3589
|
+
id: string;
|
|
3590
|
+
fields: readonly string[];
|
|
3591
|
+
})[];
|
|
3592
|
+
})[];
|
|
3593
|
+
} | {
|
|
3594
|
+
id: string;
|
|
3595
|
+
fields: readonly (string | {
|
|
3596
|
+
id: string;
|
|
3597
|
+
customtypes: readonly (string | {
|
|
3598
|
+
id: string;
|
|
3599
|
+
fields: readonly (string | {
|
|
3600
|
+
id: string;
|
|
3601
|
+
fields: readonly string[];
|
|
3602
|
+
})[];
|
|
3603
|
+
})[];
|
|
3604
|
+
})[];
|
|
3228
3605
|
})[];
|
|
3229
|
-
})
|
|
3606
|
+
})[];
|
|
3230
3607
|
masks?: readonly string[];
|
|
3231
3608
|
tags?: readonly string[];
|
|
3232
3609
|
allowTargetBlank?: boolean;
|
|
@@ -3401,18 +3778,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3401
3778
|
useAsTitle?: boolean;
|
|
3402
3779
|
placeholder?: string;
|
|
3403
3780
|
select?: "media" | "document" | "web" | null;
|
|
3404
|
-
customtypes?: readonly (string |
|
|
3781
|
+
customtypes?: readonly (string | {
|
|
3405
3782
|
id: string;
|
|
3406
|
-
|
|
3407
|
-
fields?: readonly (string | {
|
|
3783
|
+
fields: readonly (string | {
|
|
3408
3784
|
id: string;
|
|
3409
|
-
customtypes: readonly (string |
|
|
3785
|
+
customtypes: readonly (string | {
|
|
3410
3786
|
id: string;
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3787
|
+
fields: readonly (string | {
|
|
3788
|
+
id: string;
|
|
3789
|
+
fields: readonly string[];
|
|
3790
|
+
})[];
|
|
3791
|
+
})[];
|
|
3792
|
+
} | {
|
|
3793
|
+
id: string;
|
|
3794
|
+
fields: readonly (string | {
|
|
3795
|
+
id: string;
|
|
3796
|
+
customtypes: readonly (string | {
|
|
3797
|
+
id: string;
|
|
3798
|
+
fields: readonly (string | {
|
|
3799
|
+
id: string;
|
|
3800
|
+
fields: readonly string[];
|
|
3801
|
+
})[];
|
|
3802
|
+
})[];
|
|
3803
|
+
})[];
|
|
3414
3804
|
})[];
|
|
3415
|
-
})
|
|
3805
|
+
})[];
|
|
3416
3806
|
masks?: readonly string[];
|
|
3417
3807
|
tags?: readonly string[];
|
|
3418
3808
|
allowTargetBlank?: boolean;
|
|
@@ -3588,18 +3978,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3588
3978
|
useAsTitle?: boolean;
|
|
3589
3979
|
placeholder?: string;
|
|
3590
3980
|
select?: "media" | "document" | "web" | null;
|
|
3591
|
-
customtypes?: readonly (string |
|
|
3981
|
+
customtypes?: readonly (string | {
|
|
3592
3982
|
id: string;
|
|
3593
|
-
|
|
3594
|
-
fields?: readonly (string | {
|
|
3983
|
+
fields: readonly (string | {
|
|
3595
3984
|
id: string;
|
|
3596
|
-
customtypes: readonly (string |
|
|
3985
|
+
customtypes: readonly (string | {
|
|
3597
3986
|
id: string;
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3987
|
+
fields: readonly (string | {
|
|
3988
|
+
id: string;
|
|
3989
|
+
fields: readonly string[];
|
|
3990
|
+
})[];
|
|
3991
|
+
})[];
|
|
3992
|
+
} | {
|
|
3993
|
+
id: string;
|
|
3994
|
+
fields: readonly (string | {
|
|
3995
|
+
id: string;
|
|
3996
|
+
customtypes: readonly (string | {
|
|
3997
|
+
id: string;
|
|
3998
|
+
fields: readonly (string | {
|
|
3999
|
+
id: string;
|
|
4000
|
+
fields: readonly string[];
|
|
4001
|
+
})[];
|
|
4002
|
+
})[];
|
|
4003
|
+
})[];
|
|
3601
4004
|
})[];
|
|
3602
|
-
})
|
|
4005
|
+
})[];
|
|
3603
4006
|
masks?: readonly string[];
|
|
3604
4007
|
tags?: readonly string[];
|
|
3605
4008
|
allowTargetBlank?: boolean;
|
|
@@ -3767,18 +4170,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3767
4170
|
useAsTitle?: boolean;
|
|
3768
4171
|
placeholder?: string;
|
|
3769
4172
|
select?: "media" | "document" | "web" | null;
|
|
3770
|
-
customtypes?: readonly (string |
|
|
4173
|
+
customtypes?: readonly (string | {
|
|
3771
4174
|
id: string;
|
|
3772
|
-
|
|
3773
|
-
fields?: readonly (string | {
|
|
4175
|
+
fields: readonly (string | {
|
|
3774
4176
|
id: string;
|
|
3775
|
-
customtypes: readonly (string |
|
|
4177
|
+
customtypes: readonly (string | {
|
|
3776
4178
|
id: string;
|
|
3777
|
-
|
|
3778
|
-
|
|
3779
|
-
|
|
4179
|
+
fields: readonly (string | {
|
|
4180
|
+
id: string;
|
|
4181
|
+
fields: readonly string[];
|
|
4182
|
+
})[];
|
|
4183
|
+
})[];
|
|
4184
|
+
} | {
|
|
4185
|
+
id: string;
|
|
4186
|
+
fields: readonly (string | {
|
|
4187
|
+
id: string;
|
|
4188
|
+
customtypes: readonly (string | {
|
|
4189
|
+
id: string;
|
|
4190
|
+
fields: readonly (string | {
|
|
4191
|
+
id: string;
|
|
4192
|
+
fields: readonly string[];
|
|
4193
|
+
})[];
|
|
4194
|
+
})[];
|
|
4195
|
+
})[];
|
|
3780
4196
|
})[];
|
|
3781
|
-
})
|
|
4197
|
+
})[];
|
|
3782
4198
|
masks?: readonly string[];
|
|
3783
4199
|
tags?: readonly string[];
|
|
3784
4200
|
allowTargetBlank?: boolean;
|
|
@@ -3962,18 +4378,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3962
4378
|
useAsTitle?: boolean;
|
|
3963
4379
|
placeholder?: string;
|
|
3964
4380
|
select?: "media" | "document" | "web" | null;
|
|
3965
|
-
customtypes?: readonly (string |
|
|
4381
|
+
customtypes?: readonly (string | {
|
|
3966
4382
|
id: string;
|
|
3967
|
-
|
|
3968
|
-
fields?: readonly (string | {
|
|
4383
|
+
fields: readonly (string | {
|
|
3969
4384
|
id: string;
|
|
3970
|
-
customtypes: readonly (string |
|
|
4385
|
+
customtypes: readonly (string | {
|
|
3971
4386
|
id: string;
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
|
|
4387
|
+
fields: readonly (string | {
|
|
4388
|
+
id: string;
|
|
4389
|
+
fields: readonly string[];
|
|
4390
|
+
})[];
|
|
4391
|
+
})[];
|
|
4392
|
+
} | {
|
|
4393
|
+
id: string;
|
|
4394
|
+
fields: readonly (string | {
|
|
4395
|
+
id: string;
|
|
4396
|
+
customtypes: readonly (string | {
|
|
4397
|
+
id: string;
|
|
4398
|
+
fields: readonly (string | {
|
|
4399
|
+
id: string;
|
|
4400
|
+
fields: readonly string[];
|
|
4401
|
+
})[];
|
|
4402
|
+
})[];
|
|
4403
|
+
})[];
|
|
3975
4404
|
})[];
|
|
3976
|
-
})
|
|
4405
|
+
})[];
|
|
3977
4406
|
masks?: readonly string[];
|
|
3978
4407
|
tags?: readonly string[];
|
|
3979
4408
|
allowTargetBlank?: boolean;
|
|
@@ -4148,18 +4577,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
4148
4577
|
useAsTitle?: boolean;
|
|
4149
4578
|
placeholder?: string;
|
|
4150
4579
|
select?: "media" | "document" | "web" | null;
|
|
4151
|
-
customtypes?: readonly (string |
|
|
4580
|
+
customtypes?: readonly (string | {
|
|
4152
4581
|
id: string;
|
|
4153
|
-
|
|
4154
|
-
|
|
4582
|
+
fields: readonly (string | {
|
|
4583
|
+
id: string;
|
|
4584
|
+
customtypes: readonly (string | {
|
|
4585
|
+
id: string;
|
|
4586
|
+
fields: readonly (string | {
|
|
4587
|
+
id: string;
|
|
4588
|
+
fields: readonly string[];
|
|
4589
|
+
})[];
|
|
4590
|
+
})[];
|
|
4591
|
+
} | {
|
|
4155
4592
|
id: string;
|
|
4156
|
-
|
|
4593
|
+
fields: readonly (string | {
|
|
4157
4594
|
id: string;
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
|
|
4595
|
+
customtypes: readonly (string | {
|
|
4596
|
+
id: string;
|
|
4597
|
+
fields: readonly (string | {
|
|
4598
|
+
id: string;
|
|
4599
|
+
fields: readonly string[];
|
|
4600
|
+
})[];
|
|
4601
|
+
})[];
|
|
4602
|
+
})[];
|
|
4161
4603
|
})[];
|
|
4162
|
-
})
|
|
4604
|
+
})[];
|
|
4163
4605
|
masks?: readonly string[];
|
|
4164
4606
|
tags?: readonly string[];
|
|
4165
4607
|
allowTargetBlank?: boolean;
|
|
@@ -4334,18 +4776,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
4334
4776
|
useAsTitle?: boolean;
|
|
4335
4777
|
placeholder?: string;
|
|
4336
4778
|
select?: "media" | "document" | "web" | null;
|
|
4337
|
-
customtypes?: readonly (string |
|
|
4779
|
+
customtypes?: readonly (string | {
|
|
4338
4780
|
id: string;
|
|
4339
|
-
|
|
4340
|
-
fields?: readonly (string | {
|
|
4781
|
+
fields: readonly (string | {
|
|
4341
4782
|
id: string;
|
|
4342
|
-
customtypes: readonly (string |
|
|
4783
|
+
customtypes: readonly (string | {
|
|
4343
4784
|
id: string;
|
|
4344
|
-
|
|
4345
|
-
|
|
4346
|
-
|
|
4785
|
+
fields: readonly (string | {
|
|
4786
|
+
id: string;
|
|
4787
|
+
fields: readonly string[];
|
|
4788
|
+
})[];
|
|
4789
|
+
})[];
|
|
4790
|
+
} | {
|
|
4791
|
+
id: string;
|
|
4792
|
+
fields: readonly (string | {
|
|
4793
|
+
id: string;
|
|
4794
|
+
customtypes: readonly (string | {
|
|
4795
|
+
id: string;
|
|
4796
|
+
fields: readonly (string | {
|
|
4797
|
+
id: string;
|
|
4798
|
+
fields: readonly string[];
|
|
4799
|
+
})[];
|
|
4800
|
+
})[];
|
|
4801
|
+
})[];
|
|
4347
4802
|
})[];
|
|
4348
|
-
})
|
|
4803
|
+
})[];
|
|
4349
4804
|
masks?: readonly string[];
|
|
4350
4805
|
tags?: readonly string[];
|
|
4351
4806
|
allowTargetBlank?: boolean;
|
|
@@ -4519,18 +4974,31 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
4519
4974
|
useAsTitle?: boolean;
|
|
4520
4975
|
placeholder?: string;
|
|
4521
4976
|
select?: "media" | "document" | "web" | null;
|
|
4522
|
-
customtypes?: readonly (string |
|
|
4977
|
+
customtypes?: readonly (string | {
|
|
4523
4978
|
id: string;
|
|
4524
|
-
|
|
4525
|
-
fields?: readonly (string | {
|
|
4979
|
+
fields: readonly (string | {
|
|
4526
4980
|
id: string;
|
|
4527
|
-
customtypes: readonly (string |
|
|
4981
|
+
customtypes: readonly (string | {
|
|
4528
4982
|
id: string;
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4983
|
+
fields: readonly (string | {
|
|
4984
|
+
id: string;
|
|
4985
|
+
fields: readonly string[];
|
|
4986
|
+
})[];
|
|
4987
|
+
})[];
|
|
4988
|
+
} | {
|
|
4989
|
+
id: string;
|
|
4990
|
+
fields: readonly (string | {
|
|
4991
|
+
id: string;
|
|
4992
|
+
customtypes: readonly (string | {
|
|
4993
|
+
id: string;
|
|
4994
|
+
fields: readonly (string | {
|
|
4995
|
+
id: string;
|
|
4996
|
+
fields: readonly string[];
|
|
4997
|
+
})[];
|
|
4998
|
+
})[];
|
|
4999
|
+
})[];
|
|
4532
5000
|
})[];
|
|
4533
|
-
})
|
|
5001
|
+
})[];
|
|
4534
5002
|
masks?: readonly string[];
|
|
4535
5003
|
tags?: readonly string[];
|
|
4536
5004
|
allowTargetBlank?: boolean;
|
|
@@ -4725,18 +5193,31 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
4725
5193
|
useAsTitle?: boolean;
|
|
4726
5194
|
placeholder?: string;
|
|
4727
5195
|
select?: "media" | "document" | "web" | null;
|
|
4728
|
-
customtypes?: readonly (string |
|
|
5196
|
+
customtypes?: readonly (string | {
|
|
4729
5197
|
id: string;
|
|
4730
|
-
|
|
4731
|
-
fields?: readonly (string | {
|
|
5198
|
+
fields: readonly (string | {
|
|
4732
5199
|
id: string;
|
|
4733
|
-
customtypes: readonly (string |
|
|
5200
|
+
customtypes: readonly (string | {
|
|
4734
5201
|
id: string;
|
|
4735
|
-
|
|
4736
|
-
|
|
4737
|
-
|
|
5202
|
+
fields: readonly (string | {
|
|
5203
|
+
id: string;
|
|
5204
|
+
fields: readonly string[];
|
|
5205
|
+
})[];
|
|
5206
|
+
})[];
|
|
5207
|
+
} | {
|
|
5208
|
+
id: string;
|
|
5209
|
+
fields: readonly (string | {
|
|
5210
|
+
id: string;
|
|
5211
|
+
customtypes: readonly (string | {
|
|
5212
|
+
id: string;
|
|
5213
|
+
fields: readonly (string | {
|
|
5214
|
+
id: string;
|
|
5215
|
+
fields: readonly string[];
|
|
5216
|
+
})[];
|
|
5217
|
+
})[];
|
|
5218
|
+
})[];
|
|
4738
5219
|
})[];
|
|
4739
|
-
})
|
|
5220
|
+
})[];
|
|
4740
5221
|
masks?: readonly string[];
|
|
4741
5222
|
tags?: readonly string[];
|
|
4742
5223
|
allowTargetBlank?: boolean;
|
|
@@ -4911,18 +5392,31 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
4911
5392
|
useAsTitle?: boolean;
|
|
4912
5393
|
placeholder?: string;
|
|
4913
5394
|
select?: "media" | "document" | "web" | null;
|
|
4914
|
-
customtypes?: readonly (string |
|
|
5395
|
+
customtypes?: readonly (string | {
|
|
4915
5396
|
id: string;
|
|
4916
|
-
|
|
4917
|
-
fields?: readonly (string | {
|
|
5397
|
+
fields: readonly (string | {
|
|
4918
5398
|
id: string;
|
|
4919
|
-
customtypes: readonly (string |
|
|
5399
|
+
customtypes: readonly (string | {
|
|
4920
5400
|
id: string;
|
|
4921
|
-
|
|
4922
|
-
|
|
4923
|
-
|
|
5401
|
+
fields: readonly (string | {
|
|
5402
|
+
id: string;
|
|
5403
|
+
fields: readonly string[];
|
|
5404
|
+
})[];
|
|
5405
|
+
})[];
|
|
5406
|
+
} | {
|
|
5407
|
+
id: string;
|
|
5408
|
+
fields: readonly (string | {
|
|
5409
|
+
id: string;
|
|
5410
|
+
customtypes: readonly (string | {
|
|
5411
|
+
id: string;
|
|
5412
|
+
fields: readonly (string | {
|
|
5413
|
+
id: string;
|
|
5414
|
+
fields: readonly string[];
|
|
5415
|
+
})[];
|
|
5416
|
+
})[];
|
|
5417
|
+
})[];
|
|
4924
5418
|
})[];
|
|
4925
|
-
})
|
|
5419
|
+
})[];
|
|
4926
5420
|
masks?: readonly string[];
|
|
4927
5421
|
tags?: readonly string[];
|
|
4928
5422
|
allowTargetBlank?: boolean;
|
|
@@ -5098,18 +5592,31 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
5098
5592
|
useAsTitle?: boolean;
|
|
5099
5593
|
placeholder?: string;
|
|
5100
5594
|
select?: "media" | "document" | "web" | null;
|
|
5101
|
-
customtypes?: readonly (string |
|
|
5595
|
+
customtypes?: readonly (string | {
|
|
5102
5596
|
id: string;
|
|
5103
|
-
|
|
5104
|
-
fields?: readonly (string | {
|
|
5597
|
+
fields: readonly (string | {
|
|
5105
5598
|
id: string;
|
|
5106
|
-
customtypes: readonly (string |
|
|
5599
|
+
customtypes: readonly (string | {
|
|
5107
5600
|
id: string;
|
|
5108
|
-
|
|
5109
|
-
|
|
5110
|
-
|
|
5601
|
+
fields: readonly (string | {
|
|
5602
|
+
id: string;
|
|
5603
|
+
fields: readonly string[];
|
|
5604
|
+
})[];
|
|
5605
|
+
})[];
|
|
5606
|
+
} | {
|
|
5607
|
+
id: string;
|
|
5608
|
+
fields: readonly (string | {
|
|
5609
|
+
id: string;
|
|
5610
|
+
customtypes: readonly (string | {
|
|
5611
|
+
id: string;
|
|
5612
|
+
fields: readonly (string | {
|
|
5613
|
+
id: string;
|
|
5614
|
+
fields: readonly string[];
|
|
5615
|
+
})[];
|
|
5616
|
+
})[];
|
|
5617
|
+
})[];
|
|
5111
5618
|
})[];
|
|
5112
|
-
})
|
|
5619
|
+
})[];
|
|
5113
5620
|
masks?: readonly string[];
|
|
5114
5621
|
tags?: readonly string[];
|
|
5115
5622
|
allowTargetBlank?: boolean;
|
|
@@ -5277,18 +5784,31 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
5277
5784
|
useAsTitle?: boolean;
|
|
5278
5785
|
placeholder?: string;
|
|
5279
5786
|
select?: "media" | "document" | "web" | null;
|
|
5280
|
-
customtypes?: readonly (string |
|
|
5787
|
+
customtypes?: readonly (string | {
|
|
5281
5788
|
id: string;
|
|
5282
|
-
|
|
5283
|
-
fields?: readonly (string | {
|
|
5789
|
+
fields: readonly (string | {
|
|
5284
5790
|
id: string;
|
|
5285
|
-
customtypes: readonly (string |
|
|
5791
|
+
customtypes: readonly (string | {
|
|
5286
5792
|
id: string;
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
|
|
5793
|
+
fields: readonly (string | {
|
|
5794
|
+
id: string;
|
|
5795
|
+
fields: readonly string[];
|
|
5796
|
+
})[];
|
|
5797
|
+
})[];
|
|
5798
|
+
} | {
|
|
5799
|
+
id: string;
|
|
5800
|
+
fields: readonly (string | {
|
|
5801
|
+
id: string;
|
|
5802
|
+
customtypes: readonly (string | {
|
|
5803
|
+
id: string;
|
|
5804
|
+
fields: readonly (string | {
|
|
5805
|
+
id: string;
|
|
5806
|
+
fields: readonly string[];
|
|
5807
|
+
})[];
|
|
5808
|
+
})[];
|
|
5809
|
+
})[];
|
|
5290
5810
|
})[];
|
|
5291
|
-
})
|
|
5811
|
+
})[];
|
|
5292
5812
|
masks?: readonly string[];
|
|
5293
5813
|
tags?: readonly string[];
|
|
5294
5814
|
allowTargetBlank?: boolean;
|