@rxap/layout 16.0.0-dev.1 → 16.0.0-dev.11

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.
Files changed (111) hide show
  1. package/CHANGELOG.md +384 -0
  2. package/LICENSE +621 -21
  3. package/LICENSE.md +621 -0
  4. package/README.md +7 -22
  5. package/esm2022/index.mjs +5 -20
  6. package/esm2022/lib/app-url.service.mjs +64 -0
  7. package/esm2022/lib/footer/footer.component.mjs +13 -42
  8. package/esm2022/lib/footer.directive.mjs +21 -35
  9. package/esm2022/lib/header/apps-button/apps-button.component.mjs +42 -101
  10. package/esm2022/lib/header/header.component.mjs +66 -108
  11. package/esm2022/lib/header/language-selector/language-selector.component.mjs +30 -108
  12. package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.mjs +22 -26
  13. package/esm2022/lib/header/reset-button/reset-button.component.mjs +16 -21
  14. package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.mjs +21 -42
  15. package/esm2022/lib/header/sign-out/sign-out.component.mjs +19 -28
  16. package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.mjs +39 -109
  17. package/esm2022/lib/i18n-check.guard.mjs +34 -0
  18. package/esm2022/lib/i18n.service.mjs +36 -0
  19. package/esm2022/lib/language-selector.service.mjs +34 -0
  20. package/esm2022/lib/layout/layout.component.mjs +58 -72
  21. package/esm2022/lib/layout/layout.component.service.mjs +21 -22
  22. package/esm2022/lib/navigation/navigation-item/navigation-item.component.mjs +120 -239
  23. package/esm2022/lib/navigation/navigation-item.mjs +4 -4
  24. package/esm2022/lib/navigation/navigation.component.mjs +48 -96
  25. package/esm2022/lib/navigation/navigation.service.mjs +28 -27
  26. package/esm2022/lib/navigation/replace-router-paths.service.mjs +9 -10
  27. package/esm2022/lib/sidenav/sidenav-footer.directive.mjs +15 -15
  28. package/esm2022/lib/sidenav/sidenav-header.directive.mjs +15 -15
  29. package/esm2022/lib/sidenav/sidenav.component.mjs +40 -112
  30. package/esm2022/lib/sidenav/sidenav.component.service.mjs +8 -9
  31. package/esm2022/lib/sidenav/version/version.component.mjs +16 -49
  32. package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.mjs +19 -40
  33. package/esm2022/lib/tokens.mjs +1 -1
  34. package/esm2022/lib/types.mjs +1 -1
  35. package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.mjs +18 -36
  36. package/esm2022/rxap-layout.mjs +1 -1
  37. package/fesm2022/rxap-layout.mjs +753 -1851
  38. package/fesm2022/rxap-layout.mjs.map +1 -1
  39. package/index.d.ts +4 -17
  40. package/lib/app-url.service.d.ts +26 -0
  41. package/lib/footer/footer.component.d.ts +1 -1
  42. package/lib/footer.directive.d.ts +2 -7
  43. package/lib/header/apps-button/apps-button.component.d.ts +13 -21
  44. package/lib/header/header.component.d.ts +8 -11
  45. package/lib/header/language-selector/language-selector.component.d.ts +2 -17
  46. package/lib/header/navigation-progress-bar/navigation-progress-bar.component.d.ts +1 -1
  47. package/lib/header/reset-button/reset-button.component.d.ts +1 -1
  48. package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.d.ts +1 -1
  49. package/lib/header/sign-out/sign-out.component.d.ts +5 -5
  50. package/lib/header/user-profile-icon/user-profile-icon.component.d.ts +12 -8
  51. package/lib/i18n-check.guard.d.ts +14 -0
  52. package/lib/i18n.service.d.ts +12 -0
  53. package/lib/language-selector.service.d.ts +15 -0
  54. package/lib/layout/layout.component.d.ts +8 -4
  55. package/lib/navigation/navigation-item/navigation-item.component.d.ts +11 -18
  56. package/lib/navigation/navigation-item.d.ts +1 -1
  57. package/lib/navigation/navigation.component.d.ts +6 -6
  58. package/lib/navigation/navigation.service.d.ts +1 -1
  59. package/lib/sidenav/sidenav-footer.directive.d.ts +1 -1
  60. package/lib/sidenav/sidenav-header.directive.d.ts +1 -1
  61. package/lib/sidenav/sidenav.component.d.ts +1 -1
  62. package/lib/sidenav/version/version.component.d.ts +3 -3
  63. package/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.d.ts +3 -5
  64. package/lib/types.d.ts +3 -2
  65. package/lib/window-container-sidenav/window-container-sidenav.component.d.ts +2 -2
  66. package/package.json +90 -67
  67. package/theme.css +1 -0
  68. package/collection.json +0 -10
  69. package/esm2022/lib/footer/footer.component.module.mjs +0 -30
  70. package/esm2022/lib/header/apps-button/apps-button.component.module.mjs +0 -46
  71. package/esm2022/lib/header/header.component.module.mjs +0 -70
  72. package/esm2022/lib/header/language-selector/language-selector.component.module.mjs +0 -30
  73. package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.module.mjs +0 -26
  74. package/esm2022/lib/header/reset-button/reset-button.component.module.mjs +0 -26
  75. package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.module.mjs +0 -30
  76. package/esm2022/lib/header/sign-out/sign-out.component.module.mjs +0 -30
  77. package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.module.mjs +0 -38
  78. package/esm2022/lib/layout/layout.component.module.mjs +0 -70
  79. package/esm2022/lib/navigation/navigation.component.module.mjs +0 -71
  80. package/esm2022/lib/navigation/replace-router-paths.pipe.mjs +0 -36
  81. package/esm2022/lib/sidenav/sidenav.component.module.mjs +0 -44
  82. package/esm2022/lib/sidenav/version/version.component.module.mjs +0 -26
  83. package/esm2022/lib/sidenav-content/sidenav-content.component.mjs +0 -46
  84. package/esm2022/lib/sidenav-content/sidenav-content.component.module.mjs +0 -26
  85. package/esm2022/lib/sidenav-content/sidenav-content.component.service.mjs +0 -37
  86. package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.module.mjs +0 -30
  87. package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.module.mjs +0 -30
  88. package/lib/footer/footer.component.module.d.ts +0 -10
  89. package/lib/header/apps-button/apps-button.component.module.d.ts +0 -14
  90. package/lib/header/header.component.module.d.ts +0 -20
  91. package/lib/header/language-selector/language-selector.component.module.d.ts +0 -10
  92. package/lib/header/navigation-progress-bar/navigation-progress-bar.component.module.d.ts +0 -9
  93. package/lib/header/reset-button/reset-button.component.module.d.ts +0 -9
  94. package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.module.d.ts +0 -10
  95. package/lib/header/sign-out/sign-out.component.module.d.ts +0 -10
  96. package/lib/header/user-profile-icon/user-profile-icon.component.module.d.ts +0 -12
  97. package/lib/layout/layout.component.module.d.ts +0 -20
  98. package/lib/navigation/navigation.component.module.d.ts +0 -19
  99. package/lib/navigation/replace-router-paths.pipe.d.ts +0 -16
  100. package/lib/sidenav/sidenav.component.module.d.ts +0 -15
  101. package/lib/sidenav/version/version.component.module.d.ts +0 -9
  102. package/lib/sidenav-content/sidenav-content.component.d.ts +0 -12
  103. package/lib/sidenav-content/sidenav-content.component.module.d.ts +0 -9
  104. package/lib/sidenav-content/sidenav-content.component.service.d.ts +0 -15
  105. package/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.module.d.ts +0 -10
  106. package/lib/window-container-sidenav/window-container-sidenav.component.module.d.ts +0 -10
  107. package/migration.json +0 -4
  108. package/src/schematics/ng-add/index.d.ts +0 -2
  109. package/src/schematics/ng-add/index.js +0 -8
  110. package/src/schematics/ng-add/index.js.map +0 -1
  111. package/src/schematics/ng-add/schema.json +0 -7
package/CHANGELOG.md ADDED
@@ -0,0 +1,384 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [16.0.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.10...@rxap/layout@16.0.0-dev.11) (2023-08-06)
7
+
8
+ ### Bug Fixes
9
+
10
+ - remove @Required decorator ([8df4bf3](https://gitlab.com/rxap/packages/commit/8df4bf33d4a9929f5bc65f8973963fbe1d7ce193))
11
+
12
+ # [16.0.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.9...@rxap/layout@16.0.0-dev.10) (2023-08-04)
13
+
14
+ ### Bug Fixes
15
+
16
+ - add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
17
+
18
+ # [16.0.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.8...@rxap/layout@16.0.0-dev.9) (2023-08-03)
19
+
20
+ **Note:** Version bump only for package @rxap/layout
21
+
22
+ # [16.0.0-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.7...@rxap/layout@16.0.0-dev.8) (2023-08-03)
23
+
24
+ ### Bug Fixes
25
+
26
+ - add browser-tailwind as imp dep if project has tailwind configuration ([6ea13c5](https://gitlab.com/rxap/packages/commit/6ea13c5f9b4e652436bf1da879b564d1ed7b8061))
27
+ - ensure min padding for navigation items ([2667fd7](https://gitlab.com/rxap/packages/commit/2667fd785e891e6145acd9c68918a9deb270aaf1))
28
+
29
+ # [16.0.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.6...@rxap/layout@16.0.0-dev.7) (2023-08-01)
30
+
31
+ ### Bug Fixes
32
+
33
+ - generate readme with peer dependencies to install ([e7039bb](https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb))
34
+ - use tailwind to create a bundled theme.css ([bfda0dc](https://gitlab.com/rxap/packages/commit/bfda0dc14c6d46f374e81871ab18307dc9f6d9b4))
35
+
36
+ # 16.0.0-dev.6 (2023-08-01)
37
+
38
+ ### Bug Fixes
39
+
40
+ - resolve circular dependency between NavigationItemComponent and NavigationComponent ([cc0eece](https://gitlab.com/rxap/packages/commit/cc0eece415c86614f1cb29e973649daa4f9b1547))
41
+ - restructure and merge mono repos packages, schematics, plugins and nest ([a057d77](https://gitlab.com/rxap/packages/commit/a057d77ca2acf9426a03a497da8532f8a2fe2c86))
42
+ - update package dependency versions ([45bd022](https://gitlab.com/rxap/packages/commit/45bd022d755c0c11f7d0bcc76d26b39928007941))
43
+
44
+ # [16.0.0-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.4...@rxap/layout@16.0.0-dev.5) (2023-07-20)
45
+
46
+ ### Bug Fixes
47
+
48
+ - resolve circular dependency between NavigationItemComponent and NavigationComponent ([3e97a5d](https://gitlab.com/rxap/packages/commit/3e97a5d18c34286198fedb9024d6e91fa1910da3))
49
+
50
+ # [16.0.0-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.3...@rxap/layout@16.0.0-dev.4) (2023-07-10)
51
+
52
+ ### Bug Fixes
53
+
54
+ - update package dependency versions ([8479f5c](https://gitlab.com/rxap/packages/commit/8479f5c405a885cc0f300cec6156584e4c65d59c))
55
+
56
+ # [16.0.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.2...@rxap/layout@16.0.0-dev.3) (2023-07-10)
57
+
58
+ ### Bug Fixes
59
+
60
+ - restructure and merge mono repos packages, schematics, plugins and nest ([653b4cd](https://gitlab.com/rxap/packages/commit/653b4cd39fc92d322df9b3959651fea0aa6079da))
61
+
62
+ # [16.0.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.1...@rxap/layout@16.0.0-dev.2) (2023-05-31)
63
+
64
+ **Note:** Version bump only for package @rxap/layout
65
+
66
+ # [16.0.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.0...@rxap/layout@16.0.0-dev.1) (2023-05-18)
67
+
68
+ ### Bug Fixes
69
+
70
+ - update rxap packagedependencies ([6e12567](https://gitlab.com/rxap/packages/commit/6e12567c05ee3c504da5079cb393660f2ab4cd30))
71
+
72
+ # [16.0.0-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@15.0.0...@rxap/layout@16.0.0-dev.0) (2023-05-18)
73
+
74
+ ### chore
75
+
76
+ - upgrade to nrwl 16.x.x ([12dd87e](https://gitlab.com/rxap/packages/commit/12dd87ef38d465c8af33cd26f7d5d7714bf7c392))
77
+
78
+ ### BREAKING CHANGES
79
+
80
+ - upgrade nrwl 16.x.x
81
+
82
+ # [15.0.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@14.0.3...@rxap/layout@15.0.0) (2023-05-17)
83
+
84
+ ### chore
85
+
86
+ - upgrade to nrwl 15.x.x ([ad95577](https://gitlab.com/rxap/packages/commit/ad95577538adc5cd134cde8d1ff3b8fad52c9c2b))
87
+
88
+ ### BREAKING CHANGES
89
+
90
+ - upgrade nrwl 15.x.x
91
+
92
+ ## [14.0.3](https://gitlab.com/rxap/packages/compare/@rxap/layout@14.0.2...@rxap/layout@14.0.3) (2022-12-14)
93
+
94
+ **Note:** Version bump only for package @rxap/layout
95
+
96
+ ## [14.0.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@14.0.1...@rxap/layout@14.0.2) (2022-12-13)
97
+
98
+ **Note:** Version bump only for package @rxap/layout
99
+
100
+ ## [14.0.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@14.0.0...@rxap/layout@14.0.1) (2022-10-31)
101
+
102
+ ### Bug Fixes
103
+
104
+ - remove i18n specific ids ([21ef36d](https://gitlab.com/rxap/packages/commit/21ef36dfeaaef4e12f12dd21cdb86f6fdf8ff25a))
105
+
106
+ # [14.0.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@13.0.0...@rxap/layout@14.0.0) (2022-09-16)
107
+
108
+ ### chore
109
+
110
+ - upgrade to 14.x.x ([66f0719](https://gitlab.com/rxap/packages/commit/66f0719ecac1378ca6f3edbf670de8de2fc33401))
111
+
112
+ ### BREAKING CHANGES
113
+
114
+ - upgrade to 14.x.x
115
+
116
+ # [13.0.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@13.0.0-next.3...@rxap/layout@13.0.0) (2022-09-11)
117
+
118
+ **Note:** Version bump only for package @rxap/layout
119
+
120
+ # [13.0.0-next.3](https://gitlab.com/rxap/packages/compare/@rxap/layout@13.0.0-next.2...@rxap/layout@13.0.0-next.3) (2022-03-29)
121
+
122
+ **Note:** Version bump only for package @rxap/layout
123
+
124
+ # [13.0.0-next.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@13.0.0-next.1...@rxap/layout@13.0.0-next.2) (2022-03-29)
125
+
126
+ **Note:** Version bump only for package @rxap/layout
127
+
128
+ # [13.0.0-next.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.2.3...@rxap/layout@13.0.0-next.1) (2022-03-17)
129
+
130
+ ### Build System
131
+
132
+ - upgrade to nrwl/angular13.x.x ([f8920e7](https://gitlab.com/rxap/packages/commit/f8920e7dde7bd2d4b4efac2b7097543d51482f81))
133
+
134
+ ### BREAKING CHANGES
135
+
136
+ - update the core nrwl/angular packages to 13.x.x
137
+
138
+ Signed-off-by: Merzough Münker <mmuenker@digitaix.com>
139
+
140
+ ## [12.2.3](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.2.2...@rxap/layout@12.2.3) (2022-02-24)
141
+
142
+ ### Bug Fixes
143
+
144
+ - **navigation:** expose replace routerpipe ([3a2a238](https://gitlab.com/rxap/packages/commit/3a2a2380766bb4889e06bf5e7160829f67d0ef4b))
145
+
146
+ # [13.0.0-next.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.2.2...@rxap/layout@13.0.0-next.0) (2022-02-19)
147
+
148
+ ### Build System
149
+
150
+ - upgrade to nrwl/angular13.x.x ([f8920e7](https://gitlab.com/rxap/packages/commit/f8920e7dde7bd2d4b4efac2b7097543d51482f81))
151
+
152
+ ### BREAKING CHANGES
153
+
154
+ - update the core nrwl/angular packages to 13.x.x
155
+
156
+ Signed-off-by: Merzough Münker <mmuenker@digitaix.com>
157
+
158
+ ## [12.2.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.2.1...@rxap/layout@12.2.2) (2022-01-28)
159
+
160
+ ### Bug Fixes
161
+
162
+ - **navigation:** only check children status if childrenexists ([8f1d007](https://gitlab.com/rxap/packages/commit/8f1d007549985e7205450ae356d84067ff942783))
163
+
164
+ ## [12.2.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.2.0...@rxap/layout@12.2.1) (2022-01-28)
165
+
166
+ ### Bug Fixes
167
+
168
+ - **navigation:** support custom navigation itemproperties ([a085d57](https://gitlab.com/rxap/packages/commit/a085d577edd2d4a0ba4ea60ab73672b59eeaaace))
169
+
170
+ # [12.2.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.2.0-next.0...@rxap/layout@12.2.0) (2021-09-03)
171
+
172
+ **Note:** Version bump only for package @rxap/layout
173
+
174
+ # [12.2.0-next.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.1.0...@rxap/layout@12.2.0-next.0) (2021-08-11)
175
+
176
+ ### Bug Fixes
177
+
178
+ - default collapse sidenav ([346be5d](https://gitlab.com/rxap/packages/commit/346be5d3470d1200f2b44bd6443681c4fa3d83f9))
179
+
180
+ ### Features
181
+
182
+ - add tooltip for collapsed navigationitems ([0a5c87b](https://gitlab.com/rxap/packages/commit/0a5c87b6d35b206def6ce898e4070816a46c820b))
183
+
184
+ # [12.1.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.1.0-next.1...@rxap/layout@12.1.0) (2021-07-22)
185
+
186
+ **Note:** Version bump only for package @rxap/layout
187
+
188
+ # [12.1.0-next.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.1.0-next.0...@rxap/layout@12.1.0-next.1) (2021-07-21)
189
+
190
+ ### Features
191
+
192
+ - navigate to root after signout ([10a64b6](https://gitlab.com/rxap/packages/commit/10a64b681fbc5a1932efb75b828cc4fe45aa016f))
193
+
194
+ # [12.1.0-next.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.11-next.0...@rxap/layout@12.1.0-next.0) (2021-07-21)
195
+
196
+ ### Features
197
+
198
+ - navigate to root after signout ([a98e467](https://gitlab.com/rxap/packages/commit/a98e46700f22da6232471b5521e1649dc9fc37c3))
199
+
200
+ ## [12.0.11-alpha.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.11-next.0...@rxap/layout@12.0.11-alpha.0) (2021-07-20)
201
+
202
+ **Note:** Version bump only for package @rxap/layout
203
+
204
+ ## [12.0.11-next.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.10...@rxap/layout@12.0.11-next.0) (2021-07-15)
205
+
206
+ ### Bug Fixes
207
+
208
+ - set default logo width to192px ([cc1e4c2](https://gitlab.com/rxap/packages/commit/cc1e4c2ca54db76a206928a70dea4029a1c10a77))
209
+
210
+ ## [12.0.10](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.9...@rxap/layout@12.0.10) (2021-07-12)
211
+
212
+ ### Bug Fixes
213
+
214
+ - **layout:** fix missing modetype ([cf1649a](https://gitlab.com/rxap/packages/commit/cf1649a5baaaed0435991296377cdecd207bc623))
215
+
216
+ ## [12.0.9](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.9-next.0...@rxap/layout@12.0.9) (2021-07-09)
217
+
218
+ **Note:** Version bump only for package @rxap/layout
219
+
220
+ ## [12.0.9-next.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.8...@rxap/layout@12.0.9-next.0) (2021-07-09)
221
+
222
+ ### Bug Fixes
223
+
224
+ - split into rxjs and reflect-metadata subpackages ([ab6e325](https://gitlab.com/rxap/packages/commit/ab6e32562dbed73752165f3568624f8d3417d7ee))
225
+
226
+ ## [12.0.8](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.8-next.0...@rxap/layout@12.0.8) (2021-07-09)
227
+
228
+ **Note:** Version bump only for package @rxap/layout
229
+
230
+ ## [12.0.8-next.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.7...@rxap/layout@12.0.8-next.0) (2021-06-29)
231
+
232
+ ### Bug Fixes
233
+
234
+ - collapse styling ([e9fe775](https://gitlab.com/rxap/packages/commit/e9fe775ea950af6cfbabe3e2eb2375c1f0f24832))
235
+
236
+ ## [12.0.7](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.6...@rxap/layout@12.0.7) (2021-06-24)
237
+
238
+ **Note:** Version bump only for package @rxap/layout
239
+
240
+ ## [12.0.6](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.5...@rxap/layout@12.0.6) (2021-06-23)
241
+
242
+ **Note:** Version bump only for package @rxap/layout
243
+
244
+ ## [12.0.5](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.4...@rxap/layout@12.0.5) (2021-06-23)
245
+
246
+ **Note:** Version bump only for package @rxap/layout
247
+
248
+ ## [12.0.4](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.3...@rxap/layout@12.0.4) (2021-06-14)
249
+
250
+ **Note:** Version bump only for package @rxap/layout
251
+
252
+ ## [12.0.3](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.2...@rxap/layout@12.0.3) (2021-06-09)
253
+
254
+ ### Bug Fixes
255
+
256
+ - remove ng-mockspeerDependency ([0940f5f](https://gitlab.com/rxap/packages/commit/0940f5f9a79d07c3ad82d7cf6ae17aeb28b23158))
257
+
258
+ ## [12.0.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.4.5...@rxap/layout@12.0.2) (2021-06-09)
259
+
260
+ ### Bug Fixes
261
+
262
+ - add readme generator ([aca8e49](https://gitlab.com/rxap/packages/commit/aca8e495f06d81edf14e56fdd1e6a3c2d7de4c50))
263
+
264
+ ## [12.0.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@12.0.0...@rxap/layout@12.0.1) (2021-05-24)
265
+
266
+ ### Bug Fixes
267
+
268
+ - add readme generator ([aca8e49](https://gitlab.com/rxap/packages/commit/aca8e495f06d81edf14e56fdd1e6a3c2d7de4c50))
269
+
270
+ # [12.0.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.4.4...@rxap/layout@12.0.0) (2021-05-24)
271
+
272
+ **Note:** Version bump only for package @rxap/layout
273
+
274
+ ## [11.4.4](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.4.3...@rxap/layout@11.4.4) (2021-05-04)
275
+
276
+ ### Bug Fixes
277
+
278
+ - add missing i18n tag ([5139adb](https://gitlab.com/rxap/packages/commit/5139adb1f4ee0534987f9b66352ef0a4530e7db0))
279
+
280
+ ## [11.4.3](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.4.2...@rxap/layout@11.4.3) (2021-04-30)
281
+
282
+ ### Bug Fixes
283
+
284
+ - **schematics:** update module toesnext ([d1e2cd2](https://gitlab.com/rxap/packages/commit/d1e2cd252f3866471935131187b3acaefe2cca82))
285
+ - **schematics:** update to general schematicstsconfig ([83e5f9a](https://gitlab.com/rxap/packages/commit/83e5f9a0cf1810686a503425d87a5e4ae30b8c84))
286
+
287
+ ## [11.4.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.4.1...@rxap/layout@11.4.2) (2021-04-28)
288
+
289
+ ### Bug Fixes
290
+
291
+ - **navigation-item:** remove iconpadding ([354cce1](https://gitlab.com/rxap/packages/commit/354cce1a033155ba1d17e6a2de01f9ba53b26ca3))
292
+
293
+ ## [11.4.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.4.0...@rxap/layout@11.4.1) (2021-04-21)
294
+
295
+ ### Bug Fixes
296
+
297
+ - trigger auto redirectmanuel ([849e28a](https://gitlab.com/rxap/packages/commit/849e28a5ef6a7fa49a8f81903337517c9331d24a))
298
+
299
+ # [11.4.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.3.1...@rxap/layout@11.4.0) (2021-04-21)
300
+
301
+ ### Features
302
+
303
+ - add language selector ([4204cd4](https://gitlab.com/rxap/packages/commit/4204cd4437520ffebdabc42fd8c8000402c7ff47))
304
+
305
+ ## [11.3.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.3.0...@rxap/layout@11.3.1) (2021-04-21)
306
+
307
+ ### Bug Fixes
308
+
309
+ - suppressed href action ([a7874fb](https://gitlab.com/rxap/packages/commit/a7874fbf06cc85d7ccb42787d06883f016c9b8ba))
310
+
311
+ # [11.3.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.2.2...@rxap/layout@11.3.0) (2021-04-21)
312
+
313
+ ### Features
314
+
315
+ - add apps button concept ([be394b0](https://gitlab.com/rxap/packages/commit/be394b0bb4df0ef75f5a641943188b4b6d24ea2d))
316
+
317
+ ## [11.2.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.2.1...@rxap/layout@11.2.2) (2021-03-19)
318
+
319
+ ### Bug Fixes
320
+
321
+ - update peer dependencies ([954fde4](https://gitlab.com/rxap/packages/commit/954fde47836ff0c1f25a77c33ff871ddc7685b6c))
322
+
323
+ ## [11.2.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.2.0...@rxap/layout@11.2.1) (2021-03-19)
324
+
325
+ ### Bug Fixes
326
+
327
+ - update peer dependencies ([dd22b0c](https://gitlab.com/rxap/packages/commit/dd22b0ce053bc266c7aea659a2faf3be39f424e7))
328
+
329
+ # [11.2.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.1.1...@rxap/layout@11.2.0) (2021-03-19)
330
+
331
+ ### Bug Fixes
332
+
333
+ - update peer dependencies ([2eeb7eb](https://gitlab.com/rxap/packages/commit/2eeb7eb85eedd6d610e855dc1724c7153cf01fd0))
334
+ - update peer dependencies ([c7d1267](https://gitlab.com/rxap/packages/commit/c7d12671f3efc198985cddee92caa2558e74b023))
335
+
336
+ ### Features
337
+
338
+ - mv the material directives to the packagerxap/material-directives ([d54c5fe](https://gitlab.com/rxap/packages/commit/d54c5feaecf49f84b64f7ff327eb3496b00122b6))
339
+
340
+ ## [11.1.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.1.0...@rxap/layout@11.1.1) (2021-03-09)
341
+
342
+ **Note:** Version bump only for package @rxap/layout
343
+
344
+ # [11.1.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.0.4...@rxap/layout@11.1.0) (2021-03-02)
345
+
346
+ ### Features
347
+
348
+ - **navigation:** add status providersupport ([1dba44a](https://gitlab.com/rxap/packages/commit/1dba44a5efe7d8a9154ef542e3a2424e9d33b5dd))
349
+
350
+ ## [11.0.4](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.0.3...@rxap/layout@11.0.4) (2021-02-04)
351
+
352
+ **Note:** Version bump only for package @rxap/layout
353
+
354
+ ## [11.0.3](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.0.2...@rxap/layout@11.0.3) (2021-01-15)
355
+
356
+ **Note:** Version bump only for package @rxap/layout
357
+
358
+ ## [11.0.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.0.1...@rxap/layout@11.0.2) (2021-01-12)
359
+
360
+ **Note:** Version bump only for package @rxap/layout
361
+
362
+ ## [11.0.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@11.0.0...@rxap/layout@11.0.1) (2021-01-05)
363
+
364
+ **Note:** Version bump only for package @rxap/layout
365
+
366
+ # [11.0.0](https://gitlab.com/rxap/packages/compare/@rxap/layout@10.0.0...@rxap/layout@11.0.0) (2021-01-03)
367
+
368
+ **Note:** Version bump only for package @rxap/layout
369
+
370
+ # 10.0.0 (2021-01-03)
371
+
372
+ ### Bug Fixes
373
+
374
+ - custom property keygeneration ([b6e6d23](https://gitlab.com/rxap/packages/commit/b6e6d23215f0b35e0de2d35003b186a3d435b8e4))
375
+ - **SidenavContentComponentService:** update footer rowcount ([1d2383c](https://gitlab.com/rxap/packages/commit/1d2383c44ac3d9148a54ff21a2e8da108124540c))
376
+
377
+ ### Features
378
+
379
+ - **layout:** add collapse sidenavigation ([cb2082f](https://gitlab.com/rxap/packages/commit/cb2082fd44cc4a343cd09149609cb3bc0b13ab52))
380
+ - **layout:** add collapse sidenavigation ([069a66b](https://gitlab.com/rxap/packages/commit/069a66b0929e1198224552197e597c5abca0c072))
381
+ - **layout:** add collapse side navigationbutton ([2873ec4](https://gitlab.com/rxap/packages/commit/2873ec402ead3f360282adf8d07b197dbf5733da))
382
+ - add FooterDirective ([3051ba6](https://gitlab.com/rxap/packages/commit/3051ba6bc60d92e58909b099b9fdbf4170d569c0))
383
+ - support for custom root navigation and collapsedclasses ([95d3e46](https://gitlab.com/rxap/packages/commit/95d3e46890ae453bb1068716239dc19d71387717))
384
+ - support for the new footer serviceconcept ([4a175e8](https://gitlab.com/rxap/packages/commit/4a175e885b43a1cb2ac4ac96d05c351bf5307337))