@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
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
[**@rxap/layout**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / LayoutService
|
|
6
|
+
|
|
7
|
+
# Class: LayoutService
|
|
8
|
+
|
|
9
|
+
Defined in: [layout.service.ts:21](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L21)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new LayoutService()
|
|
14
|
+
|
|
15
|
+
> **new LayoutService**(): [`LayoutService`](LayoutService.md)
|
|
16
|
+
|
|
17
|
+
Defined in: [layout.service.ts:39](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L39)
|
|
18
|
+
|
|
19
|
+
#### Returns
|
|
20
|
+
|
|
21
|
+
[`LayoutService`](LayoutService.md)
|
|
22
|
+
|
|
23
|
+
## Properties
|
|
24
|
+
|
|
25
|
+
### collapsable
|
|
26
|
+
|
|
27
|
+
> `readonly` **collapsable**: `WritableSignal`\<`boolean`\>
|
|
28
|
+
|
|
29
|
+
Defined in: [layout.service.ts:26](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L26)
|
|
30
|
+
|
|
31
|
+
***
|
|
32
|
+
|
|
33
|
+
### collapsed
|
|
34
|
+
|
|
35
|
+
> `readonly` **collapsed**: `Signal`\<`boolean`\>
|
|
36
|
+
|
|
37
|
+
Defined in: [layout.service.ts:32](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L32)
|
|
38
|
+
|
|
39
|
+
***
|
|
40
|
+
|
|
41
|
+
### currentThemeDensity
|
|
42
|
+
|
|
43
|
+
> `readonly` **currentThemeDensity**: `Signal`\<`undefined` \| `ThemeDensity`\>
|
|
44
|
+
|
|
45
|
+
Defined in: [layout.service.ts:29](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L29)
|
|
46
|
+
|
|
47
|
+
***
|
|
48
|
+
|
|
49
|
+
### fixedBottomGap
|
|
50
|
+
|
|
51
|
+
> `readonly` **fixedBottomGap**: `Signal`\<`number`\>
|
|
52
|
+
|
|
53
|
+
Defined in: [layout.service.ts:27](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L27)
|
|
54
|
+
|
|
55
|
+
***
|
|
56
|
+
|
|
57
|
+
### fixedInViewport
|
|
58
|
+
|
|
59
|
+
> `readonly` **fixedInViewport**: `WritableSignal`\<`boolean`\>
|
|
60
|
+
|
|
61
|
+
Defined in: [layout.service.ts:31](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L31)
|
|
62
|
+
|
|
63
|
+
***
|
|
64
|
+
|
|
65
|
+
### fixedTopGap
|
|
66
|
+
|
|
67
|
+
> `readonly` **fixedTopGap**: `Signal`\<`number`\>
|
|
68
|
+
|
|
69
|
+
Defined in: [layout.service.ts:28](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L28)
|
|
70
|
+
|
|
71
|
+
***
|
|
72
|
+
|
|
73
|
+
### isMobile
|
|
74
|
+
|
|
75
|
+
> `readonly` **isMobile**: `Signal`\<`boolean`\>
|
|
76
|
+
|
|
77
|
+
Defined in: [layout.service.ts:30](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L30)
|
|
78
|
+
|
|
79
|
+
***
|
|
80
|
+
|
|
81
|
+
### mode
|
|
82
|
+
|
|
83
|
+
> `readonly` **mode**: `WritableSignal`\<`MatDrawerMode`\>
|
|
84
|
+
|
|
85
|
+
Defined in: [layout.service.ts:24](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L24)
|
|
86
|
+
|
|
87
|
+
***
|
|
88
|
+
|
|
89
|
+
### opened
|
|
90
|
+
|
|
91
|
+
> `readonly` **opened**: `WritableSignal`\<`boolean`\>
|
|
92
|
+
|
|
93
|
+
Defined in: [layout.service.ts:23](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L23)
|
|
94
|
+
|
|
95
|
+
***
|
|
96
|
+
|
|
97
|
+
### pinned
|
|
98
|
+
|
|
99
|
+
> `readonly` **pinned**: `WritableSignal`\<`boolean`\>
|
|
100
|
+
|
|
101
|
+
Defined in: [layout.service.ts:25](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L25)
|
|
102
|
+
|
|
103
|
+
## Methods
|
|
104
|
+
|
|
105
|
+
### closeSidenav()
|
|
106
|
+
|
|
107
|
+
> **closeSidenav**(): `void`
|
|
108
|
+
|
|
109
|
+
Defined in: [layout.service.ts:116](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L116)
|
|
110
|
+
|
|
111
|
+
#### Returns
|
|
112
|
+
|
|
113
|
+
`void`
|
|
114
|
+
|
|
115
|
+
***
|
|
116
|
+
|
|
117
|
+
### openSidenav()
|
|
118
|
+
|
|
119
|
+
> **openSidenav**(): `void`
|
|
120
|
+
|
|
121
|
+
Defined in: [layout.service.ts:112](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L112)
|
|
122
|
+
|
|
123
|
+
#### Returns
|
|
124
|
+
|
|
125
|
+
`void`
|
|
126
|
+
|
|
127
|
+
***
|
|
128
|
+
|
|
129
|
+
### toggleOpened()
|
|
130
|
+
|
|
131
|
+
> **toggleOpened**(): `void`
|
|
132
|
+
|
|
133
|
+
Defined in: [layout.service.ts:104](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L104)
|
|
134
|
+
|
|
135
|
+
#### Returns
|
|
136
|
+
|
|
137
|
+
`void`
|
|
138
|
+
|
|
139
|
+
***
|
|
140
|
+
|
|
141
|
+
### togglePinned()
|
|
142
|
+
|
|
143
|
+
> **togglePinned**(): `void`
|
|
144
|
+
|
|
145
|
+
Defined in: [layout.service.ts:108](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/layout.service.ts#L108)
|
|
146
|
+
|
|
147
|
+
#### Returns
|
|
148
|
+
|
|
149
|
+
`void`
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
[**@rxap/layout**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / LogoService
|
|
6
|
+
|
|
7
|
+
# Class: LogoService
|
|
8
|
+
|
|
9
|
+
Defined in: [logo.service.ts:11](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/logo.service.ts#L11)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new LogoService()
|
|
14
|
+
|
|
15
|
+
> **new LogoService**(): [`LogoService`](LogoService.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`LogoService`](LogoService.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### height
|
|
24
|
+
|
|
25
|
+
> `readonly` **height**: `Signal`\<`any`\>
|
|
26
|
+
|
|
27
|
+
Defined in: [logo.service.ts:24](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/logo.service.ts#L24)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### logo
|
|
32
|
+
|
|
33
|
+
> `readonly` **logo**: `WritableSignal`\<`any`\>
|
|
34
|
+
|
|
35
|
+
Defined in: [logo.service.ts:14](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/logo.service.ts#L14)
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### src
|
|
40
|
+
|
|
41
|
+
> `readonly` **src**: `Signal`\<`any`\>
|
|
42
|
+
|
|
43
|
+
Defined in: [logo.service.ts:22](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/logo.service.ts#L22)
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
### width
|
|
48
|
+
|
|
49
|
+
> `readonly` **width**: `Signal`\<`any`\>
|
|
50
|
+
|
|
51
|
+
Defined in: [logo.service.ts:23](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/logo.service.ts#L23)
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[**@rxap/layout**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / MinimalLayoutComponent
|
|
6
|
+
|
|
7
|
+
# Class: MinimalLayoutComponent
|
|
8
|
+
|
|
9
|
+
Defined in: [minimal-layout/minimal-layout.component.ts:18](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/minimal-layout/minimal-layout.component.ts#L18)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new MinimalLayoutComponent()
|
|
14
|
+
|
|
15
|
+
> **new MinimalLayoutComponent**(): [`MinimalLayoutComponent`](MinimalLayoutComponent.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`MinimalLayoutComponent`](MinimalLayoutComponent.md)
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
[**@rxap/layout**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / NavigationComponent
|
|
6
|
+
|
|
7
|
+
# Class: NavigationComponent
|
|
8
|
+
|
|
9
|
+
Defined in: [navigation/navigation.component.ts:48](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L48)
|
|
10
|
+
|
|
11
|
+
## Implements
|
|
12
|
+
|
|
13
|
+
- `OnInit`
|
|
14
|
+
|
|
15
|
+
## Constructors
|
|
16
|
+
|
|
17
|
+
### new NavigationComponent()
|
|
18
|
+
|
|
19
|
+
> **new NavigationComponent**(): [`NavigationComponent`](NavigationComponent.md)
|
|
20
|
+
|
|
21
|
+
#### Returns
|
|
22
|
+
|
|
23
|
+
[`NavigationComponent`](NavigationComponent.md)
|
|
24
|
+
|
|
25
|
+
## Properties
|
|
26
|
+
|
|
27
|
+
### collapsed
|
|
28
|
+
|
|
29
|
+
> `readonly` **collapsed**: `Signal`\<`boolean`\>
|
|
30
|
+
|
|
31
|
+
Defined in: [navigation/navigation.component.ts:58](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L58)
|
|
32
|
+
|
|
33
|
+
***
|
|
34
|
+
|
|
35
|
+
### items
|
|
36
|
+
|
|
37
|
+
> **items**: `InputSignal`\<`undefined` \| [`Navigation`](../type-aliases/Navigation.md)\>
|
|
38
|
+
|
|
39
|
+
Defined in: [navigation/navigation.component.ts:50](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L50)
|
|
40
|
+
|
|
41
|
+
***
|
|
42
|
+
|
|
43
|
+
### level
|
|
44
|
+
|
|
45
|
+
> **level**: `InputSignal`\<`number`\>
|
|
46
|
+
|
|
47
|
+
Defined in: [navigation/navigation.component.ts:52](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L52)
|
|
48
|
+
|
|
49
|
+
***
|
|
50
|
+
|
|
51
|
+
### navigationItems
|
|
52
|
+
|
|
53
|
+
> **navigationItems**: `Signal`\<[`Navigation`](../type-aliases/Navigation.md)\>
|
|
54
|
+
|
|
55
|
+
Defined in: [navigation/navigation.component.ts:60](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L60)
|
|
56
|
+
|
|
57
|
+
***
|
|
58
|
+
|
|
59
|
+
### root
|
|
60
|
+
|
|
61
|
+
> `readonly` **root**: `InputSignal`\<`boolean`\>
|
|
62
|
+
|
|
63
|
+
Defined in: [navigation/navigation.component.ts:62](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L62)
|
|
64
|
+
|
|
65
|
+
## Methods
|
|
66
|
+
|
|
67
|
+
### asNavigationItem()
|
|
68
|
+
|
|
69
|
+
> **asNavigationItem**(`item`): [`NavigationItem`](../interfaces/NavigationItem.md)
|
|
70
|
+
|
|
71
|
+
Defined in: [navigation/navigation.component.ts:89](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L89)
|
|
72
|
+
|
|
73
|
+
#### Parameters
|
|
74
|
+
|
|
75
|
+
##### item
|
|
76
|
+
|
|
77
|
+
[`NavigationDividerItem`](../interfaces/NavigationDividerItem.md) | [`NavigationItem`](../interfaces/NavigationItem.md)\<[`Navigation`](../type-aliases/Navigation.md)\>
|
|
78
|
+
|
|
79
|
+
#### Returns
|
|
80
|
+
|
|
81
|
+
[`NavigationItem`](../interfaces/NavigationItem.md)
|
|
82
|
+
|
|
83
|
+
***
|
|
84
|
+
|
|
85
|
+
### isNavigationDividerItem()
|
|
86
|
+
|
|
87
|
+
> **isNavigationDividerItem**(`item`): `item is NavigationDividerItem`
|
|
88
|
+
|
|
89
|
+
Defined in: [navigation/navigation.component.ts:77](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L77)
|
|
90
|
+
|
|
91
|
+
#### Parameters
|
|
92
|
+
|
|
93
|
+
##### item
|
|
94
|
+
|
|
95
|
+
[`NavigationDividerItem`](../interfaces/NavigationDividerItem.md) | [`NavigationItem`](../interfaces/NavigationItem.md)\<[`Navigation`](../type-aliases/Navigation.md)\>
|
|
96
|
+
|
|
97
|
+
#### Returns
|
|
98
|
+
|
|
99
|
+
`item is NavigationDividerItem`
|
|
100
|
+
|
|
101
|
+
***
|
|
102
|
+
|
|
103
|
+
### isNavigationItem()
|
|
104
|
+
|
|
105
|
+
> **isNavigationItem**(`item`): `item is NavigationItem<Navigation>`
|
|
106
|
+
|
|
107
|
+
Defined in: [navigation/navigation.component.ts:83](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L83)
|
|
108
|
+
|
|
109
|
+
#### Parameters
|
|
110
|
+
|
|
111
|
+
##### item
|
|
112
|
+
|
|
113
|
+
[`NavigationDividerItem`](../interfaces/NavigationDividerItem.md) | [`NavigationItem`](../interfaces/NavigationItem.md)\<[`Navigation`](../type-aliases/Navigation.md)\>
|
|
114
|
+
|
|
115
|
+
#### Returns
|
|
116
|
+
|
|
117
|
+
`item is NavigationItem<Navigation>`
|
|
118
|
+
|
|
119
|
+
***
|
|
120
|
+
|
|
121
|
+
### ngOnInit()
|
|
122
|
+
|
|
123
|
+
> **ngOnInit**(): `void`
|
|
124
|
+
|
|
125
|
+
Defined in: [navigation/navigation.component.ts:66](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation.component.ts#L66)
|
|
126
|
+
|
|
127
|
+
A callback method that is invoked immediately after the
|
|
128
|
+
default change detector has checked the directive's
|
|
129
|
+
data-bound properties for the first time,
|
|
130
|
+
and before any of the view or content children have been checked.
|
|
131
|
+
It is invoked only once when the directive is instantiated.
|
|
132
|
+
|
|
133
|
+
#### Returns
|
|
134
|
+
|
|
135
|
+
`void`
|
|
136
|
+
|
|
137
|
+
#### Implementation of
|
|
138
|
+
|
|
139
|
+
`OnInit.ngOnInit`
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
[**@rxap/layout**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / NavigationItemComponent
|
|
6
|
+
|
|
7
|
+
# Class: NavigationItemComponent
|
|
8
|
+
|
|
9
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:91](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L91)
|
|
10
|
+
|
|
11
|
+
## Implements
|
|
12
|
+
|
|
13
|
+
- `OnChanges`
|
|
14
|
+
- `OnDestroy`
|
|
15
|
+
- `AfterViewInit`
|
|
16
|
+
|
|
17
|
+
## Constructors
|
|
18
|
+
|
|
19
|
+
### new NavigationItemComponent()
|
|
20
|
+
|
|
21
|
+
> **new NavigationItemComponent**(): [`NavigationItemComponent`](NavigationItemComponent.md)
|
|
22
|
+
|
|
23
|
+
#### Returns
|
|
24
|
+
|
|
25
|
+
[`NavigationItemComponent`](NavigationItemComponent.md)
|
|
26
|
+
|
|
27
|
+
## Properties
|
|
28
|
+
|
|
29
|
+
### active
|
|
30
|
+
|
|
31
|
+
> `readonly` **active**: `WritableSignal`\<`boolean`\>
|
|
32
|
+
|
|
33
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:99](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L99)
|
|
34
|
+
|
|
35
|
+
***
|
|
36
|
+
|
|
37
|
+
### children
|
|
38
|
+
|
|
39
|
+
> **children**: `null` \| [`Navigation`](../type-aliases/Navigation.md) = `null`
|
|
40
|
+
|
|
41
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:96](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L96)
|
|
42
|
+
|
|
43
|
+
***
|
|
44
|
+
|
|
45
|
+
### collapsed
|
|
46
|
+
|
|
47
|
+
> `readonly` **collapsed**: `Signal`\<`boolean`\>
|
|
48
|
+
|
|
49
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:111](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L111)
|
|
50
|
+
|
|
51
|
+
***
|
|
52
|
+
|
|
53
|
+
### item
|
|
54
|
+
|
|
55
|
+
> `readonly` **item**: `InputSignal`\<[`NavigationItem`](../interfaces/NavigationItem.md)\<[`Navigation`](../type-aliases/Navigation.md)\>\>
|
|
56
|
+
|
|
57
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:98](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L98)
|
|
58
|
+
|
|
59
|
+
***
|
|
60
|
+
|
|
61
|
+
### itemClasses
|
|
62
|
+
|
|
63
|
+
> `readonly` **itemClasses**: `Signal`\<`string`\>
|
|
64
|
+
|
|
65
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:101](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L101)
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### level
|
|
70
|
+
|
|
71
|
+
> `readonly` **level**: `InputSignal`\<`number`\>
|
|
72
|
+
|
|
73
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:94](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L94)
|
|
74
|
+
|
|
75
|
+
## Methods
|
|
76
|
+
|
|
77
|
+
### asNavigationItem()
|
|
78
|
+
|
|
79
|
+
> **asNavigationItem**(`item`): [`NavigationItem`](../interfaces/NavigationItem.md)
|
|
80
|
+
|
|
81
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:182](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L182)
|
|
82
|
+
|
|
83
|
+
#### Parameters
|
|
84
|
+
|
|
85
|
+
##### item
|
|
86
|
+
|
|
87
|
+
[`NavigationDividerItem`](../interfaces/NavigationDividerItem.md) | [`NavigationItem`](../interfaces/NavigationItem.md)\<[`Navigation`](../type-aliases/Navigation.md)\>
|
|
88
|
+
|
|
89
|
+
#### Returns
|
|
90
|
+
|
|
91
|
+
[`NavigationItem`](../interfaces/NavigationItem.md)
|
|
92
|
+
|
|
93
|
+
***
|
|
94
|
+
|
|
95
|
+
### isNavigationDividerItem()
|
|
96
|
+
|
|
97
|
+
> **isNavigationDividerItem**(`item`): `item is NavigationDividerItem`
|
|
98
|
+
|
|
99
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:170](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L170)
|
|
100
|
+
|
|
101
|
+
#### Parameters
|
|
102
|
+
|
|
103
|
+
##### item
|
|
104
|
+
|
|
105
|
+
[`NavigationDividerItem`](../interfaces/NavigationDividerItem.md) | [`NavigationItem`](../interfaces/NavigationItem.md)\<[`Navigation`](../type-aliases/Navigation.md)\>
|
|
106
|
+
|
|
107
|
+
#### Returns
|
|
108
|
+
|
|
109
|
+
`item is NavigationDividerItem`
|
|
110
|
+
|
|
111
|
+
***
|
|
112
|
+
|
|
113
|
+
### isNavigationItem()
|
|
114
|
+
|
|
115
|
+
> **isNavigationItem**(`item`): `item is NavigationItem<Navigation>`
|
|
116
|
+
|
|
117
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:176](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L176)
|
|
118
|
+
|
|
119
|
+
#### Parameters
|
|
120
|
+
|
|
121
|
+
##### item
|
|
122
|
+
|
|
123
|
+
[`NavigationDividerItem`](../interfaces/NavigationDividerItem.md) | [`NavigationItem`](../interfaces/NavigationItem.md)\<[`Navigation`](../type-aliases/Navigation.md)\>
|
|
124
|
+
|
|
125
|
+
#### Returns
|
|
126
|
+
|
|
127
|
+
`item is NavigationItem<Navigation>`
|
|
128
|
+
|
|
129
|
+
***
|
|
130
|
+
|
|
131
|
+
### ngAfterViewInit()
|
|
132
|
+
|
|
133
|
+
> **ngAfterViewInit**(): `void`
|
|
134
|
+
|
|
135
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:127](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L127)
|
|
136
|
+
|
|
137
|
+
A callback method that is invoked immediately after
|
|
138
|
+
Angular has completed initialization of a component's view.
|
|
139
|
+
It is invoked only once when the view is instantiated.
|
|
140
|
+
|
|
141
|
+
#### Returns
|
|
142
|
+
|
|
143
|
+
`void`
|
|
144
|
+
|
|
145
|
+
#### Implementation of
|
|
146
|
+
|
|
147
|
+
`AfterViewInit.ngAfterViewInit`
|
|
148
|
+
|
|
149
|
+
***
|
|
150
|
+
|
|
151
|
+
### ngOnChanges()
|
|
152
|
+
|
|
153
|
+
> **ngOnChanges**(`changes`): `void`
|
|
154
|
+
|
|
155
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:119](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L119)
|
|
156
|
+
|
|
157
|
+
A callback method that is invoked immediately after the
|
|
158
|
+
default change detector has checked data-bound properties
|
|
159
|
+
if at least one has changed, and before the view and content
|
|
160
|
+
children are checked.
|
|
161
|
+
|
|
162
|
+
#### Parameters
|
|
163
|
+
|
|
164
|
+
##### changes
|
|
165
|
+
|
|
166
|
+
`SimpleChanges`
|
|
167
|
+
|
|
168
|
+
The changed properties.
|
|
169
|
+
|
|
170
|
+
#### Returns
|
|
171
|
+
|
|
172
|
+
`void`
|
|
173
|
+
|
|
174
|
+
#### Implementation of
|
|
175
|
+
|
|
176
|
+
`OnChanges.ngOnChanges`
|
|
177
|
+
|
|
178
|
+
***
|
|
179
|
+
|
|
180
|
+
### ngOnDestroy()
|
|
181
|
+
|
|
182
|
+
> **ngOnDestroy**(): `void`
|
|
183
|
+
|
|
184
|
+
Defined in: [navigation/navigation-item/navigation-item.component.ts:162](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation/navigation-item/navigation-item.component.ts#L162)
|
|
185
|
+
|
|
186
|
+
A callback method that performs custom clean-up, invoked immediately
|
|
187
|
+
before a directive, pipe, or service instance is destroyed.
|
|
188
|
+
|
|
189
|
+
#### Returns
|
|
190
|
+
|
|
191
|
+
`void`
|
|
192
|
+
|
|
193
|
+
#### Implementation of
|
|
194
|
+
|
|
195
|
+
`OnDestroy.ngOnDestroy`
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[**@rxap/layout**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / NavigationProgressBarComponent
|
|
6
|
+
|
|
7
|
+
# Class: NavigationProgressBarComponent
|
|
8
|
+
|
|
9
|
+
Defined in: [navigation-progress-bar/navigation-progress-bar.component.ts:28](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation-progress-bar/navigation-progress-bar.component.ts#L28)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new NavigationProgressBarComponent()
|
|
14
|
+
|
|
15
|
+
> **new NavigationProgressBarComponent**(): [`NavigationProgressBarComponent`](NavigationProgressBarComponent.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`NavigationProgressBarComponent`](NavigationProgressBarComponent.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### navigating
|
|
24
|
+
|
|
25
|
+
> `readonly` **navigating**: `Signal`\<`boolean`\>
|
|
26
|
+
|
|
27
|
+
Defined in: [navigation-progress-bar/navigation-progress-bar.component.ts:32](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation-progress-bar/navigation-progress-bar.component.ts#L32)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### router
|
|
32
|
+
|
|
33
|
+
> `readonly` **router**: `Router`
|
|
34
|
+
|
|
35
|
+
Defined in: [navigation-progress-bar/navigation-progress-bar.component.ts:30](https://gitlab.com/rxap/packages/-/blob/5c9d13911b2e801186e53ea55b76b15441bb2700/packages/angular/layout/src/lib/navigation-progress-bar/navigation-progress-bar.component.ts#L30)
|