@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.
- package/CHANGELOG.md +12 -0
- package/README.md +24 -25
- package/compodoc/changelog.html +6 -0
- package/compodoc/dependencies.html +3 -3
- package/compodoc/index.html +26 -17
- package/compodoc/js/search/search_index.js +2 -2
- package/compodoc/properties.html +4 -1
- package/docs/documentation.json +54 -176
- package/docs/html/assets/hierarchy.js +1 -0
- package/docs/{assets → html/assets}/highlight.css +13 -6
- package/docs/html/assets/icons.js +18 -0
- package/docs/html/assets/icons.svg +1 -0
- package/docs/{assets → html/assets}/main.js +5 -4
- package/docs/html/assets/navigation.js +1 -0
- package/docs/html/assets/search.js +1 -0
- package/docs/html/assets/style.css +1611 -0
- package/docs/html/classes/I18nService.html +5 -0
- package/docs/html/classes/LanguageSelectorService.html +7 -0
- package/docs/html/functions/LanguageInterceptor.html +1 -0
- package/docs/html/index.html +33 -0
- package/docs/html/modules.html +1 -0
- package/docs/markdown/README.md +37 -0
- package/docs/markdown/classes/I18nService.md +67 -0
- package/docs/markdown/classes/LanguageSelectorService.md +71 -0
- package/docs/markdown/functions/LanguageInterceptor.md +25 -0
- package/docs/markdown/globals.md +14 -0
- package/docs/wiki/Class.I18nService.md +63 -0
- package/docs/wiki/Class.LanguageSelectorService.md +67 -0
- package/docs/wiki/Function.LanguageInterceptor.md +21 -0
- package/docs/wiki/Home.md +33 -0
- package/docs/wiki/_Sidebar.md +10 -0
- package/docs/wiki/globals.md +10 -0
- package/package.json +21 -19
- package/docs/assets/icons.js +0 -15
- package/docs/assets/icons.svg +0 -1
- package/docs/assets/navigation.js +0 -1
- package/docs/assets/search.js +0 -1
- package/docs/assets/style.css +0 -1412
- package/docs/classes/I18nService.html +0 -7
- package/docs/classes/LanguageSelectorService.html +0 -9
- package/docs/functions/LanguageInterceptor.html +0 -1
- package/docs/index.html +0 -25
- package/docs/modules.html +0 -4
- /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
|
-
|
|
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
|
[](https://www.npmjs.com/package/@rxap/ngx-localize)
|
|
4
|
-
[](https://commitizen.github.io/cz-cli/)
|
|
6
|
+
[](https://github.com/prettier/prettier)
|
|
8
|
+

|
|
7
10
|

|
|
8
|
-

|
|
9
|
-
|
|
10
|
-
- [Installation](#installation)
|
|
11
|
+
 -
|
|
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
|
-
##
|
|
30
|
-
|
|
26
|
+
##
|
|
27
|
+
init
|
|
28
|
+
>
|
|
29
|
+
Initialize the package in the workspace
|
|
31
30
|
|
|
32
|
-
```bash
|
|
33
|
-
|
|
34
|
-
```
|
|
31
|
+
```bash nx g
|
|
32
|
+
@rxap/ngx-localize:init
|
|
33
|
+
```
|
package/compodoc/changelog.html
CHANGED
|
@@ -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.
|
|
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.
|
|
120
|
+
<b>@rxap/config</b> : ^19.0.1-dev.4</li>
|
|
121
121
|
<li>
|
|
122
|
-
<b>@rxap/ngx-user</b> : ^19.0.1-dev.
|
|
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>
|
package/compodoc/index.html
CHANGED
|
@@ -82,27 +82,36 @@
|
|
|
82
82
|
<div class="content getting-started">
|
|
83
83
|
<div class="content-data">
|
|
84
84
|
|
|
85
|
-
<
|
|
85
|
+
<p>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.</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
|
|
88
|
-
|
|
89
|
-
<img src="https://img.shields.io/
|
|
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"
|
|
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="#
|
|
94
|
-
<li><a href="#
|
|
97
|
+
<li><a href="#generators">Generators</a><ul>
|
|
98
|
+
<li><a href="#init">init</a></li>
|
|
95
99
|
</ul>
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
<
|
|
99
|
-
<
|
|
100
|
-
<b>Example :</b><div><pre class="line-numbers"><code class="language-
|
|
101
|
-
<
|
|
102
|
-
<
|
|
103
|
-
<
|
|
104
|
-
|
|
105
|
-
|
|
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
|
+
@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 </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
|
+
>
|
|
110
|
+
Initialize the package in the workspace
|
|
111
|
+
|
|
112
|
+
```bash nx g
|
|
113
|
+
@rxap/ngx-localize:init
|
|
114
|
+
```</code></pre></div>
|
|
106
115
|
|
|
107
116
|
|
|
108
117
|
|