@rxap/ngx-localize 19.0.1-dev.2 → 19.0.1-dev.5

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 (44) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +24 -25
  3. package/compodoc/changelog.html +6 -0
  4. package/compodoc/dependencies.html +3 -3
  5. package/compodoc/index.html +26 -17
  6. package/compodoc/js/search/search_index.js +2 -2
  7. package/compodoc/properties.html +4 -1
  8. package/docs/documentation.json +54 -176
  9. package/docs/html/assets/hierarchy.js +1 -0
  10. package/docs/{assets → html/assets}/highlight.css +13 -6
  11. package/docs/html/assets/icons.js +18 -0
  12. package/docs/html/assets/icons.svg +1 -0
  13. package/docs/{assets → html/assets}/main.js +5 -4
  14. package/docs/html/assets/navigation.js +1 -0
  15. package/docs/html/assets/search.js +1 -0
  16. package/docs/html/assets/style.css +1611 -0
  17. package/docs/html/classes/I18nService.html +5 -0
  18. package/docs/html/classes/LanguageSelectorService.html +7 -0
  19. package/docs/html/functions/LanguageInterceptor.html +1 -0
  20. package/docs/html/index.html +33 -0
  21. package/docs/html/modules.html +1 -0
  22. package/docs/markdown/README.md +37 -0
  23. package/docs/markdown/classes/I18nService.md +67 -0
  24. package/docs/markdown/classes/LanguageSelectorService.md +71 -0
  25. package/docs/markdown/functions/LanguageInterceptor.md +25 -0
  26. package/docs/markdown/globals.md +14 -0
  27. package/docs/wiki/Class.I18nService.md +63 -0
  28. package/docs/wiki/Class.LanguageSelectorService.md +67 -0
  29. package/docs/wiki/Function.LanguageInterceptor.md +21 -0
  30. package/docs/wiki/Home.md +33 -0
  31. package/docs/wiki/_Sidebar.md +10 -0
  32. package/docs/wiki/globals.md +10 -0
  33. package/package.json +21 -19
  34. package/docs/assets/icons.js +0 -15
  35. package/docs/assets/icons.svg +0 -1
  36. package/docs/assets/navigation.js +0 -1
  37. package/docs/assets/search.js +0 -1
  38. package/docs/assets/style.css +0 -1412
  39. package/docs/classes/I18nService.html +0 -7
  40. package/docs/classes/LanguageSelectorService.html +0 -9
  41. package/docs/functions/LanguageInterceptor.html +0 -1
  42. package/docs/index.html +0 -25
  43. package/docs/modules.html +0 -4
  44. /package/docs/{.nojekyll → html/.nojekyll} +0 -0
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
+ ## [19.0.1-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.4...@rxap/ngx-localize@19.0.1-dev.5) (2025-02-13)
7
+
8
+ **Note:** Version bump only for package @rxap/ngx-localize
9
+
10
+ ## [19.0.1-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.3...@rxap/ngx-localize@19.0.1-dev.4) (2025-02-10)
11
+
12
+ **Note:** Version bump only for package @rxap/ngx-localize
13
+
14
+ ## [19.0.1-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.2...@rxap/ngx-localize@19.0.1-dev.3) (2025-02-07)
15
+
16
+ **Note:** Version bump only for package @rxap/ngx-localize
17
+
6
18
  ## [19.0.1-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.1...@rxap/ngx-localize@19.0.1-dev.2) (2025-01-28)
7
19
 
8
20
  **Note:** Version bump only for package @rxap/ngx-localize
package/README.md CHANGED
@@ -1,34 +1,33 @@
1
- # @rxap/ngx-localize
1
+ This package provides internationalization (i18n) support for Angular applications, including services for language management, an HTTP interceptor for setting the `Accept-Language` header, and a language selector component. It allows you to set and manage the current language of your application, redirect users based on their language preference, and configure available languages. The package also includes an init generator to handle peer dependencies.
2
2
 
3
3
  [![npm version](https://img.shields.io/npm/v/@rxap/ngx-localize?style=flat-square)](https://www.npmjs.com/package/@rxap/ngx-localize)
4
- [![commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
5
- [![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
6
- ![Libraries.io dependency status for latest release, scoped npm package](https://img.shields.io/librariesio/release/npm/@rxap/ngx-localize)
4
+ [![commitizen
5
+ friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square)](https://commitizen.github.io/cz-cli/)
6
+ [![styled with
7
+ prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
8
+ ![Libraries.io dependency status for latest release, scoped npm
9
+ package](https://img.shields.io/librariesio/release/npm/@rxap/ngx-localize)
7
10
  ![npm](https://img.shields.io/npm/dm/@rxap/ngx-localize)
8
- ![NPM](https://img.shields.io/npm/l/@rxap/ngx-localize)
9
-
10
- - [Installation](#installation)
11
+ ![NPM](https://img.shields.io/npm/l/@rxap/ngx-localize) -
12
+ [Installation](#installation)
11
13
  - [Generators](#generators)
14
+ - [init](#init)
12
15
 
13
- # Installation
14
-
15
- **Add the package to your workspace:**
16
- ```bash
17
- yarn add @rxap/ngx-localize
18
- ```
19
- **Install peer dependencies:**
20
- ```bash
21
- yarn add @angular/common@^19.1.3 @angular/core@^19.1.3 @rxap/config@^19.0.1-dev.2 @rxap/ngx-user@^19.0.1-dev.2 rxjs@^7.8.1
22
- ```
23
- **Execute the init generator:**
24
- ```bash
25
- yarn nx g @rxap/ngx-localize:init
16
+ # Installation **Add the package to your workspace:** ```bash yarn add
17
+ @rxap/ngx-localize
26
18
  ```
19
+ **Install peer dependencies:** ```bash yarn add
20
+ @angular/common@^19.1.3 @angular/core@^19.1.3 @rxap/config@^19.0.1-dev.4 @rxap/ngx-user@^19.0.1-dev.4 rxjs@^7.8.1
21
+ ```
22
+ **Execute the init generator:** ```bash yarn nx g
23
+ @rxap/ngx-localize:init ```
27
24
  # Generators
28
25
 
29
- ## init
30
- > Initialize the package in the workspace
26
+ ##
27
+ init
28
+ >
29
+ Initialize the package in the workspace
31
30
 
32
- ```bash
33
- yarn nx g @rxap/ngx-localize:init
34
- ```
31
+ ```bash nx g
32
+ @rxap/ngx-localize:init
33
+ ```
@@ -85,6 +85,12 @@
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/ngx-localize@19.0.1-dev.4...@rxap/ngx-localize@19.0.1-dev.5">19.0.1-dev.5</a> (2025-02-13)</h2>
89
+ <p><strong>Note:</strong> Version bump only for package @rxap/ngx-localize</p>
90
+ <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.3...@rxap/ngx-localize@19.0.1-dev.4">19.0.1-dev.4</a> (2025-02-10)</h2>
91
+ <p><strong>Note:</strong> Version bump only for package @rxap/ngx-localize</p>
92
+ <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.2...@rxap/ngx-localize@19.0.1-dev.3">19.0.1-dev.3</a> (2025-02-07)</h2>
93
+ <p><strong>Note:</strong> Version bump only for package @rxap/ngx-localize</p>
88
94
  <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.1...@rxap/ngx-localize@19.0.1-dev.2">19.0.1-dev.2</a> (2025-01-28)</h2>
89
95
  <p><strong>Note:</strong> Version bump only for package @rxap/ngx-localize</p>
90
96
  <h2><a href="https://gitlab.com/rxap/packages/compare/@rxap/ngx-localize@19.0.1-dev.0...@rxap/ngx-localize@19.0.1-dev.1">19.0.1-dev.1</a> (2025-01-22)</h2>
@@ -101,7 +101,7 @@
101
101
  </ol>
102
102
  <ul class="dependencies-list">
103
103
  <li>
104
- <b>@nx/devkit</b> : 20.4.0</li>
104
+ <b>@nx/devkit</b> : 20.4.2</li>
105
105
  <li>
106
106
  <b>tslib</b> : 2.6.2</li>
107
107
  </ul>
@@ -117,9 +117,9 @@
117
117
  <li>
118
118
  <b>@angular/core</b> : ^19.1.3</li>
119
119
  <li>
120
- <b>@rxap/config</b> : ^19.0.1-dev.2</li>
120
+ <b>@rxap/config</b> : ^19.0.1-dev.4</li>
121
121
  <li>
122
- <b>@rxap/ngx-user</b> : ^19.0.1-dev.2</li>
122
+ <b>@rxap/ngx-user</b> : ^19.0.1-dev.4</li>
123
123
  <li>
124
124
  <b>rxjs</b> : ^7.8.1</li>
125
125
  </ul>
@@ -82,27 +82,36 @@
82
82
  <div class="content getting-started">
83
83
  <div class="content-data">
84
84
 
85
- <h1>@rxap/ngx-localize</h1>
85
+ <p>This package provides internationalization (i18n) support for Angular applications, including services for language management, an HTTP interceptor for setting the &#x60;Accept-Language&#x60; header, and a language selector component. It allows you to set and manage the current language of your application, redirect users based on their language preference, and configure available languages. The package also includes an init generator to handle peer dependencies.</p>
86
86
  <p><a href="https://www.npmjs.com/package/@rxap/ngx-localize"><img src="https://img.shields.io/npm/v/@rxap/ngx-localize?style=flat-square" alt="npm version" class="img-responsive"></a>
87
- <a href="https://commitizen.github.io/cz-cli/"><img src="https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square" alt="commitizen friendly" class="img-responsive"></a>
88
- <a href="https://github.com/prettier/prettier"><img src="https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square" alt="styled with prettier" class="img-responsive"></a>
89
- <img src="https://img.shields.io/librariesio/release/npm/@rxap/ngx-localize" alt="Libraries.io dependency status for latest release, scoped npm package" class="img-responsive">
87
+ <a href="https://commitizen.github.io/cz-cli/"><img src="https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=flat-square" alt="commitizen
88
+ friendly" class="img-responsive"></a>
89
+ <a href="https://github.com/prettier/prettier"><img src="https://img.shields.io/badge/styled_with-prettier-ff69b4.svg?style=flat-square" alt="styled with
90
+ prettier" class="img-responsive"></a>
91
+ <img src="https://img.shields.io/librariesio/release/npm/@rxap/ngx-localize" alt="Libraries.io dependency status for latest release, scoped npm
92
+ package" class="img-responsive">
90
93
  <img src="https://img.shields.io/npm/dm/@rxap/ngx-localize" alt="npm" class="img-responsive">
91
- <img src="https://img.shields.io/npm/l/@rxap/ngx-localize" alt="NPM" class="img-responsive"></p>
94
+ <img src="https://img.shields.io/npm/l/@rxap/ngx-localize" alt="NPM" class="img-responsive"> -
95
+ <a href="#installation">Installation</a></p>
92
96
  <ul>
93
- <li><a href="#installation">Installation</a></li>
94
- <li><a href="#generators">Generators</a></li>
97
+ <li><a href="#generators">Generators</a><ul>
98
+ <li><a href="#init">init</a></li>
95
99
  </ul>
96
- <h1>Installation</h1>
97
- <p><strong>Add the package to your workspace:</strong></p>
98
- <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn add &#64;rxap/ngx-localize</code></pre></div><p><strong>Install peer dependencies:</strong></p>
99
- <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn add &#64;angular/common&#64;^19.1.3 &#64;angular/core&#64;^19.1.3 &#64;rxap/config&#64;^19.0.1-dev.2 &#64;rxap/ngx-user&#64;^19.0.1-dev.2 rxjs&#64;^7.8.1 </code></pre></div><p><strong>Execute the init generator:</strong></p>
100
- <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn nx g &#64;rxap/ngx-localize:init</code></pre></div><h1>Generators</h1>
101
- <h2>init</h2>
102
- <blockquote>
103
- <p>Initialize the package in the workspace</p>
104
- </blockquote>
105
- <b>Example :</b><div><pre class="line-numbers"><code class="language-bash">yarn nx g &#64;rxap/ngx-localize:init</code></pre></div>
100
+ </li>
101
+ </ul>
102
+ <h1>Installation <strong>Add the package to your workspace:</strong> ```bash yarn add</h1>
103
+ <p>@rxap/ngx-localize</p>
104
+ <b>Example :</b><div><pre class="line-numbers"><code class="language-none">**Install peer dependencies:** ```bash yarn add
105
+ &#64;angular/common&#64;^19.1.3 &#64;angular/core&#64;^19.1.3 &#64;rxap/config&#64;^19.0.1-dev.4 &#64;rxap/ngx-user&#64;^19.0.1-dev.4 rxjs&#64;^7.8.1 </code></pre></div><p><strong>Execute the init generator:</strong> <code>bash yarn nx g @rxap/ngx-localize:init </code></p>
106
+ <h1>Generators</h1>
107
+ <b>Example :</b><div><pre class="line-numbers"><code class="language-none">##
108
+ init
109
+ &gt;
110
+ Initialize the package in the workspace
111
+
112
+ ```bash nx g
113
+ &#64;rxap/ngx-localize:init
114
+ ```</code></pre></div>
106
115
 
107
116
 
108
117