stream-chat-angular 5.11.0-test-update.1 → 5.11.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 CHANGED
@@ -51,16 +51,40 @@ Check out our current openings and apply via [Stream's website](https://getstrea
51
51
 
52
52
  ### Install with NPM
53
53
 
54
- Run the following command if you are using **Angular 13**:
54
+ Run this command if you are using **Angular 19**:
55
55
 
56
56
  ```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
58
58
  ```
59
59
 
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**:
61
69
 
62
70
  ```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
+
64
88
  ```
65
89
 
66
90
  ## Sample App
@@ -72,9 +96,11 @@ To test the app:
72
96
  Create a file named `.env` in the root directory with the following content:
73
97
 
74
98
  ```
99
+
75
100
  STREAM_API_KEY=<Your API key>
76
101
  STREAM_USER_ID=<Your user ID>
77
102
  STREAM_USER_TOKEN=<Your user token>
103
+
78
104
  ```
79
105
 
80
106
  Run `npm start` and navigate to `http://localhost:4200/`.
@@ -88,9 +114,11 @@ To run the app:
88
114
  Create a file named `.env` in the root directory with the following content:
89
115
 
90
116
  ```
117
+
91
118
  STREAM_API_KEY=<Your API key>
92
119
  STREAM_USER_ID=<Your user ID>
93
120
  STREAM_USER_TOKEN=<Your user token>
121
+
94
122
  ```
95
123
 
96
124
  Run `npm start:customizations-example` and navigate to `http://localhost:4200/`.
@@ -98,3 +126,4 @@ Run `npm start:customizations-example` and navigate to `http://localhost:4200/`.
98
126
  ## Local development
99
127
 
100
128
  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
+ ```
@@ -1 +1 @@
1
- export declare const version = "5.11.0-test-update.1";
1
+ export declare const version = "5.11.0";
@@ -1,2 +1,2 @@
1
- export const version = '5.11.0-test-update.1';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3N0cmVhbS1jaGF0LWFuZ3VsYXIvc3JjL2Fzc2V0cy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCB2ZXJzaW9uID0gJzUuMTEuMC10ZXN0LXVwZGF0ZS4xJztcbiJdfQ==
1
+ export const version = '5.11.0';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidmVyc2lvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL3N0cmVhbS1jaGF0LWFuZ3VsYXIvc3JjL2Fzc2V0cy92ZXJzaW9uLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLE9BQU8sR0FBRyxRQUFRLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgdmVyc2lvbiA9ICc1LjExLjAnO1xuIl19
@@ -21,7 +21,7 @@ import transliterate from '@stream-io/transliterate';
21
21
  import * as i8 from 'angular-mentions';
22
22
  import { MentionModule } from 'angular-mentions';
23
23
 
24
- const version = '5.11.0-test-update.1';
24
+ const version = '5.11.0';
25
25
 
26
26
  /**
27
27
  * The `NotificationService` can be used to add or remove notifications. By default the [`NotificationList`](/chat/docs/sdk/angular/components/NotificationListComponent/) component displays the currently active notifications.