@prismicio/types-internal 2.6.0 → 2.7.0-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.
Files changed (36) hide show
  1. package/lib/content/Document.d.ts +1729 -13
  2. package/lib/content/fields/WidgetContent.d.ts +1728 -12
  3. package/lib/content/fields/nestable/LinkContent.d.ts +206 -8
  4. package/lib/content/fields/nestable/LinkContent.js +11 -1
  5. package/lib/content/fields/nestable/NestableContent.d.ts +288 -2
  6. package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +537 -6
  7. package/lib/content/fields/nestable/RichTextContent/index.d.ts +260 -0
  8. package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +576 -4
  9. package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +132 -2
  10. package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +576 -4
  11. package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +288 -2
  12. package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +288 -2
  13. package/lib/content/fields/slices/Slice/index.d.ts +1050 -10
  14. package/lib/content/fields/slices/SliceItem.d.ts +1050 -10
  15. package/lib/content/fields/slices/SlicesContent.d.ts +1440 -10
  16. package/lib/customtypes/CustomType.d.ts +342 -162
  17. package/lib/customtypes/Section.d.ts +342 -162
  18. package/lib/customtypes/diff/SharedSlice.d.ts +152 -72
  19. package/lib/customtypes/diff/Variation.d.ts +152 -72
  20. package/lib/customtypes/widgets/Group.d.ts +60 -0
  21. package/lib/customtypes/widgets/Widget.d.ts +318 -108
  22. package/lib/customtypes/widgets/nestable/Link.d.ts +20 -0
  23. package/lib/customtypes/widgets/nestable/Link.js +2 -0
  24. package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +10 -0
  25. package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +20 -0
  26. package/lib/customtypes/widgets/slices/LegacySlice.d.ts +20 -0
  27. package/lib/customtypes/widgets/slices/SharedSlice.d.ts +80 -0
  28. package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +87 -27
  29. package/lib/customtypes/widgets/slices/Slices.d.ts +424 -144
  30. package/package.json +1 -1
  31. package/src/content/fields/nestable/LinkContent.ts +13 -1
  32. package/src/customtypes/widgets/nestable/Link.ts +2 -0
  33. package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +0 -727
  34. package/lib/content/fields/nestable/RichTextContent/TextBlock.js +0 -80
  35. package/lib/customtypes/widgets/slices/SliceWidget.d.ts +0 -327
  36. package/lib/customtypes/widgets/slices/SliceWidget.js +0 -8
@@ -144,6 +144,16 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
144
144
  masks: t.Type<readonly string[], object, unknown>;
145
145
  tags: t.Type<readonly string[], object, unknown>;
146
146
  allowTargetBlank: t.BooleanC;
147
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
148
+ type: t.LiteralC<"Text">;
149
+ }>, t.PartialC<{
150
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
151
+ config: t.ExactC<t.PartialC<{
152
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
153
+ useAsTitle: t.BooleanC;
154
+ placeholder: t.StringC;
155
+ }>>;
156
+ }>]>>;
147
157
  }>>;
148
158
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
149
159
  type: t.LiteralC<"Image">;
@@ -309,6 +319,16 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
309
319
  masks: t.Type<readonly string[], object, unknown>;
310
320
  tags: t.Type<readonly string[], object, unknown>;
311
321
  allowTargetBlank: t.BooleanC;
322
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
323
+ type: t.LiteralC<"Text">;
324
+ }>, t.PartialC<{
325
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
326
+ config: t.ExactC<t.PartialC<{
327
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
328
+ useAsTitle: t.BooleanC;
329
+ placeholder: t.StringC;
330
+ }>>;
331
+ }>]>>;
312
332
  }>>;
313
333
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
314
334
  type: t.LiteralC<"Image">;
@@ -474,6 +494,16 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
474
494
  masks: t.Type<readonly string[], object, unknown>;
475
495
  tags: t.Type<readonly string[], object, unknown>;
476
496
  allowTargetBlank: t.BooleanC;
497
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
498
+ type: t.LiteralC<"Text">;
499
+ }>, t.PartialC<{
500
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
501
+ config: t.ExactC<t.PartialC<{
502
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
503
+ useAsTitle: t.BooleanC;
504
+ placeholder: t.StringC;
505
+ }>>;
506
+ }>]>>;
477
507
  }>>;
478
508
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
479
509
  type: t.LiteralC<"Image">;
@@ -631,6 +661,16 @@ export declare function slicesConfigReader<T extends SharedSlice | SharedSliceRe
631
661
  masks: t.Type<readonly string[], object, unknown>;
632
662
  tags: t.Type<readonly string[], object, unknown>;
633
663
  allowTargetBlank: t.BooleanC;
664
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
665
+ type: t.LiteralC<"Text">;
666
+ }>, t.PartialC<{
667
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
668
+ config: t.ExactC<t.PartialC<{
669
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
670
+ useAsTitle: t.BooleanC;
671
+ placeholder: t.StringC;
672
+ }>>;
673
+ }>]>>;
634
674
  }>>;
635
675
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
636
676
  type: t.LiteralC<"Image">;
@@ -800,6 +840,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
800
840
  masks: t.Type<readonly string[], object, unknown>;
801
841
  tags: t.Type<readonly string[], object, unknown>;
802
842
  allowTargetBlank: t.BooleanC;
843
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
844
+ type: t.LiteralC<"Text">;
845
+ }>, t.PartialC<{
846
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
847
+ config: t.ExactC<t.PartialC<{
848
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
849
+ useAsTitle: t.BooleanC;
850
+ placeholder: t.StringC;
851
+ }>>;
852
+ }>]>>;
803
853
  }>>;
804
854
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
805
855
  type: t.LiteralC<"Image">;
@@ -965,6 +1015,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
965
1015
  masks: t.Type<readonly string[], object, unknown>;
966
1016
  tags: t.Type<readonly string[], object, unknown>;
967
1017
  allowTargetBlank: t.BooleanC;
1018
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
1019
+ type: t.LiteralC<"Text">;
1020
+ }>, t.PartialC<{
1021
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1022
+ config: t.ExactC<t.PartialC<{
1023
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1024
+ useAsTitle: t.BooleanC;
1025
+ placeholder: t.StringC;
1026
+ }>>;
1027
+ }>]>>;
968
1028
  }>>;
969
1029
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
970
1030
  type: t.LiteralC<"Image">;
@@ -1130,6 +1190,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1130
1190
  masks: t.Type<readonly string[], object, unknown>;
1131
1191
  tags: t.Type<readonly string[], object, unknown>;
1132
1192
  allowTargetBlank: t.BooleanC;
1193
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
1194
+ type: t.LiteralC<"Text">;
1195
+ }>, t.PartialC<{
1196
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1197
+ config: t.ExactC<t.PartialC<{
1198
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1199
+ useAsTitle: t.BooleanC;
1200
+ placeholder: t.StringC;
1201
+ }>>;
1202
+ }>]>>;
1133
1203
  }>>;
1134
1204
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1135
1205
  type: t.LiteralC<"Image">;
@@ -1287,6 +1357,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1287
1357
  masks: t.Type<readonly string[], object, unknown>;
1288
1358
  tags: t.Type<readonly string[], object, unknown>;
1289
1359
  allowTargetBlank: t.BooleanC;
1360
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
1361
+ type: t.LiteralC<"Text">;
1362
+ }>, t.PartialC<{
1363
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1364
+ config: t.ExactC<t.PartialC<{
1365
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
1366
+ useAsTitle: t.BooleanC;
1367
+ placeholder: t.StringC;
1368
+ }>>;
1369
+ }>]>>;
1290
1370
  }>>;
1291
1371
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
1292
1372
  type: t.LiteralC<"Image">;
@@ -1402,6 +1482,15 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1402
1482
  placeholder?: string;
1403
1483
  catalog?: string;
1404
1484
  };
1485
+ }) | ({
1486
+ type: "Text";
1487
+ } & {
1488
+ fieldset?: string | null | undefined;
1489
+ config?: {
1490
+ label?: string | null | undefined;
1491
+ useAsTitle?: boolean;
1492
+ placeholder?: string;
1493
+ };
1405
1494
  }) | ({
1406
1495
  type: "Link";
1407
1496
  } & {
@@ -1415,6 +1504,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1415
1504
  masks?: readonly string[];
1416
1505
  tags?: readonly string[];
1417
1506
  allowTargetBlank?: boolean;
1507
+ title?: {
1508
+ type: "Text";
1509
+ } & {
1510
+ fieldset?: string | null | undefined;
1511
+ config?: {
1512
+ label?: string | null | undefined;
1513
+ useAsTitle?: boolean;
1514
+ placeholder?: string;
1515
+ };
1516
+ };
1418
1517
  };
1419
1518
  }) | ({
1420
1519
  type: "Number";
@@ -1471,15 +1570,6 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1471
1570
  config?: {
1472
1571
  label?: string | null | undefined;
1473
1572
  };
1474
- }) | ({
1475
- type: "Text";
1476
- } & {
1477
- fieldset?: string | null | undefined;
1478
- config?: {
1479
- label?: string | null | undefined;
1480
- useAsTitle?: boolean;
1481
- placeholder?: string;
1482
- };
1483
1573
  }) | ({
1484
1574
  type: "Timestamp";
1485
1575
  } & {
@@ -1568,6 +1658,15 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1568
1658
  placeholder?: string;
1569
1659
  catalog?: string;
1570
1660
  };
1661
+ }) | ({
1662
+ type: "Text";
1663
+ } & {
1664
+ fieldset?: string | null | undefined;
1665
+ config?: {
1666
+ label?: string | null | undefined;
1667
+ useAsTitle?: boolean;
1668
+ placeholder?: string;
1669
+ };
1571
1670
  }) | ({
1572
1671
  type: "Link";
1573
1672
  } & {
@@ -1581,6 +1680,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1581
1680
  masks?: readonly string[];
1582
1681
  tags?: readonly string[];
1583
1682
  allowTargetBlank?: boolean;
1683
+ title?: {
1684
+ type: "Text";
1685
+ } & {
1686
+ fieldset?: string | null | undefined;
1687
+ config?: {
1688
+ label?: string | null | undefined;
1689
+ useAsTitle?: boolean;
1690
+ placeholder?: string;
1691
+ };
1692
+ };
1584
1693
  };
1585
1694
  }) | ({
1586
1695
  type: "Number";
@@ -1637,15 +1746,6 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1637
1746
  config?: {
1638
1747
  label?: string | null | undefined;
1639
1748
  };
1640
- }) | ({
1641
- type: "Text";
1642
- } & {
1643
- fieldset?: string | null | undefined;
1644
- config?: {
1645
- label?: string | null | undefined;
1646
- useAsTitle?: boolean;
1647
- placeholder?: string;
1648
- };
1649
1749
  }) | ({
1650
1750
  type: "Timestamp";
1651
1751
  } & {
@@ -1734,6 +1834,15 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1734
1834
  placeholder?: string;
1735
1835
  catalog?: string;
1736
1836
  };
1837
+ }) | ({
1838
+ type: "Text";
1839
+ } & {
1840
+ fieldset?: string | null | undefined;
1841
+ config?: {
1842
+ label?: string | null | undefined;
1843
+ useAsTitle?: boolean;
1844
+ placeholder?: string;
1845
+ };
1737
1846
  }) | ({
1738
1847
  type: "Link";
1739
1848
  } & {
@@ -1747,6 +1856,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1747
1856
  masks?: readonly string[];
1748
1857
  tags?: readonly string[];
1749
1858
  allowTargetBlank?: boolean;
1859
+ title?: {
1860
+ type: "Text";
1861
+ } & {
1862
+ fieldset?: string | null | undefined;
1863
+ config?: {
1864
+ label?: string | null | undefined;
1865
+ useAsTitle?: boolean;
1866
+ placeholder?: string;
1867
+ };
1868
+ };
1750
1869
  };
1751
1870
  }) | ({
1752
1871
  type: "Number";
@@ -1803,15 +1922,6 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1803
1922
  config?: {
1804
1923
  label?: string | null | undefined;
1805
1924
  };
1806
- }) | ({
1807
- type: "Text";
1808
- } & {
1809
- fieldset?: string | null | undefined;
1810
- config?: {
1811
- label?: string | null | undefined;
1812
- useAsTitle?: boolean;
1813
- placeholder?: string;
1814
- };
1815
1925
  }) | ({
1816
1926
  type: "Timestamp";
1817
1927
  } & {
@@ -1899,6 +2009,15 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1899
2009
  placeholder?: string;
1900
2010
  catalog?: string;
1901
2011
  };
2012
+ }) | ({
2013
+ type: "Text";
2014
+ } & {
2015
+ fieldset?: string | null | undefined;
2016
+ config?: {
2017
+ label?: string | null | undefined;
2018
+ useAsTitle?: boolean;
2019
+ placeholder?: string;
2020
+ };
1902
2021
  }) | ({
1903
2022
  type: "Link";
1904
2023
  } & {
@@ -1912,6 +2031,16 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1912
2031
  masks?: readonly string[];
1913
2032
  tags?: readonly string[];
1914
2033
  allowTargetBlank?: boolean;
2034
+ title?: {
2035
+ type: "Text";
2036
+ } & {
2037
+ fieldset?: string | null | undefined;
2038
+ config?: {
2039
+ label?: string | null | undefined;
2040
+ useAsTitle?: boolean;
2041
+ placeholder?: string;
2042
+ };
2043
+ };
1915
2044
  };
1916
2045
  }) | ({
1917
2046
  type: "Number";
@@ -1968,15 +2097,6 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
1968
2097
  config?: {
1969
2098
  label?: string | null | undefined;
1970
2099
  };
1971
- }) | ({
1972
- type: "Text";
1973
- } & {
1974
- fieldset?: string | null | undefined;
1975
- config?: {
1976
- label?: string | null | undefined;
1977
- useAsTitle?: boolean;
1978
- placeholder?: string;
1979
- };
1980
2100
  }) | ({
1981
2101
  type: "Timestamp";
1982
2102
  } & {
@@ -2132,6 +2252,16 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
2132
2252
  masks: t.Type<readonly string[], object, unknown>;
2133
2253
  tags: t.Type<readonly string[], object, unknown>;
2134
2254
  allowTargetBlank: t.BooleanC;
2255
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
2256
+ type: t.LiteralC<"Text">;
2257
+ }>, t.PartialC<{
2258
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2259
+ config: t.ExactC<t.PartialC<{
2260
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2261
+ useAsTitle: t.BooleanC;
2262
+ placeholder: t.StringC;
2263
+ }>>;
2264
+ }>]>>;
2135
2265
  }>>;
2136
2266
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2137
2267
  type: t.LiteralC<"Image">;
@@ -2297,6 +2427,16 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
2297
2427
  masks: t.Type<readonly string[], object, unknown>;
2298
2428
  tags: t.Type<readonly string[], object, unknown>;
2299
2429
  allowTargetBlank: t.BooleanC;
2430
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
2431
+ type: t.LiteralC<"Text">;
2432
+ }>, t.PartialC<{
2433
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2434
+ config: t.ExactC<t.PartialC<{
2435
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2436
+ useAsTitle: t.BooleanC;
2437
+ placeholder: t.StringC;
2438
+ }>>;
2439
+ }>]>>;
2300
2440
  }>>;
2301
2441
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2302
2442
  type: t.LiteralC<"Image">;
@@ -2462,6 +2602,16 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
2462
2602
  masks: t.Type<readonly string[], object, unknown>;
2463
2603
  tags: t.Type<readonly string[], object, unknown>;
2464
2604
  allowTargetBlank: t.BooleanC;
2605
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
2606
+ type: t.LiteralC<"Text">;
2607
+ }>, t.PartialC<{
2608
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2609
+ config: t.ExactC<t.PartialC<{
2610
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2611
+ useAsTitle: t.BooleanC;
2612
+ placeholder: t.StringC;
2613
+ }>>;
2614
+ }>]>>;
2465
2615
  }>>;
2466
2616
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2467
2617
  type: t.LiteralC<"Image">;
@@ -2619,6 +2769,16 @@ export declare const DynamicSlicesConfig: t.ExactC<t.PartialC<{
2619
2769
  masks: t.Type<readonly string[], object, unknown>;
2620
2770
  tags: t.Type<readonly string[], object, unknown>;
2621
2771
  allowTargetBlank: t.BooleanC;
2772
+ title: t.ExactC<t.IntersectionC<[t.TypeC<{
2773
+ type: t.LiteralC<"Text">;
2774
+ }>, t.PartialC<{
2775
+ fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2776
+ config: t.ExactC<t.PartialC<{
2777
+ label: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
2778
+ useAsTitle: t.BooleanC;
2779
+ placeholder: t.StringC;
2780
+ }>>;
2781
+ }>]>>;
2622
2782
  }>>;
2623
2783
  }>]>>, t.ExactC<t.IntersectionC<[t.TypeC<{
2624
2784
  type: t.LiteralC<"Image">;
@@ -2751,6 +2911,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
2751
2911
  placeholder?: string;
2752
2912
  catalog?: string;
2753
2913
  };
2914
+ }) | ({
2915
+ type: "Text";
2916
+ } & {
2917
+ fieldset?: string | null | undefined;
2918
+ config?: {
2919
+ label?: string | null | undefined;
2920
+ useAsTitle?: boolean;
2921
+ placeholder?: string;
2922
+ };
2754
2923
  }) | ({
2755
2924
  type: "Link";
2756
2925
  } & {
@@ -2764,6 +2933,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
2764
2933
  masks?: readonly string[];
2765
2934
  tags?: readonly string[];
2766
2935
  allowTargetBlank?: boolean;
2936
+ title?: {
2937
+ type: "Text";
2938
+ } & {
2939
+ fieldset?: string | null | undefined;
2940
+ config?: {
2941
+ label?: string | null | undefined;
2942
+ useAsTitle?: boolean;
2943
+ placeholder?: string;
2944
+ };
2945
+ };
2767
2946
  };
2768
2947
  }) | ({
2769
2948
  type: "Number";
@@ -2820,15 +2999,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
2820
2999
  config?: {
2821
3000
  label?: string | null | undefined;
2822
3001
  };
2823
- }) | ({
2824
- type: "Text";
2825
- } & {
2826
- fieldset?: string | null | undefined;
2827
- config?: {
2828
- label?: string | null | undefined;
2829
- useAsTitle?: boolean;
2830
- placeholder?: string;
2831
- };
2832
3002
  }) | ({
2833
3003
  type: "Timestamp";
2834
3004
  } & {
@@ -2917,6 +3087,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
2917
3087
  placeholder?: string;
2918
3088
  catalog?: string;
2919
3089
  };
3090
+ }) | ({
3091
+ type: "Text";
3092
+ } & {
3093
+ fieldset?: string | null | undefined;
3094
+ config?: {
3095
+ label?: string | null | undefined;
3096
+ useAsTitle?: boolean;
3097
+ placeholder?: string;
3098
+ };
2920
3099
  }) | ({
2921
3100
  type: "Link";
2922
3101
  } & {
@@ -2930,6 +3109,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
2930
3109
  masks?: readonly string[];
2931
3110
  tags?: readonly string[];
2932
3111
  allowTargetBlank?: boolean;
3112
+ title?: {
3113
+ type: "Text";
3114
+ } & {
3115
+ fieldset?: string | null | undefined;
3116
+ config?: {
3117
+ label?: string | null | undefined;
3118
+ useAsTitle?: boolean;
3119
+ placeholder?: string;
3120
+ };
3121
+ };
2933
3122
  };
2934
3123
  }) | ({
2935
3124
  type: "Number";
@@ -2986,15 +3175,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
2986
3175
  config?: {
2987
3176
  label?: string | null | undefined;
2988
3177
  };
2989
- }) | ({
2990
- type: "Text";
2991
- } & {
2992
- fieldset?: string | null | undefined;
2993
- config?: {
2994
- label?: string | null | undefined;
2995
- useAsTitle?: boolean;
2996
- placeholder?: string;
2997
- };
2998
3178
  }) | ({
2999
3179
  type: "Timestamp";
3000
3180
  } & {
@@ -3084,6 +3264,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3084
3264
  placeholder?: string;
3085
3265
  catalog?: string;
3086
3266
  };
3267
+ }) | ({
3268
+ type: "Text";
3269
+ } & {
3270
+ fieldset?: string | null | undefined;
3271
+ config?: {
3272
+ label?: string | null | undefined;
3273
+ useAsTitle?: boolean;
3274
+ placeholder?: string;
3275
+ };
3087
3276
  }) | ({
3088
3277
  type: "Link";
3089
3278
  } & {
@@ -3097,6 +3286,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3097
3286
  masks?: readonly string[];
3098
3287
  tags?: readonly string[];
3099
3288
  allowTargetBlank?: boolean;
3289
+ title?: {
3290
+ type: "Text";
3291
+ } & {
3292
+ fieldset?: string | null | undefined;
3293
+ config?: {
3294
+ label?: string | null | undefined;
3295
+ useAsTitle?: boolean;
3296
+ placeholder?: string;
3297
+ };
3298
+ };
3100
3299
  };
3101
3300
  }) | ({
3102
3301
  type: "Number";
@@ -3153,15 +3352,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3153
3352
  config?: {
3154
3353
  label?: string | null | undefined;
3155
3354
  };
3156
- }) | ({
3157
- type: "Text";
3158
- } & {
3159
- fieldset?: string | null | undefined;
3160
- config?: {
3161
- label?: string | null | undefined;
3162
- useAsTitle?: boolean;
3163
- placeholder?: string;
3164
- };
3165
3355
  }) | ({
3166
3356
  type: "Timestamp";
3167
3357
  } & {
@@ -3243,6 +3433,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3243
3433
  placeholder?: string;
3244
3434
  catalog?: string;
3245
3435
  };
3436
+ }) | ({
3437
+ type: "Text";
3438
+ } & {
3439
+ fieldset?: string | null | undefined;
3440
+ config?: {
3441
+ label?: string | null | undefined;
3442
+ useAsTitle?: boolean;
3443
+ placeholder?: string;
3444
+ };
3246
3445
  }) | ({
3247
3446
  type: "Link";
3248
3447
  } & {
@@ -3256,6 +3455,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3256
3455
  masks?: readonly string[];
3257
3456
  tags?: readonly string[];
3258
3457
  allowTargetBlank?: boolean;
3458
+ title?: {
3459
+ type: "Text";
3460
+ } & {
3461
+ fieldset?: string | null | undefined;
3462
+ config?: {
3463
+ label?: string | null | undefined;
3464
+ useAsTitle?: boolean;
3465
+ placeholder?: string;
3466
+ };
3467
+ };
3259
3468
  };
3260
3469
  }) | ({
3261
3470
  type: "Number";
@@ -3312,15 +3521,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3312
3521
  config?: {
3313
3522
  label?: string | null | undefined;
3314
3523
  };
3315
- }) | ({
3316
- type: "Text";
3317
- } & {
3318
- fieldset?: string | null | undefined;
3319
- config?: {
3320
- label?: string | null | undefined;
3321
- useAsTitle?: boolean;
3322
- placeholder?: string;
3323
- };
3324
3524
  }) | ({
3325
3525
  type: "Timestamp";
3326
3526
  } & {
@@ -3418,6 +3618,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3418
3618
  placeholder?: string;
3419
3619
  catalog?: string;
3420
3620
  };
3621
+ }) | ({
3622
+ type: "Text";
3623
+ } & {
3624
+ fieldset?: string | null | undefined;
3625
+ config?: {
3626
+ label?: string | null | undefined;
3627
+ useAsTitle?: boolean;
3628
+ placeholder?: string;
3629
+ };
3421
3630
  }) | ({
3422
3631
  type: "Link";
3423
3632
  } & {
@@ -3431,6 +3640,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3431
3640
  masks?: readonly string[];
3432
3641
  tags?: readonly string[];
3433
3642
  allowTargetBlank?: boolean;
3643
+ title?: {
3644
+ type: "Text";
3645
+ } & {
3646
+ fieldset?: string | null | undefined;
3647
+ config?: {
3648
+ label?: string | null | undefined;
3649
+ useAsTitle?: boolean;
3650
+ placeholder?: string;
3651
+ };
3652
+ };
3434
3653
  };
3435
3654
  }) | ({
3436
3655
  type: "Number";
@@ -3487,15 +3706,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3487
3706
  config?: {
3488
3707
  label?: string | null | undefined;
3489
3708
  };
3490
- }) | ({
3491
- type: "Text";
3492
- } & {
3493
- fieldset?: string | null | undefined;
3494
- config?: {
3495
- label?: string | null | undefined;
3496
- useAsTitle?: boolean;
3497
- placeholder?: string;
3498
- };
3499
3709
  }) | ({
3500
3710
  type: "Timestamp";
3501
3711
  } & {
@@ -3584,6 +3794,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3584
3794
  placeholder?: string;
3585
3795
  catalog?: string;
3586
3796
  };
3797
+ }) | ({
3798
+ type: "Text";
3799
+ } & {
3800
+ fieldset?: string | null | undefined;
3801
+ config?: {
3802
+ label?: string | null | undefined;
3803
+ useAsTitle?: boolean;
3804
+ placeholder?: string;
3805
+ };
3587
3806
  }) | ({
3588
3807
  type: "Link";
3589
3808
  } & {
@@ -3597,6 +3816,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3597
3816
  masks?: readonly string[];
3598
3817
  tags?: readonly string[];
3599
3818
  allowTargetBlank?: boolean;
3819
+ title?: {
3820
+ type: "Text";
3821
+ } & {
3822
+ fieldset?: string | null | undefined;
3823
+ config?: {
3824
+ label?: string | null | undefined;
3825
+ useAsTitle?: boolean;
3826
+ placeholder?: string;
3827
+ };
3828
+ };
3600
3829
  };
3601
3830
  }) | ({
3602
3831
  type: "Number";
@@ -3653,15 +3882,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3653
3882
  config?: {
3654
3883
  label?: string | null | undefined;
3655
3884
  };
3656
- }) | ({
3657
- type: "Text";
3658
- } & {
3659
- fieldset?: string | null | undefined;
3660
- config?: {
3661
- label?: string | null | undefined;
3662
- useAsTitle?: boolean;
3663
- placeholder?: string;
3664
- };
3665
3885
  }) | ({
3666
3886
  type: "Timestamp";
3667
3887
  } & {
@@ -3750,6 +3970,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3750
3970
  placeholder?: string;
3751
3971
  catalog?: string;
3752
3972
  };
3973
+ }) | ({
3974
+ type: "Text";
3975
+ } & {
3976
+ fieldset?: string | null | undefined;
3977
+ config?: {
3978
+ label?: string | null | undefined;
3979
+ useAsTitle?: boolean;
3980
+ placeholder?: string;
3981
+ };
3753
3982
  }) | ({
3754
3983
  type: "Link";
3755
3984
  } & {
@@ -3763,6 +3992,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3763
3992
  masks?: readonly string[];
3764
3993
  tags?: readonly string[];
3765
3994
  allowTargetBlank?: boolean;
3995
+ title?: {
3996
+ type: "Text";
3997
+ } & {
3998
+ fieldset?: string | null | undefined;
3999
+ config?: {
4000
+ label?: string | null | undefined;
4001
+ useAsTitle?: boolean;
4002
+ placeholder?: string;
4003
+ };
4004
+ };
3766
4005
  };
3767
4006
  }) | ({
3768
4007
  type: "Number";
@@ -3819,15 +4058,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3819
4058
  config?: {
3820
4059
  label?: string | null | undefined;
3821
4060
  };
3822
- }) | ({
3823
- type: "Text";
3824
- } & {
3825
- fieldset?: string | null | undefined;
3826
- config?: {
3827
- label?: string | null | undefined;
3828
- useAsTitle?: boolean;
3829
- placeholder?: string;
3830
- };
3831
4061
  }) | ({
3832
4062
  type: "Timestamp";
3833
4063
  } & {
@@ -3915,6 +4145,15 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3915
4145
  placeholder?: string;
3916
4146
  catalog?: string;
3917
4147
  };
4148
+ }) | ({
4149
+ type: "Text";
4150
+ } & {
4151
+ fieldset?: string | null | undefined;
4152
+ config?: {
4153
+ label?: string | null | undefined;
4154
+ useAsTitle?: boolean;
4155
+ placeholder?: string;
4156
+ };
3918
4157
  }) | ({
3919
4158
  type: "Link";
3920
4159
  } & {
@@ -3928,6 +4167,16 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3928
4167
  masks?: readonly string[];
3929
4168
  tags?: readonly string[];
3930
4169
  allowTargetBlank?: boolean;
4170
+ title?: {
4171
+ type: "Text";
4172
+ } & {
4173
+ fieldset?: string | null | undefined;
4174
+ config?: {
4175
+ label?: string | null | undefined;
4176
+ useAsTitle?: boolean;
4177
+ placeholder?: string;
4178
+ };
4179
+ };
3931
4180
  };
3932
4181
  }) | ({
3933
4182
  type: "Number";
@@ -3984,15 +4233,6 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
3984
4233
  config?: {
3985
4234
  label?: string | null | undefined;
3986
4235
  };
3987
- }) | ({
3988
- type: "Text";
3989
- } & {
3990
- fieldset?: string | null | undefined;
3991
- config?: {
3992
- label?: string | null | undefined;
3993
- useAsTitle?: boolean;
3994
- placeholder?: string;
3995
- };
3996
4236
  }) | ({
3997
4237
  type: "Timestamp";
3998
4238
  } & {
@@ -4101,6 +4341,15 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4101
4341
  placeholder?: string;
4102
4342
  catalog?: string;
4103
4343
  };
4344
+ }) | ({
4345
+ type: "Text";
4346
+ } & {
4347
+ fieldset?: string | null | undefined;
4348
+ config?: {
4349
+ label?: string | null | undefined;
4350
+ useAsTitle?: boolean;
4351
+ placeholder?: string;
4352
+ };
4104
4353
  }) | ({
4105
4354
  type: "Link";
4106
4355
  } & {
@@ -4114,6 +4363,16 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4114
4363
  masks?: readonly string[];
4115
4364
  tags?: readonly string[];
4116
4365
  allowTargetBlank?: boolean;
4366
+ title?: {
4367
+ type: "Text";
4368
+ } & {
4369
+ fieldset?: string | null | undefined;
4370
+ config?: {
4371
+ label?: string | null | undefined;
4372
+ useAsTitle?: boolean;
4373
+ placeholder?: string;
4374
+ };
4375
+ };
4117
4376
  };
4118
4377
  }) | ({
4119
4378
  type: "Number";
@@ -4170,15 +4429,6 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4170
4429
  config?: {
4171
4430
  label?: string | null | undefined;
4172
4431
  };
4173
- }) | ({
4174
- type: "Text";
4175
- } & {
4176
- fieldset?: string | null | undefined;
4177
- config?: {
4178
- label?: string | null | undefined;
4179
- useAsTitle?: boolean;
4180
- placeholder?: string;
4181
- };
4182
4432
  }) | ({
4183
4433
  type: "Timestamp";
4184
4434
  } & {
@@ -4267,6 +4517,15 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4267
4517
  placeholder?: string;
4268
4518
  catalog?: string;
4269
4519
  };
4520
+ }) | ({
4521
+ type: "Text";
4522
+ } & {
4523
+ fieldset?: string | null | undefined;
4524
+ config?: {
4525
+ label?: string | null | undefined;
4526
+ useAsTitle?: boolean;
4527
+ placeholder?: string;
4528
+ };
4270
4529
  }) | ({
4271
4530
  type: "Link";
4272
4531
  } & {
@@ -4280,6 +4539,16 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4280
4539
  masks?: readonly string[];
4281
4540
  tags?: readonly string[];
4282
4541
  allowTargetBlank?: boolean;
4542
+ title?: {
4543
+ type: "Text";
4544
+ } & {
4545
+ fieldset?: string | null | undefined;
4546
+ config?: {
4547
+ label?: string | null | undefined;
4548
+ useAsTitle?: boolean;
4549
+ placeholder?: string;
4550
+ };
4551
+ };
4283
4552
  };
4284
4553
  }) | ({
4285
4554
  type: "Number";
@@ -4336,15 +4605,6 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4336
4605
  config?: {
4337
4606
  label?: string | null | undefined;
4338
4607
  };
4339
- }) | ({
4340
- type: "Text";
4341
- } & {
4342
- fieldset?: string | null | undefined;
4343
- config?: {
4344
- label?: string | null | undefined;
4345
- useAsTitle?: boolean;
4346
- placeholder?: string;
4347
- };
4348
4608
  }) | ({
4349
4609
  type: "Timestamp";
4350
4610
  } & {
@@ -4434,6 +4694,15 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4434
4694
  placeholder?: string;
4435
4695
  catalog?: string;
4436
4696
  };
4697
+ }) | ({
4698
+ type: "Text";
4699
+ } & {
4700
+ fieldset?: string | null | undefined;
4701
+ config?: {
4702
+ label?: string | null | undefined;
4703
+ useAsTitle?: boolean;
4704
+ placeholder?: string;
4705
+ };
4437
4706
  }) | ({
4438
4707
  type: "Link";
4439
4708
  } & {
@@ -4447,6 +4716,16 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4447
4716
  masks?: readonly string[];
4448
4717
  tags?: readonly string[];
4449
4718
  allowTargetBlank?: boolean;
4719
+ title?: {
4720
+ type: "Text";
4721
+ } & {
4722
+ fieldset?: string | null | undefined;
4723
+ config?: {
4724
+ label?: string | null | undefined;
4725
+ useAsTitle?: boolean;
4726
+ placeholder?: string;
4727
+ };
4728
+ };
4450
4729
  };
4451
4730
  }) | ({
4452
4731
  type: "Number";
@@ -4503,15 +4782,6 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4503
4782
  config?: {
4504
4783
  label?: string | null | undefined;
4505
4784
  };
4506
- }) | ({
4507
- type: "Text";
4508
- } & {
4509
- fieldset?: string | null | undefined;
4510
- config?: {
4511
- label?: string | null | undefined;
4512
- useAsTitle?: boolean;
4513
- placeholder?: string;
4514
- };
4515
4785
  }) | ({
4516
4786
  type: "Timestamp";
4517
4787
  } & {
@@ -4593,6 +4863,15 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4593
4863
  placeholder?: string;
4594
4864
  catalog?: string;
4595
4865
  };
4866
+ }) | ({
4867
+ type: "Text";
4868
+ } & {
4869
+ fieldset?: string | null | undefined;
4870
+ config?: {
4871
+ label?: string | null | undefined;
4872
+ useAsTitle?: boolean;
4873
+ placeholder?: string;
4874
+ };
4596
4875
  }) | ({
4597
4876
  type: "Link";
4598
4877
  } & {
@@ -4606,6 +4885,16 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4606
4885
  masks?: readonly string[];
4607
4886
  tags?: readonly string[];
4608
4887
  allowTargetBlank?: boolean;
4888
+ title?: {
4889
+ type: "Text";
4890
+ } & {
4891
+ fieldset?: string | null | undefined;
4892
+ config?: {
4893
+ label?: string | null | undefined;
4894
+ useAsTitle?: boolean;
4895
+ placeholder?: string;
4896
+ };
4897
+ };
4609
4898
  };
4610
4899
  }) | ({
4611
4900
  type: "Number";
@@ -4662,15 +4951,6 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
4662
4951
  config?: {
4663
4952
  label?: string | null | undefined;
4664
4953
  };
4665
- }) | ({
4666
- type: "Text";
4667
- } & {
4668
- fieldset?: string | null | undefined;
4669
- config?: {
4670
- label?: string | null | undefined;
4671
- useAsTitle?: boolean;
4672
- placeholder?: string;
4673
- };
4674
4954
  }) | ({
4675
4955
  type: "Timestamp";
4676
4956
  } & {