stream-chat-angular 6.1.0 → 6.2.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/assets/version.d.ts +1 -1
- package/esm2020/assets/version.mjs +2 -2
- package/esm2020/lib/stream-i18n.service.mjs +15 -6
- package/fesm2015/stream-chat-angular.mjs +16 -6
- package/fesm2015/stream-chat-angular.mjs.map +1 -1
- package/fesm2020/stream-chat-angular.mjs +15 -6
- package/fesm2020/stream-chat-angular.mjs.map +1 -1
- package/lib/stream-i18n.service.d.ts +2 -2
- package/package.json +3 -3
- package/src/assets/version.ts +1 -1
|
@@ -4,8 +4,8 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
* The `StreamI18nService` can be used to customize the labels of the chat UI. Our [translation guide](/chat/docs/sdk/angular/concepts/translation/) covers this topic in detail.
|
|
5
5
|
*/
|
|
6
6
|
export declare class StreamI18nService {
|
|
7
|
-
private
|
|
8
|
-
constructor(
|
|
7
|
+
private translateService;
|
|
8
|
+
constructor(translateService: TranslateService);
|
|
9
9
|
/**
|
|
10
10
|
* Registers the translation to the [ngx-translate](https://github.com/ngx-translate/core) TranslateService.
|
|
11
11
|
* @param lang The language key to register the translation to
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-angular",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.2.0",
|
|
4
4
|
"description": "Angular components to create chat conversations or livestream style chat",
|
|
5
5
|
"author": "GetStream",
|
|
6
6
|
"homepage": "https://getstream.io/chat/",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@angular/common": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
|
|
32
32
|
"@angular/core": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^20.0.0",
|
|
33
33
|
"@breezystack/lamejs": "^1.2.7",
|
|
34
|
-
"@ngx-translate/core": "^14.0.0 || ^15.0.0 || ^16.0.0",
|
|
34
|
+
"@ngx-translate/core": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0",
|
|
35
35
|
"rxjs": "^7.4.0",
|
|
36
36
|
"stream-chat": "^9.0.0"
|
|
37
37
|
},
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"dayjs": "^1.11.10",
|
|
48
48
|
"emoji-regex": "^10.3.0",
|
|
49
49
|
"fix-webm-duration": "^1.0.6",
|
|
50
|
-
"ngx-float-ui": "^15.0.0|| ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.1-rc.0 || ^19.0.0",
|
|
50
|
+
"ngx-float-ui": "^15.0.0|| ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.1-rc.0 || ^19.0.0 || ^20.0.0",
|
|
51
51
|
"pretty-bytes": "^6.1.1",
|
|
52
52
|
"tslib": "^2.3.0",
|
|
53
53
|
"uuid": "^9.0.1"
|
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '6.
|
|
1
|
+
export const version = '6.2.0';
|