@rxap/layout 19.0.1-dev.11 → 19.0.1-dev.13
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/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/compodoc/changelog.html +4 -0
- package/compodoc/dependencies.html +11 -11
- package/compodoc/index.html +1 -1
- package/compodoc/js/search/search_index.js +2 -2
- package/compodoc/properties.html +1 -1
- package/docs/documentation.json +1724 -3421
- package/docs/html/assets/hierarchy.js +1 -0
- package/docs/html/assets/icons.js +18 -0
- package/docs/html/assets/icons.svg +1 -0
- package/docs/{assets → html/assets}/main.js +5 -4
- package/docs/html/assets/navigation.js +1 -0
- package/docs/html/assets/search.js +1 -0
- package/docs/html/assets/style.css +1611 -0
- package/docs/html/classes/AppsButtonComponent.html +13 -0
- package/docs/html/classes/BaseLayoutComponent.html +2 -0
- package/docs/html/classes/DefaultHeaderComponent.html +7 -0
- package/docs/html/classes/DefaultHeaderService.html +13 -0
- package/docs/html/classes/ExternalAppsService.html +19 -0
- package/docs/html/classes/FooterComponent.html +4 -0
- package/docs/html/classes/FooterDirective.html +11 -0
- package/docs/html/classes/FooterService.html +13 -0
- package/docs/html/classes/HeaderComponent.html +5 -0
- package/docs/html/classes/HeaderDirective.html +11 -0
- package/docs/html/classes/HeaderService.html +13 -0
- package/docs/html/classes/LayoutComponent.html +5 -0
- package/docs/html/classes/LayoutService.html +16 -0
- package/docs/html/classes/LogoService.html +6 -0
- package/docs/html/classes/MinimalLayoutComponent.html +2 -0
- package/docs/html/classes/NavigationComponent.html +16 -0
- package/docs/html/classes/NavigationItemComponent.html +24 -0
- package/docs/html/classes/NavigationProgressBarComponent.html +4 -0
- package/docs/html/classes/NavigationService.html +12 -0
- package/docs/html/classes/ReleaseInfoComponent.html +5 -0
- package/docs/html/classes/SettingsButtonComponent.html +18 -0
- package/docs/html/classes/SidenavComponent.html +15 -0
- package/docs/html/classes/SidenavFooterDirective.html +3 -0
- package/docs/html/classes/SidenavHeaderDirective.html +3 -0
- package/docs/html/classes/SidenavToggleButtonComponent.html +4 -0
- package/docs/html/classes/UserProfileIconComponent.html +5 -0
- package/docs/html/functions/IsNavigationDividerItem.html +1 -0
- package/docs/html/functions/IsNavigationInsertItem.html +1 -0
- package/docs/html/functions/IsNavigationItem.html +1 -0
- package/docs/html/functions/provideExternalApps.html +1 -0
- package/docs/html/functions/provideLayout.html +1 -0
- package/docs/html/functions/withDefaultHeaderComponent.html +1 -0
- package/docs/html/functions/withDefaultHeaderItems.html +1 -0
- package/docs/html/functions/withFooterComponents.html +1 -0
- package/docs/html/functions/withHeaderComponents.html +1 -0
- package/docs/html/functions/withNavigationConfig.html +1 -0
- package/docs/html/functions/withNavigationInserts.html +1 -0
- package/docs/html/functions/withReleaseInfoModules.html +1 -0
- package/docs/html/functions/withSettingsMenuItems.html +1 -0
- package/docs/html/functions/withUserProfileDataSource.html +1 -0
- package/docs/html/index.html +106 -0
- package/docs/html/interfaces/NavigationDividerItem.html +3 -0
- package/docs/html/interfaces/NavigationInsertItem.html +2 -0
- package/docs/html/interfaces/NavigationItem.html +6 -0
- package/docs/html/interfaces/NavigationStatus.html +2 -0
- package/docs/html/interfaces/ReleaseInfoModule.html +4 -0
- package/docs/html/interfaces/SettingsMenuItem.html +4 -0
- package/docs/html/modules.html +1 -0
- package/docs/html/types/DefaultHeaderItemComponent.html +1 -0
- package/docs/html/types/ExternalApp.html +1 -0
- package/docs/html/types/ExtractUsernameFromProfileFn.html +1 -0
- package/docs/html/types/Navigation.html +1 -0
- package/docs/html/types/NavigationWithInserts.html +1 -0
- package/docs/html/types/SettingsMenuItemComponent.html +1 -0
- package/docs/html/variables/EXTRACT_USERNAME_FROM_PROFILE.html +1 -0
- package/docs/html/variables/RXAP_DEFAULT_HEADER_ITEM_COMPONENT.html +1 -0
- package/docs/html/variables/RXAP_EXTERNAL_APP.html +1 -0
- package/docs/html/variables/RXAP_EXTERNAL_APP_FILTER.html +1 -0
- package/docs/html/variables/RXAP_FOOTER_COMPONENT.html +1 -0
- package/docs/html/variables/RXAP_HEADER_COMPONENT.html +1 -0
- package/docs/html/variables/RXAP_LAYOUT_APPS_GRID.html +1 -0
- package/docs/html/variables/RXAP_LOGO_CONFIG.html +1 -0
- package/docs/html/variables/RXAP_NAVIGATION_CONFIG.html +1 -0
- package/docs/html/variables/RXAP_NAVIGATION_CONFIG_INSERTS.html +1 -0
- package/docs/html/variables/RXAP_RELEASE_INFO_MODULE.html +1 -0
- package/docs/html/variables/RXAP_SETTINGS_MENU_ITEM.html +1 -0
- package/docs/html/variables/RXAP_SETTINGS_MENU_ITEM_COMPONENT.html +1 -0
- package/docs/html/variables/RXAP_USER_PROFILE_DATA_SOURCE.html +1 -0
- package/docs/markdown/README.md +304 -0
- package/docs/markdown/classes/AppsButtonComponent.md +83 -0
- package/docs/markdown/classes/BaseLayoutComponent.md +19 -0
- package/docs/markdown/classes/DefaultHeaderComponent.md +59 -0
- package/docs/markdown/classes/DefaultHeaderService.md +87 -0
- package/docs/markdown/classes/ExternalAppsService.md +251 -0
- package/docs/markdown/classes/FooterComponent.md +35 -0
- package/docs/markdown/classes/FooterDirective.md +65 -0
- package/docs/markdown/classes/FooterService.md +87 -0
- package/docs/markdown/classes/HeaderComponent.md +43 -0
- package/docs/markdown/classes/HeaderDirective.md +65 -0
- package/docs/markdown/classes/HeaderService.md +87 -0
- package/docs/markdown/classes/LayoutComponent.md +43 -0
- package/docs/markdown/classes/LayoutService.md +149 -0
- package/docs/markdown/classes/LogoService.md +51 -0
- package/docs/markdown/classes/MinimalLayoutComponent.md +19 -0
- package/docs/markdown/classes/NavigationComponent.md +139 -0
- package/docs/markdown/classes/NavigationItemComponent.md +195 -0
- package/docs/markdown/classes/NavigationProgressBarComponent.md +35 -0
- package/docs/markdown/classes/NavigationService.md +205 -0
- package/docs/markdown/classes/ReleaseInfoComponent.md +47 -0
- package/docs/markdown/classes/SettingsButtonComponent.md +229 -0
- package/docs/markdown/classes/SidenavComponent.md +135 -0
- package/docs/markdown/classes/SidenavFooterDirective.md +35 -0
- package/docs/markdown/classes/SidenavHeaderDirective.md +35 -0
- package/docs/markdown/classes/SidenavToggleButtonComponent.md +39 -0
- package/docs/markdown/classes/UserProfileIconComponent.md +47 -0
- package/docs/markdown/functions/IsNavigationDividerItem.md +21 -0
- package/docs/markdown/functions/IsNavigationInsertItem.md +21 -0
- package/docs/markdown/functions/IsNavigationItem.md +21 -0
- package/docs/markdown/functions/provideExternalApps.md +21 -0
- package/docs/markdown/functions/provideLayout.md +21 -0
- package/docs/markdown/functions/withDefaultHeaderComponent.md +15 -0
- package/docs/markdown/functions/withDefaultHeaderItems.md +21 -0
- package/docs/markdown/functions/withFooterComponents.md +21 -0
- package/docs/markdown/functions/withHeaderComponents.md +21 -0
- package/docs/markdown/functions/withNavigationConfig.md +21 -0
- package/docs/markdown/functions/withNavigationInserts.md +21 -0
- package/docs/markdown/functions/withReleaseInfoModules.md +21 -0
- package/docs/markdown/functions/withSettingsMenuItems.md +21 -0
- package/docs/markdown/functions/withUserProfileDataSource.md +25 -0
- package/docs/markdown/globals.md +86 -0
- package/docs/markdown/interfaces/NavigationDividerItem.md +25 -0
- package/docs/markdown/interfaces/NavigationInsertItem.md +17 -0
- package/docs/markdown/interfaces/NavigationItem.md +61 -0
- package/docs/markdown/interfaces/NavigationStatus.md +27 -0
- package/docs/markdown/interfaces/ReleaseInfoModule.md +33 -0
- package/docs/markdown/interfaces/SettingsMenuItem.md +37 -0
- package/docs/markdown/type-aliases/DefaultHeaderItemComponent.md +11 -0
- package/docs/markdown/type-aliases/ExternalApp.md +11 -0
- package/docs/markdown/type-aliases/ExtractUsernameFromProfileFn.md +25 -0
- package/docs/markdown/type-aliases/Navigation.md +11 -0
- package/docs/markdown/type-aliases/NavigationWithInserts.md +11 -0
- package/docs/markdown/type-aliases/SettingsMenuItemComponent.md +11 -0
- package/docs/markdown/variables/EXTRACT_USERNAME_FROM_PROFILE.md +11 -0
- package/docs/markdown/variables/RXAP_DEFAULT_HEADER_ITEM_COMPONENT.md +11 -0
- package/docs/markdown/variables/RXAP_EXTERNAL_APP.md +11 -0
- package/docs/markdown/variables/RXAP_EXTERNAL_APP_FILTER.md +11 -0
- package/docs/markdown/variables/RXAP_FOOTER_COMPONENT.md +11 -0
- package/docs/markdown/variables/RXAP_HEADER_COMPONENT.md +11 -0
- package/docs/markdown/variables/RXAP_LAYOUT_APPS_GRID.md +11 -0
- package/docs/markdown/variables/RXAP_LOGO_CONFIG.md +11 -0
- package/docs/markdown/variables/RXAP_NAVIGATION_CONFIG.md +11 -0
- package/docs/markdown/variables/RXAP_NAVIGATION_CONFIG_INSERTS.md +11 -0
- package/docs/markdown/variables/RXAP_RELEASE_INFO_MODULE.md +11 -0
- package/docs/markdown/variables/RXAP_SETTINGS_MENU_ITEM.md +11 -0
- package/docs/markdown/variables/RXAP_SETTINGS_MENU_ITEM_COMPONENT.md +11 -0
- package/docs/markdown/variables/RXAP_USER_PROFILE_DATA_SOURCE.md +11 -0
- package/docs/wiki/Class.AppsButtonComponent.md +79 -0
- package/docs/wiki/Class.BaseLayoutComponent.md +15 -0
- package/docs/wiki/Class.DefaultHeaderComponent.md +55 -0
- package/docs/wiki/Class.DefaultHeaderService.md +83 -0
- package/docs/wiki/Class.ExternalAppsService.md +247 -0
- package/docs/wiki/Class.FooterComponent.md +31 -0
- package/docs/wiki/Class.FooterDirective.md +61 -0
- package/docs/wiki/Class.FooterService.md +83 -0
- package/docs/wiki/Class.HeaderComponent.md +39 -0
- package/docs/wiki/Class.HeaderDirective.md +61 -0
- package/docs/wiki/Class.HeaderService.md +83 -0
- package/docs/wiki/Class.LayoutComponent.md +39 -0
- package/docs/wiki/Class.LayoutService.md +145 -0
- package/docs/wiki/Class.LogoService.md +47 -0
- package/docs/wiki/Class.MinimalLayoutComponent.md +15 -0
- package/docs/wiki/Class.NavigationComponent.md +135 -0
- package/docs/wiki/Class.NavigationItemComponent.md +191 -0
- package/docs/wiki/Class.NavigationProgressBarComponent.md +31 -0
- package/docs/wiki/Class.NavigationService.md +201 -0
- package/docs/wiki/Class.ReleaseInfoComponent.md +43 -0
- package/docs/wiki/Class.SettingsButtonComponent.md +225 -0
- package/docs/wiki/Class.SidenavComponent.md +131 -0
- package/docs/wiki/Class.SidenavFooterDirective.md +31 -0
- package/docs/wiki/Class.SidenavHeaderDirective.md +31 -0
- package/docs/wiki/Class.SidenavToggleButtonComponent.md +35 -0
- package/docs/wiki/Class.UserProfileIconComponent.md +43 -0
- package/docs/wiki/Function.IsNavigationDividerItem.md +17 -0
- package/docs/wiki/Function.IsNavigationInsertItem.md +17 -0
- package/docs/wiki/Function.IsNavigationItem.md +17 -0
- package/docs/wiki/Function.provideExternalApps.md +17 -0
- package/docs/wiki/Function.provideLayout.md +17 -0
- package/docs/wiki/Function.withDefaultHeaderComponent.md +11 -0
- package/docs/wiki/Function.withDefaultHeaderItems.md +17 -0
- package/docs/wiki/Function.withFooterComponents.md +17 -0
- package/docs/wiki/Function.withHeaderComponents.md +17 -0
- package/docs/wiki/Function.withNavigationConfig.md +17 -0
- package/docs/wiki/Function.withNavigationInserts.md +17 -0
- package/docs/wiki/Function.withReleaseInfoModules.md +17 -0
- package/docs/wiki/Function.withSettingsMenuItems.md +17 -0
- package/docs/wiki/Function.withUserProfileDataSource.md +21 -0
- package/docs/wiki/Home.md +300 -0
- package/docs/wiki/Interface.NavigationDividerItem.md +21 -0
- package/docs/wiki/Interface.NavigationInsertItem.md +13 -0
- package/docs/wiki/Interface.NavigationItem.md +57 -0
- package/docs/wiki/Interface.NavigationStatus.md +23 -0
- package/docs/wiki/Interface.ReleaseInfoModule.md +29 -0
- package/docs/wiki/Interface.SettingsMenuItem.md +33 -0
- package/docs/wiki/TypeAlias.DefaultHeaderItemComponent.md +7 -0
- package/docs/wiki/TypeAlias.ExternalApp.md +7 -0
- package/docs/wiki/TypeAlias.ExtractUsernameFromProfileFn.md +21 -0
- package/docs/wiki/TypeAlias.Navigation.md +7 -0
- package/docs/wiki/TypeAlias.NavigationWithInserts.md +7 -0
- package/docs/wiki/TypeAlias.SettingsMenuItemComponent.md +7 -0
- package/docs/wiki/Variable.EXTRACT_USERNAME_FROM_PROFILE.md +7 -0
- package/docs/wiki/Variable.RXAP_DEFAULT_HEADER_ITEM_COMPONENT.md +7 -0
- package/docs/wiki/Variable.RXAP_EXTERNAL_APP.md +7 -0
- package/docs/wiki/Variable.RXAP_EXTERNAL_APP_FILTER.md +7 -0
- package/docs/wiki/Variable.RXAP_FOOTER_COMPONENT.md +7 -0
- package/docs/wiki/Variable.RXAP_HEADER_COMPONENT.md +7 -0
- package/docs/wiki/Variable.RXAP_LAYOUT_APPS_GRID.md +7 -0
- package/docs/wiki/Variable.RXAP_LOGO_CONFIG.md +7 -0
- package/docs/wiki/Variable.RXAP_NAVIGATION_CONFIG.md +7 -0
- package/docs/wiki/Variable.RXAP_NAVIGATION_CONFIG_INSERTS.md +7 -0
- package/docs/wiki/Variable.RXAP_RELEASE_INFO_MODULE.md +7 -0
- package/docs/wiki/Variable.RXAP_SETTINGS_MENU_ITEM.md +7 -0
- package/docs/wiki/Variable.RXAP_SETTINGS_MENU_ITEM_COMPONENT.md +7 -0
- package/docs/wiki/Variable.RXAP_USER_PROFILE_DATA_SOURCE.md +7 -0
- package/docs/wiki/_Sidebar.md +82 -0
- package/docs/wiki/globals.md +82 -0
- package/package.json +27 -27
- package/docs/assets/icons.js +0 -15
- package/docs/assets/icons.svg +0 -1
- package/docs/assets/navigation.js +0 -1
- package/docs/assets/search.js +0 -1
- package/docs/assets/style.css +0 -1412
- package/docs/classes/AppsButtonComponent.html +0 -9
- package/docs/classes/BaseLayoutComponent.html +0 -2
- package/docs/classes/DefaultHeaderComponent.html +0 -9
- package/docs/classes/DefaultHeaderService.html +0 -16
- package/docs/classes/ExternalAppsService.html +0 -19
- package/docs/classes/FooterComponent.html +0 -5
- package/docs/classes/FooterDirective.html +0 -8
- package/docs/classes/FooterService.html +0 -14
- package/docs/classes/HeaderComponent.html +0 -6
- package/docs/classes/HeaderDirective.html +0 -8
- package/docs/classes/HeaderService.html +0 -14
- package/docs/classes/LayoutComponent.html +0 -6
- package/docs/classes/LayoutService.html +0 -20
- package/docs/classes/LogoService.html +0 -7
- package/docs/classes/MinimalLayoutComponent.html +0 -2
- package/docs/classes/NavigationComponent.html +0 -14
- package/docs/classes/NavigationItemComponent.html +0 -19
- package/docs/classes/NavigationProgressBarComponent.html +0 -4
- package/docs/classes/NavigationService.html +0 -17
- package/docs/classes/ReleaseInfoComponent.html +0 -6
- package/docs/classes/SettingsButtonComponent.html +0 -25
- package/docs/classes/SidenavComponent.html +0 -17
- package/docs/classes/SidenavFooterDirective.html +0 -3
- package/docs/classes/SidenavHeaderDirective.html +0 -3
- package/docs/classes/SidenavToggleButtonComponent.html +0 -5
- package/docs/classes/UserProfileIconComponent.html +0 -7
- package/docs/functions/IsNavigationDividerItem.html +0 -1
- package/docs/functions/IsNavigationInsertItem.html +0 -1
- package/docs/functions/IsNavigationItem.html +0 -1
- package/docs/functions/provideExternalApps.html +0 -1
- package/docs/functions/provideLayout.html +0 -1
- package/docs/functions/withDefaultHeaderComponent.html +0 -1
- package/docs/functions/withDefaultHeaderItems.html +0 -1
- package/docs/functions/withFooterComponents.html +0 -1
- package/docs/functions/withHeaderComponents.html +0 -1
- package/docs/functions/withNavigationConfig.html +0 -1
- package/docs/functions/withNavigationInserts.html +0 -1
- package/docs/functions/withReleaseInfoModules.html +0 -1
- package/docs/functions/withSettingsMenuItems.html +0 -1
- package/docs/functions/withUserProfileDataSource.html +0 -1
- package/docs/index.html +0 -88
- package/docs/interfaces/NavigationDividerItem.html +0 -3
- package/docs/interfaces/NavigationInsertItem.html +0 -2
- package/docs/interfaces/NavigationItem.html +0 -6
- package/docs/interfaces/NavigationStatus.html +0 -2
- package/docs/interfaces/ReleaseInfoModule.html +0 -4
- package/docs/interfaces/SettingsMenuItem.html +0 -4
- package/docs/modules.html +0 -67
- package/docs/types/DefaultHeaderItemComponent.html +0 -1
- package/docs/types/ExternalApp.html +0 -1
- package/docs/types/ExtractUsernameFromProfileFn.html +0 -1
- package/docs/types/Navigation.html +0 -1
- package/docs/types/NavigationWithInserts.html +0 -1
- package/docs/types/SettingsMenuItemComponent.html +0 -1
- package/docs/variables/EXTRACT_USERNAME_FROM_PROFILE.html +0 -1
- package/docs/variables/RXAP_DEFAULT_HEADER_ITEM_COMPONENT.html +0 -1
- package/docs/variables/RXAP_EXTERNAL_APP.html +0 -1
- package/docs/variables/RXAP_EXTERNAL_APP_FILTER.html +0 -1
- package/docs/variables/RXAP_FOOTER_COMPONENT.html +0 -1
- package/docs/variables/RXAP_HEADER_COMPONENT.html +0 -1
- package/docs/variables/RXAP_LAYOUT_APPS_GRID.html +0 -1
- package/docs/variables/RXAP_LOGO_CONFIG.html +0 -1
- package/docs/variables/RXAP_NAVIGATION_CONFIG.html +0 -1
- package/docs/variables/RXAP_NAVIGATION_CONFIG_INSERTS.html +0 -1
- package/docs/variables/RXAP_RELEASE_INFO_MODULE.html +0 -1
- package/docs/variables/RXAP_SETTINGS_MENU_ITEM.html +0 -1
- package/docs/variables/RXAP_SETTINGS_MENU_ITEM_COMPONENT.html +0 -1
- package/docs/variables/RXAP_USER_PROFILE_DATA_SOURCE.html +0 -1
- /package/docs/{.nojekyll → html/.nojekyll} +0 -0
- /package/docs/{assets → html/assets}/highlight.css +0 -0
package/docs/index.html
DELETED
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>@rxap/layout</title><meta name="description" content="Documentation for @rxap/layout"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="assets/style.css"/><link rel="stylesheet" href="assets/highlight.css"/><script defer src="assets/main.js"></script><script async src="assets/icons.js" id="tsd-icons-script"></script><script async src="assets/search.js" id="tsd-search-script"></script><script async src="assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base="."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="index.html" class="title">@rxap/layout</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><h2>@rxap/layout</h2></div><div class="tsd-panel tsd-typography"><a id="md:rxaplayout" class="tsd-anchor"></a><h1><a href="#md:rxaplayout">@rxap/layout</a></h1><p><a href="https://www.npmjs.com/package/@rxap/layout"><img src="https://img.shields.io/npm/v/@rxap/layout?style=flat-square" alt="npm version"></a>
|
|
2
|
-
<a href="https://commitizen.github.io/cz-cli/"><img src="https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square" alt="commitizen friendly"></a>
|
|
3
|
-
<a href="https://github.com/prettier/prettier"><img src="https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square" alt="styled with prettier"></a>
|
|
4
|
-
<img src="https://img.shields.io/librariesio/release/npm/@rxap/layout" alt="Libraries.io dependency status for latest release, scoped npm package">
|
|
5
|
-
<img src="https://img.shields.io/npm/dm/@rxap/layout" alt="npm">
|
|
6
|
-
<img src="https://img.shields.io/npm/l/@rxap/layout" alt="NPM"></p>
|
|
7
|
-
<ul>
|
|
8
|
-
<li><a href="#md:installation">Installation</a></li>
|
|
9
|
-
<li><a href="#md:get-started">Get started</a></li>
|
|
10
|
-
<li><a href="#md:generators">Generators</a></li>
|
|
11
|
-
</ul>
|
|
12
|
-
<a id="md:installation" class="tsd-anchor"></a><h1><a href="#md:installation">Installation</a></h1><p><strong>Add the package to your workspace:</strong></p>
|
|
13
|
-
<pre><code class="language-bash"><span class="hl-0">yarn</span><span class="hl-1"> </span><span class="hl-2">add</span><span class="hl-1"> </span><span class="hl-2">@rxap/layout</span>
|
|
14
|
-
</code><button>Copy</button></pre>
|
|
15
|
-
<p><strong>Install peer dependencies:</strong></p>
|
|
16
|
-
<pre><code class="language-bash"><span class="hl-0">yarn</span><span class="hl-1"> </span><span class="hl-2">add</span><span class="hl-1"> </span><span class="hl-2">@angular/animations@^19.1.3</span><span class="hl-1"> </span><span class="hl-2">@angular/cdk@^19.1.1</span><span class="hl-1"> </span><span class="hl-2">@angular/common@^19.1.3</span><span class="hl-1"> </span><span class="hl-2">@angular/core@^19.1.3</span><span class="hl-1"> </span><span class="hl-2">@angular/material@^19.1.1</span><span class="hl-1"> </span><span class="hl-2">@angular/router@^19.1.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/browser-utilities@^1.1.10-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/config@^19.0.1-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/data-source@^19.0.1-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/environment@^19.0.1-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/material-directives@^19.0.1-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/ngx-pub-sub@^19.0.1-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/ngx-theme@^19.0.1-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/pattern@^1.1.11-dev.3</span><span class="hl-1"> </span><span class="hl-2">@rxap/utilities@^16.4.2-dev.3</span><span class="hl-1"> </span><span class="hl-2">rxjs@^7.8.1</span><span class="hl-1"> </span>
|
|
17
|
-
</code><button>Copy</button></pre>
|
|
18
|
-
<p><strong>Execute the init generator:</strong></p>
|
|
19
|
-
<pre><code class="language-bash"><span class="hl-0">yarn</span><span class="hl-1"> </span><span class="hl-2">nx</span><span class="hl-1"> </span><span class="hl-2">g</span><span class="hl-1"> </span><span class="hl-2">@rxap/layout:init</span>
|
|
20
|
-
</code><button>Copy</button></pre>
|
|
21
|
-
<a id="md:get-started" class="tsd-anchor"></a><h1><a href="#md:get-started">Get started</a></h1><a id="md:layout" class="tsd-anchor"></a><h2><a href="#md:layout">Layout</a></h2><p>Create a new file <code>layout.routes.ts</code> in the <code>app</code> folder. This file will contain all child routes that should be loaded within the layout component.</p>
|
|
22
|
-
<pre><code class="language-typescript"><span class="hl-3">import</span><span class="hl-1"> { </span><span class="hl-4">LayoutComponent</span><span class="hl-1">, </span><span class="hl-4">provideLayout</span><span class="hl-1"> } </span><span class="hl-3">from</span><span class="hl-1"> </span><span class="hl-2">'@rxap/layout'</span><span class="hl-1">;</span><br/><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">ROUTES</span><span class="hl-1">: </span><span class="hl-7">Route</span><span class="hl-1">[] = [</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">path:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">component:</span><span class="hl-1"> </span><span class="hl-4">LayoutComponent</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">children:</span><span class="hl-1"> [ ],</span><br/><span class="hl-1"> </span><span class="hl-4">providers:</span><span class="hl-1"> [ </span><span class="hl-0">provideLayout</span><span class="hl-1">() ],</span><br/><span class="hl-1"> },</span><br/><span class="hl-1">];</span>
|
|
23
|
-
</code><button>Copy</button></pre>
|
|
24
|
-
<p>Import the layout routes into the <code>app.routes.ts</code> file.</p>
|
|
25
|
-
<pre><code class="language-typescript"><span class="hl-3">export</span><span class="hl-1"> </span><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">appRoutes</span><span class="hl-1">: </span><span class="hl-7">Route</span><span class="hl-1">[] = [</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">path:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-0">loadChildren</span><span class="hl-4">:</span><span class="hl-1"> () </span><span class="hl-5">=></span><span class="hl-1"> </span><span class="hl-5">import</span><span class="hl-1">(</span><span class="hl-2">'./layout.routes'</span><span class="hl-1">),</span><br/><span class="hl-1"> },</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">path:</span><span class="hl-1"> </span><span class="hl-2">'**'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">redirectTo:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">,</span><br/><span class="hl-1"> },</span><br/><span class="hl-1">];</span>
|
|
26
|
-
</code><button>Copy</button></pre>
|
|
27
|
-
<a id="md:navigation" class="tsd-anchor"></a><h2><a href="#md:navigation">Navigation</a></h2><p>Create a new file <code>app.navigation.ts</code> in the <code>app</code> folder. This file will contain the navigation items that should be displayed in the layout component.</p>
|
|
28
|
-
<pre><code class="language-typescript"><span class="hl-3">export</span><span class="hl-1"> </span><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-0">APP_NAVIGATION</span><span class="hl-1">: () </span><span class="hl-5">=></span><span class="hl-1"> </span><span class="hl-7">NavigationWithInserts</span><span class="hl-1"> = () </span><span class="hl-5">=></span><span class="hl-1"> [];</span>
|
|
29
|
-
</code><button>Copy</button></pre>
|
|
30
|
-
<p>Provide the app navigation in the layout routes:</p>
|
|
31
|
-
<pre><code class="language-typescript"><span class="hl-3">import</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">LayoutComponent</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">ProvideNavigationConfig</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">withNavigationService</span><span class="hl-1">,</span><br/><span class="hl-1">} </span><span class="hl-3">from</span><span class="hl-1"> </span><span class="hl-2">'@rxap/layout'</span><span class="hl-1">;</span><br/><span class="hl-3">import</span><span class="hl-1"> { </span><span class="hl-4">APP_NAVIGATION</span><span class="hl-1"> } </span><span class="hl-3">from</span><span class="hl-1"> </span><span class="hl-2">'./app.navigation'</span><span class="hl-1">;</span><br/><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">ROUTES</span><span class="hl-1">: </span><span class="hl-7">Route</span><span class="hl-1">[] = [</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">path:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">component:</span><span class="hl-1"> </span><span class="hl-4">LayoutComponent</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">children:</span><span class="hl-1"> [ ],</span><br/><span class="hl-1"> </span><span class="hl-4">providers:</span><span class="hl-1"> [</span><br/><span class="hl-1"> </span><span class="hl-0">provideLayout</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-0">withNavigationConfig</span><span class="hl-1">(</span><span class="hl-6">APP_NAVIGATION</span><span class="hl-1">),</span><br/><span class="hl-1"> ),</span><br/><span class="hl-1"> ],</span><br/><span class="hl-1"> },</span><br/><span class="hl-1">];</span>
|
|
32
|
-
</code><button>Copy</button></pre>
|
|
33
|
-
<a id="md:navigation-item" class="tsd-anchor"></a><h3><a href="#md:navigation-item">Navigation Item</a></h3><p>A navigation item represents a single item in the navigation sidebar. Each item has the required properties <code>label</code> and <code>routerLink</code>. The <code>label</code> property is the text that should be displayed in the sidebar. The <code>routerLink</code> property is the path that should be navigated to when the item is clicked.</p>
|
|
34
|
-
<pre><code class="language-typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">item</span><span class="hl-1">: </span><span class="hl-7">NavigationItem</span><span class="hl-1"> = {</span><br/><span class="hl-1"> </span><span class="hl-4">label:</span><span class="hl-1"> </span><span class="hl-2">'Home'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">routerLink:</span><span class="hl-1"> </span><span class="hl-2">'/'</span><span class="hl-1">,</span><br/><span class="hl-1">};</span>
|
|
35
|
-
</code><button>Copy</button></pre>
|
|
36
|
-
<p>With the <code>children</code> property, a navigation item can have child items. The child items are displayed in a dropdown menu when the parent item is clicked.</p>
|
|
37
|
-
<pre><code class="language-typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">item</span><span class="hl-1">: </span><span class="hl-7">NavigationItem</span><span class="hl-1"> = {</span><br/><span class="hl-1"> </span><span class="hl-4">label:</span><span class="hl-1"> </span><span class="hl-2">'Home'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">routerLink:</span><span class="hl-1"> </span><span class="hl-2">'/'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">children:</span><span class="hl-1"> [</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">label:</span><span class="hl-1"> </span><span class="hl-2">'Child'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">routerLink:</span><span class="hl-1"> </span><span class="hl-2">'/child'</span><span class="hl-1">,</span><br/><span class="hl-1"> },</span><br/><span class="hl-1"> ],</span><br/><span class="hl-1">};</span>
|
|
38
|
-
</code><button>Copy</button></pre>
|
|
39
|
-
<a id="md:icon-property" class="tsd-anchor"></a><h4><a href="#md:icon-property">Icon Property</a></h4><p>With the <code>icon</code> property, the item can be assigned an icon. The icon is displayed to the left of the label. If the navigation sidebar is collapsed, only the icon is displayed.</p>
|
|
40
|
-
<pre><code class="language-typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">item</span><span class="hl-1">: </span><span class="hl-7">NavigationItem</span><span class="hl-1"> = {</span><br/><span class="hl-1"> </span><span class="hl-4">label:</span><span class="hl-1"> </span><span class="hl-2">'Home'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">routerLink:</span><span class="hl-1"> </span><span class="hl-2">'/'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">icon:</span><span class="hl-1"> { </span><span class="hl-4">icon:</span><span class="hl-1"> </span><span class="hl-2">'home'</span><span class="hl-1"> },</span><br/><span class="hl-1">};</span>
|
|
41
|
-
</code><button>Copy</button></pre>
|
|
42
|
-
<a id="md:status-property" class="tsd-anchor"></a><h4><a href="#md:status-property">Status Property</a></h4><p>With the <code>status</code> property, a injectable token, class or function can be assigned to the item. The object must have the method <code>isVisible</code> which returns a boolean. If the method returns <code>false</code>, the item is not displayed in the navigation sidebar.</p>
|
|
43
|
-
<pre><code class="language-typescript"><span class="hl-1">@</span><span class="hl-0">Injectable</span><span class="hl-1">()</span><br/><span class="hl-5">class</span><span class="hl-1"> </span><span class="hl-7">SetNavStatus</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-0">isVisible</span><span class="hl-1">(</span><span class="hl-4">item</span><span class="hl-1">: </span><span class="hl-7">NavigationItem</span><span class="hl-1">): </span><span class="hl-7">boolean</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-3">return</span><span class="hl-1"> </span><span class="hl-5">false</span><span class="hl-1">;</span><br/><span class="hl-1"> }</span><br/><span class="hl-1">}</span><br/><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">item</span><span class="hl-1">: </span><span class="hl-7">NavigationItem</span><span class="hl-1"> = {</span><br/><span class="hl-1"> </span><span class="hl-4">label:</span><span class="hl-1"> </span><span class="hl-2">'Home'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">routerLink:</span><span class="hl-1"> </span><span class="hl-2">'/'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">status:</span><span class="hl-1"> </span><span class="hl-4">SetNavStatus</span><span class="hl-1">,</span><br/><span class="hl-1">};</span>
|
|
44
|
-
</code><button>Copy</button></pre>
|
|
45
|
-
<a id="md:navigation-divider-item" class="tsd-anchor"></a><h3><a href="#md:navigation-divider-item">Navigation Divider Item</a></h3><p>A navigation divider item is a horizontal line that separates navigation items. It is used to group items in the navigation sidebar. It is required to set the property <code>divider</code> to <code>true</code>. With the optional property <code>title</code>, a title can be defined that is displayed below the divider.</p>
|
|
46
|
-
<pre><code class="language-typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">item</span><span class="hl-1">: </span><span class="hl-7">NavigationDividerItem</span><span class="hl-1"> = {</span><br/><span class="hl-1"> </span><span class="hl-4">divider:</span><span class="hl-1"> </span><span class="hl-5">true</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">title:</span><span class="hl-1"> </span><span class="hl-2">'Group'</span><span class="hl-1">,</span><br/><span class="hl-1">};</span>
|
|
47
|
-
</code><button>Copy</button></pre>
|
|
48
|
-
<a id="md:navigation-insert-item-wip" class="tsd-anchor"></a><h3><a href="#md:navigation-insert-item-wip">Navigation Insert Item (WIP)</a></h3><p>A navigation insert item is a placeholder for a navigation item that should be inserted into the navigation sidebar.
|
|
49
|
-
The item is used to define where a dynamic navigation should be inserted. The <code>insert</code> property is the key that is used
|
|
50
|
-
identify the insert item. The <code>insert</code> property is required.</p>
|
|
51
|
-
<pre><code class="language-typescript"><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">item</span><span class="hl-1">: </span><span class="hl-7">NavigationInsertItem</span><span class="hl-1"> = {</span><br/><span class="hl-1"> </span><span class="hl-4">insert:</span><span class="hl-1"> </span><span class="hl-2">'insert-key'</span><span class="hl-1">,</span><br/><span class="hl-1">};</span>
|
|
52
|
-
</code><button>Copy</button></pre>
|
|
53
|
-
<a id="md:header" class="tsd-anchor"></a><h2><a href="#md:header">Header</a></h2><p>The header is composed of the components from left to right: AppsButtonComponent, SettingsButtonComponent and UserProfileIconComponent.</p>
|
|
54
|
-
<a id="md:apps-button" class="tsd-anchor"></a><h3><a href="#md:apps-button">Apps Button</a></h3><p>The apps buttons allow for a navigation between different applications. To configure the apps button, the config path
|
|
55
|
-
<code>navigation.apps</code> must be set with an array of object with the property <code>title</code> and ether <code>routerLink</code> or <code>href</code>. If the
|
|
56
|
-
property <code>href</code> is set, the link is opened in a new tab. If the property <code>routerLink</code> the router is used to navigate.</p>
|
|
57
|
-
<pre><code class="language-json"><span class="hl-1">{</span><br/><span class="hl-1"> </span><span class="hl-8">"navigation"</span><span class="hl-1">: {</span><br/><span class="hl-1"> </span><span class="hl-8">"apps"</span><span class="hl-1">: [</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-8">"title"</span><span class="hl-1">: </span><span class="hl-2">"App 1"</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-8">"routerLink"</span><span class="hl-1">: [</span><span class="hl-2">"/"</span><span class="hl-1">, </span><span class="hl-2">"app1"</span><span class="hl-1">]</span><br/><span class="hl-1"> },</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-8">"title"</span><span class="hl-1">: </span><span class="hl-2">"App 2"</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-8">"href"</span><span class="hl-1">: </span><span class="hl-2">"https://app2.com"</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> ]</span><br/><span class="hl-1"> }</span><br/><span class="hl-1">}</span>
|
|
58
|
-
</code><button>Copy</button></pre>
|
|
59
|
-
<blockquote>
|
|
60
|
-
<p>If the application is in production mode, the current <code>localId</code> is appended to the url defined in the <code>href</code> property.</p>
|
|
61
|
-
</blockquote>
|
|
62
|
-
<a id="md:settings-button-customization-wip" class="tsd-anchor"></a><h3><a href="#md:settings-button-customization-wip">Settings Button Customization (WIP)</a></h3><p>It is possible to add custom items to the settings menu. This custom item can be a component or a configuration object.</p>
|
|
63
|
-
<blockquote>
|
|
64
|
-
</blockquote>
|
|
65
|
-
<a id="md:configuration-object" class="tsd-anchor"></a><h4><a href="#md:configuration-object">Configuration Object</a></h4><p>The action function is called when the item is clicked. It is possible to use the <code>inject</code> function to inject services.</p>
|
|
66
|
-
<pre><code class="language-typescript"><span class="hl-3">import</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">LayoutComponent</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">ProvideNavigationConfig</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">withNavigationService</span><span class="hl-1">,</span><br/><span class="hl-1">} </span><span class="hl-3">from</span><span class="hl-1"> </span><span class="hl-2">'@rxap/layout'</span><span class="hl-1">;</span><br/><span class="hl-3">import</span><span class="hl-1"> { </span><span class="hl-4">APP_NAVIGATION</span><span class="hl-1"> } </span><span class="hl-3">from</span><span class="hl-1"> </span><span class="hl-2">'./app.navigation'</span><span class="hl-1">;</span><br/><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">ROUTES</span><span class="hl-1">: </span><span class="hl-7">Route</span><span class="hl-1">[] = [</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">path:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">component:</span><span class="hl-1"> </span><span class="hl-4">LayoutComponent</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">children:</span><span class="hl-1"> [ ],</span><br/><span class="hl-1"> </span><span class="hl-4">providers:</span><span class="hl-1"> [</span><br/><span class="hl-1"> </span><span class="hl-0">provideLayout</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-0">withNavigationConfig</span><span class="hl-1">(</span><span class="hl-6">APP_NAVIGATION</span><span class="hl-1">),</span><br/><span class="hl-1"> </span><span class="hl-0">withSettingsMenuItems</span><span class="hl-1">(</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">label:</span><span class="hl-1"> </span><span class="hl-2">'Custom Item'</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">icon:</span><span class="hl-1"> { </span><span class="hl-4">icon:</span><span class="hl-1"> </span><span class="hl-2">'home'</span><span class="hl-1"> },</span><br/><span class="hl-1"> </span><span class="hl-0">action</span><span class="hl-4">:</span><span class="hl-1"> () </span><span class="hl-5">=></span><span class="hl-1"> </span><span class="hl-0">inject</span><span class="hl-1">(</span><span class="hl-4">MatDialog</span><span class="hl-1">).</span><span class="hl-0">open</span><span class="hl-1">(</span><span class="hl-4">MyCustomDialogComponent</span><span class="hl-1">),</span><br/><span class="hl-1"> }</span><br/><span class="hl-1"> )</span><br/><span class="hl-1"> ),</span><br/><span class="hl-1"> ],</span><br/><span class="hl-1"> },</span><br/><span class="hl-1">];</span>
|
|
67
|
-
</code><button>Copy</button></pre>
|
|
68
|
-
<a id="md:component" class="tsd-anchor"></a><h4><a href="#md:component">Component</a></h4><p>If a component is provided ensure the component template uses the <code>mat-menu-item</code> component:</p>
|
|
69
|
-
<pre><code class="language-angular17html"><button mat-menu-item>My Custom Item</button>
|
|
70
|
-
</code><button>Copy</button></pre>
|
|
71
|
-
<pre><code class="language-typescript"><span class="hl-3">import</span><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">LayoutComponent</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">ProvideNavigationConfig</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">withNavigationService</span><span class="hl-1">,</span><br/><span class="hl-1">} </span><span class="hl-3">from</span><span class="hl-1"> </span><span class="hl-2">'@rxap/layout'</span><span class="hl-1">;</span><br/><span class="hl-3">import</span><span class="hl-1"> { </span><span class="hl-4">APP_NAVIGATION</span><span class="hl-1"> } </span><span class="hl-3">from</span><span class="hl-1"> </span><span class="hl-2">'./app.navigation'</span><span class="hl-1">;</span><br/><br/><span class="hl-5">const</span><span class="hl-1"> </span><span class="hl-6">ROUTES</span><span class="hl-1">: </span><span class="hl-7">Route</span><span class="hl-1">[] = [</span><br/><span class="hl-1"> {</span><br/><span class="hl-1"> </span><span class="hl-4">path:</span><span class="hl-1"> </span><span class="hl-2">''</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">component:</span><span class="hl-1"> </span><span class="hl-4">LayoutComponent</span><span class="hl-1">,</span><br/><span class="hl-1"> </span><span class="hl-4">children:</span><span class="hl-1"> [ ],</span><br/><span class="hl-1"> </span><span class="hl-4">providers:</span><span class="hl-1"> [</span><br/><span class="hl-1"> </span><span class="hl-0">provideLayout</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-0">withNavigationConfig</span><span class="hl-1">(</span><span class="hl-6">APP_NAVIGATION</span><span class="hl-1">),</span><br/><span class="hl-1"> </span><span class="hl-0">withSettingsMenuItems</span><span class="hl-1">(</span><br/><span class="hl-1"> </span><span class="hl-4">MyCustomMenuItemComponent</span><br/><span class="hl-1"> )</span><br/><span class="hl-1"> ),</span><br/><span class="hl-1"> ],</span><br/><span class="hl-1"> },</span><br/><span class="hl-1">];</span>
|
|
72
|
-
</code><button>Copy</button></pre>
|
|
73
|
-
<a id="md:user-profile-wip" class="tsd-anchor"></a><h3><a href="#md:user-profile-wip">User Profile (WIP)</a></h3><p>...</p>
|
|
74
|
-
<a id="md:dynamic-footer" class="tsd-anchor"></a><h2><a href="#md:dynamic-footer">Dynamic Footer</a></h2><p>With the directive <code>rxapFooter</code> it is possible to define a dynamic footer. When the directive is used on a <code><ng-template></code> in a component,
|
|
75
|
-
that is rendered in the layout component, the template is rendered in the footer of the layout component.</p>
|
|
76
|
-
<pre><code class="language-angular17html"><mat-card>
|
|
77
|
-
...
|
|
78
|
-
</mat-card>
|
|
79
|
-
<ng-template rxapFooter>
|
|
80
|
-
<button mat-button>A button in the layout footer</button>
|
|
81
|
-
</ng-template>
|
|
82
|
-
</code><button>Copy</button></pre>
|
|
83
|
-
<a id="md:generators" class="tsd-anchor"></a><h1><a href="#md:generators">Generators</a></h1><a id="md:init" class="tsd-anchor"></a><h2><a href="#md:init">init</a></h2><blockquote>
|
|
84
|
-
<p>Initialize the package in the workspace</p>
|
|
85
|
-
</blockquote>
|
|
86
|
-
<pre><code class="language-bash"><span class="hl-0">yarn</span><span class="hl-1"> </span><span class="hl-2">nx</span><span class="hl-1"> </span><span class="hl-2">g</span><span class="hl-1"> </span><span class="hl-2">@rxap/layout:init</span>
|
|
87
|
-
</code><button>Copy</button></pre>
|
|
88
|
-
</div></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#md:rxaplayout"><span>@rxap/layout</span></a><a href="#md:installation"><span>Installation</span></a><a href="#md:get-started"><span>Get started</span></a><ul><li><a href="#md:layout"><span>Layout</span></a></li><li><a href="#md:navigation"><span>Navigation</span></a></li><li><ul><li><a href="#md:navigation-item"><span>Navigation <wbr/>Item</span></a></li><li><ul><li><a href="#md:icon-property"><span>Icon <wbr/>Property</span></a></li><li><a href="#md:status-property"><span>Status <wbr/>Property</span></a></li></ul></li><li><a href="#md:navigation-divider-item"><span>Navigation <wbr/>Divider <wbr/>Item</span></a></li><li><a href="#md:navigation-insert-item-wip"><span>Navigation <wbr/>Insert <wbr/>Item (WIP)</span></a></li></ul></li><li><a href="#md:header"><span>Header</span></a></li><li><ul><li><a href="#md:apps-button"><span>Apps <wbr/>Button</span></a></li><li><a href="#md:settings-button-customization-wip"><span>Settings <wbr/>Button <wbr/>Customization (WIP)</span></a></li><li><ul><li><a href="#md:configuration-object"><span>Configuration <wbr/>Object</span></a></li><li><a href="#md:component"><span>Component</span></a></li></ul></li><li><a href="#md:user-profile-wip"><span>User <wbr/>Profile (WIP)</span></a></li></ul></li><li><a href="#md:dynamic-footer"><span>Dynamic <wbr/>Footer</span></a></li></ul><a href="#md:generators"><span>Generators</span></a><ul><li><a href="#md:init"><span>init</span></a></li></ul></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="modules.html" class="current"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="assets/icons.svg#icon-1"></use></svg><span>@rxap/layout</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base="."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>NavigationDividerItem | @rxap/layout</title><meta name="description" content="Documentation for @rxap/layout"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rxap/layout</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@rxap/layout</a></li><li><a href="NavigationDividerItem.html">NavigationDividerItem</a></li></ul><h1>Interface NavigationDividerItem</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">NavigationDividerItem</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-property" href="NavigationDividerItem.html#divider">divider</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="NavigationDividerItem.html#title">title</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L17">lib/navigation/navigation-item.ts:17</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="NavigationDividerItem.html#divider" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>divider</span></a>
|
|
2
|
-
<a href="NavigationDividerItem.html#title" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>title?</span></a>
|
|
3
|
-
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="divider" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>divider</span><a href="#divider" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">divider</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">boolean</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L18">lib/navigation/navigation-item.ts:18</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="title" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>title</span><a href="#title" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">title</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L19">lib/navigation/navigation-item.ts:19</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#divider" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>divider</span></a><a href="#title" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>title</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@rxap/layout</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>NavigationInsertItem | @rxap/layout</title><meta name="description" content="Documentation for @rxap/layout"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rxap/layout</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@rxap/layout</a></li><li><a href="NavigationInsertItem.html">NavigationInsertItem</a></li></ul><h1>Interface NavigationInsertItem</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">NavigationInsertItem</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-property" href="NavigationInsertItem.html#insert">insert</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L28">lib/navigation/navigation-item.ts:28</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="NavigationInsertItem.html#insert" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>insert</span></a>
|
|
2
|
-
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="insert" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>insert</span><a href="#insert" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">insert</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L29">lib/navigation/navigation-item.ts:29</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#insert" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>insert</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@rxap/layout</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>NavigationItem | @rxap/layout</title><meta name="description" content="Documentation for @rxap/layout"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rxap/layout</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@rxap/layout</a></li><li><a href="NavigationItem.html">NavigationItem</a></li></ul><h1>Interface NavigationItem<Children></h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">NavigationItem</span><span class="tsd-signature-symbol"><</span><a class="tsd-signature-type tsd-kind-type-parameter" href="NavigationItem.html#Children">Children</a><span class="tsd-signature-symbol">></span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-property" href="NavigationItem.html#children-1">children</a><span class="tsd-signature-symbol">?: </span><a class="tsd-signature-type tsd-kind-type-parameter" href="NavigationItem.html#Children">Children</a><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="NavigationItem.html#icon">icon</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">IconConfig</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="NavigationItem.html#label">label</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="NavigationItem.html#routerLink">routerLink</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="NavigationItem.html#status">status</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">Type</span><span class="tsd-signature-symbol"><</span><a href="NavigationStatus.html" class="tsd-signature-type tsd-kind-interface">NavigationStatus</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">InjectionToken</span><span class="tsd-signature-symbol"><</span><a href="NavigationStatus.html" class="tsd-signature-type tsd-kind-interface">NavigationStatus</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">AbstractType</span><span class="tsd-signature-symbol"><</span><a href="NavigationStatus.html" class="tsd-signature-type tsd-kind-interface">NavigationStatus</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div> <section class="tsd-panel"><h4>Type Parameters</h4><ul class="tsd-type-parameter-list"><li><span><a id="Children" class="tsd-anchor"></a><span class="tsd-kind-type-parameter">Children</span> = <a href="../types/Navigation.html" class="tsd-signature-type tsd-kind-type-alias">Navigation</a></span></li></ul></section> <section class="tsd-panel tsd-hierarchy"><h4>Hierarchy</h4><ul class="tsd-hierarchy"><li><span class="tsd-signature-type">Record</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">, </span><span class="tsd-signature-type">unknown</span><span class="tsd-signature-symbol">></span><ul class="tsd-hierarchy"><li><span class="target">NavigationItem</span></li></ul></li></ul></section><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L44">lib/navigation/navigation-item.ts:44</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="NavigationItem.html#children-1" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>children?</span></a>
|
|
2
|
-
<a href="NavigationItem.html#icon" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>icon?</span></a>
|
|
3
|
-
<a href="NavigationItem.html#label" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>label</span></a>
|
|
4
|
-
<a href="NavigationItem.html#routerLink" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>router<wbr/>Link</span></a>
|
|
5
|
-
<a href="NavigationItem.html#status" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>status?</span></a>
|
|
6
|
-
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="children-1" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>children</span><a href="#children-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">children</span><span class="tsd-signature-symbol">?:</span> <a class="tsd-signature-type tsd-kind-type-parameter" href="NavigationItem.html#Children">Children</a></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L47">lib/navigation/navigation-item.ts:47</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="icon" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>icon</span><a href="#icon" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">icon</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">IconConfig</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L48">lib/navigation/navigation-item.ts:48</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="label" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>label</span><a href="#label" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">label</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L46">lib/navigation/navigation-item.ts:46</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="routerLink" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>router<wbr/>Link</span><a href="#routerLink" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">router<wbr/>Link</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L45">lib/navigation/navigation-item.ts:45</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="status" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>status</span><a href="#status" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">status</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-type">Type</span><span class="tsd-signature-symbol"><</span><a href="NavigationStatus.html" class="tsd-signature-type tsd-kind-interface">NavigationStatus</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">InjectionToken</span><span class="tsd-signature-symbol"><</span><a href="NavigationStatus.html" class="tsd-signature-type tsd-kind-interface">NavigationStatus</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">AbstractType</span><span class="tsd-signature-symbol"><</span><a href="NavigationStatus.html" class="tsd-signature-type tsd-kind-interface">NavigationStatus</a><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L49">lib/navigation/navigation-item.ts:49</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#children-1" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>children</span></a><a href="#icon" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>icon</span></a><a href="#label" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>label</span></a><a href="#routerLink" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>router<wbr/>Link</span></a><a href="#status" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>status</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@rxap/layout</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>NavigationStatus | @rxap/layout</title><meta name="description" content="Documentation for @rxap/layout"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rxap/layout</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@rxap/layout</a></li><li><a href="NavigationStatus.html">NavigationStatus</a></li></ul><h1>Interface NavigationStatus</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">NavigationStatus</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-call-signature" href="NavigationStatus.html#isVisible.isVisible-1">isVisible</a><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">navigationItem</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Observable</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L38">lib/navigation/navigation-item.ts:38</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Methods</h3><div class="tsd-index-list"><a href="NavigationStatus.html#isVisible" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>is<wbr/>Visible</span></a>
|
|
2
|
-
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Methods</h2><section class="tsd-panel tsd-member"><a id="isVisible" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>is<wbr/>Visible</span><a href="#isVisible" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><ul class="tsd-signatures"><li class="tsd-signature tsd-anchor-link"><a id="isVisible.isVisible-1" class="tsd-anchor"></a><span class="tsd-kind-call-signature">is<wbr/>Visible</span><span class="tsd-signature-symbol">(</span><span class="tsd-kind-parameter">navigationItem</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Observable</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span><a href="#isVisible.isVisible-1" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></li><li class="tsd-description"><div class="tsd-parameters"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameter-list"><li><span><span class="tsd-kind-parameter">navigationItem</span>: <a href="NavigationItem.html" class="tsd-signature-type tsd-kind-interface">NavigationItem</a><span class="tsd-signature-symbol"><</span><a href="../types/Navigation.html" class="tsd-signature-type tsd-kind-type-alias">Navigation</a><span class="tsd-signature-symbol">></span></span></li></ul></div><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Observable</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">></span></h4><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/navigation/navigation-item.ts#L39">lib/navigation/navigation-item.ts:39</a></li></ul></aside></li></ul></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#isVisible" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-2048"></use></svg><span>is<wbr/>Visible</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@rxap/layout</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>ReleaseInfoModule | @rxap/layout</title><meta name="description" content="Documentation for @rxap/layout"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rxap/layout</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@rxap/layout</a></li><li><a href="ReleaseInfoModule.html">ReleaseInfoModule</a></li></ul><h1>Interface ReleaseInfoModule</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">ReleaseInfoModule</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-property" href="ReleaseInfoModule.html#hash">hash</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="ReleaseInfoModule.html#name">name</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="ReleaseInfoModule.html#version">version</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L9">lib/types.ts:9</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="ReleaseInfoModule.html#hash" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>hash?</span></a>
|
|
2
|
-
<a href="ReleaseInfoModule.html#name" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>name</span></a>
|
|
3
|
-
<a href="ReleaseInfoModule.html#version" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>version</span></a>
|
|
4
|
-
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="hash" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>hash</span><a href="#hash" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">hash</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L12">lib/types.ts:12</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="name" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>name</span><a href="#name" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">name</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L10">lib/types.ts:10</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="version" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>version</span><a href="#version" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">version</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L11">lib/types.ts:11</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#hash" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>hash</span></a><a href="#name" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>name</span></a><a href="#version" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>version</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@rxap/layout</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html><html class="default" lang="en"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>SettingsMenuItem | @rxap/layout</title><meta name="description" content="Documentation for @rxap/layout"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script defer src="../assets/main.js"></script><script async src="../assets/icons.js" id="tsd-icons-script"></script><script async src="../assets/search.js" id="tsd-search-script"></script><script async src="../assets/navigation.js" id="tsd-nav-script"></script></head><body><script>document.documentElement.dataset.theme = localStorage.getItem("tsd-theme") || "os";document.body.style.display="none";setTimeout(() => app?app.showPage():document.body.style.removeProperty("display"),500)</script><header class="tsd-page-toolbar"><div class="tsd-toolbar-contents container"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget tsd-toolbar-icon search no-caption"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-search"></use></svg></label><input type="text" id="tsd-search-field" aria-label="Search"/></div><div class="field"><div id="tsd-toolbar-links"></div></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">@rxap/layout</a></div><div class="table-cell" id="tsd-widgets"><a href="#" class="tsd-widget tsd-toolbar-icon menu no-caption" data-toggle="menu" aria-label="Menu"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-menu"></use></svg></a></div></div></header><div class="container container-main"><div class="col-content"><div class="tsd-page-title"><ul class="tsd-breadcrumb"><li><a href="../modules.html">@rxap/layout</a></li><li><a href="SettingsMenuItem.html">SettingsMenuItem</a></li></ul><h1>Interface SettingsMenuItem</h1></div><div class="tsd-signature"><span class="tsd-signature-keyword">interface </span><span class="tsd-kind-interface">SettingsMenuItem</span> <span class="tsd-signature-symbol">{ </span><br/><span> </span><a class="tsd-kind-property" href="SettingsMenuItem.html#action">action</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="SettingsMenuItem.html#icon">icon</a><span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">IconConfig</span><span class="tsd-signature-symbol">; </span><br/><span> </span><a class="tsd-kind-property" href="SettingsMenuItem.html#label">label</a><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">; </span><br/><span class="tsd-signature-symbol">}</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L19">lib/types.ts:19</a></li></ul></aside><section class="tsd-panel-group tsd-index-group"><section class="tsd-panel tsd-index-panel"><details class="tsd-index-content tsd-index-accordion" open><summary class="tsd-accordion-summary tsd-index-summary"><h5 class="tsd-index-heading uppercase" role="button" aria-expanded="false" tabIndex="0"><svg width="16" height="16" viewBox="0 0 16 16" fill="none"><use href="../assets/icons.svg#icon-chevronSmall"></use></svg> Index</h5></summary><div class="tsd-accordion-details"><section class="tsd-index-section"><h3 class="tsd-index-heading">Properties</h3><div class="tsd-index-list"><a href="SettingsMenuItem.html#action" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>action</span></a>
|
|
2
|
-
<a href="SettingsMenuItem.html#icon" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>icon?</span></a>
|
|
3
|
-
<a href="SettingsMenuItem.html#label" class="tsd-index-link"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>label</span></a>
|
|
4
|
-
</div></section></div></details></section></section><section class="tsd-panel-group tsd-member-group"><h2>Properties</h2><section class="tsd-panel tsd-member"><a id="action" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>action</span><a href="#action" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">action</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">any</span><span class="tsd-signature-symbol">)</span></div><div class="tsd-type-declaration"><h4>Type declaration</h4><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures"><li class="tsd-signature" id="action.__type.__type-1"><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">any</span></li><li class="tsd-description"><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">any</span></h4></li></ul></li></ul></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L22">lib/types.ts:22</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="icon" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><code class="tsd-tag ts-flagOptional">Optional</code> <span>icon</span><a href="#icon" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">icon</span><span class="tsd-signature-symbol">?:</span> <span class="tsd-signature-type">IconConfig</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L20">lib/types.ts:20</a></li></ul></aside></section><section class="tsd-panel tsd-member"><a id="label" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span>label</span><a href="#label" aria-label="Permalink" class="tsd-anchor-icon"><svg viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-anchor"></use></svg></a></h3><div class="tsd-signature"><span class="tsd-kind-property">label</span><span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">string</span></div><aside class="tsd-sources"><ul><li>Defined in <a href="https://gitlab.com/rxap/packages/-/blob/3c5aef907af80a815e7c9a404878c2eda2596cf4/packages/angular/layout/src/lib/types.ts#L21">lib/types.ts:21</a></li></ul></aside></section></section></div><div class="col-sidebar"><div class="page-menu"><div class="tsd-navigation settings"><details class="tsd-index-accordion"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>Settings</h3></summary><div class="tsd-accordion-details"><div class="tsd-filter-visibility"><h4 class="uppercase">Member Visibility</h4><form><ul id="tsd-filter-options"><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-protected" name="protected"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Protected</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-private" name="private"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Private</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-inherited" name="inherited" checked/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>Inherited</span></label></li><li class="tsd-filter-item"><label class="tsd-filter-input"><input type="checkbox" id="tsd-filter-external" name="external"/><svg width="32" height="32" viewBox="0 0 32 32" aria-hidden="true"><rect class="tsd-checkbox-background" width="30" height="30" x="1" y="1" rx="6" fill="none"></rect><path class="tsd-checkbox-checkmark" d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25" stroke="none" stroke-width="3.5" stroke-linejoin="round" fill="none"></path></svg><span>External</span></label></li></ul></form></div><div class="tsd-theme-toggle"><h4 class="uppercase">Theme</h4><select id="tsd-theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></div></div></details></div><details open class="tsd-index-accordion tsd-page-navigation"><summary class="tsd-accordion-summary"><h3><svg width="20" height="20" viewBox="0 0 24 24" fill="none"><use href="../assets/icons.svg#icon-chevronDown"></use></svg>On This Page</h3></summary><div class="tsd-accordion-details"><a href="#action" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>action</span></a><a href="#icon" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>icon</span></a><a href="#label" class=""><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1024"></use></svg><span>label</span></a></div></details></div><div class="site-menu"><nav class="tsd-navigation"><a href="../modules.html"><svg class="tsd-kind-icon" viewBox="0 0 24 24"><use href="../assets/icons.svg#icon-1"></use></svg><span>@rxap/layout</span></a><ul class="tsd-small-nested-navigation" id="tsd-nav-container" data-base=".."><li>Loading...</li></ul></nav></div></div></div><footer><p class="tsd-generator">Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></footer><div class="overlay"></div></body></html>
|