stream-chat-angular 2.9.0 → 2.12.1
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/i18n/en.d.ts +2 -0
- package/assets/version.d.ts +1 -1
- package/bundles/stream-chat-angular.umd.js +718 -343
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/i18n/en.js +3 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/channel/channel.component.js +3 -2
- package/esm2015/lib/channel.service.js +175 -40
- package/esm2015/lib/chat-client.service.js +6 -1
- package/esm2015/lib/icon/icon.component.js +2 -2
- package/esm2015/lib/message/message.component.js +67 -42
- package/esm2015/lib/message-actions-box/message-actions-box.component.js +20 -9
- package/esm2015/lib/message-input/message-input.component.js +61 -13
- package/esm2015/lib/message-list/message-list.component.js +124 -55
- package/esm2015/lib/message-preview.js +4 -2
- package/esm2015/lib/stream-chat.module.js +8 -3
- package/esm2015/lib/thread/thread.component.js +37 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/stream-chat-angular.js +583 -252
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/lib/channel/channel.component.d.ts +2 -1
- package/lib/channel.service.d.ts +22 -7
- package/lib/chat-client.service.d.ts +1 -0
- package/lib/icon/icon.component.d.ts +1 -1
- package/lib/message/message.component.d.ts +26 -8
- package/lib/message-actions-box/message-actions-box.component.d.ts +4 -1
- package/lib/message-input/message-input.component.d.ts +7 -1
- package/lib/message-list/message-list.component.d.ts +21 -7
- package/lib/message-preview.d.ts +1 -1
- package/lib/stream-chat.module.d.ts +5 -4
- package/lib/thread/thread.component.d.ts +18 -0
- package/package.json +2 -11
- package/public-api.d.ts +1 -0
- package/src/assets/i18n/en.ts +4 -0
- package/src/assets/version.ts +1 -1
package/assets/i18n/en.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export declare const en: {
|
|
|
29
29
|
Flag: string;
|
|
30
30
|
'Message Failed': string;
|
|
31
31
|
'Message Failed \u00B7 Unauthorized': string;
|
|
32
|
+
'Message Failed \u00B7 Click to try again': string;
|
|
32
33
|
'Message deleted': string;
|
|
33
34
|
'Message has been successfully flagged': string;
|
|
34
35
|
'Message pinned': string;
|
|
@@ -79,6 +80,7 @@ export declare const en: {
|
|
|
79
80
|
test: string;
|
|
80
81
|
'Sending links is not allowed in this conversation': string;
|
|
81
82
|
"You can't send messages in this channel": string;
|
|
83
|
+
"You can't send thread replies in this channel": string;
|
|
82
84
|
'Unsupported file type: {{type}}': string;
|
|
83
85
|
};
|
|
84
86
|
};
|
package/assets/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.
|
|
1
|
+
export declare const version = "2.12.1";
|