@wizishop/angular-components 15.1.147-beta.0 → 15.1.149
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.
- package/angular-components.scss +352 -71
- package/assets/images/upload/upload_images.svg +23 -0
- package/esm2020/lib/components/faq-section/faq-section-content.dto.mjs +2 -0
- package/esm2020/lib/components/faq-section/faq-section.component.mjs +15 -0
- package/esm2020/lib/components/faq-section/faq-section.dto.mjs +2 -0
- package/esm2020/lib/components/image-text-section/image-text-section.component.mjs +1 -4
- package/esm2020/lib/components/pricing-section/pricing-section-table.dto.mjs +2 -0
- package/esm2020/lib/components/pricing-section/pricing-section.component.mjs +15 -0
- package/esm2020/lib/components/pricing-section/pricing-section.dto.mjs +2 -0
- package/esm2020/lib/components/reassurance-section/reassurance-section-content.dto.mjs +2 -0
- package/esm2020/lib/components/reassurance-section/reassurance-section.component.mjs +15 -0
- package/esm2020/lib/components/reassurance-section/reassurance-section.dto.mjs +2 -0
- package/esm2020/lib/components/shared-components.module.mjs +16 -7
- package/esm2020/lib/components/table/table.component.mjs +4 -10
- package/esm2020/lib/components/table/table.module.mjs +4 -5
- package/esm2020/lib/components/tag/tag.component.mjs +6 -3
- package/esm2020/lib/components/upload/upload.component.mjs +22 -3
- package/esm2020/public-api.mjs +10 -2
- package/fesm2015/wizishop-angular-components.mjs +80 -63
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +80 -63
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/faq-section/faq-section-content.dto.d.ts +4 -0
- package/lib/components/faq-section/faq-section.component.d.ts +8 -0
- package/lib/components/faq-section/faq-section.dto.d.ts +5 -0
- package/lib/components/image-text-section/image-text-section.component.d.ts +1 -3
- package/lib/components/pricing-section/pricing-section-table.dto.d.ts +6 -0
- package/lib/components/pricing-section/pricing-section.component.d.ts +8 -0
- package/lib/components/pricing-section/pricing-section.dto.d.ts +7 -0
- package/lib/components/reassurance-section/reassurance-section-content.dto.d.ts +4 -0
- package/lib/components/reassurance-section/reassurance-section.component.d.ts +8 -0
- package/lib/components/reassurance-section/reassurance-section.dto.d.ts +5 -0
- package/lib/components/shared-components.module.d.ts +53 -51
- package/lib/components/table/table.component.d.ts +1 -3
- package/lib/components/table/table.module.d.ts +7 -8
- package/lib/components/tag/tag.component.d.ts +2 -1
- package/lib/components/upload/upload.component.d.ts +6 -1
- package/package.json +1 -1
- package/public-api.d.ts +9 -1
- package/wizishop-angular-components-15.1.149.tgz +0 -0
- package/esm2020/lib/components/table/directives/responsive-table.directive.mjs +0 -41
- package/lib/components/table/directives/responsive-table.directive.d.ts +0 -13
- package/wizishop-angular-components-15.1.147-beta.0.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -4538,6 +4538,40 @@ wac-calendar {
|
|
|
4538
4538
|
}
|
|
4539
4539
|
}
|
|
4540
4540
|
}
|
|
4541
|
+
@mixin flex-col-start {
|
|
4542
|
+
display: flex;
|
|
4543
|
+
flex-direction: column;
|
|
4544
|
+
justify-content: flex-start;
|
|
4545
|
+
align-items: flex-start;
|
|
4546
|
+
}
|
|
4547
|
+
|
|
4548
|
+
.wac-faq-section {
|
|
4549
|
+
width: 100%;
|
|
4550
|
+
@include flex-col-start;
|
|
4551
|
+
gap: 32px;
|
|
4552
|
+
&__wrapper {
|
|
4553
|
+
width: 100%;
|
|
4554
|
+
display: flex;
|
|
4555
|
+
flex-wrap: wrap;
|
|
4556
|
+
justify-content: flex-start;
|
|
4557
|
+
align-items: stretch;
|
|
4558
|
+
gap: 32px;
|
|
4559
|
+
&__item {
|
|
4560
|
+
width: calc(50% - 16px);
|
|
4561
|
+
@include flex-col-start;
|
|
4562
|
+
gap: 16px;
|
|
4563
|
+
@include media('<tablet') {
|
|
4564
|
+
width: 100%;
|
|
4565
|
+
}
|
|
4566
|
+
strong {
|
|
4567
|
+
font-weight: 700;
|
|
4568
|
+
}
|
|
4569
|
+
p {
|
|
4570
|
+
color: $second-color;
|
|
4571
|
+
}
|
|
4572
|
+
}
|
|
4573
|
+
}
|
|
4574
|
+
}
|
|
4541
4575
|
.wac-filters {
|
|
4542
4576
|
width: 100%;
|
|
4543
4577
|
&__wrapper {
|
|
@@ -6359,6 +6393,199 @@ wac-optional-disable-container {
|
|
|
6359
6393
|
.wac-free .ps-content > * {
|
|
6360
6394
|
padding-right: 15px;
|
|
6361
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
|
+
}
|
|
6362
6589
|
.wac-progressBarContent {
|
|
6363
6590
|
position: relative;
|
|
6364
6591
|
width: 100%;
|
|
@@ -6689,6 +6916,43 @@ wac-optional-disable-container {
|
|
|
6689
6916
|
}
|
|
6690
6917
|
}
|
|
6691
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
|
+
}
|
|
6692
6956
|
.wac-row {
|
|
6693
6957
|
display: flex;
|
|
6694
6958
|
justify-content: space-between;
|
|
@@ -7881,13 +8145,11 @@ wac-optional-disable-container {
|
|
|
7881
8145
|
}
|
|
7882
8146
|
.wac-table {
|
|
7883
8147
|
width: 100%;
|
|
7884
|
-
overflow-x: auto; // Enable horizontal scroll on small screens
|
|
7885
8148
|
|
|
7886
8149
|
&__head {
|
|
7887
8150
|
@include flexbox();
|
|
7888
8151
|
@include flex-flow(row nowrap);
|
|
7889
8152
|
width: 100%;
|
|
7890
|
-
min-width: fit-content; // Prevent header from shrinking too much
|
|
7891
8153
|
border-top: 1px solid $wac-border-form;
|
|
7892
8154
|
border-bottom: 1px solid $wac-border-form;
|
|
7893
8155
|
background-color: $wac-gray-background;
|
|
@@ -7895,26 +8157,12 @@ wac-optional-disable-container {
|
|
|
7895
8157
|
&__cell {
|
|
7896
8158
|
@include flexbox();
|
|
7897
8159
|
@include flex(1);
|
|
7898
|
-
min-width: 120px; // Minimum width for each cell
|
|
7899
8160
|
padding: 15px 20px;
|
|
7900
8161
|
font-size: 14px;
|
|
7901
8162
|
line-height: 20px;
|
|
7902
8163
|
color: $wac-main-text;
|
|
7903
8164
|
font-weight: 600;
|
|
7904
8165
|
|
|
7905
|
-
// Responsive adjustments
|
|
7906
|
-
@media (max-width: 768px) {
|
|
7907
|
-
padding: 10px 15px;
|
|
7908
|
-
font-size: 13px;
|
|
7909
|
-
min-width: 100px;
|
|
7910
|
-
}
|
|
7911
|
-
|
|
7912
|
-
@media (max-width: 480px) {
|
|
7913
|
-
padding: 8px 10px;
|
|
7914
|
-
font-size: 12px;
|
|
7915
|
-
min-width: 80px;
|
|
7916
|
-
}
|
|
7917
|
-
|
|
7918
8166
|
&--checkbox {
|
|
7919
8167
|
@include flex(none);
|
|
7920
8168
|
@include align-items(center);
|
|
@@ -7992,7 +8240,6 @@ wac-optional-disable-container {
|
|
|
7992
8240
|
&__body {
|
|
7993
8241
|
width: 100%;
|
|
7994
8242
|
margin-top: -10px;
|
|
7995
|
-
overflow-x: auto; // Enable horizontal scroll for body content
|
|
7996
8243
|
|
|
7997
8244
|
&__loader {
|
|
7998
8245
|
position: relative;
|
|
@@ -8003,7 +8250,6 @@ wac-optional-disable-container {
|
|
|
8003
8250
|
@include flexbox();
|
|
8004
8251
|
@include flex-flow(row nowrap);
|
|
8005
8252
|
width: 100%;
|
|
8006
|
-
min-width: fit-content; // Prevent lines from shrinking too much
|
|
8007
8253
|
border-bottom: 1px solid $wac-textarea-border-color;
|
|
8008
8254
|
|
|
8009
8255
|
&:first-child:last-child {
|
|
@@ -8013,27 +8259,11 @@ wac-optional-disable-container {
|
|
|
8013
8259
|
&__cell {
|
|
8014
8260
|
@include flexbox();
|
|
8015
8261
|
@include flex(1);
|
|
8016
|
-
min-width: 120px; // Minimum width for each cell
|
|
8017
8262
|
padding: 20px 20px 20px 20px;
|
|
8018
8263
|
font-size: 14px;
|
|
8019
8264
|
line-height: 25px;
|
|
8020
8265
|
color: $wac-secondary-color;
|
|
8021
8266
|
|
|
8022
|
-
// Responsive adjustments
|
|
8023
|
-
@media (max-width: 768px) {
|
|
8024
|
-
padding: 15px 15px;
|
|
8025
|
-
font-size: 13px;
|
|
8026
|
-
line-height: 22px;
|
|
8027
|
-
min-width: 100px;
|
|
8028
|
-
}
|
|
8029
|
-
|
|
8030
|
-
@media (max-width: 480px) {
|
|
8031
|
-
padding: 12px 10px;
|
|
8032
|
-
font-size: 12px;
|
|
8033
|
-
line-height: 20px;
|
|
8034
|
-
min-width: 80px;
|
|
8035
|
-
}
|
|
8036
|
-
|
|
8037
8267
|
&--checkbox {
|
|
8038
8268
|
@include flexbox();
|
|
8039
8269
|
@include flex(none);
|
|
@@ -8058,39 +8288,6 @@ wac-optional-disable-container {
|
|
|
8058
8288
|
}
|
|
8059
8289
|
}
|
|
8060
8290
|
}
|
|
8061
|
-
|
|
8062
|
-
// Compact mode for very small screens
|
|
8063
|
-
&--compact {
|
|
8064
|
-
.wac-table__head__cell,
|
|
8065
|
-
.wac-table__body__line__cell {
|
|
8066
|
-
padding: 8px 6px;
|
|
8067
|
-
font-size: 11px;
|
|
8068
|
-
min-width: 60px;
|
|
8069
|
-
|
|
8070
|
-
&--checkbox {
|
|
8071
|
-
min-width: 50px;
|
|
8072
|
-
padding: 4px 6px;
|
|
8073
|
-
}
|
|
8074
|
-
}
|
|
8075
|
-
|
|
8076
|
-
.wac-table__head__cell__search {
|
|
8077
|
-
padding-right: 15px;
|
|
8078
|
-
|
|
8079
|
-
&--idle,
|
|
8080
|
-
&--up,
|
|
8081
|
-
&--down {
|
|
8082
|
-
background-size: 10px 10px;
|
|
8083
|
-
}
|
|
8084
|
-
}
|
|
8085
|
-
}
|
|
8086
|
-
|
|
8087
|
-
// Additional responsive utilities
|
|
8088
|
-
@media (max-width: 600px) {
|
|
8089
|
-
.wac-table__search {
|
|
8090
|
-
margin-top: 5px;
|
|
8091
|
-
height: auto;
|
|
8092
|
-
}
|
|
8093
|
-
}
|
|
8094
8291
|
}
|
|
8095
8292
|
.wac-tabs {
|
|
8096
8293
|
position: relative;
|
|
@@ -8330,11 +8527,44 @@ wac-optional-disable-container {
|
|
|
8330
8527
|
font-size: rem(14);
|
|
8331
8528
|
line-height: rem(16);
|
|
8332
8529
|
border-radius: rem(3);
|
|
8333
|
-
padding: rem(
|
|
8530
|
+
padding: rem(10);
|
|
8334
8531
|
font-weight: 600;
|
|
8335
8532
|
transition: 0.3s ease;
|
|
8336
8533
|
cursor: default;
|
|
8337
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
|
+
|
|
8338
8568
|
&.big {
|
|
8339
8569
|
height: 38px;
|
|
8340
8570
|
padding: rem(11) rem(15);
|
|
@@ -8380,7 +8610,7 @@ wac-optional-disable-container {
|
|
|
8380
8610
|
width: 2px;
|
|
8381
8611
|
background-color: $wac-border-form;
|
|
8382
8612
|
}
|
|
8383
|
-
|
|
8613
|
+
|
|
8384
8614
|
&:before, &:after {
|
|
8385
8615
|
display: block;
|
|
8386
8616
|
position: absolute;
|
|
@@ -8390,11 +8620,11 @@ wac-optional-disable-container {
|
|
|
8390
8620
|
background-color: $wac-border-form;
|
|
8391
8621
|
content: '';
|
|
8392
8622
|
}
|
|
8393
|
-
|
|
8623
|
+
|
|
8394
8624
|
&:before {
|
|
8395
8625
|
left: 4px;
|
|
8396
8626
|
}
|
|
8397
|
-
|
|
8627
|
+
|
|
8398
8628
|
&:after {
|
|
8399
8629
|
left: 8px;
|
|
8400
8630
|
}
|
|
@@ -9051,6 +9281,57 @@ span.wac-tooltip {
|
|
|
9051
9281
|
}
|
|
9052
9282
|
}
|
|
9053
9283
|
}
|
|
9284
|
+
&.block {
|
|
9285
|
+
display: flex;
|
|
9286
|
+
justify-content: center;
|
|
9287
|
+
align-items: center;
|
|
9288
|
+
padding: rem(60) rem(30);
|
|
9289
|
+
border-radius: rem(3);
|
|
9290
|
+
border: 1px solid #dee2ed;
|
|
9291
|
+
cursor: pointer;
|
|
9292
|
+
|
|
9293
|
+
&:hover {
|
|
9294
|
+
.wac-upload__wrapper button.block {
|
|
9295
|
+
background-color: #3BA6EC;
|
|
9296
|
+
color: $wac-white;
|
|
9297
|
+
i {
|
|
9298
|
+
color: $wac-white;
|
|
9299
|
+
}
|
|
9300
|
+
}
|
|
9301
|
+
}
|
|
9302
|
+
|
|
9303
|
+
.wac-upload {
|
|
9304
|
+
&__wrapper {
|
|
9305
|
+
width: 100%;
|
|
9306
|
+
height: 100%;
|
|
9307
|
+
padding: 0 rem(40);
|
|
9308
|
+
display: flex;
|
|
9309
|
+
flex-direction: column;
|
|
9310
|
+
align-items: center;
|
|
9311
|
+
gap: rem(15);
|
|
9312
|
+
|
|
9313
|
+
button {
|
|
9314
|
+
&.block {
|
|
9315
|
+
width: 100%;
|
|
9316
|
+
height: 100%;
|
|
9317
|
+
display: flex;
|
|
9318
|
+
align-items: center;
|
|
9319
|
+
padding: rem(11) rem(15);
|
|
9320
|
+
background-color: #52AECD0D;
|
|
9321
|
+
border: 1px solid #3BA6EC;
|
|
9322
|
+
color: $wac-main-text;
|
|
9323
|
+
font-weight: 400;
|
|
9324
|
+
font-size: rem(14);
|
|
9325
|
+
margin: 0 auto;
|
|
9326
|
+
|
|
9327
|
+
i {
|
|
9328
|
+
color: #3BA6EC;
|
|
9329
|
+
}
|
|
9330
|
+
}
|
|
9331
|
+
}
|
|
9332
|
+
}
|
|
9333
|
+
}
|
|
9334
|
+
}
|
|
9054
9335
|
&.portrait {
|
|
9055
9336
|
.wac-upload {
|
|
9056
9337
|
&__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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmFxLXNlY3Rpb24tY29udGVudC5kdG8uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2ZhcS1zZWN0aW9uL2ZhcS1zZWN0aW9uLWNvbnRlbnQuZHRvLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgaW50ZXJmYWNlIEZhcVNlY3Rpb25Db250ZW50RHRvIHtcclxuICBxdWVzdGlvbjogc3RyaW5nO1xyXG4gIGFuc3dlcjogc3RyaW5nO1xyXG59XHJcbiJdfQ==
|
|
@@ -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 FaqSectionComponent {
|
|
5
|
+
constructor() { }
|
|
6
|
+
}
|
|
7
|
+
FaqSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: FaqSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
8
|
+
FaqSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: FaqSectionComponent, selector: "wac-faq-section", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"wac-faq-section\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\"></h2>\r\n <div class=\"wac-faq-section__wrapper\">\r\n <div class=\"wac-faq-section__wrapper__item\" *ngFor=\"let item of data?.content; let i = index;\">\r\n <strong [innerHTML]=\"item.question\"></strong>\r\n <p [innerHTML]=\"item.answer\"></p>\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: FaqSectionComponent, decorators: [{
|
|
10
|
+
type: Component,
|
|
11
|
+
args: [{ selector: 'wac-faq-section', template: "<div class=\"wac-faq-section\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data?.title\"></h2>\r\n <div class=\"wac-faq-section__wrapper\">\r\n <div class=\"wac-faq-section__wrapper__item\" *ngFor=\"let item of data?.content; let i = index;\">\r\n <strong [innerHTML]=\"item.question\"></strong>\r\n <p [innerHTML]=\"item.answer\"></p>\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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmFxLXNlY3Rpb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9mYXEtc2VjdGlvbi9mYXEtc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2ZhcS1zZWN0aW9uL2ZhcS1zZWN0aW9uLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBQyxTQUFTLEVBQUUsS0FBSyxFQUFDLE1BQU0sZUFBZSxDQUFDOzs7QUFPL0MsTUFBTSxPQUFPLG1CQUFtQjtJQUc5QixnQkFBZSxDQUFDOztnSEFITCxtQkFBbUI7b0dBQW5CLG1CQUFtQixpRkNQaEMseVlBU0E7MkZERmEsbUJBQW1CO2tCQUovQixTQUFTOytCQUNFLGlCQUFpQjswRUFLbEIsSUFBSTtzQkFBWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtDb21wb25lbnQsIElucHV0fSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHtGYXFTZWN0aW9uRHRvfSBmcm9tIFwiLi9mYXEtc2VjdGlvbi5kdG9cIjtcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnd2FjLWZhcS1zZWN0aW9uJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vZmFxLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwnXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBGYXFTZWN0aW9uQ29tcG9uZW50IHtcclxuXHJcbiAgQElucHV0KCkgZGF0YTogRmFxU2VjdGlvbkR0bztcclxuICBjb25zdHJ1Y3RvcigpIHt9XHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cIndhYy1mYXEtc2VjdGlvblwiPlxyXG4gIDxoMiAqbmdJZj1cImRhdGE/LnRpdGxlXCIgW2lubmVySFRNTF09XCJkYXRhPy50aXRsZVwiPjwvaDI+XHJcbiAgPGRpdiBjbGFzcz1cIndhYy1mYXEtc2VjdGlvbl9fd3JhcHBlclwiPlxyXG4gICAgPGRpdiBjbGFzcz1cIndhYy1mYXEtc2VjdGlvbl9fd3JhcHBlcl9faXRlbVwiICpuZ0Zvcj1cImxldCBpdGVtIG9mIGRhdGE/LmNvbnRlbnQ7IGxldCBpID0gaW5kZXg7XCI+XHJcbiAgICAgIDxzdHJvbmcgW2lubmVySFRNTF09XCJpdGVtLnF1ZXN0aW9uXCI+PC9zdHJvbmc+XHJcbiAgICAgIDxwIFtpbm5lckhUTUxdPVwiaXRlbS5hbnN3ZXJcIj48L3A+XHJcbiAgICA8L2Rpdj5cclxuICA8L2Rpdj5cclxuPC9kaXY+XHJcbiJdfQ==
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmFxLXNlY3Rpb24uZHRvLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvYW5ndWxhci1jb21wb25lbnRzL3NyYy9saWIvY29tcG9uZW50cy9mYXEtc2VjdGlvbi9mYXEtc2VjdGlvbi5kdG8udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7RmFxU2VjdGlvbkNvbnRlbnREdG99IGZyb20gXCIuL2ZhcS1zZWN0aW9uLWNvbnRlbnQuZHRvXCI7XHJcblxyXG5leHBvcnQgaW50ZXJmYWNlIEZhcVNlY3Rpb25EdG8ge1xyXG4gIHRpdGxlPzogc3RyaW5nO1xyXG4gIGNvbnRlbnQ6IEFycmF5PEZhcVNlY3Rpb25Db250ZW50RHRvPjtcclxufVxyXG4iXX0=
|
|
@@ -23,9 +23,6 @@ export class ImageTextSectionComponent {
|
|
|
23
23
|
constructor() {
|
|
24
24
|
this.textIsArray = false;
|
|
25
25
|
}
|
|
26
|
-
ngOnInit() {
|
|
27
|
-
console.log(this.data.text.length);
|
|
28
|
-
}
|
|
29
26
|
}
|
|
30
27
|
ImageTextSectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.1.5", ngImport: i0, type: ImageTextSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
31
28
|
ImageTextSectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.1.5", type: ImageTextSectionComponent, selector: "wac-image-text-section", inputs: { data: "data" }, ngImport: i0, template: "<div class=\"wac-image-text-section\" [ngClass]=\"{'wac-image-text-section--reverse': data?.reverse}\">\r\n <div class=\"wac-image-text-section__left\">\r\n <div class=\"wac-image-text-section__left__text\">\r\n <h2 *ngIf=\"data?.title\" [innerHTML]=\"data.title\"></h2>\r\n <ng-container *ngIf=\"data?.text && textIsArray\">\r\n <div class=\"wac-image-text-section__left__text__paragraph\">\r\n <p *ngFor=\"let text of data.text; let i = index\" [innerHTML]=\"text\"></p>\r\n </div>\r\n </ng-container>\r\n <p *ngIf=\"data?.text && !textIsArray\" [innerHTML]=\"data?.text\"></p>\r\n <ng-container *ngIf=\"data?.listItems\">\r\n <ul>\r\n <li *ngFor=\"let list of data?.listItems\"><i class=\"fa-solid fa-check\"></i><span [innerHTML]=\"list\"></span></li>\r\n </ul>\r\n </ng-container>\r\n </div>\r\n <ng-container *ngIf=\"data?.buttonLink && data?.buttonText\">\r\n <div class=\"wac-image-text-section__left__btn\">\r\n <wac-button [label]=\"data?.buttonText\" routerLink=\"{{data?.buttonLink}}\" [target]=\"data?.buttonTarget\"></wac-button>\r\n </div>\r\n </ng-container>\r\n </div>\r\n <div class=\"wac-image-text-section__right\">\r\n <div class=\"gabarit-img-main\">\r\n <img [src]=\"data?.imageSrc\" [alt]=\"data?.imageAlt\" />\r\n </div>\r\n </div>\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"] }, { kind: "directive", type: i2.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: i3.ButtonComponent, selector: "wac-button", inputs: ["extraClasses", "label", "icon", "isLoadingSvg", "iconNext", "textcolor", "colorIcon", "widthAuto", "contentHorizontalPosition", "iconFontSize", "hasLoader", "disabled", "whiteSpaceNowrap", "opacity", "animation", "animationRight", "animationText", "confirmDelete", "confirmDeleteText", "coin", "tooltip", "tooltipWidth", "borderColor", "noPadding", "tooltipPosition", "tooltipOneline", "confirmDeletePosition", "isLoading"], outputs: ["click", "isLoadingChange"] }] });
|
|
@@ -35,4 +32,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.1.5", ngImpor
|
|
|
35
32
|
}], ctorParameters: function () { return []; }, propDecorators: { data: [{
|
|
36
33
|
type: Input
|
|
37
34
|
}] } });
|
|
38
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
35
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW1hZ2UtdGV4dC1zZWN0aW9uLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2FuZ3VsYXItY29tcG9uZW50cy9zcmMvbGliL2NvbXBvbmVudHMvaW1hZ2UtdGV4dC1zZWN0aW9uL2ltYWdlLXRleHQtc2VjdGlvbi5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9hbmd1bGFyLWNvbXBvbmVudHMvc3JjL2xpYi9jb21wb25lbnRzL2ltYWdlLXRleHQtc2VjdGlvbi9pbWFnZS10ZXh0LXNlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFDLFNBQVMsRUFBRSxLQUFLLEVBQVMsTUFBTSxlQUFlLENBQUM7Ozs7O0FBT3ZELE1BQU0sT0FBTyx5QkFBeUI7SUFJcEMsSUFDSSxJQUFJLENBQUMsS0FBMEI7UUFDakMsSUFBSSxDQUFDLEtBQUssR0FBRztZQUNYLFlBQVksRUFBRSxPQUFPO1lBQ3JCLE9BQU8sRUFBRSxLQUFLO1lBQ2QsR0FBRyxLQUFLO1NBQ1QsQ0FBQztRQUNGLElBQUksT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDLElBQUksS0FBSyxRQUFRLEVBQUU7WUFDdkMsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7U0FDMUI7YUFBTTtZQUNMLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDO1NBQ3pCO0lBQ0gsQ0FBQztJQUVELElBQUksSUFBSTtRQUNOLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQztJQUNwQixDQUFDO0lBQ0Q7UUFsQk8sZ0JBQVcsR0FBRyxLQUFLLENBQUM7SUFrQlosQ0FBQzs7c0hBckJMLHlCQUF5QjswR0FBekIseUJBQXlCLHdGQ1B0QyxrM0NBNEJBOzJGRHJCYSx5QkFBeUI7a0JBSnJDLFNBQVM7K0JBQ0Usd0JBQXdCOzBFQVE5QixJQUFJO3NCQURQLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge0NvbXBvbmVudCwgSW5wdXQsIE9uSW5pdH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7SW1hZ2VUZXh0U2VjdGlvbkR0b30gZnJvbSBcIi4vaW1hZ2UtdGV4dC1zZWN0aW9uLmR0b1wiO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICd3YWMtaW1hZ2UtdGV4dC1zZWN0aW9uJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vaW1hZ2UtdGV4dC1zZWN0aW9uLmNvbXBvbmVudC5odG1sJ1xyXG59KVxyXG5leHBvcnQgY2xhc3MgSW1hZ2VUZXh0U2VjdGlvbkNvbXBvbmVudCB7XHJcblxyXG4gIHByaXZhdGUgX2RhdGEhOiBJbWFnZVRleHRTZWN0aW9uRHRvO1xyXG4gIHB1YmxpYyB0ZXh0SXNBcnJheSA9IGZhbHNlO1xyXG4gIEBJbnB1dCgpXHJcbiAgc2V0IGRhdGEodmFsdWU6IEltYWdlVGV4dFNlY3Rpb25EdG8pIHtcclxuICAgIHRoaXMuX2RhdGEgPSB7XHJcbiAgICAgIGJ1dHRvblRhcmdldDogJ19zZWxmJyxcclxuICAgICAgcmV2ZXJzZTogZmFsc2UsXHJcbiAgICAgIC4uLnZhbHVlLFxyXG4gICAgfTtcclxuICAgIGlmICh0eXBlb2YgdGhpcy5fZGF0YS50ZXh0ID09PSAnc3RyaW5nJykge1xyXG4gICAgICB0aGlzLnRleHRJc0FycmF5ID0gZmFsc2U7XHJcbiAgICB9IGVsc2Uge1xyXG4gICAgICB0aGlzLnRleHRJc0FycmF5ID0gdHJ1ZTtcclxuICAgIH1cclxuICB9XHJcblxyXG4gIGdldCBkYXRhKCk6IEltYWdlVGV4dFNlY3Rpb25EdG8ge1xyXG4gICAgcmV0dXJuIHRoaXMuX2RhdGE7XHJcbiAgfVxyXG4gIGNvbnN0cnVjdG9yKCkge31cclxufVxyXG4iLCI8ZGl2IGNsYXNzPVwid2FjLWltYWdlLXRleHQtc2VjdGlvblwiIFtuZ0NsYXNzXT1cInsnd2FjLWltYWdlLXRleHQtc2VjdGlvbi0tcmV2ZXJzZSc6IGRhdGE/LnJldmVyc2V9XCI+XHJcbiAgPGRpdiBjbGFzcz1cIndhYy1pbWFnZS10ZXh0LXNlY3Rpb25fX2xlZnRcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJ3YWMtaW1hZ2UtdGV4dC1zZWN0aW9uX19sZWZ0X190ZXh0XCI+XHJcbiAgICAgIDxoMiAqbmdJZj1cImRhdGE/LnRpdGxlXCIgW2lubmVySFRNTF09XCJkYXRhLnRpdGxlXCI+PC9oMj5cclxuICAgICAgPG5nLWNvbnRhaW5lciAqbmdJZj1cImRhdGE/LnRleHQgJiYgdGV4dElzQXJyYXlcIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwid2FjLWltYWdlLXRleHQtc2VjdGlvbl9fbGVmdF9fdGV4dF9fcGFyYWdyYXBoXCI+XHJcbiAgICAgICAgICA8cCAqbmdGb3I9XCJsZXQgdGV4dCBvZiBkYXRhLnRleHQ7IGxldCBpID0gaW5kZXhcIiBbaW5uZXJIVE1MXT1cInRleHRcIj48L3A+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgIDwvbmctY29udGFpbmVyPlxyXG4gICAgICA8cCAqbmdJZj1cImRhdGE/LnRleHQgJiYgIXRleHRJc0FycmF5XCIgW2lubmVySFRNTF09XCJkYXRhPy50ZXh0XCI+PC9wPlxyXG4gICAgICA8bmctY29udGFpbmVyICpuZ0lmPVwiZGF0YT8ubGlzdEl0ZW1zXCI+XHJcbiAgICAgICAgPHVsPlxyXG4gICAgICAgICAgPGxpICpuZ0Zvcj1cImxldCBsaXN0IG9mIGRhdGE/Lmxpc3RJdGVtc1wiPjxpIGNsYXNzPVwiZmEtc29saWQgZmEtY2hlY2tcIj48L2k+PHNwYW4gW2lubmVySFRNTF09XCJsaXN0XCI+PC9zcGFuPjwvbGk+XHJcbiAgICAgICAgPC91bD5cclxuICAgICAgPC9uZy1jb250YWluZXI+XHJcbiAgICA8L2Rpdj5cclxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJkYXRhPy5idXR0b25MaW5rICYmIGRhdGE/LmJ1dHRvblRleHRcIj5cclxuICAgICAgPGRpdiBjbGFzcz1cIndhYy1pbWFnZS10ZXh0LXNlY3Rpb25fX2xlZnRfX2J0blwiPlxyXG4gICAgICAgICAgPHdhYy1idXR0b24gW2xhYmVsXT1cImRhdGE/LmJ1dHRvblRleHRcIiByb3V0ZXJMaW5rPVwie3tkYXRhPy5idXR0b25MaW5rfX1cIiBbdGFyZ2V0XT1cImRhdGE/LmJ1dHRvblRhcmdldFwiPjwvd2FjLWJ1dHRvbj5cclxuICAgICAgPC9kaXY+XHJcbiAgICA8L25nLWNvbnRhaW5lcj5cclxuICA8L2Rpdj5cclxuICA8ZGl2IGNsYXNzPVwid2FjLWltYWdlLXRleHQtc2VjdGlvbl9fcmlnaHRcIj5cclxuICAgIDxkaXYgY2xhc3M9XCJnYWJhcml0LWltZy1tYWluXCI+XHJcbiAgICAgIDxpbWcgW3NyY109XCJkYXRhPy5pbWFnZVNyY1wiIFthbHRdPVwiZGF0YT8uaW1hZ2VBbHRcIiAvPlxyXG4gICAgPC9kaXY+XHJcbiAgPC9kaXY+XHJcbjwvZGl2PlxyXG4iXX0=
|
|
@@ -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==
|