@wizishop/angular-components 15.1.147 → 15.1.150

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 (29) hide show
  1. package/angular-components.scss +356 -4
  2. package/assets/images/upload/upload_images.svg +23 -0
  3. package/esm2020/lib/components/pricing-section/pricing-section-table.dto.mjs +2 -0
  4. package/esm2020/lib/components/pricing-section/pricing-section.component.mjs +15 -0
  5. package/esm2020/lib/components/pricing-section/pricing-section.dto.mjs +2 -0
  6. package/esm2020/lib/components/reassurance-section/reassurance-section-content.dto.mjs +2 -0
  7. package/esm2020/lib/components/reassurance-section/reassurance-section.component.mjs +15 -0
  8. package/esm2020/lib/components/reassurance-section/reassurance-section.dto.mjs +2 -0
  9. package/esm2020/lib/components/shared-components.module.mjs +12 -4
  10. package/esm2020/lib/components/tag/tag.component.mjs +6 -3
  11. package/esm2020/lib/components/upload/upload.component.mjs +28 -3
  12. package/esm2020/public-api.mjs +7 -1
  13. package/fesm2015/wizishop-angular-components.mjs +65 -8
  14. package/fesm2015/wizishop-angular-components.mjs.map +1 -1
  15. package/fesm2020/wizishop-angular-components.mjs +65 -8
  16. package/fesm2020/wizishop-angular-components.mjs.map +1 -1
  17. package/lib/components/pricing-section/pricing-section-table.dto.d.ts +6 -0
  18. package/lib/components/pricing-section/pricing-section.component.d.ts +8 -0
  19. package/lib/components/pricing-section/pricing-section.dto.d.ts +7 -0
  20. package/lib/components/reassurance-section/reassurance-section-content.dto.d.ts +4 -0
  21. package/lib/components/reassurance-section/reassurance-section.component.d.ts +8 -0
  22. package/lib/components/reassurance-section/reassurance-section.dto.d.ts +5 -0
  23. package/lib/components/shared-components.module.d.ts +52 -50
  24. package/lib/components/tag/tag.component.d.ts +2 -1
  25. package/lib/components/upload/upload.component.d.ts +8 -1
  26. package/package.json +1 -1
  27. package/public-api.d.ts +6 -0
  28. package/wizishop-angular-components-15.1.150.tgz +0 -0
  29. package/wizishop-angular-components-15.1.147.tgz +0 -0
@@ -6393,6 +6393,199 @@ wac-optional-disable-container {
6393
6393
  .wac-free .ps-content > * {
6394
6394
  padding-right: 15px;
6395
6395
  }
6396
+ @mixin flex-col-start {
6397
+ display: flex;
6398
+ flex-direction: column;
6399
+ justify-content: flex-start;
6400
+ align-items: flex-start;
6401
+ }
6402
+
6403
+ .hide-for-mobile {
6404
+ @include media('<tablet') {
6405
+ display: none;
6406
+ }
6407
+ }
6408
+
6409
+ .show-for-mobile {
6410
+ @include media('>=tablet') {
6411
+ display: none;
6412
+ }
6413
+ }
6414
+
6415
+ .italic {
6416
+ color: $second-color;
6417
+ font-style: italic;
6418
+ font-size: rem(14);
6419
+ line-height: rem(16);
6420
+ &.small {
6421
+ font-size: rem(13);
6422
+ line-height: rem(15);
6423
+ @include media('<tablet') {
6424
+ line-height: 1.4;
6425
+ }
6426
+ }
6427
+ }
6428
+
6429
+ .wac-pricing-section {
6430
+ width: 100%;
6431
+ min-width: 100%;
6432
+ @include flex-col-start;
6433
+ gap: 32px;
6434
+ &__top {
6435
+ width: 100%;
6436
+ @include flex-col-start;
6437
+ gap: 18px;
6438
+ &__text {
6439
+ width: 100%;
6440
+ @include flex-col-start;
6441
+ gap: 8px;
6442
+ }
6443
+ }
6444
+ &__table {
6445
+ width: 100%;
6446
+ @include flex-col-start;
6447
+ gap: 16px;
6448
+ &__top {
6449
+ width: 100%;
6450
+ display: flex;
6451
+ justify-content: space-between;
6452
+ align-items: stretch;
6453
+ gap: 33px;
6454
+ @include media('<tablet') {
6455
+ @include flex-col-start;
6456
+ gap: 16px;
6457
+ }
6458
+ }
6459
+ &__item {
6460
+ width: 100%;
6461
+ @include flex-col-start;
6462
+ gap: 0;
6463
+ &:first-child {
6464
+ min-width: 57.31%;
6465
+ }
6466
+ &__thead {
6467
+ width: 100%;
6468
+ display: flex;
6469
+ align-items: center;
6470
+ gap: 8px;
6471
+ border-radius: 6px 6px 0 0;
6472
+ background-color: #1F264F;
6473
+ padding: 16px 20px;
6474
+ @include media('<tablet') {
6475
+ justify-content: center;
6476
+ }
6477
+ i, strong {
6478
+ color: $white;
6479
+ }
6480
+ i {
6481
+ font-size: rem(16);
6482
+ min-width: 30px;
6483
+ text-align: center;
6484
+ }
6485
+ }
6486
+ &__tbody {
6487
+ width: 100%;
6488
+ @include flex-col-start;
6489
+ gap: 0;
6490
+ padding: 20px;
6491
+ border: 1px solid #DEE2ED;
6492
+ border-radius: 0 0 6px 6px;
6493
+ &__label {
6494
+ width: 100%;
6495
+ display: flex;
6496
+ align-items: center;
6497
+ justify-content: flex-end;
6498
+ gap: 32px;
6499
+ @include media('<tablet') {
6500
+ justify-content: center;
6501
+ }
6502
+ strong {
6503
+ max-width: 240px;
6504
+ min-width: 240px;
6505
+ }
6506
+ strong {
6507
+ padding: 8px 0;
6508
+ position: relative;
6509
+ display: inline-block;
6510
+ text-align: center;
6511
+ border-radius: 5px;
6512
+ overflow: hidden;
6513
+ &:before {
6514
+ content: '';
6515
+ display: block;
6516
+ opacity: .2;
6517
+ background-color: #3BA6EC;
6518
+ width: 100%;
6519
+ height: 100%;
6520
+ position: absolute;
6521
+ top: 0;
6522
+ left: 0;
6523
+ }
6524
+ &.violet {
6525
+ &:before {
6526
+ background-color: #7F5EFD;
6527
+ }
6528
+ }
6529
+ }
6530
+ }
6531
+ &__line {
6532
+ width: 100%;
6533
+ display: flex;
6534
+ align-items: center;
6535
+ justify-content: flex-end;
6536
+ gap: 32px;
6537
+ position: relative;
6538
+ &:nth-child(3) {
6539
+ &:before {
6540
+ content: '';
6541
+ display: block;
6542
+ position: absolute;
6543
+ width: 100%;
6544
+ height: .1px;
6545
+ background-color: #DEE2ED;
6546
+ top: 0;
6547
+ left: 0;
6548
+ }
6549
+ &:after {
6550
+ content: '';
6551
+ display: block;
6552
+ position: absolute;
6553
+ width: 100%;
6554
+ height: .1px;
6555
+ background-color: #DEE2ED;
6556
+ top: 100%;
6557
+ left: 0;
6558
+ }
6559
+ }
6560
+ strong, span {
6561
+ padding: 16px 0;
6562
+
6563
+ }
6564
+ strong {
6565
+ width: 100%;
6566
+ }
6567
+ span {
6568
+ max-width: 240px;
6569
+ min-width: 240px;
6570
+ text-align: center;
6571
+ @include media('<tablet') {
6572
+ width: 100%;
6573
+ max-width: 100%;
6574
+ min-width: 100%;
6575
+ display: flex;
6576
+ flex-direction: column;
6577
+ justify-content: center;
6578
+ align-items: center;
6579
+ }
6580
+ &.hide {
6581
+ display: none!important;
6582
+ }
6583
+ }
6584
+ }
6585
+ }
6586
+ }
6587
+ }
6588
+ }
6396
6589
  .wac-progressBarContent {
6397
6590
  position: relative;
6398
6591
  width: 100%;
@@ -6723,6 +6916,43 @@ wac-optional-disable-container {
6723
6916
  }
6724
6917
  }
6725
6918
  }
6919
+ @mixin flex-col-start {
6920
+ display: flex;
6921
+ flex-direction: column;
6922
+ justify-content: flex-start;
6923
+ align-items: flex-start;
6924
+ }
6925
+
6926
+ .wac-reassurance-section {
6927
+ width: 100%;
6928
+ @include flex-col-start;
6929
+ gap: 32px;
6930
+ &__wrapper {
6931
+ width: 100%;
6932
+ display: flex;
6933
+ justify-content: flex-start;
6934
+ align-items: flex-start;
6935
+ gap: 32px;
6936
+ @include media('>=tablet','<desktop') {
6937
+ flex-wrap: wrap;
6938
+ align-items: stretch;
6939
+ justify-content: space-between;
6940
+ gap: 32px;
6941
+ }
6942
+ @include media('<tablet') {
6943
+ @include flex-col-start;
6944
+ gap: 16px;
6945
+ }
6946
+ &__item {
6947
+ width: 100%;
6948
+ @include flex-col-start;
6949
+ gap: 16px;
6950
+ @include media('>=tablet','<desktop') {
6951
+ max-width: calc(50% - 16px);
6952
+ }
6953
+ }
6954
+ }
6955
+ }
6726
6956
  .wac-row {
6727
6957
  display: flex;
6728
6958
  justify-content: space-between;
@@ -8297,11 +8527,44 @@ wac-optional-disable-container {
8297
8527
  font-size: rem(14);
8298
8528
  line-height: rem(16);
8299
8529
  border-radius: rem(3);
8300
- padding: rem(9);
8530
+ padding: rem(10);
8301
8531
  font-weight: 600;
8302
8532
  transition: 0.3s ease;
8303
8533
  cursor: default;
8304
8534
 
8535
+ &.hover-delete {
8536
+ cursor: pointer;
8537
+ position: relative;
8538
+ .hover-delete {
8539
+ opacity: 0;
8540
+ display: flex;
8541
+ }
8542
+ &:hover, &:focus {
8543
+ .hover-delete {
8544
+ opacity: 1;
8545
+ }
8546
+ }
8547
+ }
8548
+
8549
+ .hover-delete {
8550
+ display: none;
8551
+ position: absolute;
8552
+ top: 0;
8553
+ left: 0;
8554
+ width: 100%;
8555
+ height: 100%;
8556
+ justify-content: center;
8557
+ align-items: center;
8558
+ background: rgba(0, 0, 0, 0.65);
8559
+ transition: .3s ease;
8560
+ border-radius: 3px;
8561
+ i {
8562
+ color: $wac-white;
8563
+ font-size: rem(16);
8564
+ margin: 0!important;
8565
+ }
8566
+ }
8567
+
8305
8568
  &.big {
8306
8569
  height: 38px;
8307
8570
  padding: rem(11) rem(15);
@@ -8347,7 +8610,7 @@ wac-optional-disable-container {
8347
8610
  width: 2px;
8348
8611
  background-color: $wac-border-form;
8349
8612
  }
8350
-
8613
+
8351
8614
  &:before, &:after {
8352
8615
  display: block;
8353
8616
  position: absolute;
@@ -8357,11 +8620,11 @@ wac-optional-disable-container {
8357
8620
  background-color: $wac-border-form;
8358
8621
  content: '';
8359
8622
  }
8360
-
8623
+
8361
8624
  &:before {
8362
8625
  left: 4px;
8363
8626
  }
8364
-
8627
+
8365
8628
  &:after {
8366
8629
  left: 8px;
8367
8630
  }
@@ -9018,6 +9281,95 @@ span.wac-tooltip {
9018
9281
  }
9019
9282
  }
9020
9283
  }
9284
+ &.block {
9285
+ position: relative;
9286
+ display: flex;
9287
+ justify-content: center;
9288
+ align-items: center;
9289
+ padding: rem(60) rem(30);
9290
+ border-radius: rem(3);
9291
+ border: 1px solid #dee2ed;
9292
+ cursor: pointer;
9293
+
9294
+ .overlay {
9295
+ position: absolute;
9296
+ top: 0;
9297
+ left: 0;
9298
+ width: 100%;
9299
+ height: 100%;
9300
+ background-color: rgba(0, 0, 0, 0.3);
9301
+ display: flex;
9302
+ justify-content: center;
9303
+ align-items: center;
9304
+ border-radius: rem(3);
9305
+ opacity: 0;
9306
+ transition: opacity 0.3s ease;
9307
+ padding: rem(40);
9308
+
9309
+ img {
9310
+ width: 100%;
9311
+ max-width: rem(110);
9312
+ height: auto;
9313
+ }
9314
+ }
9315
+
9316
+ &:hover .overlay {
9317
+ opacity: 1;
9318
+ }
9319
+
9320
+ &:hover {
9321
+ .wac-upload__wrapper button.block {
9322
+ background-color: #3BA6EC;
9323
+ color: $wac-white;
9324
+ i {
9325
+ color: $wac-white;
9326
+ }
9327
+ }
9328
+ }
9329
+
9330
+ .wac-upload {
9331
+ &__wrapper {
9332
+ width: 100%;
9333
+ height: 100%;
9334
+ padding: 0 rem(40);
9335
+ display: flex;
9336
+ flex-direction: column;
9337
+ align-items: center;
9338
+ gap: rem(15);
9339
+
9340
+ button {
9341
+ &.block {
9342
+ width: 100%;
9343
+ height: 100%;
9344
+ display: flex;
9345
+ align-items: center;
9346
+ padding: rem(11) rem(15);
9347
+ background-color: #52AECD0D;
9348
+ border: 1px solid #3BA6EC;
9349
+ color: $wac-main-text;
9350
+ font-weight: 400;
9351
+ font-size: rem(14);
9352
+ margin: 0 auto;
9353
+
9354
+ i {
9355
+ color: #3BA6EC;
9356
+ }
9357
+ }
9358
+ }
9359
+
9360
+ &__uploaded {
9361
+ position: relative;
9362
+ width: 100%;
9363
+ height: 100%;
9364
+ img {
9365
+ width: 100%;
9366
+ height: auto;
9367
+ border-radius: rem(3);
9368
+ }
9369
+ }
9370
+ }
9371
+ }
9372
+ }
9021
9373
  &.portrait {
9022
9374
  .wac-upload {
9023
9375
  &__wrapper {
@@ -0,0 +1,23 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="110.448" height="57.995" viewBox="0 0 110.448 57.995">
2
+ <g id="Groupe_53091" data-name="Groupe 53091" transform="translate(10223.223 -3392.095)">
3
+ <g id="Groupe_53089" data-name="Groupe 53089" transform="translate(-10222.537 3412.765) rotate(-31)" opacity="0.5">
4
+ <path id="Tracé_39793" data-name="Tracé 39793" d="M4.217,0H21.006L32.188,12.652v25.93A4.186,4.186,0,0,1,28,42.745H4.217A4.21,4.21,0,0,1,0,38.582V4.19A4.216,4.216,0,0,1,4.217,0Z" transform="translate(0 0)" fill="rgba(222,226,237,0.2)" stroke="#dee2ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
5
+ <path id="Tracé_39794" data-name="Tracé 39794" d="M11.183,12.707H4.19A4.191,4.191,0,0,1,0,8.516V0Z" transform="translate(21.005 0)" fill="rgba(222,226,237,0.2)" stroke="#dee2ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
6
+ </g>
7
+ <g id="Groupe_53090" data-name="Groupe 53090" transform="translate(-10141.053 3396.186) rotate(31)" opacity="0.5">
8
+ <path id="Tracé_39793-2" data-name="Tracé 39793" d="M4.217,0H21.006L32.189,12.652v25.93A4.186,4.186,0,0,1,28,42.745H4.218A4.21,4.21,0,0,1,0,38.582V4.19A4.216,4.216,0,0,1,4.217,0Z" transform="translate(0 0)" fill="rgba(222,226,237,0.2)" stroke="#dee2ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
9
+ <path id="Tracé_39794-2" data-name="Tracé 39794" d="M11.183,12.707H4.19A4.191,4.191,0,0,1,0,8.516V0Z" transform="translate(21.005 0)" fill="rgba(222,226,237,0.2)" stroke="#dee2ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
10
+ </g>
11
+ <g id="Groupe_53088" data-name="Groupe 53088" transform="translate(-10182.932 3392.595)">
12
+ <path id="Tracé_39793-3" data-name="Tracé 39793" d="M13.217,9H30.006L41.188,21.652v25.93A4.186,4.186,0,0,1,37,51.745H13.217A4.21,4.21,0,0,1,9,47.582V13.19A4.216,4.216,0,0,1,13.217,9Z" transform="translate(-9 -9)" fill="#fff" stroke="#dee2ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
13
+ <path id="Tracé_39794-3" data-name="Tracé 39794" d="M329.032,21.707h-6.993a4.191,4.191,0,0,1-4.19-4.19V9Z" transform="translate(-296.844 -9)" fill="#fff" stroke="#dee2ed" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/>
14
+ </g>
15
+ <g id="img">
16
+ <path id="Tracé_39795" data-name="Tracé 39795" d="M10.6,155.014H30.276a1.6,1.6,0,0,1,1.6,1.6V171a1.6,1.6,0,0,1-1.6,1.6H10.6A1.6,1.6,0,0,1,9,171V156.616A1.6,1.6,0,0,1,10.6,155.014Z" transform="translate(-10187.277 3255.379)" fill="rgba(59,166,236,0.2)" stroke="#3ba6ec" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.5"/>
17
+ <path id="Tracé_39796" data-name="Tracé 39796" d="M180.967,202.142a2.359,2.359,0,1,0-2.346-2.374A2.368,2.368,0,0,0,180.967,202.142Z" transform="translate(-10344.773 3216.001)" fill="#389fe2" stroke="#3ba6ec" stroke-linecap="round" stroke-linejoin="round" stroke-width="1" opacity="0.7"/>
18
+ <path id="Tracé_39797" data-name="Tracé 39797" d="M9,237l6.921-5.176,8.58,8.122,7.378-4.261v6.634a1.6,1.6,0,0,1-1.6,1.6H10.6a1.6,1.6,0,0,1-1.6-1.6Z" transform="translate(-10187.277 3184.06)" fill="rgba(59,166,236,0.7)" stroke="#3ba6ec" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.5"/>
19
+ <line id="Ligne_2078" data-name="Ligne 2078" x2="15.7" transform="translate(-10178.277 3405.475)" fill="none" stroke="#3ba6ec" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.5"/>
20
+ <line id="Ligne_2079" data-name="Ligne 2079" x2="9.38" transform="translate(-10177.813 3399.551)" fill="none" stroke="#3ba6ec" stroke-linecap="round" stroke-linejoin="round" stroke-width="0.5"/>
21
+ </g>
22
+ </g>
23
+ </svg>
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJpY2luZy1zZWN0aW9uLXRhYmxlLmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvcHJpY2luZy1zZWN0aW9uL3ByaWNpbmctc2VjdGlvbi10YWJsZS5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgUHJpY2luZ1NlY3Rpb25UYWJsZUR0byB7XHJcbiAgdGl0bGU6IHN0cmluZztcclxuICBpY29uPzogc3RyaW5nO1xyXG4gIHRoZWFkOiBzdHJpbmdbXTtcclxuICB0Ym9keTogc3RyaW5nW11bXTtcclxufVxyXG4iXX0=
@@ -0,0 +1,15 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ export class PricingSectionComponent {
5
+ constructor() { }
6
+ }
7
+ PricingSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PricingSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
8
+ PricingSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: PricingSectionComponent, selector: "wac-pricing-section", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"wac-pricing-section\">\r\n <div class=\"wac-pricing-section__top\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\"></h2>\r\n <div class=\"wac-pricing-section__top__text\" *ngIf=\"data?.subtitle\" [innerHTML]=\"data?.subtitle\"></div>\r\n </div>\r\n\r\n <div class=\"wac-pricing-section__table\">\r\n <div class=\"wac-pricing-section__table__top\">\r\n <div class=\"wac-pricing-section__table__item\" *ngFor=\"let table of data?.tables\">\r\n <div class=\"wac-pricing-section__table__item__thead\">\r\n <i *ngIf=\"table?.icon\" class=\"{{ table?.icon }}\"></i>\r\n <strong [innerHTML]=\"table.title\"></strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody\">\r\n <div class=\"wac-pricing-section__table__item__tbody__label\">\r\n <strong *ngFor=\"let th of table.thead\">{{ th }}</strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody__line\" *ngFor=\"let line of table.tbody\">\r\n <strong class=\"hide-for-mobile\">{{ line[0] }}</strong>\r\n <span *ngFor=\"let l of line;let i = index;\" [ngClass]=\"{'hide': i === 0}\">\r\n <ng-container *ngIf=\"i > 0\">\r\n <span><strong class=\"show-for-mobile\">{{ line[0] }}<br/></strong>{{l}}</span>\r\n </ng-container>\r\n </span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"wac-pricing-section__table__bottom\" *ngIf=\"data?.furtherInformation\">\r\n <p class=\"italic small\" [innerHTML]=\"data?.furtherInformation\"></p>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: PricingSectionComponent, decorators: [{
10
+ type: Component,
11
+ args: [{ selector: 'wac-pricing-section', template: "<div class=\"wac-pricing-section\">\r\n <div class=\"wac-pricing-section__top\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\"></h2>\r\n <div class=\"wac-pricing-section__top__text\" *ngIf=\"data?.subtitle\" [innerHTML]=\"data?.subtitle\"></div>\r\n </div>\r\n\r\n <div class=\"wac-pricing-section__table\">\r\n <div class=\"wac-pricing-section__table__top\">\r\n <div class=\"wac-pricing-section__table__item\" *ngFor=\"let table of data?.tables\">\r\n <div class=\"wac-pricing-section__table__item__thead\">\r\n <i *ngIf=\"table?.icon\" class=\"{{ table?.icon }}\"></i>\r\n <strong [innerHTML]=\"table.title\"></strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody\">\r\n <div class=\"wac-pricing-section__table__item__tbody__label\">\r\n <strong *ngFor=\"let th of table.thead\">{{ th }}</strong>\r\n </div>\r\n <div class=\"wac-pricing-section__table__item__tbody__line\" *ngFor=\"let line of table.tbody\">\r\n <strong class=\"hide-for-mobile\">{{ line[0] }}</strong>\r\n <span *ngFor=\"let l of line;let i = index;\" [ngClass]=\"{'hide': i === 0}\">\r\n <ng-container *ngIf=\"i > 0\">\r\n <span><strong class=\"show-for-mobile\">{{ line[0] }}<br/></strong>{{l}}</span>\r\n </ng-container>\r\n </span>\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"wac-pricing-section__table__bottom\" *ngIf=\"data?.furtherInformation\">\r\n <p class=\"italic small\" [innerHTML]=\"data?.furtherInformation\"></p>\r\n </div>\r\n </div>\r\n\r\n</div>\r\n" }]
12
+ }], ctorParameters: function () { return []; }, propDecorators: { data: [{
13
+ type: Input
14
+ }] } });
15
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJpY2luZy1zZWN0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvcHJpY2luZy1zZWN0aW9uL3ByaWNpbmctc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL3ByaWNpbmctc2VjdGlvbi9wcmljaW5nLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxLQUFLLEVBQUMsTUFBTSxlQUFlLENBQUM7OztBQU8vQyxNQUFNLE9BQU8sdUJBQXVCO0lBR2xDLGdCQUFlLENBQUM7O29IQUhMLHVCQUF1Qjt3R0FBdkIsdUJBQXVCLHFGQ1BwQyxpcURBa0NBOzJGRDNCYSx1QkFBdUI7a0JBSm5DLFNBQVM7K0JBQ0UscUJBQXFCOzBFQUt0QixJQUFJO3NCQUFaLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSW5wdXR9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQge1ByaWNpbmdTZWN0aW9uRHRvfSBmcm9tIFwiLi9wcmljaW5nLXNlY3Rpb24uZHRvXCI7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ3dhYy1wcmljaW5nLXNlY3Rpb24nLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9wcmljaW5nLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBQcmljaW5nU2VjdGlvbkNvbXBvbmVudCB7XHJcblxyXG4gIEBJbnB1dCgpIGRhdGE6IFByaWNpbmdTZWN0aW9uRHRvO1xyXG4gIGNvbnN0cnVjdG9yKCkge31cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwid2FjLXByaWNpbmctc2VjdGlvblwiPlxyXG4gIDxkaXYgY2xhc3M9XCJ3YWMtcHJpY2luZy1zZWN0aW9uX190b3BcIj5cclxuICAgIDxoMiAqbmdJZj1cImRhdGE/LnRpdGxlXCIgW2lubmVySFRNTF09XCJkYXRhPy50aXRsZVwiPjwvaDI+XHJcbiAgICA8ZGl2IGNsYXNzPVwid2FjLXByaWNpbmctc2VjdGlvbl9fdG9wX190ZXh0XCIgKm5nSWY9XCJkYXRhPy5zdWJ0aXRsZVwiIFtpbm5lckhUTUxdPVwiZGF0YT8uc3VidGl0bGVcIj48L2Rpdj5cclxuICA8L2Rpdj5cclxuXHJcbiAgPGRpdiBjbGFzcz1cIndhYy1wcmljaW5nLXNlY3Rpb25fX3RhYmxlXCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwid2FjLXByaWNpbmctc2VjdGlvbl9fdGFibGVfX3RvcFwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwid2FjLXByaWNpbmctc2VjdGlvbl9fdGFibGVfX2l0ZW1cIiAqbmdGb3I9XCJsZXQgdGFibGUgb2YgZGF0YT8udGFibGVzXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cIndhYy1wcmljaW5nLXNlY3Rpb25fX3RhYmxlX19pdGVtX190aGVhZFwiPlxyXG4gICAgICAgICAgPGkgKm5nSWY9XCJ0YWJsZT8uaWNvblwiIGNsYXNzPVwie3sgdGFibGU/Lmljb24gfX1cIj48L2k+XHJcbiAgICAgICAgICA8c3Ryb25nIFtpbm5lckhUTUxdPVwidGFibGUudGl0bGVcIj48L3N0cm9uZz5cclxuICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwid2FjLXByaWNpbmctc2VjdGlvbl9fdGFibGVfX2l0ZW1fX3Rib2R5XCI+XHJcbiAgICAgICAgICA8ZGl2IGNsYXNzPVwid2FjLXByaWNpbmctc2VjdGlvbl9fdGFibGVfX2l0ZW1fX3Rib2R5X19sYWJlbFwiPlxyXG4gICAgICAgICAgICA8c3Ryb25nICpuZ0Zvcj1cImxldCB0aCBvZiB0YWJsZS50aGVhZFwiPnt7IHRoIH19PC9zdHJvbmc+XHJcbiAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgIDxkaXYgY2xhc3M9XCJ3YWMtcHJpY2luZy1zZWN0aW9uX190YWJsZV9faXRlbV9fdGJvZHlfX2xpbmVcIiAqbmdGb3I9XCJsZXQgbGluZSBvZiB0YWJsZS50Ym9keVwiPlxyXG4gICAgICAgICAgICA8c3Ryb25nIGNsYXNzPVwiaGlkZS1mb3ItbW9iaWxlXCI+e3sgbGluZVswXSB9fTwvc3Ryb25nPlxyXG4gICAgICAgICAgICA8c3BhbiAqbmdGb3I9XCJsZXQgbCBvZiBsaW5lO2xldCBpID0gaW5kZXg7XCIgW25nQ2xhc3NdPVwieydoaWRlJzogaSA9PT0gMH1cIj5cclxuICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiaSA+IDBcIj5cclxuICAgICAgICAgICAgICAgIDxzcGFuPjxzdHJvbmcgY2xhc3M9XCJzaG93LWZvci1tb2JpbGVcIj57eyBsaW5lWzBdIH19PGJyLz48L3N0cm9uZz57e2x9fTwvc3Bhbj5cclxuICAgICAgICAgICAgICA8L25nLWNvbnRhaW5lcj5cclxuICAgICAgICAgICAgPC9zcGFuPlxyXG4gICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbiAgICA8ZGl2IGNsYXNzPVwid2FjLXByaWNpbmctc2VjdGlvbl9fdGFibGVfX2JvdHRvbVwiICpuZ0lmPVwiZGF0YT8uZnVydGhlckluZm9ybWF0aW9uXCI+XHJcbiAgICAgIDxwIGNsYXNzPVwiaXRhbGljIHNtYWxsXCIgW2lubmVySFRNTF09XCJkYXRhPy5mdXJ0aGVySW5mb3JtYXRpb25cIj48L3A+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuXHJcbjwvZGl2PlxyXG4iXX0=
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJpY2luZy1zZWN0aW9uLmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvcHJpY2luZy1zZWN0aW9uL3ByaWNpbmctc2VjdGlvbi5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UHJpY2luZ1NlY3Rpb25UYWJsZUR0b30gZnJvbSBcIi4vcHJpY2luZy1zZWN0aW9uLXRhYmxlLmR0b1wiO1xyXG5cclxuZXhwb3J0IGludGVyZmFjZSBQcmljaW5nU2VjdGlvbkR0byB7XHJcbiAgdGl0bGU/OiBzdHJpbmc7XHJcbiAgc3VidGl0bGU/OiBzdHJpbmc7XHJcbiAgdGFibGVzOiBQcmljaW5nU2VjdGlvblRhYmxlRHRvW107XHJcbiAgZnVydGhlckluZm9ybWF0aW9uPzogc3RyaW5nO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhc3N1cmFuY2Utc2VjdGlvbi1jb250ZW50LmR0by5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvcmVhc3N1cmFuY2Utc2VjdGlvbi9yZWFzc3VyYW5jZS1zZWN0aW9uLWNvbnRlbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIFJlYXNzdXJhbmNlU2VjdGlvbkNvbnRlbnREdG8ge1xyXG4gIHRpdGxlOiBzdHJpbmc7XHJcbiAgdGV4dDogc3RyaW5nO1xyXG59XHJcbiJdfQ==
@@ -0,0 +1,15 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ export class ReassuranceSectionComponent {
5
+ constructor() { }
6
+ }
7
+ ReassuranceSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReassuranceSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
8
+ ReassuranceSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: ReassuranceSectionComponent, selector: "wac-reassurance-section", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"wac-reassurance-section\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\" class=\"wac-reassurance-section__title\"></h2>\r\n <div class=\"wac-reassurance-section__wrapper\">\r\n <div class=\"wac-reassurance-section__wrapper__item\" *ngFor=\"let item of data?.content; let i = index;\">\r\n <strong [innerHTML]=\"item.title\"></strong>\r\n <span [innerHTML]=\"item.text\"></span>\r\n </div>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
9
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ReassuranceSectionComponent, decorators: [{
10
+ type: Component,
11
+ args: [{ selector: 'wac-reassurance-section', template: "<div class=\"wac-reassurance-section\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\" class=\"wac-reassurance-section__title\"></h2>\r\n <div class=\"wac-reassurance-section__wrapper\">\r\n <div class=\"wac-reassurance-section__wrapper__item\" *ngFor=\"let item of data?.content; let i = index;\">\r\n <strong [innerHTML]=\"item.title\"></strong>\r\n <span [innerHTML]=\"item.text\"></span>\r\n </div>\r\n </div>\r\n</div>\r\n" }]
12
+ }], ctorParameters: function () { return []; }, propDecorators: { data: [{
13
+ type: Input
14
+ }] } });
15
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhc3N1cmFuY2Utc2VjdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL3JlYXNzdXJhbmNlLXNlY3Rpb24vcmVhc3N1cmFuY2Utc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL3JlYXNzdXJhbmNlLXNlY3Rpb24vcmVhc3N1cmFuY2Utc2VjdGlvbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUMsU0FBUyxFQUFFLEtBQUssRUFBQyxNQUFNLGVBQWUsQ0FBQzs7O0FBTy9DLE1BQU0sT0FBTywyQkFBMkI7SUFHdEMsZ0JBQWUsQ0FBQzs7d0hBSEwsMkJBQTJCOzRHQUEzQiwyQkFBMkIseUZDUHhDLDJjQVNBOzJGREZhLDJCQUEyQjtrQkFKdkMsU0FBUzsrQkFDRSx5QkFBeUI7MEVBSzFCLElBQUk7c0JBQVosS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7Q29tcG9uZW50LCBJbnB1dH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7UmVhc3N1cmFuY2VTZWN0aW9uRHRvfSBmcm9tIFwiLi9yZWFzc3VyYW5jZS1zZWN0aW9uLmR0b1wiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICd3YWMtcmVhc3N1cmFuY2Utc2VjdGlvbicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL3JlYXNzdXJhbmNlLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBSZWFzc3VyYW5jZVNlY3Rpb25Db21wb25lbnQge1xyXG5cclxuICBASW5wdXQoKSBkYXRhOiBSZWFzc3VyYW5jZVNlY3Rpb25EdG87XHJcbiAgY29uc3RydWN0b3IoKSB7fVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJ3YWMtcmVhc3N1cmFuY2Utc2VjdGlvblwiPlxyXG4gIDxoMiAqbmdJZj1cImRhdGE/LnRpdGxlXCIgW2lubmVySFRNTF09XCJkYXRhPy50aXRsZVwiIGNsYXNzPVwid2FjLXJlYXNzdXJhbmNlLXNlY3Rpb25fX3RpdGxlXCI+PC9oMj5cclxuICA8ZGl2IGNsYXNzPVwid2FjLXJlYXNzdXJhbmNlLXNlY3Rpb25fX3dyYXBwZXJcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJ3YWMtcmVhc3N1cmFuY2Utc2VjdGlvbl9fd3JhcHBlcl9faXRlbVwiICpuZ0Zvcj1cImxldCBpdGVtIG9mIGRhdGE/LmNvbnRlbnQ7IGxldCBpID0gaW5kZXg7XCI+XHJcbiAgICAgIDxzdHJvbmcgW2lubmVySFRNTF09XCJpdGVtLnRpdGxlXCI+PC9zdHJvbmc+XHJcbiAgICAgIDxzcGFuIFtpbm5lckhUTUxdPVwiaXRlbS50ZXh0XCI+PC9zcGFuPlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmVhc3N1cmFuY2Utc2VjdGlvbi5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL3JlYXNzdXJhbmNlLXNlY3Rpb24vcmVhc3N1cmFuY2Utc2VjdGlvbi5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7UmVhc3N1cmFuY2VTZWN0aW9uQ29udGVudER0b30gZnJvbSBcIi4vcmVhc3N1cmFuY2Utc2VjdGlvbi1jb250ZW50LmR0b1wiO1xyXG5cclxuZXhwb3J0IGludGVyZmFjZSBSZWFzc3VyYW5jZVNlY3Rpb25EdG8ge1xyXG4gIHRpdGxlPzogc3RyaW5nO1xyXG4gIGNvbnRlbnQ6IEFycmF5PFJlYXNzdXJhbmNlU2VjdGlvbkNvbnRlbnREdG8+O1xyXG59XHJcbiJdfQ==