@jooler/jooler-websites-shared 0.0.147 → 0.0.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.
@@ -1004,6 +1004,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
1004
1004
  type: Input
1005
1005
  }] } });
1006
1006
 
1007
+ class FeatureSectionSevenComponent {
1008
+ constructor() { }
1009
+ ngOnInit() {
1010
+ let i = 0;
1011
+ this.selectedImage = this.sectionContent.paragraphs[0].imagePath;
1012
+ i++;
1013
+ for (let paragraph of this.sectionContent.paragraphs) {
1014
+ paragraph.isClicked = false;
1015
+ }
1016
+ this.sectionContent.paragraphs[0].isClicked = true;
1017
+ }
1018
+ onChangeImage(imagePath, paragraphIndex) {
1019
+ for (let paragraph of this.sectionContent.paragraphs) {
1020
+ paragraph.isClicked = false;
1021
+ }
1022
+ this.selectedImage = imagePath;
1023
+ this.sectionContent.paragraphs[paragraphIndex].isClicked = true;
1024
+ }
1025
+ }
1026
+ FeatureSectionSevenComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FeatureSectionSevenComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1027
+ FeatureSectionSevenComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FeatureSectionSevenComponent, selector: "feature-section-seven", inputs: { sectionContent: "sectionContent" }, ngImport: i0, template: "<div class=\"section\">\n <div class=\"section-title\">\n <section-title [sectionTitle]=\"sectionContent.sectionTitle\">\n </section-title>\n </div>\n <div class=\"section-content\" [ngClass]=\"{'image-text-sort': sectionContent.paragraphProperties.onRightSide , 'text-image-sort': !sectionContent.paragraphProperties.onRightSide ,'paragraph-with-card':sectionContent.paragraphProperties.withCard }\">\n <div class=\"text-side\">\n <div class=\"preview-image\">\n <img [src]=\"selectedImage\" alt=\"\">\n </div>\n <div class=\"paragraph-items\">\n <p *ngFor=\"let paragraph of sectionContent.paragraphs; let j = index\" class=\"paragraph\" (click)=\"onChangeImage(paragraph.imagePath ,j)\" [ngClass]=\"{'selected-paragraph':paragraph.isClicked, 'one-paragraph':sectionContent.paragraphs.length == 1}\">\n <span class=\"paragraph-icon\">\n <fa-icon [icon]=\"paragraph.iconName\"></fa-icon>\n </span>\n <span class=\"paragraph-headline\">\n <h2 class=\"paragraph-title\">\n {{paragraph.title}}\n </h2>\n <span class=\"paragraph-description\">\n {{paragraph.description}}\n </span>\n </span>\n </p>\n </div>\n </div>\n <div class=\"image-buttons-side\">\n <img [src]=\"selectedImage\" alt=\"\">\n </div>\n </div>\n</div>", styles: ["html{font-size:62.5%;scroll-behavior:smooth}@media only screen and (max-width: 112.5em){html{font-size:56.25%}}@media only screen and (max-width: 75em){html{font-size:56.25%}}@media only screen and (max-width: 56.25em){html{font-size:50%}}@media only screen and (min-width: 112.5em){html{font-size:75%}}app-root{font-family:sans-serif;font-size:1.6rem}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.section{padding:2rem}.section .section-content{display:flex;flex-direction:row;column-gap:3%;margin:2rem auto;width:100%}.section .section-content .text-side{display:grid;row-gap:1rem;width:50%;padding:2rem 0rem}.section .section-content .text-side .preview-image{display:none}.section .section-content .text-side .paragraph-items{display:flex;flex-direction:column;row-gap:1rem}.section .section-content .text-side .paragraph{box-sizing:border-box;display:flex;flex-direction:row;margin:0rem;align-content:center;align-self:start;cursor:pointer;transition:all ease-in-out .2s;border-radius:1rem;column-gap:1.5rem;width:100%;height:100%;padding:1.5rem}@media only screen and (max-width: 725px){.section .section-content .text-side .paragraph{width:100%;height:auto;padding:2rem 1rem}}.section .section-content .text-side .paragraph:hover .paragraph-description{color:#32353b}.section .section-content .text-side .paragraph:hover .paragraph-icon{color:#e3b1eb}.section .section-content .text-side .paragraph .paragraph-title{font-size:2.2rem}.section .section-content .text-side .paragraph .paragraph-description{color:#32353b99;transition:all ease-in-out .2s}.section .section-content .text-side .paragraph .paragraph-icon{align-items:center;color:#e3b1eb99;transition:all ease-in-out .2s}.section .section-content .text-side .paragraph .paragraph-icon fa-icon{font-size:2rem}.section .section-content .text-side .one-paragraph{width:100%}.section .section-content .text-side .selected-paragraph{background-color:#f7f8f9}.section .section-content .text-side .selected-paragraph .paragraph-description{color:#32353b}.section .section-content .text-side .selected-paragraph .cta-icon{transform:rotate(0)}.section .section-content .text-side .selected-paragraph .paragraph-icon,.section .section-content .text-side .selected-paragraph:hover .paragraph-icon{color:#f0509c}.section .section-content .image-buttons-side{width:57%;display:grid;align-content:center}.section .section-content .image-buttons-side img{width:100%;height:42rem;object-fit:cover;border-radius:1rem}@media only screen and (max-width: 56.25em){.section .section-content{flex-wrap:wrap}.section .section-content:nth-child(even){flex-direction:row}.section .section-content:nth-child(even) .image-buttons-side{justify-self:center}.section .section-content .text-side{width:100%;justify-self:left}.section .section-content .text-side .preview-image{display:grid;width:100%}.section .section-content .text-side .preview-image img{width:100%;height:35rem;object-fit:cover;border-radius:1rem}.section .section-content .image-buttons-side{display:none}}@media only screen and (max-width: 37.5em){.section .section-content .text-side .paragraph-items{column-count:1}}.section .image-text-sort{flex-direction:row-reverse}@media only screen and (max-width: 56.25em){.section .image-text-sort:nth-child(even) .image-buttons-side{justify-self:center}}.section .text-image-sort{flex-direction:row}.section .paragraph-with-card .text-side .paragraph{padding:1rem;margin:1rem 0rem;border-radius:.7rem;border:.2rem solid rgba(50,53,59,.1);min-height:max-content;height:15rem}.section .paragraph-with-card .text-side .paragraph:hover{border:.2rem solid #32353b}.section .paragraph-with-card .text-side .paragraph .paragraph-icon{text-align:center}.section .paragraph-with-card .text-side .selected-paragraph{border:.2rem solid #f0509c}.section .paragraph-with-card .text-side .selected-paragraph .paragraph-description{color:#32353b}.section .paragraph-with-card .text-side .selected-paragraph .paragraph-icon{color:#f0509c}.section .paragraph-with-card .text-side .selected-paragraph:hover{border:.2rem solid #f0509c}.section .paragraph-with-card .text-side .selected-paragraph:hover .paragraph-icon{color:#f0509c}\n"], dependencies: [{ kind: "component", type: i2.FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "spin", "pulse", "mask", "styles", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "classes", "transform", "a11yRole"] }, { kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: SectionTitleComponent, selector: "section-title", inputs: ["sectionTitle"] }] });
1028
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FeatureSectionSevenComponent, decorators: [{
1029
+ type: Component,
1030
+ args: [{ selector: 'feature-section-seven', template: "<div class=\"section\">\n <div class=\"section-title\">\n <section-title [sectionTitle]=\"sectionContent.sectionTitle\">\n </section-title>\n </div>\n <div class=\"section-content\" [ngClass]=\"{'image-text-sort': sectionContent.paragraphProperties.onRightSide , 'text-image-sort': !sectionContent.paragraphProperties.onRightSide ,'paragraph-with-card':sectionContent.paragraphProperties.withCard }\">\n <div class=\"text-side\">\n <div class=\"preview-image\">\n <img [src]=\"selectedImage\" alt=\"\">\n </div>\n <div class=\"paragraph-items\">\n <p *ngFor=\"let paragraph of sectionContent.paragraphs; let j = index\" class=\"paragraph\" (click)=\"onChangeImage(paragraph.imagePath ,j)\" [ngClass]=\"{'selected-paragraph':paragraph.isClicked, 'one-paragraph':sectionContent.paragraphs.length == 1}\">\n <span class=\"paragraph-icon\">\n <fa-icon [icon]=\"paragraph.iconName\"></fa-icon>\n </span>\n <span class=\"paragraph-headline\">\n <h2 class=\"paragraph-title\">\n {{paragraph.title}}\n </h2>\n <span class=\"paragraph-description\">\n {{paragraph.description}}\n </span>\n </span>\n </p>\n </div>\n </div>\n <div class=\"image-buttons-side\">\n <img [src]=\"selectedImage\" alt=\"\">\n </div>\n </div>\n</div>", styles: ["html{font-size:62.5%;scroll-behavior:smooth}@media only screen and (max-width: 112.5em){html{font-size:56.25%}}@media only screen and (max-width: 75em){html{font-size:56.25%}}@media only screen and (max-width: 56.25em){html{font-size:50%}}@media only screen and (min-width: 112.5em){html{font-size:75%}}app-root{font-family:sans-serif;font-size:1.6rem}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.section{padding:2rem}.section .section-content{display:flex;flex-direction:row;column-gap:3%;margin:2rem auto;width:100%}.section .section-content .text-side{display:grid;row-gap:1rem;width:50%;padding:2rem 0rem}.section .section-content .text-side .preview-image{display:none}.section .section-content .text-side .paragraph-items{display:flex;flex-direction:column;row-gap:1rem}.section .section-content .text-side .paragraph{box-sizing:border-box;display:flex;flex-direction:row;margin:0rem;align-content:center;align-self:start;cursor:pointer;transition:all ease-in-out .2s;border-radius:1rem;column-gap:1.5rem;width:100%;height:100%;padding:1.5rem}@media only screen and (max-width: 725px){.section .section-content .text-side .paragraph{width:100%;height:auto;padding:2rem 1rem}}.section .section-content .text-side .paragraph:hover .paragraph-description{color:#32353b}.section .section-content .text-side .paragraph:hover .paragraph-icon{color:#e3b1eb}.section .section-content .text-side .paragraph .paragraph-title{font-size:2.2rem}.section .section-content .text-side .paragraph .paragraph-description{color:#32353b99;transition:all ease-in-out .2s}.section .section-content .text-side .paragraph .paragraph-icon{align-items:center;color:#e3b1eb99;transition:all ease-in-out .2s}.section .section-content .text-side .paragraph .paragraph-icon fa-icon{font-size:2rem}.section .section-content .text-side .one-paragraph{width:100%}.section .section-content .text-side .selected-paragraph{background-color:#f7f8f9}.section .section-content .text-side .selected-paragraph .paragraph-description{color:#32353b}.section .section-content .text-side .selected-paragraph .cta-icon{transform:rotate(0)}.section .section-content .text-side .selected-paragraph .paragraph-icon,.section .section-content .text-side .selected-paragraph:hover .paragraph-icon{color:#f0509c}.section .section-content .image-buttons-side{width:57%;display:grid;align-content:center}.section .section-content .image-buttons-side img{width:100%;height:42rem;object-fit:cover;border-radius:1rem}@media only screen and (max-width: 56.25em){.section .section-content{flex-wrap:wrap}.section .section-content:nth-child(even){flex-direction:row}.section .section-content:nth-child(even) .image-buttons-side{justify-self:center}.section .section-content .text-side{width:100%;justify-self:left}.section .section-content .text-side .preview-image{display:grid;width:100%}.section .section-content .text-side .preview-image img{width:100%;height:35rem;object-fit:cover;border-radius:1rem}.section .section-content .image-buttons-side{display:none}}@media only screen and (max-width: 37.5em){.section .section-content .text-side .paragraph-items{column-count:1}}.section .image-text-sort{flex-direction:row-reverse}@media only screen and (max-width: 56.25em){.section .image-text-sort:nth-child(even) .image-buttons-side{justify-self:center}}.section .text-image-sort{flex-direction:row}.section .paragraph-with-card .text-side .paragraph{padding:1rem;margin:1rem 0rem;border-radius:.7rem;border:.2rem solid rgba(50,53,59,.1);min-height:max-content;height:15rem}.section .paragraph-with-card .text-side .paragraph:hover{border:.2rem solid #32353b}.section .paragraph-with-card .text-side .paragraph .paragraph-icon{text-align:center}.section .paragraph-with-card .text-side .selected-paragraph{border:.2rem solid #f0509c}.section .paragraph-with-card .text-side .selected-paragraph .paragraph-description{color:#32353b}.section .paragraph-with-card .text-side .selected-paragraph .paragraph-icon{color:#f0509c}.section .paragraph-with-card .text-side .selected-paragraph:hover{border:.2rem solid #f0509c}.section .paragraph-with-card .text-side .selected-paragraph:hover .paragraph-icon{color:#f0509c}\n"] }]
1031
+ }], ctorParameters: function () { return []; }, propDecorators: { sectionContent: [{
1032
+ type: Input
1033
+ }] } });
1034
+
1035
+ class FeatureSectionEightComponent {
1036
+ }
1037
+ FeatureSectionEightComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FeatureSectionEightComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1038
+ FeatureSectionEightComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FeatureSectionEightComponent, selector: "feature-section-eight", inputs: { sectionContent: "sectionContent" }, ngImport: i0, template: "<section class=\"section\">\n <div class=\"tip-title\">\n {{sectionContent.tipTitle}}\n </div>\n <section-title [sectionTitle]=\"sectionContent.sectionTitle\"></section-title>\n <div>\n <mat-tab-group>\n <mat-tab [label]=\"step.label\" *ngFor=\"let step of sectionContent.steps\">\n <div class=\"tab-content\">\n\n {{step.title}}\n <img class=\"image\" [src]=\"step.image\" alt=\"\">\n </div>\n </mat-tab>\n </mat-tab-group>\n </div>\n <div class=\"features-cards\">\n <div class=\"feature-card\" *ngFor=\"let card of sectionContent.featuresCards\">\n <fa-icon [icon]=\"card.iconName\"></fa-icon>\n <h3>{{card.title}}</h3>\n <p>{{card.description}}</p>\n </div>\n </div>\n</section>", styles: ["html{font-size:62.5%;scroll-behavior:smooth}@media only screen and (max-width: 112.5em){html{font-size:56.25%}}@media only screen and (max-width: 75em){html{font-size:56.25%}}@media only screen and (max-width: 56.25em){html{font-size:50%}}@media only screen and (min-width: 112.5em){html{font-size:75%}}app-root{font-family:sans-serif;font-size:1.6rem}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.section{padding:4rem 0;margin:auto;width:90%;display:flex;flex-direction:column;row-gap:2rem}@media only screen and (min-width: 1500px){.section{width:150rem}}.section .tip-title{text-align:center;color:#155ed4;font-weight:800;font-size:1.8rem}.section .tab-content{display:flex;flex-direction:column;place-items:center;width:100%;row-gap:2rem;padding:2rem 0}.section .image{width:70%;border-radius:1.5rem;max-height:50rem;object-fit:cover;margin:auto}.section .mat-mdc-form-field{margin-top:16px}.section .features-cards{display:flex;flex-direction:row;column-gap:2%}.section .features-cards .feature-card{padding:2rem;display:flex;flex-direction:column;row-gap:1rem;min-width:32%;border-bottom:.2rem solid #155ED4}.section .features-cards .feature-card fa-icon{font-size:3rem;color:#155ed4}.section .features-cards .feature-card p,.section .features-cards .feature-card h3{color:#32353b}.section .features-cards .feature-card h3{font-size:2rem}.section .features-cards .feature-card p{font-size:1.6rem}@media only screen and (max-width: 750px){.section .features-cards{flex-direction:column;row-gap:3rem}}\n"], dependencies: [{ kind: "component", type: i2.FaIconComponent, selector: "fa-icon", inputs: ["icon", "title", "spin", "pulse", "mask", "styles", "flip", "size", "pull", "border", "inverse", "symbol", "rotate", "fixedWidth", "classes", "transform", "a11yRole"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i2$2.MatTabGroup, selector: "mat-tab-group", inputs: ["color", "disableRipple"], exportAs: ["matTabGroup"] }, { kind: "component", type: i2$2.MatTab, selector: "mat-tab", inputs: ["disabled", "label", "aria-label", "aria-labelledby", "labelClass", "bodyClass"], exportAs: ["matTab"] }, { kind: "component", type: SectionTitleComponent, selector: "section-title", inputs: ["sectionTitle"] }] });
1039
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FeatureSectionEightComponent, decorators: [{
1040
+ type: Component,
1041
+ args: [{ selector: 'feature-section-eight', template: "<section class=\"section\">\n <div class=\"tip-title\">\n {{sectionContent.tipTitle}}\n </div>\n <section-title [sectionTitle]=\"sectionContent.sectionTitle\"></section-title>\n <div>\n <mat-tab-group>\n <mat-tab [label]=\"step.label\" *ngFor=\"let step of sectionContent.steps\">\n <div class=\"tab-content\">\n\n {{step.title}}\n <img class=\"image\" [src]=\"step.image\" alt=\"\">\n </div>\n </mat-tab>\n </mat-tab-group>\n </div>\n <div class=\"features-cards\">\n <div class=\"feature-card\" *ngFor=\"let card of sectionContent.featuresCards\">\n <fa-icon [icon]=\"card.iconName\"></fa-icon>\n <h3>{{card.title}}</h3>\n <p>{{card.description}}</p>\n </div>\n </div>\n</section>", styles: ["html{font-size:62.5%;scroll-behavior:smooth}@media only screen and (max-width: 112.5em){html{font-size:56.25%}}@media only screen and (max-width: 75em){html{font-size:56.25%}}@media only screen and (max-width: 56.25em){html{font-size:50%}}@media only screen and (min-width: 112.5em){html{font-size:75%}}app-root{font-family:sans-serif;font-size:1.6rem}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.section{padding:4rem 0;margin:auto;width:90%;display:flex;flex-direction:column;row-gap:2rem}@media only screen and (min-width: 1500px){.section{width:150rem}}.section .tip-title{text-align:center;color:#155ed4;font-weight:800;font-size:1.8rem}.section .tab-content{display:flex;flex-direction:column;place-items:center;width:100%;row-gap:2rem;padding:2rem 0}.section .image{width:70%;border-radius:1.5rem;max-height:50rem;object-fit:cover;margin:auto}.section .mat-mdc-form-field{margin-top:16px}.section .features-cards{display:flex;flex-direction:row;column-gap:2%}.section .features-cards .feature-card{padding:2rem;display:flex;flex-direction:column;row-gap:1rem;min-width:32%;border-bottom:.2rem solid #155ED4}.section .features-cards .feature-card fa-icon{font-size:3rem;color:#155ed4}.section .features-cards .feature-card p,.section .features-cards .feature-card h3{color:#32353b}.section .features-cards .feature-card h3{font-size:2rem}.section .features-cards .feature-card p{font-size:1.6rem}@media only screen and (max-width: 750px){.section .features-cards{flex-direction:column;row-gap:3rem}}\n"] }]
1042
+ }], propDecorators: { sectionContent: [{
1043
+ type: Input
1044
+ }] } });
1045
+
1007
1046
  class JoolerWebsitesSharedModule {
1008
1047
  }
1009
1048
  JoolerWebsitesSharedModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: JoolerWebsitesSharedModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
@@ -1039,7 +1078,9 @@ JoolerWebsitesSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.
1039
1078
  FeatureSectionThreeComponent,
1040
1079
  FeatureSectionFourComponent,
1041
1080
  VerticalSideTabsComponent,
1042
- FeatureSectionFiveComponent], imports: [FontAwesomeModule,
1081
+ FeatureSectionFiveComponent,
1082
+ FeatureSectionSevenComponent,
1083
+ FeatureSectionEightComponent], imports: [FontAwesomeModule,
1043
1084
  CommonModule,
1044
1085
  AppMaterialModule,
1045
1086
  FontAwesomeSharedModule,
@@ -1084,7 +1125,9 @@ JoolerWebsitesSharedModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.
1084
1125
  FeatureSectionThreeComponent,
1085
1126
  FeatureSectionFourComponent,
1086
1127
  VerticalSideTabsComponent,
1087
- FeatureSectionFiveComponent] });
1128
+ FeatureSectionFiveComponent,
1129
+ FeatureSectionSevenComponent,
1130
+ FeatureSectionEightComponent] });
1088
1131
  JoolerWebsitesSharedModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: JoolerWebsitesSharedModule, imports: [FontAwesomeModule,
1089
1132
  CommonModule,
1090
1133
  AppMaterialModule,
@@ -1134,7 +1177,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
1134
1177
  FeatureSectionThreeComponent,
1135
1178
  FeatureSectionFourComponent,
1136
1179
  VerticalSideTabsComponent,
1137
- FeatureSectionFiveComponent
1180
+ FeatureSectionFiveComponent,
1181
+ FeatureSectionSevenComponent,
1182
+ FeatureSectionEightComponent
1138
1183
  ],
1139
1184
  imports: [
1140
1185
  FontAwesomeModule,
@@ -1185,7 +1230,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
1185
1230
  FeatureSectionThreeComponent,
1186
1231
  FeatureSectionFourComponent,
1187
1232
  VerticalSideTabsComponent,
1188
- FeatureSectionFiveComponent
1233
+ FeatureSectionFiveComponent,
1234
+ FeatureSectionSevenComponent,
1235
+ FeatureSectionEightComponent
1189
1236
  ]
1190
1237
  }]
1191
1238
  }] });
@@ -1284,5 +1331,5 @@ class callToActionButton {
1284
1331
  * Generated bundle index. Do not edit.
1285
1332
  */
1286
1333
 
1287
- export { Account, AccountType, Achievement, Achievements, AchievementsComponent, Address, CallToActionSectionComponent, CallToActionSectionTwo, CallToActionSectionTwoComponent, ChooseCountryWithFlagComponent, City, ComingSoonComponent, ContactUsPageComponent, Country, CtaSectionStyleFourComponent, CtaSectionStyleThreeComponent, CustomTooltipComponent, FAQ, FAQCategory, FAQSubcategory, FaqCategoryListingComponent, FaqListingComponent, FeatureSectionFiveComponent, FeatureSectionFourComponent, FeatureSectionOneComponent, FeatureSectionThreeComponent, FeatureSectionTwoComponent, GetStartedCTAComponent, HeaderSectionOneComponent, ImageGalleryModal, ImageSection, ImageSectionAction, JoolerWebsitesSharedModule, LinkText, OurClientListingComponent, OurClientsComponent, PageSection, PageSectionAction, PageSectionStyleFive, PageSectionStyleTenComponent, PageSectionStyleThirteen, PageSectionStyleThirteenComponent, PageSectionStyleThreeComponent, PageSectionWithMultipleCardsComponent, Perks, PricingPlansComponent, SectionTitleComponent, ServicePlan, SocialMediaIconsComponent, SuccessMessageDialogComponent, TeamComponent, TeamMember, TeamSection, User, UserType, ValuePropsSectionComponent, ValuesComponent, VerticalSideTabsComponent, callToActionButton, socialMediaLinks };
1334
+ export { Account, AccountType, Achievement, Achievements, AchievementsComponent, Address, CallToActionSectionComponent, CallToActionSectionTwo, CallToActionSectionTwoComponent, ChooseCountryWithFlagComponent, City, ComingSoonComponent, ContactUsPageComponent, Country, CtaSectionStyleFourComponent, CtaSectionStyleThreeComponent, CustomTooltipComponent, FAQ, FAQCategory, FAQSubcategory, FaqCategoryListingComponent, FaqListingComponent, FeatureSectionEightComponent, FeatureSectionFiveComponent, FeatureSectionFourComponent, FeatureSectionOneComponent, FeatureSectionSevenComponent, FeatureSectionThreeComponent, FeatureSectionTwoComponent, GetStartedCTAComponent, HeaderSectionOneComponent, ImageGalleryModal, ImageSection, ImageSectionAction, JoolerWebsitesSharedModule, LinkText, OurClientListingComponent, OurClientsComponent, PageSection, PageSectionAction, PageSectionStyleFive, PageSectionStyleTenComponent, PageSectionStyleThirteen, PageSectionStyleThirteenComponent, PageSectionStyleThreeComponent, PageSectionWithMultipleCardsComponent, Perks, PricingPlansComponent, SectionTitleComponent, ServicePlan, SocialMediaIconsComponent, SuccessMessageDialogComponent, TeamComponent, TeamMember, TeamSection, User, UserType, ValuePropsSectionComponent, ValuesComponent, VerticalSideTabsComponent, callToActionButton, socialMediaLinks };
1288
1335
  //# sourceMappingURL=jooler-websites-shared.mjs.map