ngx-translate-multi-http-loader 18.0.0 → 18.1.0
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/README.md +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
@@ -35,8 +35,8 @@ Choose the version corresponding to your Angular version:
|
|
35
35
|
|
36
36
|
| Angular | @ngx-translate/core | ngx-translate-multi-http-loader |
|
37
37
|
| ------- | ------------------- | ------------------------------- |
|
38
|
-
| 16
|
39
|
-
| 15 |
|
38
|
+
| >= 16 | 15.x+ | >= 15.x+ |
|
39
|
+
| 15 | 14.x+ | 9.x+ |
|
40
40
|
| 14 | 14.x+ | 8.x+ |
|
41
41
|
| 13 | 14.x+ | 7.x+ |
|
42
42
|
| 6 | 10.x+ | 1.x+ |
|
@@ -57,7 +57,7 @@ import {AppComponent} from './app';
|
|
57
57
|
|
58
58
|
// AoT requires an exported function for factories
|
59
59
|
export function HttpLoaderFactory(_httpBackend: HttpBackend) {
|
60
|
-
return new MultiTranslateHttpLoader(_httpBackend, ['/assets/i18n/core/', '/assets/i18n/vendors/']);
|
60
|
+
return new MultiTranslateHttpLoader(_httpBackend, ['/assets/i18n/core/', '/assets/i18n/vendors/']); // /i18n/core/ on angular >= v18 with the new public logic
|
61
61
|
}
|
62
62
|
|
63
63
|
@NgModule({
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ngx-translate-multi-http-loader",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.1.0",
|
4
4
|
"license": "MIT",
|
5
5
|
"author": {
|
6
6
|
"name": "Raphaël Balet",
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"@angular/common": ">=13.0.0",
|
30
30
|
"@angular/core": ">=13.0.0",
|
31
31
|
"@ngx-translate/core": ">=15.0.0",
|
32
|
-
"deepmerge-ts": "^7.0
|
32
|
+
"deepmerge-ts": "^7.1.0",
|
33
33
|
"rxjs": "^7.8.1"
|
34
34
|
},
|
35
35
|
"module": "fesm2022/ngx-translate-multi-http-loader.mjs",
|
@@ -46,4 +46,4 @@
|
|
46
46
|
}
|
47
47
|
},
|
48
48
|
"sideEffects": false
|
49
|
-
}
|
49
|
+
}
|