Skip to content

Commit 82227d5

Browse files
committed
docs: improve upgrade guide
1 parent a59f8fc commit 82227d5

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

docusaurus/angular_versioned_docs/version-5/basics/upgrade-v4.mdx

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,45 @@ id: upgrade-v4
33
title: Upgrade from v4
44
---
55

6+
import Tabs from "@theme/Tabs";
7+
import TabItem from "@theme/TabItem";
8+
9+
## Highlights
10+
11+
stream-chat-angular@5 brings improvements in the following categories:
12+
13+
- New message menu and message edit UIs to improve usability
14+
- Provide more CSS customization options for the avatar and icon components (to avoid providing a custom component for even basic customization)
15+
- Dropping support for [Angular 12-14](https://getstream.io/chat/docs/sdk/angular/basics/angular-version-support/) and [theme-v1](https://getstream.io/chat/docs/sdk/angular/concepts/themeing/)
16+
17+
The full list of [features and progress](https://github.com/GetStream/stream-chat-angular/issues/584) are on GitHub.
18+
19+
## Get started
20+
21+
<Tabs groupId="examples">
22+
<TabItem value="Angular17" label="Angular 17">
23+
24+
```
25+
npm install stream-chat-angular@beta
26+
```
27+
28+
</TabItem>
29+
<TabItem value="Angular16" label="Angular 16">
30+
31+
```
32+
npm install stream-chat-angular@beta ngx-float-ui@16
33+
```
34+
35+
</TabItem>
36+
<TabItem value="Angular15" label="Angular 15">
37+
38+
```
39+
npm install stream-chat-angular@beta ngx-float-ui@15 @ngx-translate/core@14
40+
```
41+
42+
</TabItem>
43+
</Tabs>
44+
645
## Breaking changes
746

847
### Angular version support

0 commit comments

Comments
 (0)