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