@foblex/m-render 2.6.0 → 2.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/styles/_code-group.scss +1 -0
- package/assets/styles/_code-highlight.scss +104 -62
- package/assets/styles/_code-view.scss +1 -4
- package/assets/styles/_icons.scss +1 -0
- package/assets/styles/styles.scss +19 -0
- package/fesm2022/foblex-m-render.mjs +2449 -2006
- package/fesm2022/foblex-m-render.mjs.map +1 -1
- package/index.d.ts +3 -5
- package/lib/{domain/i-docs-social-link.d.ts → common/components/f-social-links/domain/i-social-link.d.ts} +1 -1
- package/lib/common/components/f-social-links/domain/i-social-links-provider.d.ts +6 -0
- package/lib/common/components/f-social-links/domain/index.d.ts +2 -0
- package/lib/{f-documentation → common/components}/f-social-links/f-social-links.component.d.ts +1 -1
- package/lib/common/components/f-social-links/index.d.ts +2 -0
- package/lib/common/components/f-theme-button/f-theme-button.component.d.ts +14 -0
- package/lib/{common-components → common/components}/index.d.ts +3 -1
- package/lib/common/components/menus/domain/i-header-menu-link.d.ts +4 -0
- package/lib/common/components/menus/domain/i-header-menu.d.ts +8 -0
- package/lib/common/components/menus/domain/i-version.d.ts +6 -0
- package/lib/common/components/menus/domain/index.d.ts +3 -0
- package/lib/common/components/menus/dropdown-menu/domain/index.d.ts +1 -0
- package/lib/common/components/menus/dropdown-menu/domain/right-top-overlay-position.constant.d.ts +2 -0
- package/lib/common/components/menus/dropdown-menu/dropdown-menu.component.d.ts +19 -0
- package/lib/common/components/menus/dropdown-menu/index.d.ts +2 -0
- package/lib/common/components/menus/index.d.ts +4 -0
- package/lib/common/components/menus/inline-menu/index.d.ts +1 -0
- package/lib/common/components/menus/inline-menu/inline-menu.component.d.ts +17 -0
- package/lib/common/components/menus/npm-version/index.d.ts +1 -0
- package/lib/common/components/menus/npm-version/npm-version.component.d.ts +12 -0
- package/lib/common/directives/index.d.ts +1 -0
- package/lib/common/directives/overflow-observer.directive.d.ts +15 -0
- package/lib/common/domain/configuration-providers/index.d.ts +6 -0
- package/lib/common/domain/configuration-providers/provide-header-media-links.d.ts +3 -0
- package/lib/common/domain/configuration-providers/provide-header-navigation.d.ts +3 -0
- package/lib/common/domain/configuration-providers/provide-header.d.ts +11 -0
- package/lib/common/domain/configuration-providers/provide-language.d.ts +4 -0
- package/lib/common/domain/configuration-providers/provide-logo.d.ts +4 -0
- package/lib/common/domain/configuration-providers/provide-title.d.ts +4 -0
- package/lib/common/domain/i-link.d.ts +4 -0
- package/lib/common/domain/index.d.ts +3 -0
- package/lib/common/domain/providers.d.ts +6 -0
- package/lib/common/index.d.ts +5 -0
- package/lib/common/services/index.d.ts +2 -0
- package/lib/common/services/popover.service.d.ts +9 -0
- package/lib/common/services/theme.service.d.ts +11 -0
- package/lib/{common-services → documentation-page/analytics}/analytics/f-analytics.service.d.ts +2 -2
- package/lib/documentation-page/analytics/analytics/f-cookie-popup/f-cookie-popup.component.d.ts +9 -0
- package/lib/{common-services → documentation-page/analytics}/analytics/index.d.ts +1 -0
- package/lib/{common-services → documentation-page/analytics/common-services}/f-head-tag.service.d.ts +4 -6
- package/lib/documentation-page/analytics/common-services/f-meta.service.d.ts +15 -0
- package/lib/documentation-page/analytics/common-services/index.d.ts +2 -0
- package/lib/documentation-page/analytics/index.d.ts +2 -0
- package/lib/documentation-page/components/header/hamburger-button/domain/i-toggle-navigation-component.d.ts +5 -0
- package/lib/documentation-page/components/header/hamburger-button/domain/index.d.ts +1 -0
- package/lib/documentation-page/components/header/hamburger-button/hamburger-button.component.d.ts +7 -0
- package/lib/documentation-page/components/header/hamburger-button/index.d.ts +2 -0
- package/lib/documentation-page/components/header/header.component.d.ts +6 -0
- package/lib/documentation-page/components/header/index.d.ts +2 -0
- package/lib/documentation-page/components/index.d.ts +4 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-code-group-tabs/f-code-group-tabs.component.d.ts +11 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-code-group-tabs/index.d.ts +1 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-code-group.component.d.ts +10 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-code-view/components/highlight.component.d.ts +12 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-code-view/f-code-view.component.d.ts +22 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-code-view/index.d.ts +3 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-code-view/utils/parse-language.d.ts +3 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/directives/f-insert-component.directive.d.ts +13 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/domain/i-example-component-instance.d.ts +3 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/domain/i-example-component.d.ts +6 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/domain/i-example-view-data.d.ts +4 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/f-example-view.component.d.ts +18 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/index.d.ts +7 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/utils/coerce-component-height.d.ts +1 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/utils/is-promise.d.ts +1 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/f-example-view/utils/parse-component-tag.d.ts +1 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-code-group/index.d.ts +4 -0
- package/lib/{f-documentation/f-page/f-markdown-footer/domain/features → documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/domain}/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.d.ts +3 -3
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/domain/get-previous-next-page-navigation/get-previous-next-page-navigation.response.d.ts +6 -0
- package/lib/{f-documentation/f-page/f-markdown-footer/domain/i-page-link.d.ts → documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/domain/i-markdown-footer-link.d.ts} +1 -1
- package/lib/{domain/i-docs-footer-navigation.d.ts → documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/domain/i-markdown-footer-navigation.d.ts} +1 -1
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/domain/index.d.ts +3 -0
- package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.d.ts +2 -2
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/f-markdown-footer.component.d.ts +24 -0
- package/lib/{f-documentation → documentation-page/components/markdown-container/f-markdown/components/f-preview-group}/f-preview/f-preview.component.d.ts +2 -2
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-preview-group/f-preview/index.d.ts +2 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-preview-group/f-preview-group-filters/index.d.ts +1 -0
- package/lib/{f-documentation → documentation-page/components/markdown-container/f-markdown/components}/f-preview-group/f-preview-group.service.d.ts +1 -1
- package/lib/documentation-page/components/markdown-container/f-markdown/components/f-preview-group/index.d.ts +3 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/components/index.d.ts +3 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/f-markdown-renderer.component.d.ts +23 -0
- package/lib/{f-documentation/f-page/f-markdown/domain → documentation-page/components/markdown-container/f-markdown}/highlight/change-code-focused-syntax.pre-processor.d.ts +2 -2
- package/lib/documentation-page/components/markdown-container/f-markdown/highlight/highlight.service.d.ts +14 -0
- package/lib/{f-documentation/f-page/f-markdown/domain → documentation-page/components/markdown-container/f-markdown}/highlight/index.d.ts +0 -1
- package/lib/{f-documentation/f-page/f-markdown/domain → documentation-page/components/markdown-container/f-markdown}/highlight/mark-code-focused-blocks.post-processor.d.ts +8 -8
- package/lib/{f-documentation/f-page/f-markdown/domain → documentation-page/components/markdown-container/f-markdown}/highlight/modify-punctuation-highlight.post-processor.d.ts +1 -1
- package/lib/documentation-page/components/markdown-container/f-markdown/highlight/theme.d.ts +2 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/index.d.ts +4 -0
- package/lib/{f-documentation/f-page/f-markdown/domain/markdown/parse-markdown → documentation-page/components/markdown-container/f-markdown/markdown/domain}/e-markdown-container-type.d.ts +0 -1
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/domain/e-parsed-container-type.d.ts +4 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/domain/i-markdown-container-data.d.ts +4 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/domain/i-parsed-container-data.d.ts +9 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/domain/i-preview-navigation-group.d.ts +8 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/domain/i-preview-navigation-service.d.ts +6 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/domain/index.d.ts +7 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/index.d.ts +8 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/markdown.service.d.ts +19 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/parse-angular-example-with-code-links.d.ts +17 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/parse-grouped-code-items.d.ts +15 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/parse-preview-group.d.ts +18 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/parse-single-code-item.d.ts +7 -0
- package/lib/documentation-page/components/markdown-container/f-markdown/markdown/utils/get-content.d.ts +2 -0
- package/lib/documentation-page/components/markdown-container/index.d.ts +2 -0
- package/lib/documentation-page/components/markdown-container/markdown-container.component.d.ts +5 -0
- package/lib/documentation-page/components/navigation-panel/index.d.ts +4 -0
- package/lib/documentation-page/components/navigation-panel/navigation-group/navigation-group.component.d.ts +8 -0
- package/lib/documentation-page/components/navigation-panel/navigation-panel.component.d.ts +23 -0
- package/lib/documentation-page/components/scrollable-container/components/index.d.ts +1 -0
- package/lib/documentation-page/components/scrollable-container/components/table-of-content/index.d.ts +2 -0
- package/lib/documentation-page/components/scrollable-container/components/table-of-content/table-of-content-items/index.d.ts +1 -0
- package/lib/documentation-page/components/scrollable-container/components/table-of-content/table-of-content-items/table-of-content-items.component.d.ts +7 -0
- package/lib/documentation-page/components/scrollable-container/components/table-of-content/table-of-content.component.d.ts +16 -0
- package/lib/documentation-page/components/scrollable-container/domain/activate-toc-by-hash/activate-toc-by-hash.handler.d.ts +9 -0
- package/lib/documentation-page/components/scrollable-container/domain/activate-toc-by-hash/activate-toc-by-hash.request.d.ts +4 -0
- package/lib/documentation-page/components/scrollable-container/domain/activate-toc-by-hash/index.d.ts +2 -0
- package/lib/documentation-page/components/scrollable-container/domain/calculate-hash-from-scroll-position-and-activate-toc/calculate-hash-from-scroll-position-and-activate-toc.handler.d.ts +18 -0
- package/lib/documentation-page/components/scrollable-container/domain/calculate-hash-from-scroll-position-and-activate-toc/calculate-hash-from-scroll-position-and-activate-toc.request.d.ts +2 -0
- package/lib/documentation-page/components/scrollable-container/domain/calculate-hash-from-scroll-position-and-activate-toc/index.d.ts +2 -0
- package/lib/documentation-page/components/scrollable-container/domain/calculate-table-of-content-data/calculate-table-of-content-data.handler.d.ts +15 -0
- package/lib/documentation-page/components/scrollable-container/domain/calculate-table-of-content-data/calculate-table-of-content-data.request.d.ts +4 -0
- package/lib/documentation-page/components/scrollable-container/domain/calculate-table-of-content-data/index.d.ts +2 -0
- package/lib/{f-documentation/f-scrollable-container → documentation-page/components/scrollable-container}/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.d.ts +4 -0
- package/lib/documentation-page/components/scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.d.ts +4 -0
- package/lib/documentation-page/components/scrollable-container/domain/i-scrollable-container.d.ts +5 -0
- package/lib/{domain/i-docs-table-of-content.d.ts → documentation-page/components/scrollable-container/domain/i-table-of-content.d.ts} +1 -1
- package/lib/documentation-page/components/scrollable-container/domain/index.d.ts +11 -0
- package/lib/documentation-page/components/scrollable-container/domain/providers.d.ts +7 -0
- package/lib/documentation-page/components/scrollable-container/domain/render-dynamic-components/index.d.ts +2 -0
- package/lib/documentation-page/components/scrollable-container/domain/render-dynamic-components/render-dynamic-components.handler.d.ts +16 -0
- package/lib/{f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.d.ts → documentation-page/components/scrollable-container/domain/render-dynamic-components/render-dynamic-components.request.d.ts} +1 -1
- package/lib/documentation-page/components/scrollable-container/domain/scroll-to-element-in-container/index.d.ts +2 -0
- package/lib/documentation-page/components/scrollable-container/domain/scroll-to-element-in-container/scroll-to-element-in-container.handler.d.ts +15 -0
- package/lib/documentation-page/components/scrollable-container/domain/scroll-to-element-in-container/scroll-to-element-in-container.request.d.ts +4 -0
- package/lib/documentation-page/components/scrollable-container/index.d.ts +3 -0
- package/lib/documentation-page/components/scrollable-container/scrollable-container.component.d.ts +12 -0
- package/lib/documentation-page/documentation-root.component.d.ts +14 -0
- package/lib/documentation-page/domain/configuration-providers/index.d.ts +8 -0
- package/lib/documentation-page/domain/configuration-providers/provide-404-markdown.d.ts +2 -0
- package/lib/documentation-page/domain/configuration-providers/provide-components.d.ts +6 -0
- package/lib/documentation-page/domain/configuration-providers/provide-directory.d.ts +2 -0
- package/lib/documentation-page/domain/configuration-providers/provide-documentation-meta.d.ts +3 -0
- package/lib/documentation-page/domain/configuration-providers/provide-documentation.d.ts +11 -0
- package/lib/documentation-page/domain/configuration-providers/provide-footer-navigation.d.ts +2 -0
- package/lib/documentation-page/domain/configuration-providers/provide-navigation.d.ts +4 -0
- package/lib/documentation-page/domain/configuration-providers/provide-toc-data.d.ts +3 -0
- package/lib/documentation-page/domain/handle-navigation-links/handle-navigation-links.handler.d.ts +16 -0
- package/lib/documentation-page/domain/i-documentation-configuration.d.ts +15 -0
- package/lib/documentation-page/domain/index.d.ts +4 -0
- package/lib/documentation-page/domain/providers.d.ts +2 -0
- package/lib/documentation-page/index.d.ts +6 -0
- package/lib/documentation-page/routes.d.ts +2 -0
- package/lib/documentation-page/services/documentation.store.d.ts +23 -0
- package/lib/documentation-page/services/index.d.ts +1 -0
- package/lib/home-page/components/f-home-page-buttons-row/index.d.ts +1 -0
- package/lib/home-page/components/f-home-page-features/index.d.ts +1 -0
- package/lib/home-page/components/f-home-page-footer/index.d.ts +1 -0
- package/lib/home-page/components/f-home-page-header/index.d.ts +1 -0
- package/lib/home-page/components/f-home-page-hero/index.d.ts +1 -0
- package/lib/home-page/components/f-home-page-memberships/index.d.ts +1 -0
- package/lib/home-page/components/index.d.ts +6 -0
- package/lib/home-page/domain/configuration-providers/index.d.ts +7 -0
- package/lib/home-page/domain/configuration-providers/provide-background.d.ts +3 -0
- package/lib/home-page/domain/configuration-providers/provide-hero.d.ts +8 -0
- package/lib/home-page/domain/configuration-providers/provide-home-buttons.d.ts +9 -0
- package/lib/home-page/domain/configuration-providers/provide-home-features.d.ts +6 -0
- package/lib/home-page/domain/configuration-providers/provide-home-footer.d.ts +5 -0
- package/lib/home-page/domain/configuration-providers/provide-home-page.d.ts +11 -0
- package/lib/home-page/domain/configuration-providers/provide-image.d.ts +3 -0
- package/lib/home-page/domain/i-home-page-configuration.d.ts +11 -0
- package/lib/home-page/domain/index.d.ts +3 -0
- package/lib/{f-home-page/f-home-page.component.d.ts → home-page/home-root.component.d.ts} +4 -4
- package/lib/home-page/index.d.ts +5 -0
- package/lib/home-page/router.d.ts +2 -0
- package/lib/{f-home-page/f-home-page-environment.service.d.ts → home-page/services/home.store.d.ts} +7 -6
- package/lib/home-page/services/index.d.ts +1 -0
- package/package.json +3 -5
- package/esm2022/foblex-m-render.mjs +0 -5
- package/esm2022/lib/common-components/f-checkbox/f-checkbox.component.mjs +0 -73
- package/esm2022/lib/common-components/f-cookie-popup/f-cookie-popup.component.mjs +0 -33
- package/esm2022/lib/common-components/f-radio-button/f-radio-button.component.mjs +0 -41
- package/esm2022/lib/common-components/f-theme-button/f-theme-button.component.mjs +0 -44
- package/esm2022/lib/common-components/index.mjs +0 -5
- package/esm2022/lib/common-services/analytics/f-accept-cookies-key.mjs +0 -2
- package/esm2022/lib/common-services/analytics/f-analytics.service.mjs +0 -50
- package/esm2022/lib/common-services/analytics/i-window-with-analytics.mjs +0 -2
- package/esm2022/lib/common-services/analytics/index.mjs +0 -5
- package/esm2022/lib/common-services/analytics/set-cookie-consent.mjs +0 -32
- package/esm2022/lib/common-services/f-head-tag.service.mjs +0 -54
- package/esm2022/lib/common-services/f-meta.service.mjs +0 -80
- package/esm2022/lib/common-services/f-popover.service.mjs +0 -25
- package/esm2022/lib/common-services/index.mjs +0 -6
- package/esm2022/lib/common-services/json-ld/f-json-ld.service.mjs +0 -53
- package/esm2022/lib/common-services/json-ld/i-json-ld-creator.mjs +0 -2
- package/esm2022/lib/common-services/json-ld/i-json-ld-entity-of-page.mjs +0 -2
- package/esm2022/lib/common-services/json-ld/i-json-ld.mjs +0 -2
- package/esm2022/lib/common-services/json-ld/index.mjs +0 -5
- package/esm2022/lib/domain/f-state.service.mjs +0 -28
- package/esm2022/lib/domain/get-version-handler/get-version.handler.mjs +0 -28
- package/esm2022/lib/domain/get-version-handler/get-version.request.mjs +0 -7
- package/esm2022/lib/domain/get-version-handler/index.mjs +0 -3
- package/esm2022/lib/domain/handle-navigation-links/handle-navigation-links.handler.mjs +0 -53
- package/esm2022/lib/domain/handle-navigation-links/handle-navigation-links.request.mjs +0 -7
- package/esm2022/lib/domain/handle-navigation-links/index.mjs +0 -3
- package/esm2022/lib/domain/i-docs-component.mjs +0 -2
- package/esm2022/lib/domain/i-docs-footer-navigation.mjs +0 -2
- package/esm2022/lib/domain/i-docs-header-navigation-item.mjs +0 -2
- package/esm2022/lib/domain/i-docs-social-link.mjs +0 -2
- package/esm2022/lib/domain/i-docs-table-of-content.mjs +0 -2
- package/esm2022/lib/domain/i-docs-version.mjs +0 -2
- package/esm2022/lib/domain/i-environment-service.mjs +0 -2
- package/esm2022/lib/domain/i-meta-data.mjs +0 -2
- package/esm2022/lib/domain/index.mjs +0 -11
- package/esm2022/lib/f-documentation/domain/i-docs-environment.mjs +0 -2
- package/esm2022/lib/f-documentation/domain/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-badge/f-badge.component.mjs +0 -20
- package/esm2022/lib/f-documentation/f-badge/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-documentation-environment.service.mjs +0 -69
- package/esm2022/lib/f-documentation/f-documentation.component.mjs +0 -54
- package/esm2022/lib/f-documentation/f-hamburger-button/f-hamburger-button.component.mjs +0 -25
- package/esm2022/lib/f-documentation/f-header/f-header.component.mjs +0 -24
- package/esm2022/lib/f-documentation/f-header-menu/f-header-menu.component.mjs +0 -26
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-group.mjs +0 -2
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-item-badge.mjs +0 -2
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-item.mjs +0 -2
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/index.mjs +0 -4
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-group/f-navigation-group.component.mjs +0 -21
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-header/f-navigation-header.component.mjs +0 -26
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-item/f-navigation-item.component.mjs +0 -11
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-panel.component.mjs +0 -101
- package/esm2022/lib/f-documentation/f-navigation-panel/index.mjs +0 -6
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.mjs +0 -107
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.mjs +0 -7
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.mjs +0 -35
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.mjs +0 -7
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/i-parsed-container.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/index.mjs +0 -5
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/copy-to-clipboard.mjs +0 -15
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.mjs +0 -46
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.mjs +0 -54
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group-body.handler.mjs +0 -48
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.mjs +0 -63
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.mjs +0 -10
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/index.mjs +0 -7
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/change-code-focused-syntax.pre-processor.mjs +0 -23
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/highlight.service.mjs +0 -56
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/index.mjs +0 -6
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/mark-code-focused-blocks.post-processor.mjs +0 -53
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/modify-punctuation-highlight.post-processor.mjs +0 -22
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/separate-code-by-lines.post-processor.mjs +0 -28
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/index.mjs +0 -5
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/index.mjs +0 -4
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/markdown.service.mjs +0 -69
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/e-markdown-container-type.mjs +0 -13
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/i-markdown-it-token.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/index.mjs +0 -8
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-alerts.mjs +0 -19
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-group.mjs +0 -54
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-view.mjs +0 -15
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-example-group.mjs +0 -92
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-preview-group.mjs +0 -54
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/utils/get-content.mjs +0 -17
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/utils/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown/f-markdown-renderer.component.mjs +0 -84
- package/esm2022/lib/f-documentation/f-page/f-markdown/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.mjs +0 -37
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.request.mjs +0 -7
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.mjs +0 -9
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/index.mjs +0 -4
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/i-page-link.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.mjs +0 -11
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/f-footer-edit-link.component.mjs +0 -11
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/f-footer-last-updated.component.mjs +0 -11
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.mjs +0 -19
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.mjs +0 -11
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-markdown-footer.component.mjs +0 -89
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/index.mjs +0 -5
- package/esm2022/lib/f-documentation/f-page/f-page.component.mjs +0 -18
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.mjs +0 -14
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/index.mjs +0 -2
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content.component.mjs +0 -69
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-page/index.mjs +0 -5
- package/esm2022/lib/f-documentation/f-preview/f-preview-base.mjs +0 -3
- package/esm2022/lib/f-documentation/f-preview/f-preview.component.mjs +0 -79
- package/esm2022/lib/f-documentation/f-preview-group/f-preview-group.service.mjs +0 -73
- package/esm2022/lib/f-documentation/f-preview-group-filters/f-preview-group-filters.component.mjs +0 -53
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.mjs +0 -53
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.mjs +0 -7
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.mjs +0 -14
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.mjs +0 -9
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.handler.mjs +0 -52
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.request.mjs +0 -9
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/i-table-of-content-item.mjs +0 -2
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/index.mjs +0 -7
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/scroll-to-element-in-container.mjs +0 -35
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/table-of-content-data.mjs +0 -9
- package/esm2022/lib/f-documentation/f-scrollable-container/f-scrollable-container.component.mjs +0 -32
- package/esm2022/lib/f-documentation/f-scrollable-container/f-scrollable.service.mjs +0 -60
- package/esm2022/lib/f-documentation/f-scrollable-container/index.mjs +0 -3
- package/esm2022/lib/f-documentation/f-social-links/f-social-links.component.mjs +0 -13
- package/esm2022/lib/f-documentation/f-version/f-version.component.mjs +0 -16
- package/esm2022/lib/f-documentation/i-documentation-component.mjs +0 -3
- package/esm2022/lib/f-documentation/index.mjs +0 -20
- package/esm2022/lib/f-documentation/providers.mjs +0 -3
- package/esm2022/lib/f-documentation/router.mjs +0 -13
- package/esm2022/lib/f-home-page/domain/i-home-page-environment.mjs +0 -2
- package/esm2022/lib/f-home-page/domain/i-home-page-feature.mjs +0 -2
- package/esm2022/lib/f-home-page/domain/i-home-page-footer.mjs +0 -2
- package/esm2022/lib/f-home-page/domain/i-home-page-hero.mjs +0 -2
- package/esm2022/lib/f-home-page/domain/i-home-page-link.mjs +0 -2
- package/esm2022/lib/f-home-page/domain/i-home-page-membership.mjs +0 -2
- package/esm2022/lib/f-home-page/domain/index.mjs +0 -7
- package/esm2022/lib/f-home-page/f-home-page-environment.service.mjs +0 -39
- package/esm2022/lib/f-home-page/f-home-page-features/f-home-page-features.component.mjs +0 -15
- package/esm2022/lib/f-home-page/f-home-page-footer/f-home-page-footer.component.mjs +0 -13
- package/esm2022/lib/f-home-page/f-home-page-header/f-home-page-header.component.mjs +0 -17
- package/esm2022/lib/f-home-page/f-home-page-hero/f-home-page-buttons-row/f-home-page-buttons-row.component.mjs +0 -18
- package/esm2022/lib/f-home-page/f-home-page-hero/f-home-page-hero.component.mjs +0 -16
- package/esm2022/lib/f-home-page/f-home-page-memberships/f-home-page-memberships.component.mjs +0 -15
- package/esm2022/lib/f-home-page/f-home-page.component.mjs +0 -59
- package/esm2022/lib/f-home-page/index.mjs +0 -10
- package/esm2022/lib/f-home-page/providers.mjs +0 -3
- package/esm2022/lib/f-home-page/router.mjs +0 -7
- package/esm2022/lib/index.mjs +0 -6
- package/esm2022/public-api.mjs +0 -2
- package/lib/common-components/f-cookie-popup/f-cookie-popup.component.d.ts +0 -9
- package/lib/common-components/f-theme-button/f-theme-button.component.d.ts +0 -15
- package/lib/common-services/f-meta.service.d.ts +0 -20
- package/lib/common-services/f-popover.service.d.ts +0 -11
- package/lib/common-services/index.d.ts +0 -5
- package/lib/common-services/json-ld/f-json-ld.service.d.ts +0 -12
- package/lib/common-services/json-ld/i-json-ld-creator.d.ts +0 -7
- package/lib/common-services/json-ld/i-json-ld-entity-of-page.d.ts +0 -3
- package/lib/common-services/json-ld/i-json-ld.d.ts +0 -9
- package/lib/common-services/json-ld/index.d.ts +0 -4
- package/lib/domain/f-state.service.d.ts +0 -13
- package/lib/domain/get-version-handler/get-version.handler.d.ts +0 -13
- package/lib/domain/get-version-handler/get-version.request.d.ts +0 -5
- package/lib/domain/get-version-handler/index.d.ts +0 -2
- package/lib/domain/handle-navigation-links/handle-navigation-links.handler.d.ts +0 -19
- package/lib/domain/i-docs-component.d.ts +0 -5
- package/lib/domain/i-docs-header-navigation-item.d.ts +0 -5
- package/lib/domain/i-docs-version.d.ts +0 -4
- package/lib/domain/i-environment-service.d.ts +0 -4
- package/lib/domain/index.d.ts +0 -10
- package/lib/f-documentation/domain/i-docs-environment.d.ts +0 -21
- package/lib/f-documentation/domain/index.d.ts +0 -1
- package/lib/f-documentation/f-badge/f-badge.component.d.ts +0 -7
- package/lib/f-documentation/f-badge/index.d.ts +0 -1
- package/lib/f-documentation/f-documentation-environment.service.d.ts +0 -23
- package/lib/f-documentation/f-documentation.component.d.ts +0 -15
- package/lib/f-documentation/f-hamburger-button/f-hamburger-button.component.d.ts +0 -9
- package/lib/f-documentation/f-header/f-header.component.d.ts +0 -6
- package/lib/f-documentation/f-header-menu/f-header-menu.component.d.ts +0 -15
- package/lib/f-documentation/f-navigation-panel/f-navigation-group/f-navigation-group.component.d.ts +0 -8
- package/lib/f-documentation/f-navigation-panel/f-navigation-header/f-navigation-header.component.d.ts +0 -12
- package/lib/f-documentation/f-navigation-panel/f-navigation-panel.component.d.ts +0 -28
- package/lib/f-documentation/f-navigation-panel/index.d.ts +0 -5
- package/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.d.ts +0 -26
- package/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/index.d.ts +0 -2
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.d.ts +0 -16
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.d.ts +0 -4
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/i-parsed-container.d.ts +0 -3
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/index.d.ts +0 -4
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.d.ts +0 -10
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.d.ts +0 -18
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.d.ts +0 -3
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.d.ts +0 -2
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group-body.handler.d.ts +0 -15
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.d.ts +0 -21
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.d.ts +0 -6
- package/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/index.d.ts +0 -6
- package/lib/f-documentation/f-page/f-markdown/domain/highlight/highlight.service.d.ts +0 -15
- package/lib/f-documentation/f-page/f-markdown/domain/highlight/separate-code-by-lines.post-processor.d.ts +0 -9
- package/lib/f-documentation/f-page/f-markdown/domain/index.d.ts +0 -4
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/index.d.ts +0 -3
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/markdown.service.d.ts +0 -22
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/index.d.ts +0 -7
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-group.d.ts +0 -17
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-view.d.ts +0 -5
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-example-group.d.ts +0 -21
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-preview-group.d.ts +0 -18
- package/lib/f-documentation/f-page/f-markdown/domain/markdown/utils/get-content.d.ts +0 -2
- package/lib/f-documentation/f-page/f-markdown/f-markdown-renderer.component.d.ts +0 -25
- package/lib/f-documentation/f-page/f-markdown/index.d.ts +0 -2
- package/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.d.ts +0 -6
- package/lib/f-documentation/f-page/f-markdown-footer/domain/features/index.d.ts +0 -1
- package/lib/f-documentation/f-page/f-markdown-footer/domain/index.d.ts +0 -2
- package/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/f-footer-last-updated.component.d.ts +0 -5
- package/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.d.ts +0 -1
- package/lib/f-documentation/f-page/f-markdown-footer/f-markdown-footer.component.d.ts +0 -30
- package/lib/f-documentation/f-page/f-page.component.d.ts +0 -5
- package/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.d.ts +0 -7
- package/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/index.d.ts +0 -1
- package/lib/f-documentation/f-page/f-table-of-content/f-table-of-content.component.d.ts +0 -28
- package/lib/f-documentation/f-page/f-table-of-content/index.d.ts +0 -2
- package/lib/f-documentation/f-page/index.d.ts +0 -4
- package/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.d.ts +0 -15
- package/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.d.ts +0 -5
- package/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/index.d.ts +0 -2
- package/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.d.ts +0 -5
- package/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.handler.d.ts +0 -11
- package/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.request.d.ts +0 -11
- package/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/index.d.ts +0 -2
- package/lib/f-documentation/f-scrollable-container/domain/index.d.ts +0 -6
- package/lib/f-documentation/f-scrollable-container/domain/scroll-to-element-in-container.d.ts +0 -12
- package/lib/f-documentation/f-scrollable-container/f-scrollable-container.component.d.ts +0 -13
- package/lib/f-documentation/f-scrollable-container/f-scrollable.service.d.ts +0 -25
- package/lib/f-documentation/f-scrollable-container/index.d.ts +0 -2
- package/lib/f-documentation/f-version/f-version.component.d.ts +0 -7
- package/lib/f-documentation/i-documentation-component.d.ts +0 -5
- package/lib/f-documentation/index.d.ts +0 -19
- package/lib/f-documentation/providers.d.ts +0 -3
- package/lib/f-documentation/router.d.ts +0 -2
- package/lib/f-home-page/domain/i-home-page-environment.d.ts +0 -20
- package/lib/f-home-page/domain/i-home-page-feature.d.ts +0 -4
- package/lib/f-home-page/domain/i-home-page-footer.d.ts +0 -3
- package/lib/f-home-page/domain/i-home-page-hero.d.ts +0 -6
- package/lib/f-home-page/domain/i-home-page-link.d.ts +0 -7
- package/lib/f-home-page/domain/index.d.ts +0 -6
- package/lib/f-home-page/index.d.ts +0 -9
- package/lib/f-home-page/providers.d.ts +0 -3
- package/lib/f-home-page/router.d.ts +0 -2
- package/lib/index.d.ts +0 -5
- package/public-api.d.ts +0 -1
- /package/lib/{common-components → common/components}/f-checkbox/f-checkbox.component.d.ts +0 -0
- /package/lib/{common-components → common/components}/f-radio-button/f-radio-button.component.d.ts +0 -0
- /package/lib/{f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard → common/utils}/copy-to-clipboard.d.ts +0 -0
- /package/lib/{f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard → common/utils}/index.d.ts +0 -0
- /package/lib/{common-services → documentation-page/analytics}/analytics/f-accept-cookies-key.d.ts +0 -0
- /package/lib/{common-services → documentation-page/analytics}/analytics/i-window-with-analytics.d.ts +0 -0
- /package/lib/{common-services → documentation-page/analytics}/analytics/set-cookie-consent.d.ts +0 -0
- /package/lib/{domain → documentation-page/analytics/common-services}/i-meta-data.d.ts +0 -0
- /package/lib/{f-documentation/f-page/f-markdown-footer/domain/features → documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/domain}/get-previous-next-page-navigation/get-previous-next-page-navigation.request.d.ts +0 -0
- /package/lib/{f-documentation/f-page/f-markdown-footer/domain/features → documentation-page/components/markdown-container/f-markdown/components/f-markdown-footer/domain}/get-previous-next-page-navigation/index.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/f-footer-edit-link.component.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-edit-information/index.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/f-footer-navigation/index.d.ts +0 -0
- /package/lib/{f-documentation/f-page → documentation-page/components/markdown-container/f-markdown/components}/f-markdown-footer/index.d.ts +0 -0
- /package/lib/{f-documentation → documentation-page/components/markdown-container/f-markdown/components/f-preview-group}/f-preview/f-preview-base.d.ts +0 -0
- /package/lib/{f-documentation → documentation-page/components/markdown-container/f-markdown/components/f-preview-group}/f-preview-group-filters/f-preview-group-filters.component.d.ts +0 -0
- /package/lib/{f-documentation/f-page/f-markdown/domain/markdown/parse-markdown → documentation-page/components/markdown-container/f-markdown/markdown/domain}/i-markdown-it-token.d.ts +0 -0
- /package/lib/{f-documentation/f-page/f-markdown/domain/markdown/parse-markdown → documentation-page/components/markdown-container/f-markdown/markdown}/parse-alerts.d.ts +0 -0
- /package/lib/{f-documentation/f-page/f-markdown/domain → documentation-page/components/markdown-container/f-markdown}/markdown/utils/index.d.ts +0 -0
- /package/lib/{f-documentation/f-navigation-panel → documentation-page/components/navigation-panel}/domain/i-navigation-group.d.ts +0 -0
- /package/lib/{f-documentation/f-navigation-panel → documentation-page/components/navigation-panel}/domain/i-navigation-item-badge.d.ts +0 -0
- /package/lib/{f-documentation/f-navigation-panel → documentation-page/components/navigation-panel}/domain/i-navigation-item.d.ts +0 -0
- /package/lib/{f-documentation/f-navigation-panel → documentation-page/components/navigation-panel}/domain/index.d.ts +0 -0
- /package/lib/{f-documentation/f-navigation-panel → documentation-page/components/navigation-panel}/f-navigation-item/f-navigation-item.component.d.ts +0 -0
- /package/lib/{f-documentation/f-scrollable-container → documentation-page/components/scrollable-container}/domain/get-absolute-top-to-container/index.d.ts +0 -0
- /package/lib/{f-documentation/f-scrollable-container → documentation-page/components/scrollable-container}/domain/i-table-of-content-item.d.ts +0 -0
- /package/lib/{f-documentation/f-scrollable-container → documentation-page/components/scrollable-container}/domain/table-of-content-data.d.ts +0 -0
- /package/lib/{domain → documentation-page/domain}/handle-navigation-links/handle-navigation-links.request.d.ts +0 -0
- /package/lib/{domain → documentation-page/domain}/handle-navigation-links/index.d.ts +0 -0
- /package/lib/{f-home-page/f-home-page-hero → home-page/components}/f-home-page-buttons-row/f-home-page-buttons-row.component.d.ts +0 -0
- /package/lib/{f-home-page → home-page/components}/f-home-page-features/f-home-page-features.component.d.ts +0 -0
- /package/lib/{f-home-page → home-page/components}/f-home-page-footer/f-home-page-footer.component.d.ts +0 -0
- /package/lib/{f-home-page → home-page/components}/f-home-page-header/f-home-page-header.component.d.ts +0 -0
- /package/lib/{f-home-page → home-page/components}/f-home-page-hero/f-home-page-hero.component.d.ts +0 -0
- /package/lib/{f-home-page → home-page/components}/f-home-page-memberships/f-home-page-memberships.component.d.ts +0 -0
- /package/lib/{f-home-page → home-page}/domain/i-home-page-membership.d.ts +0 -0
@@ -1,18 +0,0 @@
|
|
1
|
-
import { Component, inject } from '@angular/core';
|
2
|
-
import { RouterLink } from '@angular/router';
|
3
|
-
import { FHomePageEnvironmentService } from '../../f-home-page-environment.service';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export class FHomePageButtonsRowComponent {
|
6
|
-
viewModel = inject(FHomePageEnvironmentService).getButtons();
|
7
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageButtonsRowComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
8
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: FHomePageButtonsRowComponent, isStandalone: true, selector: "f-home-page-buttons-row", host: { properties: { "class.display-none": "!viewModel.length" } }, ngImport: i0, template: "@for (button of viewModel; track button.text) {\n @if (button.routerLink) {\n <a class=\"f-button\" [class.primary]=\"button.primary\" routerLink=\"{{ button.routerLink }}\">\n @if (button.icon) {\n <span class=\"f-icon {{ button.icon }}\"></span>\n }\n {{ button.text }}\n </a>\n } @else if(button.href) {\n <a class=\"f-button\" [class.primary]=\"button.primary\" href=\"{{ button.href }}\">{{ button.text }}</a>\n }\n}\n\n", styles: [":host{display:flex;flex-wrap:wrap;justify-content:center;padding-top:32px;gap:12px;width:fit-content;margin:0 auto}@media (min-width: 960px){:host{margin:0;justify-content:flex-start}}.f-button{display:flex;align-items:center;gap:6px}\n"], dependencies: [{ kind: "directive", type: RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] });
|
9
|
-
}
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageButtonsRowComponent, decorators: [{
|
11
|
-
type: Component,
|
12
|
-
args: [{ selector: 'f-home-page-buttons-row', standalone: true, imports: [
|
13
|
-
RouterLink
|
14
|
-
], host: {
|
15
|
-
'[class.display-none]': '!viewModel.length',
|
16
|
-
}, template: "@for (button of viewModel; track button.text) {\n @if (button.routerLink) {\n <a class=\"f-button\" [class.primary]=\"button.primary\" routerLink=\"{{ button.routerLink }}\">\n @if (button.icon) {\n <span class=\"f-icon {{ button.icon }}\"></span>\n }\n {{ button.text }}\n </a>\n } @else if(button.href) {\n <a class=\"f-button\" [class.primary]=\"button.primary\" href=\"{{ button.href }}\">{{ button.text }}</a>\n }\n}\n\n", styles: [":host{display:flex;flex-wrap:wrap;justify-content:center;padding-top:32px;gap:12px;width:fit-content;margin:0 auto}@media (min-width: 960px){:host{margin:0;justify-content:flex-start}}.f-button{display:flex;align-items:center;gap:6px}\n"] }]
|
17
|
-
}] });
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1ob21lLXBhZ2UtYnV0dG9ucy1yb3cuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbS1yZW5kZXIvc3JjL2xpYi9mLWhvbWUtcGFnZS9mLWhvbWUtcGFnZS1oZXJvL2YtaG9tZS1wYWdlLWJ1dHRvbnMtcm93L2YtaG9tZS1wYWdlLWJ1dHRvbnMtcm93LmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL20tcmVuZGVyL3NyYy9saWIvZi1ob21lLXBhZ2UvZi1ob21lLXBhZ2UtaGVyby9mLWhvbWUtcGFnZS1idXR0b25zLXJvdy9mLWhvbWUtcGFnZS1idXR0b25zLXJvdy5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsVUFBVSxFQUFFLE1BQU0saUJBQWlCLENBQUM7QUFDN0MsT0FBTyxFQUFFLDJCQUEyQixFQUFFLE1BQU0sdUNBQXVDLENBQUM7O0FBY3BGLE1BQU0sT0FBTyw0QkFBNEI7SUFDN0IsU0FBUyxHQUFHLE1BQU0sQ0FBQywyQkFBMkIsQ0FBQyxDQUFDLFVBQVUsRUFBRSxDQUFDO3dHQUQ1RCw0QkFBNEI7NEZBQTVCLDRCQUE0Qix3SkNoQnpDLDZjQWFBLHNTREhJLFVBQVU7OzRGQU1ELDRCQUE0QjtrQkFaeEMsU0FBUzsrQkFDRSx5QkFBeUIsY0FHdkIsSUFBSSxXQUNQO3dCQUNQLFVBQVU7cUJBQ1gsUUFDSzt3QkFDSixzQkFBc0IsRUFBRSxtQkFBbUI7cUJBQzVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFJvdXRlckxpbmsgfSBmcm9tICdAYW5ndWxhci9yb3V0ZXInO1xuaW1wb3J0IHsgRkhvbWVQYWdlRW52aXJvbm1lbnRTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vZi1ob21lLXBhZ2UtZW52aXJvbm1lbnQuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2YtaG9tZS1wYWdlLWJ1dHRvbnMtcm93JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2YtaG9tZS1wYWdlLWJ1dHRvbnMtcm93LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmw6ICcuL2YtaG9tZS1wYWdlLWJ1dHRvbnMtcm93LmNvbXBvbmVudC5zY3NzJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIFJvdXRlckxpbmtcbiAgXSxcbiAgaG9zdDoge1xuICAgICdbY2xhc3MuZGlzcGxheS1ub25lXSc6ICchdmlld01vZGVsLmxlbmd0aCcsXG4gIH1cbn0pXG5leHBvcnQgY2xhc3MgRkhvbWVQYWdlQnV0dG9uc1Jvd0NvbXBvbmVudCB7XG4gIHByb3RlY3RlZCB2aWV3TW9kZWwgPSBpbmplY3QoRkhvbWVQYWdlRW52aXJvbm1lbnRTZXJ2aWNlKS5nZXRCdXR0b25zKCk7XG59XG4iLCJAZm9yIChidXR0b24gb2Ygdmlld01vZGVsOyB0cmFjayBidXR0b24udGV4dCkge1xuICBAaWYgKGJ1dHRvbi5yb3V0ZXJMaW5rKSB7XG4gICAgPGEgY2xhc3M9XCJmLWJ1dHRvblwiIFtjbGFzcy5wcmltYXJ5XT1cImJ1dHRvbi5wcmltYXJ5XCIgcm91dGVyTGluaz1cInt7IGJ1dHRvbi5yb3V0ZXJMaW5rIH19XCI+XG4gICAgICBAaWYgKGJ1dHRvbi5pY29uKSB7XG4gICAgICAgIDxzcGFuIGNsYXNzPVwiZi1pY29uIHt7IGJ1dHRvbi5pY29uIH19XCI+PC9zcGFuPlxuICAgICAgfVxuICAgICAge3sgYnV0dG9uLnRleHQgfX1cbiAgICA8L2E+XG4gIH0gQGVsc2UgaWYoYnV0dG9uLmhyZWYpIHtcbiAgICA8YSBjbGFzcz1cImYtYnV0dG9uXCIgW2NsYXNzLnByaW1hcnldPVwiYnV0dG9uLnByaW1hcnlcIiBocmVmPVwie3sgYnV0dG9uLmhyZWYgfX1cIj57eyBidXR0b24udGV4dCB9fTwvYT5cbiAgfVxufVxuXG4iXX0=
|
@@ -1,16 +0,0 @@
|
|
1
|
-
import { Component, inject } from '@angular/core';
|
2
|
-
import { FHomePageButtonsRowComponent } from './f-home-page-buttons-row/f-home-page-buttons-row.component';
|
3
|
-
import { FHomePageEnvironmentService } from '../f-home-page-environment.service';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export class FHomePageHeroComponent {
|
6
|
-
viewModel = inject(FHomePageEnvironmentService).getHero();
|
7
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageHeroComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
8
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FHomePageHeroComponent, isStandalone: true, selector: "f-home-page-hero", ngImport: i0, template: "<h1>{{ viewModel.headline }}</h1>\n<p class=\"powered\">{{ viewModel.tagline1 }}</p>\n<p class=\"powered\">{{ viewModel.tagline2 }}</p>\n<p class=\"second-description\">{{ viewModel.subDescription }}</p>\n<f-home-page-buttons-row></f-home-page-buttons-row>\n", styles: [":host{display:block;width:100%}@media (min-width: 640px){:host{width:100%}}@media (min-width: 960px){:host{width:50%}}.powered,h1{letter-spacing:-.4px;line-height:40px;font-size:32px;font-weight:700;width:fit-content;margin:0 auto;text-align:center;white-space:pre-wrap;pointer-events:all}@media (min-width: 640px){.powered,h1{line-height:56px;font-size:48px}}@media (min-width: 960px){.powered,h1{line-height:64px;font-size:56px;margin:0;text-align:left}}h1{background:-webkit-linear-gradient(120deg,#bd34fe 30%,#41d1ff);background-clip:text;color:transparent}.second-description{line-height:28px;font-size:18px;font-weight:500;white-space:pre-wrap;color:var(--secondary-text);margin:0 auto;width:fit-content;pointer-events:all;text-align:center;padding:8px 16px 0}@media (min-width: 640px){.second-description{padding-top:12px;line-height:32px;font-size:20px}}@media (min-width: 960px){.second-description{line-height:36px;font-size:24px;margin:0;text-align:left;padding:8px 0 0}}\n"], dependencies: [{ kind: "component", type: FHomePageButtonsRowComponent, selector: "f-home-page-buttons-row" }] });
|
9
|
-
}
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageHeroComponent, decorators: [{
|
11
|
-
type: Component,
|
12
|
-
args: [{ selector: 'f-home-page-hero', standalone: true, imports: [
|
13
|
-
FHomePageButtonsRowComponent
|
14
|
-
], template: "<h1>{{ viewModel.headline }}</h1>\n<p class=\"powered\">{{ viewModel.tagline1 }}</p>\n<p class=\"powered\">{{ viewModel.tagline2 }}</p>\n<p class=\"second-description\">{{ viewModel.subDescription }}</p>\n<f-home-page-buttons-row></f-home-page-buttons-row>\n", styles: [":host{display:block;width:100%}@media (min-width: 640px){:host{width:100%}}@media (min-width: 960px){:host{width:50%}}.powered,h1{letter-spacing:-.4px;line-height:40px;font-size:32px;font-weight:700;width:fit-content;margin:0 auto;text-align:center;white-space:pre-wrap;pointer-events:all}@media (min-width: 640px){.powered,h1{line-height:56px;font-size:48px}}@media (min-width: 960px){.powered,h1{line-height:64px;font-size:56px;margin:0;text-align:left}}h1{background:-webkit-linear-gradient(120deg,#bd34fe 30%,#41d1ff);background-clip:text;color:transparent}.second-description{line-height:28px;font-size:18px;font-weight:500;white-space:pre-wrap;color:var(--secondary-text);margin:0 auto;width:fit-content;pointer-events:all;text-align:center;padding:8px 16px 0}@media (min-width: 640px){.second-description{padding-top:12px;line-height:32px;font-size:20px}}@media (min-width: 960px){.second-description{line-height:36px;font-size:24px;margin:0;text-align:left;padding:8px 0 0}}\n"] }]
|
15
|
-
}] });
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1ob21lLXBhZ2UtaGVyby5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2YtaG9tZS1wYWdlL2YtaG9tZS1wYWdlLWhlcm8vZi1ob21lLXBhZ2UtaGVyby5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2YtaG9tZS1wYWdlL2YtaG9tZS1wYWdlLWhlcm8vZi1ob21lLXBhZ2UtaGVyby5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUNsRCxPQUFPLEVBQUUsNEJBQTRCLEVBQUUsTUFBTSw2REFBNkQsQ0FBQztBQUMzRyxPQUFPLEVBQUUsMkJBQTJCLEVBQUUsTUFBTSxvQ0FBb0MsQ0FBQzs7QUFXakYsTUFBTSxPQUFPLHNCQUFzQjtJQUV2QixTQUFTLEdBQUcsTUFBTSxDQUFDLDJCQUEyQixDQUFDLENBQUMsT0FBTyxFQUFFLENBQUM7d0dBRnpELHNCQUFzQjs0RkFBdEIsc0JBQXNCLDRFQ2JuQyxvUUFLQSxraENES0ksNEJBQTRCOzs0RkFHbkIsc0JBQXNCO2tCQVRsQyxTQUFTOytCQUNFLGtCQUFrQixjQUdoQixJQUFJLFdBQ1A7d0JBQ1AsNEJBQTRCO3FCQUM3QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgaW5qZWN0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGSG9tZVBhZ2VCdXR0b25zUm93Q29tcG9uZW50IH0gZnJvbSAnLi9mLWhvbWUtcGFnZS1idXR0b25zLXJvdy9mLWhvbWUtcGFnZS1idXR0b25zLXJvdy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRkhvbWVQYWdlRW52aXJvbm1lbnRTZXJ2aWNlIH0gZnJvbSAnLi4vZi1ob21lLXBhZ2UtZW52aXJvbm1lbnQuc2VydmljZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2YtaG9tZS1wYWdlLWhlcm8nLFxuICB0ZW1wbGF0ZVVybDogJy4vZi1ob21lLXBhZ2UtaGVyby5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsOiAnLi9mLWhvbWUtcGFnZS1oZXJvLmNvbXBvbmVudC5zY3NzJyxcbiAgc3RhbmRhbG9uZTogdHJ1ZSxcbiAgaW1wb3J0czogW1xuICAgIEZIb21lUGFnZUJ1dHRvbnNSb3dDb21wb25lbnRcbiAgXVxufSlcbmV4cG9ydCBjbGFzcyBGSG9tZVBhZ2VIZXJvQ29tcG9uZW50IHtcblxuICBwcm90ZWN0ZWQgdmlld01vZGVsID0gaW5qZWN0KEZIb21lUGFnZUVudmlyb25tZW50U2VydmljZSkuZ2V0SGVybygpO1xufVxuIiwiPGgxPnt7IHZpZXdNb2RlbC5oZWFkbGluZSB9fTwvaDE+XG48cCBjbGFzcz1cInBvd2VyZWRcIj57eyB2aWV3TW9kZWwudGFnbGluZTEgfX08L3A+XG48cCBjbGFzcz1cInBvd2VyZWRcIj57eyB2aWV3TW9kZWwudGFnbGluZTIgfX08L3A+XG48cCBjbGFzcz1cInNlY29uZC1kZXNjcmlwdGlvblwiPnt7IHZpZXdNb2RlbC5zdWJEZXNjcmlwdGlvbiB9fTwvcD5cbjxmLWhvbWUtcGFnZS1idXR0b25zLXJvdz48L2YtaG9tZS1wYWdlLWJ1dHRvbnMtcm93PlxuIl19
|
package/esm2022/lib/f-home-page/f-home-page-memberships/f-home-page-memberships.component.mjs
DELETED
@@ -1,15 +0,0 @@
|
|
1
|
-
import { Component, inject } from '@angular/core';
|
2
|
-
import { FHomePageEnvironmentService } from '../f-home-page-environment.service';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class FHomePageMembershipsComponent {
|
5
|
-
viewModel = inject(FHomePageEnvironmentService).getMemberships();
|
6
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageMembershipsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
7
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: FHomePageMembershipsComponent, isStandalone: true, selector: "f-home-page-memberships", host: { properties: { "class.display-none": "!viewModel.length" } }, ngImport: i0, template: "<div class=\"membership-list\">\n @for (membership of viewModel; track membership.id) {\n <div class=\"membership\">\n <h2>{{ membership.name }}</h2>\n <p>{{ membership.description }}</p>\n <div class=\"benefit-list\">\n @for (benefit of membership.benefits; track benefit) {\n <p class=\"benefit\">\u2705 {{ benefit }}</p>\n }\n </div>\n <a class=\"f-button\" [href]=\"membership.buttonRef\">{{ membership.buttonText }}</a>\n </div>\n }\n</div>\n", styles: [":host{margin-top:64px;margin-bottom:64px;width:100%;display:block;padding:0 24px}:host .membership-list{margin:0 auto;display:flex;flex-wrap:wrap;gap:16px;max-width:1248px;pointer-events:none}:host .membership{width:100%;border-radius:4px;background-color:var(--soft-background);display:flex;flex-direction:column;padding:24px;position:relative;pointer-events:all}:host .membership h2{margin:0;line-height:24px;font-size:16px;font-weight:600}:host .membership p{flex-grow:1;padding-top:8px;line-height:24px;font-size:14px;font-weight:500;color:var(--secondary-text)}:host .membership .price{color:var(--primary-text);font-size:1.2rem;font-weight:700;padding-top:16px}:host .membership .price span{font-weight:600;color:var(--primary-color)}:host .membership .benefit-list{display:flex;flex-direction:column;padding:16px 0}@media (min-width: 640px){:host{padding:0 48px}:host .membership{width:calc(50% - 12px);min-width:unset}}@media (min-width: 960px){:host{padding:0 64px}:host .membership{width:calc(25% - 12px);min-width:300px}}:host a{pointer-events:all}.ribbon{position:absolute;top:-10px;right:-10px;color:var(--button-primary-text);background-color:var(--button-primary-bg);padding:4px 8px;font-size:.8rem;border-radius:2px}\n"] });
|
8
|
-
}
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageMembershipsComponent, decorators: [{
|
10
|
-
type: Component,
|
11
|
-
args: [{ selector: 'f-home-page-memberships', standalone: true, host: {
|
12
|
-
'[class.display-none]': '!viewModel.length',
|
13
|
-
}, template: "<div class=\"membership-list\">\n @for (membership of viewModel; track membership.id) {\n <div class=\"membership\">\n <h2>{{ membership.name }}</h2>\n <p>{{ membership.description }}</p>\n <div class=\"benefit-list\">\n @for (benefit of membership.benefits; track benefit) {\n <p class=\"benefit\">\u2705 {{ benefit }}</p>\n }\n </div>\n <a class=\"f-button\" [href]=\"membership.buttonRef\">{{ membership.buttonText }}</a>\n </div>\n }\n</div>\n", styles: [":host{margin-top:64px;margin-bottom:64px;width:100%;display:block;padding:0 24px}:host .membership-list{margin:0 auto;display:flex;flex-wrap:wrap;gap:16px;max-width:1248px;pointer-events:none}:host .membership{width:100%;border-radius:4px;background-color:var(--soft-background);display:flex;flex-direction:column;padding:24px;position:relative;pointer-events:all}:host .membership h2{margin:0;line-height:24px;font-size:16px;font-weight:600}:host .membership p{flex-grow:1;padding-top:8px;line-height:24px;font-size:14px;font-weight:500;color:var(--secondary-text)}:host .membership .price{color:var(--primary-text);font-size:1.2rem;font-weight:700;padding-top:16px}:host .membership .price span{font-weight:600;color:var(--primary-color)}:host .membership .benefit-list{display:flex;flex-direction:column;padding:16px 0}@media (min-width: 640px){:host{padding:0 48px}:host .membership{width:calc(50% - 12px);min-width:unset}}@media (min-width: 960px){:host{padding:0 64px}:host .membership{width:calc(25% - 12px);min-width:300px}}:host a{pointer-events:all}.ribbon{position:absolute;top:-10px;right:-10px;color:var(--button-primary-text);background-color:var(--button-primary-bg);padding:4px 8px;font-size:.8rem;border-radius:2px}\n"] }]
|
14
|
-
}] });
|
15
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1ob21lLXBhZ2UtbWVtYmVyc2hpcHMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbS1yZW5kZXIvc3JjL2xpYi9mLWhvbWUtcGFnZS9mLWhvbWUtcGFnZS1tZW1iZXJzaGlwcy9mLWhvbWUtcGFnZS1tZW1iZXJzaGlwcy5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2YtaG9tZS1wYWdlL2YtaG9tZS1wYWdlLW1lbWJlcnNoaXBzL2YtaG9tZS1wYWdlLW1lbWJlcnNoaXBzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ2xELE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLG9DQUFvQyxDQUFDOztBQVdqRixNQUFNLE9BQU8sNkJBQTZCO0lBQzlCLFNBQVMsR0FBRyxNQUFNLENBQUMsMkJBQTJCLENBQUMsQ0FBQyxjQUFjLEVBQUUsQ0FBQzt3R0FEaEUsNkJBQTZCOzRGQUE3Qiw2QkFBNkIsd0pDWjFDLHlmQWNBOzs0RkRGYSw2QkFBNkI7a0JBVHpDLFNBQVM7K0JBQ0UseUJBQXlCLGNBR3ZCLElBQUksUUFDVjt3QkFDSixzQkFBc0IsRUFBRSxtQkFBbUI7cUJBQzVDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBpbmplY3QgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZIb21lUGFnZUVudmlyb25tZW50U2VydmljZSB9IGZyb20gJy4uL2YtaG9tZS1wYWdlLWVudmlyb25tZW50LnNlcnZpY2UnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdmLWhvbWUtcGFnZS1tZW1iZXJzaGlwcycsXG4gIHRlbXBsYXRlVXJsOiAnLi9mLWhvbWUtcGFnZS1tZW1iZXJzaGlwcy5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsOiAnLi9mLWhvbWUtcGFnZS1tZW1iZXJzaGlwcy5jb21wb25lbnQuc2NzcycsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGhvc3Q6IHtcbiAgICAnW2NsYXNzLmRpc3BsYXktbm9uZV0nOiAnIXZpZXdNb2RlbC5sZW5ndGgnLFxuICB9XG59KVxuZXhwb3J0IGNsYXNzIEZIb21lUGFnZU1lbWJlcnNoaXBzQ29tcG9uZW50IHtcbiAgcHJvdGVjdGVkIHZpZXdNb2RlbCA9IGluamVjdChGSG9tZVBhZ2VFbnZpcm9ubWVudFNlcnZpY2UpLmdldE1lbWJlcnNoaXBzKCk7XG59XG4iLCI8ZGl2IGNsYXNzPVwibWVtYmVyc2hpcC1saXN0XCI+XG4gIEBmb3IgKG1lbWJlcnNoaXAgb2Ygdmlld01vZGVsOyB0cmFjayBtZW1iZXJzaGlwLmlkKSB7XG4gICAgPGRpdiBjbGFzcz1cIm1lbWJlcnNoaXBcIj5cbiAgICAgIDxoMj57eyBtZW1iZXJzaGlwLm5hbWUgfX08L2gyPlxuICAgICAgPHA+e3sgbWVtYmVyc2hpcC5kZXNjcmlwdGlvbiB9fTwvcD5cbiAgICAgIDxkaXYgY2xhc3M9XCJiZW5lZml0LWxpc3RcIj5cbiAgICAgICAgQGZvciAoYmVuZWZpdCBvZiBtZW1iZXJzaGlwLmJlbmVmaXRzOyB0cmFjayBiZW5lZml0KSB7XG4gICAgICAgICAgPHAgY2xhc3M9XCJiZW5lZml0XCI+4pyFIHt7IGJlbmVmaXQgfX08L3A+XG4gICAgICAgIH1cbiAgICAgIDwvZGl2PlxuICAgICAgPGEgY2xhc3M9XCJmLWJ1dHRvblwiIFtocmVmXT1cIm1lbWJlcnNoaXAuYnV0dG9uUmVmXCI+e3sgbWVtYmVyc2hpcC5idXR0b25UZXh0IH19PC9hPlxuICAgIDwvZGl2PlxuICB9XG48L2Rpdj5cbiJdfQ==
|
@@ -1,59 +0,0 @@
|
|
1
|
-
import { ChangeDetectionStrategy, Component, inject, 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 { FHomePageMembershipsComponent } from './f-home-page-memberships/f-home-page-memberships.component';
|
8
|
-
import * as i0 from "@angular/core";
|
9
|
-
export class FHomePageComponent {
|
10
|
-
_environment = inject(FHomePageEnvironmentService);
|
11
|
-
_backgroundContainer;
|
12
|
-
_heroImageContainer;
|
13
|
-
ngAfterViewInit() {
|
14
|
-
this._renderImageComponent(this._environment.getImageComponent());
|
15
|
-
this._renderBackgroundComponent(this._environment.getBackgroundComponent());
|
16
|
-
}
|
17
|
-
_renderImageComponent(component) {
|
18
|
-
if (component) {
|
19
|
-
this.requestComponentRedraw(this._getImageComponentReference(component));
|
20
|
-
}
|
21
|
-
}
|
22
|
-
_renderBackgroundComponent(component) {
|
23
|
-
if (component) {
|
24
|
-
this.requestComponentRedraw(this._getBackgroundComponentReference(component));
|
25
|
-
}
|
26
|
-
}
|
27
|
-
_getBackgroundComponentReference(component) {
|
28
|
-
return this._backgroundContainer.createComponent(component);
|
29
|
-
}
|
30
|
-
_getImageComponentReference(component) {
|
31
|
-
return this._heroImageContainer.createComponent(component);
|
32
|
-
}
|
33
|
-
requestComponentRedraw(componentRef) {
|
34
|
-
componentRef.changeDetectorRef.markForCheck();
|
35
|
-
}
|
36
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
37
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: FHomePageComponent, isStandalone: true, selector: "f-home-page", providers: [
|
38
|
-
FHomePageEnvironmentService,
|
39
|
-
], 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 <f-home-page-memberships></f-home-page-memberships>\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" }, { kind: "component", type: FHomePageMembershipsComponent, selector: "f-home-page-memberships" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
40
|
-
}
|
41
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FHomePageComponent, decorators: [{
|
42
|
-
type: Component,
|
43
|
-
args: [{ selector: 'f-home-page', standalone: true, changeDetection: ChangeDetectionStrategy.OnPush, providers: [
|
44
|
-
FHomePageEnvironmentService,
|
45
|
-
], imports: [
|
46
|
-
FHomePageFooterComponent,
|
47
|
-
FHomePageHeaderComponent,
|
48
|
-
FHomePageFeaturesComponent,
|
49
|
-
FHomePageHeroComponent,
|
50
|
-
FHomePageMembershipsComponent,
|
51
|
-
], 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 <f-home-page-memberships></f-home-page-memberships>\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"] }]
|
52
|
-
}], propDecorators: { _backgroundContainer: [{
|
53
|
-
type: ViewChild,
|
54
|
-
args: ['backgroundContainer', { read: ViewContainerRef }]
|
55
|
-
}], _heroImageContainer: [{
|
56
|
-
type: ViewChild,
|
57
|
-
args: ['heroImageContainer', { read: ViewContainerRef }]
|
58
|
-
}] } });
|
59
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1ob21lLXBhZ2UuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvbS1yZW5kZXIvc3JjL2xpYi9mLWhvbWUtcGFnZS9mLWhvbWUtcGFnZS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2YtaG9tZS1wYWdlL2YtaG9tZS1wYWdlLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFFTCx1QkFBdUIsRUFBRSxTQUFTLEVBQWdCLE1BQU0sRUFBUSxTQUFTLEVBQUUsZ0JBQWdCLEVBQzVGLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLG1EQUFtRCxDQUFDO0FBQzdGLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLG1EQUFtRCxDQUFDO0FBQzdGLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHVEQUF1RCxDQUFDO0FBQ25HLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLCtDQUErQyxDQUFDO0FBQ3ZGLE9BQU8sRUFBRSwyQkFBMkIsRUFBRSxNQUFNLG1DQUFtQyxDQUFDO0FBQ2hGLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLDZEQUE2RCxDQUFDOztBQW1CNUcsTUFBTSxPQUFPLGtCQUFrQjtJQUVyQixZQUFZLEdBQUcsTUFBTSxDQUFDLDJCQUEyQixDQUFDLENBQUM7SUFHbkQsb0JBQW9CLENBQStCO0lBR25ELG1CQUFtQixDQUErQjtJQUVuRCxlQUFlO1FBQ3BCLElBQUksQ0FBQyxxQkFBcUIsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLGlCQUFpQixFQUFFLENBQUMsQ0FBQztRQUNsRSxJQUFJLENBQUMsMEJBQTBCLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxzQkFBc0IsRUFBRSxDQUFDLENBQUM7SUFDOUUsQ0FBQztJQUVPLHFCQUFxQixDQUFJLFNBQW1CO1FBQ2xELElBQUksU0FBUyxFQUFFLENBQUM7WUFDZCxJQUFJLENBQUMsc0JBQXNCLENBQUMsSUFBSSxDQUFDLDJCQUEyQixDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUM7UUFDM0UsQ0FBQztJQUNILENBQUM7SUFFTywwQkFBMEIsQ0FBSSxTQUFtQjtRQUN2RCxJQUFJLFNBQVMsRUFBRSxDQUFDO1lBQ2QsSUFBSSxDQUFDLHNCQUFzQixDQUFDLElBQUksQ0FBQyxnQ0FBZ0MsQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDO1FBQ2hGLENBQUM7SUFDSCxDQUFDO0lBRU8sZ0NBQWdDLENBQUksU0FBa0I7UUFDNUQsT0FBTyxJQUFJLENBQUMsb0JBQXFCLENBQUMsZUFBZSxDQUFDLFNBQVMsQ0FBQyxDQUFDO0lBQy9ELENBQUM7SUFFTywyQkFBMkIsQ0FBSSxTQUFrQjtRQUN2RCxPQUFPLElBQUksQ0FBQyxtQkFBb0IsQ0FBQyxlQUFlLENBQUMsU0FBUyxDQUFDLENBQUM7SUFDOUQsQ0FBQztJQUVPLHNCQUFzQixDQUFDLFlBQStCO1FBQzVELFlBQVksQ0FBQyxpQkFBaUIsQ0FBQyxZQUFZLEVBQUUsQ0FBQztJQUNoRCxDQUFDO3dHQXJDVSxrQkFBa0I7NEZBQWxCLGtCQUFrQiwwREFYbEI7WUFDVCwyQkFBMkI7U0FDNUIsa0lBYXlDLGdCQUFnQixvSEFHakIsZ0JBQWdCLDZCQ25DM0Qsc2JBY0EsNnBCRE9JLHdCQUF3Qix1RUFDeEIsd0JBQXdCLHVFQUN4QiwwQkFBMEIsaUVBQzFCLHNCQUFzQiw2REFDdEIsNkJBQTZCOzs0RkFHcEIsa0JBQWtCO2tCQWpCOUIsU0FBUzsrQkFDRSxhQUFhLGNBR1gsSUFBSSxtQkFDQyx1QkFBdUIsQ0FBQyxNQUFNLGFBQ3BDO3dCQUNULDJCQUEyQjtxQkFDNUIsV0FDUTt3QkFDUCx3QkFBd0I7d0JBQ3hCLHdCQUF3Qjt3QkFDeEIsMEJBQTBCO3dCQUMxQixzQkFBc0I7d0JBQ3RCLDZCQUE2QjtxQkFDOUI7OEJBT08sb0JBQW9CO3NCQUQzQixTQUFTO3VCQUFDLHFCQUFxQixFQUFFLEVBQUUsSUFBSSxFQUFFLGdCQUFnQixFQUFFO2dCQUlwRCxtQkFBbUI7c0JBRDFCLFNBQVM7dUJBQUMsb0JBQW9CLEVBQUUsRUFBRSxJQUFJLEVBQUUsZ0JBQWdCLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSwgQ29tcG9uZW50LCBDb21wb25lbnRSZWYsIGluamVjdCwgVHlwZSwgVmlld0NoaWxkLCBWaWV3Q29udGFpbmVyUmVmXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRkhvbWVQYWdlRm9vdGVyQ29tcG9uZW50IH0gZnJvbSAnLi9mLWhvbWUtcGFnZS1mb290ZXIvZi1ob21lLXBhZ2UtZm9vdGVyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGSG9tZVBhZ2VIZWFkZXJDb21wb25lbnQgfSBmcm9tICcuL2YtaG9tZS1wYWdlLWhlYWRlci9mLWhvbWUtcGFnZS1oZWFkZXIuY29tcG9uZW50JztcbmltcG9ydCB7IEZIb21lUGFnZUZlYXR1cmVzQ29tcG9uZW50IH0gZnJvbSAnLi9mLWhvbWUtcGFnZS1mZWF0dXJlcy9mLWhvbWUtcGFnZS1mZWF0dXJlcy5jb21wb25lbnQnO1xuaW1wb3J0IHsgRkhvbWVQYWdlSGVyb0NvbXBvbmVudCB9IGZyb20gJy4vZi1ob21lLXBhZ2UtaGVyby9mLWhvbWUtcGFnZS1oZXJvLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBGSG9tZVBhZ2VFbnZpcm9ubWVudFNlcnZpY2UgfSBmcm9tICcuL2YtaG9tZS1wYWdlLWVudmlyb25tZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgRkhvbWVQYWdlTWVtYmVyc2hpcHNDb21wb25lbnQgfSBmcm9tICcuL2YtaG9tZS1wYWdlLW1lbWJlcnNoaXBzL2YtaG9tZS1wYWdlLW1lbWJlcnNoaXBzLmNvbXBvbmVudCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2YtaG9tZS1wYWdlJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2YtaG9tZS1wYWdlLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbICcuL2YtaG9tZS1wYWdlLmNvbXBvbmVudC5zY3NzJyBdLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgcHJvdmlkZXJzOiBbXG4gICAgRkhvbWVQYWdlRW52aXJvbm1lbnRTZXJ2aWNlLFxuICBdLFxuICBpbXBvcnRzOiBbXG4gICAgRkhvbWVQYWdlRm9vdGVyQ29tcG9uZW50LFxuICAgIEZIb21lUGFnZUhlYWRlckNvbXBvbmVudCxcbiAgICBGSG9tZVBhZ2VGZWF0dXJlc0NvbXBvbmVudCxcbiAgICBGSG9tZVBhZ2VIZXJvQ29tcG9uZW50LFxuICAgIEZIb21lUGFnZU1lbWJlcnNoaXBzQ29tcG9uZW50LFxuICBdXG59KVxuZXhwb3J0IGNsYXNzIEZIb21lUGFnZUNvbXBvbmVudCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xuXG4gIHByaXZhdGUgX2Vudmlyb25tZW50ID0gaW5qZWN0KEZIb21lUGFnZUVudmlyb25tZW50U2VydmljZSk7XG5cbiAgQFZpZXdDaGlsZCgnYmFja2dyb3VuZENvbnRhaW5lcicsIHsgcmVhZDogVmlld0NvbnRhaW5lclJlZiB9KVxuICBwcml2YXRlIF9iYWNrZ3JvdW5kQ29udGFpbmVyOiBWaWV3Q29udGFpbmVyUmVmIHwgdW5kZWZpbmVkO1xuXG4gIEBWaWV3Q2hpbGQoJ2hlcm9JbWFnZUNvbnRhaW5lcicsIHsgcmVhZDogVmlld0NvbnRhaW5lclJlZiB9KVxuICBwcml2YXRlIF9oZXJvSW1hZ2VDb250YWluZXI6IFZpZXdDb250YWluZXJSZWYgfCB1bmRlZmluZWQ7XG5cbiAgcHVibGljIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9yZW5kZXJJbWFnZUNvbXBvbmVudCh0aGlzLl9lbnZpcm9ubWVudC5nZXRJbWFnZUNvbXBvbmVudCgpKTtcbiAgICB0aGlzLl9yZW5kZXJCYWNrZ3JvdW5kQ29tcG9uZW50KHRoaXMuX2Vudmlyb25tZW50LmdldEJhY2tncm91bmRDb21wb25lbnQoKSk7XG4gIH1cblxuICBwcml2YXRlIF9yZW5kZXJJbWFnZUNvbXBvbmVudDxUPihjb21wb25lbnQ/OiBUeXBlPFQ+KTogdm9pZCB7XG4gICAgaWYgKGNvbXBvbmVudCkge1xuICAgICAgdGhpcy5yZXF1ZXN0Q29tcG9uZW50UmVkcmF3KHRoaXMuX2dldEltYWdlQ29tcG9uZW50UmVmZXJlbmNlKGNvbXBvbmVudCkpO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgX3JlbmRlckJhY2tncm91bmRDb21wb25lbnQ8VD4oY29tcG9uZW50PzogVHlwZTxUPik6IHZvaWQge1xuICAgIGlmIChjb21wb25lbnQpIHtcbiAgICAgIHRoaXMucmVxdWVzdENvbXBvbmVudFJlZHJhdyh0aGlzLl9nZXRCYWNrZ3JvdW5kQ29tcG9uZW50UmVmZXJlbmNlKGNvbXBvbmVudCkpO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgX2dldEJhY2tncm91bmRDb21wb25lbnRSZWZlcmVuY2U8VD4oY29tcG9uZW50OiBUeXBlPFQ+KTogQ29tcG9uZW50UmVmPFQ+IHtcbiAgICByZXR1cm4gdGhpcy5fYmFja2dyb3VuZENvbnRhaW5lciEuY3JlYXRlQ29tcG9uZW50KGNvbXBvbmVudCk7XG4gIH1cblxuICBwcml2YXRlIF9nZXRJbWFnZUNvbXBvbmVudFJlZmVyZW5jZTxUPihjb21wb25lbnQ6IFR5cGU8VD4pOiBDb21wb25lbnRSZWY8VD4ge1xuICAgIHJldHVybiB0aGlzLl9oZXJvSW1hZ2VDb250YWluZXIhLmNyZWF0ZUNvbXBvbmVudChjb21wb25lbnQpO1xuICB9XG5cbiAgcHJpdmF0ZSByZXF1ZXN0Q29tcG9uZW50UmVkcmF3KGNvbXBvbmVudFJlZjogQ29tcG9uZW50UmVmPGFueT4pOiB2b2lkIHtcbiAgICBjb21wb25lbnRSZWYuY2hhbmdlRGV0ZWN0b3JSZWYubWFya0ZvckNoZWNrKCk7XG4gIH1cbn1cbiIsIjxuZy1jb250YWluZXIgI2JhY2tncm91bmRDb250YWluZXI+PC9uZy1jb250YWluZXI+XG48aGVhZGVyIGYtaG9tZS1wYWdlLWhlYWRlcj48L2hlYWRlcj5cblxuPGRpdiBjbGFzcz1cImJvZHlcIj5cbiAgPGRpdiBjbGFzcz1cImhlcm8tcm93XCI+XG4gICAgPGYtaG9tZS1wYWdlLWhlcm8+PC9mLWhvbWUtcGFnZS1oZXJvPlxuICAgIDxuZy1jb250YWluZXIgI2hlcm9JbWFnZUNvbnRhaW5lcj48L25nLWNvbnRhaW5lcj5cbiAgPC9kaXY+XG4gIDxmLWhvbWUtcGFnZS1mZWF0dXJlcz48L2YtaG9tZS1wYWdlLWZlYXR1cmVzPlxuICA8Zi1ob21lLXBhZ2UtbWVtYmVyc2hpcHM+PC9mLWhvbWUtcGFnZS1tZW1iZXJzaGlwcz5cbjwvZGl2PlxuXG48ZGl2IGNsYXNzPVwiZmxleC1zcGFjZVwiPjwvZGl2PlxuPGZvb3RlciBmLWhvbWUtcGFnZS1mb290ZXI+PC9mb290ZXI+XG4iXX0=
|
@@ -1,10 +0,0 @@
|
|
1
|
-
export * from './domain';
|
2
|
-
export * from './f-home-page-features/f-home-page-features.component';
|
3
|
-
export * from './f-home-page-memberships/f-home-page-memberships.component';
|
4
|
-
export * from './f-home-page-header/f-home-page-header.component';
|
5
|
-
export * from './f-home-page-footer/f-home-page-footer.component';
|
6
|
-
export * from './f-home-page.component';
|
7
|
-
export * from './f-home-page-environment.service';
|
8
|
-
export * from './providers';
|
9
|
-
export * from './router';
|
10
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2YtaG9tZS1wYWdlL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsVUFBVSxDQUFDO0FBRXpCLGNBQWMsdURBQXVELENBQUM7QUFFdEUsY0FBYyw2REFBNkQsQ0FBQztBQUU1RSxjQUFjLG1EQUFtRCxDQUFDO0FBRWxFLGNBQWMsbURBQW1ELENBQUM7QUFFbEUsY0FBYyx5QkFBeUIsQ0FBQztBQUV4QyxjQUFjLG1DQUFtQyxDQUFDO0FBRWxELGNBQWMsYUFBYSxDQUFDO0FBRTVCLGNBQWMsVUFBVSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9kb21haW4nO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtaG9tZS1wYWdlLWZlYXR1cmVzL2YtaG9tZS1wYWdlLWZlYXR1cmVzLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1ob21lLXBhZ2UtbWVtYmVyc2hpcHMvZi1ob21lLXBhZ2UtbWVtYmVyc2hpcHMuY29tcG9uZW50JztcblxuZXhwb3J0ICogZnJvbSAnLi9mLWhvbWUtcGFnZS1oZWFkZXIvZi1ob21lLXBhZ2UtaGVhZGVyLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1ob21lLXBhZ2UtZm9vdGVyL2YtaG9tZS1wYWdlLWZvb3Rlci5jb21wb25lbnQnO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtaG9tZS1wYWdlLmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1ob21lLXBhZ2UtZW52aXJvbm1lbnQuc2VydmljZSc7XG5cbmV4cG9ydCAqIGZyb20gJy4vcHJvdmlkZXJzJztcblxuZXhwb3J0ICogZnJvbSAnLi9yb3V0ZXInO1xuIl19
|
@@ -1,3 +0,0 @@
|
|
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==
|
@@ -1,7 +0,0 @@
|
|
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=
|
package/esm2022/lib/index.mjs
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
export * from './common-components';
|
2
|
-
export * from './common-services';
|
3
|
-
export * from './domain';
|
4
|
-
export * from './f-documentation';
|
5
|
-
export * from './f-home-page';
|
6
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9tLXJlbmRlci9zcmMvbGliL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMscUJBQXFCLENBQUM7QUFFcEMsY0FBYyxtQkFBbUIsQ0FBQztBQUVsQyxjQUFjLFVBQVUsQ0FBQztBQUV6QixjQUFjLG1CQUFtQixDQUFDO0FBRWxDLGNBQWMsZUFBZSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21tb24tY29tcG9uZW50cyc7XG5cbmV4cG9ydCAqIGZyb20gJy4vY29tbW9uLXNlcnZpY2VzJztcblxuZXhwb3J0ICogZnJvbSAnLi9kb21haW4nO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtZG9jdW1lbnRhdGlvbic7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1ob21lLXBhZ2UnO1xuIl19
|
package/esm2022/public-api.mjs
DELETED
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './lib';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL20tcmVuZGVyL3NyYy9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsT0FBTyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9saWInO1xuXG4iXX0=
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
export declare class CookiePopup {
|
3
|
-
private readonly fLocalStorage;
|
4
|
-
hasAccepted: import("@angular/core").WritableSignal<boolean>;
|
5
|
-
constructor();
|
6
|
-
protected accept(): void;
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CookiePopup, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CookiePopup, "f-cookie-popup", never, {}, {}, never, never, true, never>;
|
9
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import { OnInit, Renderer2 } from '@angular/core';
|
2
|
-
import { BrowserService } from '@foblex/platform';
|
3
|
-
import { FStateService } from '../../domain/f-state.service';
|
4
|
-
import * as i0 from "@angular/core";
|
5
|
-
export declare class FThemeButtonComponent implements OnInit {
|
6
|
-
private renderer;
|
7
|
-
private fState;
|
8
|
-
private fBrowser;
|
9
|
-
constructor(renderer: Renderer2, fState: FStateService, fBrowser: BrowserService);
|
10
|
-
ngOnInit(): void;
|
11
|
-
private isDocumentContainsDarkTheme;
|
12
|
-
protected onClick(): void;
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FThemeButtonComponent, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FThemeButtonComponent, "button[f-theme-button]", never, {}, {}, never, never, true, never>;
|
15
|
-
}
|
@@ -1,20 +0,0 @@
|
|
1
|
-
import { Router } from '@angular/router';
|
2
|
-
import { Subscription } from 'rxjs';
|
3
|
-
import { BrowserService } from '@foblex/platform';
|
4
|
-
import { IMetaData } from '../domain/i-meta-data';
|
5
|
-
import { IDocsEnvironment } from '../f-documentation';
|
6
|
-
import { FHeadTagService } from './index';
|
7
|
-
import * as i0 from "@angular/core";
|
8
|
-
export declare class FMetaService {
|
9
|
-
private router;
|
10
|
-
private fHeadTag;
|
11
|
-
private fBrowser;
|
12
|
-
private navigation;
|
13
|
-
constructor(router: Router, fHeadTag: FHeadTagService, fBrowser: BrowserService);
|
14
|
-
subscribeOnRouteChanges(defaultData: IMetaData, environments: IDocsEnvironment[]): Subscription;
|
15
|
-
private findDocGroupByUrl;
|
16
|
-
private findDocItemByUrl;
|
17
|
-
private updateMetaTags;
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FMetaService, never>;
|
19
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FMetaService>;
|
20
|
-
}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
import { DestroyRef } from '@angular/core';
|
2
|
-
import { Observable } from 'rxjs';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export declare class FPopoverService {
|
5
|
-
private popover;
|
6
|
-
get popover$(): Observable<string | null>;
|
7
|
-
show(message: string): void;
|
8
|
-
dispose(destroyRef: DestroyRef): void;
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FPopoverService, never>;
|
10
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FPopoverService>;
|
11
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import { IJsonLD } from './i-json-ld';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
export declare class FJsonLdService {
|
4
|
-
private _document;
|
5
|
-
private _dom;
|
6
|
-
constructor(_document: any);
|
7
|
-
update(data: IJsonLD): void;
|
8
|
-
private cleanup;
|
9
|
-
private createScript;
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FJsonLdService, never>;
|
11
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FJsonLdService>;
|
12
|
-
}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import { IJsonLdCreator } from './i-json-ld-creator';
|
2
|
-
import { IJsonLdEntityOfPage } from './i-json-ld-entity-of-page';
|
3
|
-
export interface IJsonLD {
|
4
|
-
name: string;
|
5
|
-
url: string;
|
6
|
-
description: string;
|
7
|
-
creator: IJsonLdCreator;
|
8
|
-
mainEntityOfPage: IJsonLdEntityOfPage;
|
9
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import { Observable } from 'rxjs';
|
2
|
-
import { BrowserService } from '@foblex/platform';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export declare class FStateService {
|
5
|
-
private fBrowser;
|
6
|
-
private theme;
|
7
|
-
constructor(fBrowser: BrowserService);
|
8
|
-
get theme$(): Observable<void>;
|
9
|
-
updateTheme(): void;
|
10
|
-
getPreferredTheme(): string;
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FStateService, never>;
|
12
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FStateService>;
|
13
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
import { GetVersionRequest } from './get-version.request';
|
2
|
-
import { IHandler } from '@foblex/mediator';
|
3
|
-
import { Observable } from 'rxjs';
|
4
|
-
import { HttpClient } from '@angular/common/http';
|
5
|
-
export declare class GetVersionHandler implements IHandler<GetVersionRequest, Observable<string | undefined>> {
|
6
|
-
private http;
|
7
|
-
constructor(http: HttpClient);
|
8
|
-
handle(request: GetVersionRequest): Observable<string | undefined>;
|
9
|
-
private getLocalVersion;
|
10
|
-
private getNpmPackage;
|
11
|
-
private getNpmVersion;
|
12
|
-
private getNpmRegistry;
|
13
|
-
}
|
@@ -1,19 +0,0 @@
|
|
1
|
-
import { IHandler } from '@foblex/mediator';
|
2
|
-
import { HandleNavigationLinksRequest } from './handle-navigation-links.request';
|
3
|
-
import { Router } from '@angular/router';
|
4
|
-
import { BrowserService } from '@foblex/platform';
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
export declare class HandleNavigationLinksHandler implements IHandler<HandleNavigationLinksRequest, void> {
|
7
|
-
private router;
|
8
|
-
private fBrowser;
|
9
|
-
constructor(router: Router, fBrowser: BrowserService);
|
10
|
-
handle(request: HandleNavigationLinksRequest): void;
|
11
|
-
private isAnchorTag;
|
12
|
-
private hasHref;
|
13
|
-
private isExternalLink;
|
14
|
-
private navigateInternalLink;
|
15
|
-
private replaceAfterLastSlash;
|
16
|
-
private openExternalLink;
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<HandleNavigationLinksHandler, never>;
|
18
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<HandleNavigationLinksHandler>;
|
19
|
-
}
|
package/lib/domain/index.d.ts
DELETED
@@ -1,10 +0,0 @@
|
|
1
|
-
export * from './get-version-handler';
|
2
|
-
export * from './handle-navigation-links';
|
3
|
-
export * from './i-docs-component';
|
4
|
-
export * from './i-docs-footer-navigation';
|
5
|
-
export * from './i-docs-header-navigation-item';
|
6
|
-
export * from './i-docs-social-link';
|
7
|
-
export * from './i-docs-table-of-content';
|
8
|
-
export * from './i-docs-version';
|
9
|
-
export * from './i-environment-service';
|
10
|
-
export * from './i-meta-data';
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import { INavigationGroup } from '../f-navigation-panel';
|
2
|
-
import { IDocsSocialLink } from '../../domain';
|
3
|
-
import { IDocsComponent } from '../../domain';
|
4
|
-
import { IDocsVersion } from '../../domain';
|
5
|
-
import { IDocsFooterNavigation } from '../../domain';
|
6
|
-
import { IDocsTableOfContent } from '../../domain';
|
7
|
-
import { IDocsHeaderNavigationItem } from '../../domain';
|
8
|
-
export interface IDocsEnvironment {
|
9
|
-
lang: string;
|
10
|
-
docsDir: string;
|
11
|
-
notFoundMD: string;
|
12
|
-
logo: string;
|
13
|
-
title: string;
|
14
|
-
version?: IDocsVersion;
|
15
|
-
headerNavigation?: IDocsHeaderNavigationItem[];
|
16
|
-
navigation: INavigationGroup[];
|
17
|
-
footerNavigation?: IDocsFooterNavigation;
|
18
|
-
components?: IDocsComponent[];
|
19
|
-
socialLinks?: IDocsSocialLink[];
|
20
|
-
toC?: IDocsTableOfContent;
|
21
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export * from './i-docs-environment';
|
@@ -1,7 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
export declare class FBadgeComponent {
|
3
|
-
text: string;
|
4
|
-
type: 'success' | 'danger' | 'warning' | 'info' | 'tip';
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FBadgeComponent, never>;
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FBadgeComponent, "span[f-badge]", never, { "text": { "alias": "text"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
7
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export * from './f-badge.component';
|
@@ -1,23 +0,0 @@
|
|
1
|
-
import { IDocsComponent, IDocsFooterNavigation, IDocsHeaderNavigationItem, IDocsSocialLink, IDocsTableOfContent, IEnvironmentService } from '../domain';
|
2
|
-
import { IDocsEnvironment, INavigationGroup } from './index';
|
3
|
-
import { Observable } from 'rxjs';
|
4
|
-
import { HttpClient } from '@angular/common/http';
|
5
|
-
import * as i0 from "@angular/core";
|
6
|
-
export declare class FDocumentationEnvironmentService implements IEnvironmentService {
|
7
|
-
private environment;
|
8
|
-
private http;
|
9
|
-
constructor(environment: IDocsEnvironment, http: HttpClient);
|
10
|
-
getMarkdownUrl(markdown: string): string;
|
11
|
-
private isMarkdownExist;
|
12
|
-
getLogo(): string;
|
13
|
-
getTitle(): string;
|
14
|
-
getHeaderNavigation(): IDocsHeaderNavigationItem[];
|
15
|
-
getVersion(): Observable<string | undefined>;
|
16
|
-
getComponents(): IDocsComponent[];
|
17
|
-
getNavigation(): INavigationGroup[];
|
18
|
-
getFooterNavigation(): IDocsFooterNavigation;
|
19
|
-
getSocialLinks(): IDocsSocialLink[];
|
20
|
-
getToC(): IDocsTableOfContent;
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FDocumentationEnvironmentService, [{ optional: true; }, null]>;
|
22
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FDocumentationEnvironmentService>;
|
23
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
2
|
-
import { IDocumentationComponent } from './i-documentation-component';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export declare class FDocumentationComponent implements IDocumentationComponent, OnInit {
|
5
|
-
protected isNavigationVisible: boolean;
|
6
|
-
protected popoverMessage: string | null;
|
7
|
-
private _fPopover;
|
8
|
-
private _destroyRef;
|
9
|
-
private _changeDetectorRef;
|
10
|
-
ngOnInit(): void;
|
11
|
-
private _subscribeOnPopover;
|
12
|
-
onToggleNavigation(value: boolean): void;
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FDocumentationComponent, never>;
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FDocumentationComponent, "f-documentation", never, {}, {}, never, never, true, never>;
|
15
|
-
}
|
@@ -1,9 +0,0 @@
|
|
1
|
-
import { IDocumentationComponent } from '../index';
|
2
|
-
import * as i0 from "@angular/core";
|
3
|
-
export declare class FHamburgerButtonComponent {
|
4
|
-
private fDocumentation;
|
5
|
-
constructor(fDocumentation: IDocumentationComponent);
|
6
|
-
onShowNavigation(): void;
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FHamburgerButtonComponent, never>;
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FHamburgerButtonComponent, "button[f-hamburger-button]", never, {}, {}, never, never, true, never>;
|
9
|
-
}
|
@@ -1,6 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
export declare class FHeaderComponent {
|
3
|
-
protected title: string;
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FHeaderComponent, never>;
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FHeaderComponent, "f-header", never, {}, {}, never, never, true, never>;
|
6
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
import { OnInit } from '@angular/core';
|
2
|
-
import { IDocsHeaderNavigationItem } from '../../domain';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export declare class FHeaderMenuComponent implements OnInit {
|
5
|
-
protected navigation: IDocsHeaderNavigationItemViewModel[];
|
6
|
-
private _router;
|
7
|
-
private _fEnvironmentService;
|
8
|
-
ngOnInit(): void;
|
9
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FHeaderMenuComponent, never>;
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FHeaderMenuComponent, "f-header-menu", never, {}, {}, never, never, true, never>;
|
11
|
-
}
|
12
|
-
type IDocsHeaderNavigationItemViewModel = IDocsHeaderNavigationItem & {
|
13
|
-
isActive: boolean;
|
14
|
-
};
|
15
|
-
export {};
|
package/lib/f-documentation/f-navigation-panel/f-navigation-group/f-navigation-group.component.d.ts
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
import * as i0 from "@angular/core";
|
2
|
-
export declare class FNavigationGroupComponent {
|
3
|
-
title: string | undefined;
|
4
|
-
isCollapsed: boolean;
|
5
|
-
toggle(): void;
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FNavigationGroupComponent, never>;
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FNavigationGroupComponent, "f-navigation-group", never, { "title": { "alias": "title"; "required": false; }; }, {}, never, ["*"], true, never>;
|
8
|
-
}
|
@@ -1,12 +0,0 @@
|
|
1
|
-
import { Router } from '@angular/router';
|
2
|
-
import { FDocumentationEnvironmentService } from '../../f-documentation-environment.service';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export declare class FNavigationHeaderComponent {
|
5
|
-
private router;
|
6
|
-
private fEnvironmentService;
|
7
|
-
protected title: string;
|
8
|
-
protected image: string;
|
9
|
-
constructor(router: Router, fEnvironmentService: FDocumentationEnvironmentService);
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FNavigationHeaderComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FNavigationHeaderComponent, "a[f-navigation-header]", never, {}, {}, never, never, true, never>;
|
12
|
-
}
|
@@ -1,28 +0,0 @@
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, Injector, OnDestroy, OnInit, QueryList } from '@angular/core';
|
2
|
-
import { Router } from '@angular/router';
|
3
|
-
import { FNavigationItemComponent } from './f-navigation-item/f-navigation-item.component';
|
4
|
-
import { FDocumentationEnvironmentService, IDocumentationComponent } from '../index';
|
5
|
-
import { INavigationGroup } from './domain';
|
6
|
-
import * as i0 from "@angular/core";
|
7
|
-
export declare class FNavigationPanelComponent implements OnInit, AfterViewInit, OnDestroy {
|
8
|
-
private fEnvironmentService;
|
9
|
-
private fDocumentation;
|
10
|
-
private router;
|
11
|
-
private injector;
|
12
|
-
private changeDetectorRef;
|
13
|
-
private subscription;
|
14
|
-
protected items: QueryList<FNavigationItemComponent>;
|
15
|
-
protected value: string | undefined;
|
16
|
-
protected navigation: INavigationGroup[];
|
17
|
-
constructor(fEnvironmentService: FDocumentationEnvironmentService, fDocumentation: IDocumentationComponent, router: Router, injector: Injector, changeDetectorRef: ChangeDetectorRef);
|
18
|
-
ngOnInit(): void;
|
19
|
-
private normalizeLink;
|
20
|
-
private isExternalLink;
|
21
|
-
ngAfterViewInit(): void;
|
22
|
-
private subscribeOnRouteChanges;
|
23
|
-
private highlightLink;
|
24
|
-
onDocumentClick(event: MouseEvent): void;
|
25
|
-
ngOnDestroy(): void;
|
26
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FNavigationPanelComponent, never>;
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FNavigationPanelComponent, "f-navigation-panel", never, {}, {}, never, never, true, never>;
|
28
|
-
}
|
@@ -1,5 +0,0 @@
|
|
1
|
-
export * from './domain';
|
2
|
-
export * from './f-navigation-group/f-navigation-group.component';
|
3
|
-
export * from './f-navigation-header/f-navigation-header.component';
|
4
|
-
export * from './f-navigation-item/f-navigation-item.component';
|
5
|
-
export * from './f-navigation-panel.component';
|