@gravity-ui/blog-constructor 4.1.1 → 4.1.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/CHANGELOG.md +7 -0
- package/build/cjs/blocks/Banner/schema.d.ts +7 -3
- package/build/cjs/blocks/CTA/schema.d.ts +7 -3
- package/build/cjs/blocks/ColoredText/schema.d.ts +8 -3
- package/build/cjs/blocks/Header/schema.d.ts +38 -15
- package/build/cjs/blocks/Media/schema.d.ts +16 -6
- package/build/cjs/components/PostInfo/components/Sharing.js +1 -1
- package/build/cjs/containers/BlogPage/BlogPage.js +1 -1
- package/build/cjs/containers/BlogPostPage/BlogPostPage.js +18 -19
- package/build/cjs/schema/index.d.ts +76 -30
- package/build/esm/blocks/Banner/schema.d.ts +7 -3
- package/build/esm/blocks/CTA/schema.d.ts +7 -3
- package/build/esm/blocks/ColoredText/schema.d.ts +8 -3
- package/build/esm/blocks/Header/schema.d.ts +38 -15
- package/build/esm/blocks/Media/schema.d.ts +16 -6
- package/build/esm/components/PostInfo/components/Sharing.js +1 -1
- package/build/esm/containers/BlogPage/BlogPage.js +2 -2
- package/build/esm/containers/BlogPostPage/BlogPostPage.js +18 -19
- package/build/esm/schema/index.d.ts +76 -30
- package/package.json +2 -2
@@ -22,6 +22,7 @@ export declare const schemasForCustom: {
|
|
22
22
|
description: {
|
23
23
|
type: string;
|
24
24
|
contentType: string;
|
25
|
+
inputType: string;
|
25
26
|
};
|
26
27
|
width: {
|
27
28
|
type: string;
|
@@ -43,7 +44,7 @@ export declare const schemasForCustom: {
|
|
43
44
|
enum: string[];
|
44
45
|
};
|
45
46
|
image: {
|
46
|
-
oneOf: ({
|
47
|
+
oneOf: (({
|
47
48
|
oneOf: ({
|
48
49
|
type: string;
|
49
50
|
properties: {
|
@@ -54,16 +55,20 @@ export declare const schemasForCustom: {
|
|
54
55
|
} | {
|
55
56
|
type: string;
|
56
57
|
pattern: string;
|
58
|
+
optionName: string;
|
57
59
|
})[];
|
58
|
-
}
|
60
|
+
} & {
|
61
|
+
optionName: string;
|
62
|
+
}) | {
|
59
63
|
type: string;
|
60
64
|
additionalProperties: boolean;
|
61
65
|
required: import("@gravity-ui/page-constructor").Theme[];
|
62
66
|
properties: {};
|
67
|
+
optionName: string;
|
63
68
|
})[];
|
64
69
|
};
|
65
70
|
video: {
|
66
|
-
oneOf: ({
|
71
|
+
oneOf: (({
|
67
72
|
type: string;
|
68
73
|
additionalProperties: boolean;
|
69
74
|
required: string[];
|
@@ -75,7 +80,8 @@ export declare const schemasForCustom: {
|
|
75
80
|
};
|
76
81
|
};
|
77
82
|
loop: {
|
78
|
-
|
83
|
+
oneOf: ({
|
84
|
+
optionName: string;
|
79
85
|
type: string;
|
80
86
|
additionalProperties: boolean;
|
81
87
|
required: string[];
|
@@ -89,6 +95,7 @@ export declare const schemasForCustom: {
|
|
89
95
|
};
|
90
96
|
} | {
|
91
97
|
type: string;
|
98
|
+
optionName: string;
|
92
99
|
})[];
|
93
100
|
};
|
94
101
|
type: {
|
@@ -98,13 +105,13 @@ export declare const schemasForCustom: {
|
|
98
105
|
muted: {
|
99
106
|
type: string;
|
100
107
|
};
|
101
|
-
|
108
|
+
autoplay: {
|
102
109
|
type: string;
|
103
110
|
};
|
104
111
|
elapsedTime: {
|
105
112
|
type: string;
|
106
113
|
};
|
107
|
-
|
114
|
+
playButton: {
|
108
115
|
type: string;
|
109
116
|
additionalProperties: boolean;
|
110
117
|
properties: {
|
@@ -127,11 +134,14 @@ export declare const schemasForCustom: {
|
|
127
134
|
enum: string[];
|
128
135
|
};
|
129
136
|
};
|
130
|
-
}
|
137
|
+
} & {
|
138
|
+
optionName: string;
|
139
|
+
}) | {
|
131
140
|
type: string;
|
132
141
|
additionalProperties: boolean;
|
133
142
|
required: import("@gravity-ui/page-constructor").Theme[];
|
134
143
|
properties: {};
|
144
|
+
optionName: string;
|
135
145
|
})[];
|
136
146
|
};
|
137
147
|
backLink: {
|
@@ -156,7 +166,7 @@ export declare const schemasForCustom: {
|
|
156
166
|
enum: string[];
|
157
167
|
};
|
158
168
|
background: {
|
159
|
-
oneOf: ({
|
169
|
+
oneOf: (({
|
160
170
|
type: string;
|
161
171
|
additionalProperties: boolean;
|
162
172
|
required: never[];
|
@@ -171,7 +181,8 @@ export declare const schemasForCustom: {
|
|
171
181
|
type: string;
|
172
182
|
};
|
173
183
|
image: {
|
174
|
-
|
184
|
+
oneOf: ({
|
185
|
+
optionName: string;
|
175
186
|
oneOf: ({
|
176
187
|
type: string;
|
177
188
|
properties: {
|
@@ -182,7 +193,10 @@ export declare const schemasForCustom: {
|
|
182
193
|
} | {
|
183
194
|
type: string;
|
184
195
|
pattern: string;
|
196
|
+
optionName: string;
|
185
197
|
})[];
|
198
|
+
type?: undefined;
|
199
|
+
items?: undefined;
|
186
200
|
} | {
|
187
201
|
type: string;
|
188
202
|
items: {
|
@@ -196,8 +210,10 @@ export declare const schemasForCustom: {
|
|
196
210
|
} | {
|
197
211
|
type: string;
|
198
212
|
pattern: string;
|
213
|
+
optionName: string;
|
199
214
|
})[];
|
200
215
|
};
|
216
|
+
optionName: string;
|
201
217
|
})[];
|
202
218
|
};
|
203
219
|
video: {
|
@@ -212,7 +228,8 @@ export declare const schemasForCustom: {
|
|
212
228
|
};
|
213
229
|
};
|
214
230
|
loop: {
|
215
|
-
|
231
|
+
oneOf: ({
|
232
|
+
optionName: string;
|
216
233
|
type: string;
|
217
234
|
additionalProperties: boolean;
|
218
235
|
required: string[];
|
@@ -226,6 +243,7 @@ export declare const schemasForCustom: {
|
|
226
243
|
};
|
227
244
|
} | {
|
228
245
|
type: string;
|
246
|
+
optionName: string;
|
229
247
|
})[];
|
230
248
|
};
|
231
249
|
type: {
|
@@ -235,13 +253,13 @@ export declare const schemasForCustom: {
|
|
235
253
|
muted: {
|
236
254
|
type: string;
|
237
255
|
};
|
238
|
-
|
256
|
+
autoplay: {
|
239
257
|
type: string;
|
240
258
|
};
|
241
259
|
elapsedTime: {
|
242
260
|
type: string;
|
243
261
|
};
|
244
|
-
|
262
|
+
playButton: {
|
245
263
|
type: string;
|
246
264
|
additionalProperties: boolean;
|
247
265
|
properties: {
|
@@ -279,6 +297,10 @@ export declare const schemasForCustom: {
|
|
279
297
|
};
|
280
298
|
dataLens: {
|
281
299
|
oneOf: ({
|
300
|
+
type: string;
|
301
|
+
optionName: string;
|
302
|
+
} | {
|
303
|
+
optionName: string;
|
282
304
|
type: string;
|
283
305
|
additionalProperties: boolean;
|
284
306
|
required: string[];
|
@@ -291,8 +313,6 @@ export declare const schemasForCustom: {
|
|
291
313
|
enum: string[];
|
292
314
|
};
|
293
315
|
};
|
294
|
-
} | {
|
295
|
-
type: string;
|
296
316
|
})[];
|
297
317
|
};
|
298
318
|
fullscreen: {
|
@@ -377,11 +397,14 @@ export declare const schemasForCustom: {
|
|
377
397
|
})[];
|
378
398
|
};
|
379
399
|
};
|
380
|
-
}
|
400
|
+
} & {
|
401
|
+
optionName: string;
|
402
|
+
}) | {
|
381
403
|
type: string;
|
382
404
|
additionalProperties: boolean;
|
383
405
|
required: import("@gravity-ui/page-constructor").Theme[];
|
384
406
|
properties: {};
|
407
|
+
optionName: string;
|
385
408
|
})[];
|
386
409
|
};
|
387
410
|
theme: {
|
@@ -536,6 +559,11 @@ export declare const schemasForCustom: {
|
|
536
559
|
};
|
537
560
|
title: {
|
538
561
|
oneOf: ({
|
562
|
+
type: string;
|
563
|
+
contentType: string;
|
564
|
+
optionName: string;
|
565
|
+
} | {
|
566
|
+
optionName: string;
|
539
567
|
type: string;
|
540
568
|
additionalProperties: boolean;
|
541
569
|
required: string[];
|
@@ -555,14 +583,13 @@ export declare const schemasForCustom: {
|
|
555
583
|
type: string;
|
556
584
|
};
|
557
585
|
};
|
558
|
-
|
559
|
-
type: string;
|
560
|
-
contentType: string;
|
586
|
+
contentType?: undefined;
|
561
587
|
})[];
|
562
588
|
};
|
563
589
|
text: {
|
564
590
|
type: string;
|
565
591
|
contentType: string;
|
592
|
+
inputType: string;
|
566
593
|
};
|
567
594
|
additionalInfo: {
|
568
595
|
type: string;
|
@@ -663,6 +690,7 @@ export declare const schemasForCustom: {
|
|
663
690
|
} | {
|
664
691
|
type: string;
|
665
692
|
pattern: string;
|
693
|
+
optionName: string;
|
666
694
|
})[];
|
667
695
|
};
|
668
696
|
color: {
|
@@ -676,6 +704,11 @@ export declare const schemasForCustom: {
|
|
676
704
|
};
|
677
705
|
title: {
|
678
706
|
oneOf: ({
|
707
|
+
type: string;
|
708
|
+
contentType: string;
|
709
|
+
optionName: string;
|
710
|
+
} | {
|
711
|
+
optionName: string;
|
679
712
|
type: string;
|
680
713
|
additionalProperties: boolean;
|
681
714
|
required: string[];
|
@@ -695,14 +728,13 @@ export declare const schemasForCustom: {
|
|
695
728
|
type: string;
|
696
729
|
};
|
697
730
|
};
|
698
|
-
|
699
|
-
type: string;
|
700
|
-
contentType: string;
|
731
|
+
contentType?: undefined;
|
701
732
|
})[];
|
702
733
|
};
|
703
734
|
text: {
|
704
735
|
type: string;
|
705
736
|
contentType: string;
|
737
|
+
inputType: string;
|
706
738
|
};
|
707
739
|
additionalInfo: {
|
708
740
|
type: string;
|
@@ -797,6 +829,11 @@ export declare const schemasForCustom: {
|
|
797
829
|
properties: {
|
798
830
|
title: {
|
799
831
|
oneOf: ({
|
832
|
+
type: string;
|
833
|
+
contentType: string;
|
834
|
+
optionName: string;
|
835
|
+
} | {
|
836
|
+
optionName: string;
|
800
837
|
type: string;
|
801
838
|
additionalProperties: boolean;
|
802
839
|
required: string[];
|
@@ -816,14 +853,13 @@ export declare const schemasForCustom: {
|
|
816
853
|
type: string;
|
817
854
|
};
|
818
855
|
};
|
819
|
-
|
820
|
-
type: string;
|
821
|
-
contentType: string;
|
856
|
+
contentType?: undefined;
|
822
857
|
})[];
|
823
858
|
};
|
824
859
|
text: {
|
825
860
|
type: string;
|
826
861
|
contentType: string;
|
862
|
+
inputType: string;
|
827
863
|
};
|
828
864
|
additionalInfo: {
|
829
865
|
type: string;
|
@@ -1045,7 +1081,8 @@ export declare const schemasForCustom: {
|
|
1045
1081
|
type: string;
|
1046
1082
|
};
|
1047
1083
|
image: {
|
1048
|
-
|
1084
|
+
oneOf: ({
|
1085
|
+
optionName: string;
|
1049
1086
|
oneOf: ({
|
1050
1087
|
type: string;
|
1051
1088
|
properties: {
|
@@ -1056,7 +1093,10 @@ export declare const schemasForCustom: {
|
|
1056
1093
|
} | {
|
1057
1094
|
type: string;
|
1058
1095
|
pattern: string;
|
1096
|
+
optionName: string;
|
1059
1097
|
})[];
|
1098
|
+
type?: undefined;
|
1099
|
+
items?: undefined;
|
1060
1100
|
} | {
|
1061
1101
|
type: string;
|
1062
1102
|
items: {
|
@@ -1070,8 +1110,10 @@ export declare const schemasForCustom: {
|
|
1070
1110
|
} | {
|
1071
1111
|
type: string;
|
1072
1112
|
pattern: string;
|
1113
|
+
optionName: string;
|
1073
1114
|
})[];
|
1074
1115
|
};
|
1116
|
+
optionName: string;
|
1075
1117
|
})[];
|
1076
1118
|
};
|
1077
1119
|
video: {
|
@@ -1086,7 +1128,8 @@ export declare const schemasForCustom: {
|
|
1086
1128
|
};
|
1087
1129
|
};
|
1088
1130
|
loop: {
|
1089
|
-
|
1131
|
+
oneOf: ({
|
1132
|
+
optionName: string;
|
1090
1133
|
type: string;
|
1091
1134
|
additionalProperties: boolean;
|
1092
1135
|
required: string[];
|
@@ -1100,6 +1143,7 @@ export declare const schemasForCustom: {
|
|
1100
1143
|
};
|
1101
1144
|
} | {
|
1102
1145
|
type: string;
|
1146
|
+
optionName: string;
|
1103
1147
|
})[];
|
1104
1148
|
};
|
1105
1149
|
type: {
|
@@ -1109,13 +1153,13 @@ export declare const schemasForCustom: {
|
|
1109
1153
|
muted: {
|
1110
1154
|
type: string;
|
1111
1155
|
};
|
1112
|
-
|
1156
|
+
autoplay: {
|
1113
1157
|
type: string;
|
1114
1158
|
};
|
1115
1159
|
elapsedTime: {
|
1116
1160
|
type: string;
|
1117
1161
|
};
|
1118
|
-
|
1162
|
+
playButton: {
|
1119
1163
|
type: string;
|
1120
1164
|
additionalProperties: boolean;
|
1121
1165
|
properties: {
|
@@ -1153,6 +1197,10 @@ export declare const schemasForCustom: {
|
|
1153
1197
|
};
|
1154
1198
|
dataLens: {
|
1155
1199
|
oneOf: ({
|
1200
|
+
type: string;
|
1201
|
+
optionName: string;
|
1202
|
+
} | {
|
1203
|
+
optionName: string;
|
1156
1204
|
type: string;
|
1157
1205
|
additionalProperties: boolean;
|
1158
1206
|
required: string[];
|
@@ -1165,8 +1213,6 @@ export declare const schemasForCustom: {
|
|
1165
1213
|
enum: string[];
|
1166
1214
|
};
|
1167
1215
|
};
|
1168
|
-
} | {
|
1169
|
-
type: string;
|
1170
1216
|
})[];
|
1171
1217
|
};
|
1172
1218
|
fullscreen: {
|
@@ -16,6 +16,11 @@ export declare const Banner: {
|
|
16
16
|
};
|
17
17
|
title: {
|
18
18
|
oneOf: ({
|
19
|
+
type: string;
|
20
|
+
contentType: string;
|
21
|
+
optionName: string;
|
22
|
+
} | {
|
23
|
+
optionName: string;
|
19
24
|
type: string;
|
20
25
|
additionalProperties: boolean;
|
21
26
|
required: string[];
|
@@ -35,14 +40,13 @@ export declare const Banner: {
|
|
35
40
|
type: string;
|
36
41
|
};
|
37
42
|
};
|
38
|
-
|
39
|
-
type: string;
|
40
|
-
contentType: string;
|
43
|
+
contentType?: undefined;
|
41
44
|
})[];
|
42
45
|
};
|
43
46
|
text: {
|
44
47
|
type: string;
|
45
48
|
contentType: string;
|
49
|
+
inputType: string;
|
46
50
|
};
|
47
51
|
additionalInfo: {
|
48
52
|
type: string;
|
@@ -13,6 +13,11 @@ export declare const CTA: {
|
|
13
13
|
properties: {
|
14
14
|
title: {
|
15
15
|
oneOf: ({
|
16
|
+
type: string;
|
17
|
+
contentType: string;
|
18
|
+
optionName: string;
|
19
|
+
} | {
|
20
|
+
optionName: string;
|
16
21
|
type: string;
|
17
22
|
additionalProperties: boolean;
|
18
23
|
required: string[];
|
@@ -32,14 +37,13 @@ export declare const CTA: {
|
|
32
37
|
type: string;
|
33
38
|
};
|
34
39
|
};
|
35
|
-
|
36
|
-
type: string;
|
37
|
-
contentType: string;
|
40
|
+
contentType?: undefined;
|
38
41
|
})[];
|
39
42
|
};
|
40
43
|
text: {
|
41
44
|
type: string;
|
42
45
|
contentType: string;
|
46
|
+
inputType: string;
|
43
47
|
};
|
44
48
|
additionalInfo: {
|
45
49
|
type: string;
|
@@ -19,6 +19,7 @@ export declare const ColoredText: {
|
|
19
19
|
} | {
|
20
20
|
type: string;
|
21
21
|
pattern: string;
|
22
|
+
optionName: string;
|
22
23
|
})[];
|
23
24
|
};
|
24
25
|
color: {
|
@@ -32,6 +33,11 @@ export declare const ColoredText: {
|
|
32
33
|
};
|
33
34
|
title: {
|
34
35
|
oneOf: ({
|
36
|
+
type: string;
|
37
|
+
contentType: string;
|
38
|
+
optionName: string;
|
39
|
+
} | {
|
40
|
+
optionName: string;
|
35
41
|
type: string;
|
36
42
|
additionalProperties: boolean;
|
37
43
|
required: string[];
|
@@ -51,14 +57,13 @@ export declare const ColoredText: {
|
|
51
57
|
type: string;
|
52
58
|
};
|
53
59
|
};
|
54
|
-
|
55
|
-
type: string;
|
56
|
-
contentType: string;
|
60
|
+
contentType?: undefined;
|
57
61
|
})[];
|
58
62
|
};
|
59
63
|
text: {
|
60
64
|
type: string;
|
61
65
|
contentType: string;
|
66
|
+
inputType: string;
|
62
67
|
};
|
63
68
|
additionalInfo: {
|
64
69
|
type: string;
|
@@ -14,6 +14,7 @@ export declare const Header: {
|
|
14
14
|
description: {
|
15
15
|
type: string;
|
16
16
|
contentType: string;
|
17
|
+
inputType: string;
|
17
18
|
};
|
18
19
|
width: {
|
19
20
|
type: string;
|
@@ -35,7 +36,7 @@ export declare const Header: {
|
|
35
36
|
enum: string[];
|
36
37
|
};
|
37
38
|
image: {
|
38
|
-
oneOf: ({
|
39
|
+
oneOf: (({
|
39
40
|
oneOf: ({
|
40
41
|
type: string;
|
41
42
|
properties: {
|
@@ -46,16 +47,20 @@ export declare const Header: {
|
|
46
47
|
} | {
|
47
48
|
type: string;
|
48
49
|
pattern: string;
|
50
|
+
optionName: string;
|
49
51
|
})[];
|
50
|
-
}
|
52
|
+
} & {
|
53
|
+
optionName: string;
|
54
|
+
}) | {
|
51
55
|
type: string;
|
52
56
|
additionalProperties: boolean;
|
53
57
|
required: import("@gravity-ui/page-constructor").Theme[];
|
54
58
|
properties: {};
|
59
|
+
optionName: string;
|
55
60
|
})[];
|
56
61
|
};
|
57
62
|
video: {
|
58
|
-
oneOf: ({
|
63
|
+
oneOf: (({
|
59
64
|
type: string;
|
60
65
|
additionalProperties: boolean;
|
61
66
|
required: string[];
|
@@ -67,7 +72,8 @@ export declare const Header: {
|
|
67
72
|
};
|
68
73
|
};
|
69
74
|
loop: {
|
70
|
-
|
75
|
+
oneOf: ({
|
76
|
+
optionName: string;
|
71
77
|
type: string;
|
72
78
|
additionalProperties: boolean;
|
73
79
|
required: string[];
|
@@ -81,6 +87,7 @@ export declare const Header: {
|
|
81
87
|
};
|
82
88
|
} | {
|
83
89
|
type: string;
|
90
|
+
optionName: string;
|
84
91
|
})[];
|
85
92
|
};
|
86
93
|
type: {
|
@@ -90,13 +97,13 @@ export declare const Header: {
|
|
90
97
|
muted: {
|
91
98
|
type: string;
|
92
99
|
};
|
93
|
-
|
100
|
+
autoplay: {
|
94
101
|
type: string;
|
95
102
|
};
|
96
103
|
elapsedTime: {
|
97
104
|
type: string;
|
98
105
|
};
|
99
|
-
|
106
|
+
playButton: {
|
100
107
|
type: string;
|
101
108
|
additionalProperties: boolean;
|
102
109
|
properties: {
|
@@ -119,11 +126,14 @@ export declare const Header: {
|
|
119
126
|
enum: string[];
|
120
127
|
};
|
121
128
|
};
|
122
|
-
}
|
129
|
+
} & {
|
130
|
+
optionName: string;
|
131
|
+
}) | {
|
123
132
|
type: string;
|
124
133
|
additionalProperties: boolean;
|
125
134
|
required: import("@gravity-ui/page-constructor").Theme[];
|
126
135
|
properties: {};
|
136
|
+
optionName: string;
|
127
137
|
})[];
|
128
138
|
};
|
129
139
|
backLink: {
|
@@ -148,7 +158,7 @@ export declare const Header: {
|
|
148
158
|
enum: string[];
|
149
159
|
};
|
150
160
|
background: {
|
151
|
-
oneOf: ({
|
161
|
+
oneOf: (({
|
152
162
|
type: string;
|
153
163
|
additionalProperties: boolean;
|
154
164
|
required: never[];
|
@@ -163,7 +173,8 @@ export declare const Header: {
|
|
163
173
|
type: string;
|
164
174
|
};
|
165
175
|
image: {
|
166
|
-
|
176
|
+
oneOf: ({
|
177
|
+
optionName: string;
|
167
178
|
oneOf: ({
|
168
179
|
type: string;
|
169
180
|
properties: {
|
@@ -174,7 +185,10 @@ export declare const Header: {
|
|
174
185
|
} | {
|
175
186
|
type: string;
|
176
187
|
pattern: string;
|
188
|
+
optionName: string;
|
177
189
|
})[];
|
190
|
+
type?: undefined;
|
191
|
+
items?: undefined;
|
178
192
|
} | {
|
179
193
|
type: string;
|
180
194
|
items: {
|
@@ -188,8 +202,10 @@ export declare const Header: {
|
|
188
202
|
} | {
|
189
203
|
type: string;
|
190
204
|
pattern: string;
|
205
|
+
optionName: string;
|
191
206
|
})[];
|
192
207
|
};
|
208
|
+
optionName: string;
|
193
209
|
})[];
|
194
210
|
};
|
195
211
|
video: {
|
@@ -204,7 +220,8 @@ export declare const Header: {
|
|
204
220
|
};
|
205
221
|
};
|
206
222
|
loop: {
|
207
|
-
|
223
|
+
oneOf: ({
|
224
|
+
optionName: string;
|
208
225
|
type: string;
|
209
226
|
additionalProperties: boolean;
|
210
227
|
required: string[];
|
@@ -218,6 +235,7 @@ export declare const Header: {
|
|
218
235
|
};
|
219
236
|
} | {
|
220
237
|
type: string;
|
238
|
+
optionName: string;
|
221
239
|
})[];
|
222
240
|
};
|
223
241
|
type: {
|
@@ -227,13 +245,13 @@ export declare const Header: {
|
|
227
245
|
muted: {
|
228
246
|
type: string;
|
229
247
|
};
|
230
|
-
|
248
|
+
autoplay: {
|
231
249
|
type: string;
|
232
250
|
};
|
233
251
|
elapsedTime: {
|
234
252
|
type: string;
|
235
253
|
};
|
236
|
-
|
254
|
+
playButton: {
|
237
255
|
type: string;
|
238
256
|
additionalProperties: boolean;
|
239
257
|
properties: {
|
@@ -271,6 +289,10 @@ export declare const Header: {
|
|
271
289
|
};
|
272
290
|
dataLens: {
|
273
291
|
oneOf: ({
|
292
|
+
type: string;
|
293
|
+
optionName: string;
|
294
|
+
} | {
|
295
|
+
optionName: string;
|
274
296
|
type: string;
|
275
297
|
additionalProperties: boolean;
|
276
298
|
required: string[];
|
@@ -283,8 +305,6 @@ export declare const Header: {
|
|
283
305
|
enum: string[];
|
284
306
|
};
|
285
307
|
};
|
286
|
-
} | {
|
287
|
-
type: string;
|
288
308
|
})[];
|
289
309
|
};
|
290
310
|
fullscreen: {
|
@@ -369,11 +389,14 @@ export declare const Header: {
|
|
369
389
|
})[];
|
370
390
|
};
|
371
391
|
};
|
372
|
-
}
|
392
|
+
} & {
|
393
|
+
optionName: string;
|
394
|
+
}) | {
|
373
395
|
type: string;
|
374
396
|
additionalProperties: boolean;
|
375
397
|
required: import("@gravity-ui/page-constructor").Theme[];
|
376
398
|
properties: {};
|
399
|
+
optionName: string;
|
377
400
|
})[];
|
378
401
|
};
|
379
402
|
theme: {
|