@prismicio/types-internal 2.6.0 → 2.7.0-alpha.1
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.d.ts +409 -13
- package/lib/content/fields/WidgetContent.d.ts +408 -12
- package/lib/content/fields/nestable/LinkContent.d.ts +54 -8
- package/lib/content/fields/nestable/LinkContent.js +10 -1
- package/lib/content/fields/nestable/NestableContent.d.ts +68 -2
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +129 -6
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +60 -0
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +136 -4
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +32 -2
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +136 -4
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +68 -2
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +68 -2
- package/lib/content/fields/slices/Slice/index.d.ts +250 -10
- package/lib/content/fields/slices/SliceItem.d.ts +250 -10
- package/lib/content/fields/slices/SlicesContent.d.ts +340 -10
- package/lib/customtypes/CustomType.d.ts +342 -162
- package/lib/customtypes/Section.d.ts +342 -162
- package/lib/customtypes/diff/SharedSlice.d.ts +152 -72
- package/lib/customtypes/diff/Variation.d.ts +152 -72
- package/lib/customtypes/widgets/Group.d.ts +60 -0
- package/lib/customtypes/widgets/Widget.d.ts +318 -108
- package/lib/customtypes/widgets/nestable/Link.d.ts +20 -0
- package/lib/customtypes/widgets/nestable/Link.js +2 -0
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +10 -0
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +20 -0
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +20 -0
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +80 -0
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +87 -27
- package/lib/customtypes/widgets/slices/Slices.d.ts +424 -144
- package/package.json +1 -1
- package/src/content/fields/nestable/LinkContent.ts +12 -1
- package/src/customtypes/widgets/nestable/Link.ts +2 -0
- package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +0 -727
- package/lib/content/fields/nestable/RichTextContent/TextBlock.js +0 -80
- package/lib/customtypes/widgets/slices/SliceWidget.d.ts +0 -327
- package/lib/customtypes/widgets/slices/SliceWidget.js +0 -8
|
@@ -87,6 +87,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
87
87
|
placeholder?: string;
|
|
88
88
|
catalog?: string;
|
|
89
89
|
};
|
|
90
|
+
}) | ({
|
|
91
|
+
type: "Text";
|
|
92
|
+
} & {
|
|
93
|
+
fieldset?: string | null | undefined;
|
|
94
|
+
config?: {
|
|
95
|
+
label?: string | null | undefined;
|
|
96
|
+
useAsTitle?: boolean;
|
|
97
|
+
placeholder?: string;
|
|
98
|
+
};
|
|
90
99
|
}) | ({
|
|
91
100
|
type: "Link";
|
|
92
101
|
} & {
|
|
@@ -100,6 +109,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
100
109
|
masks?: readonly string[];
|
|
101
110
|
tags?: readonly string[];
|
|
102
111
|
allowTargetBlank?: boolean;
|
|
112
|
+
text?: {
|
|
113
|
+
type: "Text";
|
|
114
|
+
} & {
|
|
115
|
+
fieldset?: string | null | undefined;
|
|
116
|
+
config?: {
|
|
117
|
+
label?: string | null | undefined;
|
|
118
|
+
useAsTitle?: boolean;
|
|
119
|
+
placeholder?: string;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
103
122
|
};
|
|
104
123
|
}) | ({
|
|
105
124
|
type: "Number";
|
|
@@ -156,15 +175,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
156
175
|
config?: {
|
|
157
176
|
label?: string | null | undefined;
|
|
158
177
|
};
|
|
159
|
-
}) | ({
|
|
160
|
-
type: "Text";
|
|
161
|
-
} & {
|
|
162
|
-
fieldset?: string | null | undefined;
|
|
163
|
-
config?: {
|
|
164
|
-
label?: string | null | undefined;
|
|
165
|
-
useAsTitle?: boolean;
|
|
166
|
-
placeholder?: string;
|
|
167
|
-
};
|
|
168
178
|
}) | ({
|
|
169
179
|
type: "Timestamp";
|
|
170
180
|
} & {
|
|
@@ -253,6 +263,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
253
263
|
placeholder?: string;
|
|
254
264
|
catalog?: string;
|
|
255
265
|
};
|
|
266
|
+
}) | ({
|
|
267
|
+
type: "Text";
|
|
268
|
+
} & {
|
|
269
|
+
fieldset?: string | null | undefined;
|
|
270
|
+
config?: {
|
|
271
|
+
label?: string | null | undefined;
|
|
272
|
+
useAsTitle?: boolean;
|
|
273
|
+
placeholder?: string;
|
|
274
|
+
};
|
|
256
275
|
}) | ({
|
|
257
276
|
type: "Link";
|
|
258
277
|
} & {
|
|
@@ -266,6 +285,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
266
285
|
masks?: readonly string[];
|
|
267
286
|
tags?: readonly string[];
|
|
268
287
|
allowTargetBlank?: boolean;
|
|
288
|
+
text?: {
|
|
289
|
+
type: "Text";
|
|
290
|
+
} & {
|
|
291
|
+
fieldset?: string | null | undefined;
|
|
292
|
+
config?: {
|
|
293
|
+
label?: string | null | undefined;
|
|
294
|
+
useAsTitle?: boolean;
|
|
295
|
+
placeholder?: string;
|
|
296
|
+
};
|
|
297
|
+
};
|
|
269
298
|
};
|
|
270
299
|
}) | ({
|
|
271
300
|
type: "Number";
|
|
@@ -322,15 +351,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
322
351
|
config?: {
|
|
323
352
|
label?: string | null | undefined;
|
|
324
353
|
};
|
|
325
|
-
}) | ({
|
|
326
|
-
type: "Text";
|
|
327
|
-
} & {
|
|
328
|
-
fieldset?: string | null | undefined;
|
|
329
|
-
config?: {
|
|
330
|
-
label?: string | null | undefined;
|
|
331
|
-
useAsTitle?: boolean;
|
|
332
|
-
placeholder?: string;
|
|
333
|
-
};
|
|
334
354
|
}) | ({
|
|
335
355
|
type: "Timestamp";
|
|
336
356
|
} & {
|
|
@@ -419,6 +439,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
419
439
|
placeholder?: string;
|
|
420
440
|
catalog?: string;
|
|
421
441
|
};
|
|
442
|
+
}) | ({
|
|
443
|
+
type: "Text";
|
|
444
|
+
} & {
|
|
445
|
+
fieldset?: string | null | undefined;
|
|
446
|
+
config?: {
|
|
447
|
+
label?: string | null | undefined;
|
|
448
|
+
useAsTitle?: boolean;
|
|
449
|
+
placeholder?: string;
|
|
450
|
+
};
|
|
422
451
|
}) | ({
|
|
423
452
|
type: "Link";
|
|
424
453
|
} & {
|
|
@@ -432,6 +461,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
432
461
|
masks?: readonly string[];
|
|
433
462
|
tags?: readonly string[];
|
|
434
463
|
allowTargetBlank?: boolean;
|
|
464
|
+
text?: {
|
|
465
|
+
type: "Text";
|
|
466
|
+
} & {
|
|
467
|
+
fieldset?: string | null | undefined;
|
|
468
|
+
config?: {
|
|
469
|
+
label?: string | null | undefined;
|
|
470
|
+
useAsTitle?: boolean;
|
|
471
|
+
placeholder?: string;
|
|
472
|
+
};
|
|
473
|
+
};
|
|
435
474
|
};
|
|
436
475
|
}) | ({
|
|
437
476
|
type: "Number";
|
|
@@ -488,15 +527,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
488
527
|
config?: {
|
|
489
528
|
label?: string | null | undefined;
|
|
490
529
|
};
|
|
491
|
-
}) | ({
|
|
492
|
-
type: "Text";
|
|
493
|
-
} & {
|
|
494
|
-
fieldset?: string | null | undefined;
|
|
495
|
-
config?: {
|
|
496
|
-
label?: string | null | undefined;
|
|
497
|
-
useAsTitle?: boolean;
|
|
498
|
-
placeholder?: string;
|
|
499
|
-
};
|
|
500
530
|
}) | ({
|
|
501
531
|
type: "Timestamp";
|
|
502
532
|
} & {
|
|
@@ -595,6 +625,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
595
625
|
placeholder?: string;
|
|
596
626
|
catalog?: string;
|
|
597
627
|
};
|
|
628
|
+
}) | ({
|
|
629
|
+
type: "Text";
|
|
630
|
+
} & {
|
|
631
|
+
fieldset?: string | null | undefined;
|
|
632
|
+
config?: {
|
|
633
|
+
label?: string | null | undefined;
|
|
634
|
+
useAsTitle?: boolean;
|
|
635
|
+
placeholder?: string;
|
|
636
|
+
};
|
|
598
637
|
}) | ({
|
|
599
638
|
type: "Link";
|
|
600
639
|
} & {
|
|
@@ -608,6 +647,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
608
647
|
masks?: readonly string[];
|
|
609
648
|
tags?: readonly string[];
|
|
610
649
|
allowTargetBlank?: boolean;
|
|
650
|
+
text?: {
|
|
651
|
+
type: "Text";
|
|
652
|
+
} & {
|
|
653
|
+
fieldset?: string | null | undefined;
|
|
654
|
+
config?: {
|
|
655
|
+
label?: string | null | undefined;
|
|
656
|
+
useAsTitle?: boolean;
|
|
657
|
+
placeholder?: string;
|
|
658
|
+
};
|
|
659
|
+
};
|
|
611
660
|
};
|
|
612
661
|
}) | ({
|
|
613
662
|
type: "Number";
|
|
@@ -664,15 +713,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
664
713
|
config?: {
|
|
665
714
|
label?: string | null | undefined;
|
|
666
715
|
};
|
|
667
|
-
}) | ({
|
|
668
|
-
type: "Text";
|
|
669
|
-
} & {
|
|
670
|
-
fieldset?: string | null | undefined;
|
|
671
|
-
config?: {
|
|
672
|
-
label?: string | null | undefined;
|
|
673
|
-
useAsTitle?: boolean;
|
|
674
|
-
placeholder?: string;
|
|
675
|
-
};
|
|
676
716
|
}) | ({
|
|
677
717
|
type: "Timestamp";
|
|
678
718
|
} & {
|
|
@@ -761,6 +801,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
761
801
|
placeholder?: string;
|
|
762
802
|
catalog?: string;
|
|
763
803
|
};
|
|
804
|
+
}) | ({
|
|
805
|
+
type: "Text";
|
|
806
|
+
} & {
|
|
807
|
+
fieldset?: string | null | undefined;
|
|
808
|
+
config?: {
|
|
809
|
+
label?: string | null | undefined;
|
|
810
|
+
useAsTitle?: boolean;
|
|
811
|
+
placeholder?: string;
|
|
812
|
+
};
|
|
764
813
|
}) | ({
|
|
765
814
|
type: "Link";
|
|
766
815
|
} & {
|
|
@@ -774,6 +823,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
774
823
|
masks?: readonly string[];
|
|
775
824
|
tags?: readonly string[];
|
|
776
825
|
allowTargetBlank?: boolean;
|
|
826
|
+
text?: {
|
|
827
|
+
type: "Text";
|
|
828
|
+
} & {
|
|
829
|
+
fieldset?: string | null | undefined;
|
|
830
|
+
config?: {
|
|
831
|
+
label?: string | null | undefined;
|
|
832
|
+
useAsTitle?: boolean;
|
|
833
|
+
placeholder?: string;
|
|
834
|
+
};
|
|
835
|
+
};
|
|
777
836
|
};
|
|
778
837
|
}) | ({
|
|
779
838
|
type: "Number";
|
|
@@ -830,15 +889,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
830
889
|
config?: {
|
|
831
890
|
label?: string | null | undefined;
|
|
832
891
|
};
|
|
833
|
-
}) | ({
|
|
834
|
-
type: "Text";
|
|
835
|
-
} & {
|
|
836
|
-
fieldset?: string | null | undefined;
|
|
837
|
-
config?: {
|
|
838
|
-
label?: string | null | undefined;
|
|
839
|
-
useAsTitle?: boolean;
|
|
840
|
-
placeholder?: string;
|
|
841
|
-
};
|
|
842
892
|
}) | ({
|
|
843
893
|
type: "Timestamp";
|
|
844
894
|
} & {
|
|
@@ -928,6 +978,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
928
978
|
placeholder?: string;
|
|
929
979
|
catalog?: string;
|
|
930
980
|
};
|
|
981
|
+
}) | ({
|
|
982
|
+
type: "Text";
|
|
983
|
+
} & {
|
|
984
|
+
fieldset?: string | null | undefined;
|
|
985
|
+
config?: {
|
|
986
|
+
label?: string | null | undefined;
|
|
987
|
+
useAsTitle?: boolean;
|
|
988
|
+
placeholder?: string;
|
|
989
|
+
};
|
|
931
990
|
}) | ({
|
|
932
991
|
type: "Link";
|
|
933
992
|
} & {
|
|
@@ -941,6 +1000,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
941
1000
|
masks?: readonly string[];
|
|
942
1001
|
tags?: readonly string[];
|
|
943
1002
|
allowTargetBlank?: boolean;
|
|
1003
|
+
text?: {
|
|
1004
|
+
type: "Text";
|
|
1005
|
+
} & {
|
|
1006
|
+
fieldset?: string | null | undefined;
|
|
1007
|
+
config?: {
|
|
1008
|
+
label?: string | null | undefined;
|
|
1009
|
+
useAsTitle?: boolean;
|
|
1010
|
+
placeholder?: string;
|
|
1011
|
+
};
|
|
1012
|
+
};
|
|
944
1013
|
};
|
|
945
1014
|
}) | ({
|
|
946
1015
|
type: "Number";
|
|
@@ -997,15 +1066,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
997
1066
|
config?: {
|
|
998
1067
|
label?: string | null | undefined;
|
|
999
1068
|
};
|
|
1000
|
-
}) | ({
|
|
1001
|
-
type: "Text";
|
|
1002
|
-
} & {
|
|
1003
|
-
fieldset?: string | null | undefined;
|
|
1004
|
-
config?: {
|
|
1005
|
-
label?: string | null | undefined;
|
|
1006
|
-
useAsTitle?: boolean;
|
|
1007
|
-
placeholder?: string;
|
|
1008
|
-
};
|
|
1009
1069
|
}) | ({
|
|
1010
1070
|
type: "Timestamp";
|
|
1011
1071
|
} & {
|
|
@@ -1087,6 +1147,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1087
1147
|
placeholder?: string;
|
|
1088
1148
|
catalog?: string;
|
|
1089
1149
|
};
|
|
1150
|
+
}) | ({
|
|
1151
|
+
type: "Text";
|
|
1152
|
+
} & {
|
|
1153
|
+
fieldset?: string | null | undefined;
|
|
1154
|
+
config?: {
|
|
1155
|
+
label?: string | null | undefined;
|
|
1156
|
+
useAsTitle?: boolean;
|
|
1157
|
+
placeholder?: string;
|
|
1158
|
+
};
|
|
1090
1159
|
}) | ({
|
|
1091
1160
|
type: "Link";
|
|
1092
1161
|
} & {
|
|
@@ -1100,6 +1169,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1100
1169
|
masks?: readonly string[];
|
|
1101
1170
|
tags?: readonly string[];
|
|
1102
1171
|
allowTargetBlank?: boolean;
|
|
1172
|
+
text?: {
|
|
1173
|
+
type: "Text";
|
|
1174
|
+
} & {
|
|
1175
|
+
fieldset?: string | null | undefined;
|
|
1176
|
+
config?: {
|
|
1177
|
+
label?: string | null | undefined;
|
|
1178
|
+
useAsTitle?: boolean;
|
|
1179
|
+
placeholder?: string;
|
|
1180
|
+
};
|
|
1181
|
+
};
|
|
1103
1182
|
};
|
|
1104
1183
|
}) | ({
|
|
1105
1184
|
type: "Number";
|
|
@@ -1156,15 +1235,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1156
1235
|
config?: {
|
|
1157
1236
|
label?: string | null | undefined;
|
|
1158
1237
|
};
|
|
1159
|
-
}) | ({
|
|
1160
|
-
type: "Text";
|
|
1161
|
-
} & {
|
|
1162
|
-
fieldset?: string | null | undefined;
|
|
1163
|
-
config?: {
|
|
1164
|
-
label?: string | null | undefined;
|
|
1165
|
-
useAsTitle?: boolean;
|
|
1166
|
-
placeholder?: string;
|
|
1167
|
-
};
|
|
1168
1238
|
}) | ({
|
|
1169
1239
|
type: "Timestamp";
|
|
1170
1240
|
} & {
|
|
@@ -1262,6 +1332,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1262
1332
|
placeholder?: string;
|
|
1263
1333
|
catalog?: string;
|
|
1264
1334
|
};
|
|
1335
|
+
}) | ({
|
|
1336
|
+
type: "Text";
|
|
1337
|
+
} & {
|
|
1338
|
+
fieldset?: string | null | undefined;
|
|
1339
|
+
config?: {
|
|
1340
|
+
label?: string | null | undefined;
|
|
1341
|
+
useAsTitle?: boolean;
|
|
1342
|
+
placeholder?: string;
|
|
1343
|
+
};
|
|
1265
1344
|
}) | ({
|
|
1266
1345
|
type: "Link";
|
|
1267
1346
|
} & {
|
|
@@ -1275,6 +1354,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1275
1354
|
masks?: readonly string[];
|
|
1276
1355
|
tags?: readonly string[];
|
|
1277
1356
|
allowTargetBlank?: boolean;
|
|
1357
|
+
text?: {
|
|
1358
|
+
type: "Text";
|
|
1359
|
+
} & {
|
|
1360
|
+
fieldset?: string | null | undefined;
|
|
1361
|
+
config?: {
|
|
1362
|
+
label?: string | null | undefined;
|
|
1363
|
+
useAsTitle?: boolean;
|
|
1364
|
+
placeholder?: string;
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1278
1367
|
};
|
|
1279
1368
|
}) | ({
|
|
1280
1369
|
type: "Number";
|
|
@@ -1331,15 +1420,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1331
1420
|
config?: {
|
|
1332
1421
|
label?: string | null | undefined;
|
|
1333
1422
|
};
|
|
1334
|
-
}) | ({
|
|
1335
|
-
type: "Text";
|
|
1336
|
-
} & {
|
|
1337
|
-
fieldset?: string | null | undefined;
|
|
1338
|
-
config?: {
|
|
1339
|
-
label?: string | null | undefined;
|
|
1340
|
-
useAsTitle?: boolean;
|
|
1341
|
-
placeholder?: string;
|
|
1342
|
-
};
|
|
1343
1423
|
}) | ({
|
|
1344
1424
|
type: "Timestamp";
|
|
1345
1425
|
} & {
|
|
@@ -1428,6 +1508,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1428
1508
|
placeholder?: string;
|
|
1429
1509
|
catalog?: string;
|
|
1430
1510
|
};
|
|
1511
|
+
}) | ({
|
|
1512
|
+
type: "Text";
|
|
1513
|
+
} & {
|
|
1514
|
+
fieldset?: string | null | undefined;
|
|
1515
|
+
config?: {
|
|
1516
|
+
label?: string | null | undefined;
|
|
1517
|
+
useAsTitle?: boolean;
|
|
1518
|
+
placeholder?: string;
|
|
1519
|
+
};
|
|
1431
1520
|
}) | ({
|
|
1432
1521
|
type: "Link";
|
|
1433
1522
|
} & {
|
|
@@ -1441,6 +1530,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1441
1530
|
masks?: readonly string[];
|
|
1442
1531
|
tags?: readonly string[];
|
|
1443
1532
|
allowTargetBlank?: boolean;
|
|
1533
|
+
text?: {
|
|
1534
|
+
type: "Text";
|
|
1535
|
+
} & {
|
|
1536
|
+
fieldset?: string | null | undefined;
|
|
1537
|
+
config?: {
|
|
1538
|
+
label?: string | null | undefined;
|
|
1539
|
+
useAsTitle?: boolean;
|
|
1540
|
+
placeholder?: string;
|
|
1541
|
+
};
|
|
1542
|
+
};
|
|
1444
1543
|
};
|
|
1445
1544
|
}) | ({
|
|
1446
1545
|
type: "Number";
|
|
@@ -1497,15 +1596,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1497
1596
|
config?: {
|
|
1498
1597
|
label?: string | null | undefined;
|
|
1499
1598
|
};
|
|
1500
|
-
}) | ({
|
|
1501
|
-
type: "Text";
|
|
1502
|
-
} & {
|
|
1503
|
-
fieldset?: string | null | undefined;
|
|
1504
|
-
config?: {
|
|
1505
|
-
label?: string | null | undefined;
|
|
1506
|
-
useAsTitle?: boolean;
|
|
1507
|
-
placeholder?: string;
|
|
1508
|
-
};
|
|
1509
1599
|
}) | ({
|
|
1510
1600
|
type: "Timestamp";
|
|
1511
1601
|
} & {
|
|
@@ -1594,6 +1684,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1594
1684
|
placeholder?: string;
|
|
1595
1685
|
catalog?: string;
|
|
1596
1686
|
};
|
|
1687
|
+
}) | ({
|
|
1688
|
+
type: "Text";
|
|
1689
|
+
} & {
|
|
1690
|
+
fieldset?: string | null | undefined;
|
|
1691
|
+
config?: {
|
|
1692
|
+
label?: string | null | undefined;
|
|
1693
|
+
useAsTitle?: boolean;
|
|
1694
|
+
placeholder?: string;
|
|
1695
|
+
};
|
|
1597
1696
|
}) | ({
|
|
1598
1697
|
type: "Link";
|
|
1599
1698
|
} & {
|
|
@@ -1607,6 +1706,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1607
1706
|
masks?: readonly string[];
|
|
1608
1707
|
tags?: readonly string[];
|
|
1609
1708
|
allowTargetBlank?: boolean;
|
|
1709
|
+
text?: {
|
|
1710
|
+
type: "Text";
|
|
1711
|
+
} & {
|
|
1712
|
+
fieldset?: string | null | undefined;
|
|
1713
|
+
config?: {
|
|
1714
|
+
label?: string | null | undefined;
|
|
1715
|
+
useAsTitle?: boolean;
|
|
1716
|
+
placeholder?: string;
|
|
1717
|
+
};
|
|
1718
|
+
};
|
|
1610
1719
|
};
|
|
1611
1720
|
}) | ({
|
|
1612
1721
|
type: "Number";
|
|
@@ -1663,15 +1772,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1663
1772
|
config?: {
|
|
1664
1773
|
label?: string | null | undefined;
|
|
1665
1774
|
};
|
|
1666
|
-
}) | ({
|
|
1667
|
-
type: "Text";
|
|
1668
|
-
} & {
|
|
1669
|
-
fieldset?: string | null | undefined;
|
|
1670
|
-
config?: {
|
|
1671
|
-
label?: string | null | undefined;
|
|
1672
|
-
useAsTitle?: boolean;
|
|
1673
|
-
placeholder?: string;
|
|
1674
|
-
};
|
|
1675
1775
|
}) | ({
|
|
1676
1776
|
type: "Timestamp";
|
|
1677
1777
|
} & {
|
|
@@ -1759,6 +1859,15 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1759
1859
|
placeholder?: string;
|
|
1760
1860
|
catalog?: string;
|
|
1761
1861
|
};
|
|
1862
|
+
}) | ({
|
|
1863
|
+
type: "Text";
|
|
1864
|
+
} & {
|
|
1865
|
+
fieldset?: string | null | undefined;
|
|
1866
|
+
config?: {
|
|
1867
|
+
label?: string | null | undefined;
|
|
1868
|
+
useAsTitle?: boolean;
|
|
1869
|
+
placeholder?: string;
|
|
1870
|
+
};
|
|
1762
1871
|
}) | ({
|
|
1763
1872
|
type: "Link";
|
|
1764
1873
|
} & {
|
|
@@ -1772,6 +1881,16 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1772
1881
|
masks?: readonly string[];
|
|
1773
1882
|
tags?: readonly string[];
|
|
1774
1883
|
allowTargetBlank?: boolean;
|
|
1884
|
+
text?: {
|
|
1885
|
+
type: "Text";
|
|
1886
|
+
} & {
|
|
1887
|
+
fieldset?: string | null | undefined;
|
|
1888
|
+
config?: {
|
|
1889
|
+
label?: string | null | undefined;
|
|
1890
|
+
useAsTitle?: boolean;
|
|
1891
|
+
placeholder?: string;
|
|
1892
|
+
};
|
|
1893
|
+
};
|
|
1775
1894
|
};
|
|
1776
1895
|
}) | ({
|
|
1777
1896
|
type: "Number";
|
|
@@ -1828,15 +1947,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1828
1947
|
config?: {
|
|
1829
1948
|
label?: string | null | undefined;
|
|
1830
1949
|
};
|
|
1831
|
-
}) | ({
|
|
1832
|
-
type: "Text";
|
|
1833
|
-
} & {
|
|
1834
|
-
fieldset?: string | null | undefined;
|
|
1835
|
-
config?: {
|
|
1836
|
-
label?: string | null | undefined;
|
|
1837
|
-
useAsTitle?: boolean;
|
|
1838
|
-
placeholder?: string;
|
|
1839
|
-
};
|
|
1840
1950
|
}) | ({
|
|
1841
1951
|
type: "Timestamp";
|
|
1842
1952
|
} & {
|
|
@@ -1951,6 +2061,15 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1951
2061
|
placeholder?: string;
|
|
1952
2062
|
catalog?: string;
|
|
1953
2063
|
};
|
|
2064
|
+
}) | ({
|
|
2065
|
+
type: "Text";
|
|
2066
|
+
} & {
|
|
2067
|
+
fieldset?: string | null | undefined;
|
|
2068
|
+
config?: {
|
|
2069
|
+
label?: string | null | undefined;
|
|
2070
|
+
useAsTitle?: boolean;
|
|
2071
|
+
placeholder?: string;
|
|
2072
|
+
};
|
|
1954
2073
|
}) | ({
|
|
1955
2074
|
type: "Link";
|
|
1956
2075
|
} & {
|
|
@@ -1964,6 +2083,16 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1964
2083
|
masks?: readonly string[];
|
|
1965
2084
|
tags?: readonly string[];
|
|
1966
2085
|
allowTargetBlank?: boolean;
|
|
2086
|
+
text?: {
|
|
2087
|
+
type: "Text";
|
|
2088
|
+
} & {
|
|
2089
|
+
fieldset?: string | null | undefined;
|
|
2090
|
+
config?: {
|
|
2091
|
+
label?: string | null | undefined;
|
|
2092
|
+
useAsTitle?: boolean;
|
|
2093
|
+
placeholder?: string;
|
|
2094
|
+
};
|
|
2095
|
+
};
|
|
1967
2096
|
};
|
|
1968
2097
|
}) | ({
|
|
1969
2098
|
type: "Number";
|
|
@@ -2020,15 +2149,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2020
2149
|
config?: {
|
|
2021
2150
|
label?: string | null | undefined;
|
|
2022
2151
|
};
|
|
2023
|
-
}) | ({
|
|
2024
|
-
type: "Text";
|
|
2025
|
-
} & {
|
|
2026
|
-
fieldset?: string | null | undefined;
|
|
2027
|
-
config?: {
|
|
2028
|
-
label?: string | null | undefined;
|
|
2029
|
-
useAsTitle?: boolean;
|
|
2030
|
-
placeholder?: string;
|
|
2031
|
-
};
|
|
2032
2152
|
}) | ({
|
|
2033
2153
|
type: "Timestamp";
|
|
2034
2154
|
} & {
|
|
@@ -2117,6 +2237,15 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2117
2237
|
placeholder?: string;
|
|
2118
2238
|
catalog?: string;
|
|
2119
2239
|
};
|
|
2240
|
+
}) | ({
|
|
2241
|
+
type: "Text";
|
|
2242
|
+
} & {
|
|
2243
|
+
fieldset?: string | null | undefined;
|
|
2244
|
+
config?: {
|
|
2245
|
+
label?: string | null | undefined;
|
|
2246
|
+
useAsTitle?: boolean;
|
|
2247
|
+
placeholder?: string;
|
|
2248
|
+
};
|
|
2120
2249
|
}) | ({
|
|
2121
2250
|
type: "Link";
|
|
2122
2251
|
} & {
|
|
@@ -2130,6 +2259,16 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2130
2259
|
masks?: readonly string[];
|
|
2131
2260
|
tags?: readonly string[];
|
|
2132
2261
|
allowTargetBlank?: boolean;
|
|
2262
|
+
text?: {
|
|
2263
|
+
type: "Text";
|
|
2264
|
+
} & {
|
|
2265
|
+
fieldset?: string | null | undefined;
|
|
2266
|
+
config?: {
|
|
2267
|
+
label?: string | null | undefined;
|
|
2268
|
+
useAsTitle?: boolean;
|
|
2269
|
+
placeholder?: string;
|
|
2270
|
+
};
|
|
2271
|
+
};
|
|
2133
2272
|
};
|
|
2134
2273
|
}) | ({
|
|
2135
2274
|
type: "Number";
|
|
@@ -2186,15 +2325,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2186
2325
|
config?: {
|
|
2187
2326
|
label?: string | null | undefined;
|
|
2188
2327
|
};
|
|
2189
|
-
}) | ({
|
|
2190
|
-
type: "Text";
|
|
2191
|
-
} & {
|
|
2192
|
-
fieldset?: string | null | undefined;
|
|
2193
|
-
config?: {
|
|
2194
|
-
label?: string | null | undefined;
|
|
2195
|
-
useAsTitle?: boolean;
|
|
2196
|
-
placeholder?: string;
|
|
2197
|
-
};
|
|
2198
2328
|
}) | ({
|
|
2199
2329
|
type: "Timestamp";
|
|
2200
2330
|
} & {
|
|
@@ -2283,6 +2413,15 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2283
2413
|
placeholder?: string;
|
|
2284
2414
|
catalog?: string;
|
|
2285
2415
|
};
|
|
2416
|
+
}) | ({
|
|
2417
|
+
type: "Text";
|
|
2418
|
+
} & {
|
|
2419
|
+
fieldset?: string | null | undefined;
|
|
2420
|
+
config?: {
|
|
2421
|
+
label?: string | null | undefined;
|
|
2422
|
+
useAsTitle?: boolean;
|
|
2423
|
+
placeholder?: string;
|
|
2424
|
+
};
|
|
2286
2425
|
}) | ({
|
|
2287
2426
|
type: "Link";
|
|
2288
2427
|
} & {
|
|
@@ -2296,6 +2435,16 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2296
2435
|
masks?: readonly string[];
|
|
2297
2436
|
tags?: readonly string[];
|
|
2298
2437
|
allowTargetBlank?: boolean;
|
|
2438
|
+
text?: {
|
|
2439
|
+
type: "Text";
|
|
2440
|
+
} & {
|
|
2441
|
+
fieldset?: string | null | undefined;
|
|
2442
|
+
config?: {
|
|
2443
|
+
label?: string | null | undefined;
|
|
2444
|
+
useAsTitle?: boolean;
|
|
2445
|
+
placeholder?: string;
|
|
2446
|
+
};
|
|
2447
|
+
};
|
|
2299
2448
|
};
|
|
2300
2449
|
}) | ({
|
|
2301
2450
|
type: "Number";
|
|
@@ -2352,15 +2501,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2352
2501
|
config?: {
|
|
2353
2502
|
label?: string | null | undefined;
|
|
2354
2503
|
};
|
|
2355
|
-
}) | ({
|
|
2356
|
-
type: "Text";
|
|
2357
|
-
} & {
|
|
2358
|
-
fieldset?: string | null | undefined;
|
|
2359
|
-
config?: {
|
|
2360
|
-
label?: string | null | undefined;
|
|
2361
|
-
useAsTitle?: boolean;
|
|
2362
|
-
placeholder?: string;
|
|
2363
|
-
};
|
|
2364
2504
|
}) | ({
|
|
2365
2505
|
type: "Timestamp";
|
|
2366
2506
|
} & {
|
|
@@ -2459,6 +2599,15 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2459
2599
|
placeholder?: string;
|
|
2460
2600
|
catalog?: string;
|
|
2461
2601
|
};
|
|
2602
|
+
}) | ({
|
|
2603
|
+
type: "Text";
|
|
2604
|
+
} & {
|
|
2605
|
+
fieldset?: string | null | undefined;
|
|
2606
|
+
config?: {
|
|
2607
|
+
label?: string | null | undefined;
|
|
2608
|
+
useAsTitle?: boolean;
|
|
2609
|
+
placeholder?: string;
|
|
2610
|
+
};
|
|
2462
2611
|
}) | ({
|
|
2463
2612
|
type: "Link";
|
|
2464
2613
|
} & {
|
|
@@ -2472,6 +2621,16 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2472
2621
|
masks?: readonly string[];
|
|
2473
2622
|
tags?: readonly string[];
|
|
2474
2623
|
allowTargetBlank?: boolean;
|
|
2624
|
+
text?: {
|
|
2625
|
+
type: "Text";
|
|
2626
|
+
} & {
|
|
2627
|
+
fieldset?: string | null | undefined;
|
|
2628
|
+
config?: {
|
|
2629
|
+
label?: string | null | undefined;
|
|
2630
|
+
useAsTitle?: boolean;
|
|
2631
|
+
placeholder?: string;
|
|
2632
|
+
};
|
|
2633
|
+
};
|
|
2475
2634
|
};
|
|
2476
2635
|
}) | ({
|
|
2477
2636
|
type: "Number";
|
|
@@ -2528,15 +2687,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2528
2687
|
config?: {
|
|
2529
2688
|
label?: string | null | undefined;
|
|
2530
2689
|
};
|
|
2531
|
-
}) | ({
|
|
2532
|
-
type: "Text";
|
|
2533
|
-
} & {
|
|
2534
|
-
fieldset?: string | null | undefined;
|
|
2535
|
-
config?: {
|
|
2536
|
-
label?: string | null | undefined;
|
|
2537
|
-
useAsTitle?: boolean;
|
|
2538
|
-
placeholder?: string;
|
|
2539
|
-
};
|
|
2540
2690
|
}) | ({
|
|
2541
2691
|
type: "Timestamp";
|
|
2542
2692
|
} & {
|
|
@@ -2625,6 +2775,15 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2625
2775
|
placeholder?: string;
|
|
2626
2776
|
catalog?: string;
|
|
2627
2777
|
};
|
|
2778
|
+
}) | ({
|
|
2779
|
+
type: "Text";
|
|
2780
|
+
} & {
|
|
2781
|
+
fieldset?: string | null | undefined;
|
|
2782
|
+
config?: {
|
|
2783
|
+
label?: string | null | undefined;
|
|
2784
|
+
useAsTitle?: boolean;
|
|
2785
|
+
placeholder?: string;
|
|
2786
|
+
};
|
|
2628
2787
|
}) | ({
|
|
2629
2788
|
type: "Link";
|
|
2630
2789
|
} & {
|
|
@@ -2638,6 +2797,16 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2638
2797
|
masks?: readonly string[];
|
|
2639
2798
|
tags?: readonly string[];
|
|
2640
2799
|
allowTargetBlank?: boolean;
|
|
2800
|
+
text?: {
|
|
2801
|
+
type: "Text";
|
|
2802
|
+
} & {
|
|
2803
|
+
fieldset?: string | null | undefined;
|
|
2804
|
+
config?: {
|
|
2805
|
+
label?: string | null | undefined;
|
|
2806
|
+
useAsTitle?: boolean;
|
|
2807
|
+
placeholder?: string;
|
|
2808
|
+
};
|
|
2809
|
+
};
|
|
2641
2810
|
};
|
|
2642
2811
|
}) | ({
|
|
2643
2812
|
type: "Number";
|
|
@@ -2694,15 +2863,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2694
2863
|
config?: {
|
|
2695
2864
|
label?: string | null | undefined;
|
|
2696
2865
|
};
|
|
2697
|
-
}) | ({
|
|
2698
|
-
type: "Text";
|
|
2699
|
-
} & {
|
|
2700
|
-
fieldset?: string | null | undefined;
|
|
2701
|
-
config?: {
|
|
2702
|
-
label?: string | null | undefined;
|
|
2703
|
-
useAsTitle?: boolean;
|
|
2704
|
-
placeholder?: string;
|
|
2705
|
-
};
|
|
2706
2866
|
}) | ({
|
|
2707
2867
|
type: "Timestamp";
|
|
2708
2868
|
} & {
|
|
@@ -2792,6 +2952,15 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2792
2952
|
placeholder?: string;
|
|
2793
2953
|
catalog?: string;
|
|
2794
2954
|
};
|
|
2955
|
+
}) | ({
|
|
2956
|
+
type: "Text";
|
|
2957
|
+
} & {
|
|
2958
|
+
fieldset?: string | null | undefined;
|
|
2959
|
+
config?: {
|
|
2960
|
+
label?: string | null | undefined;
|
|
2961
|
+
useAsTitle?: boolean;
|
|
2962
|
+
placeholder?: string;
|
|
2963
|
+
};
|
|
2795
2964
|
}) | ({
|
|
2796
2965
|
type: "Link";
|
|
2797
2966
|
} & {
|
|
@@ -2805,6 +2974,16 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2805
2974
|
masks?: readonly string[];
|
|
2806
2975
|
tags?: readonly string[];
|
|
2807
2976
|
allowTargetBlank?: boolean;
|
|
2977
|
+
text?: {
|
|
2978
|
+
type: "Text";
|
|
2979
|
+
} & {
|
|
2980
|
+
fieldset?: string | null | undefined;
|
|
2981
|
+
config?: {
|
|
2982
|
+
label?: string | null | undefined;
|
|
2983
|
+
useAsTitle?: boolean;
|
|
2984
|
+
placeholder?: string;
|
|
2985
|
+
};
|
|
2986
|
+
};
|
|
2808
2987
|
};
|
|
2809
2988
|
}) | ({
|
|
2810
2989
|
type: "Number";
|
|
@@ -2861,15 +3040,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2861
3040
|
config?: {
|
|
2862
3041
|
label?: string | null | undefined;
|
|
2863
3042
|
};
|
|
2864
|
-
}) | ({
|
|
2865
|
-
type: "Text";
|
|
2866
|
-
} & {
|
|
2867
|
-
fieldset?: string | null | undefined;
|
|
2868
|
-
config?: {
|
|
2869
|
-
label?: string | null | undefined;
|
|
2870
|
-
useAsTitle?: boolean;
|
|
2871
|
-
placeholder?: string;
|
|
2872
|
-
};
|
|
2873
3043
|
}) | ({
|
|
2874
3044
|
type: "Timestamp";
|
|
2875
3045
|
} & {
|
|
@@ -2951,6 +3121,15 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2951
3121
|
placeholder?: string;
|
|
2952
3122
|
catalog?: string;
|
|
2953
3123
|
};
|
|
3124
|
+
}) | ({
|
|
3125
|
+
type: "Text";
|
|
3126
|
+
} & {
|
|
3127
|
+
fieldset?: string | null | undefined;
|
|
3128
|
+
config?: {
|
|
3129
|
+
label?: string | null | undefined;
|
|
3130
|
+
useAsTitle?: boolean;
|
|
3131
|
+
placeholder?: string;
|
|
3132
|
+
};
|
|
2954
3133
|
}) | ({
|
|
2955
3134
|
type: "Link";
|
|
2956
3135
|
} & {
|
|
@@ -2964,6 +3143,16 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2964
3143
|
masks?: readonly string[];
|
|
2965
3144
|
tags?: readonly string[];
|
|
2966
3145
|
allowTargetBlank?: boolean;
|
|
3146
|
+
text?: {
|
|
3147
|
+
type: "Text";
|
|
3148
|
+
} & {
|
|
3149
|
+
fieldset?: string | null | undefined;
|
|
3150
|
+
config?: {
|
|
3151
|
+
label?: string | null | undefined;
|
|
3152
|
+
useAsTitle?: boolean;
|
|
3153
|
+
placeholder?: string;
|
|
3154
|
+
};
|
|
3155
|
+
};
|
|
2967
3156
|
};
|
|
2968
3157
|
}) | ({
|
|
2969
3158
|
type: "Number";
|
|
@@ -3020,15 +3209,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3020
3209
|
config?: {
|
|
3021
3210
|
label?: string | null | undefined;
|
|
3022
3211
|
};
|
|
3023
|
-
}) | ({
|
|
3024
|
-
type: "Text";
|
|
3025
|
-
} & {
|
|
3026
|
-
fieldset?: string | null | undefined;
|
|
3027
|
-
config?: {
|
|
3028
|
-
label?: string | null | undefined;
|
|
3029
|
-
useAsTitle?: boolean;
|
|
3030
|
-
placeholder?: string;
|
|
3031
|
-
};
|
|
3032
3212
|
}) | ({
|
|
3033
3213
|
type: "Timestamp";
|
|
3034
3214
|
} & {
|