@rxap/layout 16.0.0-dev.3 → 16.0.0-dev.30

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 (53) hide show
  1. package/CHANGELOG.md +167 -0
  2. package/LICENSE +621 -0
  3. package/LICENSE.md +621 -0
  4. package/README.md +1 -1
  5. package/esm2022/index.mjs +2 -6
  6. package/esm2022/lib/app-url.service.mjs +66 -0
  7. package/esm2022/lib/header/apps-button/apps-button.component.mjs +29 -46
  8. package/esm2022/lib/header/header.component.mjs +48 -52
  9. package/esm2022/lib/header/language-selector/language-selector.component.mjs +13 -72
  10. package/esm2022/lib/header/navigation-progress-bar/navigation-progress-bar.component.mjs +6 -2
  11. package/esm2022/lib/header/reset-button/reset-button.component.mjs +3 -3
  12. package/esm2022/lib/header/settings-button/settings-button.component.mjs +52 -0
  13. package/esm2022/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.mjs +20 -18
  14. package/esm2022/lib/header/sign-out/sign-out.component.mjs +14 -18
  15. package/esm2022/lib/header/user-profile-icon/user-profile-icon.component.mjs +31 -28
  16. package/esm2022/lib/layout/layout.component.mjs +50 -23
  17. package/esm2022/lib/layout/layout.component.service.mjs +50 -15
  18. package/esm2022/lib/navigation/navigation-item/navigation-item.component.mjs +50 -102
  19. package/esm2022/lib/navigation/navigation.component.mjs +26 -31
  20. package/esm2022/lib/sidenav/sidenav.component.mjs +3 -3
  21. package/esm2022/lib/sidenav/version/version.component.mjs +2 -8
  22. package/esm2022/lib/toggle-window-sidenav-button/toggle-window-sidenav-button.component.mjs +3 -3
  23. package/esm2022/lib/types.mjs +1 -1
  24. package/esm2022/lib/window-container-sidenav/window-container-sidenav.component.mjs +6 -7
  25. package/fesm2022/rxap-layout.mjs +648 -699
  26. package/fesm2022/rxap-layout.mjs.map +1 -1
  27. package/index.d.ts +1 -3
  28. package/lib/app-url.service.d.ts +26 -0
  29. package/lib/header/apps-button/apps-button.component.d.ts +12 -20
  30. package/lib/header/header.component.d.ts +10 -13
  31. package/lib/header/language-selector/language-selector.component.d.ts +1 -16
  32. package/lib/header/settings-button/settings-button.component.d.ts +22 -0
  33. package/lib/header/sidenav-toggle-button/sidenav-toggle-button.component.d.ts +6 -3
  34. package/lib/header/sign-out/sign-out.component.d.ts +4 -4
  35. package/lib/header/user-profile-icon/user-profile-icon.component.d.ts +13 -9
  36. package/lib/layout/layout.component.d.ts +16 -4
  37. package/lib/layout/layout.component.service.d.ts +10 -5
  38. package/lib/navigation/navigation-item/navigation-item.component.d.ts +10 -17
  39. package/lib/navigation/navigation.component.d.ts +5 -5
  40. package/lib/types.d.ts +3 -2
  41. package/package.json +95 -47
  42. package/theme.css +1 -0
  43. package/esm2022/lib/layout/layout.component.module.mjs +0 -30
  44. package/esm2022/lib/sidenav-content/sidenav-content.component.mjs +0 -27
  45. package/esm2022/lib/sidenav-content/sidenav-content.component.service.mjs +0 -36
  46. package/lib/layout/layout.component.module.d.ts +0 -10
  47. package/lib/sidenav-content/sidenav-content.component.d.ts +0 -10
  48. package/lib/sidenav-content/sidenav-content.component.service.d.ts +0 -15
  49. package/src/lib/header/apps-button/_apps-button.component.theme.scss +0 -45
  50. package/src/lib/navigation/_navigation.component.theme.scss +0 -33
  51. package/src/lib/navigation/navigation-item/_navigation-item.component.theme.scss +0 -45
  52. package/src/lib/sidenav/_sidenav.component.theme.scss +0 -65
  53. package/src/lib/toggle-window-sidenav-button/_toggle-window-sidenav-button.component.theme.scss +0 -15
package/CHANGELOG.md CHANGED
@@ -3,6 +3,173 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [16.0.0-dev.30](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.29...@rxap/layout@16.0.0-dev.30) (2023-09-21)
7
+
8
+ ### Bug Fixes
9
+
10
+ - change overscroll-contain to overscroll-auto ([0a8db9f](https://gitlab.com/rxap/packages/commit/0a8db9ff3d131b98d207ad40aef411927ebdc837))
11
+
12
+ # [16.0.0-dev.29](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.28...@rxap/layout@16.0.0-dev.29) (2023-09-21)
13
+
14
+ ### Bug Fixes
15
+
16
+ - close sidenav if change to collapsed mode ([7a35660](https://gitlab.com/rxap/packages/commit/7a356602e2228360f85bae8cb9346e3228e0fe29))
17
+ - only add margin to sidenav content if in collapsed mode ([c72febe](https://gitlab.com/rxap/packages/commit/c72febe141f8c11f126f99b3ef23b753599a5a47))
18
+
19
+ # [16.0.0-dev.28](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.27...@rxap/layout@16.0.0-dev.28) (2023-09-21)
20
+
21
+ ### Bug Fixes
22
+
23
+ - move status infiltrator to layout component ([1d1f69b](https://gitlab.com/rxap/packages/commit/1d1f69b22ae171a9d69b7d6d9e3f4e9f2e0849ee))
24
+ - support advanced settings for layout sidenav ([65ff765](https://gitlab.com/rxap/packages/commit/65ff765b66f799de5089c954d34532bc9b4a7e77))
25
+
26
+ # [16.0.0-dev.27](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.26...@rxap/layout@16.0.0-dev.27) (2023-09-19)
27
+
28
+ ### Bug Fixes
29
+
30
+ - refactor user service use ([cf553c9](https://gitlab.com/rxap/packages/commit/cf553c96765bfbc0ded49c6611e4d57903e55647))
31
+ - use authorization service directly ([35ec333](https://gitlab.com/rxap/packages/commit/35ec333dc0f2959302f9fa74160de8a8d1437a7f))
32
+
33
+ ### Features
34
+
35
+ - add language utility services ([96e6785](https://gitlab.com/rxap/packages/commit/96e67855bfcb27f274393526d1ab81f6d7c2f24a))
36
+
37
+ # [16.0.0-dev.26](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.25...@rxap/layout@16.0.0-dev.26) (2023-09-18)
38
+
39
+ ### Bug Fixes
40
+
41
+ - use relative path as default ([42f1a8e](https://gitlab.com/rxap/packages/commit/42f1a8e68794926635c33371dabded7a1bcc8682))
42
+
43
+ # [16.0.0-dev.25](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.24...@rxap/layout@16.0.0-dev.25) (2023-09-17)
44
+
45
+ ### Features
46
+
47
+ - add changelog button ([ccd3b2b](https://gitlab.com/rxap/packages/commit/ccd3b2b4467ed82cc1a5efdcdf948ef83537de06))
48
+
49
+ # [16.0.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.23...@rxap/layout@16.0.0-dev.24) (2023-09-14)
50
+
51
+ ### Bug Fixes
52
+
53
+ - remove css class usage of container ([9a1969f](https://gitlab.com/rxap/packages/commit/9a1969f8748a08d6d948f9e7d4f4b511c1349352))
54
+
55
+ # [16.0.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.22...@rxap/layout@16.0.0-dev.23) (2023-09-12)
56
+
57
+ ### Bug Fixes
58
+
59
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
60
+
61
+ # [16.0.0-dev.22](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.21...@rxap/layout@16.0.0-dev.22) (2023-09-12)
62
+
63
+ **Note:** Version bump only for package @rxap/layout
64
+
65
+ # [16.0.0-dev.21](https://gitlab.com/rxap/packages/compare/@rxap/layout@16.0.0-dev.20...@rxap/layout@16.0.0-dev.21) (2023-09-07)
66
+
67
+ ### Bug Fixes
68
+
69
+ - ensure the username is always fully visible ([48fc3f5](https://gitlab.com/rxap/packages/commit/48fc3f5f4906485961351b7e13d44a77b6aa37b8))
70
+
71
+ # [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)
72
+
73
+ **Note:** Version bump only for package @rxap/layout
74
+
75
+ # [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)
76
+
77
+ **Note:** Version bump only for package @rxap/layout
78
+
79
+ # [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)
80
+
81
+ **Note:** Version bump only for package @rxap/layout
82
+
83
+ # [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)
84
+
85
+ ### Bug Fixes
86
+
87
+ - use mdi icons ([abc10a1](https://gitlab.com/rxap/packages/commit/abc10a146c502bebda62568a9627ca2771142d2c))
88
+
89
+ ### Features
90
+
91
+ - load icons on layout component creation ([0143fc3](https://gitlab.com/rxap/packages/commit/0143fc37d5eb9da95e87cd28edfcd1cb4734dc1a))
92
+
93
+ # [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)
94
+
95
+ ### Features
96
+
97
+ - use status indicator component ([a95c8ad](https://gitlab.com/rxap/packages/commit/a95c8add48196bbec87904e41b26b664c7e14b1c))
98
+
99
+ # [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)
100
+
101
+ ### Bug Fixes
102
+
103
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
104
+
105
+ # [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)
106
+
107
+ ### Features
108
+
109
+ - support custom menu items for the layout header component ([97ce8d0](https://gitlab.com/rxap/packages/commit/97ce8d0ea58cff709c5e8516733be866b89b3999))
110
+
111
+ # [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)
112
+
113
+ ### Bug Fixes
114
+
115
+ - set default layout header color to undefined ([21b6199](https://gitlab.com/rxap/packages/commit/21b6199f047f2345de3e716a038306b2303e6dc6))
116
+
117
+ # [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)
118
+
119
+ ### Bug Fixes
120
+
121
+ - disable i18n check in development mode ([69f92d3](https://gitlab.com/rxap/packages/commit/69f92d3f66599ac8f07f72b4a7a4331e486d965a))
122
+
123
+ # [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)
124
+
125
+ ### Bug Fixes
126
+
127
+ - remove @Required decorator ([8df4bf3](https://gitlab.com/rxap/packages/commit/8df4bf33d4a9929f5bc65f8973963fbe1d7ce193))
128
+
129
+ # [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)
130
+
131
+ ### Bug Fixes
132
+
133
+ - add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
134
+
135
+ # [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)
136
+
137
+ **Note:** Version bump only for package @rxap/layout
138
+
139
+ # [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)
140
+
141
+ ### Bug Fixes
142
+
143
+ - add browser-tailwind as imp dep if project has tailwind configuration ([6ea13c5](https://gitlab.com/rxap/packages/commit/6ea13c5f9b4e652436bf1da879b564d1ed7b8061))
144
+ - ensure min padding for navigation items ([2667fd7](https://gitlab.com/rxap/packages/commit/2667fd785e891e6145acd9c68918a9deb270aaf1))
145
+
146
+ # [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)
147
+
148
+ ### Bug Fixes
149
+
150
+ - generate readme with peer dependencies to install ([e7039bb](https://gitlab.com/rxap/packages/commit/e7039bb5e86ffeadfe7cc92d5fc71d32f8efb4fb))
151
+ - use tailwind to create a bundled theme.css ([bfda0dc](https://gitlab.com/rxap/packages/commit/bfda0dc14c6d46f374e81871ab18307dc9f6d9b4))
152
+
153
+ # 16.0.0-dev.6 (2023-08-01)
154
+
155
+ ### Bug Fixes
156
+
157
+ - resolve circular dependency between NavigationItemComponent and NavigationComponent ([cc0eece](https://gitlab.com/rxap/packages/commit/cc0eece415c86614f1cb29e973649daa4f9b1547))
158
+ - restructure and merge mono repos packages, schematics, plugins and nest ([a057d77](https://gitlab.com/rxap/packages/commit/a057d77ca2acf9426a03a497da8532f8a2fe2c86))
159
+ - update package dependency versions ([45bd022](https://gitlab.com/rxap/packages/commit/45bd022d755c0c11f7d0bcc76d26b39928007941))
160
+
161
+ # [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)
162
+
163
+ ### Bug Fixes
164
+
165
+ - resolve circular dependency between NavigationItemComponent and NavigationComponent ([3e97a5d](https://gitlab.com/rxap/packages/commit/3e97a5d18c34286198fedb9024d6e91fa1910da3))
166
+
167
+ # [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)
168
+
169
+ ### Bug Fixes
170
+
171
+ - update package dependency versions ([8479f5c](https://gitlab.com/rxap/packages/commit/8479f5c405a885cc0f300cec6156584e4c65d59c))
172
+
6
173
  # [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)
7
174
 
8
175
  ### Bug Fixes