@foblex/m-render 2.5.1 → 2.5.3

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 (380) hide show
  1. package/LICENSE +1 -1
  2. package/esm2022/lib/common-components/f-checkbox/f-checkbox.component.mjs +73 -0
  3. package/esm2022/lib/{f-documentation → common-components}/f-cookie-popup/f-cookie-popup.component.mjs +6 -6
  4. package/esm2022/lib/common-components/f-theme-button/f-theme-button.component.mjs +44 -0
  5. package/esm2022/lib/common-components/index.mjs +4 -0
  6. package/esm2022/lib/common-services/analytics/f-analytics.service.mjs +6 -8
  7. package/esm2022/lib/common-services/f-head-tag.service.mjs +6 -4
  8. package/esm2022/lib/common-services/f-meta.service.mjs +80 -0
  9. package/esm2022/lib/common-services/f-popover.service.mjs +25 -0
  10. package/esm2022/lib/common-services/index.mjs +3 -1
  11. package/esm2022/lib/common-services/json-ld/f-json-ld.service.mjs +6 -4
  12. package/esm2022/lib/domain/f-state.service.mjs +6 -5
  13. package/esm2022/lib/domain/get-version-handler/get-version.handler.mjs +28 -0
  14. package/esm2022/lib/domain/get-version-handler/get-version.request.mjs +7 -0
  15. package/esm2022/lib/domain/get-version-handler/index.mjs +3 -0
  16. package/esm2022/lib/domain/handle-navigation-links/handle-navigation-links.handler.mjs +53 -0
  17. package/esm2022/lib/domain/handle-navigation-links/handle-navigation-links.request.mjs +7 -0
  18. package/esm2022/lib/domain/handle-navigation-links/index.mjs +3 -0
  19. package/esm2022/lib/domain/i-environment-service.mjs +3 -0
  20. package/esm2022/lib/domain/index.mjs +4 -8
  21. package/esm2022/lib/f-documentation/domain/i-docs-environment.mjs +2 -0
  22. package/esm2022/lib/f-documentation/domain/index.mjs +2 -0
  23. package/esm2022/lib/f-documentation/f-badge/f-badge.component.mjs +6 -8
  24. package/esm2022/lib/f-documentation/f-documentation-environment.service.mjs +69 -0
  25. package/esm2022/lib/f-documentation/f-documentation.component.mjs +28 -30
  26. package/esm2022/lib/f-documentation/f-hamburger-button/f-hamburger-button.component.mjs +6 -5
  27. package/esm2022/lib/f-documentation/f-header/f-header.component.mjs +10 -16
  28. package/esm2022/lib/f-documentation/f-header-menu/f-header-menu.component.mjs +13 -16
  29. package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-group.mjs +2 -0
  30. package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-item-badge.mjs +2 -0
  31. package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-item.mjs +2 -0
  32. package/esm2022/lib/f-documentation/f-navigation-panel/domain/index.mjs +4 -0
  33. package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-group/f-navigation-group.component.mjs +21 -0
  34. package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-header/f-navigation-header.component.mjs +26 -0
  35. package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-item/f-navigation-item.component.mjs +11 -0
  36. package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-panel.component.mjs +101 -0
  37. package/esm2022/lib/f-documentation/f-navigation-panel/index.mjs +6 -0
  38. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.mjs +104 -0
  39. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.mjs +7 -0
  40. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/index.mjs +3 -0
  41. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.mjs +35 -0
  42. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.mjs +7 -0
  43. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/i-parsed-container.mjs +2 -0
  44. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/index.mjs +5 -0
  45. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/copy-to-clipboard.mjs +15 -0
  46. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/index.mjs +2 -0
  47. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.mjs +46 -0
  48. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.mjs +54 -0
  49. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.mjs +2 -0
  50. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.mjs +3 -0
  51. package/esm2022/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group-body.handler.mjs +4 -1
  52. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.mjs +63 -0
  53. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.mjs +10 -0
  54. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/index.mjs +7 -0
  55. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/change-code-focused-syntax.pre-processor.mjs +23 -0
  56. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/highlight.service.mjs +56 -0
  57. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/index.mjs +6 -0
  58. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/mark-code-focused-blocks.post-processor.mjs +53 -0
  59. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/modify-punctuation-highlight.post-processor.mjs +22 -0
  60. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/separate-code-by-lines.post-processor.mjs +28 -0
  61. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/index.mjs +5 -0
  62. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/index.mjs +4 -0
  63. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/markdown.service.mjs +69 -0
  64. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/e-markdown-container-type.mjs +13 -0
  65. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/i-markdown-it-token.mjs +2 -0
  66. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/index.mjs +8 -0
  67. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-alerts.mjs +19 -0
  68. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-group.mjs +54 -0
  69. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-view.mjs +15 -0
  70. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-example-group.mjs +92 -0
  71. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-preview-group.mjs +50 -0
  72. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/utils/get-content.mjs +17 -0
  73. package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/utils/index.mjs +2 -0
  74. package/esm2022/lib/f-documentation/f-page/f-markdown/f-markdown-renderer.component.mjs +84 -0
  75. package/esm2022/lib/f-documentation/f-page/f-markdown/index.mjs +3 -0
  76. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.mjs +37 -0
  77. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.request.mjs +7 -0
  78. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.mjs +9 -0
  79. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/index.mjs +4 -0
  80. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/index.mjs +2 -0
  81. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/i-page-link.mjs +2 -0
  82. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/index.mjs +3 -0
  83. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.mjs +11 -0
  84. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/f-footer-edit-link.component.mjs +11 -0
  85. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.mjs +2 -0
  86. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/f-footer-last-updated.component.mjs +11 -0
  87. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.mjs +2 -0
  88. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/index.mjs +2 -0
  89. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.mjs +19 -0
  90. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.mjs +2 -0
  91. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.mjs +11 -0
  92. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/index.mjs +3 -0
  93. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-markdown-footer.component.mjs +89 -0
  94. package/esm2022/lib/f-documentation/f-page/f-markdown-footer/index.mjs +5 -0
  95. package/esm2022/lib/f-documentation/f-page/f-page.component.mjs +18 -0
  96. package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.mjs +14 -0
  97. package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/index.mjs +2 -0
  98. package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content.component.mjs +69 -0
  99. package/esm2022/lib/f-documentation/f-page/f-table-of-content/index.mjs +3 -0
  100. package/esm2022/lib/f-documentation/f-page/index.mjs +5 -0
  101. package/esm2022/lib/f-documentation/f-preview/f-preview.component.mjs +16 -7
  102. package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.mjs +53 -0
  103. package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.mjs +7 -0
  104. package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/index.mjs +3 -0
  105. package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.mjs +14 -0
  106. package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.mjs +9 -0
  107. package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/index.mjs +3 -0
  108. package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.handler.mjs +52 -0
  109. package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.request.mjs +9 -0
  110. package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/index.mjs +3 -0
  111. package/esm2022/lib/f-documentation/f-scrollable-container/domain/i-table-of-content-item.mjs +2 -0
  112. package/esm2022/lib/f-documentation/f-scrollable-container/domain/index.mjs +7 -0
  113. package/esm2022/lib/f-documentation/f-scrollable-container/domain/scroll-to-element-in-container.mjs +35 -0
  114. package/esm2022/lib/f-documentation/f-scrollable-container/domain/table-of-content-data.mjs +9 -0
  115. package/esm2022/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/f-scrollable-container.component.mjs +7 -5
  116. package/esm2022/lib/f-documentation/f-scrollable-container/f-scrollable.service.mjs +60 -0
  117. package/esm2022/lib/f-documentation/f-scrollable-container/index.mjs +3 -0
  118. package/esm2022/lib/f-documentation/f-social-links/f-social-links.component.mjs +8 -13
  119. package/esm2022/lib/f-documentation/f-version/f-version.component.mjs +8 -11
  120. package/esm2022/lib/f-documentation/index.mjs +9 -5
  121. package/esm2022/lib/f-documentation/providers.mjs +3 -0
  122. package/esm2022/lib/f-documentation/router.mjs +13 -0
  123. package/esm2022/lib/f-home-page/domain/i-home-page-environment.mjs +2 -0
  124. package/esm2022/lib/f-home-page/domain/i-home-page-feature.mjs +2 -0
  125. package/esm2022/lib/f-home-page/domain/i-home-page-footer.mjs +2 -0
  126. package/esm2022/lib/f-home-page/domain/i-home-page-hero.mjs +2 -0
  127. package/esm2022/lib/f-home-page/domain/i-home-page-link.mjs +2 -0
  128. package/esm2022/lib/f-home-page/domain/index.mjs +6 -0
  129. package/esm2022/lib/f-home-page/f-home-page-environment.service.mjs +47 -0
  130. package/esm2022/lib/f-home-page/f-home-page-features/f-home-page-features.component.mjs +13 -0
  131. package/esm2022/lib/f-home-page/f-home-page-footer/f-home-page-footer.component.mjs +13 -0
  132. package/esm2022/lib/f-home-page/f-home-page-header/f-home-page-header.component.mjs +17 -0
  133. package/esm2022/lib/f-home-page/f-home-page-hero/f-home-page-buttons-row/f-home-page-buttons-row.component.mjs +16 -0
  134. package/esm2022/lib/f-home-page/f-home-page-hero/f-home-page-hero.component.mjs +16 -0
  135. package/esm2022/lib/f-home-page/f-home-page.component.mjs +63 -0
  136. package/esm2022/lib/f-home-page/index.mjs +9 -0
  137. package/esm2022/lib/f-home-page/providers.mjs +3 -0
  138. package/esm2022/lib/f-home-page/router.mjs +7 -0
  139. package/esm2022/lib/index.mjs +3 -4
  140. package/fesm2022/foblex-m-render.mjs +1203 -902
  141. package/fesm2022/foblex-m-render.mjs.map +1 -1
  142. package/lib/common-components/index.d.ts +3 -0
  143. package/lib/common-services/analytics/set-cookie-consent.d.ts +1 -1
  144. package/lib/{domain → common-services}/f-meta.service.d.ts +3 -3
  145. package/lib/{domain → common-services}/f-popover.service.d.ts +2 -1
  146. package/lib/common-services/index.d.ts +2 -0
  147. package/lib/domain/{features/get-version-handler → get-version-handler}/get-version.request.d.ts +1 -1
  148. package/lib/domain/i-environment-service.d.ts +6 -0
  149. package/lib/domain/index.d.ts +3 -7
  150. package/lib/{domain → f-documentation/domain}/i-docs-environment.d.ts +6 -6
  151. package/lib/f-documentation/domain/index.d.ts +1 -0
  152. package/lib/{domain/f-environment.service.d.ts → f-documentation/f-documentation-environment.service.d.ts} +5 -5
  153. package/lib/f-documentation/f-documentation.component.d.ts +6 -9
  154. package/lib/f-documentation/f-hamburger-button/f-hamburger-button.component.d.ts +1 -1
  155. package/lib/f-documentation/f-header/f-header.component.d.ts +0 -3
  156. package/lib/f-documentation/f-header-menu/f-header-menu.component.d.ts +3 -5
  157. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-header/f-navigation-header.component.d.ts +2 -2
  158. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-panel.component.d.ts +2 -3
  159. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.d.ts +2 -2
  160. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/markdown.service.d.ts +2 -2
  161. package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.d.ts +2 -2
  162. package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-markdown-footer.component.d.ts +3 -2
  163. package/lib/{f-page → f-documentation/f-page}/f-table-of-content/f-table-of-content.component.d.ts +2 -2
  164. package/lib/f-documentation/f-preview/f-preview.component.d.ts +3 -3
  165. package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/f-scrollable.service.d.ts +2 -2
  166. package/lib/f-documentation/f-social-links/f-social-links.component.d.ts +1 -4
  167. package/lib/f-documentation/f-version/f-version.component.d.ts +0 -3
  168. package/lib/f-documentation/index.d.ts +8 -4
  169. package/lib/f-documentation/providers.d.ts +3 -0
  170. package/lib/f-documentation/router.d.ts +2 -0
  171. package/lib/f-home-page/domain/i-home-page-environment.d.ts +18 -0
  172. package/lib/f-home-page/domain/i-home-page-feature.d.ts +4 -0
  173. package/lib/f-home-page/domain/i-home-page-footer.d.ts +3 -0
  174. package/lib/f-home-page/domain/i-home-page-hero.d.ts +6 -0
  175. package/lib/f-home-page/domain/i-home-page-link.d.ts +6 -0
  176. package/lib/f-home-page/domain/index.d.ts +5 -0
  177. package/lib/f-home-page/f-home-page-environment.service.d.ts +20 -0
  178. package/lib/f-home-page/f-home-page-features/f-home-page-features.component.d.ts +6 -0
  179. package/lib/f-home-page/f-home-page-footer/f-home-page-footer.component.d.ts +6 -0
  180. package/lib/f-home-page/f-home-page-header/f-home-page-header.component.d.ts +7 -0
  181. package/lib/f-home-page/f-home-page-hero/f-home-page-buttons-row/f-home-page-buttons-row.component.d.ts +6 -0
  182. package/lib/f-home-page/f-home-page-hero/f-home-page-hero.component.d.ts +6 -0
  183. package/lib/f-home-page/f-home-page.component.d.ts +17 -0
  184. package/lib/f-home-page/index.d.ts +8 -0
  185. package/lib/f-home-page/providers.d.ts +3 -0
  186. package/lib/f-home-page/router.d.ts +2 -0
  187. package/lib/index.d.ts +2 -3
  188. package/package.json +3 -3
  189. package/esm2022/lib/domain/f-environment.service.mjs +0 -66
  190. package/esm2022/lib/domain/f-meta.service.mjs +0 -77
  191. package/esm2022/lib/domain/f-popover.service.mjs +0 -25
  192. package/esm2022/lib/domain/features/get-version-handler/get-version.handler.mjs +0 -27
  193. package/esm2022/lib/domain/features/get-version-handler/get-version.request.mjs +0 -6
  194. package/esm2022/lib/domain/features/get-version-handler/index.mjs +0 -3
  195. package/esm2022/lib/domain/features/handle-navigation-links/handle-navigation-links.handler.mjs +0 -51
  196. package/esm2022/lib/domain/features/handle-navigation-links/handle-navigation-links.request.mjs +0 -6
  197. package/esm2022/lib/domain/features/handle-navigation-links/index.mjs +0 -3
  198. package/esm2022/lib/domain/features/index.mjs +0 -3
  199. package/esm2022/lib/domain/i-docs-environment.mjs +0 -2
  200. package/esm2022/lib/domain/providers.mjs +0 -3
  201. package/esm2022/lib/domain/router.mjs +0 -13
  202. package/esm2022/lib/f-documentation/f-checkbox/f-checkbox.component.mjs +0 -70
  203. package/esm2022/lib/f-documentation/f-theme-button/f-theme-button.component.mjs +0 -41
  204. package/esm2022/lib/f-navigation-panel/domain/i-navigation-group.mjs +0 -2
  205. package/esm2022/lib/f-navigation-panel/domain/i-navigation-item-badge.mjs +0 -2
  206. package/esm2022/lib/f-navigation-panel/domain/i-navigation-item.mjs +0 -2
  207. package/esm2022/lib/f-navigation-panel/domain/index.mjs +0 -4
  208. package/esm2022/lib/f-navigation-panel/f-navigation-group/f-navigation-group.component.mjs +0 -22
  209. package/esm2022/lib/f-navigation-panel/f-navigation-header/f-navigation-header.component.mjs +0 -24
  210. package/esm2022/lib/f-navigation-panel/f-navigation-item/f-navigation-item.component.mjs +0 -11
  211. package/esm2022/lib/f-navigation-panel/f-navigation-panel.component.mjs +0 -94
  212. package/esm2022/lib/f-navigation-panel/index.mjs +0 -6
  213. package/esm2022/lib/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.mjs +0 -102
  214. package/esm2022/lib/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.mjs +0 -6
  215. package/esm2022/lib/f-page/f-markdown/domain/handle-dynamic-components/index.mjs +0 -3
  216. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.mjs +0 -34
  217. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.mjs +0 -6
  218. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/i-parsed-container.mjs +0 -2
  219. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/index.mjs +0 -5
  220. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/copy-to-clipboard.mjs +0 -15
  221. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/index.mjs +0 -2
  222. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.mjs +0 -46
  223. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.mjs +0 -51
  224. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.mjs +0 -2
  225. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.mjs +0 -3
  226. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.mjs +0 -60
  227. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.mjs +0 -9
  228. package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/index.mjs +0 -7
  229. package/esm2022/lib/f-page/f-markdown/domain/highlight/change-code-focused-syntax.pre-processor.mjs +0 -23
  230. package/esm2022/lib/f-page/f-markdown/domain/highlight/highlight.service.mjs +0 -54
  231. package/esm2022/lib/f-page/f-markdown/domain/highlight/index.mjs +0 -6
  232. package/esm2022/lib/f-page/f-markdown/domain/highlight/mark-code-focused-blocks.post-processor.mjs +0 -52
  233. package/esm2022/lib/f-page/f-markdown/domain/highlight/modify-punctuation-highlight.post-processor.mjs +0 -22
  234. package/esm2022/lib/f-page/f-markdown/domain/highlight/separate-code-by-lines.post-processor.mjs +0 -28
  235. package/esm2022/lib/f-page/f-markdown/domain/index.mjs +0 -5
  236. package/esm2022/lib/f-page/f-markdown/domain/markdown/index.mjs +0 -4
  237. package/esm2022/lib/f-page/f-markdown/domain/markdown/markdown.service.mjs +0 -65
  238. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/e-markdown-container-type.mjs +0 -13
  239. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/i-markdown-it-token.mjs +0 -2
  240. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/index.mjs +0 -8
  241. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-alerts.mjs +0 -19
  242. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-group.mjs +0 -54
  243. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-view.mjs +0 -15
  244. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-example-group.mjs +0 -92
  245. package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-preview-group.mjs +0 -49
  246. package/esm2022/lib/f-page/f-markdown/domain/markdown/utils/get-content.mjs +0 -17
  247. package/esm2022/lib/f-page/f-markdown/domain/markdown/utils/index.mjs +0 -2
  248. package/esm2022/lib/f-page/f-markdown/f-markdown-renderer.component.mjs +0 -80
  249. package/esm2022/lib/f-page/f-markdown/index.mjs +0 -3
  250. package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.mjs +0 -36
  251. package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.request.mjs +0 -6
  252. package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.mjs +0 -7
  253. package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/index.mjs +0 -4
  254. package/esm2022/lib/f-page/f-markdown-footer/domain/features/index.mjs +0 -2
  255. package/esm2022/lib/f-page/f-markdown-footer/domain/i-page-link.mjs +0 -2
  256. package/esm2022/lib/f-page/f-markdown-footer/domain/index.mjs +0 -3
  257. package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.mjs +0 -11
  258. package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/f-footer-edit-link.component.mjs +0 -11
  259. package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.mjs +0 -2
  260. package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/f-footer-last-updated.component.mjs +0 -11
  261. package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.mjs +0 -2
  262. package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/index.mjs +0 -2
  263. package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.mjs +0 -17
  264. package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.mjs +0 -2
  265. package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.mjs +0 -11
  266. package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/index.mjs +0 -3
  267. package/esm2022/lib/f-page/f-markdown-footer/f-markdown-footer.component.mjs +0 -82
  268. package/esm2022/lib/f-page/f-markdown-footer/index.mjs +0 -5
  269. package/esm2022/lib/f-page/f-page.component.mjs +0 -18
  270. package/esm2022/lib/f-page/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.mjs +0 -16
  271. package/esm2022/lib/f-page/f-table-of-content/f-table-of-content-items/index.mjs +0 -2
  272. package/esm2022/lib/f-page/f-table-of-content/f-table-of-content.component.mjs +0 -63
  273. package/esm2022/lib/f-page/f-table-of-content/index.mjs +0 -3
  274. package/esm2022/lib/f-page/index.mjs +0 -5
  275. package/esm2022/lib/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.mjs +0 -51
  276. package/esm2022/lib/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.mjs +0 -6
  277. package/esm2022/lib/f-scrollable-container/domain/calculate-hash-from-scroll-position/index.mjs +0 -3
  278. package/esm2022/lib/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.mjs +0 -14
  279. package/esm2022/lib/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.mjs +0 -7
  280. package/esm2022/lib/f-scrollable-container/domain/get-absolute-top-to-container/index.mjs +0 -3
  281. package/esm2022/lib/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.handler.mjs +0 -52
  282. package/esm2022/lib/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.request.mjs +0 -7
  283. package/esm2022/lib/f-scrollable-container/domain/get-table-of-content-data/index.mjs +0 -3
  284. package/esm2022/lib/f-scrollable-container/domain/i-table-of-content-item.mjs +0 -2
  285. package/esm2022/lib/f-scrollable-container/domain/index.mjs +0 -7
  286. package/esm2022/lib/f-scrollable-container/domain/scroll-to-element-in-container.mjs +0 -34
  287. package/esm2022/lib/f-scrollable-container/domain/table-of-content-data.mjs +0 -7
  288. package/esm2022/lib/f-scrollable-container/f-scrollable.service.mjs +0 -57
  289. package/esm2022/lib/f-scrollable-container/index.mjs +0 -3
  290. package/lib/domain/features/index.d.ts +0 -2
  291. package/lib/domain/providers.d.ts +0 -3
  292. package/lib/domain/router.d.ts +0 -2
  293. package/lib/{f-documentation → common-components}/f-checkbox/f-checkbox.component.d.ts +0 -0
  294. package/lib/{f-documentation → common-components}/f-cookie-popup/f-cookie-popup.component.d.ts +0 -0
  295. package/lib/{f-documentation → common-components}/f-theme-button/f-theme-button.component.d.ts +0 -0
  296. package/lib/domain/{features/get-version-handler → get-version-handler}/get-version.handler.d.ts +0 -0
  297. package/lib/domain/{features/get-version-handler → get-version-handler}/index.d.ts +0 -0
  298. package/lib/domain/{features/handle-navigation-links → handle-navigation-links}/handle-navigation-links.handler.d.ts +0 -0
  299. package/lib/domain/{features/handle-navigation-links → handle-navigation-links}/handle-navigation-links.request.d.ts +0 -0
  300. package/lib/domain/{features/handle-navigation-links → handle-navigation-links}/index.d.ts +0 -0
  301. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/i-navigation-group.d.ts +0 -0
  302. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/i-navigation-item-badge.d.ts +0 -0
  303. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/i-navigation-item.d.ts +0 -0
  304. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/index.d.ts +0 -0
  305. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-group/f-navigation-group.component.d.ts +0 -0
  306. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-item/f-navigation-item.component.d.ts +0 -0
  307. package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/index.d.ts +0 -0
  308. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.d.ts +0 -0
  309. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-dynamic-components/index.d.ts +0 -0
  310. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.d.ts +0 -0
  311. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.d.ts +0 -0
  312. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/i-parsed-container.d.ts +0 -0
  313. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/index.d.ts +0 -0
  314. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/copy-to-clipboard.d.ts +0 -0
  315. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/index.d.ts +0 -0
  316. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.d.ts +0 -0
  317. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.d.ts +0 -0
  318. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.d.ts +0 -0
  319. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.d.ts +0 -0
  320. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group-body.handler.d.ts +0 -0
  321. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.d.ts +0 -0
  322. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.d.ts +0 -0
  323. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/index.d.ts +0 -0
  324. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/change-code-focused-syntax.pre-processor.d.ts +0 -0
  325. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/highlight.service.d.ts +0 -0
  326. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/index.d.ts +0 -0
  327. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/mark-code-focused-blocks.post-processor.d.ts +0 -0
  328. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/modify-punctuation-highlight.post-processor.d.ts +0 -0
  329. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/separate-code-by-lines.post-processor.d.ts +0 -0
  330. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/index.d.ts +0 -0
  331. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/index.d.ts +0 -0
  332. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/e-markdown-container-type.d.ts +0 -0
  333. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/i-markdown-it-token.d.ts +0 -0
  334. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/index.d.ts +0 -0
  335. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-alerts.d.ts +0 -0
  336. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-code-group.d.ts +0 -0
  337. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-code-view.d.ts +0 -0
  338. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-example-group.d.ts +0 -0
  339. package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-preview-group.d.ts +1 -1
  340. /package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/utils/get-content.d.ts +0 -0
  341. /package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/utils/index.d.ts +0 -0
  342. /package/lib/{f-page → f-documentation/f-page}/f-markdown/f-markdown-renderer.component.d.ts +0 -0
  343. /package/lib/{f-page → f-documentation/f-page}/f-markdown/index.d.ts +0 -0
  344. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.request.d.ts +0 -0
  345. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.d.ts +0 -0
  346. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/index.d.ts +0 -0
  347. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/index.d.ts +0 -0
  348. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/i-page-link.d.ts +0 -0
  349. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/index.d.ts +0 -0
  350. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.d.ts +0 -0
  351. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/f-footer-edit-link.component.d.ts +0 -0
  352. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.d.ts +0 -0
  353. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/f-footer-last-updated.component.d.ts +0 -0
  354. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.d.ts +0 -0
  355. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/index.d.ts +0 -0
  356. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.d.ts +0 -0
  357. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.d.ts +0 -0
  358. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.d.ts +0 -0
  359. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/index.d.ts +0 -0
  360. /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/index.d.ts +0 -0
  361. /package/lib/{f-page → f-documentation/f-page}/f-page.component.d.ts +0 -0
  362. /package/lib/{f-page → f-documentation/f-page}/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.d.ts +0 -0
  363. /package/lib/{f-page → f-documentation/f-page}/f-table-of-content/f-table-of-content-items/index.d.ts +0 -0
  364. /package/lib/{f-page → f-documentation/f-page}/f-table-of-content/index.d.ts +0 -0
  365. /package/lib/{f-page → f-documentation/f-page}/index.d.ts +0 -0
  366. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.d.ts +0 -0
  367. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.d.ts +0 -0
  368. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/calculate-hash-from-scroll-position/index.d.ts +0 -0
  369. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.d.ts +0 -0
  370. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.d.ts +0 -0
  371. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-absolute-top-to-container/index.d.ts +0 -0
  372. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-table-of-content-data/get-table-of-content-data.handler.d.ts +0 -0
  373. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-table-of-content-data/get-table-of-content-data.request.d.ts +0 -0
  374. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-table-of-content-data/index.d.ts +0 -0
  375. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/i-table-of-content-item.d.ts +0 -0
  376. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/index.d.ts +0 -0
  377. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/scroll-to-element-in-container.d.ts +0 -0
  378. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/table-of-content-data.d.ts +0 -0
  379. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/f-scrollable-container.component.d.ts +0 -0
  380. /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/index.d.ts +0 -0
@@ -0,0 +1,63 @@
1
+ import { ChangeDetectionStrategy, Component, inject, InjectionToken, ViewChild, ViewContainerRef } from '@angular/core';
2
+ import { FHomePageFooterComponent } from './f-home-page-footer/f-home-page-footer.component';
3
+ import { FHomePageHeaderComponent } from './f-home-page-header/f-home-page-header.component';
4
+ import { FHomePageFeaturesComponent } from './f-home-page-features/f-home-page-features.component';
5
+ import { FHomePageHeroComponent } from './f-home-page-hero/f-home-page-hero.component';
6
+ import { FHomePageEnvironmentService } from './f-home-page-environment.service';
7
+ import { INTERNAL_ENVIRONMENT_SERVICE } from '../domain';
8
+ import * as i0 from "@angular/core";
9
+ export const F_HOME_PAGE_COMPONENT = new InjectionToken('F_HOME_PAGE_COMPONENT');
10
+ export class FHomePageComponent {
11
+ _environmentService = inject(FHomePageEnvironmentService);
12
+ _backgroundContainer;
13
+ _heroImageContainer;
14
+ ngAfterViewInit() {
15
+ this._renderImageComponent(this._environmentService.getImageComponent());
16
+ this._renderBackgroundComponent(this._environmentService.getBackgroundComponent());
17
+ }
18
+ _renderImageComponent(component) {
19
+ if (component) {
20
+ this.requestComponentRedraw(this._getImageComponentReference(component));
21
+ }
22
+ }
23
+ _renderBackgroundComponent(component) {
24
+ if (component) {
25
+ this.requestComponentRedraw(this._getBackgroundComponentReference(component));
26
+ }
27
+ }
28
+ _getBackgroundComponentReference(component) {
29
+ return this._backgroundContainer.createComponent(component);
30
+ }
31
+ _getImageComponentReference(component) {
32
+ return this._heroImageContainer.createComponent(component);
33
+ }
34
+ requestComponentRedraw(componentRef) {
35
+ componentRef.changeDetectorRef.markForCheck();
36
+ }
37
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
38
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FHomePageComponent, isStandalone: true, selector: "f-home-page", providers: [
39
+ FHomePageEnvironmentService,
40
+ { provide: INTERNAL_ENVIRONMENT_SERVICE, useExisting: FHomePageEnvironmentService },
41
+ { provide: F_HOME_PAGE_COMPONENT, useExisting: FHomePageComponent }
42
+ ], viewQueries: [{ propertyName: "_backgroundContainer", first: true, predicate: ["backgroundContainer"], descendants: true, read: ViewContainerRef }, { propertyName: "_heroImageContainer", first: true, predicate: ["heroImageContainer"], descendants: true, read: ViewContainerRef }], ngImport: i0, template: "<ng-container #backgroundContainer></ng-container>\n<header f-home-page-header></header>\n\n<div class=\"body\">\n <div class=\"hero-row\">\n <f-home-page-hero></f-home-page-hero>\n <ng-container #heroImageContainer></ng-container>\n </div>\n <f-home-page-features></f-home-page-features>\n</div>\n\n<div class=\"flex-space\"></div>\n<footer f-home-page-footer></footer>\n", styles: [":host{display:flex;flex-direction:column;position:relative;width:100%;height:100%;min-height:100%;overflow:hidden;overflow-y:auto}.body{position:relative;z-index:3;pointer-events:none}@media (min-width: 960px){.body{margin-top:50px}}@media (min-width: 1376px){.body{margin-top:100px}}.hero-row{display:flex;flex-direction:column-reverse;justify-content:space-between;align-items:center;margin:0 auto}@media (min-width: 960px){.hero-row{flex-direction:row;margin-left:64px;margin-right:64px}}@media (min-width: 1376px){.hero-row{flex-direction:row;margin-left:calc(50% - 624px);margin-right:calc(50% - 624px)}}\n"], dependencies: [{ kind: "component", type: FHomePageFooterComponent, selector: "footer[f-home-page-footer]" }, { kind: "component", type: FHomePageHeaderComponent, selector: "header[f-home-page-header]" }, { kind: "component", type: FHomePageFeaturesComponent, selector: "f-home-page-features" }, { kind: "component", type: FHomePageHeroComponent, selector: "f-home-page-hero" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
43
+ }
44
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageComponent, decorators: [{
45
+ type: Component,
46
+ args: [{ selector: 'f-home-page', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
47
+ FHomePageEnvironmentService,
48
+ { provide: INTERNAL_ENVIRONMENT_SERVICE, useExisting: FHomePageEnvironmentService },
49
+ { provide: F_HOME_PAGE_COMPONENT, useExisting: FHomePageComponent }
50
+ ], imports: [
51
+ FHomePageFooterComponent,
52
+ FHomePageHeaderComponent,
53
+ FHomePageFeaturesComponent,
54
+ FHomePageHeroComponent,
55
+ ], template: "<ng-container #backgroundContainer></ng-container>\n<header f-home-page-header></header>\n\n<div class=\"body\">\n <div class=\"hero-row\">\n <f-home-page-hero></f-home-page-hero>\n <ng-container #heroImageContainer></ng-container>\n </div>\n <f-home-page-features></f-home-page-features>\n</div>\n\n<div class=\"flex-space\"></div>\n<footer f-home-page-footer></footer>\n", styles: [":host{display:flex;flex-direction:column;position:relative;width:100%;height:100%;min-height:100%;overflow:hidden;overflow-y:auto}.body{position:relative;z-index:3;pointer-events:none}@media (min-width: 960px){.body{margin-top:50px}}@media (min-width: 1376px){.body{margin-top:100px}}.hero-row{display:flex;flex-direction:column-reverse;justify-content:space-between;align-items:center;margin:0 auto}@media (min-width: 960px){.hero-row{flex-direction:row;margin-left:64px;margin-right:64px}}@media (min-width: 1376px){.hero-row{flex-direction:row;margin-left:calc(50% - 624px);margin-right:calc(50% - 624px)}}\n"] }]
56
+ }], propDecorators: { _backgroundContainer: [{
57
+ type: ViewChild,
58
+ args: ['backgroundContainer', { read: ViewContainerRef }]
59
+ }], _heroImageContainer: [{
60
+ type: ViewChild,
61
+ args: ['heroImageContainer', { read: ViewContainerRef }]
62
+ }] } });
63
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1ob21lLXBhZ2UuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbS1yZW5kZXIvc3JjL2xpYi9mLWhvbWUtcGFnZS9mLWhvbWUtcGFnZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2YtaG9tZS1wYWdlL2YtaG9tZS1wYWdlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCx1QkFBdUIsRUFBRSxTQUFTLEVBQWdCLE1BQU0sRUFBRSxjQUFjLEVBQVEsU0FBUyxFQUFFLGdCQUFnQixFQUM1RyxNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxtREFBbUQsQ0FBQztBQUM3RixPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSxtREFBbUQsQ0FBQztBQUM3RixPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSx1REFBdUQsQ0FBQztBQUNuRyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSwrQ0FBK0MsQ0FBQztBQUN2RixPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxtQ0FBbUMsQ0FBQztBQUNoRixPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSxXQUFXLENBQUM7O0FBRXpELE1BQU0sQ0FBQyxNQUFNLHFCQUFxQixHQUFHLElBQUksY0FBYyxDQUFxQix1QkFBdUIsQ0FBQyxDQUFDO0FBb0JyRyxNQUFNLE9BQU8sa0JBQWtCO0lBRW5CLG1CQUFtQixHQUFHLE1BQU0sQ0FBQywyQkFBMkIsQ0FBQyxDQUFDO0lBRzVELG9CQUFvQixDQUErQjtJQUduRCxtQkFBbUIsQ0FBK0I7SUFFbkQsZUFBZTtRQUNwQixJQUFJLENBQUMscUJBQXFCLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLGlCQUFpQixFQUFFLENBQUMsQ0FBQztRQUN6RSxJQUFJLENBQUMsMEJBQTBCLENBQUMsSUFBSSxDQUFDLG1CQUFtQixDQUFDLHNCQUFzQixFQUFFLENBQUMsQ0FBQztJQUNyRixDQUFDO0lBRU8scUJBQXFCLENBQUksU0FBbUI7UUFDbEQsSUFBSSxTQUFTLEVBQUUsQ0FBQztZQUNkLElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxJQUFJLENBQUMsMkJBQTJCLENBQUMsU0FBUyxDQUFDLENBQUMsQ0FBQztRQUMzRSxDQUFDO0lBQ0gsQ0FBQztJQUVPLDBCQUEwQixDQUFJLFNBQW1CO1FBQ3ZELElBQUksU0FBUyxFQUFFLENBQUM7WUFDZCxJQUFJLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLGdDQUFnQyxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7UUFDaEYsQ0FBQztJQUNILENBQUM7SUFFTyxnQ0FBZ0MsQ0FBSSxTQUFrQjtRQUM1RCxPQUFPLElBQUksQ0FBQyxvQkFBcUIsQ0FBQyxlQUFlLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDL0QsQ0FBQztJQUVPLDJCQUEyQixDQUFJLFNBQWtCO1FBQ3ZELE9BQU8sSUFBSSxDQUFDLG1CQUFvQixDQUFDLGVBQWUsQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUM5RCxDQUFDO0lBRU8sc0JBQXNCLENBQUMsWUFBK0I7UUFDNUQsWUFBWSxDQUFDLGlCQUFpQixDQUFDLFlBQVksRUFBRSxDQUFDO0lBQ2hELENBQUM7d0dBckNVLGtCQUFrQjs0RkFBbEIsa0JBQWtCLDBEQVpsQjtZQUNULDJCQUEyQjtZQUMzQixFQUFFLE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxXQUFXLEVBQUUsMkJBQTJCLEVBQUU7WUFDbkYsRUFBRSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsV0FBVyxFQUFFLGtCQUFrQixFQUFFO1NBQ3BFLGtJQVl5QyxnQkFBZ0Isb0hBR2pCLGdCQUFnQiw2QkN0QzNELCtYQWFBLDZwQkRZSSx3QkFBd0IsdUVBQ3hCLHdCQUF3Qix1RUFDeEIsMEJBQTBCLGlFQUMxQixzQkFBc0I7OzRGQUdiLGtCQUFrQjtrQkFsQjlCLFNBQVM7K0JBQ0UsYUFBYSxjQUdYLElBQUksbUJBQ0MsdUJBQXVCLENBQUMsTUFBTSxhQUNwQzt3QkFDVCwyQkFBMkI7d0JBQzNCLEVBQUUsT0FBTyxFQUFFLDRCQUE0QixFQUFFLFdBQVcsRUFBRSwyQkFBMkIsRUFBRTt3QkFDbkYsRUFBRSxPQUFPLEVBQUUscUJBQXFCLEVBQUUsV0FBVyxvQkFBb0IsRUFBRTtxQkFDcEUsV0FDUTt3QkFDUCx3QkFBd0I7d0JBQ3hCLHdCQUF3Qjt3QkFDeEIsMEJBQTBCO3dCQUMxQixzQkFBc0I7cUJBQ3ZCOzhCQU9PLG9CQUFvQjtzQkFEM0IsU0FBUzt1QkFBQyxxQkFBcUIsRUFBRSxFQUFFLElBQUksRUFBRSxnQkFBZ0IsRUFBRTtnQkFJcEQsbUJBQW1CO3NCQUQxQixTQUFTO3VCQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxFQUFFLGdCQUFnQixFQUFFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQWZ0ZXJWaWV3SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgQ29tcG9uZW50UmVmLCBpbmplY3QsIEluamVjdGlvblRva2VuLCBUeXBlLCBWaWV3Q2hpbGQsIFZpZXdDb250YWluZXJSZWZcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGSG9tZVBhZ2VGb290ZXJDb21wb25lbnQgfSBmcm9tICcuL2YtaG9tZS1wYWdlLWZvb3Rlci9mLWhvbWUtcGFnZS1mb290ZXIuY29tcG9uZW50JztcbmltcG9ydCB7IEZIb21lUGFnZUhlYWRlckNvbXBvbmVudCB9IGZyb20gJy4vZi1ob21lLXBhZ2UtaGVhZGVyL2YtaG9tZS1wYWdlLWhlYWRlci5jb21wb25lbnQnO1xuaW1wb3J0IHsgRkhvbWVQYWdlRmVhdHVyZXNDb21wb25lbnQgfSBmcm9tICcuL2YtaG9tZS1wYWdlLWZlYXR1cmVzL2YtaG9tZS1wYWdlLWZlYXR1cmVzLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGSG9tZVBhZ2VIZXJvQ29tcG9uZW50IH0gZnJvbSAnLi9mLWhvbWUtcGFnZS1oZXJvL2YtaG9tZS1wYWdlLWhlcm8uY29tcG9uZW50JztcbmltcG9ydCB7IEZIb21lUGFnZUVudmlyb25tZW50U2VydmljZSB9IGZyb20gJy4vZi1ob21lLXBhZ2UtZW52aXJvbm1lbnQuc2VydmljZSc7XG5pbXBvcnQgeyBJTlRFUk5BTF9FTlZJUk9OTUVOVF9TRVJWSUNFIH0gZnJvbSAnLi4vZG9tYWluJztcblxuZXhwb3J0IGNvbnN0IEZfSE9NRV9QQUdFX0NPTVBPTkVOVCA9IG5ldyBJbmplY3Rpb25Ub2tlbjxGSG9tZVBhZ2VDb21wb25lbnQ+KCdGX0hPTUVfUEFHRV9DT01QT05FTlQnKTtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZi1ob21lLXBhZ2UnLFxuICB0ZW1wbGF0ZVVybDogJy4vZi1ob21lLXBhZ2UuY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsgJy4vZi1ob21lLXBhZ2UuY29tcG9uZW50LnNjc3MnIF0sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICBwcm92aWRlcnM6IFtcbiAgICBGSG9tZVBhZ2VFbnZpcm9ubWVudFNlcnZpY2UsXG4gICAgeyBwcm92aWRlOiBJTlRFUk5BTF9FTlZJUk9OTUVOVF9TRVJWSUNFLCB1c2VFeGlzdGluZzogRkhvbWVQYWdlRW52aXJvbm1lbnRTZXJ2aWNlIH0sXG4gICAgeyBwcm92aWRlOiBGX0hPTUVfUEFHRV9DT01QT05FTlQsIHVzZUV4aXN0aW5nOiBGSG9tZVBhZ2VDb21wb25lbnQgfVxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgRkhvbWVQYWdlRm9vdGVyQ29tcG9uZW50LFxuICAgIEZIb21lUGFnZUhlYWRlckNvbXBvbmVudCxcbiAgICBGSG9tZVBhZ2VGZWF0dXJlc0NvbXBvbmVudCxcbiAgICBGSG9tZVBhZ2VIZXJvQ29tcG9uZW50LFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEZIb21lUGFnZUNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xuXG4gIHByb3RlY3RlZCBfZW52aXJvbm1lbnRTZXJ2aWNlID0gaW5qZWN0KEZIb21lUGFnZUVudmlyb25tZW50U2VydmljZSk7XG5cbiAgQFZpZXdDaGlsZCgnYmFja2dyb3VuZENvbnRhaW5lcicsIHsgcmVhZDogVmlld0NvbnRhaW5lclJlZiB9KVxuICBwcml2YXRlIF9iYWNrZ3JvdW5kQ29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmIHwgdW5kZWZpbmVkO1xuXG4gIEBWaWV3Q2hpbGQoJ2hlcm9JbWFnZUNvbnRhaW5lcicsIHsgcmVhZDogVmlld0NvbnRhaW5lclJlZiB9KVxuICBwcml2YXRlIF9oZXJvSW1hZ2VDb250YWluZXI6IFZpZXdDb250YWluZXJSZWYgfCB1bmRlZmluZWQ7XG5cbiAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9yZW5kZXJJbWFnZUNvbXBvbmVudCh0aGlzLl9lbnZpcm9ubWVudFNlcnZpY2UuZ2V0SW1hZ2VDb21wb25lbnQoKSk7XG4gICAgdGhpcy5fcmVuZGVyQmFja2dyb3VuZENvbXBvbmVudCh0aGlzLl9lbnZpcm9ubWVudFNlcnZpY2UuZ2V0QmFja2dyb3VuZENvbXBvbmVudCgpKTtcbiAgfVxuXG4gIHByaXZhdGUgX3JlbmRlckltYWdlQ29tcG9uZW50PFQ+KGNvbXBvbmVudD86IFR5cGU8VD4pOiB2b2lkIHtcbiAgICBpZiAoY29tcG9uZW50KSB7XG4gICAgICB0aGlzLnJlcXVlc3RDb21wb25lbnRSZWRyYXcodGhpcy5fZ2V0SW1hZ2VDb21wb25lbnRSZWZlcmVuY2UoY29tcG9uZW50KSk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBfcmVuZGVyQmFja2dyb3VuZENvbXBvbmVudDxUPihjb21wb25lbnQ/OiBUeXBlPFQ+KTogdm9pZCB7XG4gICAgaWYgKGNvbXBvbmVudCkge1xuICAgICAgdGhpcy5yZXF1ZXN0Q29tcG9uZW50UmVkcmF3KHRoaXMuX2dldEJhY2tncm91bmRDb21wb25lbnRSZWZlcmVuY2UoY29tcG9uZW50KSk7XG4gICAgfVxuICB9XG5cbiAgcHJpdmF0ZSBfZ2V0QmFja2dyb3VuZENvbXBvbmVudFJlZmVyZW5jZTxUPihjb21wb25lbnQ6IFR5cGU8VD4pOiBDb21wb25lbnRSZWY8VD4ge1xuICAgIHJldHVybiB0aGlzLl9iYWNrZ3JvdW5kQ29udGFpbmVyIS5jcmVhdGVDb21wb25lbnQoY29tcG9uZW50KTtcbiAgfVxuXG4gIHByaXZhdGUgX2dldEltYWdlQ29tcG9uZW50UmVmZXJlbmNlPFQ+KGNvbXBvbmVudDogVHlwZTxUPik6IENvbXBvbmVudFJlZjxUPiB7XG4gICAgcmV0dXJuIHRoaXMuX2hlcm9JbWFnZUNvbnRhaW5lciEuY3JlYXRlQ29tcG9uZW50KGNvbXBvbmVudCk7XG4gIH1cblxuICBwcml2YXRlIHJlcXVlc3RDb21wb25lbnRSZWRyYXcoY29tcG9uZW50UmVmOiBDb21wb25lbnRSZWY8YW55Pik6IHZvaWQge1xuICAgIGNvbXBvbmVudFJlZi5jaGFuZ2VEZXRlY3RvclJlZi5tYXJrRm9yQ2hlY2soKTtcbiAgfVxufVxuIiwiPG5nLWNvbnRhaW5lciAjYmFja2dyb3VuZENvbnRhaW5lcj48L25nLWNvbnRhaW5lcj5cbjxoZWFkZXIgZi1ob21lLXBhZ2UtaGVhZGVyPjwvaGVhZGVyPlxuXG48ZGl2IGNsYXNzPVwiYm9keVwiPlxuICA8ZGl2IGNsYXNzPVwiaGVyby1yb3dcIj5cbiAgICA8Zi1ob21lLXBhZ2UtaGVybz48L2YtaG9tZS1wYWdlLWhlcm8+XG4gICAgPG5nLWNvbnRhaW5lciAjaGVyb0ltYWdlQ29udGFpbmVyPjwvbmctY29udGFpbmVyPlxuICA8L2Rpdj5cbiAgPGYtaG9tZS1wYWdlLWZlYXR1cmVzPjwvZi1ob21lLXBhZ2UtZmVhdHVyZXM+XG48L2Rpdj5cblxuPGRpdiBjbGFzcz1cImZsZXgtc3BhY2VcIj48L2Rpdj5cbjxmb290ZXIgZi1ob21lLXBhZ2UtZm9vdGVyPjwvZm9vdGVyPlxuIl19
@@ -0,0 +1,9 @@
1
+ export * from './domain';
2
+ export * from './f-home-page-features/f-home-page-features.component';
3
+ export * from './f-home-page-header/f-home-page-header.component';
4
+ export * from './f-home-page-footer/f-home-page-footer.component';
5
+ export * from './f-home-page.component';
6
+ export * from './f-home-page-environment.service';
7
+ export * from './providers';
8
+ export * from './router';
9
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2YtaG9tZS1wYWdlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsVUFBVSxDQUFDO0FBRXpCLGNBQWMsdURBQXVELENBQUM7QUFFdEUsY0FBYyxtREFBbUQsQ0FBQztBQUVsRSxjQUFjLG1EQUFtRCxDQUFDO0FBRWxFLGNBQWMseUJBQXlCLENBQUM7QUFFeEMsY0FBYyxtQ0FBbUMsQ0FBQztBQUVsRCxjQUFjLGFBQWEsQ0FBQztBQUU1QixjQUFjLFVBQVUsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZG9tYWluJztcblxuZXhwb3J0ICogZnJvbSAnLi9mLWhvbWUtcGFnZS1mZWF0dXJlcy9mLWhvbWUtcGFnZS1mZWF0dXJlcy5jb21wb25lbnQnO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtaG9tZS1wYWdlLWhlYWRlci9mLWhvbWUtcGFnZS1oZWFkZXIuY29tcG9uZW50JztcblxuZXhwb3J0ICogZnJvbSAnLi9mLWhvbWUtcGFnZS1mb290ZXIvZi1ob21lLXBhZ2UtZm9vdGVyLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1ob21lLXBhZ2UuY29tcG9uZW50JztcblxuZXhwb3J0ICogZnJvbSAnLi9mLWhvbWUtcGFnZS1lbnZpcm9ubWVudC5zZXJ2aWNlJztcblxuZXhwb3J0ICogZnJvbSAnLi9wcm92aWRlcnMnO1xuXG5leHBvcnQgKiBmcm9tICcuL3JvdXRlcic7XG4iXX0=
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export const F_HOME_PAGE_ENVIRONMENT = new InjectionToken('F_HOME_PAGE_ENVIRONMENT');
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbS1yZW5kZXIvc3JjL2xpYi9mLWhvbWUtcGFnZS9wcm92aWRlcnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUcvQyxNQUFNLENBQUMsTUFBTSx1QkFBdUIsR0FBRyxJQUFJLGNBQWMsQ0FBdUIseUJBQXlCLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBJSG9tZVBhZ2VFbnZpcm9ubWVudCB9IGZyb20gJy4vZG9tYWluL2ktaG9tZS1wYWdlLWVudmlyb25tZW50JztcblxuZXhwb3J0IGNvbnN0IEZfSE9NRV9QQUdFX0VOVklST05NRU5UID0gbmV3IEluamVjdGlvblRva2VuPElIb21lUGFnZUVudmlyb25tZW50PignRl9IT01FX1BBR0VfRU5WSVJPTk1FTlQnKTtcbiJdfQ==
@@ -0,0 +1,7 @@
1
+ export const F_HOME_PAGE_ROUTES = [
2
+ {
3
+ path: '',
4
+ loadComponent: () => import('./index').then(m => m.FHomePageComponent),
5
+ }
6
+ ];
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicm91dGVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbS1yZW5kZXIvc3JjL2xpYi9mLWhvbWUtcGFnZS9yb3V0ZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsTUFBTSxDQUFDLE1BQU0sa0JBQWtCLEdBQVc7SUFDeEM7UUFDRSxJQUFJLEVBQUUsRUFBRTtRQUNSLGFBQWEsRUFBRSxHQUFHLEVBQUUsQ0FBQyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDLGtCQUFrQixDQUFDO0tBQ3ZFO0NBQ0YsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5cbmV4cG9ydCBjb25zdCBGX0hPTUVfUEFHRV9ST1VURVM6IFJvdXRlcyA9IFtcbiAge1xuICAgIHBhdGg6ICcnLFxuICAgIGxvYWRDb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9pbmRleCcpLnRoZW4obSA9PiBtLkZIb21lUGFnZUNvbXBvbmVudCksXG4gIH1cbl07XG4iXX0=
@@ -1,7 +1,6 @@
1
+ export * from './common-components';
1
2
  export * from './common-services';
2
3
  export * from './domain';
3
4
  export * from './f-documentation';
4
- export * from './f-navigation-panel';
5
- export * from './f-page';
6
- export * from './f-scrollable-container';
7
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsbUJBQW1CLENBQUM7QUFFbEMsY0FBYyxVQUFVLENBQUM7QUFFekIsY0FBYyxtQkFBbUIsQ0FBQztBQUVsQyxjQUFjLHNCQUFzQixDQUFDO0FBRXJDLGNBQWMsVUFBVSxDQUFDO0FBRXpCLGNBQWMsMEJBQTBCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2NvbW1vbi1zZXJ2aWNlcyc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZG9tYWluJztcblxuZXhwb3J0ICogZnJvbSAnLi9mLWRvY3VtZW50YXRpb24nO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtbmF2aWdhdGlvbi1wYW5lbCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1wYWdlJztcblxuZXhwb3J0ICogZnJvbSAnLi9mLXNjcm9sbGFibGUtY29udGFpbmVyJztcbiJdfQ==
5
+ export * from './f-home-page';
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUM7QUFFcEMsY0FBYyxtQkFBbUIsQ0FBQztBQUVsQyxjQUFjLFVBQVUsQ0FBQztBQUV6QixjQUFjLG1CQUFtQixDQUFDO0FBRWxDLGNBQWMsZUFBZSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21tb24tY29tcG9uZW50cyc7XG5cbmV4cG9ydCAqIGZyb20gJy4vY29tbW9uLXNlcnZpY2VzJztcblxuZXhwb3J0ICogZnJvbSAnLi9kb21haW4nO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtZG9jdW1lbnRhdGlvbic7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1ob21lLXBhZ2UnO1xuXG4iXX0=