stream-chat-angular 3.0.0-beta.12 → 3.0.0-beta.13
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/version.d.ts +1 -1
- package/bundles/stream-chat-angular.umd.js +20 -6
- package/bundles/stream-chat-angular.umd.js.map +1 -1
- package/esm2015/assets/version.js +2 -2
- package/esm2015/lib/attachment-list/attachment-list.component.js +9 -2
- package/esm2015/lib/attachment-preview-list/attachment-preview-list.component.js +2 -2
- package/esm2015/lib/attachment.service.js +10 -1
- package/esm2015/lib/types.js +1 -1
- package/fesm2015/stream-chat-angular.js +19 -3
- package/fesm2015/stream-chat-angular.js.map +1 -1
- package/lib/attachment-list/attachment-list.component.d.ts +1 -0
- package/lib/types.d.ts +1 -1
- package/package.json +1 -1
- package/src/assets/version.ts +1 -1
|
@@ -30,6 +30,7 @@ export declare class AttachmentListComponent implements OnChanges {
|
|
|
30
30
|
isImage(attachment: Attachment): boolean;
|
|
31
31
|
isFile(attachment: Attachment): boolean;
|
|
32
32
|
isGallery(attachment: Attachment): boolean;
|
|
33
|
+
isVideo(attachment: Attachment): boolean | "" | undefined;
|
|
33
34
|
isCard(attachment: Attachment): boolean;
|
|
34
35
|
imageLoaded(): void;
|
|
35
36
|
hasFileSize(attachment: Attachment<DefaultStreamChatGenerics>): boolean | "" | 0 | undefined;
|
package/lib/types.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ export declare type AttachmentUpload = {
|
|
|
50
50
|
file: File;
|
|
51
51
|
state: 'error' | 'success' | 'uploading';
|
|
52
52
|
url?: string;
|
|
53
|
-
type: 'image' | 'file';
|
|
53
|
+
type: 'image' | 'file' | 'video';
|
|
54
54
|
previewUri?: string | ArrayBuffer;
|
|
55
55
|
};
|
|
56
56
|
export declare type MentionAutcompleteListItemContext = {
|
package/package.json
CHANGED
package/src/assets/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version = '3.0.0-beta.
|
|
1
|
+
export const version = '3.0.0-beta.13';
|