@wizishop/wizi-block 3.3.38 → 3.3.41

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 (26) hide show
  1. package/bundles/wizishop-wizi-block.umd.js +146 -137
  2. package/bundles/wizishop-wizi-block.umd.js.map +1 -1
  3. package/bundles/wizishop-wizi-block.umd.min.js +1 -1
  4. package/bundles/wizishop-wizi-block.umd.min.js.map +1 -1
  5. package/esm2015/lib/dtos/blocks/images/images-banner.dto.js +6 -7
  6. package/esm2015/lib/dtos/blocks/images/images-simple.dto.js +6 -7
  7. package/esm2015/lib/dtos/blocks/text-backgrounds/text-backgrounds-simple.dto.js +8 -9
  8. package/esm2015/lib/dtos/blocks/text-backgrounds/text-backgrounds-with-banner.dto.js +8 -9
  9. package/esm2015/lib/dtos/blocks/text-backgrounds/text-backgrounds-with-txt.dto.js +8 -9
  10. package/esm2015/lib/dtos/forms/forms.dto.js +2 -2
  11. package/esm2015/lib/services/blocks/faq/faq-accordion.service.js +3 -5
  12. package/esm2015/lib/services/blocks/images/images-banner.service.js +8 -5
  13. package/esm2015/lib/services/blocks/images/images-simple.service.js +8 -5
  14. package/esm2015/lib/services/blocks/text-backgrounds/text-backgrounds-simple.service.js +8 -5
  15. package/esm2015/lib/services/blocks/text-backgrounds/text-backgrounds-with-banner.service.js +8 -5
  16. package/esm2015/lib/services/blocks/text-backgrounds/text-backgrounds-with-txt.service.js +8 -5
  17. package/fesm2015/wizishop-wizi-block.js +146 -137
  18. package/fesm2015/wizishop-wizi-block.js.map +1 -1
  19. package/lib/dtos/blocks/images/images-banner.dto.d.ts +1 -2
  20. package/lib/dtos/blocks/images/images-simple.dto.d.ts +1 -2
  21. package/lib/dtos/blocks/text-backgrounds/text-backgrounds-simple.dto.d.ts +1 -2
  22. package/lib/dtos/blocks/text-backgrounds/text-backgrounds-with-banner.dto.d.ts +1 -2
  23. package/lib/dtos/blocks/text-backgrounds/text-backgrounds-with-txt.dto.d.ts +1 -2
  24. package/package.json +1 -1
  25. package/wizi-block.scss +799 -795
  26. package/wizishop-wizi-block.metadata.json +1 -1
@@ -708,6 +708,7 @@
708
708
  this.block = block;
709
709
  translateBlockService.translateProperties(this.block);
710
710
  if (hasMargin) {
711
+ this.forms.push(new FormsContentDto(FORM_NAME_HIDE_BLOCK, 'wb.forms.FormsContentDto.4', FORM_TYPE_CHECKBOX, block[FORM_NAME_HIDE_BLOCK], '', '', [], [], [true, false]));
711
712
  this.forms.push(new FormsContentDto(FORM_NAME_MARGIN, 'wb.forms.FormsContentDto.1', FORM_TYPE_TAG, block[FORM_NAME_MARGIN], '#122231', '', [
712
713
  'wb.blocks.FormContentDto.101',
713
714
  'wb.blocks.FormContentDto.94',
@@ -725,7 +726,6 @@
725
726
  'wb.forms.FormsContentDto.11',
726
727
  'wb.forms.FormsContentDto.12',
727
728
  ], ['small', 'medium', 'large', 'full']));
728
- this.forms.push(new FormsContentDto(FORM_NAME_HIDE_BLOCK, 'wb.forms.FormsContentDto.4', FORM_TYPE_CHECKBOX, block[FORM_NAME_HIDE_BLOCK], '', '', [], [], [true, false]));
729
729
  }
730
730
  }
731
731
  return FormsDto;
@@ -3816,21 +3816,20 @@
3816
3816
  },] }
3817
3817
  ];
3818
3818
 
3819
- var _a$L, _b$J, _c$F, _d$D, _e$y;
3819
+ var _a$L, _b$J, _c$F, _d$D;
3820
3820
  var ImagesSimpleDto = /** @class */ (function (_super) {
3821
3821
  __extends(ImagesSimpleDto, _super);
3822
3822
  function ImagesSimpleDto() {
3823
3823
  var _this = _super.apply(this, __spread(arguments)) || this;
3824
3824
  _this[_a$L] = true;
3825
3825
  _this[_b$J] = 'small';
3826
- _this[_c$F] = false;
3827
- _this[_d$D] = '0.5';
3828
- _this[_e$y] = false;
3826
+ _this[_c$F] = '0';
3827
+ _this[_d$D] = false;
3829
3828
  return _this;
3830
3829
  }
3831
3830
  return ImagesSimpleDto;
3832
3831
  }(ParentBlockDto));
3833
- _a$L = FORM_NAME_FULLPAGE, _b$J = FORM_NAME_IMG_MASK, _c$F = FORM_NAME_PARALLAX, _d$D = FORM_NAME_PARALLAX_SPEED, _e$y = FORM_NAME_PARALLAX_INVERTED;
3832
+ _a$L = FORM_NAME_FULLPAGE, _b$J = FORM_NAME_IMG_MASK, _c$F = FORM_NAME_PARALLAX_SPEED, _d$D = FORM_NAME_PARALLAX_INVERTED;
3834
3833
 
3835
3834
  var TYPE_IMAGES_SIMPLE = 'images-simple';
3836
3835
  var ImagesSimpleService = /** @class */ (function () {
@@ -3861,9 +3860,12 @@
3861
3860
  var imgSimpleFormDto = new FormsDto(content);
3862
3861
  var maskImgSimpleContentDto = new FormsContentDto(FORM_NAME_IMG_MASK, 'wb.blocks.FormContentDto.14', FORM_TYPE_TAG, content[FORM_NAME_IMG_MASK], 'wb.blocks.FormContentDto.15', '', ['wb.blocks.FormContentDto.94', 'wb.blocks.FormContentDto.95', 'wb.blocks.FormContentDto.96'], ['small', 'medium', 'large']);
3863
3862
  imgSimpleFormDto.forms.push(maskImgSimpleContentDto);
3864
- var parallaxImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX, 'wb.blocks.FormContentDto.17', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX], '', '', [], [], [true, false]);
3865
- imgSimpleFormDto.forms.push(parallaxImgSimpleContentDto);
3866
- var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', ['wb.blocks.FormContentDto.115', 'wb.blocks.FormContentDto.116', 'wb.blocks.FormContentDto.117'], ['0.25', '0.5', '1']);
3863
+ var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', [
3864
+ 'wb.blocks.FormContentDto.101',
3865
+ 'wb.blocks.FormContentDto.115',
3866
+ 'wb.blocks.FormContentDto.116',
3867
+ 'wb.blocks.FormContentDto.117',
3868
+ ], ['0', '0.25', '0.5', '1']);
3867
3869
  imgSimpleFormDto.forms.push(parallaxSpeedImgSimpleContentDto);
3868
3870
  var parallaxInvertedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_INVERTED, 'wb.blocks.FormContentDto.114', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX_INVERTED], '', '', [], [], [true, false]);
3869
3871
  imgSimpleFormDto.forms.push(parallaxInvertedImgSimpleContentDto);
@@ -4271,7 +4273,7 @@
4271
4273
  },] }
4272
4274
  ];
4273
4275
 
4274
- var _a$T, _b$R, _c$H, _d$E, _e$z;
4276
+ var _a$T, _b$R, _c$H, _d$E, _e$y;
4275
4277
  var TextsOneBackgroundDto = /** @class */ (function (_super) {
4276
4278
  __extends(TextsOneBackgroundDto, _super);
4277
4279
  function TextsOneBackgroundDto() {
@@ -4280,12 +4282,12 @@
4280
4282
  _this[_b$R] = 'wb.dto.CONTENT.7';
4281
4283
  _this[_c$H] = new ButtonDto();
4282
4284
  _this[_d$E] = '#f7f7f7';
4283
- _this[_e$z] = 'small';
4285
+ _this[_e$y] = 'small';
4284
4286
  return _this;
4285
4287
  }
4286
4288
  return TextsOneBackgroundDto;
4287
4289
  }(ParentBlockDto));
4288
- _a$T = FORM_NAME_TITLE, _b$R = FORM_NAME_CONTENT, _c$H = FORM_NAME_BUTTON, _d$E = FORM_NAME_COLOR, _e$z = FORM_NAME_PADDING;
4290
+ _a$T = FORM_NAME_TITLE, _b$R = FORM_NAME_CONTENT, _c$H = FORM_NAME_BUTTON, _d$E = FORM_NAME_COLOR, _e$y = FORM_NAME_PADDING;
4289
4291
 
4290
4292
  var TYPE_TEXTS_ONE_BACKGROUND = 'texts-one-background';
4291
4293
  var TextsOneBackgroundService = /** @class */ (function () {
@@ -4332,7 +4334,7 @@
4332
4334
  },] }
4333
4335
  ];
4334
4336
 
4335
- var _a$U, _b$S, _c$I, _d$F, _e$A, _f$j, _g$h;
4337
+ var _a$U, _b$S, _c$I, _d$F, _e$z, _f$j, _g$h;
4336
4338
  var TextsDoubleDto = /** @class */ (function (_super) {
4337
4339
  __extends(TextsDoubleDto, _super);
4338
4340
  function TextsDoubleDto() {
@@ -4341,14 +4343,14 @@
4341
4343
  _this[_b$S] = 'wb.dto.CONTENT.7';
4342
4344
  _this[_c$I] = 'wb.dto.TITLE.4';
4343
4345
  _this[_d$F] = 'wb.dto.CONTENT.7';
4344
- _this[_e$A] = new ButtonDto();
4346
+ _this[_e$z] = new ButtonDto();
4345
4347
  _this[_f$j] = new ButtonDto();
4346
4348
  _this[_g$h] = false;
4347
4349
  return _this;
4348
4350
  }
4349
4351
  return TextsDoubleDto;
4350
4352
  }(ParentBlockDto));
4351
- _a$U = FORM_NAME_TITLE_LEFT, _b$S = FORM_NAME_CONTENT_RIGHT, _c$I = FORM_NAME_TITLE_RIGHT, _d$F = FORM_NAME_CONTENT_LEFT, _e$A = FORM_NAME_BUTTON_LEFT, _f$j = FORM_NAME_BUTTON_RIGHT, _g$h = FORM_NAME_ALIGN_BUTTON;
4353
+ _a$U = FORM_NAME_TITLE_LEFT, _b$S = FORM_NAME_CONTENT_RIGHT, _c$I = FORM_NAME_TITLE_RIGHT, _d$F = FORM_NAME_CONTENT_LEFT, _e$z = FORM_NAME_BUTTON_LEFT, _f$j = FORM_NAME_BUTTON_RIGHT, _g$h = FORM_NAME_ALIGN_BUTTON;
4352
4354
 
4353
4355
  var TYPE_TEXTS_DOUBLE = 'texts-double';
4354
4356
  var TextsDoubleService = /** @class */ (function () {
@@ -4393,7 +4395,7 @@
4393
4395
  },] }
4394
4396
  ];
4395
4397
 
4396
- var _a$V, _b$T, _c$J, _d$G, _e$B, _f$k, _g$i, _h$f, _j$c, _k$b;
4398
+ var _a$V, _b$T, _c$J, _d$G, _e$A, _f$k, _g$i, _h$f, _j$c, _k$b;
4397
4399
  var TextsDoubleBackgroundDto = /** @class */ (function (_super) {
4398
4400
  __extends(TextsDoubleBackgroundDto, _super);
4399
4401
  function TextsDoubleBackgroundDto() {
@@ -4402,7 +4404,7 @@
4402
4404
  _this[_b$T] = 'wb.dto.CONTENT.7';
4403
4405
  _this[_c$J] = 'wb.dto.TITLE.4';
4404
4406
  _this[_d$G] = 'wb.dto.CONTENT.7';
4405
- _this[_e$B] = new ButtonDto();
4407
+ _this[_e$A] = new ButtonDto();
4406
4408
  _this[_f$k] = new ButtonDto();
4407
4409
  _this[_g$i] = '#f7f7f7';
4408
4410
  _this[_h$f] = '#f7f7f7';
@@ -4412,7 +4414,7 @@
4412
4414
  }
4413
4415
  return TextsDoubleBackgroundDto;
4414
4416
  }(ParentBlockDto));
4415
- _a$V = FORM_NAME_TITLE_LEFT, _b$T = FORM_NAME_CONTENT_RIGHT, _c$J = FORM_NAME_TITLE_RIGHT, _d$G = FORM_NAME_CONTENT_LEFT, _e$B = FORM_NAME_BUTTON_LEFT, _f$k = FORM_NAME_BUTTON_RIGHT, _g$i = FORM_NAME_COLOR_LEFT, _h$f = FORM_NAME_COLOR_RIGHT, _j$c = FORM_NAME_PADDING, _k$b = FORM_NAME_ALIGN_BUTTON;
4417
+ _a$V = FORM_NAME_TITLE_LEFT, _b$T = FORM_NAME_CONTENT_RIGHT, _c$J = FORM_NAME_TITLE_RIGHT, _d$G = FORM_NAME_CONTENT_LEFT, _e$A = FORM_NAME_BUTTON_LEFT, _f$k = FORM_NAME_BUTTON_RIGHT, _g$i = FORM_NAME_COLOR_LEFT, _h$f = FORM_NAME_COLOR_RIGHT, _j$c = FORM_NAME_PADDING, _k$b = FORM_NAME_ALIGN_BUTTON;
4416
4418
 
4417
4419
  var TYPE_TEXTS_DOUBLE_BACKGROUND = 'texts-double-background';
4418
4420
  var TextsDoubleBackgroundService = /** @class */ (function () {
@@ -4463,7 +4465,7 @@
4463
4465
  },] }
4464
4466
  ];
4465
4467
 
4466
- var _a$W, _b$U, _c$K, _d$H, _e$C, _f$l, _g$j, _h$g, _j$d, _k$c;
4468
+ var _a$W, _b$U, _c$K, _d$H, _e$B, _f$l, _g$j, _h$g, _j$d, _k$c;
4467
4469
  var TextsTripleDto = /** @class */ (function (_super) {
4468
4470
  __extends(TextsTripleDto, _super);
4469
4471
  function TextsTripleDto() {
@@ -4472,7 +4474,7 @@
4472
4474
  _this[_b$U] = 'wb.dto.CONTENT.7';
4473
4475
  _this[_c$K] = 'wb.dto.TITLE.3';
4474
4476
  _this[_d$H] = 'wb.dto.CONTENT.7';
4475
- _this[_e$C] = new ButtonDto();
4477
+ _this[_e$B] = new ButtonDto();
4476
4478
  _this[_f$l] = new ButtonDto();
4477
4479
  _this[_g$j] = 'wb.dto.TITLE.3';
4478
4480
  _this[_h$g] = 'wb.dto.CONTENT.7';
@@ -4482,7 +4484,7 @@
4482
4484
  }
4483
4485
  return TextsTripleDto;
4484
4486
  }(ParentBlockDto));
4485
- _a$W = FORM_NAME_TITLE_LEFT, _b$U = FORM_NAME_CONTENT_RIGHT, _c$K = FORM_NAME_TITLE_RIGHT, _d$H = FORM_NAME_CONTENT_LEFT, _e$C = FORM_NAME_BUTTON_LEFT, _f$l = FORM_NAME_BUTTON_RIGHT, _g$j = FORM_NAME_TITLE_MIDDLE_LEFT, _h$g = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$d = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$c = FORM_NAME_ALIGN_BUTTON;
4487
+ _a$W = FORM_NAME_TITLE_LEFT, _b$U = FORM_NAME_CONTENT_RIGHT, _c$K = FORM_NAME_TITLE_RIGHT, _d$H = FORM_NAME_CONTENT_LEFT, _e$B = FORM_NAME_BUTTON_LEFT, _f$l = FORM_NAME_BUTTON_RIGHT, _g$j = FORM_NAME_TITLE_MIDDLE_LEFT, _h$g = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$d = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$c = FORM_NAME_ALIGN_BUTTON;
4486
4488
 
4487
4489
  var TYPE_TEXTS_TRIPLE = 'texts-triple';
4488
4490
  var TextsTripleService = /** @class */ (function () {
@@ -4527,7 +4529,7 @@
4527
4529
  },] }
4528
4530
  ];
4529
4531
 
4530
- var _a$X, _b$V, _c$L, _d$I, _e$D, _f$m, _g$k, _h$h, _j$e, _k$d, _l$b, _m$9, _o$8, _p$8, _q$8, _r$5;
4532
+ var _a$X, _b$V, _c$L, _d$I, _e$C, _f$m, _g$k, _h$h, _j$e, _k$d, _l$b, _m$9, _o$8, _p$8, _q$8, _r$5;
4531
4533
  var TextsTripleBackgroundDto = /** @class */ (function (_super) {
4532
4534
  __extends(TextsTripleBackgroundDto, _super);
4533
4535
  function TextsTripleBackgroundDto() {
@@ -4536,7 +4538,7 @@
4536
4538
  _this[_b$V] = 'wb.dto.CONTENT.7';
4537
4539
  _this[_c$L] = 'wb.dto.TITLE.3';
4538
4540
  _this[_d$I] = 'wb.dto.CONTENT.7';
4539
- _this[_e$D] = new ButtonDto();
4541
+ _this[_e$C] = new ButtonDto();
4540
4542
  _this[_f$m] = new ButtonDto();
4541
4543
  _this[_g$k] = 'wb.dto.TITLE.3';
4542
4544
  _this[_h$h] = 'wb.dto.CONTENT.7';
@@ -4552,7 +4554,7 @@
4552
4554
  }
4553
4555
  return TextsTripleBackgroundDto;
4554
4556
  }(ParentBlockDto));
4555
- _a$X = FORM_NAME_TITLE_LEFT, _b$V = FORM_NAME_CONTENT_RIGHT, _c$L = FORM_NAME_TITLE_RIGHT, _d$I = FORM_NAME_CONTENT_LEFT, _e$D = FORM_NAME_BUTTON_LEFT, _f$m = FORM_NAME_BUTTON_RIGHT, _g$k = FORM_NAME_TITLE_MIDDLE_LEFT, _h$h = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$e = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$d = FORM_NAME_TITLE_MIDDLE_RIGHT, _l$b = FORM_NAME_CONTENT_MIDDLE_RIGHT, _m$9 = FORM_NAME_BUTTON_MIDDLE_RIGHT, _o$8 = FORM_NAME_COLOR_LEFT, _p$8 = FORM_NAME_COLOR_RIGHT, _q$8 = FORM_NAME_COLOR_MIDDLE_LEFT, _r$5 = FORM_NAME_ALIGN_BUTTON;
4557
+ _a$X = FORM_NAME_TITLE_LEFT, _b$V = FORM_NAME_CONTENT_RIGHT, _c$L = FORM_NAME_TITLE_RIGHT, _d$I = FORM_NAME_CONTENT_LEFT, _e$C = FORM_NAME_BUTTON_LEFT, _f$m = FORM_NAME_BUTTON_RIGHT, _g$k = FORM_NAME_TITLE_MIDDLE_LEFT, _h$h = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$e = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$d = FORM_NAME_TITLE_MIDDLE_RIGHT, _l$b = FORM_NAME_CONTENT_MIDDLE_RIGHT, _m$9 = FORM_NAME_BUTTON_MIDDLE_RIGHT, _o$8 = FORM_NAME_COLOR_LEFT, _p$8 = FORM_NAME_COLOR_RIGHT, _q$8 = FORM_NAME_COLOR_MIDDLE_LEFT, _r$5 = FORM_NAME_ALIGN_BUTTON;
4556
4558
 
4557
4559
  var TYPE_TEXTS_TRIPLE_BACKGROUND = 'texts-triple-background';
4558
4560
  var TextsTripleBackgroundService = /** @class */ (function () {
@@ -4603,7 +4605,7 @@
4603
4605
  },] }
4604
4606
  ];
4605
4607
 
4606
- var _a$Y, _b$W, _c$M, _d$J, _e$E, _f$n, _g$l, _h$i, _j$f, _k$e, _l$c, _m$a, _o$9;
4608
+ var _a$Y, _b$W, _c$M, _d$J, _e$D, _f$n, _g$l, _h$i, _j$f, _k$e, _l$c, _m$a, _o$9;
4607
4609
  var TextsQuadrupleDto = /** @class */ (function (_super) {
4608
4610
  __extends(TextsQuadrupleDto, _super);
4609
4611
  function TextsQuadrupleDto() {
@@ -4612,7 +4614,7 @@
4612
4614
  _this[_b$W] = 'wb.dto.CONTENT.7';
4613
4615
  _this[_c$M] = 'wb.dto.TITLE.3';
4614
4616
  _this[_d$J] = 'wb.dto.CONTENT.7';
4615
- _this[_e$E] = new ButtonDto();
4617
+ _this[_e$D] = new ButtonDto();
4616
4618
  _this[_f$n] = new ButtonDto();
4617
4619
  _this[_g$l] = 'wb.dto.TITLE.3';
4618
4620
  _this[_h$i] = 'wb.dto.CONTENT.7';
@@ -4625,7 +4627,7 @@
4625
4627
  }
4626
4628
  return TextsQuadrupleDto;
4627
4629
  }(ParentBlockDto));
4628
- _a$Y = FORM_NAME_TITLE_LEFT, _b$W = FORM_NAME_CONTENT_RIGHT, _c$M = FORM_NAME_TITLE_RIGHT, _d$J = FORM_NAME_CONTENT_LEFT, _e$E = FORM_NAME_BUTTON_LEFT, _f$n = FORM_NAME_BUTTON_RIGHT, _g$l = FORM_NAME_TITLE_MIDDLE_LEFT, _h$i = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$f = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$e = FORM_NAME_TITLE_MIDDLE_RIGHT, _l$c = FORM_NAME_CONTENT_MIDDLE_RIGHT, _m$a = FORM_NAME_BUTTON_MIDDLE_RIGHT, _o$9 = FORM_NAME_ALIGN_BUTTON;
4630
+ _a$Y = FORM_NAME_TITLE_LEFT, _b$W = FORM_NAME_CONTENT_RIGHT, _c$M = FORM_NAME_TITLE_RIGHT, _d$J = FORM_NAME_CONTENT_LEFT, _e$D = FORM_NAME_BUTTON_LEFT, _f$n = FORM_NAME_BUTTON_RIGHT, _g$l = FORM_NAME_TITLE_MIDDLE_LEFT, _h$i = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$f = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$e = FORM_NAME_TITLE_MIDDLE_RIGHT, _l$c = FORM_NAME_CONTENT_MIDDLE_RIGHT, _m$a = FORM_NAME_BUTTON_MIDDLE_RIGHT, _o$9 = FORM_NAME_ALIGN_BUTTON;
4629
4631
 
4630
4632
  var TYPE_TEXTS_QUADRUPLE = 'texts-quadruple';
4631
4633
  var TextsQuadrupleService = /** @class */ (function () {
@@ -4670,7 +4672,7 @@
4670
4672
  },] }
4671
4673
  ];
4672
4674
 
4673
- var _a$Z, _b$X, _c$N, _d$K, _e$F, _f$o, _g$m, _h$j, _j$g, _k$f, _l$d, _m$b, _o$a, _p$9, _q$9, _r$6, _s$3;
4675
+ var _a$Z, _b$X, _c$N, _d$K, _e$E, _f$o, _g$m, _h$j, _j$g, _k$f, _l$d, _m$b, _o$a, _p$9, _q$9, _r$6, _s$3;
4674
4676
  var TextsQuadrupleBackgroundDto = /** @class */ (function (_super) {
4675
4677
  __extends(TextsQuadrupleBackgroundDto, _super);
4676
4678
  function TextsQuadrupleBackgroundDto() {
@@ -4679,7 +4681,7 @@
4679
4681
  _this[_b$X] = 'wb.dto.CONTENT.7';
4680
4682
  _this[_c$N] = 'wb.dto.TITLE.3';
4681
4683
  _this[_d$K] = 'wb.dto.CONTENT.7';
4682
- _this[_e$F] = new ButtonDto();
4684
+ _this[_e$E] = new ButtonDto();
4683
4685
  _this[_f$o] = new ButtonDto();
4684
4686
  _this[_g$m] = 'wb.dto.TITLE.3';
4685
4687
  _this[_h$j] = 'wb.dto.CONTENT.7';
@@ -4696,7 +4698,7 @@
4696
4698
  }
4697
4699
  return TextsQuadrupleBackgroundDto;
4698
4700
  }(ParentBlockDto));
4699
- _a$Z = FORM_NAME_TITLE_LEFT, _b$X = FORM_NAME_CONTENT_RIGHT, _c$N = FORM_NAME_TITLE_RIGHT, _d$K = FORM_NAME_CONTENT_LEFT, _e$F = FORM_NAME_BUTTON_LEFT, _f$o = FORM_NAME_BUTTON_RIGHT, _g$m = FORM_NAME_TITLE_MIDDLE_LEFT, _h$j = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$g = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$f = FORM_NAME_TITLE_MIDDLE_RIGHT, _l$d = FORM_NAME_CONTENT_MIDDLE_RIGHT, _m$b = FORM_NAME_BUTTON_MIDDLE_RIGHT, _o$a = FORM_NAME_COLOR_LEFT, _p$9 = FORM_NAME_COLOR_RIGHT, _q$9 = FORM_NAME_COLOR_MIDDLE_LEFT, _r$6 = FORM_NAME_COLOR_MIDDLE_RIGHT, _s$3 = FORM_NAME_ALIGN_BUTTON;
4701
+ _a$Z = FORM_NAME_TITLE_LEFT, _b$X = FORM_NAME_CONTENT_RIGHT, _c$N = FORM_NAME_TITLE_RIGHT, _d$K = FORM_NAME_CONTENT_LEFT, _e$E = FORM_NAME_BUTTON_LEFT, _f$o = FORM_NAME_BUTTON_RIGHT, _g$m = FORM_NAME_TITLE_MIDDLE_LEFT, _h$j = FORM_NAME_CONTENT_MIDDLE_LEFT, _j$g = FORM_NAME_BUTTON_MIDDLE_LEFT, _k$f = FORM_NAME_TITLE_MIDDLE_RIGHT, _l$d = FORM_NAME_CONTENT_MIDDLE_RIGHT, _m$b = FORM_NAME_BUTTON_MIDDLE_RIGHT, _o$a = FORM_NAME_COLOR_LEFT, _p$9 = FORM_NAME_COLOR_RIGHT, _q$9 = FORM_NAME_COLOR_MIDDLE_LEFT, _r$6 = FORM_NAME_COLOR_MIDDLE_RIGHT, _s$3 = FORM_NAME_ALIGN_BUTTON;
4700
4702
 
4701
4703
  var TYPE_TEXTS_QUADRUPLE_BACKGROUND = 'texts-quadruple-background';
4702
4704
  var TextsQuadrupleBackgroundService = /** @class */ (function () {
@@ -4961,7 +4963,7 @@
4961
4963
  },] }
4962
4964
  ];
4963
4965
 
4964
- var _a$12, _b$10, _c$O, _d$L, _e$G, _f$p, _g$n, _h$k;
4966
+ var _a$12, _b$10, _c$O, _d$L, _e$F, _f$p, _g$n;
4965
4967
  var TextBackgroundsSimpleDto = /** @class */ (function (_super) {
4966
4968
  __extends(TextBackgroundsSimpleDto, _super);
4967
4969
  function TextBackgroundsSimpleDto() {
@@ -4969,16 +4971,15 @@
4969
4971
  _this[_a$12] = 'wb.dto.CONTENT.29';
4970
4972
  _this[_b$10] = 'wb.dto.CONTENT.28';
4971
4973
  _this[_c$O] = new ButtonDto();
4972
- _this[_d$L] = false;
4973
- _this[_e$G] = '0.5';
4974
- _this[_f$p] = false;
4975
- _this[_g$n] = true;
4976
- _this[_h$k] = 'small';
4974
+ _this[_d$L] = '0';
4975
+ _this[_e$F] = false;
4976
+ _this[_f$p] = true;
4977
+ _this[_g$n] = 'small';
4977
4978
  return _this;
4978
4979
  }
4979
4980
  return TextBackgroundsSimpleDto;
4980
4981
  }(ParentBlockDto));
4981
- _a$12 = FORM_NAME_TITLE, _b$10 = FORM_NAME_CONTENT, _c$O = FORM_NAME_BUTTON, _d$L = FORM_NAME_PARALLAX, _e$G = FORM_NAME_PARALLAX_SPEED, _f$p = FORM_NAME_PARALLAX_INVERTED, _g$n = FORM_NAME_FULLPAGE, _h$k = FORM_NAME_IMG_MASK;
4982
+ _a$12 = FORM_NAME_TITLE, _b$10 = FORM_NAME_CONTENT, _c$O = FORM_NAME_BUTTON, _d$L = FORM_NAME_PARALLAX_SPEED, _e$F = FORM_NAME_PARALLAX_INVERTED, _f$p = FORM_NAME_FULLPAGE, _g$n = FORM_NAME_IMG_MASK;
4982
4983
 
4983
4984
  var TYPE_TEXT_BACKGROUNDS_SIMPLE = 'text-backgrounds-simple';
4984
4985
  var TextBackgroundsSimpleService = /** @class */ (function () {
@@ -5009,9 +5010,12 @@
5009
5010
  var TextBackgroundsSimpleFormDto = new FormsDto(content);
5010
5011
  var maskTextBackgroundsSimpleContentDto = new FormsContentDto(FORM_NAME_IMG_MASK, 'wb.blocks.FormContentDto.14', FORM_TYPE_TAG, content[FORM_NAME_IMG_MASK], 'wb.blocks.FormContentDto.15', '', ['wb.blocks.FormContentDto.94', 'wb.blocks.FormContentDto.95', 'wb.blocks.FormContentDto.96'], ['small', 'medium', 'large']);
5011
5012
  TextBackgroundsSimpleFormDto.forms.push(maskTextBackgroundsSimpleContentDto);
5012
- var parallaxTextBackgroundsSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX, 'wb.blocks.FormContentDto.17', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX], '', '', [], [], [true, false]);
5013
- TextBackgroundsSimpleFormDto.forms.push(parallaxTextBackgroundsSimpleContentDto);
5014
- var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', ['wb.blocks.FormContentDto.115', 'wb.blocks.FormContentDto.116', 'wb.blocks.FormContentDto.117'], ['0.25', '0.5', '1']);
5013
+ var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', [
5014
+ 'wb.blocks.FormContentDto.101',
5015
+ 'wb.blocks.FormContentDto.115',
5016
+ 'wb.blocks.FormContentDto.116',
5017
+ 'wb.blocks.FormContentDto.117',
5018
+ ], ['0', '0.25', '0.5', '1']);
5015
5019
  TextBackgroundsSimpleFormDto.forms.push(parallaxSpeedImgSimpleContentDto);
5016
5020
  var parallaxInvertedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_INVERTED, 'wb.blocks.FormContentDto.114', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX_INVERTED], '', '', [], [], [true, false]);
5017
5021
  TextBackgroundsSimpleFormDto.forms.push(parallaxInvertedImgSimpleContentDto);
@@ -5029,7 +5033,7 @@
5029
5033
  },] }
5030
5034
  ];
5031
5035
 
5032
- var _a$13, _b$11, _c$P, _d$M, _e$H, _f$q, _g$o, _h$l, _j$h;
5036
+ var _a$13, _b$11, _c$P, _d$M, _e$G, _f$q, _g$o, _h$k;
5033
5037
  var TextBackgroundsWithTxtDto = /** @class */ (function (_super) {
5034
5038
  __extends(TextBackgroundsWithTxtDto, _super);
5035
5039
  function TextBackgroundsWithTxtDto() {
@@ -5038,16 +5042,15 @@
5038
5042
  _this[_b$11] = 'wb.dto.CONTENT.8';
5039
5043
  _this[_c$P] = new ButtonDto();
5040
5044
  _this[_d$M] = '#ffffff';
5041
- _this[_e$H] = false;
5042
- _this[_f$q] = '0.5';
5043
- _this[_g$o] = false;
5044
- _this[_h$l] = true;
5045
- _this[_j$h] = 'small';
5045
+ _this[_e$G] = '0';
5046
+ _this[_f$q] = false;
5047
+ _this[_g$o] = true;
5048
+ _this[_h$k] = 'small';
5046
5049
  return _this;
5047
5050
  }
5048
5051
  return TextBackgroundsWithTxtDto;
5049
5052
  }(ParentBlockDto));
5050
- _a$13 = FORM_NAME_TITLE, _b$11 = FORM_NAME_CONTENT, _c$P = FORM_NAME_BUTTON, _d$M = FORM_NAME_COLOR, _e$H = FORM_NAME_PARALLAX, _f$q = FORM_NAME_PARALLAX_SPEED, _g$o = FORM_NAME_PARALLAX_INVERTED, _h$l = FORM_NAME_FULLPAGE, _j$h = FORM_NAME_IMG_MASK;
5053
+ _a$13 = FORM_NAME_TITLE, _b$11 = FORM_NAME_CONTENT, _c$P = FORM_NAME_BUTTON, _d$M = FORM_NAME_COLOR, _e$G = FORM_NAME_PARALLAX_SPEED, _f$q = FORM_NAME_PARALLAX_INVERTED, _g$o = FORM_NAME_FULLPAGE, _h$k = FORM_NAME_IMG_MASK;
5051
5054
 
5052
5055
  var TYPE_TEXT_BACKGROUNDS_WITH_TXT = 'text-backgrounds-with-txt';
5053
5056
  var TextBackgroundsWithTxtService = /** @class */ (function () {
@@ -5080,9 +5083,12 @@
5080
5083
  formsDto.forms.push(colorContentDto);
5081
5084
  var maskTextBackgroundsWithTxtContentDto = new FormsContentDto(FORM_NAME_IMG_MASK, 'wb.blocks.FormContentDto.14', FORM_TYPE_TAG, content[FORM_NAME_IMG_MASK], 'wb.blocks.FormContentDto.15', '', ['wb.blocks.FormContentDto.94', 'wb.blocks.FormContentDto.95', 'wb.blocks.FormContentDto.96'], ['small', 'medium', 'large']);
5082
5085
  formsDto.forms.push(maskTextBackgroundsWithTxtContentDto);
5083
- var parallaxTextBackgroundsWithTxtContentDto = new FormsContentDto(FORM_NAME_PARALLAX, 'wb.blocks.FormContentDto.17', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX], '', '', [], [], [true, false]);
5084
- formsDto.forms.push(parallaxTextBackgroundsWithTxtContentDto);
5085
- var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', ['wb.blocks.FormContentDto.115', 'wb.blocks.FormContentDto.116', 'wb.blocks.FormContentDto.117'], ['0.25', '0.5', '1']);
5086
+ var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', [
5087
+ 'wb.blocks.FormContentDto.101',
5088
+ 'wb.blocks.FormContentDto.115',
5089
+ 'wb.blocks.FormContentDto.116',
5090
+ 'wb.blocks.FormContentDto.117',
5091
+ ], ['0', '0.25', '0.5', '1']);
5086
5092
  formsDto.forms.push(parallaxSpeedImgSimpleContentDto);
5087
5093
  var parallaxInvertedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_INVERTED, 'wb.blocks.FormContentDto.114', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX_INVERTED], '', '', [], [], [true, false]);
5088
5094
  formsDto.forms.push(parallaxInvertedImgSimpleContentDto);
@@ -5100,7 +5106,7 @@
5100
5106
  },] }
5101
5107
  ];
5102
5108
 
5103
- var _a$14, _b$12, _c$Q, _d$N, _e$I, _f$r, _g$p, _h$m, _j$i;
5109
+ var _a$14, _b$12, _c$Q, _d$N, _e$H, _f$r, _g$p, _h$l;
5104
5110
  var TextBackgroundsWithBannerDto = /** @class */ (function (_super) {
5105
5111
  __extends(TextBackgroundsWithBannerDto, _super);
5106
5112
  function TextBackgroundsWithBannerDto() {
@@ -5109,16 +5115,15 @@
5109
5115
  _this[_b$12] = 'wb.dto.TEXT.2';
5110
5116
  _this[_c$Q] = 'wb.dto.CONTENT.37';
5111
5117
  _this[_d$N] = '#74b4c0';
5112
- _this[_e$I] = false;
5113
- _this[_f$r] = '0.5';
5114
- _this[_g$p] = false;
5115
- _this[_h$m] = true;
5116
- _this[_j$i] = 'small';
5118
+ _this[_e$H] = '0';
5119
+ _this[_f$r] = false;
5120
+ _this[_g$p] = true;
5121
+ _this[_h$l] = 'small';
5117
5122
  return _this;
5118
5123
  }
5119
5124
  return TextBackgroundsWithBannerDto;
5120
5125
  }(ParentBlockDto));
5121
- _a$14 = FORM_NAME_TITLE, _b$12 = FORM_NAME_TEXT, _c$Q = FORM_NAME_CONTENT, _d$N = FORM_NAME_COLOR, _e$I = FORM_NAME_PARALLAX, _f$r = FORM_NAME_PARALLAX_SPEED, _g$p = FORM_NAME_PARALLAX_INVERTED, _h$m = FORM_NAME_FULLPAGE, _j$i = FORM_NAME_IMG_MASK;
5126
+ _a$14 = FORM_NAME_TITLE, _b$12 = FORM_NAME_TEXT, _c$Q = FORM_NAME_CONTENT, _d$N = FORM_NAME_COLOR, _e$H = FORM_NAME_PARALLAX_SPEED, _f$r = FORM_NAME_PARALLAX_INVERTED, _g$p = FORM_NAME_FULLPAGE, _h$l = FORM_NAME_IMG_MASK;
5122
5127
 
5123
5128
  var TYPE_TEXT_BACKGROUNDS_WITH_BANNER = 'text-backgrounds-with-banner';
5124
5129
  var TextBackgroundsWithBannerService = /** @class */ (function () {
@@ -5151,9 +5156,12 @@
5151
5156
  formsDto.forms.push(maskTextBackgroundsWithTxtContentDto);
5152
5157
  var fullpageTextBackgroundsWithTxtContentDto = new FormsContentDto(FORM_NAME_FULLPAGE, 'wb.blocks.FormContentDto.16', FORM_TYPE_CHECKBOX, content[FORM_NAME_FULLPAGE], '', '', [], [], [true, false]);
5153
5158
  formsDto.forms.push(fullpageTextBackgroundsWithTxtContentDto);
5154
- var parallaxTextBackgroundsWithTxtContentDto = new FormsContentDto(FORM_NAME_PARALLAX, 'wb.blocks.FormContentDto.17', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX], '', '', [], [], [true, false]);
5155
- formsDto.forms.push(parallaxTextBackgroundsWithTxtContentDto);
5156
- var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', ['wb.blocks.FormContentDto.115', 'wb.blocks.FormContentDto.116', 'wb.blocks.FormContentDto.117'], ['0.25', '0.5', '1']);
5159
+ var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', [
5160
+ 'wb.blocks.FormContentDto.101',
5161
+ 'wb.blocks.FormContentDto.115',
5162
+ 'wb.blocks.FormContentDto.116',
5163
+ 'wb.blocks.FormContentDto.117',
5164
+ ], ['0', '0.25', '0.5', '1']);
5157
5165
  formsDto.forms.push(parallaxSpeedImgSimpleContentDto);
5158
5166
  var parallaxInvertedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_INVERTED, 'wb.blocks.FormContentDto.114', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX_INVERTED], '', '', [], [], [true, false]);
5159
5167
  formsDto.forms.push(parallaxInvertedImgSimpleContentDto);
@@ -5173,7 +5181,7 @@
5173
5181
  },] }
5174
5182
  ];
5175
5183
 
5176
- var _a$15, _b$13, _c$R, _d$O, _e$J, _f$s, _g$q;
5184
+ var _a$15, _b$13, _c$R, _d$O, _e$I, _f$s, _g$q;
5177
5185
  var TYPE_YOUTUBE = 'youtube';
5178
5186
  var TYPE_VIMEO = 'vimeo';
5179
5187
  var VideosSimpleDto = /** @class */ (function (_super) {
@@ -5184,16 +5192,16 @@
5184
5192
  _this[_b$13] = false;
5185
5193
  _this[_c$R] = true;
5186
5194
  _this[_d$O] = true;
5187
- _this[_e$J] = true;
5195
+ _this[_e$I] = true;
5188
5196
  _this[_f$s] = '';
5189
5197
  _this[_g$q] = TYPE_YOUTUBE;
5190
5198
  return _this;
5191
5199
  }
5192
5200
  return VideosSimpleDto;
5193
5201
  }(ParentBlockDto));
5194
- _a$15 = FORM_NAME_CONTROL, _b$13 = FORM_NAME_AUTOPLAY, _c$R = FORM_NAME_FULLPAGE, _d$O = FORM_NAME_MUTE, _e$J = FORM_NAME_LOOP, _f$s = FORM_NAME_LINK, _g$q = FORM_NAME_TYPE_VIDEO;
5202
+ _a$15 = FORM_NAME_CONTROL, _b$13 = FORM_NAME_AUTOPLAY, _c$R = FORM_NAME_FULLPAGE, _d$O = FORM_NAME_MUTE, _e$I = FORM_NAME_LOOP, _f$s = FORM_NAME_LINK, _g$q = FORM_NAME_TYPE_VIDEO;
5195
5203
 
5196
- var _a$16, _b$14, _c$S, _d$P, _e$K, _f$t, _g$r;
5204
+ var _a$16, _b$14, _c$S, _d$P, _e$J, _f$t, _g$r;
5197
5205
  var LaunchVideosButtonDto = /** @class */ (function (_super) {
5198
5206
  __extends(LaunchVideosButtonDto, _super);
5199
5207
  function LaunchVideosButtonDto() {
@@ -5202,14 +5210,14 @@
5202
5210
  _this[_b$14] = true;
5203
5211
  _this[_c$S] = false;
5204
5212
  _this[_d$P] = 'wb.dto.BUTTON_TEXT.6';
5205
- _this[_e$K] = '';
5213
+ _this[_e$J] = '';
5206
5214
  _this[_f$t] = TYPE_YOUTUBE;
5207
5215
  _this[_g$r] = '#ffffff';
5208
5216
  return _this;
5209
5217
  }
5210
5218
  return LaunchVideosButtonDto;
5211
5219
  }(ParentBlockDto));
5212
- _a$16 = FORM_NAME_FULLPAGE, _b$14 = FORM_NAME_MUTE, _c$S = FORM_NAME_CONTROL, _d$P = FORM_NAME_BUTTON_TEXT, _e$K = FORM_NAME_LINK, _f$t = FORM_NAME_TYPE_VIDEO, _g$r = FORM_NAME_COLOR;
5220
+ _a$16 = FORM_NAME_FULLPAGE, _b$14 = FORM_NAME_MUTE, _c$S = FORM_NAME_CONTROL, _d$P = FORM_NAME_BUTTON_TEXT, _e$J = FORM_NAME_LINK, _f$t = FORM_NAME_TYPE_VIDEO, _g$r = FORM_NAME_COLOR;
5213
5221
 
5214
5222
  var TYPE_LAUNCH_VIDEOS_BUTTON = 'launch-videos-button';
5215
5223
  var LaunchVideosButtonService = /** @class */ (function () {
@@ -5941,7 +5949,7 @@
5941
5949
  }(MediaDto));
5942
5950
  _a$1f = FORM_NAME_PAYMENT;
5943
5951
 
5944
- var _a$1g, _b$1b, _c$W, _d$R, _e$L, _f$u, _g$s, _h$n, _j$j, _k$g, _l$e;
5952
+ var _a$1g, _b$1b, _c$W, _d$R, _e$K, _f$u, _g$s, _h$m, _j$h, _k$g, _l$e;
5945
5953
  var ProductZoomCompleteDto = /** @class */ (function (_super) {
5946
5954
  __extends(ProductZoomCompleteDto, _super);
5947
5955
  function ProductZoomCompleteDto() {
@@ -5950,18 +5958,18 @@
5950
5958
  _this[_b$1b] = 'wb.dto.CONTENT.14';
5951
5959
  _this[_c$W] = 'wb.dto.CONTENT.15';
5952
5960
  _this[_d$R] = 'wb.dto.CONTENT.16';
5953
- _this[_e$L] = new FontOrMediaDto('far fa-stopwatch');
5961
+ _this[_e$K] = new FontOrMediaDto('far fa-stopwatch');
5954
5962
  _this[_f$u] = '#e25657';
5955
5963
  _this[_g$s] = '#e25657';
5956
- _this[_h$n] = new FontOrMediaDto('fas fa-bolt');
5957
- _this[_j$j] = new PaymentOrMediaDto('//img.wizishop.com/a/site/cards/CB-Visa-MCard.svg');
5964
+ _this[_h$m] = new FontOrMediaDto('fas fa-bolt');
5965
+ _this[_j$h] = new PaymentOrMediaDto('//img.wizishop.com/a/site/cards/CB-Visa-MCard.svg');
5958
5966
  _this[_k$g] = 'wb.dto.CONTENT.18';
5959
5967
  _this[_l$e] = '';
5960
5968
  return _this;
5961
5969
  }
5962
5970
  return ProductZoomCompleteDto;
5963
5971
  }(ParentBlockDto));
5964
- _a$1g = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1b = FORM_NAME_CONTENT_MIDDLE_RIGHT, _c$W = FORM_NAME_CONTENT_MIDDLE_BOTTOM, _d$R = FORM_NAME_CONTENT_MIDDLE_TOP, _e$L = FORM_NAME_ICON_MIDDLE_TOP, _f$u = FORM_NAME_ICON_COLOR_MIDDLE_TOP, _g$s = FORM_NAME_ICON_COLOR_MIDDLE_BOTTOM, _h$n = FORM_NAME_ICON_MIDDLE_BOTTOM, _j$j = FORM_NAME_PAYMENT_OR_MEDIA, _k$g = FORM_NAME_CONTENT, _l$e = FORM_NAME_ID_PRODUCT;
5972
+ _a$1g = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1b = FORM_NAME_CONTENT_MIDDLE_RIGHT, _c$W = FORM_NAME_CONTENT_MIDDLE_BOTTOM, _d$R = FORM_NAME_CONTENT_MIDDLE_TOP, _e$K = FORM_NAME_ICON_MIDDLE_TOP, _f$u = FORM_NAME_ICON_COLOR_MIDDLE_TOP, _g$s = FORM_NAME_ICON_COLOR_MIDDLE_BOTTOM, _h$m = FORM_NAME_ICON_MIDDLE_BOTTOM, _j$h = FORM_NAME_PAYMENT_OR_MEDIA, _k$g = FORM_NAME_CONTENT, _l$e = FORM_NAME_ID_PRODUCT;
5965
5973
 
5966
5974
  var TYPE_PRODUCT_ZOOM_COMPLETE = 'product-zoom-complete';
5967
5975
  var ProductZoomCompleteService = /** @class */ (function () {
@@ -6008,7 +6016,7 @@
6008
6016
  },] }
6009
6017
  ];
6010
6018
 
6011
- var _a$1h, _b$1c, _c$X, _d$S, _e$M, _f$v;
6019
+ var _a$1h, _b$1c, _c$X, _d$S, _e$L, _f$v;
6012
6020
  var ProductZoomCompleteBackgroundDto = /** @class */ (function (_super) {
6013
6021
  __extends(ProductZoomCompleteBackgroundDto, _super);
6014
6022
  function ProductZoomCompleteBackgroundDto() {
@@ -6017,13 +6025,13 @@
6017
6025
  _this[_b$1c] = new PaymentOrMediaDto('//img.wizishop.com/a/site/cards/CB-Visa-MCard.svg');
6018
6026
  _this[_c$X] = 'wb.dto.CONTENT.12';
6019
6027
  _this[_d$S] = '';
6020
- _this[_e$M] = new MediaDto();
6028
+ _this[_e$L] = new MediaDto();
6021
6029
  _this[_f$v] = '#ffffff';
6022
6030
  return _this;
6023
6031
  }
6024
6032
  return ProductZoomCompleteBackgroundDto;
6025
6033
  }(ParentBlockDto));
6026
- _a$1h = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1c = FORM_NAME_PAYMENT_OR_MEDIA, _c$X = FORM_NAME_CONTENT, _d$S = FORM_NAME_ID_PRODUCT, _e$M = FORM_NAME_IMAGE, _f$v = FORM_NAME_COLOR;
6034
+ _a$1h = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1c = FORM_NAME_PAYMENT_OR_MEDIA, _c$X = FORM_NAME_CONTENT, _d$S = FORM_NAME_ID_PRODUCT, _e$L = FORM_NAME_IMAGE, _f$v = FORM_NAME_COLOR;
6027
6035
 
6028
6036
  var TYPE_PRODUCT_ZOOM_COMPLETE_BACKGROUND = 'product-zoom-complete-background';
6029
6037
  var ProductZoomCompleteBackgroundService = /** @class */ (function () {
@@ -6068,7 +6076,7 @@
6068
6076
  },] }
6069
6077
  ];
6070
6078
 
6071
- var _a$1i, _b$1d, _c$Y, _d$T, _e$N, _f$w, _g$t, _h$o, _j$k, _k$h, _l$f, _m$c, _o$b, _p$a, _q$a, _r$7, _s$4, _t$3;
6079
+ var _a$1i, _b$1d, _c$Y, _d$T, _e$M, _f$w, _g$t, _h$n, _j$i, _k$h, _l$f, _m$c, _o$b, _p$a, _q$a, _r$7, _s$4, _t$3;
6072
6080
  var ProductZoomCompleteSliderDto = /** @class */ (function (_super) {
6073
6081
  __extends(ProductZoomCompleteSliderDto, _super);
6074
6082
  function ProductZoomCompleteSliderDto() {
@@ -6077,11 +6085,11 @@
6077
6085
  _this[_b$1d] = 'wb.dto.CONTENT.14';
6078
6086
  _this[_c$Y] = 'wb.dto.CONTENT.15';
6079
6087
  _this[_d$T] = 'wb.dto.CONTENT.16';
6080
- _this[_e$N] = new FontOrMediaDto('far fa-stopwatch');
6088
+ _this[_e$M] = new FontOrMediaDto('far fa-stopwatch');
6081
6089
  _this[_f$w] = '#e25657';
6082
6090
  _this[_g$t] = '#e25657';
6083
- _this[_h$o] = new FontOrMediaDto('fas fa-bolt');
6084
- _this[_j$k] = new FontOrMediaDto('fas fa-tshirt');
6091
+ _this[_h$n] = new FontOrMediaDto('fas fa-bolt');
6092
+ _this[_j$i] = new FontOrMediaDto('fas fa-tshirt');
6085
6093
  _this[_k$h] = new FontOrMediaDto('fas fa-tshirt');
6086
6094
  _this[_l$f] = new PaymentOrMediaDto('//img.wizishop.com/a/site/cards/CB-Visa-MCard.svg');
6087
6095
  _this[_m$c] = 'wb.dto.TITLE.16';
@@ -6095,7 +6103,7 @@
6095
6103
  }
6096
6104
  return ProductZoomCompleteSliderDto;
6097
6105
  }(ParentBlockDto));
6098
- _a$1i = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1d = FORM_NAME_CONTENT_MIDDLE_RIGHT, _c$Y = FORM_NAME_CONTENT_MIDDLE_BOTTOM, _d$T = FORM_NAME_CONTENT_MIDDLE_TOP, _e$N = FORM_NAME_ICON_MIDDLE_TOP, _f$w = FORM_NAME_ICON_COLOR_MIDDLE_TOP, _g$t = FORM_NAME_ICON_COLOR_MIDDLE_BOTTOM, _h$o = FORM_NAME_ICON_MIDDLE_BOTTOM, _j$k = FORM_NAME_ICON_BOTTOM_LEFT, _k$h = FORM_NAME_ICON_BOTTOM_RIGHT, _l$f = FORM_NAME_PAYMENT_OR_MEDIA, _m$c = FORM_NAME_TITLE_LEFT, _o$b = FORM_NAME_TITLE_RIGHT, _p$a = FORM_NAME_CONTENT_BOTTOM_LEFT, _q$a = FORM_NAME_CONTENT_BOTTOM_RIGHT, _r$7 = FORM_NAME_ICON_COLOR_BOTTOM_RIGHT, _s$4 = FORM_NAME_ICON_COLOR_BOTTOM_LEFT, _t$3 = FORM_NAME_ID_PRODUCT;
6106
+ _a$1i = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1d = FORM_NAME_CONTENT_MIDDLE_RIGHT, _c$Y = FORM_NAME_CONTENT_MIDDLE_BOTTOM, _d$T = FORM_NAME_CONTENT_MIDDLE_TOP, _e$M = FORM_NAME_ICON_MIDDLE_TOP, _f$w = FORM_NAME_ICON_COLOR_MIDDLE_TOP, _g$t = FORM_NAME_ICON_COLOR_MIDDLE_BOTTOM, _h$n = FORM_NAME_ICON_MIDDLE_BOTTOM, _j$i = FORM_NAME_ICON_BOTTOM_LEFT, _k$h = FORM_NAME_ICON_BOTTOM_RIGHT, _l$f = FORM_NAME_PAYMENT_OR_MEDIA, _m$c = FORM_NAME_TITLE_LEFT, _o$b = FORM_NAME_TITLE_RIGHT, _p$a = FORM_NAME_CONTENT_BOTTOM_LEFT, _q$a = FORM_NAME_CONTENT_BOTTOM_RIGHT, _r$7 = FORM_NAME_ICON_COLOR_BOTTOM_RIGHT, _s$4 = FORM_NAME_ICON_COLOR_BOTTOM_LEFT, _t$3 = FORM_NAME_ID_PRODUCT;
6099
6107
 
6100
6108
  var TYPE_PRODUCT_ZOOM_COMPLETE_SLIDER = 'product-zoom-complete-slider';
6101
6109
  var ProductZoomCompleteSliderService = /** @class */ (function () {
@@ -6146,7 +6154,7 @@
6146
6154
  },] }
6147
6155
  ];
6148
6156
 
6149
- var _a$1j, _b$1e, _c$Z, _d$U, _e$O, _f$x, _g$u;
6157
+ var _a$1j, _b$1e, _c$Z, _d$U, _e$N, _f$x, _g$u;
6150
6158
  var ProductZoomSimpleDto = /** @class */ (function (_super) {
6151
6159
  __extends(ProductZoomSimpleDto, _super);
6152
6160
  function ProductZoomSimpleDto() {
@@ -6155,14 +6163,14 @@
6155
6163
  _this[_b$1e] = 'wb.dto.CONTENT.14';
6156
6164
  _this[_c$Z] = 'wb.dto.CONTENT.15';
6157
6165
  _this[_d$U] = 'wb.dto.CONTENT.16';
6158
- _this[_e$O] = new PaymentOrMediaDto('//img.wizishop.com/a/site/cards/CB-Visa-MCard.svg');
6166
+ _this[_e$N] = new PaymentOrMediaDto('//img.wizishop.com/a/site/cards/CB-Visa-MCard.svg');
6159
6167
  _this[_f$x] = 'wb.dto.CONTENT.18';
6160
6168
  _this[_g$u] = '';
6161
6169
  return _this;
6162
6170
  }
6163
6171
  return ProductZoomSimpleDto;
6164
6172
  }(ParentBlockDto));
6165
- _a$1j = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1e = FORM_NAME_CONTENT_MIDDLE_RIGHT, _c$Z = FORM_NAME_CONTENT_MIDDLE_BOTTOM, _d$U = FORM_NAME_CONTENT_MIDDLE_TOP, _e$O = FORM_NAME_PAYMENT_OR_MEDIA, _f$x = FORM_NAME_CONTENT, _g$u = FORM_NAME_ID_PRODUCT;
6173
+ _a$1j = FORM_NAME_CONTENT_MIDDLE_LEFT, _b$1e = FORM_NAME_CONTENT_MIDDLE_RIGHT, _c$Z = FORM_NAME_CONTENT_MIDDLE_BOTTOM, _d$U = FORM_NAME_CONTENT_MIDDLE_TOP, _e$N = FORM_NAME_PAYMENT_OR_MEDIA, _f$x = FORM_NAME_CONTENT, _g$u = FORM_NAME_ID_PRODUCT;
6166
6174
 
6167
6175
  var TYPE_PRODUCT_ZOOM_SIMPLE = 'product-zoom-simple';
6168
6176
  var ProductZoomSimpleService = /** @class */ (function () {
@@ -6352,7 +6360,7 @@
6352
6360
  },] }
6353
6361
  ];
6354
6362
 
6355
- var _a$1m, _b$1h, _c$10, _d$V, _e$P, _f$y;
6363
+ var _a$1m, _b$1h, _c$10, _d$V, _e$O, _f$y;
6356
6364
  var AmplifyProductsListClassicDto = /** @class */ (function (_super) {
6357
6365
  __extends(AmplifyProductsListClassicDto, _super);
6358
6366
  function AmplifyProductsListClassicDto() {
@@ -6361,13 +6369,13 @@
6361
6369
  _this[_b$1h] = true;
6362
6370
  _this[_c$10] = [];
6363
6371
  _this[_d$V] = '';
6364
- _this[_e$P] = 'amplify';
6372
+ _this[_e$O] = 'amplify';
6365
6373
  _this[_f$y] = '1';
6366
6374
  return _this;
6367
6375
  }
6368
6376
  return AmplifyProductsListClassicDto;
6369
6377
  }(ParentBlockDto));
6370
- _a$1m = FORM_NAME_TITLE, _b$1h = FORM_NAME_SHOW_TITLE, _c$10 = FORM_NAME_LIST_PRODUCT, _d$V = FORM_NAME_AMPLIFY_CATEGORY, _e$P = FORM_NAME_AMPLIFY_TYPE, _f$y = FORM_NAME_NBLIGNE;
6378
+ _a$1m = FORM_NAME_TITLE, _b$1h = FORM_NAME_SHOW_TITLE, _c$10 = FORM_NAME_LIST_PRODUCT, _d$V = FORM_NAME_AMPLIFY_CATEGORY, _e$O = FORM_NAME_AMPLIFY_TYPE, _f$y = FORM_NAME_NBLIGNE;
6371
6379
 
6372
6380
  var TYPE_AMPLIFY_PRODUCTS_LIST_CLASSIC = 'amplify-products-list-classic';
6373
6381
  var AmplifyProductsListClassicService = /** @class */ (function () {
@@ -6412,7 +6420,7 @@
6412
6420
  },] }
6413
6421
  ];
6414
6422
 
6415
- var _a$1n, _b$1i, _c$11, _d$W, _e$Q, _f$z;
6423
+ var _a$1n, _b$1i, _c$11, _d$W, _e$P, _f$z;
6416
6424
  var AmplifyProductsListSelectedDto = /** @class */ (function (_super) {
6417
6425
  __extends(AmplifyProductsListSelectedDto, _super);
6418
6426
  function AmplifyProductsListSelectedDto() {
@@ -6421,13 +6429,13 @@
6421
6429
  _this[_b$1i] = '';
6422
6430
  _this[_c$11] = true;
6423
6431
  _this[_d$W] = [];
6424
- _this[_e$Q] = 'amplify';
6432
+ _this[_e$P] = 'amplify';
6425
6433
  _this[_f$z] = '1';
6426
6434
  return _this;
6427
6435
  }
6428
6436
  return AmplifyProductsListSelectedDto;
6429
6437
  }(ParentBlockDto));
6430
- _a$1n = FORM_NAME_TITLE, _b$1i = FORM_NAME_AMPLIFY_CATEGORY, _c$11 = FORM_NAME_SHOW_TITLE, _d$W = FORM_NAME_LIST_PRODUCT, _e$Q = FORM_NAME_AMPLIFY_TYPE, _f$z = FORM_NAME_NBLIGNE;
6438
+ _a$1n = FORM_NAME_TITLE, _b$1i = FORM_NAME_AMPLIFY_CATEGORY, _c$11 = FORM_NAME_SHOW_TITLE, _d$W = FORM_NAME_LIST_PRODUCT, _e$P = FORM_NAME_AMPLIFY_TYPE, _f$z = FORM_NAME_NBLIGNE;
6431
6439
 
6432
6440
  var TYPE_AMPLIFY_PRODUCTS_LIST_SELECTED = 'amplify-products-list-selected';
6433
6441
  var AmplifyProductsListSelectedService = /** @class */ (function () {
@@ -6472,7 +6480,7 @@
6472
6480
  },] }
6473
6481
  ];
6474
6482
 
6475
- var _a$1o, _b$1j, _c$12, _d$X, _e$R, _f$A;
6483
+ var _a$1o, _b$1j, _c$12, _d$X, _e$Q, _f$A;
6476
6484
  var AmplifyProductsListSimpleDto = /** @class */ (function (_super) {
6477
6485
  __extends(AmplifyProductsListSimpleDto, _super);
6478
6486
  function AmplifyProductsListSimpleDto() {
@@ -6481,13 +6489,13 @@
6481
6489
  _this[_b$1j] = '';
6482
6490
  _this[_c$12] = true;
6483
6491
  _this[_d$X] = [];
6484
- _this[_e$R] = 'amplify';
6492
+ _this[_e$Q] = 'amplify';
6485
6493
  _this[_f$A] = '1';
6486
6494
  return _this;
6487
6495
  }
6488
6496
  return AmplifyProductsListSimpleDto;
6489
6497
  }(ParentBlockDto));
6490
- _a$1o = FORM_NAME_TITLE, _b$1j = FORM_NAME_AMPLIFY_CATEGORY, _c$12 = FORM_NAME_SHOW_TITLE, _d$X = FORM_NAME_LIST_PRODUCT, _e$R = FORM_NAME_AMPLIFY_TYPE, _f$A = FORM_NAME_NBLIGNE;
6498
+ _a$1o = FORM_NAME_TITLE, _b$1j = FORM_NAME_AMPLIFY_CATEGORY, _c$12 = FORM_NAME_SHOW_TITLE, _d$X = FORM_NAME_LIST_PRODUCT, _e$Q = FORM_NAME_AMPLIFY_TYPE, _f$A = FORM_NAME_NBLIGNE;
6491
6499
 
6492
6500
  var TYPE_AMPLIFY_PRODUCTS_LIST_SIMPLE = 'amplify-products-list-simple';
6493
6501
  var AmplifyProductsListSimpleService = /** @class */ (function () {
@@ -6589,7 +6597,7 @@
6589
6597
  },] }
6590
6598
  ];
6591
6599
 
6592
- var _a$1q, _b$1l, _c$14, _d$Y, _e$S;
6600
+ var _a$1q, _b$1l, _c$14, _d$Y, _e$R;
6593
6601
  var AmplifyProductZoomTripleColumnDto = /** @class */ (function (_super) {
6594
6602
  __extends(AmplifyProductZoomTripleColumnDto, _super);
6595
6603
  function AmplifyProductZoomTripleColumnDto() {
@@ -6598,12 +6606,12 @@
6598
6606
  _this[_b$1l] = '';
6599
6607
  _this[_c$14] = '#dddddd';
6600
6608
  _this[_d$Y] = 'wb.dto.TEXT.1';
6601
- _this[_e$S] = 'amplify';
6609
+ _this[_e$R] = 'amplify';
6602
6610
  return _this;
6603
6611
  }
6604
6612
  return AmplifyProductZoomTripleColumnDto;
6605
6613
  }(ParentBlockDto));
6606
- _a$1q = FORM_NAME_CONTENT, _b$1l = FORM_NAME_ID_PRODUCT, _c$14 = FORM_NAME_COLOR, _d$Y = FORM_NAME_TEXT, _e$S = FORM_NAME_AMPLIFY_TYPE;
6614
+ _a$1q = FORM_NAME_CONTENT, _b$1l = FORM_NAME_ID_PRODUCT, _c$14 = FORM_NAME_COLOR, _d$Y = FORM_NAME_TEXT, _e$R = FORM_NAME_AMPLIFY_TYPE;
6607
6615
 
6608
6616
  var TYPE_AMPLIFY_PRODUCT_ZOOM_TRIPLE_COLUMN = 'amplify-product-zoom-triple-column';
6609
6617
  var AmplifyProductZoomTripleColumnService = /** @class */ (function () {
@@ -6650,7 +6658,7 @@
6650
6658
  },] }
6651
6659
  ];
6652
6660
 
6653
- var _a$1r, _b$1m, _c$15, _d$Z, _e$T, _f$B, _g$v, _h$p, _j$l, _k$i;
6661
+ var _a$1r, _b$1m, _c$15, _d$Z, _e$S, _f$B, _g$v, _h$o, _j$j, _k$i;
6654
6662
  var TextsQuadrupleNumbersDto = /** @class */ (function (_super) {
6655
6663
  __extends(TextsQuadrupleNumbersDto, _super);
6656
6664
  function TextsQuadrupleNumbersDto() {
@@ -6659,17 +6667,17 @@
6659
6667
  _this[_b$1m] = 'wb.dto.CONTENT.30';
6660
6668
  _this[_c$15] = 'wb.dto.TITLE.29';
6661
6669
  _this[_d$Z] = 'wb.dto.CONTENT.30';
6662
- _this[_e$T] = 'wb.dto.TITLE.29';
6670
+ _this[_e$S] = 'wb.dto.TITLE.29';
6663
6671
  _this[_f$B] = 'wb.dto.CONTENT.30';
6664
6672
  _this[_g$v] = 'wb.dto.TITLE.29';
6665
- _this[_h$p] = 'wb.dto.CONTENT.30';
6666
- _this[_j$l] = 'wb.dto.CONTENT.30';
6673
+ _this[_h$o] = 'wb.dto.CONTENT.30';
6674
+ _this[_j$j] = 'wb.dto.CONTENT.30';
6667
6675
  _this[_k$i] = false;
6668
6676
  return _this;
6669
6677
  }
6670
6678
  return TextsQuadrupleNumbersDto;
6671
6679
  }(ParentBlockDto));
6672
- _a$1r = FORM_NAME_TITLE_LEFT, _b$1m = FORM_NAME_CONTENT_RIGHT, _c$15 = FORM_NAME_TITLE_RIGHT, _d$Z = FORM_NAME_CONTENT_LEFT, _e$T = FORM_NAME_TITLE_MIDDLE_LEFT, _f$B = FORM_NAME_CONTENT_MIDDLE_LEFT, _g$v = FORM_NAME_TITLE_MIDDLE_RIGHT, _h$p = FORM_NAME_CONTENT_MIDDLE_RIGHT, _j$l = FORM_NAME_CONTENT_RIGHT, _k$i = FORM_NAME_ALIGN_BUTTON;
6680
+ _a$1r = FORM_NAME_TITLE_LEFT, _b$1m = FORM_NAME_CONTENT_RIGHT, _c$15 = FORM_NAME_TITLE_RIGHT, _d$Z = FORM_NAME_CONTENT_LEFT, _e$S = FORM_NAME_TITLE_MIDDLE_LEFT, _f$B = FORM_NAME_CONTENT_MIDDLE_LEFT, _g$v = FORM_NAME_TITLE_MIDDLE_RIGHT, _h$o = FORM_NAME_CONTENT_MIDDLE_RIGHT, _j$j = FORM_NAME_CONTENT_RIGHT, _k$i = FORM_NAME_ALIGN_BUTTON;
6673
6681
 
6674
6682
  var TYPE_TEXTS_QUADRUPLE_NUMBERS = 'texts-quadruple-numbers';
6675
6683
  var TextsQuadrupleNumbersService = /** @class */ (function () {
@@ -6720,7 +6728,7 @@
6720
6728
  },] }
6721
6729
  ];
6722
6730
 
6723
- var _a$1s, _b$1n, _c$16, _d$_, _e$U;
6731
+ var _a$1s, _b$1n, _c$16, _d$_, _e$T;
6724
6732
  var AboutBlockDto = /** @class */ (function (_super) {
6725
6733
  __extends(AboutBlockDto, _super);
6726
6734
  function AboutBlockDto() {
@@ -6729,12 +6737,12 @@
6729
6737
  _this[_b$1n] = '#F6F6F6';
6730
6738
  _this[_c$16] = '#DDDDDD';
6731
6739
  _this[_d$_] = [];
6732
- _this[_e$U] = true;
6740
+ _this[_e$T] = true;
6733
6741
  return _this;
6734
6742
  }
6735
6743
  return AboutBlockDto;
6736
6744
  }(ParentBlockDto));
6737
- _a$1s = FORM_NAME_TITLE, _b$1n = FORM_NAME_BACKGROUND_COLOR, _c$16 = FORM_NAME_UNDERLINE_COLOR, _d$_ = FORM_NAME_ELEMENTS, _e$U = FORM_NAME_INIT;
6745
+ _a$1s = FORM_NAME_TITLE, _b$1n = FORM_NAME_BACKGROUND_COLOR, _c$16 = FORM_NAME_UNDERLINE_COLOR, _d$_ = FORM_NAME_ELEMENTS, _e$T = FORM_NAME_INIT;
6738
6746
 
6739
6747
  var TYPE_ABOUT_BLOCK = 'about-block';
6740
6748
  var AboutBlockService = /** @class */ (function () {
@@ -6808,9 +6816,12 @@
6808
6816
  ImagesBannerService.prototype.getForm = function (content) {
6809
6817
  if (content === void 0) { content = this.getConfig(); }
6810
6818
  var imgBannerFormDto = new FormsDto(content);
6811
- var parallaxImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX, 'wb.blocks.FormContentDto.17', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX], '', '', [], [], [true, false]);
6812
- imgBannerFormDto.forms.push(parallaxImgSimpleContentDto);
6813
- var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', ['wb.blocks.FormContentDto.115', 'wb.blocks.FormContentDto.116', 'wb.blocks.FormContentDto.117'], ['0.25', '0.5', '1']);
6819
+ var parallaxSpeedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_SPEED, 'wb.blocks.FormContentDto.113', FORM_TYPE_TAG, content[FORM_NAME_PARALLAX_SPEED], '', '', [
6820
+ 'wb.blocks.FormContentDto.101',
6821
+ 'wb.blocks.FormContentDto.115',
6822
+ 'wb.blocks.FormContentDto.116',
6823
+ 'wb.blocks.FormContentDto.117',
6824
+ ], ['0', '0.25', '0.5', '1']);
6814
6825
  imgBannerFormDto.forms.push(parallaxSpeedImgSimpleContentDto);
6815
6826
  var parallaxInvertedImgSimpleContentDto = new FormsContentDto(FORM_NAME_PARALLAX_INVERTED, 'wb.blocks.FormContentDto.114', FORM_TYPE_CHECKBOX, content[FORM_NAME_PARALLAX_INVERTED], '', '', [], [], [true, false]);
6816
6827
  imgBannerFormDto.forms.push(parallaxInvertedImgSimpleContentDto);
@@ -6899,7 +6910,7 @@
6899
6910
  },] }
6900
6911
  ];
6901
6912
 
6902
- var _a$1v, _b$1q, _c$19, _d$11, _e$V;
6913
+ var _a$1v, _b$1q, _c$19, _d$11, _e$U;
6903
6914
  var FaqSimpleBackgroundDto = /** @class */ (function (_super) {
6904
6915
  __extends(FaqSimpleBackgroundDto, _super);
6905
6916
  function FaqSimpleBackgroundDto() {
@@ -6908,12 +6919,12 @@
6908
6919
  _this[_b$1q] = '#e95656';
6909
6920
  _this[_c$19] = '#f7f7f7';
6910
6921
  _this[_d$11] = '#dce0e3';
6911
- _this[_e$V] = false;
6922
+ _this[_e$U] = false;
6912
6923
  return _this;
6913
6924
  }
6914
6925
  return FaqSimpleBackgroundDto;
6915
6926
  }(ParentBlockDto));
6916
- _a$1v = FORM_NAME_FAQ, _b$1q = FORM_NAME_COLOR, _c$19 = FORM_NAME_BACKGROUND_COLOR, _d$11 = FORM_NAME_BORDER_COLOR, _e$V = FORM_NAME_ACCORDION;
6927
+ _a$1v = FORM_NAME_FAQ, _b$1q = FORM_NAME_COLOR, _c$19 = FORM_NAME_BACKGROUND_COLOR, _d$11 = FORM_NAME_BORDER_COLOR, _e$U = FORM_NAME_ACCORDION;
6917
6928
 
6918
6929
  var TYPE_FAQ_SIMPLE_BACKGROUND = 'faq-simple-background';
6919
6930
  var FaqSimpleBackgroundService = /** @class */ (function () {
@@ -7019,7 +7030,7 @@
7019
7030
  },] }
7020
7031
  ];
7021
7032
 
7022
- var _a$1x, _b$1s, _c$1b, _d$12, _e$W, _f$C;
7033
+ var _a$1x, _b$1s, _c$1b, _d$12, _e$V, _f$C;
7023
7034
  var FaqFrameDto = /** @class */ (function (_super) {
7024
7035
  __extends(FaqFrameDto, _super);
7025
7036
  function FaqFrameDto() {
@@ -7028,13 +7039,13 @@
7028
7039
  _this[_b$1s] = '#e95656';
7029
7040
  _this[_c$1b] = '#dce0e3';
7030
7041
  _this[_d$12] = '#ffffff';
7031
- _this[_e$W] = '#ffd4d4';
7042
+ _this[_e$V] = '#ffd4d4';
7032
7043
  _this[_f$C] = false;
7033
7044
  return _this;
7034
7045
  }
7035
7046
  return FaqFrameDto;
7036
7047
  }(ParentBlockDto));
7037
- _a$1x = FORM_NAME_FAQ, _b$1s = FORM_NAME_COLOR, _c$1b = FORM_NAME_BORDER_COLOR, _d$12 = FORM_NAME_BACKGROUND_COLOR, _e$W = FORM_NAME_SHADOW_COLOR, _f$C = FORM_NAME_ACCORDION;
7048
+ _a$1x = FORM_NAME_FAQ, _b$1s = FORM_NAME_COLOR, _c$1b = FORM_NAME_BORDER_COLOR, _d$12 = FORM_NAME_BACKGROUND_COLOR, _e$V = FORM_NAME_SHADOW_COLOR, _f$C = FORM_NAME_ACCORDION;
7038
7049
 
7039
7050
  var TYPE_FAQ_FRAME = 'faq-frame';
7040
7051
  var FaqFrameService = /** @class */ (function () {
@@ -7084,7 +7095,7 @@
7084
7095
  },] }
7085
7096
  ];
7086
7097
 
7087
- var _a$1y, _b$1t, _c$1c, _d$13, _e$X, _f$D;
7098
+ var _a$1y, _b$1t, _c$1c, _d$13, _e$W, _f$D;
7088
7099
  var FaqAccordionDto = /** @class */ (function (_super) {
7089
7100
  __extends(FaqAccordionDto, _super);
7090
7101
  function FaqAccordionDto() {
@@ -7093,13 +7104,13 @@
7093
7104
  _this[_b$1t] = '#e95656';
7094
7105
  _this[_c$1c] = '#fafafa';
7095
7106
  _this[_d$13] = '#ffffff';
7096
- _this[_e$X] = '#dce0e3';
7107
+ _this[_e$W] = '#dce0e3';
7097
7108
  _this[_f$D] = true;
7098
7109
  return _this;
7099
7110
  }
7100
7111
  return FaqAccordionDto;
7101
7112
  }(ParentBlockDto));
7102
- _a$1y = FORM_NAME_FAQ, _b$1t = FORM_NAME_COLOR, _c$1c = FORM_NAME_BACKGROUND_COLOR, _d$13 = FORM_NAME_BACKGROUND_COLOR_SECONDARY, _e$X = FORM_NAME_BORDER_COLOR, _f$D = FORM_NAME_ACCORDION;
7113
+ _a$1y = FORM_NAME_FAQ, _b$1t = FORM_NAME_COLOR, _c$1c = FORM_NAME_BACKGROUND_COLOR, _d$13 = FORM_NAME_BACKGROUND_COLOR_SECONDARY, _e$W = FORM_NAME_BORDER_COLOR, _f$D = FORM_NAME_ACCORDION;
7103
7114
 
7104
7115
  var TYPE_FAQ_ACCORDION = 'faq-accordion';
7105
7116
  var FaqAccordionService = /** @class */ (function () {
@@ -7126,12 +7137,10 @@
7126
7137
  if (content === void 0) { content = this.getConfig(); }
7127
7138
  var faqAccordionFormDto = new FormsDto(content);
7128
7139
  var arrowColorContentDto = new FormsContentDto(FORM_NAME_COLOR, 'wb.blocks.FormContentDto.5', FORM_TYPE_COLOR, content[FORM_NAME_COLOR], '', '');
7129
- var backgroundQuestionContentDto = new FormsContentDto(FORM_NAME_BACKGROUND_COLOR, 'wb.blocks.FormContentDto.6', FORM_TYPE_COLOR, content[FORM_NAME_BACKGROUND_COLOR], '', '');
7130
- var backgroundAnswerContentDto = new FormsContentDto(FORM_NAME_BACKGROUND_COLOR_SECONDARY, 'wb.blocks.FormContentDto.7', FORM_TYPE_COLOR, content[FORM_NAME_BACKGROUND_COLOR_SECONDARY], '', '');
7140
+ var backgroundAnswerContentDto = new FormsContentDto(FORM_NAME_BACKGROUND_COLOR_SECONDARY, 'wb.blocks.FormContentDto.11', FORM_TYPE_COLOR, content[FORM_NAME_BACKGROUND_COLOR_SECONDARY], '', '');
7131
7141
  var shadowContentDto = new FormsContentDto(FORM_NAME_BORDER_COLOR, 'wb.blocks.FormContentDto.8', FORM_TYPE_COLOR, content[FORM_NAME_BORDER_COLOR], '', '');
7132
7142
  var accordionContentDto = new FormsContentDto(FORM_NAME_ACCORDION, 'wb.blocks.FormContentDto.9', FORM_TYPE_CHECKBOX, content[FORM_NAME_ACCORDION], '', 'wb.blocks.FormContentDto.10', [], [], [true, false], true);
7133
7143
  faqAccordionFormDto.forms.push(arrowColorContentDto);
7134
- faqAccordionFormDto.forms.push(backgroundQuestionContentDto);
7135
7144
  faqAccordionFormDto.forms.push(backgroundAnswerContentDto);
7136
7145
  faqAccordionFormDto.forms.push(shadowContentDto);
7137
7146
  faqAccordionFormDto.forms.push(accordionContentDto);
@@ -7219,7 +7228,7 @@
7219
7228
  }(MediaDto));
7220
7229
  _a$1A = FORM_NAME_URL_TARGET, _b$1v = FORM_NAME_TITLE, _c$1e = FORM_NAME_URL;
7221
7230
 
7222
- var _a$1B, _b$1w, _c$1f, _d$14, _e$Y, _f$E, _g$w, _h$q, _j$m, _k$j, _l$g;
7231
+ var _a$1B, _b$1w, _c$1f, _d$14, _e$X, _f$E, _g$w, _h$p, _j$k, _k$j, _l$g;
7223
7232
  var TwoImagesTitleTextDto = /** @class */ (function (_super) {
7224
7233
  __extends(TwoImagesTitleTextDto, _super);
7225
7234
  function TwoImagesTitleTextDto() {
@@ -7228,18 +7237,18 @@
7228
7237
  _this[_b$1w] = true;
7229
7238
  _this[_c$1f] = new ImageMediaDto();
7230
7239
  _this[_d$14] = new ImageMediaDto();
7231
- _this[_e$Y] = 'wb.dto.TITLE.41';
7240
+ _this[_e$X] = 'wb.dto.TITLE.41';
7232
7241
  _this[_f$E] = 'wb.dto.TITLE.42';
7233
7242
  _this[_g$w] = 'wb.dto.TITLE.42';
7234
- _this[_h$q] = 'wb.dto.TEXT.3';
7235
- _this[_j$m] = 'wb.dto.TEXT.3';
7243
+ _this[_h$p] = 'wb.dto.TEXT.3';
7244
+ _this[_j$k] = 'wb.dto.TEXT.3';
7236
7245
  _this[_k$j] = '#e95656';
7237
7246
  _this[_l$g] = false;
7238
7247
  return _this;
7239
7248
  }
7240
7249
  return TwoImagesTitleTextDto;
7241
7250
  }(ParentBlockDto));
7242
- _a$1B = FORM_NAME_IMG_MASK, _b$1w = FORM_NAME_FULLPAGE, _c$1f = FORM_NAME_IMAGE_LEFT, _d$14 = FORM_NAME_IMAGE_RIGHT, _e$Y = FORM_NAME_TITLE, _f$E = FORM_NAME_TITLE_LEFT, _g$w = FORM_NAME_TITLE_RIGHT, _h$q = FORM_NAME_TEXT_LEFT, _j$m = FORM_NAME_TEXT_RIGHT, _k$j = FORM_NAME_ICON_COLOR, _l$g = FORM_NAME_INIT;
7251
+ _a$1B = FORM_NAME_IMG_MASK, _b$1w = FORM_NAME_FULLPAGE, _c$1f = FORM_NAME_IMAGE_LEFT, _d$14 = FORM_NAME_IMAGE_RIGHT, _e$X = FORM_NAME_TITLE, _f$E = FORM_NAME_TITLE_LEFT, _g$w = FORM_NAME_TITLE_RIGHT, _h$p = FORM_NAME_TEXT_LEFT, _j$k = FORM_NAME_TEXT_RIGHT, _k$j = FORM_NAME_ICON_COLOR, _l$g = FORM_NAME_INIT;
7243
7252
 
7244
7253
  var TYPE_TWO_IMAGES_TITLE_TEXT = 'images-two-title-text';
7245
7254
  var TwoImagesTitleTextService = /** @class */ (function () {
@@ -7288,7 +7297,7 @@
7288
7297
  },] }
7289
7298
  ];
7290
7299
 
7291
- var _a$1C, _b$1x, _c$1g, _d$15, _e$Z, _f$F;
7300
+ var _a$1C, _b$1x, _c$1g, _d$15, _e$Y, _f$F;
7292
7301
  var FormsOnboardingDto = /** @class */ (function (_super) {
7293
7302
  __extends(FormsOnboardingDto, _super);
7294
7303
  function FormsOnboardingDto() {
@@ -7297,13 +7306,13 @@
7297
7306
  _this[_b$1x] = 40;
7298
7307
  _this[_c$1g] = '#ffffff';
7299
7308
  _this[_d$15] = false;
7300
- _this[_e$Z] = 'wb.dto.BUTTON.15';
7309
+ _this[_e$Y] = 'wb.dto.BUTTON.15';
7301
7310
  _this[_f$F] = 'enter.your.email.address';
7302
7311
  return _this;
7303
7312
  }
7304
7313
  return FormsOnboardingDto;
7305
7314
  }(ParentBlockDto));
7306
- _a$1C = FORM_NAME_TITLE, _b$1x = FORM_NAME_PADDING, _c$1g = FORM_NAME_BACKGROUND_COLOR, _d$15 = FORM_NAME_EXTERNAL, _e$Z = FORM_NAME_BUTTON_TEXT, _f$F = FORM_NAME_PLACEHOLDER;
7315
+ _a$1C = FORM_NAME_TITLE, _b$1x = FORM_NAME_PADDING, _c$1g = FORM_NAME_BACKGROUND_COLOR, _d$15 = FORM_NAME_EXTERNAL, _e$Y = FORM_NAME_BUTTON_TEXT, _f$F = FORM_NAME_PLACEHOLDER;
7307
7316
 
7308
7317
  var TYPE_FORMS_ONBOARDING = 'forms-onboarding';
7309
7318
  var FormsOnboardingService = /** @class */ (function () {
@@ -7356,7 +7365,7 @@
7356
7365
  },] }
7357
7366
  ];
7358
7367
 
7359
- var _a$1D, _b$1y, _c$1h, _d$16, _e$_, _f$G, _g$x;
7368
+ var _a$1D, _b$1y, _c$1h, _d$16, _e$Z, _f$G, _g$x;
7360
7369
  var TextBackgroundsThreeRowsIconTextDto = /** @class */ (function (_super) {
7361
7370
  __extends(TextBackgroundsThreeRowsIconTextDto, _super);
7362
7371
  function TextBackgroundsThreeRowsIconTextDto() {
@@ -7365,14 +7374,14 @@
7365
7374
  _this[_b$1y] = 3;
7366
7375
  _this[_c$1h] = 0;
7367
7376
  _this[_d$16] = [];
7368
- _this[_e$_] = '#e95656';
7377
+ _this[_e$Z] = '#e95656';
7369
7378
  _this[_f$G] = '#ffffff';
7370
7379
  _this[_g$x] = 'small';
7371
7380
  return _this;
7372
7381
  }
7373
7382
  return TextBackgroundsThreeRowsIconTextDto;
7374
7383
  }(ParentBlockDto));
7375
- _a$1D = FORM_NAME_INIT, _b$1y = FORM_NAME_ITEM_NUMBER, _c$1h = FORM_NAME_LINE_NUMBER, _d$16 = FORM_NAME_ROWS, _e$_ = FORM_NAME_ICON_COLOR, _f$G = FORM_NAME_BACKGROUND_COLOR, _g$x = FORM_NAME_IMG_MASK;
7384
+ _a$1D = FORM_NAME_INIT, _b$1y = FORM_NAME_ITEM_NUMBER, _c$1h = FORM_NAME_LINE_NUMBER, _d$16 = FORM_NAME_ROWS, _e$Z = FORM_NAME_ICON_COLOR, _f$G = FORM_NAME_BACKGROUND_COLOR, _g$x = FORM_NAME_IMG_MASK;
7376
7385
 
7377
7386
  var TYPE_TEXT_BACKGROUNDS_THREE_ROWS_ICON_TEXT = 'text-backgrounds-three-rows-icon-text';
7378
7387
  var TextBackgroundsThreeRowsIconTextService = /** @class */ (function () {
@@ -7416,7 +7425,7 @@
7416
7425
  },] }
7417
7426
  ];
7418
7427
 
7419
- var _a$1E, _b$1z, _c$1i, _d$17, _e$$, _f$H, _g$y;
7428
+ var _a$1E, _b$1z, _c$1i, _d$17, _e$_, _f$H, _g$y;
7420
7429
  var TextBackgroundsFourRowsIconTextDto = /** @class */ (function (_super) {
7421
7430
  __extends(TextBackgroundsFourRowsIconTextDto, _super);
7422
7431
  function TextBackgroundsFourRowsIconTextDto() {
@@ -7425,14 +7434,14 @@
7425
7434
  _this[_b$1z] = 4;
7426
7435
  _this[_c$1i] = 0;
7427
7436
  _this[_d$17] = [];
7428
- _this[_e$$] = '#e95656';
7437
+ _this[_e$_] = '#e95656';
7429
7438
  _this[_f$H] = '#ffffff';
7430
7439
  _this[_g$y] = 'small';
7431
7440
  return _this;
7432
7441
  }
7433
7442
  return TextBackgroundsFourRowsIconTextDto;
7434
7443
  }(ParentBlockDto));
7435
- _a$1E = FORM_NAME_INIT, _b$1z = FORM_NAME_ITEM_NUMBER, _c$1i = FORM_NAME_LINE_NUMBER, _d$17 = FORM_NAME_ROWS, _e$$ = FORM_NAME_ICON_COLOR, _f$H = FORM_NAME_BACKGROUND_COLOR, _g$y = FORM_NAME_IMG_MASK;
7444
+ _a$1E = FORM_NAME_INIT, _b$1z = FORM_NAME_ITEM_NUMBER, _c$1i = FORM_NAME_LINE_NUMBER, _d$17 = FORM_NAME_ROWS, _e$_ = FORM_NAME_ICON_COLOR, _f$H = FORM_NAME_BACKGROUND_COLOR, _g$y = FORM_NAME_IMG_MASK;
7436
7445
 
7437
7446
  var TYPE_TEXT_BACKGROUNDS_FOUR_ROWS_ICON_TEXT = 'text-backgrounds-four-rows-icon-text';
7438
7447
  var TextBackgroundsFourRowsIconTextService = /** @class */ (function () {
@@ -7476,7 +7485,7 @@
7476
7485
  },] }
7477
7486
  ];
7478
7487
 
7479
- var _a$1F, _b$1A, _c$1j, _d$18, _e$10, _f$I, _g$z;
7488
+ var _a$1F, _b$1A, _c$1j, _d$18, _e$$, _f$I, _g$z;
7480
7489
  var TextBackgroundsTwoRowsIconTextDto = /** @class */ (function (_super) {
7481
7490
  __extends(TextBackgroundsTwoRowsIconTextDto, _super);
7482
7491
  function TextBackgroundsTwoRowsIconTextDto() {
@@ -7485,14 +7494,14 @@
7485
7494
  _this[_b$1A] = 2;
7486
7495
  _this[_c$1j] = 0;
7487
7496
  _this[_d$18] = [];
7488
- _this[_e$10] = '#e95656';
7497
+ _this[_e$$] = '#e95656';
7489
7498
  _this[_f$I] = '#ffffff';
7490
7499
  _this[_g$z] = 'small';
7491
7500
  return _this;
7492
7501
  }
7493
7502
  return TextBackgroundsTwoRowsIconTextDto;
7494
7503
  }(ParentBlockDto));
7495
- _a$1F = FORM_NAME_INIT, _b$1A = FORM_NAME_ITEM_NUMBER, _c$1j = FORM_NAME_LINE_NUMBER, _d$18 = FORM_NAME_ROWS, _e$10 = FORM_NAME_ICON_COLOR, _f$I = FORM_NAME_BACKGROUND_COLOR, _g$z = FORM_NAME_IMG_MASK;
7504
+ _a$1F = FORM_NAME_INIT, _b$1A = FORM_NAME_ITEM_NUMBER, _c$1j = FORM_NAME_LINE_NUMBER, _d$18 = FORM_NAME_ROWS, _e$$ = FORM_NAME_ICON_COLOR, _f$I = FORM_NAME_BACKGROUND_COLOR, _g$z = FORM_NAME_IMG_MASK;
7496
7505
 
7497
7506
  var TYPE_TEXT_BACKGROUNDS_TWO_ROWS_ICON_TEXT = 'text-backgrounds-two-rows-icon-text';
7498
7507
  var TextBackgroundsTwoRowsIconTextService = /** @class */ (function () {
@@ -7536,7 +7545,7 @@
7536
7545
  },] }
7537
7546
  ];
7538
7547
 
7539
- var _a$1G, _b$1B, _c$1k, _d$19, _e$11, _f$J, _g$A;
7548
+ var _a$1G, _b$1B, _c$1k, _d$19, _e$10, _f$J, _g$A;
7540
7549
  var SliderWithBannerDto = /** @class */ (function (_super) {
7541
7550
  __extends(SliderWithBannerDto, _super);
7542
7551
  function SliderWithBannerDto() {
@@ -7545,14 +7554,14 @@
7545
7554
  _this[_b$1B] = '4000';
7546
7555
  _this[_c$1k] = true;
7547
7556
  _this[_d$19] = 'wb.dto.CONTENT.37';
7548
- _this[_e$11] = '#74b4c0';
7557
+ _this[_e$10] = '#74b4c0';
7549
7558
  _this[_f$J] = true;
7550
7559
  _this[_g$A] = 'small';
7551
7560
  return _this;
7552
7561
  }
7553
7562
  return SliderWithBannerDto;
7554
7563
  }(ParentBlockDto));
7555
- _a$1G = FORM_NAME_SLIDER, _b$1B = FORM_NAME_TIME, _c$1k = FORM_NAME_DOTS, _d$19 = FORM_NAME_CONTENT, _e$11 = FORM_NAME_COLOR, _f$J = FORM_NAME_FULLPAGE, _g$A = FORM_NAME_IMG_MASK;
7564
+ _a$1G = FORM_NAME_SLIDER, _b$1B = FORM_NAME_TIME, _c$1k = FORM_NAME_DOTS, _d$19 = FORM_NAME_CONTENT, _e$10 = FORM_NAME_COLOR, _f$J = FORM_NAME_FULLPAGE, _g$A = FORM_NAME_IMG_MASK;
7556
7565
 
7557
7566
  var TYPE_SLIDERS_WITH_BANNER = 'sliders-with-banner';
7558
7567
  var SlidersWithBannerService = /** @class */ (function () {