Skip to content

Commit defcd50

Browse files
authored
Merge pull request #675 from GetStream/test-update
feat: add support for @ngx-float-ui@19
2 parents a4b794b + b7ed2b7 commit defcd50

File tree

6 files changed

+39
-10
lines changed

6 files changed

+39
-10
lines changed

.github/workflows/workflow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
branches:
55
- master
66
- angular-19
7+
- test-update
78
pull_request:
89
branches:
910
- master

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ Check out our current openings and apply via [Stream's website](https://getstrea
5555
Run this command if you are using **Angular 19**:
5656

5757
```shell
58-
# Some SDK depedencies doesn't yet have official support for Angular 19, so we need to add --force flag until then
59-
npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@18 --force
58+
npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@19
6059
```
6160

6261
Supported Angular versions: **Angular 15-18**

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"branches": [
4242
"master",
4343
{
44-
"name": "angular-19",
44+
"name": "test-update",
4545
"prerelease": true,
4646
"channel": "beta"
4747
},

projects/stream-chat-angular/README.md

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,40 @@ Check out our current openings and apply via [Stream's website](https://getstrea
5151

5252
### Install with NPM
5353

54-
Run the following command if you are using **Angular 13**:
54+
Run this command if you are using **Angular 19**:
5555

5656
```shell
57-
npm install stream-chat-angular stream-chat @ngx-translate/core
57+
npm install stream-chat-angular stream-chat @ngx-translate/core@15 ngx-float-ui@19
5858
```
5959

60-
Run this command if you are using **Angular 12**:
60+
Supported Angular versions: **Angular 15-18**
61+
62+
Run this command if you are using **Angular 18**:
63+
64+
```shell
65+
npm install stream-chat-angular stream-chat ngx-float-ui@18
66+
```
67+
68+
Run this command if you are using **Angular 17**:
6169

6270
```shell
63-
npm install stream-chat-angular stream-chat@5 @ngx-translate/core --legacy-peer-deps
71+
npm install stream-chat-angular stream-chat ngx-float-ui@17
72+
```
73+
74+
Run this command if you are using **Angular 16**:
75+
76+
```shell
77+
npm install stream-chat-angular stream-chat ngx-float-ui@16
78+
```
79+
80+
Run this command if you are using **Angular 15**:
81+
82+
```shell
83+
npm install stream-chat-angular stream-chat @ngx-translate/core@14 ngx-float-ui@15
84+
```
85+
86+
Supported node verisons: 18+
87+
6488
```
6589
6690
## Sample App
@@ -72,9 +96,11 @@ To test the app:
7296
Create a file named `.env` in the root directory with the following content:
7397
7498
```
99+
75100
STREAM_API_KEY=<Your API key>
76101
STREAM_USER_ID=<Your user ID>
77102
STREAM_USER_TOKEN=<Your user token>
103+
78104
```
79105
80106
Run `npm start` and navigate to `http://localhost:4200/`.
@@ -88,13 +114,16 @@ To run the app:
88114
Create a file named `.env` in the root directory with the following content:
89115
90116
```
117+
91118
STREAM_API_KEY=<Your API key>
92119
STREAM_USER_ID=<Your user ID>
93120
STREAM_USER_TOKEN=<Your user token>
121+
94122
```
95123
96124
Run `npm start:customizations-example` and navigate to `http://localhost:4200/`.
97125
98126
## Local development
99127
100128
Run `npm install` in the root of the project. You can use the `npm run start:dev` command to start the SampleApp with automatic reloading.
129+
```

projects/stream-chat-angular/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stream-chat-angular",
3-
"version": "5.10.0",
3+
"version": "5.11.0-test-update.1",
44
"description": "Angular components to create chat conversations or livestream style chat",
55
"author": "GetStream",
66
"homepage": "https://getstream.io/chat/",
@@ -36,7 +36,7 @@
3636
"dayjs": "^1.11.10",
3737
"emoji-regex": "^10.3.0",
3838
"fix-webm-duration": "^1.0.6",
39-
"ngx-float-ui": "^15.0.0|| ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.1-rc.0",
39+
"ngx-float-ui": "^15.0.0|| ^16.0.0 || ^17.0.0 || ^18.0.0 || ^18.0.1-rc.0 || ^19.0.0",
4040
"pretty-bytes": "^6.1.1",
4141
"tslib": "^2.3.0",
4242
"uuid": "^9.0.1"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '5.10.0';
1+
export const version = '5.11.0-test-update.1';

0 commit comments

Comments
 (0)