@gravity-ui/page-constructor 8.2.0-alpha.0 → 8.2.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 (52) hide show
  1. package/build/cjs/blocks/CardLayout/schema.d.ts +156 -0
  2. package/build/cjs/blocks/ContentLayout/schema.d.ts +78 -0
  3. package/build/cjs/blocks/ExtendedFeatures/schema.d.ts +78 -0
  4. package/build/cjs/blocks/FilterBlock/schema.d.ts +156 -0
  5. package/build/cjs/blocks/FoldableList/schema.d.ts +78 -0
  6. package/build/cjs/blocks/Form/schema.d.ts +78 -0
  7. package/build/cjs/blocks/Info/schema.d.ts +156 -0
  8. package/build/cjs/blocks/Map/schema.d.ts +78 -0
  9. package/build/cjs/blocks/Media/schema.d.ts +156 -0
  10. package/build/cjs/blocks/PromoFeaturesBlock/schema.d.ts +78 -0
  11. package/build/cjs/blocks/Questions/schema.d.ts +78 -0
  12. package/build/cjs/blocks/Slider/schema.d.ts +78 -0
  13. package/build/cjs/blocks/SliderOld/schema.d.ts +78 -0
  14. package/build/cjs/blocks/Tabs/schema.d.ts +156 -0
  15. package/build/cjs/components/Title/TitleItem.js +2 -2
  16. package/build/cjs/components/Title/TitleItem.js.map +1 -1
  17. package/build/cjs/schema/constants.d.ts +234 -0
  18. package/build/cjs/schema/validators/common.d.ts +156 -0
  19. package/build/cjs/schema/validators/common.js +3 -0
  20. package/build/cjs/schema/validators/common.js.map +1 -1
  21. package/build/cjs/sub-blocks/BackgroundCard/schema.d.ts +78 -0
  22. package/build/cjs/sub-blocks/BasicCard/schema.d.ts +78 -0
  23. package/build/cjs/sub-blocks/Content/schema.d.ts +156 -0
  24. package/build/cjs/sub-blocks/ImageCard/schema.d.ts +78 -0
  25. package/build/cjs/sub-blocks/LayoutItem/schema.d.ts +78 -0
  26. package/build/esm/blocks/CardLayout/schema.d.ts +156 -0
  27. package/build/esm/blocks/ContentLayout/schema.d.ts +78 -0
  28. package/build/esm/blocks/ExtendedFeatures/schema.d.ts +78 -0
  29. package/build/esm/blocks/FilterBlock/schema.d.ts +156 -0
  30. package/build/esm/blocks/FoldableList/schema.d.ts +78 -0
  31. package/build/esm/blocks/Form/schema.d.ts +78 -0
  32. package/build/esm/blocks/Info/schema.d.ts +156 -0
  33. package/build/esm/blocks/Map/schema.d.ts +78 -0
  34. package/build/esm/blocks/Media/schema.d.ts +156 -0
  35. package/build/esm/blocks/PromoFeaturesBlock/schema.d.ts +78 -0
  36. package/build/esm/blocks/Questions/schema.d.ts +78 -0
  37. package/build/esm/blocks/Slider/schema.d.ts +78 -0
  38. package/build/esm/blocks/SliderOld/schema.d.ts +78 -0
  39. package/build/esm/blocks/Tabs/schema.d.ts +156 -0
  40. package/build/esm/components/Title/TitleItem.js +2 -2
  41. package/build/esm/components/Title/TitleItem.js.map +1 -1
  42. package/build/esm/schema/constants.d.ts +234 -0
  43. package/build/esm/schema/validators/common.d.ts +156 -0
  44. package/build/esm/schema/validators/common.js +3 -0
  45. package/build/esm/schema/validators/common.js.map +1 -1
  46. package/build/esm/sub-blocks/BackgroundCard/schema.d.ts +78 -0
  47. package/build/esm/sub-blocks/BasicCard/schema.d.ts +78 -0
  48. package/build/esm/sub-blocks/Content/schema.d.ts +156 -0
  49. package/build/esm/sub-blocks/ImageCard/schema.d.ts +78 -0
  50. package/build/esm/sub-blocks/LayoutItem/schema.d.ts +78 -0
  51. package/package.json +1 -1
  52. package/schema/index.js +1 -1
@@ -96,6 +96,84 @@ export declare const FilterProps: {
96
96
  resetMargin: {
97
97
  type: string;
98
98
  };
99
+ analyticsEvents: {
100
+ anyOf: ({
101
+ type: string;
102
+ additionalProperties: {
103
+ type: string;
104
+ };
105
+ required: string[];
106
+ properties: {
107
+ name: {
108
+ type: string;
109
+ };
110
+ type: {
111
+ type: string;
112
+ };
113
+ counters: {
114
+ type: string;
115
+ additionalProperties: boolean;
116
+ required: never[];
117
+ properties: {
118
+ include: {
119
+ type: string;
120
+ items: {
121
+ type: string;
122
+ };
123
+ };
124
+ exclude: {
125
+ type: string;
126
+ items: {
127
+ type: string;
128
+ };
129
+ };
130
+ };
131
+ };
132
+ context: {
133
+ type: string;
134
+ };
135
+ };
136
+ } | {
137
+ type: string;
138
+ items: {
139
+ type: string;
140
+ additionalProperties: {
141
+ type: string;
142
+ };
143
+ required: string[];
144
+ properties: {
145
+ name: {
146
+ type: string;
147
+ };
148
+ type: {
149
+ type: string;
150
+ };
151
+ counters: {
152
+ type: string;
153
+ additionalProperties: boolean;
154
+ required: never[];
155
+ properties: {
156
+ include: {
157
+ type: string;
158
+ items: {
159
+ type: string;
160
+ };
161
+ };
162
+ exclude: {
163
+ type: string;
164
+ items: {
165
+ type: string;
166
+ };
167
+ };
168
+ };
169
+ };
170
+ context: {
171
+ type: string;
172
+ };
173
+ };
174
+ };
175
+ })[];
176
+ };
99
177
  };
100
178
  })[];
101
179
  };
@@ -224,6 +302,84 @@ export declare const FilterBlock: {
224
302
  resetMargin: {
225
303
  type: string;
226
304
  };
305
+ analyticsEvents: {
306
+ anyOf: ({
307
+ type: string;
308
+ additionalProperties: {
309
+ type: string;
310
+ };
311
+ required: string[];
312
+ properties: {
313
+ name: {
314
+ type: string;
315
+ };
316
+ type: {
317
+ type: string;
318
+ };
319
+ counters: {
320
+ type: string;
321
+ additionalProperties: boolean;
322
+ required: never[];
323
+ properties: {
324
+ include: {
325
+ type: string;
326
+ items: {
327
+ type: string;
328
+ };
329
+ };
330
+ exclude: {
331
+ type: string;
332
+ items: {
333
+ type: string;
334
+ };
335
+ };
336
+ };
337
+ };
338
+ context: {
339
+ type: string;
340
+ };
341
+ };
342
+ } | {
343
+ type: string;
344
+ items: {
345
+ type: string;
346
+ additionalProperties: {
347
+ type: string;
348
+ };
349
+ required: string[];
350
+ properties: {
351
+ name: {
352
+ type: string;
353
+ };
354
+ type: {
355
+ type: string;
356
+ };
357
+ counters: {
358
+ type: string;
359
+ additionalProperties: boolean;
360
+ required: never[];
361
+ properties: {
362
+ include: {
363
+ type: string;
364
+ items: {
365
+ type: string;
366
+ };
367
+ };
368
+ exclude: {
369
+ type: string;
370
+ items: {
371
+ type: string;
372
+ };
373
+ };
374
+ };
375
+ };
376
+ context: {
377
+ type: string;
378
+ };
379
+ };
380
+ };
381
+ })[];
382
+ };
227
383
  };
228
384
  })[];
229
385
  };
@@ -42,6 +42,84 @@ export declare const FoldableListBlock: {
42
42
  resetMargin: {
43
43
  type: string;
44
44
  };
45
+ analyticsEvents: {
46
+ anyOf: ({
47
+ type: string;
48
+ additionalProperties: {
49
+ type: string;
50
+ };
51
+ required: string[];
52
+ properties: {
53
+ name: {
54
+ type: string;
55
+ };
56
+ type: {
57
+ type: string;
58
+ };
59
+ counters: {
60
+ type: string;
61
+ additionalProperties: boolean;
62
+ required: never[];
63
+ properties: {
64
+ include: {
65
+ type: string;
66
+ items: {
67
+ type: string;
68
+ };
69
+ };
70
+ exclude: {
71
+ type: string;
72
+ items: {
73
+ type: string;
74
+ };
75
+ };
76
+ };
77
+ };
78
+ context: {
79
+ type: string;
80
+ };
81
+ };
82
+ } | {
83
+ type: string;
84
+ items: {
85
+ type: string;
86
+ additionalProperties: {
87
+ type: string;
88
+ };
89
+ required: string[];
90
+ properties: {
91
+ name: {
92
+ type: string;
93
+ };
94
+ type: {
95
+ type: string;
96
+ };
97
+ counters: {
98
+ type: string;
99
+ additionalProperties: boolean;
100
+ required: never[];
101
+ properties: {
102
+ include: {
103
+ type: string;
104
+ items: {
105
+ type: string;
106
+ };
107
+ };
108
+ exclude: {
109
+ type: string;
110
+ items: {
111
+ type: string;
112
+ };
113
+ };
114
+ };
115
+ };
116
+ context: {
117
+ type: string;
118
+ };
119
+ };
120
+ };
121
+ })[];
122
+ };
45
123
  };
46
124
  contentType?: undefined;
47
125
  })[];
@@ -110,6 +110,84 @@ export declare const FormBlock: {
110
110
  resetMargin: {
111
111
  type: string;
112
112
  };
113
+ analyticsEvents: {
114
+ anyOf: ({
115
+ type: string;
116
+ additionalProperties: {
117
+ type: string;
118
+ };
119
+ required: string[];
120
+ properties: {
121
+ name: {
122
+ type: string;
123
+ };
124
+ type: {
125
+ type: string;
126
+ };
127
+ counters: {
128
+ type: string;
129
+ additionalProperties: boolean;
130
+ required: never[];
131
+ properties: {
132
+ include: {
133
+ type: string;
134
+ items: {
135
+ type: string;
136
+ };
137
+ };
138
+ exclude: {
139
+ type: string;
140
+ items: {
141
+ type: string;
142
+ };
143
+ };
144
+ };
145
+ };
146
+ context: {
147
+ type: string;
148
+ };
149
+ };
150
+ } | {
151
+ type: string;
152
+ items: {
153
+ type: string;
154
+ additionalProperties: {
155
+ type: string;
156
+ };
157
+ required: string[];
158
+ properties: {
159
+ name: {
160
+ type: string;
161
+ };
162
+ type: {
163
+ type: string;
164
+ };
165
+ counters: {
166
+ type: string;
167
+ additionalProperties: boolean;
168
+ required: never[];
169
+ properties: {
170
+ include: {
171
+ type: string;
172
+ items: {
173
+ type: string;
174
+ };
175
+ };
176
+ exclude: {
177
+ type: string;
178
+ items: {
179
+ type: string;
180
+ };
181
+ };
182
+ };
183
+ };
184
+ context: {
185
+ type: string;
186
+ };
187
+ };
188
+ };
189
+ })[];
190
+ };
113
191
  };
114
192
  contentType?: undefined;
115
193
  })[];
@@ -81,6 +81,84 @@ export declare const InfoBlock: {
81
81
  resetMargin: {
82
82
  type: string;
83
83
  };
84
+ analyticsEvents: {
85
+ anyOf: ({
86
+ type: string;
87
+ additionalProperties: {
88
+ type: string;
89
+ };
90
+ required: string[];
91
+ properties: {
92
+ name: {
93
+ type: string;
94
+ };
95
+ type: {
96
+ type: string;
97
+ };
98
+ counters: {
99
+ type: string;
100
+ additionalProperties: boolean;
101
+ required: never[];
102
+ properties: {
103
+ include: {
104
+ type: string;
105
+ items: {
106
+ type: string;
107
+ };
108
+ };
109
+ exclude: {
110
+ type: string;
111
+ items: {
112
+ type: string;
113
+ };
114
+ };
115
+ };
116
+ };
117
+ context: {
118
+ type: string;
119
+ };
120
+ };
121
+ } | {
122
+ type: string;
123
+ items: {
124
+ type: string;
125
+ additionalProperties: {
126
+ type: string;
127
+ };
128
+ required: string[];
129
+ properties: {
130
+ name: {
131
+ type: string;
132
+ };
133
+ type: {
134
+ type: string;
135
+ };
136
+ counters: {
137
+ type: string;
138
+ additionalProperties: boolean;
139
+ required: never[];
140
+ properties: {
141
+ include: {
142
+ type: string;
143
+ items: {
144
+ type: string;
145
+ };
146
+ };
147
+ exclude: {
148
+ type: string;
149
+ items: {
150
+ type: string;
151
+ };
152
+ };
153
+ };
154
+ };
155
+ context: {
156
+ type: string;
157
+ };
158
+ };
159
+ };
160
+ })[];
161
+ };
84
162
  };
85
163
  contentType?: undefined;
86
164
  })[];
@@ -183,6 +261,84 @@ export declare const InfoBlock: {
183
261
  resetMargin: {
184
262
  type: string;
185
263
  };
264
+ analyticsEvents: {
265
+ anyOf: ({
266
+ type: string;
267
+ additionalProperties: {
268
+ type: string;
269
+ };
270
+ required: string[];
271
+ properties: {
272
+ name: {
273
+ type: string;
274
+ };
275
+ type: {
276
+ type: string;
277
+ };
278
+ counters: {
279
+ type: string;
280
+ additionalProperties: boolean;
281
+ required: never[];
282
+ properties: {
283
+ include: {
284
+ type: string;
285
+ items: {
286
+ type: string;
287
+ };
288
+ };
289
+ exclude: {
290
+ type: string;
291
+ items: {
292
+ type: string;
293
+ };
294
+ };
295
+ };
296
+ };
297
+ context: {
298
+ type: string;
299
+ };
300
+ };
301
+ } | {
302
+ type: string;
303
+ items: {
304
+ type: string;
305
+ additionalProperties: {
306
+ type: string;
307
+ };
308
+ required: string[];
309
+ properties: {
310
+ name: {
311
+ type: string;
312
+ };
313
+ type: {
314
+ type: string;
315
+ };
316
+ counters: {
317
+ type: string;
318
+ additionalProperties: boolean;
319
+ required: never[];
320
+ properties: {
321
+ include: {
322
+ type: string;
323
+ items: {
324
+ type: string;
325
+ };
326
+ };
327
+ exclude: {
328
+ type: string;
329
+ items: {
330
+ type: string;
331
+ };
332
+ };
333
+ };
334
+ };
335
+ context: {
336
+ type: string;
337
+ };
338
+ };
339
+ };
340
+ })[];
341
+ };
186
342
  };
187
343
  contentType?: undefined;
188
344
  })[];
@@ -413,6 +413,84 @@ export declare const MapBlock: {
413
413
  resetMargin: {
414
414
  type: string;
415
415
  };
416
+ analyticsEvents: {
417
+ anyOf: ({
418
+ type: string;
419
+ additionalProperties: {
420
+ type: string;
421
+ };
422
+ required: string[];
423
+ properties: {
424
+ name: {
425
+ type: string;
426
+ };
427
+ type: {
428
+ type: string;
429
+ };
430
+ counters: {
431
+ type: string;
432
+ additionalProperties: boolean;
433
+ required: never[];
434
+ properties: {
435
+ include: {
436
+ type: string;
437
+ items: {
438
+ type: string;
439
+ };
440
+ };
441
+ exclude: {
442
+ type: string;
443
+ items: {
444
+ type: string;
445
+ };
446
+ };
447
+ };
448
+ };
449
+ context: {
450
+ type: string;
451
+ };
452
+ };
453
+ } | {
454
+ type: string;
455
+ items: {
456
+ type: string;
457
+ additionalProperties: {
458
+ type: string;
459
+ };
460
+ required: string[];
461
+ properties: {
462
+ name: {
463
+ type: string;
464
+ };
465
+ type: {
466
+ type: string;
467
+ };
468
+ counters: {
469
+ type: string;
470
+ additionalProperties: boolean;
471
+ required: never[];
472
+ properties: {
473
+ include: {
474
+ type: string;
475
+ items: {
476
+ type: string;
477
+ };
478
+ };
479
+ exclude: {
480
+ type: string;
481
+ items: {
482
+ type: string;
483
+ };
484
+ };
485
+ };
486
+ };
487
+ context: {
488
+ type: string;
489
+ };
490
+ };
491
+ };
492
+ })[];
493
+ };
416
494
  };
417
495
  contentType?: undefined;
418
496
  })[];