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

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