@prismicio/types-internal 2.7.0-alpha.0 → 2.7.0-alpha.2
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 +333 -1653
- package/lib/content/fields/WidgetContent.d.ts +333 -1653
- package/lib/content/fields/nestable/LinkContent.d.ts +38 -190
- package/lib/content/fields/nestable/LinkContent.js +5 -6
- package/lib/content/fields/nestable/NestableContent.d.ts +55 -275
- package/lib/content/fields/nestable/RichTextContent/Blocks.d.ts +102 -510
- package/lib/content/fields/nestable/RichTextContent/TextBlock.d.ts +727 -0
- package/lib/content/fields/nestable/RichTextContent/TextBlock.js +80 -0
- package/lib/content/fields/nestable/RichTextContent/index.d.ts +50 -250
- package/lib/content/fields/slices/Slice/CompositeSliceContent.d.ts +110 -550
- package/lib/content/fields/slices/Slice/RepeatableContent.d.ts +25 -125
- package/lib/content/fields/slices/Slice/SharedSliceContent.d.ts +110 -550
- package/lib/content/fields/slices/Slice/SimpleSliceContent.d.ts +55 -275
- package/lib/content/fields/slices/Slice/SlicePrimaryContent.d.ts +55 -275
- package/lib/content/fields/slices/Slice/index.d.ts +200 -1000
- package/lib/content/fields/slices/SliceItem.d.ts +200 -1000
- package/lib/content/fields/slices/SlicesContent.d.ts +275 -1375
- package/lib/customtypes/CustomType.d.ts +18 -20
- package/lib/customtypes/CustomType.js +0 -1
- package/lib/customtypes/Section.d.ts +18 -18
- package/lib/customtypes/diff/SharedSlice.d.ts +8 -8
- package/lib/customtypes/diff/Variation.d.ts +8 -8
- package/lib/customtypes/widgets/Group.d.ts +6 -6
- package/lib/customtypes/widgets/Widget.d.ts +21 -21
- package/lib/customtypes/widgets/nestable/Link.d.ts +2 -2
- package/lib/customtypes/widgets/nestable/Link.js +1 -1
- package/lib/customtypes/widgets/nestable/NestableWidget.d.ts +1 -1
- package/lib/customtypes/widgets/slices/CompositeSlice.d.ts +2 -2
- package/lib/customtypes/widgets/slices/LegacySlice.d.ts +2 -2
- package/lib/customtypes/widgets/slices/SharedSlice.d.ts +8 -8
- package/lib/customtypes/widgets/slices/SlicePrimaryWidget.d.ts +6 -6
- package/lib/customtypes/widgets/slices/SliceWidget.d.ts +327 -0
- package/lib/customtypes/widgets/slices/SliceWidget.js +8 -0
- package/lib/customtypes/widgets/slices/Slices.d.ts +28 -28
- package/package.json +1 -1
- package/src/content/fields/nestable/LinkContent.ts +5 -6
- package/src/customtypes/CustomType.ts +0 -1
- package/src/customtypes/widgets/nestable/Link.ts +1 -1
|
@@ -109,7 +109,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
109
109
|
masks?: readonly string[];
|
|
110
110
|
tags?: readonly string[];
|
|
111
111
|
allowTargetBlank?: boolean;
|
|
112
|
-
|
|
112
|
+
text?: {
|
|
113
113
|
type: "Text";
|
|
114
114
|
} & {
|
|
115
115
|
fieldset?: string | null | undefined;
|
|
@@ -285,7 +285,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
285
285
|
masks?: readonly string[];
|
|
286
286
|
tags?: readonly string[];
|
|
287
287
|
allowTargetBlank?: boolean;
|
|
288
|
-
|
|
288
|
+
text?: {
|
|
289
289
|
type: "Text";
|
|
290
290
|
} & {
|
|
291
291
|
fieldset?: string | null | undefined;
|
|
@@ -461,7 +461,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
461
461
|
masks?: readonly string[];
|
|
462
462
|
tags?: readonly string[];
|
|
463
463
|
allowTargetBlank?: boolean;
|
|
464
|
-
|
|
464
|
+
text?: {
|
|
465
465
|
type: "Text";
|
|
466
466
|
} & {
|
|
467
467
|
fieldset?: string | null | undefined;
|
|
@@ -647,7 +647,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
647
647
|
masks?: readonly string[];
|
|
648
648
|
tags?: readonly string[];
|
|
649
649
|
allowTargetBlank?: boolean;
|
|
650
|
-
|
|
650
|
+
text?: {
|
|
651
651
|
type: "Text";
|
|
652
652
|
} & {
|
|
653
653
|
fieldset?: string | null | undefined;
|
|
@@ -823,7 +823,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
823
823
|
masks?: readonly string[];
|
|
824
824
|
tags?: readonly string[];
|
|
825
825
|
allowTargetBlank?: boolean;
|
|
826
|
-
|
|
826
|
+
text?: {
|
|
827
827
|
type: "Text";
|
|
828
828
|
} & {
|
|
829
829
|
fieldset?: string | null | undefined;
|
|
@@ -1000,7 +1000,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1000
1000
|
masks?: readonly string[];
|
|
1001
1001
|
tags?: readonly string[];
|
|
1002
1002
|
allowTargetBlank?: boolean;
|
|
1003
|
-
|
|
1003
|
+
text?: {
|
|
1004
1004
|
type: "Text";
|
|
1005
1005
|
} & {
|
|
1006
1006
|
fieldset?: string | null | undefined;
|
|
@@ -1169,7 +1169,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1169
1169
|
masks?: readonly string[];
|
|
1170
1170
|
tags?: readonly string[];
|
|
1171
1171
|
allowTargetBlank?: boolean;
|
|
1172
|
-
|
|
1172
|
+
text?: {
|
|
1173
1173
|
type: "Text";
|
|
1174
1174
|
} & {
|
|
1175
1175
|
fieldset?: string | null | undefined;
|
|
@@ -1354,7 +1354,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1354
1354
|
masks?: readonly string[];
|
|
1355
1355
|
tags?: readonly string[];
|
|
1356
1356
|
allowTargetBlank?: boolean;
|
|
1357
|
-
|
|
1357
|
+
text?: {
|
|
1358
1358
|
type: "Text";
|
|
1359
1359
|
} & {
|
|
1360
1360
|
fieldset?: string | null | undefined;
|
|
@@ -1530,7 +1530,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1530
1530
|
masks?: readonly string[];
|
|
1531
1531
|
tags?: readonly string[];
|
|
1532
1532
|
allowTargetBlank?: boolean;
|
|
1533
|
-
|
|
1533
|
+
text?: {
|
|
1534
1534
|
type: "Text";
|
|
1535
1535
|
} & {
|
|
1536
1536
|
fieldset?: string | null | undefined;
|
|
@@ -1706,7 +1706,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1706
1706
|
masks?: readonly string[];
|
|
1707
1707
|
tags?: readonly string[];
|
|
1708
1708
|
allowTargetBlank?: boolean;
|
|
1709
|
-
|
|
1709
|
+
text?: {
|
|
1710
1710
|
type: "Text";
|
|
1711
1711
|
} & {
|
|
1712
1712
|
fieldset?: string | null | undefined;
|
|
@@ -1881,7 +1881,7 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1881
1881
|
masks?: readonly string[];
|
|
1882
1882
|
tags?: readonly string[];
|
|
1883
1883
|
allowTargetBlank?: boolean;
|
|
1884
|
-
|
|
1884
|
+
text?: {
|
|
1885
1885
|
type: "Text";
|
|
1886
1886
|
} & {
|
|
1887
1887
|
fieldset?: string | null | undefined;
|
|
@@ -1980,7 +1980,6 @@ export declare const StaticCustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1980
1980
|
}, unknown, unknown>>;
|
|
1981
1981
|
status: t.BooleanC;
|
|
1982
1982
|
}>, t.PartialC<{
|
|
1983
|
-
hash: t.StringC;
|
|
1984
1983
|
format: t.KeyofC<{
|
|
1985
1984
|
page: string;
|
|
1986
1985
|
custom: string;
|
|
@@ -2083,7 +2082,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2083
2082
|
masks?: readonly string[];
|
|
2084
2083
|
tags?: readonly string[];
|
|
2085
2084
|
allowTargetBlank?: boolean;
|
|
2086
|
-
|
|
2085
|
+
text?: {
|
|
2087
2086
|
type: "Text";
|
|
2088
2087
|
} & {
|
|
2089
2088
|
fieldset?: string | null | undefined;
|
|
@@ -2259,7 +2258,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2259
2258
|
masks?: readonly string[];
|
|
2260
2259
|
tags?: readonly string[];
|
|
2261
2260
|
allowTargetBlank?: boolean;
|
|
2262
|
-
|
|
2261
|
+
text?: {
|
|
2263
2262
|
type: "Text";
|
|
2264
2263
|
} & {
|
|
2265
2264
|
fieldset?: string | null | undefined;
|
|
@@ -2435,7 +2434,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2435
2434
|
masks?: readonly string[];
|
|
2436
2435
|
tags?: readonly string[];
|
|
2437
2436
|
allowTargetBlank?: boolean;
|
|
2438
|
-
|
|
2437
|
+
text?: {
|
|
2439
2438
|
type: "Text";
|
|
2440
2439
|
} & {
|
|
2441
2440
|
fieldset?: string | null | undefined;
|
|
@@ -2621,7 +2620,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2621
2620
|
masks?: readonly string[];
|
|
2622
2621
|
tags?: readonly string[];
|
|
2623
2622
|
allowTargetBlank?: boolean;
|
|
2624
|
-
|
|
2623
|
+
text?: {
|
|
2625
2624
|
type: "Text";
|
|
2626
2625
|
} & {
|
|
2627
2626
|
fieldset?: string | null | undefined;
|
|
@@ -2797,7 +2796,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2797
2796
|
masks?: readonly string[];
|
|
2798
2797
|
tags?: readonly string[];
|
|
2799
2798
|
allowTargetBlank?: boolean;
|
|
2800
|
-
|
|
2799
|
+
text?: {
|
|
2801
2800
|
type: "Text";
|
|
2802
2801
|
} & {
|
|
2803
2802
|
fieldset?: string | null | undefined;
|
|
@@ -2974,7 +2973,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2974
2973
|
masks?: readonly string[];
|
|
2975
2974
|
tags?: readonly string[];
|
|
2976
2975
|
allowTargetBlank?: boolean;
|
|
2977
|
-
|
|
2976
|
+
text?: {
|
|
2978
2977
|
type: "Text";
|
|
2979
2978
|
} & {
|
|
2980
2979
|
fieldset?: string | null | undefined;
|
|
@@ -3143,7 +3142,7 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3143
3142
|
masks?: readonly string[];
|
|
3144
3143
|
tags?: readonly string[];
|
|
3145
3144
|
allowTargetBlank?: boolean;
|
|
3146
|
-
|
|
3145
|
+
text?: {
|
|
3147
3146
|
type: "Text";
|
|
3148
3147
|
} & {
|
|
3149
3148
|
fieldset?: string | null | undefined;
|
|
@@ -3241,7 +3240,6 @@ export declare const CustomType: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3241
3240
|
}, unknown, unknown>>;
|
|
3242
3241
|
status: t.BooleanC;
|
|
3243
3242
|
}>, t.PartialC<{
|
|
3244
|
-
hash: t.StringC;
|
|
3245
3243
|
format: t.KeyofC<{
|
|
3246
3244
|
page: string;
|
|
3247
3245
|
custom: string;
|
|
@@ -93,7 +93,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
93
93
|
masks?: readonly string[];
|
|
94
94
|
tags?: readonly string[];
|
|
95
95
|
allowTargetBlank?: boolean;
|
|
96
|
-
|
|
96
|
+
text?: {
|
|
97
97
|
type: "Text";
|
|
98
98
|
} & {
|
|
99
99
|
fieldset?: string | null | undefined;
|
|
@@ -269,7 +269,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
269
269
|
masks?: readonly string[];
|
|
270
270
|
tags?: readonly string[];
|
|
271
271
|
allowTargetBlank?: boolean;
|
|
272
|
-
|
|
272
|
+
text?: {
|
|
273
273
|
type: "Text";
|
|
274
274
|
} & {
|
|
275
275
|
fieldset?: string | null | undefined;
|
|
@@ -445,7 +445,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
445
445
|
masks?: readonly string[];
|
|
446
446
|
tags?: readonly string[];
|
|
447
447
|
allowTargetBlank?: boolean;
|
|
448
|
-
|
|
448
|
+
text?: {
|
|
449
449
|
type: "Text";
|
|
450
450
|
} & {
|
|
451
451
|
fieldset?: string | null | undefined;
|
|
@@ -631,7 +631,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
631
631
|
masks?: readonly string[];
|
|
632
632
|
tags?: readonly string[];
|
|
633
633
|
allowTargetBlank?: boolean;
|
|
634
|
-
|
|
634
|
+
text?: {
|
|
635
635
|
type: "Text";
|
|
636
636
|
} & {
|
|
637
637
|
fieldset?: string | null | undefined;
|
|
@@ -807,7 +807,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
807
807
|
masks?: readonly string[];
|
|
808
808
|
tags?: readonly string[];
|
|
809
809
|
allowTargetBlank?: boolean;
|
|
810
|
-
|
|
810
|
+
text?: {
|
|
811
811
|
type: "Text";
|
|
812
812
|
} & {
|
|
813
813
|
fieldset?: string | null | undefined;
|
|
@@ -984,7 +984,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
984
984
|
masks?: readonly string[];
|
|
985
985
|
tags?: readonly string[];
|
|
986
986
|
allowTargetBlank?: boolean;
|
|
987
|
-
|
|
987
|
+
text?: {
|
|
988
988
|
type: "Text";
|
|
989
989
|
} & {
|
|
990
990
|
fieldset?: string | null | undefined;
|
|
@@ -1153,7 +1153,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1153
1153
|
masks?: readonly string[];
|
|
1154
1154
|
tags?: readonly string[];
|
|
1155
1155
|
allowTargetBlank?: boolean;
|
|
1156
|
-
|
|
1156
|
+
text?: {
|
|
1157
1157
|
type: "Text";
|
|
1158
1158
|
} & {
|
|
1159
1159
|
fieldset?: string | null | undefined;
|
|
@@ -1338,7 +1338,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1338
1338
|
masks?: readonly string[];
|
|
1339
1339
|
tags?: readonly string[];
|
|
1340
1340
|
allowTargetBlank?: boolean;
|
|
1341
|
-
|
|
1341
|
+
text?: {
|
|
1342
1342
|
type: "Text";
|
|
1343
1343
|
} & {
|
|
1344
1344
|
fieldset?: string | null | undefined;
|
|
@@ -1514,7 +1514,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1514
1514
|
masks?: readonly string[];
|
|
1515
1515
|
tags?: readonly string[];
|
|
1516
1516
|
allowTargetBlank?: boolean;
|
|
1517
|
-
|
|
1517
|
+
text?: {
|
|
1518
1518
|
type: "Text";
|
|
1519
1519
|
} & {
|
|
1520
1520
|
fieldset?: string | null | undefined;
|
|
@@ -1690,7 +1690,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1690
1690
|
masks?: readonly string[];
|
|
1691
1691
|
tags?: readonly string[];
|
|
1692
1692
|
allowTargetBlank?: boolean;
|
|
1693
|
-
|
|
1693
|
+
text?: {
|
|
1694
1694
|
type: "Text";
|
|
1695
1695
|
} & {
|
|
1696
1696
|
fieldset?: string | null | undefined;
|
|
@@ -1865,7 +1865,7 @@ export declare const StaticSection: t.RecordC<t.Type<string, string, unknown>, t
|
|
|
1865
1865
|
masks?: readonly string[];
|
|
1866
1866
|
tags?: readonly string[];
|
|
1867
1867
|
allowTargetBlank?: boolean;
|
|
1868
|
-
|
|
1868
|
+
text?: {
|
|
1869
1869
|
type: "Text";
|
|
1870
1870
|
} & {
|
|
1871
1871
|
fieldset?: string | null | undefined;
|
|
@@ -2053,7 +2053,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2053
2053
|
masks?: readonly string[];
|
|
2054
2054
|
tags?: readonly string[];
|
|
2055
2055
|
allowTargetBlank?: boolean;
|
|
2056
|
-
|
|
2056
|
+
text?: {
|
|
2057
2057
|
type: "Text";
|
|
2058
2058
|
} & {
|
|
2059
2059
|
fieldset?: string | null | undefined;
|
|
@@ -2229,7 +2229,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2229
2229
|
masks?: readonly string[];
|
|
2230
2230
|
tags?: readonly string[];
|
|
2231
2231
|
allowTargetBlank?: boolean;
|
|
2232
|
-
|
|
2232
|
+
text?: {
|
|
2233
2233
|
type: "Text";
|
|
2234
2234
|
} & {
|
|
2235
2235
|
fieldset?: string | null | undefined;
|
|
@@ -2405,7 +2405,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2405
2405
|
masks?: readonly string[];
|
|
2406
2406
|
tags?: readonly string[];
|
|
2407
2407
|
allowTargetBlank?: boolean;
|
|
2408
|
-
|
|
2408
|
+
text?: {
|
|
2409
2409
|
type: "Text";
|
|
2410
2410
|
} & {
|
|
2411
2411
|
fieldset?: string | null | undefined;
|
|
@@ -2591,7 +2591,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2591
2591
|
masks?: readonly string[];
|
|
2592
2592
|
tags?: readonly string[];
|
|
2593
2593
|
allowTargetBlank?: boolean;
|
|
2594
|
-
|
|
2594
|
+
text?: {
|
|
2595
2595
|
type: "Text";
|
|
2596
2596
|
} & {
|
|
2597
2597
|
fieldset?: string | null | undefined;
|
|
@@ -2767,7 +2767,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2767
2767
|
masks?: readonly string[];
|
|
2768
2768
|
tags?: readonly string[];
|
|
2769
2769
|
allowTargetBlank?: boolean;
|
|
2770
|
-
|
|
2770
|
+
text?: {
|
|
2771
2771
|
type: "Text";
|
|
2772
2772
|
} & {
|
|
2773
2773
|
fieldset?: string | null | undefined;
|
|
@@ -2944,7 +2944,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
2944
2944
|
masks?: readonly string[];
|
|
2945
2945
|
tags?: readonly string[];
|
|
2946
2946
|
allowTargetBlank?: boolean;
|
|
2947
|
-
|
|
2947
|
+
text?: {
|
|
2948
2948
|
type: "Text";
|
|
2949
2949
|
} & {
|
|
2950
2950
|
fieldset?: string | null | undefined;
|
|
@@ -3113,7 +3113,7 @@ export declare const DynamicSection: t.RecordC<t.Type<string, string, unknown>,
|
|
|
3113
3113
|
masks?: readonly string[];
|
|
3114
3114
|
tags?: readonly string[];
|
|
3115
3115
|
allowTargetBlank?: boolean;
|
|
3116
|
-
|
|
3116
|
+
text?: {
|
|
3117
3117
|
type: "Text";
|
|
3118
3118
|
} & {
|
|
3119
3119
|
fieldset?: string | null | undefined;
|
|
@@ -111,7 +111,7 @@ export declare const SliceComparator: {
|
|
|
111
111
|
masks?: readonly string[];
|
|
112
112
|
tags?: readonly string[];
|
|
113
113
|
allowTargetBlank?: boolean;
|
|
114
|
-
|
|
114
|
+
text?: {
|
|
115
115
|
type: "Text";
|
|
116
116
|
} & {
|
|
117
117
|
fieldset?: string | null | undefined;
|
|
@@ -287,7 +287,7 @@ export declare const SliceComparator: {
|
|
|
287
287
|
masks?: readonly string[];
|
|
288
288
|
tags?: readonly string[];
|
|
289
289
|
allowTargetBlank?: boolean;
|
|
290
|
-
|
|
290
|
+
text?: {
|
|
291
291
|
type: "Text";
|
|
292
292
|
} & {
|
|
293
293
|
fieldset?: string | null | undefined;
|
|
@@ -463,7 +463,7 @@ export declare const SliceComparator: {
|
|
|
463
463
|
masks?: readonly string[];
|
|
464
464
|
tags?: readonly string[];
|
|
465
465
|
allowTargetBlank?: boolean;
|
|
466
|
-
|
|
466
|
+
text?: {
|
|
467
467
|
type: "Text";
|
|
468
468
|
} & {
|
|
469
469
|
fieldset?: string | null | undefined;
|
|
@@ -638,7 +638,7 @@ export declare const SliceComparator: {
|
|
|
638
638
|
masks?: readonly string[];
|
|
639
639
|
tags?: readonly string[];
|
|
640
640
|
allowTargetBlank?: boolean;
|
|
641
|
-
|
|
641
|
+
text?: {
|
|
642
642
|
type: "Text";
|
|
643
643
|
} & {
|
|
644
644
|
fieldset?: string | null | undefined;
|
|
@@ -826,7 +826,7 @@ export declare const SliceComparator: {
|
|
|
826
826
|
masks?: readonly string[];
|
|
827
827
|
tags?: readonly string[];
|
|
828
828
|
allowTargetBlank?: boolean;
|
|
829
|
-
|
|
829
|
+
text?: {
|
|
830
830
|
type: "Text";
|
|
831
831
|
} & {
|
|
832
832
|
fieldset?: string | null | undefined;
|
|
@@ -1002,7 +1002,7 @@ export declare const SliceComparator: {
|
|
|
1002
1002
|
masks?: readonly string[];
|
|
1003
1003
|
tags?: readonly string[];
|
|
1004
1004
|
allowTargetBlank?: boolean;
|
|
1005
|
-
|
|
1005
|
+
text?: {
|
|
1006
1006
|
type: "Text";
|
|
1007
1007
|
} & {
|
|
1008
1008
|
fieldset?: string | null | undefined;
|
|
@@ -1178,7 +1178,7 @@ export declare const SliceComparator: {
|
|
|
1178
1178
|
masks?: readonly string[];
|
|
1179
1179
|
tags?: readonly string[];
|
|
1180
1180
|
allowTargetBlank?: boolean;
|
|
1181
|
-
|
|
1181
|
+
text?: {
|
|
1182
1182
|
type: "Text";
|
|
1183
1183
|
} & {
|
|
1184
1184
|
fieldset?: string | null | undefined;
|
|
@@ -1353,7 +1353,7 @@ export declare const SliceComparator: {
|
|
|
1353
1353
|
masks?: readonly string[];
|
|
1354
1354
|
tags?: readonly string[];
|
|
1355
1355
|
allowTargetBlank?: boolean;
|
|
1356
|
-
|
|
1356
|
+
text?: {
|
|
1357
1357
|
type: "Text";
|
|
1358
1358
|
} & {
|
|
1359
1359
|
fieldset?: string | null | undefined;
|
|
@@ -108,7 +108,7 @@ export declare const VariationComparator: {
|
|
|
108
108
|
masks?: readonly string[];
|
|
109
109
|
tags?: readonly string[];
|
|
110
110
|
allowTargetBlank?: boolean;
|
|
111
|
-
|
|
111
|
+
text?: {
|
|
112
112
|
type: "Text";
|
|
113
113
|
} & {
|
|
114
114
|
fieldset?: string | null | undefined;
|
|
@@ -284,7 +284,7 @@ export declare const VariationComparator: {
|
|
|
284
284
|
masks?: readonly string[];
|
|
285
285
|
tags?: readonly string[];
|
|
286
286
|
allowTargetBlank?: boolean;
|
|
287
|
-
|
|
287
|
+
text?: {
|
|
288
288
|
type: "Text";
|
|
289
289
|
} & {
|
|
290
290
|
fieldset?: string | null | undefined;
|
|
@@ -460,7 +460,7 @@ export declare const VariationComparator: {
|
|
|
460
460
|
masks?: readonly string[];
|
|
461
461
|
tags?: readonly string[];
|
|
462
462
|
allowTargetBlank?: boolean;
|
|
463
|
-
|
|
463
|
+
text?: {
|
|
464
464
|
type: "Text";
|
|
465
465
|
} & {
|
|
466
466
|
fieldset?: string | null | undefined;
|
|
@@ -635,7 +635,7 @@ export declare const VariationComparator: {
|
|
|
635
635
|
masks?: readonly string[];
|
|
636
636
|
tags?: readonly string[];
|
|
637
637
|
allowTargetBlank?: boolean;
|
|
638
|
-
|
|
638
|
+
text?: {
|
|
639
639
|
type: "Text";
|
|
640
640
|
} & {
|
|
641
641
|
fieldset?: string | null | undefined;
|
|
@@ -813,7 +813,7 @@ export declare const VariationComparator: {
|
|
|
813
813
|
masks?: readonly string[];
|
|
814
814
|
tags?: readonly string[];
|
|
815
815
|
allowTargetBlank?: boolean;
|
|
816
|
-
|
|
816
|
+
text?: {
|
|
817
817
|
type: "Text";
|
|
818
818
|
} & {
|
|
819
819
|
fieldset?: string | null | undefined;
|
|
@@ -989,7 +989,7 @@ export declare const VariationComparator: {
|
|
|
989
989
|
masks?: readonly string[];
|
|
990
990
|
tags?: readonly string[];
|
|
991
991
|
allowTargetBlank?: boolean;
|
|
992
|
-
|
|
992
|
+
text?: {
|
|
993
993
|
type: "Text";
|
|
994
994
|
} & {
|
|
995
995
|
fieldset?: string | null | undefined;
|
|
@@ -1165,7 +1165,7 @@ export declare const VariationComparator: {
|
|
|
1165
1165
|
masks?: readonly string[];
|
|
1166
1166
|
tags?: readonly string[];
|
|
1167
1167
|
allowTargetBlank?: boolean;
|
|
1168
|
-
|
|
1168
|
+
text?: {
|
|
1169
1169
|
type: "Text";
|
|
1170
1170
|
} & {
|
|
1171
1171
|
fieldset?: string | null | undefined;
|
|
@@ -1340,7 +1340,7 @@ export declare const VariationComparator: {
|
|
|
1340
1340
|
masks?: readonly string[];
|
|
1341
1341
|
tags?: readonly string[];
|
|
1342
1342
|
allowTargetBlank?: boolean;
|
|
1343
|
-
|
|
1343
|
+
text?: {
|
|
1344
1344
|
type: "Text";
|
|
1345
1345
|
} & {
|
|
1346
1346
|
fieldset?: string | null | undefined;
|
|
@@ -131,7 +131,7 @@ export declare const NestedGroupConfig: t.ExactC<t.PartialC<{
|
|
|
131
131
|
masks: t.Type<readonly string[], object, unknown>;
|
|
132
132
|
tags: t.Type<readonly string[], object, unknown>;
|
|
133
133
|
allowTargetBlank: t.BooleanC;
|
|
134
|
-
|
|
134
|
+
text: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
135
135
|
type: t.LiteralC<"Text">;
|
|
136
136
|
}>, t.PartialC<{
|
|
137
137
|
fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -309,7 +309,7 @@ export declare const NestedGroup: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
309
309
|
masks: t.Type<readonly string[], object, unknown>;
|
|
310
310
|
tags: t.Type<readonly string[], object, unknown>;
|
|
311
311
|
allowTargetBlank: t.BooleanC;
|
|
312
|
-
|
|
312
|
+
text: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
313
313
|
type: t.LiteralC<"Text">;
|
|
314
314
|
}>, t.PartialC<{
|
|
315
315
|
fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -482,7 +482,7 @@ export declare const GroupConfig: t.ExactC<t.PartialC<{
|
|
|
482
482
|
masks: t.Type<readonly string[], object, unknown>;
|
|
483
483
|
tags: t.Type<readonly string[], object, unknown>;
|
|
484
484
|
allowTargetBlank: t.BooleanC;
|
|
485
|
-
|
|
485
|
+
text: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
486
486
|
type: t.LiteralC<"Text">;
|
|
487
487
|
}>, t.PartialC<{
|
|
488
488
|
fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -657,7 +657,7 @@ export declare const GroupConfig: t.ExactC<t.PartialC<{
|
|
|
657
657
|
masks: t.Type<readonly string[], object, unknown>;
|
|
658
658
|
tags: t.Type<readonly string[], object, unknown>;
|
|
659
659
|
allowTargetBlank: t.BooleanC;
|
|
660
|
-
|
|
660
|
+
text: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
661
661
|
type: t.LiteralC<"Text">;
|
|
662
662
|
}>, t.PartialC<{
|
|
663
663
|
fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -837,7 +837,7 @@ export declare const Group: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
837
837
|
masks: t.Type<readonly string[], object, unknown>;
|
|
838
838
|
tags: t.Type<readonly string[], object, unknown>;
|
|
839
839
|
allowTargetBlank: t.BooleanC;
|
|
840
|
-
|
|
840
|
+
text: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
841
841
|
type: t.LiteralC<"Text">;
|
|
842
842
|
}>, t.PartialC<{
|
|
843
843
|
fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|
|
@@ -1012,7 +1012,7 @@ export declare const Group: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
1012
1012
|
masks: t.Type<readonly string[], object, unknown>;
|
|
1013
1013
|
tags: t.Type<readonly string[], object, unknown>;
|
|
1014
1014
|
allowTargetBlank: t.BooleanC;
|
|
1015
|
-
|
|
1015
|
+
text: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
1016
1016
|
type: t.LiteralC<"Text">;
|
|
1017
1017
|
}>, t.PartialC<{
|
|
1018
1018
|
fieldset: t.UnionC<[t.Type<string, string, unknown>, t.NullC, t.UndefinedC]>;
|