@doyourjob/gravity-ui-page-constructor 5.31.44 → 5.31.45-b

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 (62) hide show
  1. package/build/cjs/blocks/CardLayout/schema.d.ts +78 -0
  2. package/build/cjs/blocks/ContentLayout/schema.d.ts +39 -0
  3. package/build/cjs/blocks/ExtendedFeatures/schema.d.ts +39 -0
  4. package/build/cjs/blocks/FilterBlock/schema.d.ts +78 -0
  5. package/build/cjs/blocks/Form/schema.d.ts +39 -0
  6. package/build/cjs/blocks/Header/schema.d.ts +39 -0
  7. package/build/cjs/blocks/HeaderSlider/schema.d.ts +39 -0
  8. package/build/cjs/blocks/HighlightTable/schema.d.ts +39 -0
  9. package/build/cjs/blocks/Icons/schema.d.ts +78 -0
  10. package/build/cjs/blocks/Map/schema.d.ts +39 -0
  11. package/build/cjs/blocks/Media/schema.d.ts +78 -0
  12. package/build/cjs/blocks/PromoFeaturesBlock/schema.d.ts +39 -0
  13. package/build/cjs/blocks/Questions/schema.d.ts +39 -0
  14. package/build/cjs/blocks/Slider/schema.d.ts +39 -0
  15. package/build/cjs/blocks/SliderNew/schema.d.ts +39 -0
  16. package/build/cjs/blocks/Table/schema.d.ts +39 -0
  17. package/build/cjs/blocks/Tabs/schema.d.ts +39 -0
  18. package/build/cjs/containers/PageConstructor/components/ConstructorBlocks/ConstructorBlocks.js +25 -3
  19. package/build/cjs/models/constructor-items/blocks.d.ts +12 -0
  20. package/build/cjs/schema/constants.d.ts +39 -0
  21. package/build/cjs/schema/validators/common.d.ts +39 -0
  22. package/build/cjs/schema/validators/common.js +39 -0
  23. package/build/cjs/sub-blocks/ContentLayoutCard/schema.d.ts +39 -0
  24. package/build/cjs/utils/background.d.ts +1 -0
  25. package/build/cjs/utils/background.js +9 -0
  26. package/build/cjs/utils/index.d.ts +1 -0
  27. package/build/cjs/utils/index.js +1 -0
  28. package/build/esm/blocks/CardLayout/schema.d.ts +78 -0
  29. package/build/esm/blocks/ContentLayout/schema.d.ts +39 -0
  30. package/build/esm/blocks/ExtendedFeatures/schema.d.ts +39 -0
  31. package/build/esm/blocks/FilterBlock/schema.d.ts +78 -0
  32. package/build/esm/blocks/Form/schema.d.ts +39 -0
  33. package/build/esm/blocks/Header/schema.d.ts +39 -0
  34. package/build/esm/blocks/HeaderSlider/schema.d.ts +39 -0
  35. package/build/esm/blocks/HighlightTable/schema.d.ts +39 -0
  36. package/build/esm/blocks/Icons/schema.d.ts +78 -0
  37. package/build/esm/blocks/Map/schema.d.ts +39 -0
  38. package/build/esm/blocks/Media/schema.d.ts +78 -0
  39. package/build/esm/blocks/PromoFeaturesBlock/schema.d.ts +39 -0
  40. package/build/esm/blocks/Questions/schema.d.ts +39 -0
  41. package/build/esm/blocks/Slider/schema.d.ts +39 -0
  42. package/build/esm/blocks/SliderNew/schema.d.ts +39 -0
  43. package/build/esm/blocks/Table/schema.d.ts +39 -0
  44. package/build/esm/blocks/Tabs/schema.d.ts +39 -0
  45. package/build/esm/containers/PageConstructor/components/ConstructorBlocks/ConstructorBlocks.js +26 -4
  46. package/build/esm/models/constructor-items/blocks.d.ts +12 -0
  47. package/build/esm/schema/constants.d.ts +39 -0
  48. package/build/esm/schema/validators/common.d.ts +39 -0
  49. package/build/esm/schema/validators/common.js +39 -0
  50. package/build/esm/sub-blocks/ContentLayoutCard/schema.d.ts +39 -0
  51. package/build/esm/utils/background.d.ts +1 -0
  52. package/build/esm/utils/background.js +5 -0
  53. package/build/esm/utils/index.d.ts +1 -0
  54. package/build/esm/utils/index.js +1 -0
  55. package/package.json +1 -1
  56. package/schema/index.js +1 -1
  57. package/server/models/constructor-items/blocks.d.ts +12 -0
  58. package/server/utils/background.d.ts +1 -0
  59. package/server/utils/background.js +9 -0
  60. package/server/utils/index.d.ts +1 -0
  61. package/server/utils/index.js +1 -0
  62. package/widget/index.js +1 -1
@@ -229,6 +229,45 @@ export declare const CardLayoutProps: {
229
229
  backgroundFull: {
230
230
  type: string;
231
231
  };
232
+ blockBackground: {
233
+ oneOf: ({
234
+ type: string;
235
+ additionalProperties?: undefined;
236
+ properties?: undefined;
237
+ } | {
238
+ type: string;
239
+ additionalProperties: boolean;
240
+ properties: {
241
+ color: {
242
+ type: string;
243
+ };
244
+ image: {
245
+ type: string;
246
+ };
247
+ size: {
248
+ type: string;
249
+ };
250
+ repeat: {
251
+ type: string;
252
+ };
253
+ position: {
254
+ type: string;
255
+ };
256
+ attachment: {
257
+ type: string;
258
+ };
259
+ clip: {
260
+ type: string;
261
+ };
262
+ origin: {
263
+ type: string;
264
+ };
265
+ blendMode: {
266
+ type: string;
267
+ };
268
+ };
269
+ })[];
270
+ };
232
271
  type: {};
233
272
  when: {
234
273
  type: string;
@@ -467,6 +506,45 @@ export declare const CardLayoutBlock: {
467
506
  backgroundFull: {
468
507
  type: string;
469
508
  };
509
+ blockBackground: {
510
+ oneOf: ({
511
+ type: string;
512
+ additionalProperties?: undefined;
513
+ properties?: undefined;
514
+ } | {
515
+ type: string;
516
+ additionalProperties: boolean;
517
+ properties: {
518
+ color: {
519
+ type: string;
520
+ };
521
+ image: {
522
+ type: string;
523
+ };
524
+ size: {
525
+ type: string;
526
+ };
527
+ repeat: {
528
+ type: string;
529
+ };
530
+ position: {
531
+ type: string;
532
+ };
533
+ attachment: {
534
+ type: string;
535
+ };
536
+ clip: {
537
+ type: string;
538
+ };
539
+ origin: {
540
+ type: string;
541
+ };
542
+ blendMode: {
543
+ type: string;
544
+ };
545
+ };
546
+ })[];
547
+ };
470
548
  type: {};
471
549
  when: {
472
550
  type: string;
@@ -397,6 +397,45 @@ export declare const ContentLayoutBlock: {
397
397
  backgroundFull: {
398
398
  type: string;
399
399
  };
400
+ blockBackground: {
401
+ oneOf: ({
402
+ type: string;
403
+ additionalProperties?: undefined;
404
+ properties?: undefined;
405
+ } | {
406
+ type: string;
407
+ additionalProperties: boolean;
408
+ properties: {
409
+ color: {
410
+ type: string;
411
+ };
412
+ image: {
413
+ type: string;
414
+ };
415
+ size: {
416
+ type: string;
417
+ };
418
+ repeat: {
419
+ type: string;
420
+ };
421
+ position: {
422
+ type: string;
423
+ };
424
+ attachment: {
425
+ type: string;
426
+ };
427
+ clip: {
428
+ type: string;
429
+ };
430
+ origin: {
431
+ type: string;
432
+ };
433
+ blendMode: {
434
+ type: string;
435
+ };
436
+ };
437
+ })[];
438
+ };
400
439
  type: {};
401
440
  when: {
402
441
  type: string;
@@ -307,6 +307,45 @@ export declare const ExtendedFeaturesBlock: {
307
307
  backgroundFull: {
308
308
  type: string;
309
309
  };
310
+ blockBackground: {
311
+ oneOf: ({
312
+ type: string;
313
+ additionalProperties?: undefined;
314
+ properties?: undefined;
315
+ } | {
316
+ type: string;
317
+ additionalProperties: boolean;
318
+ properties: {
319
+ color: {
320
+ type: string;
321
+ };
322
+ image: {
323
+ type: string;
324
+ };
325
+ size: {
326
+ type: string;
327
+ };
328
+ repeat: {
329
+ type: string;
330
+ };
331
+ position: {
332
+ type: string;
333
+ };
334
+ attachment: {
335
+ type: string;
336
+ };
337
+ clip: {
338
+ type: string;
339
+ };
340
+ origin: {
341
+ type: string;
342
+ };
343
+ blendMode: {
344
+ type: string;
345
+ };
346
+ };
347
+ })[];
348
+ };
310
349
  type: {};
311
350
  when: {
312
351
  type: string;
@@ -185,6 +185,45 @@ export declare const FilterProps: {
185
185
  backgroundFull: {
186
186
  type: string;
187
187
  };
188
+ blockBackground: {
189
+ oneOf: ({
190
+ type: string;
191
+ additionalProperties?: undefined;
192
+ properties?: undefined;
193
+ } | {
194
+ type: string;
195
+ additionalProperties: boolean;
196
+ properties: {
197
+ color: {
198
+ type: string;
199
+ };
200
+ image: {
201
+ type: string;
202
+ };
203
+ size: {
204
+ type: string;
205
+ };
206
+ repeat: {
207
+ type: string;
208
+ };
209
+ position: {
210
+ type: string;
211
+ };
212
+ attachment: {
213
+ type: string;
214
+ };
215
+ clip: {
216
+ type: string;
217
+ };
218
+ origin: {
219
+ type: string;
220
+ };
221
+ blendMode: {
222
+ type: string;
223
+ };
224
+ };
225
+ })[];
226
+ };
188
227
  type: {};
189
228
  when: {
190
229
  type: string;
@@ -352,6 +391,45 @@ export declare const FilterBlock: {
352
391
  backgroundFull: {
353
392
  type: string;
354
393
  };
394
+ blockBackground: {
395
+ oneOf: ({
396
+ type: string;
397
+ additionalProperties?: undefined;
398
+ properties?: undefined;
399
+ } | {
400
+ type: string;
401
+ additionalProperties: boolean;
402
+ properties: {
403
+ color: {
404
+ type: string;
405
+ };
406
+ image: {
407
+ type: string;
408
+ };
409
+ size: {
410
+ type: string;
411
+ };
412
+ repeat: {
413
+ type: string;
414
+ };
415
+ position: {
416
+ type: string;
417
+ };
418
+ attachment: {
419
+ type: string;
420
+ };
421
+ clip: {
422
+ type: string;
423
+ };
424
+ origin: {
425
+ type: string;
426
+ };
427
+ blendMode: {
428
+ type: string;
429
+ };
430
+ };
431
+ })[];
432
+ };
355
433
  type: {};
356
434
  when: {
357
435
  type: string;
@@ -492,6 +492,45 @@ export declare const FormBlock: {
492
492
  backgroundFull: {
493
493
  type: string;
494
494
  };
495
+ blockBackground: {
496
+ oneOf: ({
497
+ type: string;
498
+ additionalProperties?: undefined;
499
+ properties?: undefined;
500
+ } | {
501
+ type: string;
502
+ additionalProperties: boolean;
503
+ properties: {
504
+ color: {
505
+ type: string;
506
+ };
507
+ image: {
508
+ type: string;
509
+ };
510
+ size: {
511
+ type: string;
512
+ };
513
+ repeat: {
514
+ type: string;
515
+ };
516
+ position: {
517
+ type: string;
518
+ };
519
+ attachment: {
520
+ type: string;
521
+ };
522
+ clip: {
523
+ type: string;
524
+ };
525
+ origin: {
526
+ type: string;
527
+ };
528
+ blendMode: {
529
+ type: string;
530
+ };
531
+ };
532
+ })[];
533
+ };
495
534
  type: {};
496
535
  when: {
497
536
  type: string;
@@ -1708,6 +1708,45 @@ export declare const HeaderBlock: {
1708
1708
  backgroundFull: {
1709
1709
  type: string;
1710
1710
  };
1711
+ blockBackground: {
1712
+ oneOf: ({
1713
+ type: string;
1714
+ additionalProperties?: undefined;
1715
+ properties?: undefined;
1716
+ } | {
1717
+ type: string;
1718
+ additionalProperties: boolean;
1719
+ properties: {
1720
+ color: {
1721
+ type: string;
1722
+ };
1723
+ image: {
1724
+ type: string;
1725
+ };
1726
+ size: {
1727
+ type: string;
1728
+ };
1729
+ repeat: {
1730
+ type: string;
1731
+ };
1732
+ position: {
1733
+ type: string;
1734
+ };
1735
+ attachment: {
1736
+ type: string;
1737
+ };
1738
+ clip: {
1739
+ type: string;
1740
+ };
1741
+ origin: {
1742
+ type: string;
1743
+ };
1744
+ blendMode: {
1745
+ type: string;
1746
+ };
1747
+ };
1748
+ })[];
1749
+ };
1711
1750
  type: {};
1712
1751
  when: {
1713
1752
  type: string;
@@ -792,6 +792,45 @@ export declare const HeaderSliderBlock: {
792
792
  backgroundFull: {
793
793
  type: string;
794
794
  };
795
+ blockBackground: {
796
+ oneOf: ({
797
+ type: string;
798
+ additionalProperties?: undefined;
799
+ properties?: undefined;
800
+ } | {
801
+ type: string;
802
+ additionalProperties: boolean;
803
+ properties: {
804
+ color: {
805
+ type: string;
806
+ };
807
+ image: {
808
+ type: string;
809
+ };
810
+ size: {
811
+ type: string;
812
+ };
813
+ repeat: {
814
+ type: string;
815
+ };
816
+ position: {
817
+ type: string;
818
+ };
819
+ attachment: {
820
+ type: string;
821
+ };
822
+ clip: {
823
+ type: string;
824
+ };
825
+ origin: {
826
+ type: string;
827
+ };
828
+ blendMode: {
829
+ type: string;
830
+ };
831
+ };
832
+ })[];
833
+ };
795
834
  type: {};
796
835
  when: {
797
836
  type: string;
@@ -126,6 +126,45 @@ export declare const HighlightTableBlock: {
126
126
  backgroundFull: {
127
127
  type: string;
128
128
  };
129
+ blockBackground: {
130
+ oneOf: ({
131
+ type: string;
132
+ additionalProperties?: undefined;
133
+ properties?: undefined;
134
+ } | {
135
+ type: string;
136
+ additionalProperties: boolean;
137
+ properties: {
138
+ color: {
139
+ type: string;
140
+ };
141
+ image: {
142
+ type: string;
143
+ };
144
+ size: {
145
+ type: string;
146
+ };
147
+ repeat: {
148
+ type: string;
149
+ };
150
+ position: {
151
+ type: string;
152
+ };
153
+ attachment: {
154
+ type: string;
155
+ };
156
+ clip: {
157
+ type: string;
158
+ };
159
+ origin: {
160
+ type: string;
161
+ };
162
+ blendMode: {
163
+ type: string;
164
+ };
165
+ };
166
+ })[];
167
+ };
129
168
  type: {};
130
169
  when: {
131
170
  type: string;
@@ -202,6 +202,45 @@ export declare const IconsProps: {
202
202
  backgroundFull: {
203
203
  type: string;
204
204
  };
205
+ blockBackground: {
206
+ oneOf: ({
207
+ type: string;
208
+ additionalProperties?: undefined;
209
+ properties?: undefined;
210
+ } | {
211
+ type: string;
212
+ additionalProperties: boolean;
213
+ properties: {
214
+ color: {
215
+ type: string;
216
+ };
217
+ image: {
218
+ type: string;
219
+ };
220
+ size: {
221
+ type: string;
222
+ };
223
+ repeat: {
224
+ type: string;
225
+ };
226
+ position: {
227
+ type: string;
228
+ };
229
+ attachment: {
230
+ type: string;
231
+ };
232
+ clip: {
233
+ type: string;
234
+ };
235
+ origin: {
236
+ type: string;
237
+ };
238
+ blendMode: {
239
+ type: string;
240
+ };
241
+ };
242
+ })[];
243
+ };
205
244
  type: {};
206
245
  when: {
207
246
  type: string;
@@ -413,6 +452,45 @@ export declare const IconsBlock: {
413
452
  backgroundFull: {
414
453
  type: string;
415
454
  };
455
+ blockBackground: {
456
+ oneOf: ({
457
+ type: string;
458
+ additionalProperties?: undefined;
459
+ properties?: undefined;
460
+ } | {
461
+ type: string;
462
+ additionalProperties: boolean;
463
+ properties: {
464
+ color: {
465
+ type: string;
466
+ };
467
+ image: {
468
+ type: string;
469
+ };
470
+ size: {
471
+ type: string;
472
+ };
473
+ repeat: {
474
+ type: string;
475
+ };
476
+ position: {
477
+ type: string;
478
+ };
479
+ attachment: {
480
+ type: string;
481
+ };
482
+ clip: {
483
+ type: string;
484
+ };
485
+ origin: {
486
+ type: string;
487
+ };
488
+ blendMode: {
489
+ type: string;
490
+ };
491
+ };
492
+ })[];
493
+ };
416
494
  type: {};
417
495
  when: {
418
496
  type: string;
@@ -470,6 +470,45 @@ export declare const MapBlock: {
470
470
  backgroundFull: {
471
471
  type: string;
472
472
  };
473
+ blockBackground: {
474
+ oneOf: ({
475
+ type: string;
476
+ additionalProperties?: undefined;
477
+ properties?: undefined;
478
+ } | {
479
+ type: string;
480
+ additionalProperties: boolean;
481
+ properties: {
482
+ color: {
483
+ type: string;
484
+ };
485
+ image: {
486
+ type: string;
487
+ };
488
+ size: {
489
+ type: string;
490
+ };
491
+ repeat: {
492
+ type: string;
493
+ };
494
+ position: {
495
+ type: string;
496
+ };
497
+ attachment: {
498
+ type: string;
499
+ };
500
+ clip: {
501
+ type: string;
502
+ };
503
+ origin: {
504
+ type: string;
505
+ };
506
+ blendMode: {
507
+ type: string;
508
+ };
509
+ };
510
+ })[];
511
+ };
473
512
  type: {};
474
513
  when: {
475
514
  type: string;
@@ -673,6 +673,45 @@ export declare const MediaBlockBaseProps: {
673
673
  backgroundFull: {
674
674
  type: string;
675
675
  };
676
+ blockBackground: {
677
+ oneOf: ({
678
+ type: string;
679
+ additionalProperties?: undefined;
680
+ properties?: undefined;
681
+ } | {
682
+ type: string;
683
+ additionalProperties: boolean;
684
+ properties: {
685
+ color: {
686
+ type: string;
687
+ };
688
+ image: {
689
+ type: string;
690
+ };
691
+ size: {
692
+ type: string;
693
+ };
694
+ repeat: {
695
+ type: string;
696
+ };
697
+ position: {
698
+ type: string;
699
+ };
700
+ attachment: {
701
+ type: string;
702
+ };
703
+ clip: {
704
+ type: string;
705
+ };
706
+ origin: {
707
+ type: string;
708
+ };
709
+ blendMode: {
710
+ type: string;
711
+ };
712
+ };
713
+ })[];
714
+ };
676
715
  type: {};
677
716
  when: {
678
717
  type: string;
@@ -1367,6 +1406,45 @@ export declare const MediaBlock: {
1367
1406
  backgroundFull: {
1368
1407
  type: string;
1369
1408
  };
1409
+ blockBackground: {
1410
+ oneOf: ({
1411
+ type: string;
1412
+ additionalProperties?: undefined;
1413
+ properties?: undefined;
1414
+ } | {
1415
+ type: string;
1416
+ additionalProperties: boolean;
1417
+ properties: {
1418
+ color: {
1419
+ type: string;
1420
+ };
1421
+ image: {
1422
+ type: string;
1423
+ };
1424
+ size: {
1425
+ type: string;
1426
+ };
1427
+ repeat: {
1428
+ type: string;
1429
+ };
1430
+ position: {
1431
+ type: string;
1432
+ };
1433
+ attachment: {
1434
+ type: string;
1435
+ };
1436
+ clip: {
1437
+ type: string;
1438
+ };
1439
+ origin: {
1440
+ type: string;
1441
+ };
1442
+ blendMode: {
1443
+ type: string;
1444
+ };
1445
+ };
1446
+ })[];
1447
+ };
1370
1448
  type: {};
1371
1449
  when: {
1372
1450
  type: string;