@jooler/jooler-websites-shared 0.0.210 → 0.0.211

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 (211) hide show
  1. package/{esm2020 → esm2022}/jooler-websites-shared.mjs +4 -4
  2. package/esm2022/lib/achievements/achievements.component.mjs +18 -0
  3. package/esm2022/lib/auth-route-directive.mjs +42 -0
  4. package/esm2022/lib/call-to-action-section/call-to-action-section.component.mjs +28 -0
  5. package/esm2022/lib/call-to-action-section-two/call-to-action-section-two.component.mjs +25 -0
  6. package/esm2022/lib/choose-country-with-flag/choose-country-with-flag.component.mjs +56 -0
  7. package/esm2022/lib/coming-soon/coming-soon.component.mjs +20 -0
  8. package/esm2022/lib/contact-us-page/contact-us-page.component.mjs +144 -0
  9. package/esm2022/lib/cta-section-style-four/cta-section-style-four.component.mjs +34 -0
  10. package/esm2022/lib/cta-section-style-three/cta-section-style-three.component.mjs +27 -0
  11. package/esm2022/lib/custom-tooltip/custom-tooltip.component.mjs +23 -0
  12. package/esm2022/lib/faq-category-listing/faq-category-listing.component.mjs +28 -0
  13. package/esm2022/lib/faq-listing/faq-listing.component.mjs +27 -0
  14. package/esm2022/lib/get-started-cta/get-started-cta.component.mjs +24 -0
  15. package/esm2022/lib/header-section-one/header-section-one.component.mjs +25 -0
  16. package/esm2022/lib/image-gallery-modal/image-gallery-modal.component.mjs +134 -0
  17. package/esm2022/lib/jooler-websites-shared.module.mjs +214 -0
  18. package/{esm2020 → esm2022}/lib/models/about-us-section.model.mjs +1 -1
  19. package/{esm2020 → esm2022}/lib/models/account-type.model.mjs +8 -8
  20. package/esm2022/lib/models/account.model.mjs +14 -0
  21. package/{esm2020 → esm2022}/lib/models/achievement.model.mjs +5 -3
  22. package/esm2022/lib/models/achievements.model.mjs +5 -0
  23. package/esm2022/lib/models/address.model.mjs +16 -0
  24. package/{esm2020 → esm2022}/lib/models/brand-logo.model.mjs +1 -1
  25. package/{esm2020 → esm2022}/lib/models/call-to-action-data.model.mjs +1 -1
  26. package/esm2022/lib/models/call-to-action-section-two.model.mjs +7 -0
  27. package/{esm2020 → esm2022}/lib/models/call-to-action-style.model.mjs +1 -1
  28. package/esm2022/lib/models/city.model.mjs +6 -0
  29. package/esm2022/lib/models/country.model.mjs +10 -0
  30. package/{esm2020 → esm2022}/lib/models/cta-cards.model.mjs +1 -1
  31. package/{esm2020 → esm2022}/lib/models/cta-one-type.model.mjs +1 -1
  32. package/{esm2020 → esm2022}/lib/models/cta-section-style-four.model.mjs +1 -1
  33. package/esm2022/lib/models/faq-category.model.mjs +9 -0
  34. package/esm2022/lib/models/faq-subcategory.model.mjs +8 -0
  35. package/esm2022/lib/models/faq.model.mjs +7 -0
  36. package/{esm2020 → esm2022}/lib/models/feature-section-nine.model.mjs +1 -1
  37. package/{esm2020 → esm2022}/lib/models/gallery-items-properties.model.mjs +1 -1
  38. package/esm2022/lib/models/get-started-cta.model.mjs +7 -0
  39. package/{esm2020 → esm2022}/lib/models/header-section-style-one.model.mjs +1 -1
  40. package/esm2022/lib/models/image-section-action.model.mjs +8 -0
  41. package/esm2022/lib/models/image-section.model.mjs +11 -0
  42. package/{esm2020 → esm2022}/lib/models/image-with-content.model.mjs +1 -1
  43. package/{esm2020 → esm2022}/lib/models/library-product-type.model.mjs +6 -6
  44. package/esm2022/lib/models/page-section-action.model.mjs +8 -0
  45. package/{esm2020 → esm2022}/lib/models/page-section-style-thirteen.model.mjs +5 -5
  46. package/{esm2020 → esm2022}/lib/models/page-section-style-three.model.mjs +1 -1
  47. package/esm2022/lib/models/page-section.model.mjs +11 -0
  48. package/{esm2020 → esm2022}/lib/models/page-style-section-five.model.mjs +1 -1
  49. package/{esm2020 → esm2022}/lib/models/perks.model.mjs +5 -3
  50. package/{esm2020 → esm2022}/lib/models/section-title-sizes.model.mjs +6 -6
  51. package/{esm2020 → esm2022}/lib/models/section-title.model.mjs +1 -1
  52. package/esm2022/lib/models/service-plan.model.mjs +11 -0
  53. package/esm2022/lib/models/team-member.model.mjs +7 -0
  54. package/esm2022/lib/models/team-section.model.mjs +6 -0
  55. package/{esm2020 → esm2022}/lib/models/user-type.model.mjs +7 -7
  56. package/esm2022/lib/models/user.model.mjs +11 -0
  57. package/{esm2020 → esm2022}/lib/models/value-prop-properties.model.mjs +1 -1
  58. package/{esm2020 → esm2022}/lib/models/vertical-side-tab.model.mjs +1 -1
  59. package/esm2022/lib/our-client-listing/our-client-listing.component.mjs +18 -0
  60. package/esm2022/lib/our-clients/our-clients.component.mjs +57 -0
  61. package/esm2022/lib/page-section-style-ten/page-section-style-ten.component.mjs +35 -0
  62. package/esm2022/lib/page-section-style-thirteen/page-section-style-thirteen.component.mjs +46 -0
  63. package/esm2022/lib/page-section-style-three/page-section-style-three.component.mjs +26 -0
  64. package/esm2022/lib/page-section-with-multiple-cards/page-section-with-multiple-cards.component.mjs +26 -0
  65. package/esm2022/lib/pricing-plans/pricing-plans.component.mjs +22 -0
  66. package/esm2022/lib/section-title/section-title.component.mjs +23 -0
  67. package/esm2022/lib/services/user.service.mjs +36 -0
  68. package/esm2022/lib/social-media-icons/social-media-icons.component.mjs +44 -0
  69. package/esm2022/lib/social-media-icons/social-media-links.model.mjs +7 -0
  70. package/esm2022/lib/success-message-dialog/success-message-dialog.component.mjs +24 -0
  71. package/esm2022/lib/team/team.component.mjs +57 -0
  72. package/esm2022/lib/value-prop-card/value-prop-card.component.mjs +25 -0
  73. package/esm2022/lib/value-props-section/value-props-section.component.mjs +35 -0
  74. package/esm2022/lib/values/values.component.mjs +48 -0
  75. package/esm2022/lib/vertical-side-tabs/vertical-side-tabs.component.mjs +33 -0
  76. package/esm2022/public-api.mjs +70 -0
  77. package/fesm2022/jooler-websites-shared.mjs +1459 -0
  78. package/fesm2022/jooler-websites-shared.mjs.map +1 -0
  79. package/index.d.ts +5 -5
  80. package/lib/achievements/achievements.component.d.ts +10 -10
  81. package/lib/auth-route-directive.d.ts +14 -14
  82. package/lib/call-to-action-section/call-to-action-section.component.d.ts +11 -11
  83. package/lib/call-to-action-section-two/call-to-action-section-two.component.d.ts +13 -13
  84. package/lib/choose-country-with-flag/choose-country-with-flag.component.d.ts +19 -19
  85. package/lib/coming-soon/coming-soon.component.d.ts +8 -8
  86. package/lib/contact-us-page/contact-us-page.component.d.ts +50 -50
  87. package/lib/cta-section-style-four/cta-section-style-four.component.d.ts +12 -12
  88. package/lib/cta-section-style-three/cta-section-style-three.component.d.ts +13 -13
  89. package/lib/custom-tooltip/custom-tooltip.component.d.ts +9 -9
  90. package/lib/faq-category-listing/faq-category-listing.component.d.ts +14 -14
  91. package/lib/faq-listing/faq-listing.component.d.ts +13 -13
  92. package/lib/get-started-cta/get-started-cta.component.d.ts +13 -13
  93. package/lib/header-section-one/header-section-one.component.d.ts +11 -11
  94. package/lib/image-gallery-modal/image-gallery-modal.component.d.ts +27 -27
  95. package/lib/jooler-websites-shared.module.d.ts +45 -45
  96. package/lib/models/about-us-section.model.d.ts +6 -6
  97. package/lib/models/account-type.model.d.ts +7 -7
  98. package/lib/models/account.model.d.ts +16 -16
  99. package/lib/models/achievement.model.d.ts +4 -4
  100. package/lib/models/achievements.model.d.ts +6 -6
  101. package/lib/models/address.model.d.ts +18 -18
  102. package/lib/models/brand-logo.model.d.ts +4 -4
  103. package/lib/models/call-to-action-data.model.d.ts +17 -17
  104. package/lib/models/call-to-action-section-two.model.d.ts +6 -6
  105. package/lib/models/call-to-action-style.model.d.ts +16 -16
  106. package/lib/models/city.model.d.ts +5 -5
  107. package/lib/models/country.model.d.ts +9 -9
  108. package/lib/models/cta-cards.model.d.ts +7 -7
  109. package/lib/models/cta-one-type.model.d.ts +15 -15
  110. package/lib/models/cta-section-style-four.model.d.ts +8 -8
  111. package/lib/models/faq-category.model.d.ts +9 -9
  112. package/lib/models/faq-subcategory.model.d.ts +8 -8
  113. package/lib/models/faq.model.d.ts +7 -7
  114. package/lib/models/feature-section-nine.model.d.ts +6 -6
  115. package/lib/models/gallery-items-properties.model.d.ts +6 -6
  116. package/lib/models/get-started-cta.model.d.ts +8 -8
  117. package/lib/models/header-section-style-one.model.d.ts +16 -16
  118. package/lib/models/image-section-action.model.d.ts +8 -8
  119. package/lib/models/image-section.model.d.ts +12 -12
  120. package/lib/models/image-with-content.model.d.ts +5 -5
  121. package/lib/models/library-product-type.model.d.ts +5 -5
  122. package/lib/models/page-section-action.model.d.ts +8 -8
  123. package/lib/models/page-section-style-thirteen.model.d.ts +4 -4
  124. package/lib/models/page-section-style-three.model.d.ts +8 -8
  125. package/lib/models/page-section.model.d.ts +11 -11
  126. package/lib/models/page-style-section-five.model.d.ts +11 -11
  127. package/lib/models/perks.model.d.ts +4 -4
  128. package/lib/models/section-title-sizes.model.d.ts +5 -5
  129. package/lib/models/section-title.model.d.ts +9 -9
  130. package/lib/models/service-plan.model.d.ts +12 -12
  131. package/lib/models/team-member.model.d.ts +6 -6
  132. package/lib/models/team-section.model.d.ts +7 -7
  133. package/lib/models/user-type.model.d.ts +6 -6
  134. package/lib/models/user.model.d.ts +11 -11
  135. package/lib/models/value-prop-properties.model.d.ts +11 -11
  136. package/lib/models/vertical-side-tab.model.d.ts +6 -6
  137. package/lib/our-client-listing/our-client-listing.component.d.ts +10 -10
  138. package/lib/our-clients/our-clients.component.d.ts +15 -15
  139. package/lib/page-section-style-ten/page-section-style-ten.component.d.ts +15 -15
  140. package/lib/page-section-style-thirteen/page-section-style-thirteen.component.d.ts +21 -21
  141. package/lib/page-section-style-three/page-section-style-three.component.d.ts +13 -13
  142. package/lib/page-section-with-multiple-cards/page-section-with-multiple-cards.component.d.ts +12 -12
  143. package/lib/pricing-plans/pricing-plans.component.d.ts +10 -10
  144. package/lib/section-title/section-title.component.d.ts +11 -11
  145. package/lib/services/user.service.d.ts +15 -15
  146. package/lib/social-media-icons/social-media-icons.component.d.ts +20 -20
  147. package/lib/social-media-icons/social-media-links.model.d.ts +6 -6
  148. package/lib/success-message-dialog/success-message-dialog.component.d.ts +11 -11
  149. package/lib/team/team.component.d.ts +18 -18
  150. package/lib/value-prop-card/value-prop-card.component.d.ts +12 -12
  151. package/lib/value-props-section/value-props-section.component.d.ts +11 -11
  152. package/lib/values/values.component.d.ts +16 -16
  153. package/lib/vertical-side-tabs/vertical-side-tabs.component.d.ts +14 -14
  154. package/package.json +5 -11
  155. package/public-api.d.ts +66 -61
  156. package/esm2020/lib/achievements/achievements.component.mjs +0 -17
  157. package/esm2020/lib/auth-route-directive.mjs +0 -37
  158. package/esm2020/lib/call-to-action-section/call-to-action-section.component.mjs +0 -28
  159. package/esm2020/lib/call-to-action-section-two/call-to-action-section-two.component.mjs +0 -23
  160. package/esm2020/lib/choose-country-with-flag/choose-country-with-flag.component.mjs +0 -55
  161. package/esm2020/lib/coming-soon/coming-soon.component.mjs +0 -22
  162. package/esm2020/lib/contact-us-page/contact-us-page.component.mjs +0 -129
  163. package/esm2020/lib/cta-section-style-four/cta-section-style-four.component.mjs +0 -32
  164. package/esm2020/lib/cta-section-style-three/cta-section-style-three.component.mjs +0 -25
  165. package/esm2020/lib/custom-tooltip/custom-tooltip.component.mjs +0 -22
  166. package/esm2020/lib/faq-category-listing/faq-category-listing.component.mjs +0 -25
  167. package/esm2020/lib/faq-listing/faq-listing.component.mjs +0 -25
  168. package/esm2020/lib/get-started-cta/get-started-cta.component.mjs +0 -22
  169. package/esm2020/lib/header-section-one/header-section-one.component.mjs +0 -23
  170. package/esm2020/lib/image-gallery-modal/image-gallery-modal.component.mjs +0 -132
  171. package/esm2020/lib/jooler-websites-shared.module.mjs +0 -210
  172. package/esm2020/lib/models/account.model.mjs +0 -3
  173. package/esm2020/lib/models/achievements.model.mjs +0 -3
  174. package/esm2020/lib/models/address.model.mjs +0 -3
  175. package/esm2020/lib/models/call-to-action-section-two.model.mjs +0 -3
  176. package/esm2020/lib/models/city.model.mjs +0 -3
  177. package/esm2020/lib/models/country.model.mjs +0 -3
  178. package/esm2020/lib/models/faq-category.model.mjs +0 -3
  179. package/esm2020/lib/models/faq-subcategory.model.mjs +0 -3
  180. package/esm2020/lib/models/faq.model.mjs +0 -3
  181. package/esm2020/lib/models/get-started-cta.model.mjs +0 -3
  182. package/esm2020/lib/models/image-section-action.model.mjs +0 -3
  183. package/esm2020/lib/models/image-section.model.mjs +0 -3
  184. package/esm2020/lib/models/page-section-action.model.mjs +0 -3
  185. package/esm2020/lib/models/page-section.model.mjs +0 -3
  186. package/esm2020/lib/models/service-plan.model.mjs +0 -3
  187. package/esm2020/lib/models/team-member.model.mjs +0 -3
  188. package/esm2020/lib/models/team-section.model.mjs +0 -3
  189. package/esm2020/lib/models/user.model.mjs +0 -3
  190. package/esm2020/lib/our-client-listing/our-client-listing.component.mjs +0 -17
  191. package/esm2020/lib/our-clients/our-clients.component.mjs +0 -54
  192. package/esm2020/lib/page-section-style-ten/page-section-style-ten.component.mjs +0 -33
  193. package/esm2020/lib/page-section-style-thirteen/page-section-style-thirteen.component.mjs +0 -43
  194. package/esm2020/lib/page-section-style-three/page-section-style-three.component.mjs +0 -24
  195. package/esm2020/lib/page-section-with-multiple-cards/page-section-with-multiple-cards.component.mjs +0 -24
  196. package/esm2020/lib/pricing-plans/pricing-plans.component.mjs +0 -21
  197. package/esm2020/lib/section-title/section-title.component.mjs +0 -22
  198. package/esm2020/lib/services/user.service.mjs +0 -35
  199. package/esm2020/lib/social-media-icons/social-media-icons.component.mjs +0 -40
  200. package/esm2020/lib/social-media-icons/social-media-links.model.mjs +0 -3
  201. package/esm2020/lib/success-message-dialog/success-message-dialog.component.mjs +0 -22
  202. package/esm2020/lib/team/team.component.mjs +0 -52
  203. package/esm2020/lib/value-prop-card/value-prop-card.component.mjs +0 -22
  204. package/esm2020/lib/value-props-section/value-props-section.component.mjs +0 -33
  205. package/esm2020/lib/values/values.component.mjs +0 -43
  206. package/esm2020/lib/vertical-side-tabs/vertical-side-tabs.component.mjs +0 -33
  207. package/esm2020/public-api.mjs +0 -65
  208. package/fesm2015/jooler-websites-shared.mjs +0 -1259
  209. package/fesm2015/jooler-websites-shared.mjs.map +0 -1
  210. package/fesm2020/jooler-websites-shared.mjs +0 -1259
  211. package/fesm2020/jooler-websites-shared.mjs.map +0 -1
@@ -1,5 +1,5 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './public-api';
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './public-api';
5
5
  //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiam9vbGVyLXdlYnNpdGVzLXNoYXJlZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7O0dBRUc7QUFFSCxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbIi8qKlxuICogR2VuZXJhdGVkIGJ1bmRsZSBpbmRleC4gRG8gbm90IGVkaXQuXG4gKi9cblxuZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
@@ -0,0 +1,18 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/common";
4
+ import * as i2 from "../section-title/section-title.component";
5
+ export class AchievementsComponent {
6
+ sectionContent;
7
+ constructor() { }
8
+ ngOnInit() { }
9
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AchievementsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AchievementsComponent, selector: "achievements", inputs: { sectionContent: "sectionContent" }, ngImport: i0, template: "<div class=\"achievements\" [ngClass]=\"{'blue-background': sectionContent.sectionTitle.isDarkBg}\">\r\n <div class=\"content\">\r\n <div>\r\n <section-title [sectionTitle]=\"sectionContent.sectionTitle\"></section-title>\r\n </div>\r\n <div class=\"achievements-cards\">\r\n <div class=\"achievement-card\" *ngFor=\"let achievement of sectionContent.achievements\">\r\n <div class=\"number\">\r\n {{achievement.number}}\r\n </div>\r\n <div class=\"subtitle\">\r\n {{achievement.subtitle}}\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.achievements{display:grid;row-gap:2rem;margin:auto;width:100%}.achievements .content{margin:auto;width:90%}@media only screen and (min-width: 1500px){.achievements .content{width:150rem}}.achievements .achievements-cards{display:flex;flex-wrap:wrap;justify-content:center;width:100%;margin:2rem 0rem;row-gap:4rem;column-gap:1rem}.achievements .achievements-cards .achievement-card{display:grid;grid-template-rows:6rem auto;margin:auto;padding:1rem;width:30rem;min-width:23%;height:12rem;border-radius:1.5rem;box-shadow:.2rem .2rem .4rem #00000040;row-gap:.4rem}@media screen and (max-width: 800px){.achievements .achievements-cards .achievement-card{width:33%}}@media only screen and (max-width: 37.5em){.achievements .achievements-cards .achievement-card{width:50%}}.achievements .achievements-cards .achievement-card .number{text-align:center;color:#fff;font-weight:700;font-size:2.8rem;display:grid;align-content:end}.achievements .achievements-cards .achievement-card .subtitle{color:#fff;text-align:center;font-weight:500;font-size:1.8rem}.blue-background{background:linear-gradient(90deg,#155ed4 3.16%,#0f2844 97.43%);padding:2rem 0rem;color:#fff}.blue-background .achievements-cards{width:100%}.blue-background .achievements-cards .achievement-card{background-color:#fff}.blue-background .achievements-cards .achievement-card .number{color:#155ed4}.blue-background .achievements-cards .achievement-card .subtitle{color:#32353b;font-weight:550}@media only screen and (max-width: 75em){.achievements .achievements-cards{width:100%;display:flex;flex-wrap:wrap;justify-content:center;margin:2rem auto}.achievements .achievements-cards .achievement-card{grid-template-rows:auto auto;width:20rem;height:16rem}.achievements .achievements-cards .achievement-card .subtitle{font-size:1.8rem}}@media only screen and (max-width: 37.5em){.achievements .achievements-cards .achievement-card{height:10rem}.achievements .achievements-cards .achievement-card .number{font-size:2rem}.achievements .achievements-cards .achievement-card .subtitle{font-size:1.4rem}}\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: "component", type: i2.SectionTitleComponent, selector: "section-title", inputs: ["sectionTitle", "withoutTitleCase", "descriptionWidth"] }] });
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AchievementsComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: 'achievements', template: "<div class=\"achievements\" [ngClass]=\"{'blue-background': sectionContent.sectionTitle.isDarkBg}\">\r\n <div class=\"content\">\r\n <div>\r\n <section-title [sectionTitle]=\"sectionContent.sectionTitle\"></section-title>\r\n </div>\r\n <div class=\"achievements-cards\">\r\n <div class=\"achievement-card\" *ngFor=\"let achievement of sectionContent.achievements\">\r\n <div class=\"number\">\r\n {{achievement.number}}\r\n </div>\r\n <div class=\"subtitle\">\r\n {{achievement.subtitle}}\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.achievements{display:grid;row-gap:2rem;margin:auto;width:100%}.achievements .content{margin:auto;width:90%}@media only screen and (min-width: 1500px){.achievements .content{width:150rem}}.achievements .achievements-cards{display:flex;flex-wrap:wrap;justify-content:center;width:100%;margin:2rem 0rem;row-gap:4rem;column-gap:1rem}.achievements .achievements-cards .achievement-card{display:grid;grid-template-rows:6rem auto;margin:auto;padding:1rem;width:30rem;min-width:23%;height:12rem;border-radius:1.5rem;box-shadow:.2rem .2rem .4rem #00000040;row-gap:.4rem}@media screen and (max-width: 800px){.achievements .achievements-cards .achievement-card{width:33%}}@media only screen and (max-width: 37.5em){.achievements .achievements-cards .achievement-card{width:50%}}.achievements .achievements-cards .achievement-card .number{text-align:center;color:#fff;font-weight:700;font-size:2.8rem;display:grid;align-content:end}.achievements .achievements-cards .achievement-card .subtitle{color:#fff;text-align:center;font-weight:500;font-size:1.8rem}.blue-background{background:linear-gradient(90deg,#155ed4 3.16%,#0f2844 97.43%);padding:2rem 0rem;color:#fff}.blue-background .achievements-cards{width:100%}.blue-background .achievements-cards .achievement-card{background-color:#fff}.blue-background .achievements-cards .achievement-card .number{color:#155ed4}.blue-background .achievements-cards .achievement-card .subtitle{color:#32353b;font-weight:550}@media only screen and (max-width: 75em){.achievements .achievements-cards{width:100%;display:flex;flex-wrap:wrap;justify-content:center;margin:2rem auto}.achievements .achievements-cards .achievement-card{grid-template-rows:auto auto;width:20rem;height:16rem}.achievements .achievements-cards .achievement-card .subtitle{font-size:1.8rem}}@media only screen and (max-width: 37.5em){.achievements .achievements-cards .achievement-card{height:10rem}.achievements .achievements-cards .achievement-card .number{font-size:2rem}.achievements .achievements-cards .achievement-card .subtitle{font-size:1.4rem}}\n"] }]
15
+ }], ctorParameters: function () { return []; }, propDecorators: { sectionContent: [{
16
+ type: Input
17
+ }] } });
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNoaWV2ZW1lbnRzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9hY2hpZXZlbWVudHMvYWNoaWV2ZW1lbnRzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9hY2hpZXZlbWVudHMvYWNoaWV2ZW1lbnRzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFVLE1BQU0sZUFBZSxDQUFDOzs7O0FBUXpELE1BQU0sT0FBTyxxQkFBcUI7SUFDdkIsY0FBYyxDQUFlO0lBQ3RDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVEsS0FBSyxDQUFDO3dHQUpILHFCQUFxQjs0RkFBckIscUJBQXFCLGtHQ1JsQyxzc0JBZ0JNOzs0RkRSTyxxQkFBcUI7a0JBTGpDLFNBQVM7K0JBQ0UsY0FBYzswRUFLZixjQUFjO3NCQUF0QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XHJcbmltcG9ydCB7IEFjaGlldmVtZW50cyB9IGZyb20gJy4uL21vZGVscy9hY2hpZXZlbWVudHMubW9kZWwnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdhY2hpZXZlbWVudHMnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9hY2hpZXZlbWVudHMuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWyAnLi9hY2hpZXZlbWVudHMuY29tcG9uZW50LnNjc3MnIF1cclxufSlcclxuZXhwb3J0IGNsYXNzIEFjaGlldmVtZW50c0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XHJcbiAgQElucHV0KCkgc2VjdGlvbkNvbnRlbnQ6IEFjaGlldmVtZW50cztcclxuICBjb25zdHJ1Y3RvcigpIHsgfVxyXG5cclxuICBuZ09uSW5pdCgpIHsgfVxyXG59XHJcbiIsIjxkaXYgY2xhc3M9XCJhY2hpZXZlbWVudHNcIiBbbmdDbGFzc109XCJ7J2JsdWUtYmFja2dyb3VuZCc6IHNlY3Rpb25Db250ZW50LnNlY3Rpb25UaXRsZS5pc0RhcmtCZ31cIj5cclxuICAgIDxkaXYgY2xhc3M9XCJjb250ZW50XCI+XHJcbiAgICAgICAgPGRpdj5cclxuICAgICAgICAgICAgPHNlY3Rpb24tdGl0bGUgW3NlY3Rpb25UaXRsZV09XCJzZWN0aW9uQ29udGVudC5zZWN0aW9uVGl0bGVcIj48L3NlY3Rpb24tdGl0bGU+XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImFjaGlldmVtZW50cy1jYXJkc1wiPlxyXG4gICAgICAgICAgICA8ZGl2IGNsYXNzPVwiYWNoaWV2ZW1lbnQtY2FyZFwiICpuZ0Zvcj1cImxldCBhY2hpZXZlbWVudCBvZiBzZWN0aW9uQ29udGVudC5hY2hpZXZlbWVudHNcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJudW1iZXJcIj5cclxuICAgICAgICAgICAgICAgICAgICB7e2FjaGlldmVtZW50Lm51bWJlcn19XHJcbiAgICAgICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJzdWJ0aXRsZVwiPlxyXG4gICAgICAgICAgICAgICAgICAgIHt7YWNoaWV2ZW1lbnQuc3VidGl0bGV9fVxyXG4gICAgICAgICAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgPC9kaXY+XHJcbjwvZGl2PiJdfQ==
@@ -0,0 +1,42 @@
1
+ import { Directive, Input, HostListener } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/router";
4
+ import * as i2 from "./services/user.service";
5
+ export class AuthRouteDirective {
6
+ _router;
7
+ _userService;
8
+ targetRoute;
9
+ requireAuth;
10
+ navigationExtras;
11
+ constructor(_router, _userService) {
12
+ this._router = _router;
13
+ this._userService = _userService;
14
+ }
15
+ handleClick(event) {
16
+ event.preventDefault();
17
+ if (this.requireAuth && !this._userService.isAuthenticated()) {
18
+ this._router.navigate(['/authentication/login']);
19
+ }
20
+ else {
21
+ this._router.navigate([this.targetRoute], this.navigationExtras);
22
+ }
23
+ }
24
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AuthRouteDirective, deps: [{ token: i1.Router }, { token: i2.UserService }], target: i0.ɵɵFactoryTarget.Directive });
25
+ static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: AuthRouteDirective, selector: "[authRoute]", inputs: { targetRoute: "targetRoute", requireAuth: "requireAuth", navigationExtras: "navigationExtras" }, host: { listeners: { "click": "handleClick($event)" } }, ngImport: i0 });
26
+ }
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AuthRouteDirective, decorators: [{
28
+ type: Directive,
29
+ args: [{
30
+ selector: '[authRoute]'
31
+ }]
32
+ }], ctorParameters: function () { return [{ type: i1.Router }, { type: i2.UserService }]; }, propDecorators: { targetRoute: [{
33
+ type: Input
34
+ }], requireAuth: [{
35
+ type: Input
36
+ }], navigationExtras: [{
37
+ type: Input
38
+ }], handleClick: [{
39
+ type: HostListener,
40
+ args: ['click', ['$event']]
41
+ }] } });
42
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXV0aC1yb3V0ZS1kaXJlY3RpdmUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9qb29sZXItd2Vic2l0ZXMtc2hhcmVkL3NyYy9saWIvYXV0aC1yb3V0ZS1kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsWUFBWSxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7O0FBTy9ELE1BQU0sT0FBTyxrQkFBa0I7SUFJUDtJQUF5QjtJQUhwQyxXQUFXLENBQVM7SUFDcEIsV0FBVyxDQUFVO0lBQ3JCLGdCQUFnQixDQUFtQjtJQUM1QyxZQUFvQixPQUFlLEVBQVUsWUFBeUI7UUFBbEQsWUFBTyxHQUFQLE9BQU8sQ0FBUTtRQUFVLGlCQUFZLEdBQVosWUFBWSxDQUFhO0lBQUksQ0FBQztJQUczRSxXQUFXLENBQUMsS0FBWTtRQUNwQixLQUFLLENBQUMsY0FBYyxFQUFFLENBQUM7UUFDdkIsSUFBSSxJQUFJLENBQUMsV0FBVyxJQUFJLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxlQUFlLEVBQUUsRUFBRTtZQUMxRCxJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLHVCQUF1QixDQUFDLENBQUMsQ0FBQztTQUNwRDthQUFNO1lBQ0gsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLEVBQUUsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUM7U0FDcEU7SUFDTCxDQUFDO3dHQWRRLGtCQUFrQjs0RkFBbEIsa0JBQWtCOzs0RkFBbEIsa0JBQWtCO2tCQUg5QixTQUFTO21CQUFDO29CQUNQLFFBQVEsRUFBRSxhQUFhO2lCQUMxQjt1SEFFWSxXQUFXO3NCQUFuQixLQUFLO2dCQUNHLFdBQVc7c0JBQW5CLEtBQUs7Z0JBQ0csZ0JBQWdCO3NCQUF4QixLQUFLO2dCQUlOLFdBQVc7c0JBRFYsWUFBWTt1QkFBQyxPQUFPLEVBQUUsQ0FBQyxRQUFRLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIElucHV0LCBIb3N0TGlzdGVuZXIgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTmF2aWdhdGlvbkV4dHJhcywgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgVXNlclNlcnZpY2UgfSBmcm9tICcuL3NlcnZpY2VzL3VzZXIuc2VydmljZSc7XHJcblxyXG5ARGlyZWN0aXZlKHtcclxuICAgIHNlbGVjdG9yOiAnW2F1dGhSb3V0ZV0nXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBBdXRoUm91dGVEaXJlY3RpdmUge1xyXG4gICAgQElucHV0KCkgdGFyZ2V0Um91dGU6IHN0cmluZztcclxuICAgIEBJbnB1dCgpIHJlcXVpcmVBdXRoOiBib29sZWFuO1xyXG4gICAgQElucHV0KCkgbmF2aWdhdGlvbkV4dHJhczogTmF2aWdhdGlvbkV4dHJhcztcclxuICAgIGNvbnN0cnVjdG9yKHByaXZhdGUgX3JvdXRlcjogUm91dGVyLCBwcml2YXRlIF91c2VyU2VydmljZTogVXNlclNlcnZpY2UpIHsgfVxyXG5cclxuICAgIEBIb3N0TGlzdGVuZXIoJ2NsaWNrJywgWyckZXZlbnQnXSlcclxuICAgIGhhbmRsZUNsaWNrKGV2ZW50OiBFdmVudCkge1xyXG4gICAgICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XHJcbiAgICAgICAgaWYgKHRoaXMucmVxdWlyZUF1dGggJiYgIXRoaXMuX3VzZXJTZXJ2aWNlLmlzQXV0aGVudGljYXRlZCgpKSB7XHJcbiAgICAgICAgICAgIHRoaXMuX3JvdXRlci5uYXZpZ2F0ZShbJy9hdXRoZW50aWNhdGlvbi9sb2dpbiddKTtcclxuICAgICAgICB9IGVsc2Uge1xyXG4gICAgICAgICAgICB0aGlzLl9yb3V0ZXIubmF2aWdhdGUoW3RoaXMudGFyZ2V0Um91dGVdLCB0aGlzLm5hdmlnYXRpb25FeHRyYXMpO1xyXG4gICAgICAgIH1cclxuICAgIH1cclxufSJdfQ==
@@ -0,0 +1,28 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@fortawesome/angular-fontawesome";
4
+ import * as i2 from "@angular/common";
5
+ import * as i3 from "@angular/material/button";
6
+ import * as i4 from "../auth-route-directive";
7
+ export class CallToActionSectionComponent {
8
+ sectionContent;
9
+ titleOnRightSide = false;
10
+ imageBg = false;
11
+ isBoxWithCard = false;
12
+ constructor() { }
13
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CallToActionSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
14
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CallToActionSectionComponent, selector: "call-to-action-section", inputs: { sectionContent: "sectionContent", titleOnRightSide: "titleOnRightSide", imageBg: "imageBg", isBoxWithCard: "isBoxWithCard" }, ngImport: i0, template: "<div class=\"page\">\r\n <div class=\"cta-box\" [ngClass]=\"{'title-right-side':titleOnRightSide,'title-left-side':!titleOnRightSide,\r\n 'colored-bg':!imageBg,\r\n 'image-bg':imageBg\r\n}\" [ngStyle]=\"{'background-image': 'url(' + sectionContent.bgImage + ')', 'background-color': sectionContent.bgColor}\">\r\n <div class=\"heading-side\">\r\n <div class=\"title\">{{sectionContent.title}}</div>\r\n <div class=\"subtitle\">{{sectionContent.subtitle}}</div>\r\n <div class=\"buttons\">\r\n <span class=\"cta-link\" *ngFor=\"let button of sectionContent.buttons\" authRoute\r\n [requireAuth]=\"button.requiresAuth\" [targetRoute]=\"button.route\">\r\n {{button.name}}\r\n <fa-icon icon=\"chevron-right\"></fa-icon>\r\n </span>\r\n </div>\r\n </div>\r\n <div class=\"cta-side\" [ngClass]=\"{'only-an-item':sectionContent.ctaCards.length == 1 }\">\r\n <div class=\"box\" *ngFor=\"let card of sectionContent.ctaCards\"\r\n [ngClass]=\"{'box-card':isBoxWithCard, 'box-non-card':!isBoxWithCard}\">\r\n <img loading=\"lazy\" [src]=\"card.image\" alt=\"\" class=\"image\" *ngIf=\"card.image\">\r\n <div class=\"box-title\">\r\n {{card.title}}\r\n </div>\r\n <div class=\"box-description\" *ngIf=\"card.description \">\r\n {{card.description}}\r\n </div>\r\n <div class=\"button\">\r\n <button type=\"button\" mat-raised-button authRoute [requireAuth]=\"card.button.requiresAuth\"\r\n [targetRoute]=\"card.button.route\">\r\n {{card.button.name}}\r\n </button>\r\n </div>\r\n <div class=\"divider\" *ngIf=\"!isBoxWithCard && sectionContent.ctaCards.length > 1 \">\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.page{display:grid;margin:7rem auto;width:90%}@media only screen and (min-width: 1500px){.page{width:150rem}}.page .title-right-side{flex-direction:row-reverse}.page .title-left-side{flex-direction:row}.page .image-bg{background-position:center;background-size:cover}.page .colored-bg{background-color:#f7f8f9}.page .colored-bg .bg-image{display:none}.page .cta-box{width:100%;display:flex;column-gap:2%;border-radius:1.5rem;position:relative;box-shadow:.2rem .2rem .4rem #00000040;padding:3rem}.page .cta-box .left-bg{width:2rem;position:absolute;top:10%;left:0}.page .cta-box .right-bg{width:15rem;top:0;right:0;position:absolute}.page .cta-box .heading-side{display:flex;flex-direction:column;row-gap:1.5rem;width:40%}.page .cta-box .heading-side .title{color:#155ed4;font-size:3rem;font-weight:700}.page .cta-box .heading-side .subtitle{font-size:2rem;color:#32353b}.page .cta-box .heading-side .buttons{display:flex;flex-direction:row;column-gap:2rem}.page .cta-box .heading-side .buttons .cta-link{padding:.5 rem;color:#155ed4;font-size:1.6rem;cursor:pointer;transition:all ease-in-out .2s;border-bottom:.2rem solid transparent;display:flex;flex-direction:row;column-gap:1.5rem}.page .cta-box .heading-side .buttons .cta-link:hover{border-bottom:.2rem solid #155ED4}.page .cta-box .heading-side .buttons .cta-link:nth-child(2n){color:#32353b}.page .cta-box .heading-side .buttons .cta-link:nth-child(2n):hover{border-bottom:.2rem solid #32353B}.page .cta-box .only-an-item{justify-content:right}.page .cta-box .cta-side{display:flex;flex-direction:row;column-gap:2%;padding:1rem;height:100%;width:58%;align-items:center;padding:2rem 0}.page .cta-box .cta-side .box-card{background:#32353b;border-radius:1rem;color:#fff;box-shadow:#32325d40 0 1.3rem 2.7rem -.5rem,#0000004d 0 .8rem 1.6rem -.8rem;border:.2rem solid #ffffff;padding:1.5rem}.page .cta-box .cta-side .box-card .button button{color:#155ed4;background-color:#f7f8f9}.page .cta-box .cta-side .box-non-card{color:#32353b;height:100%}.page .cta-box .cta-side .box-non-card .box-title,.page .cta-box .cta-side .box-non-card .box-description,.page .cta-box .cta-side .box-non-card .button{padding-left:1rem;border-left:.3rem transparent solid}.page .cta-box .cta-side .box-non-card .image{margin-left:1.3rem}.page .cta-box .cta-side .box-non-card .box-title{border-left:.3rem #155ED4 solid}.page .cta-box .cta-side .box-non-card .button button{color:#fff;background-color:#32353b}.page .cta-box .cta-side .box{align-self:center;width:49%;display:flex;flex-direction:column;row-gap:1.5rem}.page .cta-box .cta-side .box .image{width:5rem;height:5rem;object-fit:cover;border-radius:.7rem;box-shadow:#0000003d 0 .3rem .8rem}.page .cta-box .cta-side .box .box-title{font-size:2.2rem;font-weight:700}.page .cta-box .cta-side .box .box-description{font-weight:400;font-size:1.8rem;margin-bottom:1rem;width:80%}.page .cta-box .cta-side .box .button button{padding:1rem;font-size:1.4rem;font-weight:600;font-family:inherit}.page .cta-box .divider{display:none}@media only screen and (max-width: 75em){.page .cta-box{flex-direction:column;row-gap:2rem}.page .cta-box .only-an-item{justify-content:center;width:50%;text-align:center}.page .cta-box .only-an-item .box{margin:auto;text-align:center}.page .cta-box .only-an-item .box .box-title,.page .cta-box .only-an-item .box .box-description,.page .cta-box .only-an-item .box .button,.page .cta-box .only-an-item .box .image{padding-left:0;border-left:none;margin:auto}.page .cta-box .only-an-item .box .box-title{border-left:none}.page .cta-box .cta-side,.page .cta-box .heading-side{width:100%}}@media only screen and (max-width: 37.5em){.page .cta-box .cta-side{flex-direction:column;row-gap:4rem}.page .cta-box .cta-side .box-non-card{margin:auto;text-align:center}.page .cta-box .cta-side .box-non-card .box-title,.page .cta-box .cta-side .box-non-card .box-description,.page .cta-box .cta-side .box-non-card .button,.page .cta-box .cta-side .box-non-card .image{padding-left:0;border-left:none;margin:auto}.page .cta-box .cta-side .box-non-card .box-title{border-left:none}.page .cta-box .cta-side .box-non-card:first-child .divider{display:grid;width:40%;border:.2rem solid #155ED4;margin:2.5rem auto 0}.page .cta-box .cta-side .box{width:100%}.page .cta-box .cta-side .box .box-title{font-size:2rem}.page .cta-box .cta-side .box .box-description{font-size:1.6rem}.page .cta-box .heading-side{text-align:center}.page .cta-box .heading-side .buttons{justify-content:center}}\n"], dependencies: [{ kind: "component", type: i1.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: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i3.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i4.AuthRouteDirective, selector: "[authRoute]", inputs: ["targetRoute", "requireAuth", "navigationExtras"] }] });
15
+ }
16
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CallToActionSectionComponent, decorators: [{
17
+ type: Component,
18
+ args: [{ selector: 'call-to-action-section', template: "<div class=\"page\">\r\n <div class=\"cta-box\" [ngClass]=\"{'title-right-side':titleOnRightSide,'title-left-side':!titleOnRightSide,\r\n 'colored-bg':!imageBg,\r\n 'image-bg':imageBg\r\n}\" [ngStyle]=\"{'background-image': 'url(' + sectionContent.bgImage + ')', 'background-color': sectionContent.bgColor}\">\r\n <div class=\"heading-side\">\r\n <div class=\"title\">{{sectionContent.title}}</div>\r\n <div class=\"subtitle\">{{sectionContent.subtitle}}</div>\r\n <div class=\"buttons\">\r\n <span class=\"cta-link\" *ngFor=\"let button of sectionContent.buttons\" authRoute\r\n [requireAuth]=\"button.requiresAuth\" [targetRoute]=\"button.route\">\r\n {{button.name}}\r\n <fa-icon icon=\"chevron-right\"></fa-icon>\r\n </span>\r\n </div>\r\n </div>\r\n <div class=\"cta-side\" [ngClass]=\"{'only-an-item':sectionContent.ctaCards.length == 1 }\">\r\n <div class=\"box\" *ngFor=\"let card of sectionContent.ctaCards\"\r\n [ngClass]=\"{'box-card':isBoxWithCard, 'box-non-card':!isBoxWithCard}\">\r\n <img loading=\"lazy\" [src]=\"card.image\" alt=\"\" class=\"image\" *ngIf=\"card.image\">\r\n <div class=\"box-title\">\r\n {{card.title}}\r\n </div>\r\n <div class=\"box-description\" *ngIf=\"card.description \">\r\n {{card.description}}\r\n </div>\r\n <div class=\"button\">\r\n <button type=\"button\" mat-raised-button authRoute [requireAuth]=\"card.button.requiresAuth\"\r\n [targetRoute]=\"card.button.route\">\r\n {{card.button.name}}\r\n </button>\r\n </div>\r\n <div class=\"divider\" *ngIf=\"!isBoxWithCard && sectionContent.ctaCards.length > 1 \">\r\n </div>\r\n </div>\r\n </div>\r\n </div>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.page{display:grid;margin:7rem auto;width:90%}@media only screen and (min-width: 1500px){.page{width:150rem}}.page .title-right-side{flex-direction:row-reverse}.page .title-left-side{flex-direction:row}.page .image-bg{background-position:center;background-size:cover}.page .colored-bg{background-color:#f7f8f9}.page .colored-bg .bg-image{display:none}.page .cta-box{width:100%;display:flex;column-gap:2%;border-radius:1.5rem;position:relative;box-shadow:.2rem .2rem .4rem #00000040;padding:3rem}.page .cta-box .left-bg{width:2rem;position:absolute;top:10%;left:0}.page .cta-box .right-bg{width:15rem;top:0;right:0;position:absolute}.page .cta-box .heading-side{display:flex;flex-direction:column;row-gap:1.5rem;width:40%}.page .cta-box .heading-side .title{color:#155ed4;font-size:3rem;font-weight:700}.page .cta-box .heading-side .subtitle{font-size:2rem;color:#32353b}.page .cta-box .heading-side .buttons{display:flex;flex-direction:row;column-gap:2rem}.page .cta-box .heading-side .buttons .cta-link{padding:.5 rem;color:#155ed4;font-size:1.6rem;cursor:pointer;transition:all ease-in-out .2s;border-bottom:.2rem solid transparent;display:flex;flex-direction:row;column-gap:1.5rem}.page .cta-box .heading-side .buttons .cta-link:hover{border-bottom:.2rem solid #155ED4}.page .cta-box .heading-side .buttons .cta-link:nth-child(2n){color:#32353b}.page .cta-box .heading-side .buttons .cta-link:nth-child(2n):hover{border-bottom:.2rem solid #32353B}.page .cta-box .only-an-item{justify-content:right}.page .cta-box .cta-side{display:flex;flex-direction:row;column-gap:2%;padding:1rem;height:100%;width:58%;align-items:center;padding:2rem 0}.page .cta-box .cta-side .box-card{background:#32353b;border-radius:1rem;color:#fff;box-shadow:#32325d40 0 1.3rem 2.7rem -.5rem,#0000004d 0 .8rem 1.6rem -.8rem;border:.2rem solid #ffffff;padding:1.5rem}.page .cta-box .cta-side .box-card .button button{color:#155ed4;background-color:#f7f8f9}.page .cta-box .cta-side .box-non-card{color:#32353b;height:100%}.page .cta-box .cta-side .box-non-card .box-title,.page .cta-box .cta-side .box-non-card .box-description,.page .cta-box .cta-side .box-non-card .button{padding-left:1rem;border-left:.3rem transparent solid}.page .cta-box .cta-side .box-non-card .image{margin-left:1.3rem}.page .cta-box .cta-side .box-non-card .box-title{border-left:.3rem #155ED4 solid}.page .cta-box .cta-side .box-non-card .button button{color:#fff;background-color:#32353b}.page .cta-box .cta-side .box{align-self:center;width:49%;display:flex;flex-direction:column;row-gap:1.5rem}.page .cta-box .cta-side .box .image{width:5rem;height:5rem;object-fit:cover;border-radius:.7rem;box-shadow:#0000003d 0 .3rem .8rem}.page .cta-box .cta-side .box .box-title{font-size:2.2rem;font-weight:700}.page .cta-box .cta-side .box .box-description{font-weight:400;font-size:1.8rem;margin-bottom:1rem;width:80%}.page .cta-box .cta-side .box .button button{padding:1rem;font-size:1.4rem;font-weight:600;font-family:inherit}.page .cta-box .divider{display:none}@media only screen and (max-width: 75em){.page .cta-box{flex-direction:column;row-gap:2rem}.page .cta-box .only-an-item{justify-content:center;width:50%;text-align:center}.page .cta-box .only-an-item .box{margin:auto;text-align:center}.page .cta-box .only-an-item .box .box-title,.page .cta-box .only-an-item .box .box-description,.page .cta-box .only-an-item .box .button,.page .cta-box .only-an-item .box .image{padding-left:0;border-left:none;margin:auto}.page .cta-box .only-an-item .box .box-title{border-left:none}.page .cta-box .cta-side,.page .cta-box .heading-side{width:100%}}@media only screen and (max-width: 37.5em){.page .cta-box .cta-side{flex-direction:column;row-gap:4rem}.page .cta-box .cta-side .box-non-card{margin:auto;text-align:center}.page .cta-box .cta-side .box-non-card .box-title,.page .cta-box .cta-side .box-non-card .box-description,.page .cta-box .cta-side .box-non-card .button,.page .cta-box .cta-side .box-non-card .image{padding-left:0;border-left:none;margin:auto}.page .cta-box .cta-side .box-non-card .box-title{border-left:none}.page .cta-box .cta-side .box-non-card:first-child .divider{display:grid;width:40%;border:.2rem solid #155ED4;margin:2.5rem auto 0}.page .cta-box .cta-side .box{width:100%}.page .cta-box .cta-side .box .box-title{font-size:2rem}.page .cta-box .cta-side .box .box-description{font-size:1.6rem}.page .cta-box .heading-side{text-align:center}.page .cta-box .heading-side .buttons{justify-content:center}}\n"] }]
19
+ }], ctorParameters: function () { return []; }, propDecorators: { sectionContent: [{
20
+ type: Input
21
+ }], titleOnRightSide: [{
22
+ type: Input
23
+ }], imageBg: [{
24
+ type: Input
25
+ }], isBoxWithCard: [{
26
+ type: Input
27
+ }] } });
28
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsbC10by1hY3Rpb24tc2VjdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9qb29sZXItd2Vic2l0ZXMtc2hhcmVkL3NyYy9saWIvY2FsbC10by1hY3Rpb24tc2VjdGlvbi9jYWxsLXRvLWFjdGlvbi1zZWN0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9jYWxsLXRvLWFjdGlvbi1zZWN0aW9uL2NhbGwtdG8tYWN0aW9uLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7Ozs7OztBQVNqRCxNQUFNLE9BQU8sNEJBQTRCO0lBQzlCLGNBQWMsQ0FBMEI7SUFDeEMsZ0JBQWdCLEdBQVksS0FBSyxDQUFDO0lBQ2xDLE9BQU8sR0FBWSxLQUFLLENBQUM7SUFDekIsYUFBYSxHQUFZLEtBQUssQ0FBQztJQUV4QyxnQkFBZ0IsQ0FBQzt3R0FOTiw0QkFBNEI7NEZBQTVCLDRCQUE0QixzTUNUekMsb3lEQXFDTTs7NEZENUJPLDRCQUE0QjtrQkFOeEMsU0FBUzsrQkFDRSx3QkFBd0I7MEVBTXpCLGNBQWM7c0JBQXRCLEtBQUs7Z0JBQ0csZ0JBQWdCO3NCQUF4QixLQUFLO2dCQUNHLE9BQU87c0JBQWYsS0FBSztnQkFDRyxhQUFhO3NCQUFyQixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBDYWxsVG9BY3Rpb25TZWN0aW9uRGF0YSB9IGZyb20gJy4uL21vZGVscy9jYWxsLXRvLWFjdGlvbi1kYXRhLm1vZGVsJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnY2FsbC10by1hY3Rpb24tc2VjdGlvbicsXHJcbiAgdGVtcGxhdGVVcmw6ICcuL2NhbGwtdG8tYWN0aW9uLXNlY3Rpb24uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWyAnLi9jYWxsLXRvLWFjdGlvbi1zZWN0aW9uLmNvbXBvbmVudC5zY3NzJyBdXHJcbn0pXHJcblxyXG5leHBvcnQgY2xhc3MgQ2FsbFRvQWN0aW9uU2VjdGlvbkNvbXBvbmVudCB7XHJcbiAgQElucHV0KCkgc2VjdGlvbkNvbnRlbnQ6IENhbGxUb0FjdGlvblNlY3Rpb25EYXRhO1xyXG4gIEBJbnB1dCgpIHRpdGxlT25SaWdodFNpZGU6IGJvb2xlYW4gPSBmYWxzZTtcclxuICBASW5wdXQoKSBpbWFnZUJnOiBib29sZWFuID0gZmFsc2U7XHJcbiAgQElucHV0KCkgaXNCb3hXaXRoQ2FyZDogYm9vbGVhbiA9IGZhbHNlO1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHsgfVxyXG5cclxuXHJcbn1cclxuIiwiPGRpdiBjbGFzcz1cInBhZ2VcIj5cclxuICA8ZGl2IGNsYXNzPVwiY3RhLWJveFwiIFtuZ0NsYXNzXT1cInsndGl0bGUtcmlnaHQtc2lkZSc6dGl0bGVPblJpZ2h0U2lkZSwndGl0bGUtbGVmdC1zaWRlJzohdGl0bGVPblJpZ2h0U2lkZSxcclxuICAnY29sb3JlZC1iZyc6IWltYWdlQmcsXHJcbiAgJ2ltYWdlLWJnJzppbWFnZUJnXHJcbn1cIiBbbmdTdHlsZV09XCJ7J2JhY2tncm91bmQtaW1hZ2UnOiAndXJsKCcgKyBzZWN0aW9uQ29udGVudC5iZ0ltYWdlICsgJyknLCAnYmFja2dyb3VuZC1jb2xvcic6IHNlY3Rpb25Db250ZW50LmJnQ29sb3J9XCI+XHJcbiAgICA8ZGl2IGNsYXNzPVwiaGVhZGluZy1zaWRlXCI+XHJcbiAgICAgIDxkaXYgY2xhc3M9XCJ0aXRsZVwiPnt7c2VjdGlvbkNvbnRlbnQudGl0bGV9fTwvZGl2PlxyXG4gICAgICA8ZGl2IGNsYXNzPVwic3VidGl0bGVcIj57e3NlY3Rpb25Db250ZW50LnN1YnRpdGxlfX08L2Rpdj5cclxuICAgICAgPGRpdiBjbGFzcz1cImJ1dHRvbnNcIj5cclxuICAgICAgICA8c3BhbiBjbGFzcz1cImN0YS1saW5rXCIgKm5nRm9yPVwibGV0IGJ1dHRvbiBvZiBzZWN0aW9uQ29udGVudC5idXR0b25zXCIgYXV0aFJvdXRlXHJcbiAgICAgICAgICBbcmVxdWlyZUF1dGhdPVwiYnV0dG9uLnJlcXVpcmVzQXV0aFwiIFt0YXJnZXRSb3V0ZV09XCJidXR0b24ucm91dGVcIj5cclxuICAgICAgICAgIHt7YnV0dG9uLm5hbWV9fVxyXG4gICAgICAgICAgPGZhLWljb24gaWNvbj1cImNoZXZyb24tcmlnaHRcIj48L2ZhLWljb24+XHJcbiAgICAgICAgPC9zcGFuPlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gICAgPGRpdiBjbGFzcz1cImN0YS1zaWRlXCIgW25nQ2xhc3NdPVwieydvbmx5LWFuLWl0ZW0nOnNlY3Rpb25Db250ZW50LmN0YUNhcmRzLmxlbmd0aCA9PSAxIH1cIj5cclxuICAgICAgPGRpdiBjbGFzcz1cImJveFwiICpuZ0Zvcj1cImxldCBjYXJkIG9mIHNlY3Rpb25Db250ZW50LmN0YUNhcmRzXCJcclxuICAgICAgICBbbmdDbGFzc109XCJ7J2JveC1jYXJkJzppc0JveFdpdGhDYXJkLCAnYm94LW5vbi1jYXJkJzohaXNCb3hXaXRoQ2FyZH1cIj5cclxuICAgICAgICA8aW1nIGxvYWRpbmc9XCJsYXp5XCIgW3NyY109XCJjYXJkLmltYWdlXCIgYWx0PVwiXCIgY2xhc3M9XCJpbWFnZVwiICpuZ0lmPVwiY2FyZC5pbWFnZVwiPlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJib3gtdGl0bGVcIj5cclxuICAgICAgICAgIHt7Y2FyZC50aXRsZX19XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImJveC1kZXNjcmlwdGlvblwiICpuZ0lmPVwiY2FyZC5kZXNjcmlwdGlvbiBcIj5cclxuICAgICAgICAgIHt7Y2FyZC5kZXNjcmlwdGlvbn19XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cImJ1dHRvblwiPlxyXG4gICAgICAgICAgPGJ1dHRvbiB0eXBlPVwiYnV0dG9uXCIgbWF0LXJhaXNlZC1idXR0b24gYXV0aFJvdXRlIFtyZXF1aXJlQXV0aF09XCJjYXJkLmJ1dHRvbi5yZXF1aXJlc0F1dGhcIlxyXG4gICAgICAgICAgICBbdGFyZ2V0Um91dGVdPVwiY2FyZC5idXR0b24ucm91dGVcIj5cclxuICAgICAgICAgICAge3tjYXJkLmJ1dHRvbi5uYW1lfX1cclxuICAgICAgICAgIDwvYnV0dG9uPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICAgIDxkaXYgY2xhc3M9XCJkaXZpZGVyXCIgKm5nSWY9XCIhaXNCb3hXaXRoQ2FyZCAmJiBzZWN0aW9uQ29udGVudC5jdGFDYXJkcy5sZW5ndGggPiAxIFwiPlxyXG4gICAgICAgIDwvZGl2PlxyXG4gICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG4gIDwvZGl2PlxyXG48L2Rpdj4iXX0=
@@ -0,0 +1,25 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/router";
4
+ import * as i2 from "@angular/common";
5
+ export class CallToActionSectionTwoComponent {
6
+ _router;
7
+ sectionContent;
8
+ constructor(_router) {
9
+ this._router = _router;
10
+ }
11
+ ngOnInit() {
12
+ }
13
+ onClickLink(link) {
14
+ this._router.navigate([link]);
15
+ }
16
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CallToActionSectionTwoComponent, deps: [{ token: i1.Router }], target: i0.ɵɵFactoryTarget.Component });
17
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: CallToActionSectionTwoComponent, selector: "call-to-action-section-two", inputs: { sectionContent: "sectionContent" }, ngImport: i0, template: "<section class=\"section\">\r\n <header class=\"logo-container\" *ngIf=\"sectionContent.withImage\">\r\n <img loading=\"lazy\" class=\"logo\" [src]=\"sectionContent.imagePath\" alt=\"Logo\">\r\n </header>\r\n <h1 class=\"title\">\r\n {{sectionContent.title}}\r\n </h1>\r\n <h3 class=\"subtitle\">\r\n {{sectionContent.subtitle}}<ng-content></ng-content>\r\n </h3>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.section{background-color:#f7f8f9;display:flex;flex-direction:column;row-gap:1.5rem;border-radius:1.5rem;padding:2rem;width:100%;justify-content:center;text-align:center}.section .logo-container{width:8rem;margin:auto}.section .logo-container .logo{width:100%}.section .title{font-size:3.4rem;font-weight:700;color:#155ed4}.section .description,.section .subtitle{color:#32353b;font-size:2rem;font-weight:500}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
18
+ }
19
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CallToActionSectionTwoComponent, decorators: [{
20
+ type: Component,
21
+ args: [{ selector: 'call-to-action-section-two', template: "<section class=\"section\">\r\n <header class=\"logo-container\" *ngIf=\"sectionContent.withImage\">\r\n <img loading=\"lazy\" class=\"logo\" [src]=\"sectionContent.imagePath\" alt=\"Logo\">\r\n </header>\r\n <h1 class=\"title\">\r\n {{sectionContent.title}}\r\n </h1>\r\n <h3 class=\"subtitle\">\r\n {{sectionContent.subtitle}}<ng-content></ng-content>\r\n </h3>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.section{background-color:#f7f8f9;display:flex;flex-direction:column;row-gap:1.5rem;border-radius:1.5rem;padding:2rem;width:100%;justify-content:center;text-align:center}.section .logo-container{width:8rem;margin:auto}.section .logo-container .logo{width:100%}.section .title{font-size:3.4rem;font-weight:700;color:#155ed4}.section .description,.section .subtitle{color:#32353b;font-size:2rem;font-weight:500}\n"] }]
22
+ }], ctorParameters: function () { return [{ type: i1.Router }]; }, propDecorators: { sectionContent: [{
23
+ type: Input
24
+ }] } });
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FsbC10by1hY3Rpb24tc2VjdGlvbi10d28uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvam9vbGVyLXdlYnNpdGVzLXNoYXJlZC9zcmMvbGliL2NhbGwtdG8tYWN0aW9uLXNlY3Rpb24tdHdvL2NhbGwtdG8tYWN0aW9uLXNlY3Rpb24tdHdvLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9jYWxsLXRvLWFjdGlvbi1zZWN0aW9uLXR3by9jYWxsLXRvLWFjdGlvbi1zZWN0aW9uLXR3by5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7OztBQVN6RCxNQUFNLE9BQU8sK0JBQStCO0lBR3RCO0lBRlgsY0FBYyxDQUF5QjtJQUVoRCxZQUFvQixPQUFlO1FBQWYsWUFBTyxHQUFQLE9BQU8sQ0FBUTtJQUFJLENBQUM7SUFFeEMsUUFBUTtJQUNSLENBQUM7SUFFRCxXQUFXLENBQUMsSUFBWTtRQUN0QixJQUFJLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUE7SUFDL0IsQ0FBQzt3R0FWVSwrQkFBK0I7NEZBQS9CLCtCQUErQixnSENUNUMsa2FBVVU7OzRGRERHLCtCQUErQjtrQkFMM0MsU0FBUzsrQkFDRSw0QkFBNEI7NkZBSzdCLGNBQWM7c0JBQXRCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIE9uSW5pdCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgUm91dGVyIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcclxuaW1wb3J0IHsgQ2FsbFRvQWN0aW9uU2VjdGlvblR3byB9IGZyb20gJy4uL21vZGVscy9jYWxsLXRvLWFjdGlvbi1zZWN0aW9uLXR3by5tb2RlbCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NhbGwtdG8tYWN0aW9uLXNlY3Rpb24tdHdvJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vY2FsbC10by1hY3Rpb24tc2VjdGlvbi10d28uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2NhbGwtdG8tYWN0aW9uLXNlY3Rpb24tdHdvLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIENhbGxUb0FjdGlvblNlY3Rpb25Ud29Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG4gIEBJbnB1dCgpIHNlY3Rpb25Db250ZW50OiBDYWxsVG9BY3Rpb25TZWN0aW9uVHdvO1xyXG5cclxuICBjb25zdHJ1Y3Rvcihwcml2YXRlIF9yb3V0ZXI6IFJvdXRlcikgeyB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gIH1cclxuXHJcbiAgb25DbGlja0xpbmsobGluazogc3RyaW5nKSB7XHJcbiAgICB0aGlzLl9yb3V0ZXIubmF2aWdhdGUoW2xpbmtdKVxyXG4gIH1cclxufVxyXG4iLCI8c2VjdGlvbiBjbGFzcz1cInNlY3Rpb25cIj5cclxuICAgIDxoZWFkZXIgY2xhc3M9XCJsb2dvLWNvbnRhaW5lclwiICpuZ0lmPVwic2VjdGlvbkNvbnRlbnQud2l0aEltYWdlXCI+XHJcbiAgICAgICAgPGltZyBsb2FkaW5nPVwibGF6eVwiIGNsYXNzPVwibG9nb1wiIFtzcmNdPVwic2VjdGlvbkNvbnRlbnQuaW1hZ2VQYXRoXCIgYWx0PVwiTG9nb1wiPlxyXG4gICAgPC9oZWFkZXI+XHJcbiAgICA8aDEgY2xhc3M9XCJ0aXRsZVwiPlxyXG4gICAgICAgIHt7c2VjdGlvbkNvbnRlbnQudGl0bGV9fVxyXG4gICAgPC9oMT5cclxuICAgIDxoMyBjbGFzcz1cInN1YnRpdGxlXCI+XHJcbiAgICAgICAge3tzZWN0aW9uQ29udGVudC5zdWJ0aXRsZX19PG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxyXG4gICAgPC9oMz5cclxuPC9zZWN0aW9uPiJdfQ==
@@ -0,0 +1,56 @@
1
+ import { Component, EventEmitter, Input, Output, forwardRef } from '@angular/core';
2
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "@angular/material/icon";
5
+ import * as i2 from "@angular/forms";
6
+ import * as i3 from "@ng-select/ng-select";
7
+ import * as i4 from "@angular/common";
8
+ export class ChooseCountryWithFlagComponent {
9
+ items;
10
+ selectedItem;
11
+ change = new EventEmitter();
12
+ constructor() { }
13
+ ngOnInit() {
14
+ }
15
+ writeValue(value) {
16
+ this.selectedItem = value;
17
+ }
18
+ registerOnChange(fn) {
19
+ this.propagateChange = fn;
20
+ }
21
+ registerOnTouched(fn) {
22
+ this.propogateTouch = fn;
23
+ }
24
+ propagateChange = (_) => { };
25
+ propogateTouch = () => { };
26
+ updateBlur() {
27
+ this.propogateTouch();
28
+ }
29
+ onSelectionChanged($event) {
30
+ this.propagateChange(this.selectedItem);
31
+ this.change.emit($event);
32
+ }
33
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChooseCountryWithFlagComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
34
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ChooseCountryWithFlagComponent, selector: "choose-country-with-flag", inputs: { items: "items" }, outputs: { change: "change" }, providers: [
35
+ {
36
+ provide: NG_VALUE_ACCESSOR,
37
+ useExisting: forwardRef(() => ChooseCountryWithFlagComponent),
38
+ multi: true
39
+ }
40
+ ], ngImport: i0, template: "<div>\r\n <ng-select\r\n (blur)=\"updateBlur()\"\r\n class=\"custom\"\r\n [items]=\"items\"\r\n (change)=\"onSelectionChanged($event)\"\r\n bindLabel=\"name\"\r\n bindValue=\"id\"\r\n [(ngModel)]=\"selectedItem\"\r\n placeholder=\"Choose country\"\r\n >\r\n <ng-template ng-label-tmp let-item=\"item\" let-clear=\"clear\">\r\n <div class=\"ng-value-label label-container\">\r\n <mat-icon [svgIcon]=\"item?.code2?.toLowerCase()\"></mat-icon>\r\n {{ item.code2 }}\r\n </div>\r\n </ng-template>\r\n <ng-template ng-option-tmp let-item=\"item\" class=\"options-list\">\r\n <mat-icon [svgIcon]=\"item?.code2?.toLowerCase()\"></mat-icon>\r\n <span class=\"country-name\">\r\n {{\r\n item.name.length > 15\r\n ? (item.name | slice: 0 : 15) + \"...\"\r\n : item.name\r\n }}\r\n </span>\r\n </ng-template>\r\n </ng-select>\r\n</div>\r\n", styles: [""], dependencies: [{ kind: "component", type: i1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: i3.NgSelectComponent, selector: "ng-select", inputs: ["bindLabel", "bindValue", "markFirst", "placeholder", "notFoundText", "typeToSearchText", "addTagText", "loadingText", "clearAllText", "appearance", "dropdownPosition", "appendTo", "loading", "closeOnSelect", "hideSelected", "selectOnTab", "openOnEnter", "maxSelectedItems", "groupBy", "groupValue", "bufferAmount", "virtualScroll", "selectableGroup", "selectableGroupAsModel", "searchFn", "trackByFn", "clearOnBackspace", "labelForId", "inputAttrs", "tabIndex", "readonly", "searchWhileComposing", "minTermLength", "editableSearchTerm", "keyDownFn", "typeahead", "multiple", "addTag", "searchable", "clearable", "isOpen", "items", "compareWith", "clearSearchOnAdd", "deselectOnClick"], outputs: ["blur", "focus", "change", "open", "close", "search", "clear", "add", "remove", "scroll", "scrollToEnd"] }, { kind: "directive", type: i3.NgOptionTemplateDirective, selector: "[ng-option-tmp]" }, { kind: "directive", type: i3.NgLabelTemplateDirective, selector: "[ng-label-tmp]" }, { kind: "pipe", type: i4.SlicePipe, name: "slice" }] });
41
+ }
42
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ChooseCountryWithFlagComponent, decorators: [{
43
+ type: Component,
44
+ args: [{ selector: 'choose-country-with-flag', providers: [
45
+ {
46
+ provide: NG_VALUE_ACCESSOR,
47
+ useExisting: forwardRef(() => ChooseCountryWithFlagComponent),
48
+ multi: true
49
+ }
50
+ ], template: "<div>\r\n <ng-select\r\n (blur)=\"updateBlur()\"\r\n class=\"custom\"\r\n [items]=\"items\"\r\n (change)=\"onSelectionChanged($event)\"\r\n bindLabel=\"name\"\r\n bindValue=\"id\"\r\n [(ngModel)]=\"selectedItem\"\r\n placeholder=\"Choose country\"\r\n >\r\n <ng-template ng-label-tmp let-item=\"item\" let-clear=\"clear\">\r\n <div class=\"ng-value-label label-container\">\r\n <mat-icon [svgIcon]=\"item?.code2?.toLowerCase()\"></mat-icon>\r\n {{ item.code2 }}\r\n </div>\r\n </ng-template>\r\n <ng-template ng-option-tmp let-item=\"item\" class=\"options-list\">\r\n <mat-icon [svgIcon]=\"item?.code2?.toLowerCase()\"></mat-icon>\r\n <span class=\"country-name\">\r\n {{\r\n item.name.length > 15\r\n ? (item.name | slice: 0 : 15) + \"...\"\r\n : item.name\r\n }}\r\n </span>\r\n </ng-template>\r\n </ng-select>\r\n</div>\r\n" }]
51
+ }], ctorParameters: function () { return []; }, propDecorators: { items: [{
52
+ type: Input
53
+ }], change: [{
54
+ type: Output
55
+ }] } });
56
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2hvb3NlLWNvdW50cnktd2l0aC1mbGFnLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9jaG9vc2UtY291bnRyeS13aXRoLWZsYWcvY2hvb3NlLWNvdW50cnktd2l0aC1mbGFnLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9jaG9vc2UtY291bnRyeS13aXRoLWZsYWcvY2hvb3NlLWNvdW50cnktd2l0aC1mbGFnLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsWUFBWSxFQUFFLEtBQUssRUFBVSxNQUFNLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQzNGLE9BQU8sRUFBd0IsaUJBQWlCLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7O0FBY3pFLE1BQU0sT0FBTyw4QkFBOEI7SUFDaEMsS0FBSyxDQUFRO0lBQ3RCLFlBQVksQ0FBTTtJQUNSLE1BQU0sR0FBRyxJQUFJLFlBQVksRUFBRSxDQUFDO0lBRXRDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDO0lBRUQsVUFBVSxDQUFDLEtBQVU7UUFDbkIsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUM7SUFDNUIsQ0FBQztJQUVNLGdCQUFnQixDQUFDLEVBQU87UUFDN0IsSUFBSSxDQUFDLGVBQWUsR0FBRyxFQUFFLENBQUM7SUFDNUIsQ0FBQztJQUVNLGlCQUFpQixDQUFDLEVBQU87UUFDOUIsSUFBSSxDQUFDLGNBQWMsR0FBRyxFQUFFLENBQUM7SUFDM0IsQ0FBQztJQUVPLGVBQWUsR0FBRyxDQUFDLENBQU0sRUFBRSxFQUFFLEdBQUcsQ0FBQyxDQUFDO0lBQ2xDLGNBQWMsR0FBRyxHQUFHLEVBQUUsR0FBRyxDQUFDLENBQUM7SUFFbkMsVUFBVTtRQUNSLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUN4QixDQUFDO0lBRUQsa0JBQWtCLENBQUMsTUFBTTtRQUN2QixJQUFJLENBQUMsZUFBZSxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztRQUN4QyxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxNQUFNLENBQUMsQ0FBQztJQUMzQixDQUFDO3dHQWhDVSw4QkFBOEI7NEZBQTlCLDhCQUE4Qiw4R0FSOUI7WUFDVDtnQkFDRSxPQUFPLEVBQUUsaUJBQWlCO2dCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSxDQUFDLDhCQUE4QixDQUFDO2dCQUM3RCxLQUFLLEVBQUUsSUFBSTthQUNaO1NBQUMsMEJDWk4sdzdCQTZCQTs7NEZEZGEsOEJBQThCO2tCQVoxQyxTQUFTOytCQUNFLDBCQUEwQixhQUd6Qjt3QkFDVDs0QkFDRSxPQUFPLEVBQUUsaUJBQWlCOzRCQUMxQixXQUFXLEVBQUUsVUFBVSxDQUFDLEdBQUcsRUFBRSwrQkFBK0IsQ0FBQzs0QkFDN0QsS0FBSyxFQUFFLElBQUk7eUJBQ1o7cUJBQUM7MEVBSUssS0FBSztzQkFBYixLQUFLO2dCQUVJLE1BQU07c0JBQWYsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25Jbml0LCBPdXRwdXQsIGZvcndhcmRSZWYgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgQ29udHJvbFZhbHVlQWNjZXNzb3IsIE5HX1ZBTFVFX0FDQ0VTU09SIH0gZnJvbSAnQGFuZ3VsYXIvZm9ybXMnO1xyXG5cclxuQENvbXBvbmVudCh7XHJcbiAgc2VsZWN0b3I6ICdjaG9vc2UtY291bnRyeS13aXRoLWZsYWcnLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9jaG9vc2UtY291bnRyeS13aXRoLWZsYWcuY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2Nob29zZS1jb3VudHJ5LXdpdGgtZmxhZy5jb21wb25lbnQuc2NzcyddLFxyXG4gIHByb3ZpZGVyczogW1xyXG4gICAge1xyXG4gICAgICBwcm92aWRlOiBOR19WQUxVRV9BQ0NFU1NPUixcclxuICAgICAgdXNlRXhpc3Rpbmc6IGZvcndhcmRSZWYoKCkgPT4gQ2hvb3NlQ291bnRyeVdpdGhGbGFnQ29tcG9uZW50KSxcclxuICAgICAgbXVsdGk6IHRydWVcclxuICAgIH1dXHJcbn0pXHJcblxyXG5leHBvcnQgY2xhc3MgQ2hvb3NlQ291bnRyeVdpdGhGbGFnQ29tcG9uZW50IGltcGxlbWVudHMgT25Jbml0LCBDb250cm9sVmFsdWVBY2Nlc3NvciB7XHJcbiAgQElucHV0KCkgaXRlbXM6IGFueVtdO1xyXG4gIHNlbGVjdGVkSXRlbTogYW55O1xyXG4gIEBPdXRwdXQoKSBjaGFuZ2UgPSBuZXcgRXZlbnRFbWl0dGVyKCk7XHJcblxyXG4gIGNvbnN0cnVjdG9yKCkgeyB9XHJcblxyXG4gIG5nT25Jbml0KCk6IHZvaWQge1xyXG4gIH1cclxuXHJcbiAgd3JpdGVWYWx1ZSh2YWx1ZTogYW55KTogdm9pZCB7XHJcbiAgICB0aGlzLnNlbGVjdGVkSXRlbSA9IHZhbHVlO1xyXG4gIH1cclxuXHJcbiAgcHVibGljIHJlZ2lzdGVyT25DaGFuZ2UoZm46IGFueSkge1xyXG4gICAgdGhpcy5wcm9wYWdhdGVDaGFuZ2UgPSBmbjtcclxuICB9XHJcblxyXG4gIHB1YmxpYyByZWdpc3Rlck9uVG91Y2hlZChmbjogYW55KSB7XHJcbiAgICB0aGlzLnByb3BvZ2F0ZVRvdWNoID0gZm47XHJcbiAgfVxyXG5cclxuICBwcml2YXRlIHByb3BhZ2F0ZUNoYW5nZSA9IChfOiBhbnkpID0+IHsgfTtcclxuICBwcml2YXRlIHByb3BvZ2F0ZVRvdWNoID0gKCkgPT4geyB9O1xyXG5cclxuICB1cGRhdGVCbHVyKCkge1xyXG4gICAgdGhpcy5wcm9wb2dhdGVUb3VjaCgpO1xyXG4gIH1cclxuXHJcbiAgb25TZWxlY3Rpb25DaGFuZ2VkKCRldmVudCkge1xyXG4gICAgdGhpcy5wcm9wYWdhdGVDaGFuZ2UodGhpcy5zZWxlY3RlZEl0ZW0pO1xyXG4gICAgdGhpcy5jaGFuZ2UuZW1pdCgkZXZlbnQpO1xyXG4gIH1cclxufSIsIjxkaXY+XHJcbiAgPG5nLXNlbGVjdFxyXG4gICAgKGJsdXIpPVwidXBkYXRlQmx1cigpXCJcclxuICAgIGNsYXNzPVwiY3VzdG9tXCJcclxuICAgIFtpdGVtc109XCJpdGVtc1wiXHJcbiAgICAoY2hhbmdlKT1cIm9uU2VsZWN0aW9uQ2hhbmdlZCgkZXZlbnQpXCJcclxuICAgIGJpbmRMYWJlbD1cIm5hbWVcIlxyXG4gICAgYmluZFZhbHVlPVwiaWRcIlxyXG4gICAgWyhuZ01vZGVsKV09XCJzZWxlY3RlZEl0ZW1cIlxyXG4gICAgcGxhY2Vob2xkZXI9XCJDaG9vc2UgY291bnRyeVwiXHJcbiAgPlxyXG4gICAgPG5nLXRlbXBsYXRlIG5nLWxhYmVsLXRtcCBsZXQtaXRlbT1cIml0ZW1cIiBsZXQtY2xlYXI9XCJjbGVhclwiPlxyXG4gICAgICA8ZGl2IGNsYXNzPVwibmctdmFsdWUtbGFiZWwgbGFiZWwtY29udGFpbmVyXCI+XHJcbiAgICAgICAgPG1hdC1pY29uIFtzdmdJY29uXT1cIml0ZW0/LmNvZGUyPy50b0xvd2VyQ2FzZSgpXCI+PC9tYXQtaWNvbj5cclxuICAgICAgICB7eyBpdGVtLmNvZGUyIH19XHJcbiAgICAgIDwvZGl2PlxyXG4gICAgPC9uZy10ZW1wbGF0ZT5cclxuICAgIDxuZy10ZW1wbGF0ZSBuZy1vcHRpb24tdG1wIGxldC1pdGVtPVwiaXRlbVwiIGNsYXNzPVwib3B0aW9ucy1saXN0XCI+XHJcbiAgICAgIDxtYXQtaWNvbiBbc3ZnSWNvbl09XCJpdGVtPy5jb2RlMj8udG9Mb3dlckNhc2UoKVwiPjwvbWF0LWljb24+XHJcbiAgICAgIDxzcGFuIGNsYXNzPVwiY291bnRyeS1uYW1lXCI+XHJcbiAgICAgICAge3tcclxuICAgICAgICAgIGl0ZW0ubmFtZS5sZW5ndGggPiAxNVxyXG4gICAgICAgICAgICA/IChpdGVtLm5hbWUgfCBzbGljZTogMCA6IDE1KSArIFwiLi4uXCJcclxuICAgICAgICAgICAgOiBpdGVtLm5hbWVcclxuICAgICAgICB9fVxyXG4gICAgICA8L3NwYW4+XHJcbiAgICA8L25nLXRlbXBsYXRlPlxyXG4gIDwvbmctc2VsZWN0PlxyXG48L2Rpdj5cclxuIl19
@@ -0,0 +1,20 @@
1
+ import { Component, Input } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ import * as i1 from "@angular/material/button";
4
+ import * as i2 from "@angular/forms";
5
+ import * as i3 from "../social-media-icons/social-media-icons.component";
6
+ export class ComingSoonComponent {
7
+ ctaText = "Get notified when this feature is available.";
8
+ socialMediaLinks = { instagram: "https://www.instagram.com", faceBook: "https://www.facebook.com", youTube: "https://www.youtube.com", linkedIn: "https://www.linkedin.com" };
9
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ComingSoonComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
10
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: ComingSoonComponent, selector: "coming-soon", inputs: { ctaText: "ctaText", socialMediaLinks: "socialMediaLinks" }, ngImport: i0, template: "<section class=\"page\">\r\n <div class=\"coming-soon\">\r\n <div class=\"title\">\r\n Coming Soon\r\n </div>\r\n <div class=\"subtitle\">\r\n {{ctaText}}\r\n </div>\r\n <form>\r\n <div class=\"registration-field\">\r\n <div class=\"email-field\">\r\n <input type=\"email\" placeholder=\"Email Address\">\r\n </div>\r\n <button mat-raised-button class=\"submit\" type=\"submit\">\r\n Submit\r\n </button>\r\n </div>\r\n </form>\r\n <div class=\"social-media-icons\">\r\n <social-media-icons [color]=\"'#4D4D4D'\" [areIconsInFooter]=\"false\" [socialMediaLinks]=\"socialMediaLinks\"></social-media-icons>\r\n </div>\r\n </div>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.page{width:100%;position:relative;padding:20vh 0}.page .coming-soon{background:url(https://i.ibb.co/crKpSTb/box-left-side-design.png) left center no-repeat,url(https://i.ibb.co/pKTGF8D/coming-soon-right-top-bg.png) right top no-repeat,url(https://i.ibb.co/ckht99W/coming-soon-right-bottom-bg.png) right bottom no-repeat;background-size:2rem,13rem,10rem;margin:auto;background-color:#fff;padding:6rem 4rem;width:60rem;border-radius:2.5rem;box-shadow:.2rem .2rem 7.4rem #00000060;display:flex;flex-direction:column;row-gap:1rem}.page .coming-soon .title{color:#155ed4;font-weight:500;font-size:4rem}.page .coming-soon .subtitle{color:#4d4d4d;font-weight:700;font-size:1.3rem}.page .coming-soon .registration-field{display:flex;flex-direction:row;column-gap:1rem}.page .coming-soon .registration-field .email-field{width:60%}.page .coming-soon .registration-field .email-field input{width:100%}.page .coming-soon .registration-field .submit{color:#fff;background-color:#32353b}.page .coming-soon .registration-field .submit:hover{background-color:#494e57}.page .coming-soon .social-media-icons{font-size:2rem}@media only screen and (max-width: 37.5em){.page .coming-soon{width:90%;text-align:center;background-size:2rem,7rem,7rem}.page .coming-soon .registration-field{flex-direction:column;row-gap:1rem}.page .coming-soon .registration-field .email-field,.page .coming-soon .registration-field .email-field input{width:100%}.page .coming-soon .social-media-icons{margin:auto}}\n"], dependencies: [{ kind: "component", type: i1.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "directive", type: i2.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i2.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "component", type: i3.SocialMediaIconsComponent, selector: "social-media-icons", inputs: ["color", "areIconsInFooter", "socialMediaLinks"] }] });
11
+ }
12
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ComingSoonComponent, decorators: [{
13
+ type: Component,
14
+ args: [{ selector: 'coming-soon', template: "<section class=\"page\">\r\n <div class=\"coming-soon\">\r\n <div class=\"title\">\r\n Coming Soon\r\n </div>\r\n <div class=\"subtitle\">\r\n {{ctaText}}\r\n </div>\r\n <form>\r\n <div class=\"registration-field\">\r\n <div class=\"email-field\">\r\n <input type=\"email\" placeholder=\"Email Address\">\r\n </div>\r\n <button mat-raised-button class=\"submit\" type=\"submit\">\r\n Submit\r\n </button>\r\n </div>\r\n </form>\r\n <div class=\"social-media-icons\">\r\n <social-media-icons [color]=\"'#4D4D4D'\" [areIconsInFooter]=\"false\" [socialMediaLinks]=\"socialMediaLinks\"></social-media-icons>\r\n </div>\r\n </div>\r\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-size:1.6rem;font-family:inherit}input{font-size:1.2rem;padding:.5rem}input:focus{outline:none}.page{width:100%;position:relative;padding:20vh 0}.page .coming-soon{background:url(https://i.ibb.co/crKpSTb/box-left-side-design.png) left center no-repeat,url(https://i.ibb.co/pKTGF8D/coming-soon-right-top-bg.png) right top no-repeat,url(https://i.ibb.co/ckht99W/coming-soon-right-bottom-bg.png) right bottom no-repeat;background-size:2rem,13rem,10rem;margin:auto;background-color:#fff;padding:6rem 4rem;width:60rem;border-radius:2.5rem;box-shadow:.2rem .2rem 7.4rem #00000060;display:flex;flex-direction:column;row-gap:1rem}.page .coming-soon .title{color:#155ed4;font-weight:500;font-size:4rem}.page .coming-soon .subtitle{color:#4d4d4d;font-weight:700;font-size:1.3rem}.page .coming-soon .registration-field{display:flex;flex-direction:row;column-gap:1rem}.page .coming-soon .registration-field .email-field{width:60%}.page .coming-soon .registration-field .email-field input{width:100%}.page .coming-soon .registration-field .submit{color:#fff;background-color:#32353b}.page .coming-soon .registration-field .submit:hover{background-color:#494e57}.page .coming-soon .social-media-icons{font-size:2rem}@media only screen and (max-width: 37.5em){.page .coming-soon{width:90%;text-align:center;background-size:2rem,7rem,7rem}.page .coming-soon .registration-field{flex-direction:column;row-gap:1rem}.page .coming-soon .registration-field .email-field,.page .coming-soon .registration-field .email-field input{width:100%}.page .coming-soon .social-media-icons{margin:auto}}\n"] }]
15
+ }], propDecorators: { ctaText: [{
16
+ type: Input
17
+ }], socialMediaLinks: [{
18
+ type: Input
19
+ }] } });
20
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29taW5nLXNvb24uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvam9vbGVyLXdlYnNpdGVzLXNoYXJlZC9zcmMvbGliL2NvbWluZy1zb29uL2NvbWluZy1zb29uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2pvb2xlci13ZWJzaXRlcy1zaGFyZWQvc3JjL2xpYi9jb21pbmctc29vbi9jb21pbmctc29vbi5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7Ozs7QUFRakQsTUFBTSxPQUFPLG1CQUFtQjtJQUNyQixPQUFPLEdBQVcsOENBQThDLENBQUM7SUFDakUsZ0JBQWdCLEdBQXFCLEVBQUUsU0FBUyxFQUFFLDJCQUEyQixFQUFFLFFBQVEsRUFBRSwwQkFBMEIsRUFBRSxPQUFPLEVBQUUseUJBQXlCLEVBQUUsUUFBUSxFQUFFLDBCQUEwQixFQUFFLENBQUM7d0dBRjlMLG1CQUFtQjs0RkFBbkIsbUJBQW1CLHlIQ1JoQyx3MUJBc0JVOzs0RkRkRyxtQkFBbUI7a0JBTC9CLFNBQVM7K0JBQ0UsYUFBYTs4QkFLZCxPQUFPO3NCQUFmLEtBQUs7Z0JBQ0csZ0JBQWdCO3NCQUF4QixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBJbnB1dCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xyXG5pbXBvcnQgeyBzb2NpYWxNZWRpYUxpbmtzIH0gZnJvbSAnLi4vc29jaWFsLW1lZGlhLWljb25zL3NvY2lhbC1tZWRpYS1saW5rcy5tb2RlbCc7XHJcblxyXG5AQ29tcG9uZW50KHtcclxuICBzZWxlY3RvcjogJ2NvbWluZy1zb29uJyxcclxuICB0ZW1wbGF0ZVVybDogJy4vY29taW5nLXNvb24uY29tcG9uZW50Lmh0bWwnLFxyXG4gIHN0eWxlVXJsczogWycuL2NvbWluZy1zb29uLmNvbXBvbmVudC5zY3NzJ11cclxufSlcclxuZXhwb3J0IGNsYXNzIENvbWluZ1Nvb25Db21wb25lbnQge1xyXG4gIEBJbnB1dCgpIGN0YVRleHQ6IHN0cmluZyA9IFwiR2V0IG5vdGlmaWVkIHdoZW4gdGhpcyBmZWF0dXJlIGlzIGF2YWlsYWJsZS5cIjtcclxuICBASW5wdXQoKSBzb2NpYWxNZWRpYUxpbmtzOiBzb2NpYWxNZWRpYUxpbmtzID0geyBpbnN0YWdyYW06IFwiaHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbVwiLCBmYWNlQm9vazogXCJodHRwczovL3d3dy5mYWNlYm9vay5jb21cIiwgeW91VHViZTogXCJodHRwczovL3d3dy55b3V0dWJlLmNvbVwiLCBsaW5rZWRJbjogXCJodHRwczovL3d3dy5saW5rZWRpbi5jb21cIiB9O1xyXG59XHJcbiIsIjxzZWN0aW9uIGNsYXNzPVwicGFnZVwiPlxyXG4gICAgPGRpdiBjbGFzcz1cImNvbWluZy1zb29uXCI+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInRpdGxlXCI+XHJcbiAgICAgICAgICAgIENvbWluZyBTb29uXHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInN1YnRpdGxlXCI+XHJcbiAgICAgICAgICAgIHt7Y3RhVGV4dH19XHJcbiAgICAgICAgPC9kaXY+XHJcbiAgICAgICAgPGZvcm0+XHJcbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJyZWdpc3RyYXRpb24tZmllbGRcIj5cclxuICAgICAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJlbWFpbC1maWVsZFwiPlxyXG4gICAgICAgICAgICAgICAgICAgIDxpbnB1dCB0eXBlPVwiZW1haWxcIiBwbGFjZWhvbGRlcj1cIkVtYWlsIEFkZHJlc3NcIj5cclxuICAgICAgICAgICAgICAgIDwvZGl2PlxyXG4gICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtcmFpc2VkLWJ1dHRvbiBjbGFzcz1cInN1Ym1pdFwiIHR5cGU9XCJzdWJtaXRcIj5cclxuICAgICAgICAgICAgICAgICAgICBTdWJtaXRcclxuICAgICAgICAgICAgICAgIDwvYnV0dG9uPlxyXG4gICAgICAgICAgICA8L2Rpdj5cclxuICAgICAgICA8L2Zvcm0+XHJcbiAgICAgICAgPGRpdiBjbGFzcz1cInNvY2lhbC1tZWRpYS1pY29uc1wiPlxyXG4gICAgICAgICAgICA8c29jaWFsLW1lZGlhLWljb25zIFtjb2xvcl09XCInIzRENEQ0RCdcIiBbYXJlSWNvbnNJbkZvb3Rlcl09XCJmYWxzZVwiIFtzb2NpYWxNZWRpYUxpbmtzXT1cInNvY2lhbE1lZGlhTGlua3NcIj48L3NvY2lhbC1tZWRpYS1pY29ucz5cclxuICAgICAgICA8L2Rpdj5cclxuICAgIDwvZGl2PlxyXG48L3NlY3Rpb24+Il19