stream-chat-angular 7.1.5 → 7.2.0-rc.2
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 +12 -2
- package/assets/version.d.ts +1 -1
- package/esm2022/assets/version.mjs +2 -2
- package/esm2022/lib/message/message.component.mjs +3 -3
- package/esm2022/lib/message-input/message-input.component.mjs +5 -8
- package/esm2022/lib/notification-list/stream-notification.module.mjs +5 -5
- package/esm2022/lib/paginated-list/stream-paginated-list.module.mjs +5 -5
- package/esm2022/lib/polls/poll-actions/poll-actions.component.mjs +11 -11
- package/esm2022/lib/polls/poll-actions/poll-answers-list/poll-answers-list.component.mjs +6 -6
- package/esm2022/lib/polls/poll-actions/poll-results/poll-results-list/poll-results-list.component.mjs +6 -6
- package/esm2022/lib/polls/stream-polls.module.mjs +4 -5
- package/esm2022/lib/stream-autocomplete-textarea.module.mjs +5 -5
- package/esm2022/lib/stream-avatar.module.mjs +5 -5
- package/esm2022/lib/stream-chat.module.mjs +4 -5
- package/esm2022/lib/stream-textarea.module.mjs +5 -5
- package/esm2022/lib/thread/thread.component.mjs +5 -5
- package/esm2022/lib/voice-recorder/voice-recorder.module.mjs +5 -5
- package/esm2022/lib/voice-recording/voice-recording.module.mjs +5 -5
- package/fesm2022/stream-chat-angular.mjs +41 -46
- package/fesm2022/stream-chat-angular.mjs.map +1 -1
- package/lib/message-input/message-input.component.d.ts +3 -4
- package/lib/notification-list/stream-notification.module.d.ts +1 -1
- package/lib/paginated-list/stream-paginated-list.module.d.ts +1 -1
- package/lib/polls/stream-polls.module.d.ts +1 -1
- package/lib/stream-autocomplete-textarea.module.d.ts +1 -1
- package/lib/stream-avatar.module.d.ts +1 -1
- package/lib/stream-chat.module.d.ts +1 -1
- package/lib/stream-textarea.module.d.ts +1 -1
- package/lib/voice-recorder/voice-recorder.module.d.ts +1 -1
- package/lib/voice-recording/voice-recording.module.d.ts +1 -1
- package/package.json +6 -6
- package/src/assets/version.ts +1 -1
package/README.md
CHANGED
|
@@ -51,7 +51,17 @@ Check out our current openings and apply via [Stream's website](https://getstrea
|
|
|
51
51
|
|
|
52
52
|
### Install with NPM
|
|
53
53
|
|
|
54
|
-
Supported Angular versions: **Angular 17-
|
|
54
|
+
Supported Angular versions: **Angular 17-22**
|
|
55
|
+
|
|
56
|
+
`stream-chat-angular` supports both `@ngx-translate/core` v17 and v18. Use **v18 on Angular 18+** and **v17 on Angular 17** (v18 requires Angular 18 or newer).
|
|
57
|
+
|
|
58
|
+
Run this command if you are using **Angular 22**:
|
|
59
|
+
|
|
60
|
+
```shell
|
|
61
|
+
npm install stream-chat-angular stream-chat @ngx-translate/core ngx-float-ui@21 --legacy-peer-deps
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
> `ngx-float-ui` does not have an Angular 22 build yet, so install its latest (v21) with `--legacy-peer-deps` until an Angular 22 release is available.
|
|
55
65
|
|
|
56
66
|
Run this command if you are using **Angular 21**:
|
|
57
67
|
|
|
@@ -80,7 +90,7 @@ npm install stream-chat-angular stream-chat @ngx-translate/core ngx-float-ui@18
|
|
|
80
90
|
Run this command if you are using **Angular 17**:
|
|
81
91
|
|
|
82
92
|
```shell
|
|
83
|
-
npm install stream-chat-angular stream-chat @ngx-translate/core ngx-float-ui@17
|
|
93
|
+
npm install stream-chat-angular stream-chat @ngx-translate/core@17 ngx-float-ui@17
|
|
84
94
|
```
|
|
85
95
|
|
|
86
96
|
Supported node verisons: 18+
|
package/assets/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "7.
|
|
1
|
+
export declare const version = "7.2.0-rc.2";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const version = '7.
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
1
|
+
export const version = '7.2.0-rc.2';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3N0cmVhbS1jaGF0LWFuZ3VsYXIvc3JjL2Fzc2V0cy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxZQUFZLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgdmVyc2lvbiA9ICc3LjIuMC1yYy4yJztcbiJdfQ==
|