@rxap/layout 19.0.1-dev.9 → 19.0.2-dev.0
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 +34 -0
- package/README.md +4 -3
- package/compodoc/changelog.html +19 -0
- package/compodoc/dependencies.html +13 -13
- package/compodoc/index.html +7 -4
- package/compodoc/js/search/search_index.js +2 -2
- package/compodoc/miscellaneous/functions.html +12 -12
- package/compodoc/miscellaneous/variables.html +26 -0
- package/compodoc/properties.html +4 -1
- package/docs/documentation.json +1725 -3422
- 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 +111 -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 +305 -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 +301 -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/generators.json +7 -0
- package/package.json +31 -29
- 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
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / NavigationService
|
|
2
|
+
|
|
3
|
+
# Class: NavigationService
|
|
4
|
+
|
|
5
|
+
Defined in: [navigation.service.ts:36](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L36)
|
|
6
|
+
|
|
7
|
+
## Constructors
|
|
8
|
+
|
|
9
|
+
### new NavigationService()
|
|
10
|
+
|
|
11
|
+
> **new NavigationService**(`navigation`, `inserts`): [`NavigationService`](../wiki/Class.NavigationService)
|
|
12
|
+
|
|
13
|
+
Defined in: [navigation.service.ts:47](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L47)
|
|
14
|
+
|
|
15
|
+
#### Parameters
|
|
16
|
+
|
|
17
|
+
##### navigation
|
|
18
|
+
|
|
19
|
+
`any`
|
|
20
|
+
|
|
21
|
+
##### inserts
|
|
22
|
+
|
|
23
|
+
`any` = `null`
|
|
24
|
+
|
|
25
|
+
#### Returns
|
|
26
|
+
|
|
27
|
+
[`NavigationService`](../wiki/Class.NavigationService)
|
|
28
|
+
|
|
29
|
+
## Properties
|
|
30
|
+
|
|
31
|
+
### config$
|
|
32
|
+
|
|
33
|
+
> `readonly` **config$**: `Observable`\<[`Navigation`](../wiki/TypeAlias.Navigation)\>
|
|
34
|
+
|
|
35
|
+
Defined in: [navigation.service.ts:37](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L37)
|
|
36
|
+
|
|
37
|
+
## Methods
|
|
38
|
+
|
|
39
|
+
### add()
|
|
40
|
+
|
|
41
|
+
> **add**(`id`, `value`, `update`): `void`
|
|
42
|
+
|
|
43
|
+
Defined in: [navigation.service.ts:86](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L86)
|
|
44
|
+
|
|
45
|
+
#### Parameters
|
|
46
|
+
|
|
47
|
+
##### id
|
|
48
|
+
|
|
49
|
+
`string`
|
|
50
|
+
|
|
51
|
+
##### value
|
|
52
|
+
|
|
53
|
+
[`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts)
|
|
54
|
+
|
|
55
|
+
##### update
|
|
56
|
+
|
|
57
|
+
`boolean` = `true`
|
|
58
|
+
|
|
59
|
+
#### Returns
|
|
60
|
+
|
|
61
|
+
`void`
|
|
62
|
+
|
|
63
|
+
***
|
|
64
|
+
|
|
65
|
+
### checkNavigationItemStatusProviders()
|
|
66
|
+
|
|
67
|
+
> **checkNavigationItemStatusProviders**(`navigationItem`): `Observable`\<`null` \| [`NavigationDividerItem`](../wiki/Interface.NavigationDividerItem) \| [`NavigationItem`](../wiki/Interface.NavigationItem)\<[`Navigation`](../wiki/TypeAlias.Navigation)\>\>
|
|
68
|
+
|
|
69
|
+
Defined in: [navigation.service.ts:120](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L120)
|
|
70
|
+
|
|
71
|
+
**`Internal`**
|
|
72
|
+
|
|
73
|
+
#### Parameters
|
|
74
|
+
|
|
75
|
+
##### navigationItem
|
|
76
|
+
|
|
77
|
+
[`NavigationDividerItem`](../wiki/Interface.NavigationDividerItem) | [`NavigationItem`](../wiki/Interface.NavigationItem)\<[`Navigation`](../wiki/TypeAlias.Navigation)\>
|
|
78
|
+
|
|
79
|
+
#### Returns
|
|
80
|
+
|
|
81
|
+
`Observable`\<`null` \| [`NavigationDividerItem`](../wiki/Interface.NavigationDividerItem) \| [`NavigationItem`](../wiki/Interface.NavigationItem)\<[`Navigation`](../wiki/TypeAlias.Navigation)\>\>
|
|
82
|
+
|
|
83
|
+
***
|
|
84
|
+
|
|
85
|
+
### checkNavigationStatusProviders()
|
|
86
|
+
|
|
87
|
+
> **checkNavigationStatusProviders**(`navigation`): `Observable`\<[`Navigation`](../wiki/TypeAlias.Navigation)\>
|
|
88
|
+
|
|
89
|
+
Defined in: [navigation.service.ts:172](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L172)
|
|
90
|
+
|
|
91
|
+
**`Internal`**
|
|
92
|
+
|
|
93
|
+
#### Parameters
|
|
94
|
+
|
|
95
|
+
##### navigation
|
|
96
|
+
|
|
97
|
+
[`Navigation`](../wiki/TypeAlias.Navigation)
|
|
98
|
+
|
|
99
|
+
#### Returns
|
|
100
|
+
|
|
101
|
+
`Observable`\<[`Navigation`](../wiki/TypeAlias.Navigation)\>
|
|
102
|
+
|
|
103
|
+
***
|
|
104
|
+
|
|
105
|
+
### get()
|
|
106
|
+
|
|
107
|
+
> **get**(`id`): `undefined` \| [`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts)
|
|
108
|
+
|
|
109
|
+
Defined in: [navigation.service.ts:101](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L101)
|
|
110
|
+
|
|
111
|
+
#### Parameters
|
|
112
|
+
|
|
113
|
+
##### id
|
|
114
|
+
|
|
115
|
+
`string`
|
|
116
|
+
|
|
117
|
+
#### Returns
|
|
118
|
+
|
|
119
|
+
`undefined` \| [`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts)
|
|
120
|
+
|
|
121
|
+
***
|
|
122
|
+
|
|
123
|
+
### has()
|
|
124
|
+
|
|
125
|
+
> **has**(`id`): `boolean`
|
|
126
|
+
|
|
127
|
+
Defined in: [navigation.service.ts:97](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L97)
|
|
128
|
+
|
|
129
|
+
#### Parameters
|
|
130
|
+
|
|
131
|
+
##### id
|
|
132
|
+
|
|
133
|
+
`string`
|
|
134
|
+
|
|
135
|
+
#### Returns
|
|
136
|
+
|
|
137
|
+
`boolean`
|
|
138
|
+
|
|
139
|
+
***
|
|
140
|
+
|
|
141
|
+
### ~~insert()~~
|
|
142
|
+
|
|
143
|
+
> **insert**(`id`, `value`, `update`): `void`
|
|
144
|
+
|
|
145
|
+
Defined in: [navigation.service.ts:78](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L78)
|
|
146
|
+
|
|
147
|
+
#### Parameters
|
|
148
|
+
|
|
149
|
+
##### id
|
|
150
|
+
|
|
151
|
+
`string`
|
|
152
|
+
|
|
153
|
+
##### value
|
|
154
|
+
|
|
155
|
+
[`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts)
|
|
156
|
+
|
|
157
|
+
##### update
|
|
158
|
+
|
|
159
|
+
`boolean` = `true`
|
|
160
|
+
|
|
161
|
+
#### Returns
|
|
162
|
+
|
|
163
|
+
`void`
|
|
164
|
+
|
|
165
|
+
#### Deprecated
|
|
166
|
+
|
|
167
|
+
use add instead
|
|
168
|
+
|
|
169
|
+
***
|
|
170
|
+
|
|
171
|
+
### remove()
|
|
172
|
+
|
|
173
|
+
> **remove**(`id`, `update`): `void`
|
|
174
|
+
|
|
175
|
+
Defined in: [navigation.service.ts:105](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L105)
|
|
176
|
+
|
|
177
|
+
#### Parameters
|
|
178
|
+
|
|
179
|
+
##### id
|
|
180
|
+
|
|
181
|
+
`string`
|
|
182
|
+
|
|
183
|
+
##### update
|
|
184
|
+
|
|
185
|
+
`boolean` = `true`
|
|
186
|
+
|
|
187
|
+
#### Returns
|
|
188
|
+
|
|
189
|
+
`void`
|
|
190
|
+
|
|
191
|
+
***
|
|
192
|
+
|
|
193
|
+
### updateNavigation()
|
|
194
|
+
|
|
195
|
+
> **updateNavigation**(): `void`
|
|
196
|
+
|
|
197
|
+
Defined in: [navigation.service.ts:112](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/navigation.service.ts#L112)
|
|
198
|
+
|
|
199
|
+
#### Returns
|
|
200
|
+
|
|
201
|
+
`void`
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / ReleaseInfoComponent
|
|
2
|
+
|
|
3
|
+
# Class: ReleaseInfoComponent
|
|
4
|
+
|
|
5
|
+
Defined in: [release-info/release-info.component.ts:25](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/release-info/release-info.component.ts#L25)
|
|
6
|
+
|
|
7
|
+
## Constructors
|
|
8
|
+
|
|
9
|
+
### new ReleaseInfoComponent()
|
|
10
|
+
|
|
11
|
+
> **new ReleaseInfoComponent**(): [`ReleaseInfoComponent`](../wiki/Class.ReleaseInfoComponent)
|
|
12
|
+
|
|
13
|
+
#### Returns
|
|
14
|
+
|
|
15
|
+
[`ReleaseInfoComponent`](../wiki/Class.ReleaseInfoComponent)
|
|
16
|
+
|
|
17
|
+
## Properties
|
|
18
|
+
|
|
19
|
+
### modules
|
|
20
|
+
|
|
21
|
+
> `readonly` **modules**: [`ReleaseInfoModule`](../wiki/Interface.ReleaseInfoModule)[]
|
|
22
|
+
|
|
23
|
+
Defined in: [release-info/release-info.component.ts:27](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/release-info/release-info.component.ts#L27)
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### release
|
|
28
|
+
|
|
29
|
+
> `readonly` **release**: `string`
|
|
30
|
+
|
|
31
|
+
Defined in: [release-info/release-info.component.ts:28](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/release-info/release-info.component.ts#L28)
|
|
32
|
+
|
|
33
|
+
## Methods
|
|
34
|
+
|
|
35
|
+
### openEnvironmentInfo()
|
|
36
|
+
|
|
37
|
+
> **openEnvironmentInfo**(): `void`
|
|
38
|
+
|
|
39
|
+
Defined in: [release-info/release-info.component.ts:32](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/release-info/release-info.component.ts#L32)
|
|
40
|
+
|
|
41
|
+
#### Returns
|
|
42
|
+
|
|
43
|
+
`void`
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / SettingsButtonComponent
|
|
2
|
+
|
|
3
|
+
# Class: SettingsButtonComponent
|
|
4
|
+
|
|
5
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:55](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L55)
|
|
6
|
+
|
|
7
|
+
## Constructors
|
|
8
|
+
|
|
9
|
+
### new SettingsButtonComponent()
|
|
10
|
+
|
|
11
|
+
> **new SettingsButtonComponent**(): [`SettingsButtonComponent`](../wiki/Class.SettingsButtonComponent)
|
|
12
|
+
|
|
13
|
+
#### Returns
|
|
14
|
+
|
|
15
|
+
[`SettingsButtonComponent`](../wiki/Class.SettingsButtonComponent)
|
|
16
|
+
|
|
17
|
+
## Properties
|
|
18
|
+
|
|
19
|
+
### availableThemes
|
|
20
|
+
|
|
21
|
+
> `readonly` **availableThemes**: `null` \| `string`[]
|
|
22
|
+
|
|
23
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:78](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L78)
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### availableTypographies
|
|
28
|
+
|
|
29
|
+
> `readonly` **availableTypographies**: `null` \| `string`[]
|
|
30
|
+
|
|
31
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:75](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L75)
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### customItemComponents
|
|
36
|
+
|
|
37
|
+
> **customItemComponents**: `Signal`\<`ComponentPortal`\<`unknown`\>[]\>
|
|
38
|
+
|
|
39
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:62](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L62)
|
|
40
|
+
|
|
41
|
+
***
|
|
42
|
+
|
|
43
|
+
### customItems
|
|
44
|
+
|
|
45
|
+
> **customItems**: `WritableSignal`\<[`SettingsMenuItem`](../wiki/Interface.SettingsMenuItem)[]\>
|
|
46
|
+
|
|
47
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:67](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L67)
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### isDevMode
|
|
52
|
+
|
|
53
|
+
> **isDevMode**: `boolean`
|
|
54
|
+
|
|
55
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:57](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L57)
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### theme
|
|
60
|
+
|
|
61
|
+
> `readonly` **theme**: `ThemeService`
|
|
62
|
+
|
|
63
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:59](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L59)
|
|
64
|
+
|
|
65
|
+
## Methods
|
|
66
|
+
|
|
67
|
+
### clickItem()
|
|
68
|
+
|
|
69
|
+
> **clickItem**(`item`): `void`
|
|
70
|
+
|
|
71
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:117](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L117)
|
|
72
|
+
|
|
73
|
+
#### Parameters
|
|
74
|
+
|
|
75
|
+
##### item
|
|
76
|
+
|
|
77
|
+
[`SettingsMenuItem`](../wiki/Interface.SettingsMenuItem)
|
|
78
|
+
|
|
79
|
+
#### Returns
|
|
80
|
+
|
|
81
|
+
`void`
|
|
82
|
+
|
|
83
|
+
***
|
|
84
|
+
|
|
85
|
+
### previewDensity()
|
|
86
|
+
|
|
87
|
+
> **previewDensity**(`density`): `void`
|
|
88
|
+
|
|
89
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:81](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L81)
|
|
90
|
+
|
|
91
|
+
#### Parameters
|
|
92
|
+
|
|
93
|
+
##### density
|
|
94
|
+
|
|
95
|
+
`ThemeDensity`
|
|
96
|
+
|
|
97
|
+
#### Returns
|
|
98
|
+
|
|
99
|
+
`void`
|
|
100
|
+
|
|
101
|
+
***
|
|
102
|
+
|
|
103
|
+
### previewTheme()
|
|
104
|
+
|
|
105
|
+
> **previewTheme**(`theme`): `void`
|
|
106
|
+
|
|
107
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:105](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L105)
|
|
108
|
+
|
|
109
|
+
#### Parameters
|
|
110
|
+
|
|
111
|
+
##### theme
|
|
112
|
+
|
|
113
|
+
`string`
|
|
114
|
+
|
|
115
|
+
#### Returns
|
|
116
|
+
|
|
117
|
+
`void`
|
|
118
|
+
|
|
119
|
+
***
|
|
120
|
+
|
|
121
|
+
### previewTypography()
|
|
122
|
+
|
|
123
|
+
> **previewTypography**(`typography`): `void`
|
|
124
|
+
|
|
125
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:93](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L93)
|
|
126
|
+
|
|
127
|
+
#### Parameters
|
|
128
|
+
|
|
129
|
+
##### typography
|
|
130
|
+
|
|
131
|
+
`string`
|
|
132
|
+
|
|
133
|
+
#### Returns
|
|
134
|
+
|
|
135
|
+
`void`
|
|
136
|
+
|
|
137
|
+
***
|
|
138
|
+
|
|
139
|
+
### restoreDensity()
|
|
140
|
+
|
|
141
|
+
> **restoreDensity**(): `void`
|
|
142
|
+
|
|
143
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:85](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L85)
|
|
144
|
+
|
|
145
|
+
#### Returns
|
|
146
|
+
|
|
147
|
+
`void`
|
|
148
|
+
|
|
149
|
+
***
|
|
150
|
+
|
|
151
|
+
### restoreTheme()
|
|
152
|
+
|
|
153
|
+
> **restoreTheme**(): `void`
|
|
154
|
+
|
|
155
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:109](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L109)
|
|
156
|
+
|
|
157
|
+
#### Returns
|
|
158
|
+
|
|
159
|
+
`void`
|
|
160
|
+
|
|
161
|
+
***
|
|
162
|
+
|
|
163
|
+
### restoreTypography()
|
|
164
|
+
|
|
165
|
+
> **restoreTypography**(): `void`
|
|
166
|
+
|
|
167
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:97](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L97)
|
|
168
|
+
|
|
169
|
+
#### Returns
|
|
170
|
+
|
|
171
|
+
`void`
|
|
172
|
+
|
|
173
|
+
***
|
|
174
|
+
|
|
175
|
+
### setDensity()
|
|
176
|
+
|
|
177
|
+
> **setDensity**(`density`): `void`
|
|
178
|
+
|
|
179
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:89](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L89)
|
|
180
|
+
|
|
181
|
+
#### Parameters
|
|
182
|
+
|
|
183
|
+
##### density
|
|
184
|
+
|
|
185
|
+
`ThemeDensity`
|
|
186
|
+
|
|
187
|
+
#### Returns
|
|
188
|
+
|
|
189
|
+
`void`
|
|
190
|
+
|
|
191
|
+
***
|
|
192
|
+
|
|
193
|
+
### setTheme()
|
|
194
|
+
|
|
195
|
+
> **setTheme**(`theme`): `void`
|
|
196
|
+
|
|
197
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:113](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L113)
|
|
198
|
+
|
|
199
|
+
#### Parameters
|
|
200
|
+
|
|
201
|
+
##### theme
|
|
202
|
+
|
|
203
|
+
`string`
|
|
204
|
+
|
|
205
|
+
#### Returns
|
|
206
|
+
|
|
207
|
+
`void`
|
|
208
|
+
|
|
209
|
+
***
|
|
210
|
+
|
|
211
|
+
### setTypography()
|
|
212
|
+
|
|
213
|
+
> **setTypography**(`typography`): `void`
|
|
214
|
+
|
|
215
|
+
Defined in: [default-header/settings-button/settings-button.component.ts:101](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/default-header/settings-button/settings-button.component.ts#L101)
|
|
216
|
+
|
|
217
|
+
#### Parameters
|
|
218
|
+
|
|
219
|
+
##### typography
|
|
220
|
+
|
|
221
|
+
`string`
|
|
222
|
+
|
|
223
|
+
#### Returns
|
|
224
|
+
|
|
225
|
+
`void`
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / SidenavComponent
|
|
2
|
+
|
|
3
|
+
# Class: SidenavComponent
|
|
4
|
+
|
|
5
|
+
Defined in: [sidenav/sidenav.component.ts:55](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L55)
|
|
6
|
+
|
|
7
|
+
## Constructors
|
|
8
|
+
|
|
9
|
+
### new SidenavComponent()
|
|
10
|
+
|
|
11
|
+
> **new SidenavComponent**(): [`SidenavComponent`](../wiki/Class.SidenavComponent)
|
|
12
|
+
|
|
13
|
+
#### Returns
|
|
14
|
+
|
|
15
|
+
[`SidenavComponent`](../wiki/Class.SidenavComponent)
|
|
16
|
+
|
|
17
|
+
## Properties
|
|
18
|
+
|
|
19
|
+
### collapsable
|
|
20
|
+
|
|
21
|
+
> `readonly` **collapsable**: `Signal`\<`boolean`\>
|
|
22
|
+
|
|
23
|
+
Defined in: [sidenav/sidenav.component.ts:68](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L68)
|
|
24
|
+
|
|
25
|
+
***
|
|
26
|
+
|
|
27
|
+
### collapsed
|
|
28
|
+
|
|
29
|
+
> `readonly` **collapsed**: `Signal`\<`boolean`\>
|
|
30
|
+
|
|
31
|
+
Defined in: [sidenav/sidenav.component.ts:67](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L67)
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### fixedBottomGap
|
|
36
|
+
|
|
37
|
+
> `readonly` **fixedBottomGap**: `Signal`\<`number`\>
|
|
38
|
+
|
|
39
|
+
Defined in: [sidenav/sidenav.component.ts:63](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L63)
|
|
40
|
+
|
|
41
|
+
***
|
|
42
|
+
|
|
43
|
+
### fixedInViewport
|
|
44
|
+
|
|
45
|
+
> `readonly` **fixedInViewport**: `Signal`\<`boolean`\>
|
|
46
|
+
|
|
47
|
+
Defined in: [sidenav/sidenav.component.ts:65](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L65)
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### fixedTopGap
|
|
52
|
+
|
|
53
|
+
> `readonly` **fixedTopGap**: `Signal`\<`number`\>
|
|
54
|
+
|
|
55
|
+
Defined in: [sidenav/sidenav.component.ts:64](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L64)
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### opened
|
|
60
|
+
|
|
61
|
+
> `readonly` **opened**: `Signal`\<`boolean`\>
|
|
62
|
+
|
|
63
|
+
Defined in: [sidenav/sidenav.component.ts:69](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L69)
|
|
64
|
+
|
|
65
|
+
***
|
|
66
|
+
|
|
67
|
+
### pinned
|
|
68
|
+
|
|
69
|
+
> `readonly` **pinned**: `Signal`\<`boolean`\>
|
|
70
|
+
|
|
71
|
+
Defined in: [sidenav/sidenav.component.ts:66](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L66)
|
|
72
|
+
|
|
73
|
+
***
|
|
74
|
+
|
|
75
|
+
### sidenavFooterDirective
|
|
76
|
+
|
|
77
|
+
> `readonly` **sidenavFooterDirective**: `Signal`\<`undefined` \| [`SidenavFooterDirective`](../wiki/Class.SidenavFooterDirective)\>
|
|
78
|
+
|
|
79
|
+
Defined in: [sidenav/sidenav.component.ts:70](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L70)
|
|
80
|
+
|
|
81
|
+
***
|
|
82
|
+
|
|
83
|
+
### sidenavHeaderDirective
|
|
84
|
+
|
|
85
|
+
> `readonly` **sidenavHeaderDirective**: `Signal`\<`undefined` \| [`SidenavHeaderDirective`](../wiki/Class.SidenavHeaderDirective)\>
|
|
86
|
+
|
|
87
|
+
Defined in: [sidenav/sidenav.component.ts:71](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L71)
|
|
88
|
+
|
|
89
|
+
***
|
|
90
|
+
|
|
91
|
+
### sidenavMode
|
|
92
|
+
|
|
93
|
+
> `readonly` **sidenavMode**: `Signal`\<`MatDrawerMode`\>
|
|
94
|
+
|
|
95
|
+
Defined in: [sidenav/sidenav.component.ts:62](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L62)
|
|
96
|
+
|
|
97
|
+
## Methods
|
|
98
|
+
|
|
99
|
+
### closeSidenav()
|
|
100
|
+
|
|
101
|
+
> **closeSidenav**(): `Promise`\<`void`\>
|
|
102
|
+
|
|
103
|
+
Defined in: [sidenav/sidenav.component.ts:82](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L82)
|
|
104
|
+
|
|
105
|
+
#### Returns
|
|
106
|
+
|
|
107
|
+
`Promise`\<`void`\>
|
|
108
|
+
|
|
109
|
+
***
|
|
110
|
+
|
|
111
|
+
### openSidenav()
|
|
112
|
+
|
|
113
|
+
> **openSidenav**(): `Promise`\<`void`\>
|
|
114
|
+
|
|
115
|
+
Defined in: [sidenav/sidenav.component.ts:77](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L77)
|
|
116
|
+
|
|
117
|
+
#### Returns
|
|
118
|
+
|
|
119
|
+
`Promise`\<`void`\>
|
|
120
|
+
|
|
121
|
+
***
|
|
122
|
+
|
|
123
|
+
### togglePinned()
|
|
124
|
+
|
|
125
|
+
> **togglePinned**(): `void`
|
|
126
|
+
|
|
127
|
+
Defined in: [sidenav/sidenav.component.ts:73](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav.component.ts#L73)
|
|
128
|
+
|
|
129
|
+
#### Returns
|
|
130
|
+
|
|
131
|
+
`void`
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / SidenavFooterDirective
|
|
2
|
+
|
|
3
|
+
# Class: SidenavFooterDirective
|
|
4
|
+
|
|
5
|
+
Defined in: [sidenav/sidenav-footer.directive.ts:11](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav-footer.directive.ts#L11)
|
|
6
|
+
|
|
7
|
+
## Constructors
|
|
8
|
+
|
|
9
|
+
### new SidenavFooterDirective()
|
|
10
|
+
|
|
11
|
+
> **new SidenavFooterDirective**(`template`): [`SidenavFooterDirective`](../wiki/Class.SidenavFooterDirective)
|
|
12
|
+
|
|
13
|
+
Defined in: [sidenav/sidenav-footer.directive.ts:12](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav-footer.directive.ts#L12)
|
|
14
|
+
|
|
15
|
+
#### Parameters
|
|
16
|
+
|
|
17
|
+
##### template
|
|
18
|
+
|
|
19
|
+
`TemplateRef`\<`void`\>
|
|
20
|
+
|
|
21
|
+
#### Returns
|
|
22
|
+
|
|
23
|
+
[`SidenavFooterDirective`](../wiki/Class.SidenavFooterDirective)
|
|
24
|
+
|
|
25
|
+
## Properties
|
|
26
|
+
|
|
27
|
+
### template
|
|
28
|
+
|
|
29
|
+
> `readonly` **template**: `TemplateRef`\<`void`\>
|
|
30
|
+
|
|
31
|
+
Defined in: [sidenav/sidenav-footer.directive.ts:14](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav-footer.directive.ts#L14)
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / SidenavHeaderDirective
|
|
2
|
+
|
|
3
|
+
# Class: SidenavHeaderDirective
|
|
4
|
+
|
|
5
|
+
Defined in: [sidenav/sidenav-header.directive.ts:11](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav-header.directive.ts#L11)
|
|
6
|
+
|
|
7
|
+
## Constructors
|
|
8
|
+
|
|
9
|
+
### new SidenavHeaderDirective()
|
|
10
|
+
|
|
11
|
+
> **new SidenavHeaderDirective**(`template`): [`SidenavHeaderDirective`](../wiki/Class.SidenavHeaderDirective)
|
|
12
|
+
|
|
13
|
+
Defined in: [sidenav/sidenav-header.directive.ts:12](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav-header.directive.ts#L12)
|
|
14
|
+
|
|
15
|
+
#### Parameters
|
|
16
|
+
|
|
17
|
+
##### template
|
|
18
|
+
|
|
19
|
+
`TemplateRef`\<`void`\>
|
|
20
|
+
|
|
21
|
+
#### Returns
|
|
22
|
+
|
|
23
|
+
[`SidenavHeaderDirective`](../wiki/Class.SidenavHeaderDirective)
|
|
24
|
+
|
|
25
|
+
## Properties
|
|
26
|
+
|
|
27
|
+
### template
|
|
28
|
+
|
|
29
|
+
> `readonly` **template**: `TemplateRef`\<`void`\>
|
|
30
|
+
|
|
31
|
+
Defined in: [sidenav/sidenav-header.directive.ts:14](https://gitlab.com/rxap/packages/-/blob/0b022b6165e06718ce3edf73ae1d5375f0ff3413/packages/angular/layout/src/lib/sidenav/sidenav-header.directive.ts#L14)
|