@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,251 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / ExternalAppsService
|
|
6
|
+
|
|
7
|
+
# Class: ExternalAppsService
|
|
8
|
+
|
|
9
|
+
Defined in: [external-apps.service.ts:22](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L22)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new ExternalAppsService()
|
|
14
|
+
|
|
15
|
+
> **new ExternalAppsService**(): [`ExternalAppsService`](ExternalAppsService.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`ExternalAppsService`](ExternalAppsService.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### activeAppList
|
|
24
|
+
|
|
25
|
+
> `readonly` **activeAppList**: `WritableSignal`\<`AppsNavigationConfig`[]\>
|
|
26
|
+
|
|
27
|
+
Defined in: [external-apps.service.ts:34](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L34)
|
|
28
|
+
|
|
29
|
+
The list of active apps that is processed by the getAppList method
|
|
30
|
+
|
|
31
|
+
***
|
|
32
|
+
|
|
33
|
+
### appFilterList
|
|
34
|
+
|
|
35
|
+
> `protected` `readonly` **appFilterList**: `MethodWithParameters`\<`AppsNavigationConfig`[], `AppsNavigationConfig`[]\>[]
|
|
36
|
+
|
|
37
|
+
Defined in: [external-apps.service.ts:24](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L24)
|
|
38
|
+
|
|
39
|
+
***
|
|
40
|
+
|
|
41
|
+
### apps
|
|
42
|
+
|
|
43
|
+
> `protected` `readonly` **apps**: `AppsNavigationConfig`[]
|
|
44
|
+
|
|
45
|
+
Defined in: [external-apps.service.ts:28](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L28)
|
|
46
|
+
|
|
47
|
+
***
|
|
48
|
+
|
|
49
|
+
### config
|
|
50
|
+
|
|
51
|
+
> `protected` `readonly` **config**: `ConfigService`\<`any`\>
|
|
52
|
+
|
|
53
|
+
Defined in: [external-apps.service.ts:25](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L25)
|
|
54
|
+
|
|
55
|
+
***
|
|
56
|
+
|
|
57
|
+
### environment
|
|
58
|
+
|
|
59
|
+
> `protected` `readonly` **environment**: `Environment`
|
|
60
|
+
|
|
61
|
+
Defined in: [external-apps.service.ts:27](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L27)
|
|
62
|
+
|
|
63
|
+
***
|
|
64
|
+
|
|
65
|
+
### externalApps
|
|
66
|
+
|
|
67
|
+
> `protected` `readonly` **externalApps**: `AppsNavigationConfig`[]
|
|
68
|
+
|
|
69
|
+
Defined in: [external-apps.service.ts:29](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L29)
|
|
70
|
+
|
|
71
|
+
***
|
|
72
|
+
|
|
73
|
+
### localeId
|
|
74
|
+
|
|
75
|
+
> `protected` `readonly` **localeId**: `string`
|
|
76
|
+
|
|
77
|
+
Defined in: [external-apps.service.ts:26](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L26)
|
|
78
|
+
|
|
79
|
+
## Methods
|
|
80
|
+
|
|
81
|
+
### getApp()
|
|
82
|
+
|
|
83
|
+
> **getApp**(`appId`): `null` \| `AppsNavigationConfig`
|
|
84
|
+
|
|
85
|
+
Defined in: [external-apps.service.ts:40](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L40)
|
|
86
|
+
|
|
87
|
+
#### Parameters
|
|
88
|
+
|
|
89
|
+
##### appId
|
|
90
|
+
|
|
91
|
+
`string`
|
|
92
|
+
|
|
93
|
+
#### Returns
|
|
94
|
+
|
|
95
|
+
`null` \| `AppsNavigationConfig`
|
|
96
|
+
|
|
97
|
+
***
|
|
98
|
+
|
|
99
|
+
### getAppList()
|
|
100
|
+
|
|
101
|
+
> **getAppList**(): `Promise`\<`AppsNavigationConfig`[]\>
|
|
102
|
+
|
|
103
|
+
Defined in: [external-apps.service.ts:100](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L100)
|
|
104
|
+
|
|
105
|
+
#### Returns
|
|
106
|
+
|
|
107
|
+
`Promise`\<`AppsNavigationConfig`[]\>
|
|
108
|
+
|
|
109
|
+
***
|
|
110
|
+
|
|
111
|
+
### getAppRouterLink()
|
|
112
|
+
|
|
113
|
+
> **getAppRouterLink**(`appId`, `path`): `null` \| `string`[]
|
|
114
|
+
|
|
115
|
+
Defined in: [external-apps.service.ts:63](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L63)
|
|
116
|
+
|
|
117
|
+
#### Parameters
|
|
118
|
+
|
|
119
|
+
##### appId
|
|
120
|
+
|
|
121
|
+
`string`
|
|
122
|
+
|
|
123
|
+
##### path
|
|
124
|
+
|
|
125
|
+
`string`
|
|
126
|
+
|
|
127
|
+
#### Returns
|
|
128
|
+
|
|
129
|
+
`null` \| `string`[]
|
|
130
|
+
|
|
131
|
+
***
|
|
132
|
+
|
|
133
|
+
### getAppRouterLinkOrThrow()
|
|
134
|
+
|
|
135
|
+
> **getAppRouterLinkOrThrow**(`appId`, `path`): `string`[]
|
|
136
|
+
|
|
137
|
+
Defined in: [external-apps.service.ts:82](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L82)
|
|
138
|
+
|
|
139
|
+
#### Parameters
|
|
140
|
+
|
|
141
|
+
##### appId
|
|
142
|
+
|
|
143
|
+
`string`
|
|
144
|
+
|
|
145
|
+
##### path
|
|
146
|
+
|
|
147
|
+
`string`
|
|
148
|
+
|
|
149
|
+
#### Returns
|
|
150
|
+
|
|
151
|
+
`string`[]
|
|
152
|
+
|
|
153
|
+
***
|
|
154
|
+
|
|
155
|
+
### getAppUrl()
|
|
156
|
+
|
|
157
|
+
> **getAppUrl**(`appId`, `path`, `infix`): `null` \| `string`
|
|
158
|
+
|
|
159
|
+
Defined in: [external-apps.service.ts:51](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L51)
|
|
160
|
+
|
|
161
|
+
#### Parameters
|
|
162
|
+
|
|
163
|
+
##### appId
|
|
164
|
+
|
|
165
|
+
`string`
|
|
166
|
+
|
|
167
|
+
##### path
|
|
168
|
+
|
|
169
|
+
`string`
|
|
170
|
+
|
|
171
|
+
##### infix
|
|
172
|
+
|
|
173
|
+
`null` | `string`
|
|
174
|
+
|
|
175
|
+
#### Returns
|
|
176
|
+
|
|
177
|
+
`null` \| `string`
|
|
178
|
+
|
|
179
|
+
***
|
|
180
|
+
|
|
181
|
+
### getAppUrlOrThrow()
|
|
182
|
+
|
|
183
|
+
> **getAppUrlOrThrow**(`appId`, `path`): `string`
|
|
184
|
+
|
|
185
|
+
Defined in: [external-apps.service.ts:74](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L74)
|
|
186
|
+
|
|
187
|
+
#### Parameters
|
|
188
|
+
|
|
189
|
+
##### appId
|
|
190
|
+
|
|
191
|
+
`string`
|
|
192
|
+
|
|
193
|
+
##### path
|
|
194
|
+
|
|
195
|
+
`string`
|
|
196
|
+
|
|
197
|
+
#### Returns
|
|
198
|
+
|
|
199
|
+
`string`
|
|
200
|
+
|
|
201
|
+
***
|
|
202
|
+
|
|
203
|
+
### getPathPrefix()
|
|
204
|
+
|
|
205
|
+
> `protected` **getPathPrefix**(): `string`
|
|
206
|
+
|
|
207
|
+
Defined in: [external-apps.service.ts:122](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L122)
|
|
208
|
+
|
|
209
|
+
#### Returns
|
|
210
|
+
|
|
211
|
+
`string`
|
|
212
|
+
|
|
213
|
+
***
|
|
214
|
+
|
|
215
|
+
### hasApp()
|
|
216
|
+
|
|
217
|
+
> **hasApp**(`appId`): `boolean`
|
|
218
|
+
|
|
219
|
+
Defined in: [external-apps.service.ts:36](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L36)
|
|
220
|
+
|
|
221
|
+
#### Parameters
|
|
222
|
+
|
|
223
|
+
##### appId
|
|
224
|
+
|
|
225
|
+
`string`
|
|
226
|
+
|
|
227
|
+
#### Returns
|
|
228
|
+
|
|
229
|
+
`boolean`
|
|
230
|
+
|
|
231
|
+
***
|
|
232
|
+
|
|
233
|
+
### navigate()
|
|
234
|
+
|
|
235
|
+
> **navigate**(`appId`, `path`): `void`
|
|
236
|
+
|
|
237
|
+
Defined in: [external-apps.service.ts:90](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/external-apps.service.ts#L90)
|
|
238
|
+
|
|
239
|
+
#### Parameters
|
|
240
|
+
|
|
241
|
+
##### appId
|
|
242
|
+
|
|
243
|
+
`string`
|
|
244
|
+
|
|
245
|
+
##### path
|
|
246
|
+
|
|
247
|
+
`string`
|
|
248
|
+
|
|
249
|
+
#### Returns
|
|
250
|
+
|
|
251
|
+
`void`
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / FooterComponent
|
|
6
|
+
|
|
7
|
+
# Class: FooterComponent
|
|
8
|
+
|
|
9
|
+
Defined in: [footer/footer.component.ts:18](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer/footer.component.ts#L18)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new FooterComponent()
|
|
14
|
+
|
|
15
|
+
> **new FooterComponent**(): [`FooterComponent`](FooterComponent.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`FooterComponent`](FooterComponent.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### hasPortals
|
|
24
|
+
|
|
25
|
+
> `readonly` **hasPortals**: `Signal`\<`boolean`\>
|
|
26
|
+
|
|
27
|
+
Defined in: [footer/footer.component.ts:23](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer/footer.component.ts#L23)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### portals
|
|
32
|
+
|
|
33
|
+
> `readonly` **portals**: `Signal`\<`Portal`\<`unknown`\>[]\>
|
|
34
|
+
|
|
35
|
+
Defined in: [footer/footer.component.ts:22](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer/footer.component.ts#L22)
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / FooterDirective
|
|
6
|
+
|
|
7
|
+
# Class: FooterDirective
|
|
8
|
+
|
|
9
|
+
Defined in: [footer/footer.directive.ts:16](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer/footer.directive.ts#L16)
|
|
10
|
+
|
|
11
|
+
## Implements
|
|
12
|
+
|
|
13
|
+
- `OnInit`
|
|
14
|
+
- `OnDestroy`
|
|
15
|
+
|
|
16
|
+
## Constructors
|
|
17
|
+
|
|
18
|
+
### new FooterDirective()
|
|
19
|
+
|
|
20
|
+
> **new FooterDirective**(): [`FooterDirective`](FooterDirective.md)
|
|
21
|
+
|
|
22
|
+
#### Returns
|
|
23
|
+
|
|
24
|
+
[`FooterDirective`](FooterDirective.md)
|
|
25
|
+
|
|
26
|
+
## Methods
|
|
27
|
+
|
|
28
|
+
### ngOnDestroy()
|
|
29
|
+
|
|
30
|
+
> **ngOnDestroy**(): `void`
|
|
31
|
+
|
|
32
|
+
Defined in: [footer/footer.directive.ts:31](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer/footer.directive.ts#L31)
|
|
33
|
+
|
|
34
|
+
A callback method that performs custom clean-up, invoked immediately
|
|
35
|
+
before a directive, pipe, or service instance is destroyed.
|
|
36
|
+
|
|
37
|
+
#### Returns
|
|
38
|
+
|
|
39
|
+
`void`
|
|
40
|
+
|
|
41
|
+
#### Implementation of
|
|
42
|
+
|
|
43
|
+
`OnDestroy.ngOnDestroy`
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
### ngOnInit()
|
|
48
|
+
|
|
49
|
+
> **ngOnInit**(): `void`
|
|
50
|
+
|
|
51
|
+
Defined in: [footer/footer.directive.ts:23](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer/footer.directive.ts#L23)
|
|
52
|
+
|
|
53
|
+
A callback method that is invoked immediately after the
|
|
54
|
+
default change detector has checked the directive's
|
|
55
|
+
data-bound properties for the first time,
|
|
56
|
+
and before any of the view or content children have been checked.
|
|
57
|
+
It is invoked only once when the directive is instantiated.
|
|
58
|
+
|
|
59
|
+
#### Returns
|
|
60
|
+
|
|
61
|
+
`void`
|
|
62
|
+
|
|
63
|
+
#### Implementation of
|
|
64
|
+
|
|
65
|
+
`OnInit.ngOnInit`
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / FooterService
|
|
6
|
+
|
|
7
|
+
# Class: FooterService
|
|
8
|
+
|
|
9
|
+
Defined in: [footer.service.ts:16](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer.service.ts#L16)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new FooterService()
|
|
14
|
+
|
|
15
|
+
> **new FooterService**(): [`FooterService`](FooterService.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`FooterService`](FooterService.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### portalCount
|
|
24
|
+
|
|
25
|
+
> `readonly` **portalCount**: `Signal`\<`number`\>
|
|
26
|
+
|
|
27
|
+
Defined in: [footer.service.ts:31](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer.service.ts#L31)
|
|
28
|
+
|
|
29
|
+
Computes the count of portals.
|
|
30
|
+
|
|
31
|
+
#### Returns
|
|
32
|
+
|
|
33
|
+
The count of portals.
|
|
34
|
+
|
|
35
|
+
***
|
|
36
|
+
|
|
37
|
+
### portals
|
|
38
|
+
|
|
39
|
+
> `readonly` **portals**: `WritableSignal`\<`Portal`\<`unknown`\>[]\>
|
|
40
|
+
|
|
41
|
+
Defined in: [footer.service.ts:23](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer.service.ts#L23)
|
|
42
|
+
|
|
43
|
+
Represents an array of `Portal` objects with unknown type.
|
|
44
|
+
|
|
45
|
+
## Methods
|
|
46
|
+
|
|
47
|
+
### pushPortal()
|
|
48
|
+
|
|
49
|
+
> **pushPortal**(`portal`): `void`
|
|
50
|
+
|
|
51
|
+
Defined in: [footer.service.ts:40](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer.service.ts#L40)
|
|
52
|
+
|
|
53
|
+
Adds a portal to the list of portals.
|
|
54
|
+
|
|
55
|
+
#### Parameters
|
|
56
|
+
|
|
57
|
+
##### portal
|
|
58
|
+
|
|
59
|
+
`Portal`\<`unknown`\>
|
|
60
|
+
|
|
61
|
+
The portal to be added.
|
|
62
|
+
|
|
63
|
+
#### Returns
|
|
64
|
+
|
|
65
|
+
`void`
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### removePortal()
|
|
70
|
+
|
|
71
|
+
> **removePortal**(`portal`): `void`
|
|
72
|
+
|
|
73
|
+
Defined in: [footer.service.ts:56](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/footer.service.ts#L56)
|
|
74
|
+
|
|
75
|
+
Removes a portal from the list of portals.
|
|
76
|
+
|
|
77
|
+
#### Parameters
|
|
78
|
+
|
|
79
|
+
##### portal
|
|
80
|
+
|
|
81
|
+
`Portal`\<`unknown`\>
|
|
82
|
+
|
|
83
|
+
The portal to be removed.
|
|
84
|
+
|
|
85
|
+
#### Returns
|
|
86
|
+
|
|
87
|
+
`void`
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / HeaderComponent
|
|
6
|
+
|
|
7
|
+
# Class: HeaderComponent
|
|
8
|
+
|
|
9
|
+
Defined in: [header/header.component.ts:27](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header/header.component.ts#L27)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new HeaderComponent()
|
|
14
|
+
|
|
15
|
+
> **new HeaderComponent**(): [`HeaderComponent`](HeaderComponent.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`HeaderComponent`](HeaderComponent.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### color
|
|
24
|
+
|
|
25
|
+
> `readonly` **color**: `InputSignal`\<`ThemePalette`\>
|
|
26
|
+
|
|
27
|
+
Defined in: [header/header.component.ts:29](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header/header.component.ts#L29)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### hasPortals
|
|
32
|
+
|
|
33
|
+
> `readonly` **hasPortals**: `Signal`\<`boolean`\>
|
|
34
|
+
|
|
35
|
+
Defined in: [header/header.component.ts:34](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header/header.component.ts#L34)
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### portals
|
|
40
|
+
|
|
41
|
+
> `readonly` **portals**: `Signal`\<`Portal`\<`unknown`\>[]\>
|
|
42
|
+
|
|
43
|
+
Defined in: [header/header.component.ts:33](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header/header.component.ts#L33)
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / HeaderDirective
|
|
6
|
+
|
|
7
|
+
# Class: HeaderDirective
|
|
8
|
+
|
|
9
|
+
Defined in: [header/header.directive.ts:16](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header/header.directive.ts#L16)
|
|
10
|
+
|
|
11
|
+
## Implements
|
|
12
|
+
|
|
13
|
+
- `OnInit`
|
|
14
|
+
- `OnDestroy`
|
|
15
|
+
|
|
16
|
+
## Constructors
|
|
17
|
+
|
|
18
|
+
### new HeaderDirective()
|
|
19
|
+
|
|
20
|
+
> **new HeaderDirective**(): [`HeaderDirective`](HeaderDirective.md)
|
|
21
|
+
|
|
22
|
+
#### Returns
|
|
23
|
+
|
|
24
|
+
[`HeaderDirective`](HeaderDirective.md)
|
|
25
|
+
|
|
26
|
+
## Methods
|
|
27
|
+
|
|
28
|
+
### ngOnDestroy()
|
|
29
|
+
|
|
30
|
+
> **ngOnDestroy**(): `void`
|
|
31
|
+
|
|
32
|
+
Defined in: [header/header.directive.ts:31](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header/header.directive.ts#L31)
|
|
33
|
+
|
|
34
|
+
A callback method that performs custom clean-up, invoked immediately
|
|
35
|
+
before a directive, pipe, or service instance is destroyed.
|
|
36
|
+
|
|
37
|
+
#### Returns
|
|
38
|
+
|
|
39
|
+
`void`
|
|
40
|
+
|
|
41
|
+
#### Implementation of
|
|
42
|
+
|
|
43
|
+
`OnDestroy.ngOnDestroy`
|
|
44
|
+
|
|
45
|
+
***
|
|
46
|
+
|
|
47
|
+
### ngOnInit()
|
|
48
|
+
|
|
49
|
+
> **ngOnInit**(): `void`
|
|
50
|
+
|
|
51
|
+
Defined in: [header/header.directive.ts:23](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header/header.directive.ts#L23)
|
|
52
|
+
|
|
53
|
+
A callback method that is invoked immediately after the
|
|
54
|
+
default change detector has checked the directive's
|
|
55
|
+
data-bound properties for the first time,
|
|
56
|
+
and before any of the view or content children have been checked.
|
|
57
|
+
It is invoked only once when the directive is instantiated.
|
|
58
|
+
|
|
59
|
+
#### Returns
|
|
60
|
+
|
|
61
|
+
`void`
|
|
62
|
+
|
|
63
|
+
#### Implementation of
|
|
64
|
+
|
|
65
|
+
`OnInit.ngOnInit`
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / HeaderService
|
|
6
|
+
|
|
7
|
+
# Class: HeaderService
|
|
8
|
+
|
|
9
|
+
Defined in: [header.service.ts:16](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header.service.ts#L16)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new HeaderService()
|
|
14
|
+
|
|
15
|
+
> **new HeaderService**(): [`HeaderService`](HeaderService.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`HeaderService`](HeaderService.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### portalCount
|
|
24
|
+
|
|
25
|
+
> `readonly` **portalCount**: `Signal`\<`number`\>
|
|
26
|
+
|
|
27
|
+
Defined in: [header.service.ts:33](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header.service.ts#L33)
|
|
28
|
+
|
|
29
|
+
Computes the count of portals.
|
|
30
|
+
|
|
31
|
+
#### Returns
|
|
32
|
+
|
|
33
|
+
The count of portals.
|
|
34
|
+
|
|
35
|
+
***
|
|
36
|
+
|
|
37
|
+
### portals
|
|
38
|
+
|
|
39
|
+
> `readonly` **portals**: `WritableSignal`\<`Portal`\<`unknown`\>[]\>
|
|
40
|
+
|
|
41
|
+
Defined in: [header.service.ts:25](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header.service.ts#L25)
|
|
42
|
+
|
|
43
|
+
Represents an array of `Portal` objects with unknown type.
|
|
44
|
+
|
|
45
|
+
## Methods
|
|
46
|
+
|
|
47
|
+
### pushPortal()
|
|
48
|
+
|
|
49
|
+
> **pushPortal**(`portal`): `void`
|
|
50
|
+
|
|
51
|
+
Defined in: [header.service.ts:43](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header.service.ts#L43)
|
|
52
|
+
|
|
53
|
+
Adds a portal to the list of portals.
|
|
54
|
+
|
|
55
|
+
#### Parameters
|
|
56
|
+
|
|
57
|
+
##### portal
|
|
58
|
+
|
|
59
|
+
`Portal`\<`unknown`\>
|
|
60
|
+
|
|
61
|
+
The portal to be added.
|
|
62
|
+
|
|
63
|
+
#### Returns
|
|
64
|
+
|
|
65
|
+
`void`
|
|
66
|
+
|
|
67
|
+
***
|
|
68
|
+
|
|
69
|
+
### removePortal()
|
|
70
|
+
|
|
71
|
+
> **removePortal**(`portal`): `void`
|
|
72
|
+
|
|
73
|
+
Defined in: [header.service.ts:59](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/header.service.ts#L59)
|
|
74
|
+
|
|
75
|
+
Removes a portal from the list of portals.
|
|
76
|
+
|
|
77
|
+
#### Parameters
|
|
78
|
+
|
|
79
|
+
##### portal
|
|
80
|
+
|
|
81
|
+
`Portal`\<`unknown`\>
|
|
82
|
+
|
|
83
|
+
The portal to be removed.
|
|
84
|
+
|
|
85
|
+
#### Returns
|
|
86
|
+
|
|
87
|
+
`void`
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[**@rxap/layout v19.0.2-dev.4**](../README.md)
|
|
2
|
+
|
|
3
|
+
***
|
|
4
|
+
|
|
5
|
+
[@rxap/layout](../globals.md) / LayoutComponent
|
|
6
|
+
|
|
7
|
+
# Class: LayoutComponent
|
|
8
|
+
|
|
9
|
+
Defined in: [layout/layout.component.ts:59](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/layout/layout.component.ts#L59)
|
|
10
|
+
|
|
11
|
+
## Constructors
|
|
12
|
+
|
|
13
|
+
### new LayoutComponent()
|
|
14
|
+
|
|
15
|
+
> **new LayoutComponent**(): [`LayoutComponent`](LayoutComponent.md)
|
|
16
|
+
|
|
17
|
+
#### Returns
|
|
18
|
+
|
|
19
|
+
[`LayoutComponent`](LayoutComponent.md)
|
|
20
|
+
|
|
21
|
+
## Properties
|
|
22
|
+
|
|
23
|
+
### logoHeight
|
|
24
|
+
|
|
25
|
+
> `readonly` **logoHeight**: `Signal`\<`number`\>
|
|
26
|
+
|
|
27
|
+
Defined in: [layout/layout.component.ts:64](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/layout/layout.component.ts#L64)
|
|
28
|
+
|
|
29
|
+
***
|
|
30
|
+
|
|
31
|
+
### logoSrc
|
|
32
|
+
|
|
33
|
+
> `readonly` **logoSrc**: `Signal`\<`string`\>
|
|
34
|
+
|
|
35
|
+
Defined in: [layout/layout.component.ts:62](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/layout/layout.component.ts#L62)
|
|
36
|
+
|
|
37
|
+
***
|
|
38
|
+
|
|
39
|
+
### logoWidth
|
|
40
|
+
|
|
41
|
+
> `readonly` **logoWidth**: `Signal`\<`number`\>
|
|
42
|
+
|
|
43
|
+
Defined in: [layout/layout.component.ts:63](https://gitlab.com/rxap/packages/-/blob/505a9f353394d70acb3be23c156f43cb944d2ab5/packages/angular/layout/src/lib/layout/layout.component.ts#L63)
|