@foblex/m-render 2.5.1 → 2.5.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/LICENSE +1 -1
- package/esm2022/lib/common-components/f-checkbox/f-checkbox.component.mjs +73 -0
- package/esm2022/lib/{f-documentation → common-components}/f-cookie-popup/f-cookie-popup.component.mjs +6 -6
- package/esm2022/lib/common-components/f-hamburger-button/f-hamburger-button.component.mjs +25 -0
- package/esm2022/lib/common-components/f-header-menu/f-header-menu.component.mjs +26 -0
- package/esm2022/lib/common-components/f-social-links/f-social-links.component.mjs +13 -0
- package/esm2022/lib/common-components/f-theme-button/f-theme-button.component.mjs +44 -0
- package/esm2022/lib/common-components/f-version/f-version.component.mjs +16 -0
- package/esm2022/lib/common-components/index.mjs +8 -0
- package/esm2022/lib/common-services/analytics/f-analytics.service.mjs +6 -8
- package/esm2022/lib/common-services/f-head-tag.service.mjs +6 -4
- package/esm2022/lib/common-services/f-meta.service.mjs +80 -0
- package/esm2022/lib/common-services/f-popover.service.mjs +23 -0
- package/esm2022/lib/common-services/index.mjs +3 -1
- package/esm2022/lib/common-services/json-ld/f-json-ld.service.mjs +6 -4
- package/esm2022/lib/domain/f-state.service.mjs +6 -5
- package/esm2022/lib/domain/get-version-handler/get-version.handler.mjs +28 -0
- package/esm2022/lib/domain/get-version-handler/get-version.request.mjs +7 -0
- package/esm2022/lib/domain/get-version-handler/index.mjs +3 -0
- package/esm2022/lib/domain/handle-navigation-links/handle-navigation-links.handler.mjs +53 -0
- package/esm2022/lib/domain/handle-navigation-links/handle-navigation-links.request.mjs +7 -0
- package/esm2022/lib/domain/handle-navigation-links/index.mjs +3 -0
- package/esm2022/lib/domain/i-environment-service.mjs +3 -0
- package/esm2022/lib/domain/index.mjs +4 -8
- package/esm2022/lib/f-documentation/domain/i-docs-environment.mjs +2 -0
- package/esm2022/lib/f-documentation/domain/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-badge/f-badge.component.mjs +6 -8
- package/esm2022/lib/f-documentation/f-documentation-environment.service.mjs +69 -0
- package/esm2022/lib/f-documentation/f-documentation.component.mjs +20 -14
- package/esm2022/lib/f-documentation/f-header/f-header.component.mjs +9 -17
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-group.mjs +2 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-item-badge.mjs +2 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/i-navigation-item.mjs +2 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/domain/index.mjs +4 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-group/f-navigation-group.component.mjs +21 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-header/f-navigation-header.component.mjs +26 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-item/f-navigation-item.component.mjs +11 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/f-navigation-panel.component.mjs +101 -0
- package/esm2022/lib/f-documentation/f-navigation-panel/index.mjs +6 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.mjs +104 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.mjs +7 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-dynamic-components/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.mjs +35 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.mjs +7 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/i-parsed-container.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/index.mjs +5 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/copy-to-clipboard.mjs +15 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.mjs +46 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.mjs +54 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.mjs +3 -0
- package/esm2022/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group-body.handler.mjs +4 -1
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.mjs +63 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.mjs +10 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/index.mjs +7 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/change-code-focused-syntax.pre-processor.mjs +23 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/highlight.service.mjs +56 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/index.mjs +6 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/mark-code-focused-blocks.post-processor.mjs +53 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/modify-punctuation-highlight.post-processor.mjs +22 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/highlight/separate-code-by-lines.post-processor.mjs +28 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/index.mjs +5 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/index.mjs +4 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/markdown.service.mjs +69 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/e-markdown-container-type.mjs +13 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/i-markdown-it-token.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/index.mjs +8 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-alerts.mjs +19 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-group.mjs +54 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-view.mjs +15 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-example-group.mjs +92 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/parse-markdown/parse-preview-group.mjs +50 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/utils/get-content.mjs +17 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/domain/markdown/utils/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/f-markdown-renderer.component.mjs +84 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.mjs +37 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.request.mjs +7 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.mjs +9 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/index.mjs +4 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/features/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/i-page-link.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/domain/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.mjs +11 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/f-footer-edit-link.component.mjs +11 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/f-footer-last-updated.component.mjs +11 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-edit-information/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.mjs +19 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.mjs +11 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-footer-navigation/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/f-markdown-footer.component.mjs +89 -0
- package/esm2022/lib/f-documentation/f-page/f-markdown-footer/index.mjs +5 -0
- package/esm2022/lib/f-documentation/f-page/f-page.component.mjs +18 -0
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.mjs +14 -0
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content-items/index.mjs +2 -0
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/f-table-of-content.component.mjs +69 -0
- package/esm2022/lib/f-documentation/f-page/f-table-of-content/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-page/index.mjs +5 -0
- package/esm2022/lib/f-documentation/f-preview/f-preview.component.mjs +16 -7
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.mjs +53 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.mjs +7 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/calculate-hash-from-scroll-position/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.mjs +14 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.mjs +9 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-absolute-top-to-container/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.handler.mjs +52 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.request.mjs +9 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/get-table-of-content-data/index.mjs +3 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/i-table-of-content-item.mjs +2 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/index.mjs +7 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/scroll-to-element-in-container.mjs +35 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/domain/table-of-content-data.mjs +9 -0
- package/esm2022/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/f-scrollable-container.component.mjs +7 -5
- package/esm2022/lib/f-documentation/f-scrollable-container/f-scrollable.service.mjs +60 -0
- package/esm2022/lib/f-documentation/f-scrollable-container/index.mjs +3 -0
- package/esm2022/lib/f-documentation/index.mjs +8 -8
- package/esm2022/lib/f-documentation/providers.mjs +3 -0
- package/esm2022/lib/f-documentation/router.mjs +13 -0
- package/esm2022/lib/f-home-page/domain/i-home-page-environment.mjs +2 -0
- package/esm2022/lib/f-home-page/domain/i-home-page-feature.mjs +2 -0
- package/esm2022/lib/f-home-page/domain/i-home-page-footer.mjs +2 -0
- package/esm2022/lib/f-home-page/domain/i-home-page-hero.mjs +2 -0
- package/esm2022/lib/f-home-page/domain/i-home-page-link.mjs +2 -0
- package/esm2022/lib/f-home-page/domain/index.mjs +6 -0
- package/esm2022/lib/f-home-page/f-home-page-environment.service.mjs +57 -0
- package/esm2022/lib/f-home-page/f-home-page-features/f-home-page-features.component.mjs +13 -0
- package/esm2022/lib/f-home-page/f-home-page-footer/f-home-page-footer.component.mjs +13 -0
- package/esm2022/lib/f-home-page/f-home-page-header/f-home-page-header.component.mjs +17 -0
- package/esm2022/lib/f-home-page/f-home-page-hero/f-home-page-buttons-row/f-home-page-buttons-row.component.mjs +16 -0
- package/esm2022/lib/f-home-page/f-home-page-hero/f-home-page-hero.component.mjs +16 -0
- package/esm2022/lib/f-home-page/f-home-page.component.mjs +66 -0
- package/esm2022/lib/f-home-page/index.mjs +9 -0
- package/esm2022/lib/f-home-page/providers.mjs +3 -0
- package/esm2022/lib/f-home-page/router.mjs +7 -0
- package/esm2022/lib/index.mjs +3 -4
- package/fesm2022/foblex-m-render.mjs +1347 -1033
- package/fesm2022/foblex-m-render.mjs.map +1 -1
- package/lib/{f-documentation → common-components}/f-hamburger-button/f-hamburger-button.component.d.ts +1 -1
- package/lib/{f-documentation → common-components}/f-header-menu/f-header-menu.component.d.ts +3 -5
- package/lib/{f-documentation → common-components}/f-social-links/f-social-links.component.d.ts +1 -4
- package/lib/{f-documentation → common-components}/f-version/f-version.component.d.ts +0 -3
- package/lib/common-components/index.d.ts +7 -0
- package/lib/common-services/analytics/set-cookie-consent.d.ts +1 -1
- package/lib/{domain → common-services}/f-meta.service.d.ts +3 -3
- package/lib/common-services/index.d.ts +2 -0
- package/lib/domain/{features/get-version-handler → get-version-handler}/get-version.request.d.ts +1 -1
- package/lib/domain/i-environment-service.d.ts +12 -0
- package/lib/domain/index.d.ts +3 -7
- package/lib/{domain → f-documentation/domain}/i-docs-environment.d.ts +6 -6
- package/lib/f-documentation/domain/index.d.ts +1 -0
- package/lib/{domain/f-environment.service.d.ts → f-documentation/f-documentation-environment.service.d.ts} +5 -5
- package/lib/f-documentation/f-documentation.component.d.ts +1 -1
- package/lib/f-documentation/f-header/f-header.component.d.ts +0 -3
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-header/f-navigation-header.component.d.ts +2 -2
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-panel.component.d.ts +2 -3
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.d.ts +2 -2
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/markdown.service.d.ts +2 -2
- package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.d.ts +2 -2
- package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-markdown-footer.component.d.ts +3 -2
- package/lib/{f-page → f-documentation/f-page}/f-table-of-content/f-table-of-content.component.d.ts +2 -2
- package/lib/f-documentation/f-preview/f-preview.component.d.ts +3 -3
- package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/f-scrollable.service.d.ts +2 -2
- package/lib/f-documentation/index.d.ts +7 -7
- package/lib/f-documentation/providers.d.ts +3 -0
- package/lib/f-home-page/domain/i-home-page-environment.d.ts +19 -0
- package/lib/f-home-page/domain/i-home-page-feature.d.ts +4 -0
- package/lib/f-home-page/domain/i-home-page-footer.d.ts +3 -0
- package/lib/f-home-page/domain/i-home-page-hero.d.ts +6 -0
- package/lib/f-home-page/domain/i-home-page-link.d.ts +6 -0
- package/lib/f-home-page/domain/index.d.ts +5 -0
- package/lib/f-home-page/f-home-page-environment.service.d.ts +24 -0
- package/lib/f-home-page/f-home-page-features/f-home-page-features.component.d.ts +6 -0
- package/lib/f-home-page/f-home-page-footer/f-home-page-footer.component.d.ts +6 -0
- package/lib/f-home-page/f-home-page-header/f-home-page-header.component.d.ts +7 -0
- package/lib/f-home-page/f-home-page-hero/f-home-page-buttons-row/f-home-page-buttons-row.component.d.ts +6 -0
- package/lib/f-home-page/f-home-page-hero/f-home-page-hero.component.d.ts +6 -0
- package/lib/f-home-page/f-home-page.component.d.ts +17 -0
- package/lib/f-home-page/index.d.ts +8 -0
- package/lib/f-home-page/providers.d.ts +3 -0
- package/lib/f-home-page/router.d.ts +2 -0
- package/lib/index.d.ts +2 -3
- package/package.json +3 -3
- package/esm2022/lib/domain/f-environment.service.mjs +0 -66
- package/esm2022/lib/domain/f-meta.service.mjs +0 -77
- package/esm2022/lib/domain/f-popover.service.mjs +0 -25
- package/esm2022/lib/domain/features/get-version-handler/get-version.handler.mjs +0 -27
- package/esm2022/lib/domain/features/get-version-handler/get-version.request.mjs +0 -6
- package/esm2022/lib/domain/features/get-version-handler/index.mjs +0 -3
- package/esm2022/lib/domain/features/handle-navigation-links/handle-navigation-links.handler.mjs +0 -51
- package/esm2022/lib/domain/features/handle-navigation-links/handle-navigation-links.request.mjs +0 -6
- package/esm2022/lib/domain/features/handle-navigation-links/index.mjs +0 -3
- package/esm2022/lib/domain/features/index.mjs +0 -3
- package/esm2022/lib/domain/i-docs-environment.mjs +0 -2
- package/esm2022/lib/domain/providers.mjs +0 -3
- package/esm2022/lib/domain/router.mjs +0 -13
- package/esm2022/lib/f-documentation/f-checkbox/f-checkbox.component.mjs +0 -70
- package/esm2022/lib/f-documentation/f-hamburger-button/f-hamburger-button.component.mjs +0 -24
- package/esm2022/lib/f-documentation/f-header-menu/f-header-menu.component.mjs +0 -29
- package/esm2022/lib/f-documentation/f-social-links/f-social-links.component.mjs +0 -18
- package/esm2022/lib/f-documentation/f-theme-button/f-theme-button.component.mjs +0 -41
- package/esm2022/lib/f-documentation/f-version/f-version.component.mjs +0 -19
- package/esm2022/lib/f-navigation-panel/domain/i-navigation-group.mjs +0 -2
- package/esm2022/lib/f-navigation-panel/domain/i-navigation-item-badge.mjs +0 -2
- package/esm2022/lib/f-navigation-panel/domain/i-navigation-item.mjs +0 -2
- package/esm2022/lib/f-navigation-panel/domain/index.mjs +0 -4
- package/esm2022/lib/f-navigation-panel/f-navigation-group/f-navigation-group.component.mjs +0 -22
- package/esm2022/lib/f-navigation-panel/f-navigation-header/f-navigation-header.component.mjs +0 -24
- package/esm2022/lib/f-navigation-panel/f-navigation-item/f-navigation-item.component.mjs +0 -11
- package/esm2022/lib/f-navigation-panel/f-navigation-panel.component.mjs +0 -94
- package/esm2022/lib/f-navigation-panel/index.mjs +0 -6
- package/esm2022/lib/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.handler.mjs +0 -102
- package/esm2022/lib/f-page/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.mjs +0 -6
- package/esm2022/lib/f-page/f-markdown/domain/handle-dynamic-components/index.mjs +0 -3
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.mjs +0 -34
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.mjs +0 -6
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/i-parsed-container.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/index.mjs +0 -5
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/copy-to-clipboard.mjs +0 -15
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/index.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.mjs +0 -46
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.mjs +0 -51
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.mjs +0 -3
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.mjs +0 -60
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.mjs +0 -9
- package/esm2022/lib/f-page/f-markdown/domain/handle-parsed-containers/pseudo-components/index.mjs +0 -7
- package/esm2022/lib/f-page/f-markdown/domain/highlight/change-code-focused-syntax.pre-processor.mjs +0 -23
- package/esm2022/lib/f-page/f-markdown/domain/highlight/highlight.service.mjs +0 -54
- package/esm2022/lib/f-page/f-markdown/domain/highlight/index.mjs +0 -6
- package/esm2022/lib/f-page/f-markdown/domain/highlight/mark-code-focused-blocks.post-processor.mjs +0 -52
- package/esm2022/lib/f-page/f-markdown/domain/highlight/modify-punctuation-highlight.post-processor.mjs +0 -22
- package/esm2022/lib/f-page/f-markdown/domain/highlight/separate-code-by-lines.post-processor.mjs +0 -28
- package/esm2022/lib/f-page/f-markdown/domain/index.mjs +0 -5
- package/esm2022/lib/f-page/f-markdown/domain/markdown/index.mjs +0 -4
- package/esm2022/lib/f-page/f-markdown/domain/markdown/markdown.service.mjs +0 -65
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/e-markdown-container-type.mjs +0 -13
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/i-markdown-it-token.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/index.mjs +0 -8
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-alerts.mjs +0 -19
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-group.mjs +0 -54
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-code-view.mjs +0 -15
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-example-group.mjs +0 -92
- package/esm2022/lib/f-page/f-markdown/domain/markdown/parse-markdown/parse-preview-group.mjs +0 -49
- package/esm2022/lib/f-page/f-markdown/domain/markdown/utils/get-content.mjs +0 -17
- package/esm2022/lib/f-page/f-markdown/domain/markdown/utils/index.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown/f-markdown-renderer.component.mjs +0 -80
- package/esm2022/lib/f-page/f-markdown/index.mjs +0 -3
- package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.handler.mjs +0 -36
- package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.request.mjs +0 -6
- package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.mjs +0 -7
- package/esm2022/lib/f-page/f-markdown-footer/domain/features/get-previous-next-page-navigation/index.mjs +0 -4
- package/esm2022/lib/f-page/f-markdown-footer/domain/features/index.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown-footer/domain/i-page-link.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown-footer/domain/index.mjs +0 -3
- package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.mjs +0 -11
- package/esm2022/lib/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-page/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.mjs +0 -2
- package/esm2022/lib/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-page/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown-footer/f-footer-edit-information/index.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.mjs +0 -17
- package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.mjs +0 -2
- package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.mjs +0 -11
- package/esm2022/lib/f-page/f-markdown-footer/f-footer-navigation/index.mjs +0 -3
- package/esm2022/lib/f-page/f-markdown-footer/f-markdown-footer.component.mjs +0 -82
- package/esm2022/lib/f-page/f-markdown-footer/index.mjs +0 -5
- package/esm2022/lib/f-page/f-page.component.mjs +0 -18
- package/esm2022/lib/f-page/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.mjs +0 -16
- package/esm2022/lib/f-page/f-table-of-content/f-table-of-content-items/index.mjs +0 -2
- package/esm2022/lib/f-page/f-table-of-content/f-table-of-content.component.mjs +0 -63
- package/esm2022/lib/f-page/f-table-of-content/index.mjs +0 -3
- package/esm2022/lib/f-page/index.mjs +0 -5
- package/esm2022/lib/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.mjs +0 -51
- package/esm2022/lib/f-scrollable-container/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.mjs +0 -6
- package/esm2022/lib/f-scrollable-container/domain/calculate-hash-from-scroll-position/index.mjs +0 -3
- package/esm2022/lib/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.mjs +0 -14
- package/esm2022/lib/f-scrollable-container/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.mjs +0 -7
- package/esm2022/lib/f-scrollable-container/domain/get-absolute-top-to-container/index.mjs +0 -3
- package/esm2022/lib/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.handler.mjs +0 -52
- package/esm2022/lib/f-scrollable-container/domain/get-table-of-content-data/get-table-of-content-data.request.mjs +0 -7
- package/esm2022/lib/f-scrollable-container/domain/get-table-of-content-data/index.mjs +0 -3
- package/esm2022/lib/f-scrollable-container/domain/i-table-of-content-item.mjs +0 -2
- package/esm2022/lib/f-scrollable-container/domain/index.mjs +0 -7
- package/esm2022/lib/f-scrollable-container/domain/scroll-to-element-in-container.mjs +0 -34
- package/esm2022/lib/f-scrollable-container/domain/table-of-content-data.mjs +0 -7
- package/esm2022/lib/f-scrollable-container/f-scrollable.service.mjs +0 -57
- package/esm2022/lib/f-scrollable-container/index.mjs +0 -3
- package/lib/domain/features/index.d.ts +0 -2
- package/lib/domain/providers.d.ts +0 -3
- package/lib/{f-documentation → common-components}/f-checkbox/f-checkbox.component.d.ts +0 -0
- package/lib/{f-documentation → common-components}/f-cookie-popup/f-cookie-popup.component.d.ts +0 -0
- package/lib/{f-documentation → common-components}/f-theme-button/f-theme-button.component.d.ts +0 -0
- package/lib/{domain → common-services}/f-popover.service.d.ts +0 -0
- package/lib/domain/{features/get-version-handler → get-version-handler}/get-version.handler.d.ts +0 -0
- package/lib/domain/{features/get-version-handler → get-version-handler}/index.d.ts +0 -0
- package/lib/domain/{features/handle-navigation-links → handle-navigation-links}/handle-navigation-links.handler.d.ts +0 -0
- package/lib/domain/{features/handle-navigation-links → handle-navigation-links}/handle-navigation-links.request.d.ts +0 -0
- package/lib/domain/{features/handle-navigation-links → handle-navigation-links}/index.d.ts +0 -0
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/i-navigation-group.d.ts +0 -0
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/i-navigation-item-badge.d.ts +0 -0
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/i-navigation-item.d.ts +0 -0
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/domain/index.d.ts +0 -0
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-group/f-navigation-group.component.d.ts +0 -0
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/f-navigation-item/f-navigation-item.component.d.ts +0 -0
- package/lib/{f-navigation-panel → f-documentation/f-navigation-panel}/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-dynamic-components/handle-dynamic-components.request.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-dynamic-components/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.handler.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/handle-parsed-containers.request.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/i-parsed-container.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/copy-to-clipboard.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/clipboard/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-async-code-view-handler.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/f-code-group.handler.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/i-code-group-view.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-group-body.handler.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-code-view-handler.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/f-example-view-handler.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/handle-parsed-containers/pseudo-components/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/change-code-focused-syntax.pre-processor.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/highlight.service.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/mark-code-focused-blocks.post-processor.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/modify-punctuation-highlight.post-processor.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/highlight/separate-code-by-lines.post-processor.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/e-markdown-container-type.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/i-markdown-it-token.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/index.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-alerts.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-code-group.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-code-view.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-example-group.d.ts +0 -0
- package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/parse-markdown/parse-preview-group.d.ts +1 -1
- /package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/utils/get-content.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/utils/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown/f-markdown-renderer.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.request.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/get-previous-next-page-navigation.response.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/get-previous-next-page-navigation/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/features/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/i-page-link.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/domain/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-edit-information.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/f-footer-edit-link.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-edit-link/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/f-footer-last-updated.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/f-footer-last-updated/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-edit-information/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/f-footer-navigation-button.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/f-footer-navigation-button/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/f-footer-navigation.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-footer-navigation/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-page.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-table-of-content/f-table-of-content-items/f-table-of-content-items.component.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-table-of-content/f-table-of-content-items/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/f-table-of-content/index.d.ts +0 -0
- /package/lib/{f-page → f-documentation/f-page}/index.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.handler.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/calculate-hash-from-scroll-position/calculate-hash-from-scroll-position.request.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/calculate-hash-from-scroll-position/index.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-absolute-top-to-container/get-absolute-top-to-container.handler.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-absolute-top-to-container/get-absolute-top-to-container.request.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-absolute-top-to-container/index.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-table-of-content-data/get-table-of-content-data.handler.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-table-of-content-data/get-table-of-content-data.request.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/get-table-of-content-data/index.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/i-table-of-content-item.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/index.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/scroll-to-element-in-container.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/domain/table-of-content-data.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/f-scrollable-container.component.d.ts +0 -0
- /package/lib/{f-scrollable-container → f-documentation/f-scrollable-container}/index.d.ts +0 -0
- /package/lib/{domain → f-documentation}/router.d.ts +0 -0
package/lib/{f-documentation → common-components}/f-header-menu/f-header-menu.component.d.ts
RENAMED
@@ -1,12 +1,10 @@
|
|
1
1
|
import { OnInit } from '@angular/core';
|
2
|
-
import {
|
3
|
-
import { Router } from '@angular/router';
|
2
|
+
import { IDocsHeaderNavigationItem } from '../../domain';
|
4
3
|
import * as i0 from "@angular/core";
|
5
4
|
export declare class FHeaderMenuComponent implements OnInit {
|
6
|
-
private fEnvironmentService;
|
7
|
-
private router;
|
8
5
|
protected navigation: IDocsHeaderNavigationItemViewModel[];
|
9
|
-
|
6
|
+
private _router;
|
7
|
+
private _fEnvironmentService;
|
10
8
|
ngOnInit(): void;
|
11
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<FHeaderMenuComponent, never>;
|
12
10
|
static ɵcmp: i0.ɵɵComponentDeclaration<FHeaderMenuComponent, "f-header-menu", never, {}, {}, never, never, true, never>;
|
package/lib/{f-documentation → common-components}/f-social-links/f-social-links.component.d.ts
RENAMED
@@ -1,9 +1,6 @@
|
|
1
|
-
import { FEnvironmentService, IDocsSocialLink } from '../../domain';
|
2
1
|
import * as i0 from "@angular/core";
|
3
2
|
export declare class FSocialLinksComponent {
|
4
|
-
|
5
|
-
get links(): IDocsSocialLink[];
|
6
|
-
constructor(fEnvironmentService: FEnvironmentService);
|
3
|
+
protected links: import("../../domain").IDocsSocialLink[];
|
7
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<FSocialLinksComponent, never>;
|
8
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<FSocialLinksComponent, "f-social-links", never, {}, {}, never, never, true, never>;
|
9
6
|
}
|
@@ -1,10 +1,7 @@
|
|
1
|
-
import { FEnvironmentService } from '../../domain';
|
2
1
|
import { Observable } from 'rxjs';
|
3
2
|
import * as i0 from "@angular/core";
|
4
3
|
export declare class FVersionComponent {
|
5
|
-
private fEnvironmentService;
|
6
4
|
protected version$: Observable<string | undefined>;
|
7
|
-
constructor(fEnvironmentService: FEnvironmentService);
|
8
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<FVersionComponent, never>;
|
9
6
|
static ɵcmp: i0.ɵɵComponentDeclaration<FVersionComponent, "f-version", never, {}, {}, never, never, true, never>;
|
10
7
|
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
export * from './f-checkbox/f-checkbox.component';
|
2
|
+
export * from './f-cookie-popup/f-cookie-popup.component';
|
3
|
+
export * from './f-hamburger-button/f-hamburger-button.component';
|
4
|
+
export * from './f-header-menu/f-header-menu.component';
|
5
|
+
export * from './f-social-links/f-social-links.component';
|
6
|
+
export * from './f-theme-button/f-theme-button.component';
|
7
|
+
export * from './f-version/f-version.component';
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { Router } from '@angular/router';
|
2
2
|
import { Subscription } from 'rxjs';
|
3
3
|
import { BrowserService } from '@foblex/platform';
|
4
|
-
import { IMetaData } from '
|
5
|
-
import { IDocsEnvironment } from '
|
6
|
-
import { FHeadTagService } from '
|
4
|
+
import { IMetaData } from '../domain/i-meta-data';
|
5
|
+
import { IDocsEnvironment } from '../f-documentation';
|
6
|
+
import { FHeadTagService } from './index';
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
export declare class FMetaService {
|
9
9
|
private router;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { Observable } from 'rxjs';
|
2
|
+
import { InjectionToken } from '@angular/core';
|
3
|
+
import { IDocsHeaderNavigationItem } from './i-docs-header-navigation-item';
|
4
|
+
import { IDocsSocialLink } from './i-docs-social-link';
|
5
|
+
export declare const INTERNAL_ENVIRONMENT_SERVICE: InjectionToken<IEnvironmentService>;
|
6
|
+
export interface IEnvironmentService {
|
7
|
+
getLogo(): string;
|
8
|
+
getTitle(): string;
|
9
|
+
getHeaderNavigation(): IDocsHeaderNavigationItem[];
|
10
|
+
getVersion(): Observable<string | undefined>;
|
11
|
+
getSocialLinks(): IDocsSocialLink[];
|
12
|
+
}
|
package/lib/domain/index.d.ts
CHANGED
@@ -1,14 +1,10 @@
|
|
1
|
-
export * from './
|
2
|
-
export * from './
|
3
|
-
export * from './f-meta.service';
|
4
|
-
export * from './f-popover.service';
|
1
|
+
export * from './get-version-handler';
|
2
|
+
export * from './handle-navigation-links';
|
5
3
|
export * from './i-docs-component';
|
6
|
-
export * from './i-docs-environment';
|
7
4
|
export * from './i-docs-footer-navigation';
|
8
5
|
export * from './i-docs-header-navigation-item';
|
9
6
|
export * from './i-docs-social-link';
|
10
7
|
export * from './i-docs-table-of-content';
|
11
8
|
export * from './i-docs-version';
|
9
|
+
export * from './i-environment-service';
|
12
10
|
export * from './i-meta-data';
|
13
|
-
export * from './providers';
|
14
|
-
export * from './router';
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { INavigationGroup } from '../f-navigation-panel';
|
2
|
-
import { IDocsSocialLink } from '
|
3
|
-
import { IDocsComponent } from '
|
4
|
-
import { IDocsVersion } from '
|
5
|
-
import { IDocsFooterNavigation } from '
|
6
|
-
import { IDocsTableOfContent } from '
|
7
|
-
import { IDocsHeaderNavigationItem } from '
|
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
8
|
export interface IDocsEnvironment {
|
9
9
|
lang: string;
|
10
10
|
docsDir: string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './i-docs-environment';
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { IDocsComponent,
|
2
|
-
import { INavigationGroup } from '
|
1
|
+
import { IDocsComponent, IDocsFooterNavigation, IDocsHeaderNavigationItem, IDocsSocialLink, IDocsTableOfContent, IEnvironmentService } from '../domain';
|
2
|
+
import { IDocsEnvironment, INavigationGroup } from './index';
|
3
3
|
import { Observable } from 'rxjs';
|
4
4
|
import { HttpClient } from '@angular/common/http';
|
5
5
|
import * as i0 from "@angular/core";
|
6
|
-
export declare class
|
6
|
+
export declare class FDocumentationEnvironmentService implements IEnvironmentService {
|
7
7
|
private environment;
|
8
8
|
private http;
|
9
9
|
constructor(environment: IDocsEnvironment, http: HttpClient);
|
@@ -18,6 +18,6 @@ export declare class FEnvironmentService {
|
|
18
18
|
getFooterNavigation(): IDocsFooterNavigation;
|
19
19
|
getSocialLinks(): IDocsSocialLink[];
|
20
20
|
getToC(): IDocsTableOfContent;
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
22
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FDocumentationEnvironmentService, [{ optional: true; }, null]>;
|
22
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FDocumentationEnvironmentService>;
|
23
23
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { IDocumentationComponent } from './i-documentation-component';
|
3
|
-
import { FPopoverService } from '../
|
3
|
+
import { FPopoverService } from '../common-services';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class FDocumentationComponent implements IDocumentationComponent, OnInit, OnDestroy {
|
6
6
|
private fPopoverService;
|
@@ -1,9 +1,6 @@
|
|
1
|
-
import { FEnvironmentService } from '../../domain';
|
2
1
|
import * as i0 from "@angular/core";
|
3
2
|
export declare class FHeaderComponent {
|
4
|
-
private fEnvironmentService;
|
5
3
|
protected title: string;
|
6
|
-
constructor(fEnvironmentService: FEnvironmentService);
|
7
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<FHeaderComponent, never>;
|
8
5
|
static ɵcmp: i0.ɵɵComponentDeclaration<FHeaderComponent, "f-header", never, {}, {}, never, never, true, never>;
|
9
6
|
}
|
@@ -1,12 +1,12 @@
|
|
1
|
-
import { FEnvironmentService } from '../../domain';
|
2
1
|
import { Router } from '@angular/router';
|
2
|
+
import { FDocumentationEnvironmentService } from '../../f-documentation-environment.service';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class FNavigationHeaderComponent {
|
5
5
|
private router;
|
6
6
|
private fEnvironmentService;
|
7
7
|
protected title: string;
|
8
8
|
protected image: string;
|
9
|
-
constructor(router: Router, fEnvironmentService:
|
9
|
+
constructor(router: Router, fEnvironmentService: FDocumentationEnvironmentService);
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<FNavigationHeaderComponent, never>;
|
11
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<FNavigationHeaderComponent, "a[f-navigation-header]", never, {}, {}, never, never, true, never>;
|
12
12
|
}
|
@@ -1,9 +1,8 @@
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, Injector, OnDestroy, OnInit, QueryList } from '@angular/core';
|
2
2
|
import { Router } from '@angular/router';
|
3
3
|
import { FNavigationItemComponent } from './f-navigation-item/f-navigation-item.component';
|
4
|
-
import { IDocumentationComponent } from '../
|
4
|
+
import { FDocumentationEnvironmentService, IDocumentationComponent } from '../index';
|
5
5
|
import { INavigationGroup } from './domain';
|
6
|
-
import { FEnvironmentService } from '../domain';
|
7
6
|
import * as i0 from "@angular/core";
|
8
7
|
export declare class FNavigationPanelComponent implements OnInit, AfterViewInit, OnDestroy {
|
9
8
|
private fEnvironmentService;
|
@@ -15,7 +14,7 @@ export declare class FNavigationPanelComponent implements OnInit, AfterViewInit,
|
|
15
14
|
protected items: QueryList<FNavigationItemComponent>;
|
16
15
|
protected value: string | undefined;
|
17
16
|
protected navigation: INavigationGroup[];
|
18
|
-
constructor(fEnvironmentService:
|
17
|
+
constructor(fEnvironmentService: FDocumentationEnvironmentService, fDocumentation: IDocumentationComponent, router: Router, injector: Injector, changeDetectorRef: ChangeDetectorRef);
|
19
18
|
ngOnInit(): void;
|
20
19
|
private normalizeLink;
|
21
20
|
private isExternalLink;
|
@@ -1,13 +1,13 @@
|
|
1
1
|
import { IHandler } from '@foblex/mediator';
|
2
2
|
import { HandleDynamicComponentsRequest } from './handle-dynamic-components.request';
|
3
3
|
import { Injector } from '@angular/core';
|
4
|
-
import {
|
4
|
+
import { FDocumentationEnvironmentService } from '../../../../index';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class HandleDynamicComponentsHandler implements IHandler<HandleDynamicComponentsRequest> {
|
7
7
|
private fEnvironmentService;
|
8
8
|
private injector;
|
9
9
|
private componentRefs;
|
10
|
-
constructor(fEnvironmentService:
|
10
|
+
constructor(fEnvironmentService: FDocumentationEnvironmentService, injector: Injector);
|
11
11
|
handle(request: HandleDynamicComponentsRequest): void;
|
12
12
|
private getDynamicElements;
|
13
13
|
private isPromise;
|
package/lib/{f-page → f-documentation/f-page}/f-markdown/domain/markdown/markdown.service.d.ts
RENAMED
@@ -2,7 +2,7 @@ import { Observable } from 'rxjs';
|
|
2
2
|
import { HttpClient } from '@angular/common/http';
|
3
3
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
4
4
|
import { Router } from '@angular/router';
|
5
|
-
import {
|
5
|
+
import { FDocumentationEnvironmentService } from '../../../../f-documentation-environment.service';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare class MarkdownService {
|
8
8
|
private httpClient;
|
@@ -10,7 +10,7 @@ export declare class MarkdownService {
|
|
10
10
|
private fEnvironment;
|
11
11
|
private router;
|
12
12
|
private markdown;
|
13
|
-
constructor(httpClient: HttpClient, domSanitizer: DomSanitizer, fEnvironment:
|
13
|
+
constructor(httpClient: HttpClient, domSanitizer: DomSanitizer, fEnvironment: FDocumentationEnvironmentService, router: Router);
|
14
14
|
parse(src: string): Observable<SafeHtml>;
|
15
15
|
private normalizeLinks;
|
16
16
|
private isExternalLink;
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { IHandler } from '@foblex/mediator';
|
2
2
|
import { GetPreviousNextPageNavigationRequest } from './get-previous-next-page-navigation.request';
|
3
3
|
import { GetPreviousNextPageNavigationResponse } from './get-previous-next-page-navigation.response';
|
4
|
-
import {
|
4
|
+
import { FDocumentationEnvironmentService } from '../../../../../f-documentation-environment.service';
|
5
5
|
export declare class GetPreviousNextPageNavigationHandler implements IHandler<GetPreviousNextPageNavigationRequest, GetPreviousNextPageNavigationResponse> {
|
6
6
|
private fEnvironmentService;
|
7
|
-
constructor(fEnvironmentService:
|
7
|
+
constructor(fEnvironmentService: FDocumentationEnvironmentService);
|
8
8
|
handle(request: GetPreviousNextPageNavigationRequest): GetPreviousNextPageNavigationResponse;
|
9
9
|
}
|
package/lib/{f-page → f-documentation/f-page}/f-markdown-footer/f-markdown-footer.component.d.ts
RENAMED
@@ -1,7 +1,8 @@
|
|
1
1
|
import { ChangeDetectorRef, Injector, OnDestroy, OnInit } from '@angular/core';
|
2
2
|
import { Router } from '@angular/router';
|
3
|
-
import {
|
3
|
+
import { IDocsFooterNavigation } from '../../../domain';
|
4
4
|
import { IPageLink } from './domain';
|
5
|
+
import { FDocumentationEnvironmentService } from '../../f-documentation-environment.service';
|
5
6
|
import * as i0 from "@angular/core";
|
6
7
|
export declare class FMarkdownFooterComponent implements OnInit, OnDestroy {
|
7
8
|
private injector;
|
@@ -13,7 +14,7 @@ export declare class FMarkdownFooterComponent implements OnInit, OnDestroy {
|
|
13
14
|
protected editLink: string | undefined;
|
14
15
|
protected previousLink: IPageLink | undefined;
|
15
16
|
protected nextLink: IPageLink | undefined;
|
16
|
-
constructor(injector: Injector, fEnvironmentService:
|
17
|
+
constructor(injector: Injector, fEnvironmentService: FDocumentationEnvironmentService, router: Router, changeDetectorRef: ChangeDetectorRef);
|
17
18
|
ngOnInit(): void;
|
18
19
|
private subscribeOnRouteChanges;
|
19
20
|
private getRouterEvents;
|
package/lib/{f-page → f-documentation/f-page}/f-table-of-content/f-table-of-content.component.d.ts
RENAMED
@@ -2,8 +2,8 @@ import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core'
|
|
2
2
|
import { Observable } from 'rxjs';
|
3
3
|
import { FScrollableService } from '../../f-scrollable-container/f-scrollable.service';
|
4
4
|
import { TableOfContentData } from '../../f-scrollable-container';
|
5
|
-
import { FEnvironmentService } from '../../domain';
|
6
5
|
import { BrowserService } from '@foblex/platform';
|
6
|
+
import { FDocumentationEnvironmentService } from '../../f-documentation-environment.service';
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
export declare class FTableOfContentComponent implements OnInit, OnDestroy {
|
9
9
|
private fEnvironmentService;
|
@@ -16,7 +16,7 @@ export declare class FTableOfContentComponent implements OnInit, OnDestroy {
|
|
16
16
|
protected tocData: TableOfContentData;
|
17
17
|
protected activeMarkerPosition: number;
|
18
18
|
protected title: string | undefined;
|
19
|
-
constructor(fEnvironmentService:
|
19
|
+
constructor(fEnvironmentService: FDocumentationEnvironmentService, elementRef: ElementRef<HTMLElement>, fScrollableService: FScrollableService, changeDetectorRef: ChangeDetectorRef, fBrowser: BrowserService);
|
20
20
|
ngOnInit(): void;
|
21
21
|
private subscribeOnPageNavigation;
|
22
22
|
private getActiveMarkerPosition;
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy } from '@angular/core';
|
2
2
|
import { FStateService } from '../../domain/f-state.service';
|
3
3
|
import { Router } from '@angular/router';
|
4
|
-
import { INavigationItem } from '
|
5
|
-
import {
|
4
|
+
import { INavigationItem } from '../f-navigation-panel';
|
5
|
+
import { FDocumentationEnvironmentService } from '../f-documentation-environment.service';
|
6
6
|
import * as i0 from "@angular/core";
|
7
7
|
export declare class FPreviewComponent implements OnDestroy {
|
8
8
|
private fEnvironment;
|
@@ -15,7 +15,7 @@ export declare class FPreviewComponent implements OnDestroy {
|
|
15
15
|
protected viewModel: INavigationItem | undefined;
|
16
16
|
protected src: string | undefined;
|
17
17
|
protected url: string | undefined;
|
18
|
-
constructor(fEnvironment:
|
18
|
+
constructor(fEnvironment: FDocumentationEnvironmentService, fState: FStateService, router: Router, changeDetectorRef: ChangeDetectorRef);
|
19
19
|
initialize(): void;
|
20
20
|
private getNavigationGroup;
|
21
21
|
private getNavigationItem;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { TableOfContentData } from './domain';
|
2
2
|
import { Observable } from 'rxjs';
|
3
|
-
import { FEnvironmentService } from '../domain';
|
4
3
|
import { BrowserService } from '@foblex/platform';
|
4
|
+
import { FDocumentationEnvironmentService } from '../f-documentation-environment.service';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class FScrollableService {
|
7
7
|
private fEnvironmentService;
|
@@ -11,7 +11,7 @@ export declare class FScrollableService {
|
|
11
11
|
private onTocChanged$;
|
12
12
|
get onToc$(): Observable<TableOfContentData>;
|
13
13
|
private onScrollSubscription$;
|
14
|
-
constructor(fEnvironmentService:
|
14
|
+
constructor(fEnvironmentService: FDocumentationEnvironmentService, fBrowser: BrowserService);
|
15
15
|
setContainer(fScrollableContainer: HTMLElement): void;
|
16
16
|
private subscribeOnScroll;
|
17
17
|
scrollTo(hash: string): void;
|
@@ -1,12 +1,12 @@
|
|
1
|
+
export * from './domain';
|
1
2
|
export * from './f-badge';
|
2
|
-
export * from './f-checkbox/f-checkbox.component';
|
3
|
-
export * from './f-cookie-popup/f-cookie-popup.component';
|
4
|
-
export * from './f-hamburger-button/f-hamburger-button.component';
|
5
3
|
export * from './f-header/f-header.component';
|
6
|
-
export * from './f-
|
4
|
+
export * from './f-navigation-panel';
|
5
|
+
export * from './f-page';
|
6
|
+
export * from './f-scrollable-container';
|
7
7
|
export * from './f-preview/f-preview.component';
|
8
|
-
export * from './f-social-links/f-social-links.component';
|
9
|
-
export * from './f-theme-button/f-theme-button.component';
|
10
|
-
export * from './f-version/f-version.component';
|
11
8
|
export * from './f-documentation.component';
|
9
|
+
export * from './f-documentation-environment.service';
|
12
10
|
export * from './i-documentation-component';
|
11
|
+
export * from './providers';
|
12
|
+
export * from './router';
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { IDocsHeaderNavigationItem, IDocsSocialLink, IDocsVersion } from '../../domain';
|
2
|
+
import { IHomePageHero } from './i-home-page-hero';
|
3
|
+
import { IHomePageLink } from './i-home-page-link';
|
4
|
+
import { IHomePageFeature } from './i-home-page-feature';
|
5
|
+
import { IHomePageFooter } from './i-home-page-footer';
|
6
|
+
import { Type } from '@angular/core';
|
7
|
+
export interface IHomePageEnvironment {
|
8
|
+
logo: string;
|
9
|
+
title: string;
|
10
|
+
version?: IDocsVersion;
|
11
|
+
headerNavigation?: IDocsHeaderNavigationItem[];
|
12
|
+
socialLinks?: IDocsSocialLink[];
|
13
|
+
backgroundComponent?: Type<any>;
|
14
|
+
hero: IHomePageHero;
|
15
|
+
heroImageComponent?: Type<any>;
|
16
|
+
buttons: IHomePageLink[];
|
17
|
+
features: IHomePageFeature[];
|
18
|
+
footer: IHomePageFooter;
|
19
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { Type } from '@angular/core';
|
2
|
+
import { Observable } from 'rxjs';
|
3
|
+
import { HttpClient } from '@angular/common/http';
|
4
|
+
import { IHomePageEnvironment, IHomePageFeature, IHomePageFooter, IHomePageHero, IHomePageLink } from './domain';
|
5
|
+
import { IDocsHeaderNavigationItem, IDocsSocialLink, IEnvironmentService } from '../domain';
|
6
|
+
import * as i0 from "@angular/core";
|
7
|
+
export declare class FHomePageEnvironmentService implements IEnvironmentService {
|
8
|
+
private environment;
|
9
|
+
private http;
|
10
|
+
constructor(environment: IHomePageEnvironment, http: HttpClient);
|
11
|
+
getLogo(): string;
|
12
|
+
getTitle(): string;
|
13
|
+
getHeaderNavigation(): IDocsHeaderNavigationItem[];
|
14
|
+
getVersion(): Observable<string | undefined>;
|
15
|
+
getSocialLinks(): IDocsSocialLink[];
|
16
|
+
getHero(): IHomePageHero;
|
17
|
+
getButtons(): IHomePageLink[];
|
18
|
+
getFeatures(): IHomePageFeature[];
|
19
|
+
getFooter(): IHomePageFooter;
|
20
|
+
getBackgroundComponent(): Type<any> | undefined;
|
21
|
+
getImageComponent(): Type<any> | undefined;
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageEnvironmentService, [{ optional: true; }, null]>;
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FHomePageEnvironmentService>;
|
24
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class FHomePageFeaturesComponent {
|
3
|
+
protected viewModel: import("@foblex/m-render").IHomePageFeature[];
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageFeaturesComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FHomePageFeaturesComponent, "f-home-page-features", never, {}, {}, never, never, true, never>;
|
6
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class FHomePageFooterComponent {
|
3
|
+
protected viewModel: import("@foblex/m-render").IHomePageFooter;
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageFooterComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FHomePageFooterComponent, "footer[f-home-page-footer]", never, {}, {}, never, never, true, never>;
|
6
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class FHomePageHeaderComponent {
|
3
|
+
protected logo: string;
|
4
|
+
protected title: string;
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageHeaderComponent, never>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FHomePageHeaderComponent, "header[f-home-page-header]", never, {}, {}, never, never, true, never>;
|
7
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class FHomePageButtonsRowComponent {
|
3
|
+
protected viewModel: import("@foblex/m-render").IHomePageLink[];
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageButtonsRowComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FHomePageButtonsRowComponent, "f-home-page-buttons-row", never, {}, {}, never, never, true, never>;
|
6
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class FHomePageHeroComponent {
|
3
|
+
protected viewModel: import("@foblex/m-render").IHomePageHero;
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageHeroComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FHomePageHeroComponent, "f-home-page-hero", never, {}, {}, never, never, true, never>;
|
6
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
import { AfterViewInit, InjectionToken } from '@angular/core';
|
2
|
+
import { FHomePageEnvironmentService } from './f-home-page-environment.service';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare const F_HOME_PAGE_COMPONENT: InjectionToken<FHomePageComponent>;
|
5
|
+
export declare class FHomePageComponent implements AfterViewInit {
|
6
|
+
private _injector;
|
7
|
+
protected _environmentService: FHomePageEnvironmentService;
|
8
|
+
private _backgroundContainer;
|
9
|
+
private _heroImageContainer;
|
10
|
+
ngAfterViewInit(): void;
|
11
|
+
private _getBackgroundComponentReference;
|
12
|
+
private _getImageComponentReference;
|
13
|
+
private getComponentElement;
|
14
|
+
private requestComponentRedraw;
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FHomePageComponent, never>;
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FHomePageComponent, "f-home-page", never, {}, {}, never, never, true, never>;
|
17
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
export * from './domain';
|
2
|
+
export * from './f-home-page-features/f-home-page-features.component';
|
3
|
+
export * from './f-home-page-header/f-home-page-header.component';
|
4
|
+
export * from './f-home-page-footer/f-home-page-footer.component';
|
5
|
+
export * from './f-home-page.component';
|
6
|
+
export * from './f-home-page-environment.service';
|
7
|
+
export * from './providers';
|
8
|
+
export * from './router';
|
package/lib/index.d.ts
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
+
export * from './common-components';
|
1
2
|
export * from './common-services';
|
2
3
|
export * from './domain';
|
3
4
|
export * from './f-documentation';
|
4
|
-
export * from './f-
|
5
|
-
export * from './f-page';
|
6
|
-
export * from './f-scrollable-container';
|
5
|
+
export * from './f-home-page';
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@foblex/m-render",
|
3
|
-
"version": "2.5.
|
4
|
-
"description": "
|
3
|
+
"version": "2.5.2",
|
4
|
+
"description": "MRender is a static site generator designed for creating fast and user-friendly documentation sites based on Markdown files. MarkEngine supports extended Markdown syntax and can render Angular components directly from Markdown files.",
|
5
5
|
"author": "Siarhei Huzarevich",
|
6
6
|
"license": "MIT",
|
7
7
|
"private": false,
|
@@ -16,7 +16,7 @@
|
|
16
16
|
],
|
17
17
|
"repository": {
|
18
18
|
"type": "git",
|
19
|
-
"url": "git+https://github.com/foblex/
|
19
|
+
"url": "git+https://github.com/foblex/m-render.git"
|
20
20
|
},
|
21
21
|
"peerDependencies": {
|
22
22
|
"@angular/common": ">=12.0.0",
|