@gravity-ui/blog-constructor 3.2.0-alpha.0 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (72) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/build/cjs/blocks/Author/schema.d.ts +53 -0
  3. package/build/cjs/blocks/Author/schema.js +17 -0
  4. package/build/cjs/blocks/Banner/schema.d.ts +124 -0
  5. package/build/cjs/blocks/Banner/schema.js +22 -0
  6. package/build/cjs/blocks/CTA/CTA.css +27 -47
  7. package/build/cjs/blocks/CTA/schema.d.ts +124 -0
  8. package/build/cjs/blocks/CTA/schema.js +23 -0
  9. package/build/cjs/blocks/ColoredText/schema.d.ts +140 -0
  10. package/build/cjs/blocks/ColoredText/schema.js +29 -0
  11. package/build/cjs/blocks/Feed/schema.d.ts +66 -0
  12. package/build/cjs/blocks/Feed/schema.js +21 -0
  13. package/build/cjs/blocks/Header/schema.d.ts +376 -0
  14. package/build/cjs/blocks/Header/schema.js +14 -0
  15. package/build/cjs/blocks/Layout/schema.d.ts +60 -0
  16. package/build/cjs/blocks/Layout/schema.js +18 -0
  17. package/build/cjs/blocks/Media/schema.d.ts +181 -0
  18. package/build/cjs/blocks/Media/schema.js +17 -0
  19. package/build/cjs/blocks/Meta/schema.d.ts +49 -0
  20. package/build/cjs/blocks/Meta/schema.js +14 -0
  21. package/build/cjs/blocks/Suggest/schema.d.ts +49 -0
  22. package/build/cjs/blocks/Suggest/schema.js +14 -0
  23. package/build/cjs/blocks/YFM/schema.d.ts +54 -0
  24. package/build/cjs/blocks/YFM/schema.js +18 -0
  25. package/build/cjs/index.d.ts +1 -0
  26. package/build/cjs/index.js +1 -0
  27. package/build/cjs/schema/blocks.d.ts +10 -0
  28. package/build/cjs/schema/blocks.js +26 -0
  29. package/build/cjs/schema/common.d.ts +28 -0
  30. package/build/cjs/schema/common.js +25 -0
  31. package/build/cjs/schema/headers.d.ts +1 -0
  32. package/build/cjs/schema/headers.js +17 -0
  33. package/build/cjs/schema/index.d.ts +1288 -0
  34. package/build/cjs/schema/index.js +52 -0
  35. package/build/cjs/schema/utils.d.ts +9 -0
  36. package/build/cjs/schema/utils.js +9 -0
  37. package/build/esm/blocks/Author/schema.d.ts +53 -0
  38. package/build/esm/blocks/Author/schema.js +14 -0
  39. package/build/esm/blocks/Banner/schema.d.ts +124 -0
  40. package/build/esm/blocks/Banner/schema.js +19 -0
  41. package/build/esm/blocks/CTA/CTA.css +27 -47
  42. package/build/esm/blocks/CTA/schema.d.ts +124 -0
  43. package/build/esm/blocks/CTA/schema.js +20 -0
  44. package/build/esm/blocks/ColoredText/schema.d.ts +140 -0
  45. package/build/esm/blocks/ColoredText/schema.js +26 -0
  46. package/build/esm/blocks/Feed/schema.d.ts +66 -0
  47. package/build/esm/blocks/Feed/schema.js +18 -0
  48. package/build/esm/blocks/Header/schema.d.ts +376 -0
  49. package/build/esm/blocks/Header/schema.js +11 -0
  50. package/build/esm/blocks/Layout/schema.d.ts +60 -0
  51. package/build/esm/blocks/Layout/schema.js +15 -0
  52. package/build/esm/blocks/Media/schema.d.ts +181 -0
  53. package/build/esm/blocks/Media/schema.js +14 -0
  54. package/build/esm/blocks/Meta/schema.d.ts +49 -0
  55. package/build/esm/blocks/Meta/schema.js +11 -0
  56. package/build/esm/blocks/Suggest/schema.d.ts +49 -0
  57. package/build/esm/blocks/Suggest/schema.js +11 -0
  58. package/build/esm/blocks/YFM/schema.d.ts +54 -0
  59. package/build/esm/blocks/YFM/schema.js +15 -0
  60. package/build/esm/index.d.ts +1 -0
  61. package/build/esm/index.js +1 -0
  62. package/build/esm/schema/blocks.d.ts +10 -0
  63. package/build/esm/schema/blocks.js +10 -0
  64. package/build/esm/schema/common.d.ts +28 -0
  65. package/build/esm/schema/common.js +21 -0
  66. package/build/esm/schema/headers.d.ts +1 -0
  67. package/build/esm/schema/headers.js +1 -0
  68. package/build/esm/schema/index.d.ts +1288 -0
  69. package/build/esm/schema/index.js +26 -0
  70. package/build/esm/schema/utils.d.ts +9 -0
  71. package/build/esm/schema/utils.js +5 -0
  72. package/package.json +2 -5
@@ -0,0 +1,1288 @@
1
+ import * as blocks from './blocks';
2
+ import * as headers from './headers';
3
+ export declare const validators: {
4
+ blocks: typeof blocks;
5
+ headers: typeof headers;
6
+ };
7
+ export declare const schemasForCustom: {
8
+ headers: {
9
+ "blog-header-block": {
10
+ "blog-header-block": {
11
+ type: string;
12
+ additionalProperties: boolean;
13
+ properties: {
14
+ title: {
15
+ type: string;
16
+ contentType: string;
17
+ };
18
+ overtitle: {
19
+ type: string;
20
+ contentType: string;
21
+ };
22
+ description: {
23
+ type: string;
24
+ contentType: string;
25
+ };
26
+ width: {
27
+ type: string;
28
+ enum: string[];
29
+ };
30
+ buttons: {
31
+ type: string;
32
+ items: {
33
+ type: string;
34
+ properties: {
35
+ when: {
36
+ type: string;
37
+ };
38
+ };
39
+ };
40
+ };
41
+ offset: {
42
+ type: string;
43
+ enum: string[];
44
+ };
45
+ image: {
46
+ oneOf: ({
47
+ oneOf: ({
48
+ type: string;
49
+ properties: {
50
+ when: {
51
+ type: string;
52
+ };
53
+ };
54
+ } | {
55
+ type: string;
56
+ pattern: string;
57
+ })[];
58
+ } | {
59
+ type: string;
60
+ additionalProperties: boolean;
61
+ required: import("@gravity-ui/page-constructor").Theme[];
62
+ properties: {};
63
+ })[];
64
+ };
65
+ video: {
66
+ oneOf: ({
67
+ type: string;
68
+ additionalProperties: boolean;
69
+ required: string[];
70
+ properties: {
71
+ src: {
72
+ type: string;
73
+ items: {
74
+ type: string;
75
+ };
76
+ };
77
+ loop: {
78
+ anyOf: ({
79
+ type: string;
80
+ additionalProperties: boolean;
81
+ required: string[];
82
+ properties: {
83
+ start: {
84
+ type: string;
85
+ };
86
+ end: {
87
+ type: string;
88
+ };
89
+ };
90
+ } | {
91
+ type: string;
92
+ })[];
93
+ };
94
+ type: {
95
+ type: string;
96
+ enum: string[];
97
+ };
98
+ muted: {
99
+ type: string;
100
+ };
101
+ playing: {
102
+ type: string;
103
+ };
104
+ elapsedTime: {
105
+ type: string;
106
+ };
107
+ playIcon: {
108
+ type: string;
109
+ additionalProperties: boolean;
110
+ properties: {
111
+ type: {
112
+ type: string;
113
+ enum: string[];
114
+ };
115
+ theme: {
116
+ type: string;
117
+ enum: string[];
118
+ };
119
+ text: {
120
+ type: string;
121
+ contentType: string;
122
+ };
123
+ };
124
+ };
125
+ controls: {
126
+ type: string;
127
+ enum: string[];
128
+ };
129
+ };
130
+ } | {
131
+ type: string;
132
+ additionalProperties: boolean;
133
+ required: import("@gravity-ui/page-constructor").Theme[];
134
+ properties: {};
135
+ })[];
136
+ };
137
+ backLink: {
138
+ type: string;
139
+ required: string[];
140
+ properties: {
141
+ url: {
142
+ type: string;
143
+ };
144
+ title: {
145
+ type: string;
146
+ contentType: string;
147
+ };
148
+ };
149
+ };
150
+ imageSize: {
151
+ type: string;
152
+ enum: string[];
153
+ };
154
+ verticalOffset: {
155
+ type: string;
156
+ enum: string[];
157
+ };
158
+ background: {
159
+ oneOf: ({
160
+ type: string;
161
+ additionalProperties: boolean;
162
+ required: never[];
163
+ properties: {
164
+ fullWidth: {
165
+ type: string;
166
+ };
167
+ fullWidthMedia: {
168
+ type: string;
169
+ };
170
+ color: {
171
+ type: string;
172
+ };
173
+ image: {
174
+ anyOf: ({
175
+ oneOf: ({
176
+ type: string;
177
+ properties: {
178
+ when: {
179
+ type: string;
180
+ };
181
+ };
182
+ } | {
183
+ type: string;
184
+ pattern: string;
185
+ })[];
186
+ } | {
187
+ type: string;
188
+ items: {
189
+ oneOf: ({
190
+ type: string;
191
+ properties: {
192
+ when: {
193
+ type: string;
194
+ };
195
+ };
196
+ } | {
197
+ type: string;
198
+ pattern: string;
199
+ })[];
200
+ };
201
+ })[];
202
+ };
203
+ video: {
204
+ type: string;
205
+ additionalProperties: boolean;
206
+ required: string[];
207
+ properties: {
208
+ src: {
209
+ type: string;
210
+ items: {
211
+ type: string;
212
+ };
213
+ };
214
+ loop: {
215
+ anyOf: ({
216
+ type: string;
217
+ additionalProperties: boolean;
218
+ required: string[];
219
+ properties: {
220
+ start: {
221
+ type: string;
222
+ };
223
+ end: {
224
+ type: string;
225
+ };
226
+ };
227
+ } | {
228
+ type: string;
229
+ })[];
230
+ };
231
+ type: {
232
+ type: string;
233
+ enum: string[];
234
+ };
235
+ muted: {
236
+ type: string;
237
+ };
238
+ playing: {
239
+ type: string;
240
+ };
241
+ elapsedTime: {
242
+ type: string;
243
+ };
244
+ playIcon: {
245
+ type: string;
246
+ additionalProperties: boolean;
247
+ properties: {
248
+ type: {
249
+ type: string;
250
+ enum: string[];
251
+ };
252
+ theme: {
253
+ type: string;
254
+ enum: string[];
255
+ };
256
+ text: {
257
+ type: string;
258
+ contentType: string;
259
+ };
260
+ };
261
+ };
262
+ controls: {
263
+ type: string;
264
+ enum: string[];
265
+ };
266
+ };
267
+ };
268
+ youtube: {
269
+ type: string;
270
+ };
271
+ parallax: {
272
+ type: string;
273
+ };
274
+ height: {
275
+ type: string;
276
+ };
277
+ previewImg: {
278
+ type: string;
279
+ };
280
+ dataLens: {
281
+ oneOf: ({
282
+ type: string;
283
+ additionalProperties: boolean;
284
+ required: string[];
285
+ properties: {
286
+ id: {
287
+ type: string;
288
+ };
289
+ theme: {
290
+ type: string;
291
+ enum: string[];
292
+ };
293
+ };
294
+ } | {
295
+ type: string;
296
+ })[];
297
+ };
298
+ };
299
+ } | {
300
+ type: string;
301
+ additionalProperties: boolean;
302
+ required: import("@gravity-ui/page-constructor").Theme[];
303
+ properties: {};
304
+ })[];
305
+ };
306
+ theme: {
307
+ type: string;
308
+ enum: string[];
309
+ };
310
+ breadcrumbs: {
311
+ type: string;
312
+ additionalProperties: boolean;
313
+ required: string[];
314
+ properties: {
315
+ items: {
316
+ type: string;
317
+ items: {
318
+ type: string;
319
+ additionalProperties: boolean;
320
+ required: string[];
321
+ properties: {
322
+ url: {
323
+ type: string;
324
+ };
325
+ text: {
326
+ type: string;
327
+ contentType: string;
328
+ };
329
+ };
330
+ };
331
+ };
332
+ theme: {
333
+ type: string;
334
+ enum: string[];
335
+ };
336
+ };
337
+ };
338
+ status: {
339
+ type: string;
340
+ };
341
+ paddingTop: {
342
+ type: string;
343
+ enum: string[];
344
+ };
345
+ paddingBottom: {
346
+ type: string;
347
+ enum: string[];
348
+ };
349
+ fullWidth: {
350
+ type: string;
351
+ };
352
+ column: {
353
+ type: string;
354
+ enum: string[];
355
+ };
356
+ anchor: {
357
+ type: string;
358
+ additionalProperties: boolean;
359
+ required: string[];
360
+ properties: {
361
+ text: {
362
+ type: string;
363
+ contentType: string;
364
+ };
365
+ url: {
366
+ type: string;
367
+ };
368
+ };
369
+ };
370
+ visible: {
371
+ type: string;
372
+ enum: string[];
373
+ };
374
+ resetPaddings: {
375
+ type: string;
376
+ };
377
+ context: {
378
+ type: string;
379
+ };
380
+ type: {};
381
+ when: {};
382
+ };
383
+ };
384
+ };
385
+ };
386
+ blocks: {
387
+ "blog-author-block": {
388
+ "blog-author-block": {
389
+ type: string;
390
+ additionalProperties: boolean;
391
+ required: string[];
392
+ properties: {
393
+ authorId: {
394
+ type: string;
395
+ };
396
+ paddingTop: {
397
+ type: string;
398
+ enum: string[];
399
+ };
400
+ paddingBottom: {
401
+ type: string;
402
+ enum: string[];
403
+ };
404
+ fullWidth: {
405
+ type: string;
406
+ };
407
+ column: {
408
+ type: string;
409
+ enum: string[];
410
+ };
411
+ anchor: {
412
+ type: string;
413
+ additionalProperties: boolean;
414
+ required: string[];
415
+ properties: {
416
+ text: {
417
+ type: string;
418
+ contentType: string;
419
+ };
420
+ url: {
421
+ type: string;
422
+ };
423
+ };
424
+ };
425
+ visible: {
426
+ type: string;
427
+ enum: string[];
428
+ };
429
+ resetPaddings: {
430
+ type: string;
431
+ };
432
+ context: {
433
+ type: string;
434
+ };
435
+ type: {};
436
+ when: {};
437
+ };
438
+ };
439
+ };
440
+ "blog-banner-block": {
441
+ "blog-banner-block": {
442
+ type: string;
443
+ additionalProperties: boolean;
444
+ required: string[];
445
+ properties: {
446
+ color: {
447
+ type: string;
448
+ };
449
+ image: {
450
+ type: string;
451
+ };
452
+ imageSize: {
453
+ type: string;
454
+ enum: string[];
455
+ };
456
+ title: {
457
+ oneOf: ({
458
+ type: string;
459
+ additionalProperties: boolean;
460
+ required: string[];
461
+ properties: {
462
+ text: {
463
+ type: string;
464
+ contentType: string;
465
+ };
466
+ textSize: {
467
+ type: string;
468
+ enum: string[];
469
+ };
470
+ url: {
471
+ type: string;
472
+ };
473
+ resetMargin: {
474
+ type: string;
475
+ };
476
+ };
477
+ } | {
478
+ type: string;
479
+ contentType: string;
480
+ })[];
481
+ };
482
+ text: {
483
+ type: string;
484
+ contentType: string;
485
+ };
486
+ additionalInfo: {
487
+ type: string;
488
+ contentType: string;
489
+ };
490
+ size: {
491
+ type: string;
492
+ enum: string[];
493
+ };
494
+ links: {
495
+ type: string;
496
+ items: {
497
+ type: string;
498
+ properties: {
499
+ when: {
500
+ type: string;
501
+ };
502
+ };
503
+ };
504
+ };
505
+ buttons: {
506
+ type: string;
507
+ items: {
508
+ type: string;
509
+ properties: {
510
+ when: {
511
+ type: string;
512
+ };
513
+ };
514
+ };
515
+ };
516
+ theme: {
517
+ type: string;
518
+ enum: string[];
519
+ };
520
+ paddingTop: {
521
+ type: string;
522
+ enum: string[];
523
+ };
524
+ paddingBottom: {
525
+ type: string;
526
+ enum: string[];
527
+ };
528
+ fullWidth: {
529
+ type: string;
530
+ };
531
+ column: {
532
+ type: string;
533
+ enum: string[];
534
+ };
535
+ anchor: {
536
+ type: string;
537
+ additionalProperties: boolean;
538
+ required: string[];
539
+ properties: {
540
+ text: {
541
+ type: string;
542
+ contentType: string;
543
+ };
544
+ url: {
545
+ type: string;
546
+ };
547
+ };
548
+ };
549
+ visible: {
550
+ type: string;
551
+ enum: string[];
552
+ };
553
+ resetPaddings: {
554
+ type: string;
555
+ };
556
+ context: {
557
+ type: string;
558
+ };
559
+ type: {};
560
+ when: {};
561
+ };
562
+ };
563
+ };
564
+ "blog-colored-text-block": {
565
+ "blog-colored-text-block": {
566
+ type: string;
567
+ additionalProperties: boolean;
568
+ required: string[];
569
+ properties: {
570
+ background: {
571
+ type: string;
572
+ additionalProperties: boolean;
573
+ properties: {
574
+ image: {
575
+ oneOf: ({
576
+ type: string;
577
+ properties: {
578
+ when: {
579
+ type: string;
580
+ };
581
+ };
582
+ } | {
583
+ type: string;
584
+ pattern: string;
585
+ })[];
586
+ };
587
+ color: {
588
+ type: string;
589
+ };
590
+ altText: {
591
+ type: string;
592
+ contentType: string;
593
+ };
594
+ };
595
+ };
596
+ title: {
597
+ oneOf: ({
598
+ type: string;
599
+ additionalProperties: boolean;
600
+ required: string[];
601
+ properties: {
602
+ text: {
603
+ type: string;
604
+ contentType: string;
605
+ };
606
+ textSize: {
607
+ type: string;
608
+ enum: string[];
609
+ };
610
+ url: {
611
+ type: string;
612
+ };
613
+ resetMargin: {
614
+ type: string;
615
+ };
616
+ };
617
+ } | {
618
+ type: string;
619
+ contentType: string;
620
+ })[];
621
+ };
622
+ text: {
623
+ type: string;
624
+ contentType: string;
625
+ };
626
+ additionalInfo: {
627
+ type: string;
628
+ contentType: string;
629
+ };
630
+ size: {
631
+ type: string;
632
+ enum: string[];
633
+ };
634
+ links: {
635
+ type: string;
636
+ items: {
637
+ type: string;
638
+ properties: {
639
+ when: {
640
+ type: string;
641
+ };
642
+ };
643
+ };
644
+ };
645
+ buttons: {
646
+ type: string;
647
+ items: {
648
+ type: string;
649
+ properties: {
650
+ when: {
651
+ type: string;
652
+ };
653
+ };
654
+ };
655
+ };
656
+ theme: {
657
+ type: string;
658
+ enum: string[];
659
+ };
660
+ paddingTop: {
661
+ type: string;
662
+ enum: string[];
663
+ };
664
+ paddingBottom: {
665
+ type: string;
666
+ enum: string[];
667
+ };
668
+ fullWidth: {
669
+ type: string;
670
+ };
671
+ column: {
672
+ type: string;
673
+ enum: string[];
674
+ };
675
+ anchor: {
676
+ type: string;
677
+ additionalProperties: boolean;
678
+ required: string[];
679
+ properties: {
680
+ text: {
681
+ type: string;
682
+ contentType: string;
683
+ };
684
+ url: {
685
+ type: string;
686
+ };
687
+ };
688
+ };
689
+ visible: {
690
+ type: string;
691
+ enum: string[];
692
+ };
693
+ resetPaddings: {
694
+ type: string;
695
+ };
696
+ context: {
697
+ type: string;
698
+ };
699
+ type: {};
700
+ when: {};
701
+ };
702
+ };
703
+ };
704
+ "blog-cta-block": {
705
+ "blog-cta-block": {
706
+ type: string;
707
+ additionalProperties: boolean;
708
+ required: string[];
709
+ properties: {
710
+ items: {
711
+ type: string;
712
+ items: {
713
+ type: string;
714
+ additionalProperties: boolean;
715
+ required: string[];
716
+ properties: {
717
+ title: {
718
+ oneOf: ({
719
+ type: string;
720
+ additionalProperties: boolean;
721
+ required: string[];
722
+ properties: {
723
+ text: {
724
+ type: string;
725
+ contentType: string;
726
+ };
727
+ textSize: {
728
+ type: string;
729
+ enum: string[];
730
+ };
731
+ url: {
732
+ type: string;
733
+ };
734
+ resetMargin: {
735
+ type: string;
736
+ };
737
+ };
738
+ } | {
739
+ type: string;
740
+ contentType: string;
741
+ })[];
742
+ };
743
+ text: {
744
+ type: string;
745
+ contentType: string;
746
+ };
747
+ additionalInfo: {
748
+ type: string;
749
+ contentType: string;
750
+ };
751
+ size: {
752
+ type: string;
753
+ enum: string[];
754
+ };
755
+ links: {
756
+ type: string;
757
+ items: {
758
+ type: string;
759
+ properties: {
760
+ when: {
761
+ type: string;
762
+ };
763
+ };
764
+ };
765
+ };
766
+ buttons: {
767
+ type: string;
768
+ items: {
769
+ type: string;
770
+ properties: {
771
+ when: {
772
+ type: string;
773
+ };
774
+ };
775
+ };
776
+ };
777
+ theme: {
778
+ type: string;
779
+ enum: string[];
780
+ };
781
+ };
782
+ };
783
+ };
784
+ paddingTop: {
785
+ type: string;
786
+ enum: string[];
787
+ };
788
+ paddingBottom: {
789
+ type: string;
790
+ enum: string[];
791
+ };
792
+ fullWidth: {
793
+ type: string;
794
+ };
795
+ column: {
796
+ type: string;
797
+ enum: string[];
798
+ };
799
+ anchor: {
800
+ type: string;
801
+ additionalProperties: boolean;
802
+ required: string[];
803
+ properties: {
804
+ text: {
805
+ type: string;
806
+ contentType: string;
807
+ };
808
+ url: {
809
+ type: string;
810
+ };
811
+ };
812
+ };
813
+ visible: {
814
+ type: string;
815
+ enum: string[];
816
+ };
817
+ resetPaddings: {
818
+ type: string;
819
+ };
820
+ context: {
821
+ type: string;
822
+ };
823
+ type: {};
824
+ when: {};
825
+ };
826
+ };
827
+ };
828
+ "blog-feed-block": {
829
+ "blog-feed-block": {
830
+ additionalProperties: boolean;
831
+ required: never[];
832
+ properties: {
833
+ title: {
834
+ type: string;
835
+ additionalProperties: boolean;
836
+ required: string[];
837
+ properties: {
838
+ text: {
839
+ type: string;
840
+ contentType: string;
841
+ };
842
+ textSize: {
843
+ type: string;
844
+ enum: string[];
845
+ };
846
+ url: {
847
+ type: string;
848
+ };
849
+ resetMargin: {
850
+ type: string;
851
+ };
852
+ };
853
+ };
854
+ image: {
855
+ type: string;
856
+ };
857
+ description: {
858
+ type: string;
859
+ contentType: string;
860
+ };
861
+ size: {
862
+ type: string;
863
+ enum: string[];
864
+ };
865
+ anchor: {
866
+ type: string;
867
+ additionalProperties: boolean;
868
+ required: string[];
869
+ properties: {
870
+ text: {
871
+ type: string;
872
+ contentType: string;
873
+ };
874
+ url: {
875
+ type: string;
876
+ };
877
+ };
878
+ };
879
+ visible: {
880
+ type: string;
881
+ enum: string[];
882
+ };
883
+ resetPaddings: {
884
+ type: string;
885
+ };
886
+ context: {
887
+ type: string;
888
+ };
889
+ type: {};
890
+ when: {};
891
+ };
892
+ };
893
+ };
894
+ "blog-layout-block": {
895
+ "blog-layout-block": {
896
+ type: string;
897
+ additionalProperties: boolean;
898
+ required: string[];
899
+ properties: {
900
+ children: {
901
+ type: string;
902
+ items: {
903
+ $ref: string;
904
+ };
905
+ };
906
+ mobileOrder: {
907
+ type: string;
908
+ enum: string[];
909
+ };
910
+ paddingTop: {
911
+ type: string;
912
+ enum: string[];
913
+ };
914
+ paddingBottom: {
915
+ type: string;
916
+ enum: string[];
917
+ };
918
+ fullWidth: {
919
+ type: string;
920
+ };
921
+ column: {
922
+ type: string;
923
+ enum: string[];
924
+ };
925
+ anchor: {
926
+ type: string;
927
+ additionalProperties: boolean;
928
+ required: string[];
929
+ properties: {
930
+ text: {
931
+ type: string;
932
+ contentType: string;
933
+ };
934
+ url: {
935
+ type: string;
936
+ };
937
+ };
938
+ };
939
+ visible: {
940
+ type: string;
941
+ enum: string[];
942
+ };
943
+ resetPaddings: {
944
+ type: string;
945
+ };
946
+ context: {
947
+ type: string;
948
+ };
949
+ type: {};
950
+ when: {};
951
+ };
952
+ };
953
+ };
954
+ "blog-media-block": {
955
+ "blog-media-block": {
956
+ type: string;
957
+ additionalProperties: boolean;
958
+ properties: {
959
+ text: {
960
+ type: string;
961
+ contentType: string;
962
+ };
963
+ color: {
964
+ type: string;
965
+ };
966
+ image: {
967
+ anyOf: ({
968
+ oneOf: ({
969
+ type: string;
970
+ properties: {
971
+ when: {
972
+ type: string;
973
+ };
974
+ };
975
+ } | {
976
+ type: string;
977
+ pattern: string;
978
+ })[];
979
+ } | {
980
+ type: string;
981
+ items: {
982
+ oneOf: ({
983
+ type: string;
984
+ properties: {
985
+ when: {
986
+ type: string;
987
+ };
988
+ };
989
+ } | {
990
+ type: string;
991
+ pattern: string;
992
+ })[];
993
+ };
994
+ })[];
995
+ };
996
+ video: {
997
+ type: string;
998
+ additionalProperties: boolean;
999
+ required: string[];
1000
+ properties: {
1001
+ src: {
1002
+ type: string;
1003
+ items: {
1004
+ type: string;
1005
+ };
1006
+ };
1007
+ loop: {
1008
+ anyOf: ({
1009
+ type: string;
1010
+ additionalProperties: boolean;
1011
+ required: string[];
1012
+ properties: {
1013
+ start: {
1014
+ type: string;
1015
+ };
1016
+ end: {
1017
+ type: string;
1018
+ };
1019
+ };
1020
+ } | {
1021
+ type: string;
1022
+ })[];
1023
+ };
1024
+ type: {
1025
+ type: string;
1026
+ enum: string[];
1027
+ };
1028
+ muted: {
1029
+ type: string;
1030
+ };
1031
+ playing: {
1032
+ type: string;
1033
+ };
1034
+ elapsedTime: {
1035
+ type: string;
1036
+ };
1037
+ playIcon: {
1038
+ type: string;
1039
+ additionalProperties: boolean;
1040
+ properties: {
1041
+ type: {
1042
+ type: string;
1043
+ enum: string[];
1044
+ };
1045
+ theme: {
1046
+ type: string;
1047
+ enum: string[];
1048
+ };
1049
+ text: {
1050
+ type: string;
1051
+ contentType: string;
1052
+ };
1053
+ };
1054
+ };
1055
+ controls: {
1056
+ type: string;
1057
+ enum: string[];
1058
+ };
1059
+ };
1060
+ };
1061
+ youtube: {
1062
+ type: string;
1063
+ };
1064
+ parallax: {
1065
+ type: string;
1066
+ };
1067
+ height: {
1068
+ type: string;
1069
+ };
1070
+ previewImg: {
1071
+ type: string;
1072
+ };
1073
+ dataLens: {
1074
+ oneOf: ({
1075
+ type: string;
1076
+ additionalProperties: boolean;
1077
+ required: string[];
1078
+ properties: {
1079
+ id: {
1080
+ type: string;
1081
+ };
1082
+ theme: {
1083
+ type: string;
1084
+ enum: string[];
1085
+ };
1086
+ };
1087
+ } | {
1088
+ type: string;
1089
+ })[];
1090
+ };
1091
+ paddingTop: {
1092
+ type: string;
1093
+ enum: string[];
1094
+ };
1095
+ paddingBottom: {
1096
+ type: string;
1097
+ enum: string[];
1098
+ };
1099
+ fullWidth: {
1100
+ type: string;
1101
+ };
1102
+ column: {
1103
+ type: string;
1104
+ enum: string[];
1105
+ };
1106
+ anchor: {
1107
+ type: string;
1108
+ additionalProperties: boolean;
1109
+ required: string[];
1110
+ properties: {
1111
+ text: {
1112
+ type: string;
1113
+ contentType: string;
1114
+ };
1115
+ url: {
1116
+ type: string;
1117
+ };
1118
+ };
1119
+ };
1120
+ visible: {
1121
+ type: string;
1122
+ enum: string[];
1123
+ };
1124
+ resetPaddings: {
1125
+ type: string;
1126
+ };
1127
+ context: {
1128
+ type: string;
1129
+ };
1130
+ type: {};
1131
+ when: {};
1132
+ };
1133
+ };
1134
+ };
1135
+ "blog-meta-block": {
1136
+ "blog-meta-block": {
1137
+ type: string;
1138
+ additionalProperties: boolean;
1139
+ properties: {
1140
+ paddingTop: {
1141
+ type: string;
1142
+ enum: string[];
1143
+ };
1144
+ paddingBottom: {
1145
+ type: string;
1146
+ enum: string[];
1147
+ };
1148
+ fullWidth: {
1149
+ type: string;
1150
+ };
1151
+ column: {
1152
+ type: string;
1153
+ enum: string[];
1154
+ };
1155
+ anchor: {
1156
+ type: string;
1157
+ additionalProperties: boolean;
1158
+ required: string[];
1159
+ properties: {
1160
+ text: {
1161
+ type: string;
1162
+ contentType: string;
1163
+ };
1164
+ url: {
1165
+ type: string;
1166
+ };
1167
+ };
1168
+ };
1169
+ visible: {
1170
+ type: string;
1171
+ enum: string[];
1172
+ };
1173
+ resetPaddings: {
1174
+ type: string;
1175
+ };
1176
+ context: {
1177
+ type: string;
1178
+ };
1179
+ type: {};
1180
+ when: {};
1181
+ };
1182
+ };
1183
+ };
1184
+ "blog-suggest-block": {
1185
+ "blog-suggest-block": {
1186
+ type: string;
1187
+ additionalProperties: boolean;
1188
+ properties: {
1189
+ paddingTop: {
1190
+ type: string;
1191
+ enum: string[];
1192
+ };
1193
+ paddingBottom: {
1194
+ type: string;
1195
+ enum: string[];
1196
+ };
1197
+ fullWidth: {
1198
+ type: string;
1199
+ };
1200
+ column: {
1201
+ type: string;
1202
+ enum: string[];
1203
+ };
1204
+ anchor: {
1205
+ type: string;
1206
+ additionalProperties: boolean;
1207
+ required: string[];
1208
+ properties: {
1209
+ text: {
1210
+ type: string;
1211
+ contentType: string;
1212
+ };
1213
+ url: {
1214
+ type: string;
1215
+ };
1216
+ };
1217
+ };
1218
+ visible: {
1219
+ type: string;
1220
+ enum: string[];
1221
+ };
1222
+ resetPaddings: {
1223
+ type: string;
1224
+ };
1225
+ context: {
1226
+ type: string;
1227
+ };
1228
+ type: {};
1229
+ when: {};
1230
+ };
1231
+ };
1232
+ };
1233
+ "blog-yfm-block": {
1234
+ "blog-yfm-block": {
1235
+ type: string;
1236
+ additionalProperties: boolean;
1237
+ required: string[];
1238
+ properties: {
1239
+ text: {
1240
+ type: string;
1241
+ contentType: string;
1242
+ };
1243
+ paddingTop: {
1244
+ type: string;
1245
+ enum: string[];
1246
+ };
1247
+ paddingBottom: {
1248
+ type: string;
1249
+ enum: string[];
1250
+ };
1251
+ fullWidth: {
1252
+ type: string;
1253
+ };
1254
+ column: {
1255
+ type: string;
1256
+ enum: string[];
1257
+ };
1258
+ anchor: {
1259
+ type: string;
1260
+ additionalProperties: boolean;
1261
+ required: string[];
1262
+ properties: {
1263
+ text: {
1264
+ type: string;
1265
+ contentType: string;
1266
+ };
1267
+ url: {
1268
+ type: string;
1269
+ };
1270
+ };
1271
+ };
1272
+ visible: {
1273
+ type: string;
1274
+ enum: string[];
1275
+ };
1276
+ resetPaddings: {
1277
+ type: string;
1278
+ };
1279
+ context: {
1280
+ type: string;
1281
+ };
1282
+ type: {};
1283
+ when: {};
1284
+ };
1285
+ };
1286
+ };
1287
+ };
1288
+ };