@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
@@ -189,6 +189,84 @@ export declare const ContentBase: {
189
189
  resetMargin: {
190
190
  type: string;
191
191
  };
192
+ analyticsEvents: {
193
+ anyOf: ({
194
+ type: string;
195
+ additionalProperties: {
196
+ type: string;
197
+ };
198
+ required: string[];
199
+ properties: {
200
+ name: {
201
+ type: string;
202
+ };
203
+ type: {
204
+ type: string;
205
+ };
206
+ counters: {
207
+ type: string;
208
+ additionalProperties: boolean;
209
+ required: never[];
210
+ properties: {
211
+ include: {
212
+ type: string;
213
+ items: {
214
+ type: string;
215
+ };
216
+ };
217
+ exclude: {
218
+ type: string;
219
+ items: {
220
+ type: string;
221
+ };
222
+ };
223
+ };
224
+ };
225
+ context: {
226
+ type: string;
227
+ };
228
+ };
229
+ } | {
230
+ type: string;
231
+ items: {
232
+ type: string;
233
+ additionalProperties: {
234
+ type: string;
235
+ };
236
+ required: string[];
237
+ properties: {
238
+ name: {
239
+ type: string;
240
+ };
241
+ type: {
242
+ type: string;
243
+ };
244
+ counters: {
245
+ type: string;
246
+ additionalProperties: boolean;
247
+ required: never[];
248
+ properties: {
249
+ include: {
250
+ type: string;
251
+ items: {
252
+ type: string;
253
+ };
254
+ };
255
+ exclude: {
256
+ type: string;
257
+ items: {
258
+ type: string;
259
+ };
260
+ };
261
+ };
262
+ };
263
+ context: {
264
+ type: string;
265
+ };
266
+ };
267
+ };
268
+ })[];
269
+ };
192
270
  };
193
271
  contentType?: undefined;
194
272
  })[];
@@ -295,6 +373,84 @@ export declare const ContentBlock: {
295
373
  resetMargin: {
296
374
  type: string;
297
375
  };
376
+ analyticsEvents: {
377
+ anyOf: ({
378
+ type: string;
379
+ additionalProperties: {
380
+ type: string;
381
+ };
382
+ required: string[];
383
+ properties: {
384
+ name: {
385
+ type: string;
386
+ };
387
+ type: {
388
+ type: string;
389
+ };
390
+ counters: {
391
+ type: string;
392
+ additionalProperties: boolean;
393
+ required: never[];
394
+ properties: {
395
+ include: {
396
+ type: string;
397
+ items: {
398
+ type: string;
399
+ };
400
+ };
401
+ exclude: {
402
+ type: string;
403
+ items: {
404
+ type: string;
405
+ };
406
+ };
407
+ };
408
+ };
409
+ context: {
410
+ type: string;
411
+ };
412
+ };
413
+ } | {
414
+ type: string;
415
+ items: {
416
+ type: string;
417
+ additionalProperties: {
418
+ type: string;
419
+ };
420
+ required: string[];
421
+ properties: {
422
+ name: {
423
+ type: string;
424
+ };
425
+ type: {
426
+ type: string;
427
+ };
428
+ counters: {
429
+ type: string;
430
+ additionalProperties: boolean;
431
+ required: never[];
432
+ properties: {
433
+ include: {
434
+ type: string;
435
+ items: {
436
+ type: string;
437
+ };
438
+ };
439
+ exclude: {
440
+ type: string;
441
+ items: {
442
+ type: string;
443
+ };
444
+ };
445
+ };
446
+ };
447
+ context: {
448
+ type: string;
449
+ };
450
+ };
451
+ };
452
+ })[];
453
+ };
298
454
  };
299
455
  contentType?: undefined;
300
456
  })[];
@@ -75,6 +75,84 @@ export declare const ImageCard: {
75
75
  resetMargin: {
76
76
  type: string;
77
77
  };
78
+ analyticsEvents: {
79
+ anyOf: ({
80
+ type: string;
81
+ additionalProperties: {
82
+ type: string;
83
+ };
84
+ required: string[];
85
+ properties: {
86
+ name: {
87
+ type: string;
88
+ };
89
+ type: {
90
+ type: string;
91
+ };
92
+ counters: {
93
+ type: string;
94
+ additionalProperties: boolean;
95
+ required: never[];
96
+ properties: {
97
+ include: {
98
+ type: string;
99
+ items: {
100
+ type: string;
101
+ };
102
+ };
103
+ exclude: {
104
+ type: string;
105
+ items: {
106
+ type: string;
107
+ };
108
+ };
109
+ };
110
+ };
111
+ context: {
112
+ type: string;
113
+ };
114
+ };
115
+ } | {
116
+ type: string;
117
+ items: {
118
+ type: string;
119
+ additionalProperties: {
120
+ type: string;
121
+ };
122
+ required: string[];
123
+ properties: {
124
+ name: {
125
+ type: string;
126
+ };
127
+ type: {
128
+ type: string;
129
+ };
130
+ counters: {
131
+ type: string;
132
+ additionalProperties: boolean;
133
+ required: never[];
134
+ properties: {
135
+ include: {
136
+ type: string;
137
+ items: {
138
+ type: string;
139
+ };
140
+ };
141
+ exclude: {
142
+ type: string;
143
+ items: {
144
+ type: string;
145
+ };
146
+ };
147
+ };
148
+ };
149
+ context: {
150
+ type: string;
151
+ };
152
+ };
153
+ };
154
+ })[];
155
+ };
78
156
  };
79
157
  contentType?: undefined;
80
158
  })[];
@@ -340,6 +340,84 @@ export declare const LayoutItem: {
340
340
  resetMargin: {
341
341
  type: string;
342
342
  };
343
+ analyticsEvents: {
344
+ anyOf: ({
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
+ type: string;
382
+ items: {
383
+ type: string;
384
+ additionalProperties: {
385
+ type: string;
386
+ };
387
+ required: string[];
388
+ properties: {
389
+ name: {
390
+ type: string;
391
+ };
392
+ type: {
393
+ type: string;
394
+ };
395
+ counters: {
396
+ type: string;
397
+ additionalProperties: boolean;
398
+ required: never[];
399
+ properties: {
400
+ include: {
401
+ type: string;
402
+ items: {
403
+ type: string;
404
+ };
405
+ };
406
+ exclude: {
407
+ type: string;
408
+ items: {
409
+ type: string;
410
+ };
411
+ };
412
+ };
413
+ };
414
+ context: {
415
+ type: string;
416
+ };
417
+ };
418
+ };
419
+ })[];
420
+ };
343
421
  };
344
422
  contentType?: undefined;
345
423
  })[];
@@ -167,6 +167,84 @@ export declare const CardLayoutProps: {
167
167
  resetMargin: {
168
168
  type: string;
169
169
  };
170
+ analyticsEvents: {
171
+ anyOf: ({
172
+ type: string;
173
+ additionalProperties: {
174
+ type: string;
175
+ };
176
+ required: string[];
177
+ properties: {
178
+ name: {
179
+ type: string;
180
+ };
181
+ type: {
182
+ type: string;
183
+ };
184
+ counters: {
185
+ type: string;
186
+ additionalProperties: boolean;
187
+ required: never[];
188
+ properties: {
189
+ include: {
190
+ type: string;
191
+ items: {
192
+ type: string;
193
+ };
194
+ };
195
+ exclude: {
196
+ type: string;
197
+ items: {
198
+ type: string;
199
+ };
200
+ };
201
+ };
202
+ };
203
+ context: {
204
+ type: string;
205
+ };
206
+ };
207
+ } | {
208
+ type: string;
209
+ items: {
210
+ type: string;
211
+ additionalProperties: {
212
+ type: string;
213
+ };
214
+ required: string[];
215
+ properties: {
216
+ name: {
217
+ type: string;
218
+ };
219
+ type: {
220
+ type: string;
221
+ };
222
+ counters: {
223
+ type: string;
224
+ additionalProperties: boolean;
225
+ required: never[];
226
+ properties: {
227
+ include: {
228
+ type: string;
229
+ items: {
230
+ type: string;
231
+ };
232
+ };
233
+ exclude: {
234
+ type: string;
235
+ items: {
236
+ type: string;
237
+ };
238
+ };
239
+ };
240
+ };
241
+ context: {
242
+ type: string;
243
+ };
244
+ };
245
+ };
246
+ })[];
247
+ };
170
248
  };
171
249
  })[];
172
250
  };
@@ -393,6 +471,84 @@ export declare const CardLayoutBlock: {
393
471
  resetMargin: {
394
472
  type: string;
395
473
  };
474
+ analyticsEvents: {
475
+ anyOf: ({
476
+ type: string;
477
+ additionalProperties: {
478
+ type: string;
479
+ };
480
+ required: string[];
481
+ properties: {
482
+ name: {
483
+ type: string;
484
+ };
485
+ type: {
486
+ type: string;
487
+ };
488
+ counters: {
489
+ type: string;
490
+ additionalProperties: boolean;
491
+ required: never[];
492
+ properties: {
493
+ include: {
494
+ type: string;
495
+ items: {
496
+ type: string;
497
+ };
498
+ };
499
+ exclude: {
500
+ type: string;
501
+ items: {
502
+ type: string;
503
+ };
504
+ };
505
+ };
506
+ };
507
+ context: {
508
+ type: string;
509
+ };
510
+ };
511
+ } | {
512
+ type: string;
513
+ items: {
514
+ type: string;
515
+ additionalProperties: {
516
+ type: string;
517
+ };
518
+ required: string[];
519
+ properties: {
520
+ name: {
521
+ type: string;
522
+ };
523
+ type: {
524
+ type: string;
525
+ };
526
+ counters: {
527
+ type: string;
528
+ additionalProperties: boolean;
529
+ required: never[];
530
+ properties: {
531
+ include: {
532
+ type: string;
533
+ items: {
534
+ type: string;
535
+ };
536
+ };
537
+ exclude: {
538
+ type: string;
539
+ items: {
540
+ type: string;
541
+ };
542
+ };
543
+ };
544
+ };
545
+ context: {
546
+ type: string;
547
+ };
548
+ };
549
+ };
550
+ })[];
551
+ };
396
552
  };
397
553
  })[];
398
554
  };
@@ -171,6 +171,84 @@ export declare const ContentLayoutBlock: {
171
171
  resetMargin: {
172
172
  type: string;
173
173
  };
174
+ analyticsEvents: {
175
+ anyOf: ({
176
+ type: string;
177
+ additionalProperties: {
178
+ type: string;
179
+ };
180
+ required: string[];
181
+ properties: {
182
+ name: {
183
+ type: string;
184
+ };
185
+ type: {
186
+ type: string;
187
+ };
188
+ counters: {
189
+ type: string;
190
+ additionalProperties: boolean;
191
+ required: never[];
192
+ properties: {
193
+ include: {
194
+ type: string;
195
+ items: {
196
+ type: string;
197
+ };
198
+ };
199
+ exclude: {
200
+ type: string;
201
+ items: {
202
+ type: string;
203
+ };
204
+ };
205
+ };
206
+ };
207
+ context: {
208
+ type: string;
209
+ };
210
+ };
211
+ } | {
212
+ type: string;
213
+ items: {
214
+ type: string;
215
+ additionalProperties: {
216
+ type: string;
217
+ };
218
+ required: string[];
219
+ properties: {
220
+ name: {
221
+ type: string;
222
+ };
223
+ type: {
224
+ type: string;
225
+ };
226
+ counters: {
227
+ type: string;
228
+ additionalProperties: boolean;
229
+ required: never[];
230
+ properties: {
231
+ include: {
232
+ type: string;
233
+ items: {
234
+ type: string;
235
+ };
236
+ };
237
+ exclude: {
238
+ type: string;
239
+ items: {
240
+ type: string;
241
+ };
242
+ };
243
+ };
244
+ };
245
+ context: {
246
+ type: string;
247
+ };
248
+ };
249
+ };
250
+ })[];
251
+ };
174
252
  };
175
253
  contentType?: undefined;
176
254
  })[];
@@ -218,6 +218,84 @@ export declare const ExtendedFeaturesBlock: {
218
218
  resetMargin: {
219
219
  type: string;
220
220
  };
221
+ analyticsEvents: {
222
+ anyOf: ({
223
+ type: string;
224
+ additionalProperties: {
225
+ type: string;
226
+ };
227
+ required: string[];
228
+ properties: {
229
+ name: {
230
+ type: string;
231
+ };
232
+ type: {
233
+ type: string;
234
+ };
235
+ counters: {
236
+ type: string;
237
+ additionalProperties: boolean;
238
+ required: never[];
239
+ properties: {
240
+ include: {
241
+ type: string;
242
+ items: {
243
+ type: string;
244
+ };
245
+ };
246
+ exclude: {
247
+ type: string;
248
+ items: {
249
+ type: string;
250
+ };
251
+ };
252
+ };
253
+ };
254
+ context: {
255
+ type: string;
256
+ };
257
+ };
258
+ } | {
259
+ type: string;
260
+ items: {
261
+ type: string;
262
+ additionalProperties: {
263
+ type: string;
264
+ };
265
+ required: string[];
266
+ properties: {
267
+ name: {
268
+ type: string;
269
+ };
270
+ type: {
271
+ type: string;
272
+ };
273
+ counters: {
274
+ type: string;
275
+ additionalProperties: boolean;
276
+ required: never[];
277
+ properties: {
278
+ include: {
279
+ type: string;
280
+ items: {
281
+ type: string;
282
+ };
283
+ };
284
+ exclude: {
285
+ type: string;
286
+ items: {
287
+ type: string;
288
+ };
289
+ };
290
+ };
291
+ };
292
+ context: {
293
+ type: string;
294
+ };
295
+ };
296
+ };
297
+ })[];
298
+ };
221
299
  };
222
300
  })[];
223
301
  };