@rxap/config 18.1.1-dev.3 → 18.1.1
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 +8 -0
- package/compodoc/changelog.html +4 -0
- package/compodoc/interfaces/AppsNavigationConfig.html +7 -1
- package/compodoc/interfaces/Config.html +1 -1
- package/compodoc/interfaces/LogoConfig.html +1 -1
- package/compodoc/interfaces/NavigationConfig.html +1 -1
- package/compodoc/interfaces/i18nConfig.html +1 -1
- package/compodoc/js/search/search_index.js +2 -2
- package/compodoc/properties.html +1 -1
- package/docs/classes/ConfigLoaderService.html +2 -2
- package/docs/classes/ConfigService.html +6 -6
- package/docs/classes/ConfigTestingService.html +2 -2
- package/docs/documentation.json +112 -110
- package/docs/functions/ProvideConfig.html +1 -1
- package/docs/interfaces/AppsNavigationConfig.html +3 -3
- package/docs/interfaces/Config.html +2 -2
- package/docs/interfaces/ConfigLoadOptions.html +3 -3
- package/docs/interfaces/LogoConfig.html +2 -2
- package/docs/interfaces/NavigationConfig.html +2 -2
- package/docs/interfaces/i18nConfig.html +2 -2
- package/docs/types/AnySchema.html +1 -1
- package/docs/types/Join.html +1 -1
- package/docs/types/LanguagesConfig.html +1 -1
- package/docs/types/Leaves.html +1 -1
- package/docs/types/NoInferType.html +1 -1
- package/docs/types/Paths.html +1 -1
- package/docs/variables/RXAP_CONFIG.html +1 -1
- package/esm2022/lib/config.mjs +1 -1
- package/lib/config.d.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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](https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.4...@rxap/config@18.1.1) (2024-06-28)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/config
|
|
9
|
+
|
|
10
|
+
## [18.1.1-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.3...@rxap/config@18.1.1-dev.4) (2024-06-25)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @rxap/config
|
|
13
|
+
|
|
6
14
|
## [18.1.1-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.2...@rxap/config@18.1.1-dev.3) (2024-06-25)
|
|
7
15
|
|
|
8
16
|
### Bug Fixes
|
package/compodoc/changelog.html
CHANGED
|
@@ -85,6 +85,10 @@
|
|
|
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.4...@rxap/config@18.1.1">18.1.1</a> (2024-06-28)</h2>
|
|
89
|
+
<p><strong>Note:</strong> Version bump only for package @rxap/config</p>
|
|
90
|
+
<h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.3...@rxap/config@18.1.1-dev.4">18.1.1-dev.4</a> (2024-06-25)</h2>
|
|
91
|
+
<p><strong>Note:</strong> Version bump only for package @rxap/config</p>
|
|
88
92
|
<h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/config@18.1.1-dev.2...@rxap/config@18.1.1-dev.3">18.1.1-dev.3</a> (2024-06-25)</h2>
|
|
89
93
|
<h3>Bug Fixes</h3>
|
|
90
94
|
<ul>
|
|
@@ -189,6 +189,7 @@
|
|
|
189
189
|
</a>
|
|
190
190
|
</li>
|
|
191
191
|
<li>
|
|
192
|
+
<span class="modifier">Optional</span>
|
|
192
193
|
<a href="#permissions"
|
|
193
194
|
>
|
|
194
195
|
permissions
|
|
@@ -501,6 +502,11 @@
|
|
|
501
502
|
</td>
|
|
502
503
|
</tr>
|
|
503
504
|
|
|
505
|
+
<tr>
|
|
506
|
+
<td class="col-md-4">
|
|
507
|
+
<i>Optional</i>
|
|
508
|
+
</td>
|
|
509
|
+
</tr>
|
|
504
510
|
|
|
505
511
|
|
|
506
512
|
|
|
@@ -599,7 +605,7 @@ export interface AppsNavigationConfig {
|
|
|
599
605
|
empty?: false;
|
|
600
606
|
hidden?: boolean;
|
|
601
607
|
id?: string;
|
|
602
|
-
permissions
|
|
608
|
+
permissions?: string[];
|
|
603
609
|
icon?: IconConfig;
|
|
604
610
|
}
|
|
605
611
|
|