@rxap/layout 19.0.2-dev.2 → 19.0.2-dev.4
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 +10 -0
- package/README.md +1 -1
- package/compodoc/changelog.html +7 -0
- package/compodoc/dependencies.html +8 -8
- package/compodoc/index.html +1 -1
- package/compodoc/js/search/search_index.js +2 -2
- package/compodoc/miscellaneous/functions.html +12 -12
- package/compodoc/properties.html +1 -1
- package/docs/documentation.json +13156 -0
- package/docs/html/.nojekyll +1 -0
- package/docs/html/assets/hierarchy.js +1 -0
- package/docs/html/assets/highlight.css +85 -0
- package/docs/html/assets/icons.js +18 -0
- package/docs/html/assets/icons.svg +1 -0
- package/docs/html/assets/main.js +60 -0
- 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/package.json +14 -14
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / NavigationItem
|
|
2
|
+
|
|
3
|
+
# Interface: NavigationItem\<Children\>
|
|
4
|
+
|
|
5
|
+
Defined in: [navigation/navigation-item.ts:44](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L44)
|
|
6
|
+
|
|
7
|
+
## Extends
|
|
8
|
+
|
|
9
|
+
- `Record`\<`string`, `unknown`\>
|
|
10
|
+
|
|
11
|
+
## Type Parameters
|
|
12
|
+
|
|
13
|
+
• **Children** = [`Navigation`](../wiki/TypeAlias.Navigation)
|
|
14
|
+
|
|
15
|
+
## Indexable
|
|
16
|
+
|
|
17
|
+
\[`key`: `string`\]: `unknown`
|
|
18
|
+
|
|
19
|
+
## Properties
|
|
20
|
+
|
|
21
|
+
### children?
|
|
22
|
+
|
|
23
|
+
> `optional` **children**: `Children`
|
|
24
|
+
|
|
25
|
+
Defined in: [navigation/navigation-item.ts:47](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L47)
|
|
26
|
+
|
|
27
|
+
***
|
|
28
|
+
|
|
29
|
+
### icon?
|
|
30
|
+
|
|
31
|
+
> `optional` **icon**: `IconConfig`
|
|
32
|
+
|
|
33
|
+
Defined in: [navigation/navigation-item.ts:48](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L48)
|
|
34
|
+
|
|
35
|
+
***
|
|
36
|
+
|
|
37
|
+
### label
|
|
38
|
+
|
|
39
|
+
> **label**: `string`
|
|
40
|
+
|
|
41
|
+
Defined in: [navigation/navigation-item.ts:46](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L46)
|
|
42
|
+
|
|
43
|
+
***
|
|
44
|
+
|
|
45
|
+
### routerLink
|
|
46
|
+
|
|
47
|
+
> **routerLink**: `string` \| `string`[]
|
|
48
|
+
|
|
49
|
+
Defined in: [navigation/navigation-item.ts:45](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L45)
|
|
50
|
+
|
|
51
|
+
***
|
|
52
|
+
|
|
53
|
+
### status?
|
|
54
|
+
|
|
55
|
+
> `optional` **status**: (`Type`\<[`NavigationStatus`](../wiki/Interface.NavigationStatus)\> \| `InjectionToken`\<[`NavigationStatus`](../wiki/Interface.NavigationStatus)\> \| `AbstractType`\<[`NavigationStatus`](../wiki/Interface.NavigationStatus)\>)[]
|
|
56
|
+
|
|
57
|
+
Defined in: [navigation/navigation-item.ts:49](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L49)
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / NavigationStatus
|
|
2
|
+
|
|
3
|
+
# Interface: NavigationStatus
|
|
4
|
+
|
|
5
|
+
Defined in: [navigation/navigation-item.ts:38](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L38)
|
|
6
|
+
|
|
7
|
+
## Methods
|
|
8
|
+
|
|
9
|
+
### isVisible()
|
|
10
|
+
|
|
11
|
+
> **isVisible**(`navigationItem`): `boolean` \| `Observable`\<`boolean`\> \| `Promise`\<`boolean`\>
|
|
12
|
+
|
|
13
|
+
Defined in: [navigation/navigation-item.ts:39](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L39)
|
|
14
|
+
|
|
15
|
+
#### Parameters
|
|
16
|
+
|
|
17
|
+
##### navigationItem
|
|
18
|
+
|
|
19
|
+
[`NavigationItem`](../wiki/Interface.NavigationItem)
|
|
20
|
+
|
|
21
|
+
#### Returns
|
|
22
|
+
|
|
23
|
+
`boolean` \| `Observable`\<`boolean`\> \| `Promise`\<`boolean`\>
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / ReleaseInfoModule
|
|
2
|
+
|
|
3
|
+
# Interface: ReleaseInfoModule
|
|
4
|
+
|
|
5
|
+
Defined in: [types.ts:9](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L9)
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### hash?
|
|
10
|
+
|
|
11
|
+
> `optional` **hash**: `string`
|
|
12
|
+
|
|
13
|
+
Defined in: [types.ts:12](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L12)
|
|
14
|
+
|
|
15
|
+
***
|
|
16
|
+
|
|
17
|
+
### name
|
|
18
|
+
|
|
19
|
+
> **name**: `string`
|
|
20
|
+
|
|
21
|
+
Defined in: [types.ts:10](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L10)
|
|
22
|
+
|
|
23
|
+
***
|
|
24
|
+
|
|
25
|
+
### version
|
|
26
|
+
|
|
27
|
+
> **version**: `string`
|
|
28
|
+
|
|
29
|
+
Defined in: [types.ts:11](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L11)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / SettingsMenuItem
|
|
2
|
+
|
|
3
|
+
# Interface: SettingsMenuItem
|
|
4
|
+
|
|
5
|
+
Defined in: [types.ts:19](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L19)
|
|
6
|
+
|
|
7
|
+
## Properties
|
|
8
|
+
|
|
9
|
+
### action()
|
|
10
|
+
|
|
11
|
+
> **action**: () => `any`
|
|
12
|
+
|
|
13
|
+
Defined in: [types.ts:22](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L22)
|
|
14
|
+
|
|
15
|
+
#### Returns
|
|
16
|
+
|
|
17
|
+
`any`
|
|
18
|
+
|
|
19
|
+
***
|
|
20
|
+
|
|
21
|
+
### icon?
|
|
22
|
+
|
|
23
|
+
> `optional` **icon**: `IconConfig`
|
|
24
|
+
|
|
25
|
+
Defined in: [types.ts:20](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L20)
|
|
26
|
+
|
|
27
|
+
***
|
|
28
|
+
|
|
29
|
+
### label
|
|
30
|
+
|
|
31
|
+
> **label**: `string`
|
|
32
|
+
|
|
33
|
+
Defined in: [types.ts:21](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L21)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / DefaultHeaderItemComponent
|
|
2
|
+
|
|
3
|
+
# Type Alias: DefaultHeaderItemComponent
|
|
4
|
+
|
|
5
|
+
> **DefaultHeaderItemComponent**: `ComponentType`\<`unknown`\>
|
|
6
|
+
|
|
7
|
+
Defined in: [types.ts:17](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L17)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / ExternalApp
|
|
2
|
+
|
|
3
|
+
# Type Alias: ExternalApp
|
|
4
|
+
|
|
5
|
+
> **ExternalApp**: `AppsNavigationConfig`
|
|
6
|
+
|
|
7
|
+
Defined in: [types.ts:7](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L7)
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / ExtractUsernameFromProfileFn
|
|
2
|
+
|
|
3
|
+
# Type Alias: ExtractUsernameFromProfileFn()\<T\>
|
|
4
|
+
|
|
5
|
+
> **ExtractUsernameFromProfileFn**\<`T`\>: (`profile`) => `string` \| `null`
|
|
6
|
+
|
|
7
|
+
Defined in: [types.ts:8](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L8)
|
|
8
|
+
|
|
9
|
+
## Type Parameters
|
|
10
|
+
|
|
11
|
+
• **T** = `unknown`
|
|
12
|
+
|
|
13
|
+
## Parameters
|
|
14
|
+
|
|
15
|
+
### profile
|
|
16
|
+
|
|
17
|
+
`T`
|
|
18
|
+
|
|
19
|
+
## Returns
|
|
20
|
+
|
|
21
|
+
`string` \| `null`
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / Navigation
|
|
2
|
+
|
|
3
|
+
# Type Alias: Navigation
|
|
4
|
+
|
|
5
|
+
> **Navigation**: ([`NavigationItem`](../wiki/Interface.NavigationItem) \| [`NavigationDividerItem`](../wiki/Interface.NavigationDividerItem))[]
|
|
6
|
+
|
|
7
|
+
Defined in: [navigation/navigation-item.ts:9](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L9)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / NavigationWithInserts
|
|
2
|
+
|
|
3
|
+
# Type Alias: NavigationWithInserts
|
|
4
|
+
|
|
5
|
+
> **NavigationWithInserts**: ([`NavigationItem`](../wiki/Interface.NavigationItem)\<[`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts)\> \| [`NavigationDividerItem`](../wiki/Interface.NavigationDividerItem) \| [`NavigationInsertItem`](../wiki/Interface.NavigationInsertItem))[]
|
|
6
|
+
|
|
7
|
+
Defined in: [navigation/navigation-item.ts:11](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/navigation/navigation-item.ts#L11)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / SettingsMenuItemComponent
|
|
2
|
+
|
|
3
|
+
# Type Alias: SettingsMenuItemComponent
|
|
4
|
+
|
|
5
|
+
> **SettingsMenuItemComponent**: `ComponentType`\<`unknown`\>
|
|
6
|
+
|
|
7
|
+
Defined in: [types.ts:15](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/types.ts#L15)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / EXTRACT\_USERNAME\_FROM\_PROFILE
|
|
2
|
+
|
|
3
|
+
# Variable: EXTRACT\_USERNAME\_FROM\_PROFILE
|
|
4
|
+
|
|
5
|
+
> `const` **EXTRACT\_USERNAME\_FROM\_PROFILE**: `InjectionToken`\<[`ExtractUsernameFromProfileFn`](../wiki/TypeAlias.ExtractUsernameFromProfileFn)\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:30](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L30)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_DEFAULT\_HEADER\_ITEM\_COMPONENT
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_DEFAULT\_HEADER\_ITEM\_COMPONENT
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_DEFAULT\_HEADER\_ITEM\_COMPONENT**: `InjectionToken`\<([`DefaultHeaderItemComponent`](../wiki/TypeAlias.DefaultHeaderItemComponent) \| () => `Promise`\<[`DefaultHeaderItemComponent`](../wiki/TypeAlias.DefaultHeaderItemComponent)\>)[]\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:51](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L51)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_EXTERNAL\_APP
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_EXTERNAL\_APP
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_EXTERNAL\_APP**: `InjectionToken`\<`AppsNavigationConfig`\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:45](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L45)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_EXTERNAL\_APP\_FILTER
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_EXTERNAL\_APP\_FILTER
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_EXTERNAL\_APP\_FILTER**: `InjectionToken`\<`MethodWithParameters`\<`AppsNavigationConfig`[], `AppsNavigationConfig`[]\>\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:29](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L29)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_FOOTER\_COMPONENT
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_FOOTER\_COMPONENT
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_FOOTER\_COMPONENT**: `InjectionToken`\<`ComponentType`\<`unknown`\>\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:24](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L24)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_HEADER\_COMPONENT
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_HEADER\_COMPONENT
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_HEADER\_COMPONENT**: `InjectionToken`\<`ComponentType`\<`unknown`\>\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:25](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L25)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_LAYOUT\_APPS\_GRID
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_LAYOUT\_APPS\_GRID
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_LAYOUT\_APPS\_GRID**: `InjectionToken`\<`unknown`\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:27](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L27)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_LOGO\_CONFIG
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_LOGO\_CONFIG
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_LOGO\_CONFIG**: `InjectionToken`\<`LogoConfig`\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:26](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L26)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_NAVIGATION\_CONFIG
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_NAVIGATION\_CONFIG
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_NAVIGATION\_CONFIG**: `InjectionToken`\<[`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts) \| () => [`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts)\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:19](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L19)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_NAVIGATION\_CONFIG\_INSERTS
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_NAVIGATION\_CONFIG\_INSERTS
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_NAVIGATION\_CONFIG\_INSERTS**: `InjectionToken`\<`Record`\<`string`, [`NavigationWithInserts`](../wiki/TypeAlias.NavigationWithInserts)\>\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:21](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L21)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_RELEASE\_INFO\_MODULE
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_RELEASE\_INFO\_MODULE
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_RELEASE\_INFO\_MODULE**: `InjectionToken`\<[`ReleaseInfoModule`](../wiki/Interface.ReleaseInfoModule)\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:47](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L47)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_SETTINGS\_MENU\_ITEM
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_SETTINGS\_MENU\_ITEM
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_SETTINGS\_MENU\_ITEM**: `InjectionToken`\<[`SettingsMenuItem`](../wiki/Interface.SettingsMenuItem)\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:53](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L53)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_SETTINGS\_MENU\_ITEM\_COMPONENT
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_SETTINGS\_MENU\_ITEM\_COMPONENT
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_SETTINGS\_MENU\_ITEM\_COMPONENT**: `InjectionToken`\<([`SettingsMenuItemComponent`](../wiki/TypeAlias.SettingsMenuItemComponent) \| () => `Promise`\<[`SettingsMenuItemComponent`](../wiki/TypeAlias.SettingsMenuItemComponent)\>)[]\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:49](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L49)
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
[@rxap/layout](../wiki/globals) / RXAP\_USER\_PROFILE\_DATA\_SOURCE
|
|
2
|
+
|
|
3
|
+
# Variable: RXAP\_USER\_PROFILE\_DATA\_SOURCE
|
|
4
|
+
|
|
5
|
+
> `const` **RXAP\_USER\_PROFILE\_DATA\_SOURCE**: `InjectionToken`\<`DataSource`\<`unknown`, `DataSourceViewer`\>\>
|
|
6
|
+
|
|
7
|
+
Defined in: [tokens.ts:40](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/tokens.ts#L40)
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
## API
|
|
2
|
+
|
|
3
|
+
### Classes
|
|
4
|
+
|
|
5
|
+
- [AppsButtonComponent](../wiki/Class.AppsButtonComponent)
|
|
6
|
+
- [BaseLayoutComponent](../wiki/Class.BaseLayoutComponent)
|
|
7
|
+
- [DefaultHeaderComponent](../wiki/Class.DefaultHeaderComponent)
|
|
8
|
+
- [DefaultHeaderService](../wiki/Class.DefaultHeaderService)
|
|
9
|
+
- [ExternalAppsService](../wiki/Class.ExternalAppsService)
|
|
10
|
+
- [FooterComponent](../wiki/Class.FooterComponent)
|
|
11
|
+
- [FooterDirective](../wiki/Class.FooterDirective)
|
|
12
|
+
- [FooterService](../wiki/Class.FooterService)
|
|
13
|
+
- [HeaderComponent](../wiki/Class.HeaderComponent)
|
|
14
|
+
- [HeaderDirective](../wiki/Class.HeaderDirective)
|
|
15
|
+
- [HeaderService](../wiki/Class.HeaderService)
|
|
16
|
+
- [LayoutComponent](../wiki/Class.LayoutComponent)
|
|
17
|
+
- [LayoutService](../wiki/Class.LayoutService)
|
|
18
|
+
- [LogoService](../wiki/Class.LogoService)
|
|
19
|
+
- [MinimalLayoutComponent](../wiki/Class.MinimalLayoutComponent)
|
|
20
|
+
- [NavigationComponent](../wiki/Class.NavigationComponent)
|
|
21
|
+
- [NavigationItemComponent](../wiki/Class.NavigationItemComponent)
|
|
22
|
+
- [NavigationProgressBarComponent](../wiki/Class.NavigationProgressBarComponent)
|
|
23
|
+
- [NavigationService](../wiki/Class.NavigationService)
|
|
24
|
+
- [ReleaseInfoComponent](../wiki/Class.ReleaseInfoComponent)
|
|
25
|
+
- [SettingsButtonComponent](../wiki/Class.SettingsButtonComponent)
|
|
26
|
+
- [SidenavComponent](../wiki/Class.SidenavComponent)
|
|
27
|
+
- [SidenavFooterDirective](../wiki/Class.SidenavFooterDirective)
|
|
28
|
+
- [SidenavHeaderDirective](../wiki/Class.SidenavHeaderDirective)
|
|
29
|
+
- [SidenavToggleButtonComponent](../wiki/Class.SidenavToggleButtonComponent)
|
|
30
|
+
- [UserProfileIconComponent](../wiki/Class.UserProfileIconComponent)
|
|
31
|
+
|
|
32
|
+
### Interfaces
|
|
33
|
+
|
|
34
|
+
- [NavigationDividerItem](../wiki/Interface.NavigationDividerItem)
|
|
35
|
+
- [NavigationInsertItem](../wiki/Interface.NavigationInsertItem)
|
|
36
|
+
- [NavigationItem](../wiki/Interface.NavigationItem)
|
|
37
|
+
- [NavigationStatus](../wiki/Interface.NavigationStatus)
|
|
38
|
+
- [ReleaseInfoModule](../wiki/Interface.ReleaseInfoModule)
|
|
39
|
+
- [SettingsMenuItem](../wiki/Interface.SettingsMenuItem)
|
|
40
|
+
|
|
41
|
+
### Type Aliases
|
|
42
|
+
|
|
43
|
+
- [DefaultHeaderItemComponent](../wiki/TypeAlias.DefaultHeaderItemComponent)
|
|
44
|
+
- [ExternalApp](../wiki/TypeAlias.ExternalApp)
|
|
45
|
+
- [ExtractUsernameFromProfileFn](../wiki/TypeAlias.ExtractUsernameFromProfileFn)
|
|
46
|
+
- [Navigation](../wiki/TypeAlias.Navigation)
|
|
47
|
+
- [NavigationWithInserts](../wiki/TypeAlias.NavigationWithInserts)
|
|
48
|
+
- [SettingsMenuItemComponent](../wiki/TypeAlias.SettingsMenuItemComponent)
|
|
49
|
+
|
|
50
|
+
### Variables
|
|
51
|
+
|
|
52
|
+
- [EXTRACT_USERNAME_FROM_PROFILE](../wiki/Variable.EXTRACT_USERNAME_FROM_PROFILE)
|
|
53
|
+
- [RXAP_DEFAULT_HEADER_ITEM_COMPONENT](../wiki/Variable.RXAP_DEFAULT_HEADER_ITEM_COMPONENT)
|
|
54
|
+
- [RXAP_EXTERNAL_APP](../wiki/Variable.RXAP_EXTERNAL_APP)
|
|
55
|
+
- [RXAP_EXTERNAL_APP_FILTER](../wiki/Variable.RXAP_EXTERNAL_APP_FILTER)
|
|
56
|
+
- [RXAP_FOOTER_COMPONENT](../wiki/Variable.RXAP_FOOTER_COMPONENT)
|
|
57
|
+
- [RXAP_HEADER_COMPONENT](../wiki/Variable.RXAP_HEADER_COMPONENT)
|
|
58
|
+
- [RXAP_LAYOUT_APPS_GRID](../wiki/Variable.RXAP_LAYOUT_APPS_GRID)
|
|
59
|
+
- [RXAP_LOGO_CONFIG](../wiki/Variable.RXAP_LOGO_CONFIG)
|
|
60
|
+
- [RXAP_NAVIGATION_CONFIG](../wiki/Variable.RXAP_NAVIGATION_CONFIG)
|
|
61
|
+
- [RXAP_NAVIGATION_CONFIG_INSERTS](../wiki/Variable.RXAP_NAVIGATION_CONFIG_INSERTS)
|
|
62
|
+
- [RXAP_RELEASE_INFO_MODULE](../wiki/Variable.RXAP_RELEASE_INFO_MODULE)
|
|
63
|
+
- [RXAP_SETTINGS_MENU_ITEM](../wiki/Variable.RXAP_SETTINGS_MENU_ITEM)
|
|
64
|
+
- [RXAP_SETTINGS_MENU_ITEM_COMPONENT](../wiki/Variable.RXAP_SETTINGS_MENU_ITEM_COMPONENT)
|
|
65
|
+
- [RXAP_USER_PROFILE_DATA_SOURCE](../wiki/Variable.RXAP_USER_PROFILE_DATA_SOURCE)
|
|
66
|
+
|
|
67
|
+
### Functions
|
|
68
|
+
|
|
69
|
+
- [IsNavigationDividerItem](../wiki/Function.IsNavigationDividerItem)
|
|
70
|
+
- [IsNavigationInsertItem](../wiki/Function.IsNavigationInsertItem)
|
|
71
|
+
- [IsNavigationItem](../wiki/Function.IsNavigationItem)
|
|
72
|
+
- [provideExternalApps](../wiki/Function.provideExternalApps)
|
|
73
|
+
- [provideLayout](../wiki/Function.provideLayout)
|
|
74
|
+
- [withDefaultHeaderComponent](../wiki/Function.withDefaultHeaderComponent)
|
|
75
|
+
- [withDefaultHeaderItems](../wiki/Function.withDefaultHeaderItems)
|
|
76
|
+
- [withFooterComponents](../wiki/Function.withFooterComponents)
|
|
77
|
+
- [withHeaderComponents](../wiki/Function.withHeaderComponents)
|
|
78
|
+
- [withNavigationConfig](../wiki/Function.withNavigationConfig)
|
|
79
|
+
- [withNavigationInserts](../wiki/Function.withNavigationInserts)
|
|
80
|
+
- [withReleaseInfoModules](../wiki/Function.withReleaseInfoModules)
|
|
81
|
+
- [withSettingsMenuItems](../wiki/Function.withSettingsMenuItems)
|
|
82
|
+
- [withUserProfileDataSource](../wiki/Function.withUserProfileDataSource)
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# @rxap/layout v19.0.2-dev.4
|
|
2
|
+
|
|
3
|
+
## Classes
|
|
4
|
+
|
|
5
|
+
- [AppsButtonComponent](../wiki/Class.AppsButtonComponent)
|
|
6
|
+
- [BaseLayoutComponent](../wiki/Class.BaseLayoutComponent)
|
|
7
|
+
- [DefaultHeaderComponent](../wiki/Class.DefaultHeaderComponent)
|
|
8
|
+
- [DefaultHeaderService](../wiki/Class.DefaultHeaderService)
|
|
9
|
+
- [ExternalAppsService](../wiki/Class.ExternalAppsService)
|
|
10
|
+
- [FooterComponent](../wiki/Class.FooterComponent)
|
|
11
|
+
- [FooterDirective](../wiki/Class.FooterDirective)
|
|
12
|
+
- [FooterService](../wiki/Class.FooterService)
|
|
13
|
+
- [HeaderComponent](../wiki/Class.HeaderComponent)
|
|
14
|
+
- [HeaderDirective](../wiki/Class.HeaderDirective)
|
|
15
|
+
- [HeaderService](../wiki/Class.HeaderService)
|
|
16
|
+
- [LayoutComponent](../wiki/Class.LayoutComponent)
|
|
17
|
+
- [LayoutService](../wiki/Class.LayoutService)
|
|
18
|
+
- [LogoService](../wiki/Class.LogoService)
|
|
19
|
+
- [MinimalLayoutComponent](../wiki/Class.MinimalLayoutComponent)
|
|
20
|
+
- [NavigationComponent](../wiki/Class.NavigationComponent)
|
|
21
|
+
- [NavigationItemComponent](../wiki/Class.NavigationItemComponent)
|
|
22
|
+
- [NavigationProgressBarComponent](../wiki/Class.NavigationProgressBarComponent)
|
|
23
|
+
- [NavigationService](../wiki/Class.NavigationService)
|
|
24
|
+
- [ReleaseInfoComponent](../wiki/Class.ReleaseInfoComponent)
|
|
25
|
+
- [SettingsButtonComponent](../wiki/Class.SettingsButtonComponent)
|
|
26
|
+
- [SidenavComponent](../wiki/Class.SidenavComponent)
|
|
27
|
+
- [SidenavFooterDirective](../wiki/Class.SidenavFooterDirective)
|
|
28
|
+
- [SidenavHeaderDirective](../wiki/Class.SidenavHeaderDirective)
|
|
29
|
+
- [SidenavToggleButtonComponent](../wiki/Class.SidenavToggleButtonComponent)
|
|
30
|
+
- [UserProfileIconComponent](../wiki/Class.UserProfileIconComponent)
|
|
31
|
+
|
|
32
|
+
## Interfaces
|
|
33
|
+
|
|
34
|
+
- [NavigationDividerItem](../wiki/Interface.NavigationDividerItem)
|
|
35
|
+
- [NavigationInsertItem](../wiki/Interface.NavigationInsertItem)
|
|
36
|
+
- [NavigationItem](../wiki/Interface.NavigationItem)
|
|
37
|
+
- [NavigationStatus](../wiki/Interface.NavigationStatus)
|
|
38
|
+
- [ReleaseInfoModule](../wiki/Interface.ReleaseInfoModule)
|
|
39
|
+
- [SettingsMenuItem](../wiki/Interface.SettingsMenuItem)
|
|
40
|
+
|
|
41
|
+
## Type Aliases
|
|
42
|
+
|
|
43
|
+
- [DefaultHeaderItemComponent](../wiki/TypeAlias.DefaultHeaderItemComponent)
|
|
44
|
+
- [ExternalApp](../wiki/TypeAlias.ExternalApp)
|
|
45
|
+
- [ExtractUsernameFromProfileFn](../wiki/TypeAlias.ExtractUsernameFromProfileFn)
|
|
46
|
+
- [Navigation](../wiki/TypeAlias.Navigation)
|
|
47
|
+
- [NavigationWithInserts](../wiki/TypeAlias.NavigationWithInserts)
|
|
48
|
+
- [SettingsMenuItemComponent](../wiki/TypeAlias.SettingsMenuItemComponent)
|
|
49
|
+
|
|
50
|
+
## Variables
|
|
51
|
+
|
|
52
|
+
- [EXTRACT\_USERNAME\_FROM\_PROFILE](../wiki/Variable.EXTRACT_USERNAME_FROM_PROFILE)
|
|
53
|
+
- [RXAP\_DEFAULT\_HEADER\_ITEM\_COMPONENT](../wiki/Variable.RXAP_DEFAULT_HEADER_ITEM_COMPONENT)
|
|
54
|
+
- [RXAP\_EXTERNAL\_APP](../wiki/Variable.RXAP_EXTERNAL_APP)
|
|
55
|
+
- [RXAP\_EXTERNAL\_APP\_FILTER](../wiki/Variable.RXAP_EXTERNAL_APP_FILTER)
|
|
56
|
+
- [RXAP\_FOOTER\_COMPONENT](../wiki/Variable.RXAP_FOOTER_COMPONENT)
|
|
57
|
+
- [RXAP\_HEADER\_COMPONENT](../wiki/Variable.RXAP_HEADER_COMPONENT)
|
|
58
|
+
- [RXAP\_LAYOUT\_APPS\_GRID](../wiki/Variable.RXAP_LAYOUT_APPS_GRID)
|
|
59
|
+
- [RXAP\_LOGO\_CONFIG](../wiki/Variable.RXAP_LOGO_CONFIG)
|
|
60
|
+
- [RXAP\_NAVIGATION\_CONFIG](../wiki/Variable.RXAP_NAVIGATION_CONFIG)
|
|
61
|
+
- [RXAP\_NAVIGATION\_CONFIG\_INSERTS](../wiki/Variable.RXAP_NAVIGATION_CONFIG_INSERTS)
|
|
62
|
+
- [RXAP\_RELEASE\_INFO\_MODULE](../wiki/Variable.RXAP_RELEASE_INFO_MODULE)
|
|
63
|
+
- [RXAP\_SETTINGS\_MENU\_ITEM](../wiki/Variable.RXAP_SETTINGS_MENU_ITEM)
|
|
64
|
+
- [RXAP\_SETTINGS\_MENU\_ITEM\_COMPONENT](../wiki/Variable.RXAP_SETTINGS_MENU_ITEM_COMPONENT)
|
|
65
|
+
- [RXAP\_USER\_PROFILE\_DATA\_SOURCE](../wiki/Variable.RXAP_USER_PROFILE_DATA_SOURCE)
|
|
66
|
+
|
|
67
|
+
## Functions
|
|
68
|
+
|
|
69
|
+
- [IsNavigationDividerItem](../wiki/Function.IsNavigationDividerItem)
|
|
70
|
+
- [IsNavigationInsertItem](../wiki/Function.IsNavigationInsertItem)
|
|
71
|
+
- [IsNavigationItem](../wiki/Function.IsNavigationItem)
|
|
72
|
+
- [provideExternalApps](../wiki/Function.provideExternalApps)
|
|
73
|
+
- [provideLayout](../wiki/Function.provideLayout)
|
|
74
|
+
- [withDefaultHeaderComponent](../wiki/Function.withDefaultHeaderComponent)
|
|
75
|
+
- [withDefaultHeaderItems](../wiki/Function.withDefaultHeaderItems)
|
|
76
|
+
- [withFooterComponents](../wiki/Function.withFooterComponents)
|
|
77
|
+
- [withHeaderComponents](../wiki/Function.withHeaderComponents)
|
|
78
|
+
- [withNavigationConfig](../wiki/Function.withNavigationConfig)
|
|
79
|
+
- [withNavigationInserts](../wiki/Function.withNavigationInserts)
|
|
80
|
+
- [withReleaseInfoModules](../wiki/Function.withReleaseInfoModules)
|
|
81
|
+
- [withSettingsMenuItems](../wiki/Function.withSettingsMenuItems)
|
|
82
|
+
- [withUserProfileDataSource](../wiki/Function.withUserProfileDataSource)
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "19.0.2-dev.
|
|
2
|
+
"version": "19.0.2-dev.4",
|
|
3
3
|
"name": "@rxap/layout",
|
|
4
4
|
"description": "This library provides a set of Angular components and services for creating consistent and configurable application layouts, including headers, footers, side navigation, and content areas. It offers features such as dynamic navigation, external application integration, and customizable themes. The library also includes directives for extending header and footer areas with custom content.\n",
|
|
5
5
|
"license": "GPL-3.0-or-later",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@nx/devkit": "20.4.
|
|
8
|
-
"@rxap/ts-morph": "^1.5.4-dev.
|
|
9
|
-
"@rxap/workspace-ts-morph": "^19.1.10-dev.
|
|
10
|
-
"@rxap/workspace-utilities": "^19.6.2-dev.
|
|
7
|
+
"@nx/devkit": "20.4.6",
|
|
8
|
+
"@rxap/ts-morph": "^1.5.4-dev.1",
|
|
9
|
+
"@rxap/workspace-ts-morph": "^19.1.10-dev.3",
|
|
10
|
+
"@rxap/workspace-utilities": "^19.6.2-dev.3",
|
|
11
11
|
"tslib": "2.6.2"
|
|
12
12
|
},
|
|
13
13
|
"peerDependencies": {
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"@angular/material": "^19.1.1",
|
|
19
19
|
"@angular/router": "^19.1.3",
|
|
20
20
|
"@rxap/browser-utilities": "^1.1.11-dev.0",
|
|
21
|
-
"@rxap/config": "^19.0.2-dev.
|
|
22
|
-
"@rxap/data-source": "^19.0.2-dev.
|
|
21
|
+
"@rxap/config": "^19.0.2-dev.1",
|
|
22
|
+
"@rxap/data-source": "^19.0.2-dev.1",
|
|
23
23
|
"@rxap/environment": "^19.0.2-dev.0",
|
|
24
|
-
"@rxap/material-directives": "^19.0.2-dev.
|
|
24
|
+
"@rxap/material-directives": "^19.0.2-dev.1",
|
|
25
25
|
"@rxap/ngx-pub-sub": "^19.0.2-dev.0",
|
|
26
|
-
"@rxap/ngx-theme": "^19.0.2-dev.
|
|
26
|
+
"@rxap/ngx-theme": "^19.0.2-dev.1",
|
|
27
27
|
"@rxap/pattern": "^1.1.12-dev.0",
|
|
28
28
|
"@rxap/utilities": "^16.4.3-dev.0",
|
|
29
29
|
"rxjs": "^7.8.1"
|
|
@@ -90,11 +90,11 @@
|
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
"package": "@rxap/config",
|
|
93
|
-
"version": "19.0.2-dev.
|
|
93
|
+
"version": "19.0.2-dev.1"
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
"package": "@rxap/data-source",
|
|
97
|
-
"version": "19.0.2-dev.
|
|
97
|
+
"version": "19.0.2-dev.1"
|
|
98
98
|
},
|
|
99
99
|
{
|
|
100
100
|
"package": "@rxap/data-structure-tree",
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
},
|
|
111
111
|
{
|
|
112
112
|
"package": "@rxap/material-directives",
|
|
113
|
-
"version": "19.0.2-dev.
|
|
113
|
+
"version": "19.0.2-dev.1"
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
"package": "@rxap/ngx-memory",
|
|
@@ -122,7 +122,7 @@
|
|
|
122
122
|
},
|
|
123
123
|
{
|
|
124
124
|
"package": "@rxap/ngx-theme",
|
|
125
|
-
"version": "19.0.2-dev.
|
|
125
|
+
"version": "19.0.2-dev.1"
|
|
126
126
|
},
|
|
127
127
|
{
|
|
128
128
|
"package": "@rxap/pattern",
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
},
|
|
154
154
|
"schematics": "./generators.json",
|
|
155
155
|
"sideEffects": false,
|
|
156
|
-
"gitHead": "
|
|
156
|
+
"gitHead": "505a9f353394d70acb3be23c156f43cb944d2ab5",
|
|
157
157
|
"module": "fesm2022/rxap-layout.mjs",
|
|
158
158
|
"typings": "index.d.ts",
|
|
159
159
|
"exports": {
|