@rxap/config 18.1.1-dev.0 → 18.1.1-dev.2

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 (47) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +14 -1
  3. package/compodoc/changelog.html +9 -0
  4. package/compodoc/dependencies.html +4 -2
  5. package/compodoc/index.html +8 -1
  6. package/compodoc/injectables/ConfigService.html +3 -3
  7. package/compodoc/interfaces/AppsNavigationConfig.html +667 -0
  8. package/compodoc/interfaces/Config.html +415 -0
  9. package/compodoc/interfaces/LogoConfig.html +415 -0
  10. package/compodoc/interfaces/NavigationConfig.html +550 -0
  11. package/compodoc/interfaces/i18nConfig.html +370 -0
  12. package/compodoc/js/menu-wc.js +15 -0
  13. package/compodoc/js/menu-wc_es5.js +1 -1
  14. package/compodoc/js/search/search_index.js +2 -2
  15. package/compodoc/miscellaneous/functions.html +72 -1
  16. package/compodoc/miscellaneous/typealiases.html +21 -0
  17. package/compodoc/overview.html +1 -1
  18. package/compodoc/properties.html +1 -1
  19. package/docs/assets/navigation.js +1 -1
  20. package/docs/assets/search.js +1 -1
  21. package/docs/classes/ConfigLoaderService.html +2 -2
  22. package/docs/classes/ConfigService.html +6 -6
  23. package/docs/classes/ConfigTestingService.html +2 -2
  24. package/docs/documentation.json +1094 -272
  25. package/docs/functions/ProvideConfig.html +1 -1
  26. package/docs/index.html +11 -2
  27. package/docs/interfaces/AppsNavigationConfig.html +10 -0
  28. package/docs/interfaces/Config.html +4 -0
  29. package/docs/interfaces/ConfigLoadOptions.html +3 -3
  30. package/docs/interfaces/LogoConfig.html +4 -0
  31. package/docs/interfaces/NavigationConfig.html +7 -0
  32. package/docs/interfaces/i18nConfig.html +3 -0
  33. package/docs/modules.html +7 -1
  34. package/docs/types/AnySchema.html +1 -1
  35. package/docs/types/Join.html +1 -1
  36. package/docs/types/LanguagesConfig.html +1 -0
  37. package/docs/types/Leaves.html +1 -1
  38. package/docs/types/NoInferType.html +1 -1
  39. package/docs/types/Paths.html +1 -1
  40. package/docs/variables/RXAP_CONFIG.html +1 -1
  41. package/esm2022/index.mjs +2 -1
  42. package/esm2022/lib/config.mjs +2 -0
  43. package/fesm2022/rxap-config.mjs.map +1 -1
  44. package/index.d.ts +1 -0
  45. package/lib/config.d.ts +34 -0
  46. package/package.json +8 -6
  47. package/theme.css +1 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
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
+ ## [18.1.1-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.1...@rxap/config@18.1.1-dev.2) (2024-06-24)
7
+
8
+ ### Bug Fixes
9
+
10
+ - add config interface ([b541bea](https://gitlab.com/rxap/packages/commit/b541bea31d5f9af51c8f43512417fe591e9e3266))
11
+ - add config interface ([3208674](https://gitlab.com/rxap/packages/commit/320867427458f75a9cdade44f995c1bb5f1d2f1b))
12
+ - add config interface ([4fbed69](https://gitlab.com/rxap/packages/commit/4fbed69d9f8838cebf44caddb23b63a2906de0fa))
13
+
14
+ ## [18.1.1-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.0...@rxap/config@18.1.1-dev.1) (2024-06-21)
15
+
16
+ **Note:** Version bump only for package @rxap/config
17
+
6
18
  ## [18.1.1-dev.0](https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.0...@rxap/config@18.1.1-dev.0) (2024-06-20)
7
19
 
8
20
  **Note:** Version bump only for package @rxap/config
package/README.md CHANGED
@@ -9,6 +9,7 @@
9
9
  ![NPM](https://img.shields.io/npm/l/@rxap/config)
10
10
 
11
11
  - [Installation](#installation)
12
+ - [Generators](#generators)
12
13
 
13
14
  # Installation
14
15
 
@@ -18,5 +19,17 @@ yarn add @rxap/config
18
19
  ```
19
20
  **Install peer dependencies:**
20
21
  ```bash
21
- yarn add @angular/common@^18.0.1 @angular/core@^18.0.1 @rxap/environment@^18.0.2 @rxap/utilities@^16.2.3 rxjs@^7.8.1
22
+ yarn add @angular/common@^18.0.1 @angular/core@^18.0.1 @rxap/environment@^18.0.3-dev.1 @rxap/utilities@^16.2.4-dev.1 rxjs@^7.8.1
23
+ ```
24
+ **Execute the init generator:**
25
+ ```bash
26
+ yarn nx g @rxap/config:init
27
+ ```
28
+ # Generators
29
+
30
+ ## init
31
+ > Initialize the package in the workspace
32
+
33
+ ```bash
34
+ yarn nx g @rxap/config:init
22
35
  ```
@@ -85,6 +85,15 @@
85
85
  <h1>Change Log</h1>
86
86
  <p>All notable changes to this project will be documented in this file.
87
87
  See <a href="https://conventionalcommits.org">Conventional Commits</a> for commit guidelines.</p>
88
+ <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.1...@rxap/config@18.1.1-dev.2">18.1.1-dev.2</a> (2024-06-24)</h2>
89
+ <h3>Bug Fixes</h3>
90
+ <ul>
91
+ <li>add config interface (<a href="https://gitlab.com/rxap/packages/commit/b541bea31d5f9af51c8f43512417fe591e9e3266">b541bea</a>)</li>
92
+ <li>add config interface (<a href="https://gitlab.com/rxap/packages/commit/320867427458f75a9cdade44f995c1bb5f1d2f1b">3208674</a>)</li>
93
+ <li>add config interface (<a href="https://gitlab.com/rxap/packages/commit/4fbed69d9f8838cebf44caddb23b63a2906de0fa">4fbed69</a>)</li>
94
+ </ul>
95
+ <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.0...@rxap/config@18.1.1-dev.1">18.1.1-dev.1</a> (2024-06-21)</h2>
96
+ <p><strong>Note:</strong> Version bump only for package @rxap/config</p>
88
97
  <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.0...@rxap/config@18.1.1-dev.0">18.1.1-dev.0</a> (2024-06-20)</h2>
89
98
  <p><strong>Note:</strong> Version bump only for package @rxap/config</p>
90
99
  <h1><a href="https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.0-dev.0...@rxap/config@18.1.0">18.1.0</a> (2024-06-18)</h1>
@@ -100,6 +100,8 @@
100
100
  <li class="breadcrumb-item">Dependencies</li>
101
101
  </ol>
102
102
  <ul class="dependencies-list">
103
+ <li>
104
+ <b>@nx/devkit</b> : 19.3.0</li>
103
105
  <li>
104
106
  <b>tslib</b> : 2.6.2</li>
105
107
  </ul>
@@ -115,9 +117,9 @@
115
117
  <li>
116
118
  <b>@angular/core</b> : ^18.0.1</li>
117
119
  <li>
118
- <b>@rxap/environment</b> : ^18.0.2</li>
120
+ <b>@rxap/environment</b> : ^18.0.3-dev.1</li>
119
121
  <li>
120
- <b>@rxap/utilities</b> : ^16.2.3</li>
122
+ <b>@rxap/utilities</b> : ^16.2.4-dev.1</li>
121
123
  <li>
122
124
  <b>rxjs</b> : ^7.8.1</li>
123
125
  </ul>
@@ -94,11 +94,18 @@
94
94
  <img src="https://img.shields.io/npm/l/@rxap/config" alt="NPM" class="img-responsive"></p>
95
95
  <ul>
96
96
  <li><a href="#installation">Installation</a></li>
97
+ <li><a href="#generators">Generators</a></li>
97
98
  </ul>
98
99
  <h1>Installation</h1>
99
100
  <p><strong>Add the package to your workspace:</strong></p>
100
101
  <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn add &#64;rxap/config</code></pre></div><p><strong>Install peer dependencies:</strong></p>
101
- <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn add &#64;angular/common&#64;^18.0.1 &#64;angular/core&#64;^18.0.1 &#64;rxap/environment&#64;^18.0.2 &#64;rxap/utilities&#64;^16.2.3 rxjs&#64;^7.8.1 </code></pre></div>
102
+ <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn add &#64;angular/common&#64;^18.0.1 &#64;angular/core&#64;^18.0.1 &#64;rxap/environment&#64;^18.0.3-dev.1 &#64;rxap/utilities&#64;^16.2.4-dev.1 rxjs&#64;^7.8.1 </code></pre></div><p><strong>Execute the init generator:</strong></p>
103
+ <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn nx g &#64;rxap/config:init</code></pre></div><h1>Generators</h1>
104
+ <h2>init</h2>
105
+ <blockquote>
106
+ <p>Initialize the package in the workspace</p>
107
+ </blockquote>
108
+ <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn nx g &#64;rxap/config:init</code></pre></div>
102
109
 
103
110
 
104
111
 
@@ -1150,7 +1150,7 @@
1150
1150
  <tr>
1151
1151
  <td class="col-md-4">
1152
1152
  <span class="modifier-icon icon ion-ios-reset"></span>
1153
- <code>setLocalConfig(config: Config)</code>
1153
+ <code>setLocalConfig(config: <a href="../interfaces/Config.html" target="_self">Config</a>)</code>
1154
1154
  </td>
1155
1155
  </tr>
1156
1156
 
@@ -1181,7 +1181,7 @@
1181
1181
  <tr>
1182
1182
  <td>config</td>
1183
1183
  <td>
1184
- <code>Config</code>
1184
+ <code><a href="../interfaces/Config.html" target="_self" >Config</a></code>
1185
1185
  </td>
1186
1186
 
1187
1187
  <td>
@@ -1331,7 +1331,7 @@
1331
1331
  </tr>
1332
1332
  <tr>
1333
1333
  <td class="col-md-4">
1334
- <i>Type : </i> <code>Config</code>
1334
+ <i>Type : </i> <code><a href="../interfaces/Config.html" target="_self" >Config</a></code>
1335
1335
 
1336
1336
  </td>
1337
1337
  </tr>