@gravity-ui/page-constructor 1.12.0 → 1.13.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.
- package/build/cjs/blocks/Banner/schema.d.ts +141 -0
- package/build/cjs/blocks/CardLayout/schema.d.ts +22 -24
- package/build/cjs/blocks/CardLayout/schema.js +1 -6
- package/build/cjs/blocks/ExtendedFeatures/schema.d.ts +16 -17
- package/build/cjs/blocks/ExtendedFeatures/schema.js +1 -6
- package/build/cjs/blocks/HeaderSlider/schema.d.ts +0 -25
- package/build/cjs/blocks/LinkTable/schema.d.ts +29 -21
- package/build/cjs/blocks/LinkTable/schema.js +1 -1
- package/build/cjs/blocks/Media/schema.d.ts +47 -0
- package/build/cjs/blocks/Media/schema.js +1 -1
- package/build/cjs/blocks/PromoFeaturesBlock/schema.d.ts +14 -15
- package/build/cjs/blocks/PromoFeaturesBlock/schema.js +1 -6
- package/build/cjs/blocks/Slider/schema.d.ts +28 -49
- package/build/cjs/blocks/Slider/schema.js +1 -6
- package/build/cjs/blocks/Tabs/schema.d.ts +29 -25
- package/build/cjs/blocks/Tabs/schema.js +1 -4
- package/build/cjs/components/BlockHeader/BlockHeader.css +8 -19
- package/build/cjs/components/BlockHeader/BlockHeader.js +4 -3
- package/build/cjs/components/Button/Button.js +3 -3
- package/build/cjs/components/CardBase/CardBase.d.ts +2 -1
- package/build/cjs/components/CardBase/CardBase.js +2 -2
- package/build/cjs/components/HeaderBreadcrumbs/HeaderBreadcrumbs.js +2 -2
- package/build/cjs/components/Link/Link.js +2 -2
- package/build/cjs/context/metrikaContext/metrikaContext.d.ts +2 -1
- package/build/cjs/hooks/useMetrika.d.ts +3 -2
- package/build/cjs/hooks/useMetrika.js +10 -2
- package/build/cjs/models/common.d.ts +4 -1
- package/build/cjs/models/constructor-items/common.d.ts +21 -0
- package/build/cjs/schema/validators/common.d.ts +125 -0
- package/build/cjs/schema/validators/common.js +12 -1
- package/build/cjs/schema/validators/ga-events.d.ts +47 -0
- package/build/cjs/schema/validators/ga-events.js +50 -0
- package/build/cjs/sub-blocks/CardWithImage/schema.js +1 -1
- package/build/cjs/text-transform/blocks.js +44 -54
- package/build/esm/blocks/Banner/schema.d.ts +141 -0
- package/build/esm/blocks/CardLayout/schema.d.ts +22 -24
- package/build/esm/blocks/CardLayout/schema.js +2 -7
- package/build/esm/blocks/ExtendedFeatures/schema.d.ts +16 -17
- package/build/esm/blocks/ExtendedFeatures/schema.js +2 -7
- package/build/esm/blocks/HeaderSlider/schema.d.ts +0 -25
- package/build/esm/blocks/LinkTable/schema.d.ts +29 -21
- package/build/esm/blocks/LinkTable/schema.js +2 -2
- package/build/esm/blocks/Media/schema.d.ts +47 -0
- package/build/esm/blocks/Media/schema.js +1 -1
- package/build/esm/blocks/PromoFeaturesBlock/schema.d.ts +14 -15
- package/build/esm/blocks/PromoFeaturesBlock/schema.js +2 -7
- package/build/esm/blocks/Slider/schema.d.ts +28 -49
- package/build/esm/blocks/Slider/schema.js +2 -7
- package/build/esm/blocks/Tabs/schema.d.ts +29 -25
- package/build/esm/blocks/Tabs/schema.js +2 -5
- package/build/esm/components/BlockHeader/BlockHeader.css +8 -19
- package/build/esm/components/BlockHeader/BlockHeader.js +5 -4
- package/build/esm/components/Button/Button.js +3 -3
- package/build/esm/components/CardBase/CardBase.d.ts +2 -1
- package/build/esm/components/CardBase/CardBase.js +2 -2
- package/build/esm/components/HeaderBreadcrumbs/HeaderBreadcrumbs.js +2 -2
- package/build/esm/components/Link/Link.js +2 -2
- package/build/esm/context/metrikaContext/metrikaContext.d.ts +2 -1
- package/build/esm/hooks/useMetrika.d.ts +3 -2
- package/build/esm/hooks/useMetrika.js +10 -2
- package/build/esm/models/common.d.ts +4 -1
- package/build/esm/models/constructor-items/common.d.ts +21 -0
- package/build/esm/schema/validators/common.d.ts +125 -0
- package/build/esm/schema/validators/common.js +11 -0
- package/build/esm/schema/validators/ga-events.d.ts +47 -0
- package/build/esm/schema/validators/ga-events.js +47 -0
- package/build/esm/sub-blocks/CardWithImage/schema.js +1 -1
- package/build/esm/text-transform/blocks.js +44 -54
- package/package.json +1 -1
- package/server/models/common.d.ts +4 -1
- package/server/models/constructor-items/common.d.ts +21 -0
- package/server/text-transform/blocks.js +44 -54
|
@@ -39,13 +39,6 @@ function parsePromoFeatures(transformer, items) {
|
|
|
39
39
|
return (Object.assign({ text: transformer(text) }, rest));
|
|
40
40
|
});
|
|
41
41
|
}
|
|
42
|
-
function parseSlider(transformer, block) {
|
|
43
|
-
const { title, description } = block;
|
|
44
|
-
block.title = Object.assign(Object.assign({}, title), { text: transformer(title ? title.text : '') });
|
|
45
|
-
if (description) {
|
|
46
|
-
block.description = transformer(description);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
42
|
const parseTitle = (transformer, title) => typeof title === 'object' && 'text' in title
|
|
50
43
|
? Object.assign(Object.assign({}, title), { text: transformer(title.text) }) : title && transformer(title);
|
|
51
44
|
const parseItemsTitle = (transformer, items) => items.map((_a) => {
|
|
@@ -101,6 +94,17 @@ function typografTransformer(lang, content) {
|
|
|
101
94
|
return (0, utils_1.typografToHTML)(content, lang);
|
|
102
95
|
}
|
|
103
96
|
exports.typografTransformer = typografTransformer;
|
|
97
|
+
const blockHeaderTransfomer = [
|
|
98
|
+
{
|
|
99
|
+
fields: ['title'],
|
|
100
|
+
transformer: typografTransformer,
|
|
101
|
+
parser: parseTitle,
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
fields: ['description'],
|
|
105
|
+
transformer: yfmTransformer,
|
|
106
|
+
},
|
|
107
|
+
];
|
|
104
108
|
const config = {
|
|
105
109
|
[models_1.SubBlockType.Partner]: {
|
|
106
110
|
fields: ['text'],
|
|
@@ -145,35 +149,35 @@ const config = {
|
|
|
145
149
|
transformer: typografTransformer,
|
|
146
150
|
},
|
|
147
151
|
[models_1.BlockType.ExtendedFeaturesBlock]: [
|
|
152
|
+
...blockHeaderTransfomer,
|
|
148
153
|
{
|
|
149
|
-
fields: ['
|
|
154
|
+
fields: ['items'],
|
|
150
155
|
transformer: typografTransformer,
|
|
151
|
-
parser:
|
|
156
|
+
parser: (0, exports.createItemsParser)(['title']),
|
|
152
157
|
},
|
|
153
158
|
{
|
|
154
|
-
fields: ['
|
|
159
|
+
fields: ['items'],
|
|
155
160
|
transformer: yfmTransformer,
|
|
161
|
+
parser: (0, exports.createItemsParser)(['text', 'additionalInfo']),
|
|
156
162
|
},
|
|
163
|
+
],
|
|
164
|
+
[models_1.BlockType.PromoFeaturesBlock]: [
|
|
157
165
|
{
|
|
158
|
-
fields: ['
|
|
166
|
+
fields: ['title'],
|
|
159
167
|
transformer: typografTransformer,
|
|
160
|
-
parser:
|
|
168
|
+
parser: parseTitle,
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
fields: ['description'],
|
|
172
|
+
transformer: yfmTransformer,
|
|
161
173
|
},
|
|
162
174
|
{
|
|
163
175
|
fields: ['items'],
|
|
164
176
|
transformer: yfmTransformer,
|
|
165
|
-
parser:
|
|
177
|
+
parser: parsePromoFeatures,
|
|
166
178
|
},
|
|
167
179
|
],
|
|
168
|
-
[models_1.BlockType.
|
|
169
|
-
fields: ['items'],
|
|
170
|
-
transformer: yfmTransformer,
|
|
171
|
-
parser: parsePromoFeatures,
|
|
172
|
-
},
|
|
173
|
-
[models_1.BlockType.SliderBlock]: {
|
|
174
|
-
transformer: typografTransformer,
|
|
175
|
-
parser: parseSlider,
|
|
176
|
-
},
|
|
180
|
+
[models_1.BlockType.SliderBlock]: blockHeaderTransfomer,
|
|
177
181
|
[models_1.BlockType.QuestionsBlock]: [
|
|
178
182
|
{
|
|
179
183
|
fields: ['title'],
|
|
@@ -210,21 +214,14 @@ const config = {
|
|
|
210
214
|
},
|
|
211
215
|
],
|
|
212
216
|
[models_1.BlockType.MediaBlock]: [
|
|
217
|
+
...blockHeaderTransfomer,
|
|
213
218
|
{
|
|
214
|
-
fields: ['title'],
|
|
215
|
-
transformer: typografTransformer,
|
|
216
|
-
},
|
|
217
|
-
{
|
|
218
|
-
fields: ['description', 'title', 'additionalInfo'],
|
|
219
|
+
fields: ['title', 'additionalInfo'],
|
|
219
220
|
transformer: yfmTransformer,
|
|
220
221
|
},
|
|
221
222
|
],
|
|
222
223
|
[models_1.BlockType.TabsBlock]: [
|
|
223
|
-
|
|
224
|
-
fields: ['title'],
|
|
225
|
-
transformer: typografTransformer,
|
|
226
|
-
parser: parseTitle,
|
|
227
|
-
},
|
|
224
|
+
...blockHeaderTransfomer,
|
|
228
225
|
{
|
|
229
226
|
fields: ['items'],
|
|
230
227
|
transformer: yfmTransformer,
|
|
@@ -256,6 +253,11 @@ const config = {
|
|
|
256
253
|
},
|
|
257
254
|
],
|
|
258
255
|
[models_1.BlockType.SimpleBlock]: [
|
|
256
|
+
{
|
|
257
|
+
fields: ['title'],
|
|
258
|
+
transformer: typografTransformer,
|
|
259
|
+
parser: parseTitle,
|
|
260
|
+
},
|
|
259
261
|
{
|
|
260
262
|
fields: ['description'],
|
|
261
263
|
transformer: yfmTransformer,
|
|
@@ -307,28 +309,7 @@ const config = {
|
|
|
307
309
|
parser: parseTitle,
|
|
308
310
|
},
|
|
309
311
|
],
|
|
310
|
-
[models_1.BlockType.
|
|
311
|
-
{
|
|
312
|
-
fields: ['description'],
|
|
313
|
-
transformer: yfmTransformer,
|
|
314
|
-
},
|
|
315
|
-
{
|
|
316
|
-
fields: ['title'],
|
|
317
|
-
transformer: typografTransformer,
|
|
318
|
-
parser: parseTitle,
|
|
319
|
-
},
|
|
320
|
-
],
|
|
321
|
-
[models_1.BlockType.PromoFeaturesBlock]: [
|
|
322
|
-
{
|
|
323
|
-
fields: ['description'],
|
|
324
|
-
transformer: typografTransformer,
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
fields: ['title'],
|
|
328
|
-
transformer: typografTransformer,
|
|
329
|
-
parser: parseTitle,
|
|
330
|
-
},
|
|
331
|
-
],
|
|
312
|
+
[models_1.BlockType.PromoFeaturesBlock]: blockHeaderTransfomer,
|
|
332
313
|
[models_1.BlockType.InfoBlock]: [
|
|
333
314
|
{
|
|
334
315
|
fields: ['rightContent', 'leftContent'],
|
|
@@ -347,6 +328,15 @@ const config = {
|
|
|
347
328
|
transformer: typografTransformer,
|
|
348
329
|
},
|
|
349
330
|
],
|
|
331
|
+
[models_1.BlockType.CardLayoutBlock]: blockHeaderTransfomer,
|
|
332
|
+
[models_1.BlockType.IconsBlock]: [
|
|
333
|
+
{
|
|
334
|
+
fields: ['title'],
|
|
335
|
+
transformer: typografTransformer,
|
|
336
|
+
parser: parseTitle,
|
|
337
|
+
},
|
|
338
|
+
],
|
|
339
|
+
[models_1.BlockType.LinkTableBlock]: blockHeaderTransfomer,
|
|
350
340
|
};
|
|
351
341
|
function addRandomOrder(block) {
|
|
352
342
|
if (block) {
|
|
@@ -173,6 +173,53 @@ export declare const BannerCardProps: {
|
|
|
173
173
|
};
|
|
174
174
|
};
|
|
175
175
|
};
|
|
176
|
+
gaEvents: {
|
|
177
|
+
type: string;
|
|
178
|
+
items: {
|
|
179
|
+
type: string;
|
|
180
|
+
required: string[];
|
|
181
|
+
additionalProperties: boolean;
|
|
182
|
+
properties: {
|
|
183
|
+
eventName: {
|
|
184
|
+
type: string;
|
|
185
|
+
};
|
|
186
|
+
eventCategory: {
|
|
187
|
+
type: string;
|
|
188
|
+
};
|
|
189
|
+
eventLabel: {
|
|
190
|
+
type: string;
|
|
191
|
+
};
|
|
192
|
+
value: {
|
|
193
|
+
type: string;
|
|
194
|
+
};
|
|
195
|
+
groups: {
|
|
196
|
+
oneOf: ({
|
|
197
|
+
type: string;
|
|
198
|
+
items?: undefined;
|
|
199
|
+
} | {
|
|
200
|
+
type: string;
|
|
201
|
+
items: {
|
|
202
|
+
type: string;
|
|
203
|
+
};
|
|
204
|
+
})[];
|
|
205
|
+
};
|
|
206
|
+
sendTo: {
|
|
207
|
+
oneOf: ({
|
|
208
|
+
type: string;
|
|
209
|
+
items?: undefined;
|
|
210
|
+
} | {
|
|
211
|
+
type: string;
|
|
212
|
+
items: {
|
|
213
|
+
type: string;
|
|
214
|
+
};
|
|
215
|
+
})[];
|
|
216
|
+
};
|
|
217
|
+
eventTimeout: {
|
|
218
|
+
type: string;
|
|
219
|
+
};
|
|
220
|
+
};
|
|
221
|
+
};
|
|
222
|
+
};
|
|
176
223
|
target: {
|
|
177
224
|
type: string;
|
|
178
225
|
enum: string[];
|
|
@@ -375,6 +422,53 @@ export declare const BannerBlock: {
|
|
|
375
422
|
};
|
|
376
423
|
};
|
|
377
424
|
};
|
|
425
|
+
gaEvents: {
|
|
426
|
+
type: string;
|
|
427
|
+
items: {
|
|
428
|
+
type: string;
|
|
429
|
+
required: string[];
|
|
430
|
+
additionalProperties: boolean;
|
|
431
|
+
properties: {
|
|
432
|
+
eventName: {
|
|
433
|
+
type: string;
|
|
434
|
+
};
|
|
435
|
+
eventCategory: {
|
|
436
|
+
type: string;
|
|
437
|
+
};
|
|
438
|
+
eventLabel: {
|
|
439
|
+
type: string;
|
|
440
|
+
};
|
|
441
|
+
value: {
|
|
442
|
+
type: string;
|
|
443
|
+
};
|
|
444
|
+
groups: {
|
|
445
|
+
oneOf: ({
|
|
446
|
+
type: string;
|
|
447
|
+
items?: undefined;
|
|
448
|
+
} | {
|
|
449
|
+
type: string;
|
|
450
|
+
items: {
|
|
451
|
+
type: string;
|
|
452
|
+
};
|
|
453
|
+
})[];
|
|
454
|
+
};
|
|
455
|
+
sendTo: {
|
|
456
|
+
oneOf: ({
|
|
457
|
+
type: string;
|
|
458
|
+
items?: undefined;
|
|
459
|
+
} | {
|
|
460
|
+
type: string;
|
|
461
|
+
items: {
|
|
462
|
+
type: string;
|
|
463
|
+
};
|
|
464
|
+
})[];
|
|
465
|
+
};
|
|
466
|
+
eventTimeout: {
|
|
467
|
+
type: string;
|
|
468
|
+
};
|
|
469
|
+
};
|
|
470
|
+
};
|
|
471
|
+
};
|
|
378
472
|
target: {
|
|
379
473
|
type: string;
|
|
380
474
|
enum: string[];
|
|
@@ -578,6 +672,53 @@ export declare const BannerCard: {
|
|
|
578
672
|
};
|
|
579
673
|
};
|
|
580
674
|
};
|
|
675
|
+
gaEvents: {
|
|
676
|
+
type: string;
|
|
677
|
+
items: {
|
|
678
|
+
type: string;
|
|
679
|
+
required: string[];
|
|
680
|
+
additionalProperties: boolean;
|
|
681
|
+
properties: {
|
|
682
|
+
eventName: {
|
|
683
|
+
type: string;
|
|
684
|
+
};
|
|
685
|
+
eventCategory: {
|
|
686
|
+
type: string;
|
|
687
|
+
};
|
|
688
|
+
eventLabel: {
|
|
689
|
+
type: string;
|
|
690
|
+
};
|
|
691
|
+
value: {
|
|
692
|
+
type: string;
|
|
693
|
+
};
|
|
694
|
+
groups: {
|
|
695
|
+
oneOf: ({
|
|
696
|
+
type: string;
|
|
697
|
+
items?: undefined;
|
|
698
|
+
} | {
|
|
699
|
+
type: string;
|
|
700
|
+
items: {
|
|
701
|
+
type: string;
|
|
702
|
+
};
|
|
703
|
+
})[];
|
|
704
|
+
};
|
|
705
|
+
sendTo: {
|
|
706
|
+
oneOf: ({
|
|
707
|
+
type: string;
|
|
708
|
+
items?: undefined;
|
|
709
|
+
} | {
|
|
710
|
+
type: string;
|
|
711
|
+
items: {
|
|
712
|
+
type: string;
|
|
713
|
+
};
|
|
714
|
+
})[];
|
|
715
|
+
};
|
|
716
|
+
eventTimeout: {
|
|
717
|
+
type: string;
|
|
718
|
+
};
|
|
719
|
+
};
|
|
720
|
+
};
|
|
721
|
+
};
|
|
581
722
|
target: {
|
|
582
723
|
type: string;
|
|
583
724
|
enum: string[];
|
|
@@ -2,6 +2,17 @@ export declare const CardLayoutProps: {
|
|
|
2
2
|
additionalProperties: boolean;
|
|
3
3
|
required: string[];
|
|
4
4
|
properties: {
|
|
5
|
+
colSizes: {
|
|
6
|
+
type: string;
|
|
7
|
+
additionalProperties: boolean;
|
|
8
|
+
properties: {};
|
|
9
|
+
};
|
|
10
|
+
children: {
|
|
11
|
+
type: string;
|
|
12
|
+
items: {
|
|
13
|
+
$ref: string;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
5
16
|
title: {
|
|
6
17
|
oneOf: ({
|
|
7
18
|
type: string;
|
|
@@ -25,24 +36,12 @@ export declare const CardLayoutProps: {
|
|
|
25
36
|
};
|
|
26
37
|
} | {
|
|
27
38
|
type: string;
|
|
28
|
-
contentType: string;
|
|
29
39
|
})[];
|
|
30
40
|
};
|
|
31
41
|
description: {
|
|
32
42
|
type: string;
|
|
33
43
|
contentType: string;
|
|
34
44
|
};
|
|
35
|
-
colSizes: {
|
|
36
|
-
type: string;
|
|
37
|
-
additionalProperties: boolean;
|
|
38
|
-
properties: {};
|
|
39
|
-
};
|
|
40
|
-
children: {
|
|
41
|
-
type: string;
|
|
42
|
-
items: {
|
|
43
|
-
$ref: string;
|
|
44
|
-
};
|
|
45
|
-
};
|
|
46
45
|
animated: {
|
|
47
46
|
type: string;
|
|
48
47
|
};
|
|
@@ -76,6 +75,17 @@ export declare const CardLayoutBlock: {
|
|
|
76
75
|
additionalProperties: boolean;
|
|
77
76
|
required: string[];
|
|
78
77
|
properties: {
|
|
78
|
+
colSizes: {
|
|
79
|
+
type: string;
|
|
80
|
+
additionalProperties: boolean;
|
|
81
|
+
properties: {};
|
|
82
|
+
};
|
|
83
|
+
children: {
|
|
84
|
+
type: string;
|
|
85
|
+
items: {
|
|
86
|
+
$ref: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
79
89
|
title: {
|
|
80
90
|
oneOf: ({
|
|
81
91
|
type: string;
|
|
@@ -99,24 +109,12 @@ export declare const CardLayoutBlock: {
|
|
|
99
109
|
};
|
|
100
110
|
} | {
|
|
101
111
|
type: string;
|
|
102
|
-
contentType: string;
|
|
103
112
|
})[];
|
|
104
113
|
};
|
|
105
114
|
description: {
|
|
106
115
|
type: string;
|
|
107
116
|
contentType: string;
|
|
108
117
|
};
|
|
109
|
-
colSizes: {
|
|
110
|
-
type: string;
|
|
111
|
-
additionalProperties: boolean;
|
|
112
|
-
properties: {};
|
|
113
|
-
};
|
|
114
|
-
children: {
|
|
115
|
-
type: string;
|
|
116
|
-
items: {
|
|
117
|
-
$ref: string;
|
|
118
|
-
};
|
|
119
|
-
};
|
|
120
118
|
animated: {
|
|
121
119
|
type: string;
|
|
122
120
|
};
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
import { AnimatableProps, containerSizesObject, ChildrenCardsProps, BlockBaseProps,
|
|
1
|
+
import { AnimatableProps, containerSizesObject, ChildrenCardsProps, BlockBaseProps, BlockHeaderProps, } from '../../schema/validators/common';
|
|
2
2
|
export const CardLayoutProps = {
|
|
3
3
|
additionalProperties: false,
|
|
4
4
|
required: ['title'],
|
|
5
|
-
properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), {
|
|
6
|
-
oneOf: [{ type: 'string', contentType: 'text' }, TitleProps],
|
|
7
|
-
}, description: {
|
|
8
|
-
type: 'string',
|
|
9
|
-
contentType: 'yfm',
|
|
10
|
-
}, colSizes: containerSizesObject, children: ChildrenCardsProps }),
|
|
5
|
+
properties: Object.assign(Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), BlockHeaderProps), { colSizes: containerSizesObject, children: ChildrenCardsProps }),
|
|
11
6
|
};
|
|
12
7
|
export const CardLayoutBlock = {
|
|
13
8
|
'card-layout-block': CardLayoutProps,
|
|
@@ -55,6 +55,22 @@ export declare const ExtendedFeaturesBlock: {
|
|
|
55
55
|
additionalProperties: boolean;
|
|
56
56
|
required: never[];
|
|
57
57
|
properties: {
|
|
58
|
+
items: {
|
|
59
|
+
type: string;
|
|
60
|
+
items: {
|
|
61
|
+
type: string;
|
|
62
|
+
properties: {
|
|
63
|
+
when: {
|
|
64
|
+
type: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
};
|
|
69
|
+
colSizes: {
|
|
70
|
+
type: string;
|
|
71
|
+
additionalProperties: boolean;
|
|
72
|
+
properties: {};
|
|
73
|
+
};
|
|
58
74
|
title: {
|
|
59
75
|
oneOf: ({
|
|
60
76
|
type: string;
|
|
@@ -78,29 +94,12 @@ export declare const ExtendedFeaturesBlock: {
|
|
|
78
94
|
};
|
|
79
95
|
} | {
|
|
80
96
|
type: string;
|
|
81
|
-
contentType: string;
|
|
82
97
|
})[];
|
|
83
98
|
};
|
|
84
99
|
description: {
|
|
85
100
|
type: string;
|
|
86
101
|
contentType: string;
|
|
87
102
|
};
|
|
88
|
-
items: {
|
|
89
|
-
type: string;
|
|
90
|
-
items: {
|
|
91
|
-
type: string;
|
|
92
|
-
properties: {
|
|
93
|
-
when: {
|
|
94
|
-
type: string;
|
|
95
|
-
};
|
|
96
|
-
};
|
|
97
|
-
};
|
|
98
|
-
};
|
|
99
|
-
colSizes: {
|
|
100
|
-
type: string;
|
|
101
|
-
additionalProperties: boolean;
|
|
102
|
-
properties: {};
|
|
103
|
-
};
|
|
104
103
|
animated: {
|
|
105
104
|
type: string;
|
|
106
105
|
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AnimatableProps, containerSizesObject, LinkProps, BlockBaseProps,
|
|
1
|
+
import { AnimatableProps, containerSizesObject, LinkProps, BlockBaseProps, BlockHeaderProps, } from '../../schema/validators/common';
|
|
2
2
|
import { filteredArray } from '../../schema/validators/utils';
|
|
3
3
|
export const ExtendedFeaturesItem = {
|
|
4
4
|
additionalProperties: false,
|
|
@@ -26,11 +26,6 @@ export const ExtendedFeaturesBlock = {
|
|
|
26
26
|
'extended-features-block': {
|
|
27
27
|
additionalProperties: false,
|
|
28
28
|
required: [],
|
|
29
|
-
properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), {
|
|
30
|
-
oneOf: [{ type: 'string', contentType: 'text' }, TitleProps],
|
|
31
|
-
}, description: {
|
|
32
|
-
type: 'string',
|
|
33
|
-
contentType: 'yfm',
|
|
34
|
-
}, items: filteredArray(ExtendedFeaturesItem), colSizes: containerSizesObject }),
|
|
29
|
+
properties: Object.assign(Object.assign(Object.assign(Object.assign({}, BlockBaseProps), AnimatableProps), BlockHeaderProps), { items: filteredArray(ExtendedFeaturesItem), colSizes: containerSizesObject }),
|
|
35
30
|
},
|
|
36
31
|
};
|
|
@@ -346,31 +346,6 @@ export declare const HeaderSliderBlock: {
|
|
|
346
346
|
arrows: {
|
|
347
347
|
type: string;
|
|
348
348
|
};
|
|
349
|
-
description: {
|
|
350
|
-
type: string;
|
|
351
|
-
contentType: string;
|
|
352
|
-
};
|
|
353
|
-
title: {
|
|
354
|
-
type: string;
|
|
355
|
-
additionalProperties: boolean;
|
|
356
|
-
required: string[];
|
|
357
|
-
properties: {
|
|
358
|
-
text: {
|
|
359
|
-
type: string;
|
|
360
|
-
contentType: string;
|
|
361
|
-
};
|
|
362
|
-
textSize: {
|
|
363
|
-
type: string;
|
|
364
|
-
enum: string[];
|
|
365
|
-
};
|
|
366
|
-
url: {
|
|
367
|
-
type: string;
|
|
368
|
-
};
|
|
369
|
-
resetMargin: {
|
|
370
|
-
type: string;
|
|
371
|
-
};
|
|
372
|
-
};
|
|
373
|
-
};
|
|
374
349
|
randomOrder: {
|
|
375
350
|
type: string;
|
|
376
351
|
};
|
|
@@ -3,27 +3,6 @@ export declare const LinkTableBlock: {
|
|
|
3
3
|
additionalProperties: boolean;
|
|
4
4
|
required: string[];
|
|
5
5
|
properties: {
|
|
6
|
-
title: {
|
|
7
|
-
type: string;
|
|
8
|
-
additionalProperties: boolean;
|
|
9
|
-
required: string[];
|
|
10
|
-
properties: {
|
|
11
|
-
text: {
|
|
12
|
-
type: string;
|
|
13
|
-
contentType: string;
|
|
14
|
-
};
|
|
15
|
-
textSize: {
|
|
16
|
-
type: string;
|
|
17
|
-
enum: string[];
|
|
18
|
-
};
|
|
19
|
-
url: {
|
|
20
|
-
type: string;
|
|
21
|
-
};
|
|
22
|
-
resetMargin: {
|
|
23
|
-
type: string;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
6
|
items: {
|
|
28
7
|
type: string;
|
|
29
8
|
items: {
|
|
@@ -38,6 +17,35 @@ export declare const LinkTableBlock: {
|
|
|
38
17
|
};
|
|
39
18
|
};
|
|
40
19
|
};
|
|
20
|
+
title: {
|
|
21
|
+
oneOf: ({
|
|
22
|
+
type: string;
|
|
23
|
+
additionalProperties: boolean;
|
|
24
|
+
required: string[];
|
|
25
|
+
properties: {
|
|
26
|
+
text: {
|
|
27
|
+
type: string;
|
|
28
|
+
contentType: string;
|
|
29
|
+
};
|
|
30
|
+
textSize: {
|
|
31
|
+
type: string;
|
|
32
|
+
enum: string[];
|
|
33
|
+
};
|
|
34
|
+
url: {
|
|
35
|
+
type: string;
|
|
36
|
+
};
|
|
37
|
+
resetMargin: {
|
|
38
|
+
type: string;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
} | {
|
|
42
|
+
type: string;
|
|
43
|
+
})[];
|
|
44
|
+
};
|
|
45
|
+
description: {
|
|
46
|
+
type: string;
|
|
47
|
+
contentType: string;
|
|
48
|
+
};
|
|
41
49
|
anchor: {
|
|
42
50
|
type: string;
|
|
43
51
|
additionalProperties: boolean;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { filteredArray } from '../../schema/validators/utils';
|
|
2
|
-
import { LinkProps, BlockBaseProps,
|
|
2
|
+
import { LinkProps, BlockBaseProps, BlockHeaderProps } from '../../schema/validators/common';
|
|
3
3
|
export const LinkTableBlock = {
|
|
4
4
|
'link-table-block': {
|
|
5
5
|
additionalProperties: false,
|
|
6
6
|
required: ['items'],
|
|
7
|
-
properties: Object.assign(Object.assign({}, BlockBaseProps), {
|
|
7
|
+
properties: Object.assign(Object.assign(Object.assign({}, BlockBaseProps), BlockHeaderProps), { items: {
|
|
8
8
|
type: 'array',
|
|
9
9
|
items: filteredArray(LinkProps),
|
|
10
10
|
} }),
|
|
@@ -426,6 +426,53 @@ export declare const MediaBlock: {
|
|
|
426
426
|
};
|
|
427
427
|
};
|
|
428
428
|
};
|
|
429
|
+
gaEvents: {
|
|
430
|
+
type: string;
|
|
431
|
+
items: {
|
|
432
|
+
type: string;
|
|
433
|
+
required: string[];
|
|
434
|
+
additionalProperties: boolean;
|
|
435
|
+
properties: {
|
|
436
|
+
eventName: {
|
|
437
|
+
type: string;
|
|
438
|
+
};
|
|
439
|
+
eventCategory: {
|
|
440
|
+
type: string;
|
|
441
|
+
};
|
|
442
|
+
eventLabel: {
|
|
443
|
+
type: string;
|
|
444
|
+
};
|
|
445
|
+
value: {
|
|
446
|
+
type: string;
|
|
447
|
+
};
|
|
448
|
+
groups: {
|
|
449
|
+
oneOf: ({
|
|
450
|
+
type: string;
|
|
451
|
+
items?: undefined;
|
|
452
|
+
} | {
|
|
453
|
+
type: string;
|
|
454
|
+
items: {
|
|
455
|
+
type: string;
|
|
456
|
+
};
|
|
457
|
+
})[];
|
|
458
|
+
};
|
|
459
|
+
sendTo: {
|
|
460
|
+
oneOf: ({
|
|
461
|
+
type: string;
|
|
462
|
+
items?: undefined;
|
|
463
|
+
} | {
|
|
464
|
+
type: string;
|
|
465
|
+
items: {
|
|
466
|
+
type: string;
|
|
467
|
+
};
|
|
468
|
+
})[];
|
|
469
|
+
};
|
|
470
|
+
eventTimeout: {
|
|
471
|
+
type: string;
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
};
|
|
475
|
+
};
|
|
429
476
|
target: {
|
|
430
477
|
type: string;
|
|
431
478
|
enum: string[];
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { omit } from 'lodash';
|
|
2
2
|
import { BlockBaseProps, ButtonBlock, MediaProps, AnimatableProps, mediaDirection, } from '../../schema/validators/common';
|
|
3
|
-
import { ContentBase } from '
|
|
3
|
+
import { ContentBase } from '../../sub-blocks/Content/schema';
|
|
4
4
|
export const Media = {
|
|
5
5
|
type: 'object',
|
|
6
6
|
additionalProperties: false,
|