quickblox-react-ui-kit 0.4.6-beta.5 → 0.4.7
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/dist/CommonTypes/CommonTypes.d.ts +12 -0
- package/dist/Data/source/remote/RemoteDataSource.d.ts +5 -0
- package/dist/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.d.ts +1 -1
- package/dist/Presentation/Views/Flow/CreateDialog/CreateDialog.d.ts +1 -0
- package/dist/Presentation/ui-components/DialogItemPreview/DialogItemPreview.d.ts +3 -3
- package/dist/Presentation/ui-components/Header/Header.d.ts +1 -1
- package/dist/index-ui.d.ts +47 -3
- package/dist/index-ui.js +25468 -17584
- package/dist/index-ui.js.map +1 -1
- package/global.d.ts +3 -202
- package/package.json +1 -1
- package/src/App.scss +5 -0
- package/src/App.tsx +58 -33
- package/src/CommonTypes/CommonTypes.ts +13 -0
- package/src/Data/DefaultConfigurations.ts +4 -0
- package/src/Data/source/remote/RemoteDataSource.ts +210 -148
- package/src/Domain/use_cases/CreateDialogUseCase.ts +0 -1
- package/src/Domain/use_cases/ForwardMessagesUseCase.ts +0 -1
- package/src/Domain/use_cases/GetAllDialogsUseCase.ts +0 -1
- package/src/Domain/use_cases/GetAllDialogsUseCaseWithMock.ts +0 -2
- package/src/Domain/use_cases/GetAllMessagesForDialog.ts +0 -1
- package/src/Domain/use_cases/GetAllUsersUseCase.ts +0 -1
- package/src/Domain/use_cases/GetDialogByIdUseCase.ts +0 -2
- package/src/Domain/use_cases/GetUsersByIdsUseCase.ts +0 -1
- package/src/Domain/use_cases/LeaveDialogUseCase.ts +0 -1
- package/src/Domain/use_cases/RemoveUsersFromTheDialogUseCase.ts +0 -1
- package/src/Domain/use_cases/ReplyMessagesUseCase.ts +0 -2
- package/src/Domain/use_cases/SendTextMessageUseCase.ts +0 -3
- package/src/Domain/use_cases/SubscribeToDialogEventsUseCase.ts +0 -26
- package/src/Domain/use_cases/SubscribeToDialogsUpdatesUseCase.ts +0 -1
- package/src/Domain/use_cases/SyncDialogsUseCase.ts +1 -2
- package/src/Domain/use_cases/UpdateCurrentDialogInDataSourceUseCase.ts +0 -2
- package/src/Domain/use_cases/UpdateDialogUseCase.ts +0 -2
- package/src/Domain/use_cases/UploadFileUseCase.ts +0 -2
- package/src/Domain/use_cases/UserTypingMessageUseCase.ts +0 -2
- package/src/Domain/use_cases/ai/AIAnswerAssistUseCase.ts +0 -2
- package/src/Domain/use_cases/ai/AIAnswerAssistWithProxyUseCase.ts +0 -3
- package/src/Domain/use_cases/ai/AIAnswerAssistWithSDKUseCase.ts +0 -2
- package/src/Domain/use_cases/ai/AIRephraseUseCase.ts +0 -3
- package/src/Domain/use_cases/ai/AIRephraseWithProxyUseCase.ts +0 -3
- package/src/Domain/use_cases/ai/AITranslateUseCase.ts +0 -2
- package/src/Domain/use_cases/ai/AITranslateWithProxyUseCase.ts +0 -3
- package/src/Domain/use_cases/ai/AITranslateWithSDKUseCase.ts +0 -3
- package/src/Domain/use_cases/base/Subscribable/SubscriptionPerformer.ts +0 -1
- package/src/Presentation/Views/Dialog/AIWidgets/AIRephraseWidget/AIRephraseWidget.tsx +1 -1
- package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.scss +12 -6
- package/src/Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions.tsx +4 -2
- package/src/Presentation/Views/Dialog/Dialog.scss +7 -1
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.scss +17 -29
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem.tsx +8 -13
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow.scss +9 -9
- package/src/Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding.scss +11 -0
- package/src/Presentation/Views/Dialog/MessageContextMenu/MessageContextMenu.tsx +3 -2
- package/src/Presentation/Views/Dialog/useDialogViewModel.ts +10 -21
- package/src/Presentation/Views/DialogInfo/DialogInfo.scss +19 -25
- package/src/Presentation/Views/DialogInfo/DialogInfo.tsx +2 -2
- package/src/Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton.scss +0 -17
- package/src/Presentation/Views/DialogInfo/MembersList/MembersList.scss +9 -1
- package/src/Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser.scss +0 -1
- package/src/Presentation/Views/DialogInfo/UsersList/useUsersListViewModel.ts +2 -4
- package/src/Presentation/Views/DialogList/useDialogListViewModel.ts +0 -1
- package/src/Presentation/Views/EditDialog/EditDialog.scss +1 -38
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.scss +17 -42
- package/src/Presentation/Views/Flow/CreateDialog/CreateDialog.tsx +45 -39
- package/src/Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow.tsx +6 -2
- package/src/Presentation/Views/InviteMembers/InviteMembers.scss +4 -33
- package/src/Presentation/Views/InviteMembers/InviteMembers.tsx +23 -4
- package/src/Presentation/Views/PreviewDialog/PreviewDialog.scss +8 -0
- package/src/Presentation/Views/PreviewDialog/PreviewDialog.tsx +8 -5
- package/src/Presentation/components/UI/Buttons/MainButton/MainButton.css +5 -10
- package/src/Presentation/components/UI/Placeholders/ErrorComponent/ErrorComponent.scss +0 -5
- package/src/Presentation/components/containers/ColumnContainer/ColumnContainer.scss +1 -10
- package/src/Presentation/layouts/TestStage/LoginView/Login.scss +6 -3
- package/src/Presentation/providers/QuickBloxUIKitProvider/QuickBloxUIKitProvider.tsx +1 -33
- package/src/Presentation/themes/styles/_theme_colors_scheme.scss +1 -1
- package/src/Presentation/themes/styles/_theme_dark.scss +5 -4
- package/src/Presentation/themes/styles/_theme_light.scss +3 -2
- package/src/Presentation/ui-components/Avatar/Avatar.scss +8 -5
- package/src/Presentation/ui-components/Avatar/Avatar.tsx +2 -1
- package/src/Presentation/ui-components/Badge/Badge.tsx +1 -0
- package/src/Presentation/ui-components/Button/Button.scss +5 -6
- package/src/Presentation/ui-components/Button/Button.tsx +7 -2
- package/src/Presentation/ui-components/CheckBox/CheckBox.scss +23 -0
- package/src/Presentation/ui-components/CheckBox/CheckBox.tsx +19 -7
- package/src/Presentation/ui-components/DialogBanner/DialogBanner.tsx +1 -0
- package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.scss +3 -3
- package/src/Presentation/ui-components/DialogItemPreview/DialogItemPreview.tsx +3 -3
- package/src/Presentation/ui-components/DialogWindow/DialogWindow.scss +7 -4
- package/src/Presentation/ui-components/DialogWindow/DialogWindow.tsx +1 -1
- package/src/Presentation/ui-components/Dropdown/Dropdown.tsx +1 -1
- package/src/Presentation/ui-components/Dropdown/DropdownOption.tsx +2 -1
- package/src/Presentation/ui-components/Header/Header.scss +9 -2
- package/src/Presentation/ui-components/Header/Header.tsx +1 -1
- package/src/Presentation/ui-components/Loader/Loader.tsx +1 -0
- package/src/Presentation/ui-components/Message/Bubble/AudioBubble/AudioBubble.scss +1 -0
- package/src/Presentation/ui-components/Message/Bubble/FileBubble/FileBubble.tsx +1 -0
- package/src/Presentation/ui-components/Message/Bubble/ImageBubble/ImageBubble.tsx +1 -0
- package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.scss +13 -3
- package/src/Presentation/ui-components/Message/Bubble/TextBubble/TextBubble.tsx +1 -0
- package/src/Presentation/ui-components/Message/Bubble/VideoBubble/VideoBubble.tsx +1 -0
- package/src/Presentation/ui-components/Message/FileUrl/FileUrl.scss +0 -3
- package/src/Presentation/ui-components/Message/FileUrl/FileUrl.tsx +1 -0
- package/src/Presentation/ui-components/Message/Message.scss +5 -1
- package/src/Presentation/ui-components/MessageInput/MessageInput.scss +5 -1
- package/src/Presentation/ui-components/MessageInput/MessageInput.tsx +1 -1
- package/src/Presentation/ui-components/MessageInput/VoiceRecordingProgress/VoiceRecordingProgress.tsx +1 -1
- package/src/Presentation/ui-components/MessageSeparator/MessageSeparator.scss +13 -13
- package/src/Presentation/ui-components/Placeholder/Placeholder.scss +5 -0
- package/src/Presentation/ui-components/Placeholder/Placeholder.tsx +1 -1
- package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.scss +4 -1
- package/src/Presentation/ui-components/PreviewFileMessage/PreviewFileMessage.tsx +1 -0
- package/src/Presentation/ui-components/SettingsItem/SettingsItem.scss +5 -1
- package/src/Presentation/ui-components/SettingsItem/SettingsItem.tsx +1 -1
- package/src/Presentation/ui-components/TextField/TextField.scss +5 -3
- package/src/Presentation/ui-components/Toast/Toast.scss +2 -2
- package/src/Presentation/ui-components/Toast/ToastProvider.tsx +1 -1
- package/src/Presentation/ui-components/UserListItem/UserListItem.scss +11 -3
- package/src/Presentation/ui-components/UserListItem/UserListItem.tsx +1 -0
- package/src/QBconfig.ts +2 -0
- package/src/hooks/useQuickBloxUIKit.ts +101 -18
- package/src/index-ui.ts +111 -18
- package/src/qb-api-calls/index.ts +52 -3
- package/storybook-static/{217.3c66ff1e.iframe.bundle.js → 217.07d5c7a3.iframe.bundle.js} +3 -3
- package/storybook-static/{217.3c66ff1e.iframe.bundle.js.map → 217.07d5c7a3.iframe.bundle.js.map} +1 -1
- package/storybook-static/735.6ee62079.iframe.bundle.js +2 -0
- package/storybook-static/{844.6041e1a5.iframe.bundle.js → 844.e8bfd664.iframe.bundle.js} +3 -3
- package/storybook-static/{844.6041e1a5.iframe.bundle.js.map → 844.e8bfd664.iframe.bundle.js.map} +1 -1
- package/storybook-static/{961.c94da456.iframe.bundle.js → 961.d47fc2bc.iframe.bundle.js} +2 -2
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.a5ba7608.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.c8824861.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Button-Button-stories.fa2aa72c.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.b6998344.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.a724643f.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.a03feb06.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Header-Header-stories.978f0af5.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.4e80520d.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Message-Message-stories.213a90f6.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.be8aa2d9.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.e7f5a274.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.969cfe2e.iframe.bundle.js +2 -0
- package/storybook-static/Presentation-ui-components-Toast-Toast-stories.4f00432b.iframe.bundle.js +1 -0
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.1713eab7.iframe.bundle.js +2 -0
- package/storybook-static/iframe.html +2 -2
- package/storybook-static/project.json +1 -1
- package/storybook-static/{runtime~main.5a7ba727.iframe.bundle.js → runtime~main.17766d00.iframe.bundle.js} +1 -1
- package/storybook-static/sb-manager/globals-runtime.js +1 -1
- package/storybook-static/735.82f96f8a.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Avatar-avatar-stories.b363e9a1.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Badge-Badge-stories.85dd97b0.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Button-Button-stories.1e4ae2b4.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.4e25a94d.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-DialogWindow-DialogWindow-stories.e22e8be5.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Dropdown-Dropdown-stories.8321872b.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Header-Header-stories.1cff200a.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Loader-Loader-stories.7391dde4.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Message-Message-stories.49f0dbbf.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-MessageInput-MessageInput-stories.4aa88de3.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-SettingsItem-SettingsItem-stories.d74853ab.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-TextField-TextField-stories.19812f7d.iframe.bundle.js +0 -2
- package/storybook-static/Presentation-ui-components-Toast-Toast-stories.5e19f10e.iframe.bundle.js +0 -1
- package/storybook-static/Presentation-ui-components-UserListItem-UserListItem-stories.d2f60e13.iframe.bundle.js +0 -2
- /package/storybook-static/{217.3c66ff1e.iframe.bundle.js.LICENSE.txt → 217.07d5c7a3.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{735.82f96f8a.iframe.bundle.js.LICENSE.txt → 735.6ee62079.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{844.6041e1a5.iframe.bundle.js.LICENSE.txt → 844.e8bfd664.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{961.c94da456.iframe.bundle.js.LICENSE.txt → 961.d47fc2bc.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Avatar-avatar-stories.b363e9a1.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Avatar-avatar-stories.a5ba7608.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Badge-Badge-stories.85dd97b0.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Badge-Badge-stories.c8824861.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Button-Button-stories.1e4ae2b4.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Button-Button-stories.fa2aa72c.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.4e25a94d.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-DialogItemPreview-DialogItemPreview-stories.b6998344.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-DialogWindow-DialogWindow-stories.e22e8be5.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-DialogWindow-DialogWindow-stories.a724643f.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Dropdown-Dropdown-stories.8321872b.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Dropdown-Dropdown-stories.a03feb06.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Header-Header-stories.1cff200a.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Header-Header-stories.978f0af5.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Loader-Loader-stories.7391dde4.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Loader-Loader-stories.4e80520d.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-Message-Message-stories.49f0dbbf.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-Message-Message-stories.213a90f6.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-SettingsItem-SettingsItem-stories.d74853ab.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-SettingsItem-SettingsItem-stories.e7f5a274.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-TextField-TextField-stories.19812f7d.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-TextField-TextField-stories.969cfe2e.iframe.bundle.js.LICENSE.txt} +0 -0
- /package/storybook-static/{Presentation-ui-components-UserListItem-UserListItem-stories.d2f60e13.iframe.bundle.js.LICENSE.txt → Presentation-ui-components-UserListItem-UserListItem-stories.1713eab7.iframe.bundle.js.LICENSE.txt} +0 -0
|
@@ -73,10 +73,22 @@ export interface QBUIKitConfig extends QBConfig {
|
|
|
73
73
|
chatProtocol: {
|
|
74
74
|
active: number;
|
|
75
75
|
};
|
|
76
|
+
pingLocalhostTimeInterval: number;
|
|
77
|
+
chatReconnectionTimeInterval: number;
|
|
76
78
|
debug: boolean;
|
|
77
79
|
enableForwarding: boolean;
|
|
78
80
|
enableReplying: boolean;
|
|
79
81
|
regexUserName?: string;
|
|
82
|
+
/**
|
|
83
|
+
* Whether public dialogs should be shown in the dialogs list.
|
|
84
|
+
* Defaults to false if not provided.
|
|
85
|
+
*/
|
|
86
|
+
showPublicDialogsInList?: boolean;
|
|
87
|
+
/**
|
|
88
|
+
* Whether creating public dialogs is allowed.
|
|
89
|
+
* Defaults to false if not provided.
|
|
90
|
+
*/
|
|
91
|
+
allowPublicDialogCreation?: boolean;
|
|
80
92
|
endpoints: {
|
|
81
93
|
api: string;
|
|
82
94
|
chat: string;
|
|
@@ -50,6 +50,7 @@ export declare class RemoteDataSource implements IRemoteDataSource {
|
|
|
50
50
|
set authInformation(value: AuthorizationData | undefined);
|
|
51
51
|
private currentDialog;
|
|
52
52
|
getCurrentDialogDTOMapper(): IDTOMapper;
|
|
53
|
+
private startUserCachePreload;
|
|
53
54
|
constructor();
|
|
54
55
|
createAnswer(text: string, messages: AIChatHistory, smartChatAssistantId: string): Promise<AIAnswerResponse>;
|
|
55
56
|
translate(text: string, languageCode: string, smartChatAssistantId: string): Promise<AIAnswerResponse>;
|
|
@@ -77,6 +78,10 @@ export declare class RemoteDataSource implements IRemoteDataSource {
|
|
|
77
78
|
initEventsHandlers(): void;
|
|
78
79
|
releaseEventsHandlers(): void;
|
|
79
80
|
loginWithUser(authParams: LoginData): Promise<void>;
|
|
81
|
+
private joinGroupDialog;
|
|
82
|
+
private startJoinRetryProcess;
|
|
83
|
+
private processDialogsInBackground;
|
|
84
|
+
private processDialogs;
|
|
80
85
|
getDialogs(pagination?: Pagination): Promise<RemoteDialogsDTO>;
|
|
81
86
|
createDialog(dto: RemoteDialogDTO): Promise<RemoteDialogDTO>;
|
|
82
87
|
updateDialog(dto: RemoteDialogDTO): Promise<RemoteDialogDTO>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import './DialogListItem.scss';
|
|
3
2
|
import { FunctionTypeStringToVoid } from '../../../../../../CommonTypes/BaseViewModel';
|
|
4
3
|
import { DialogType } from '../../../../../../Domain/entity/DialogTypes';
|
|
4
|
+
import './DialogListItem.scss';
|
|
5
5
|
type DialogListItemProps = {
|
|
6
6
|
name: string;
|
|
7
7
|
avatar: string;
|
|
@@ -8,6 +8,7 @@ type CreateDialogProps = {
|
|
|
8
8
|
createGroupDialogOnTouch: FunctionTypeVoidToVoid;
|
|
9
9
|
createPublicDialogOnClick: FunctionTypeVoidToVoid;
|
|
10
10
|
createPublicDialogOnTouch: FunctionTypeVoidToVoid;
|
|
11
|
+
allowPublicDialogCreation: boolean;
|
|
11
12
|
};
|
|
12
13
|
declare const CreateDialog: React.FC<CreateDialogProps>;
|
|
13
14
|
export default CreateDialog;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ReactElement } from 'react';
|
|
1
|
+
import React, { ReactElement } from 'react';
|
|
2
2
|
import { FunctionTypeVoidToVoid } from '../../../CommonTypes/BaseViewModel';
|
|
3
3
|
import './DialogItemPreview.scss';
|
|
4
4
|
export type DialogItemPreviewProps = {
|
|
5
|
-
avatar
|
|
6
|
-
title
|
|
5
|
+
avatar?: ReactElement;
|
|
6
|
+
title?: string;
|
|
7
7
|
active?: boolean;
|
|
8
8
|
date?: string;
|
|
9
9
|
lastMessage?: ReactElement | string;
|
package/dist/index-ui.d.ts
CHANGED
|
@@ -29,8 +29,8 @@ import { AISource, IChatMessage } from './Data/source/AISource';
|
|
|
29
29
|
import AIWidgetIcon from './Presentation/components/UI/svgs/Icons/AIWidgets/AIWidget';
|
|
30
30
|
import ErrorMessageIcon from './Presentation/Views/Dialog/AIWidgets/ErrorMessageIcon';
|
|
31
31
|
import PreviewDialogViewModel from './Presentation/Views/PreviewDialog/PreviewDialogViewModel';
|
|
32
|
-
import { AvatarContentIncomingUserProps } from './Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser';
|
|
33
|
-
import { GetUserNameFct } from './Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage';
|
|
32
|
+
import AvatarContentIncomingUser, { AvatarContentIncomingUserProps } from './Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser';
|
|
33
|
+
import { GetUserNameFct, IncomingMessage } from './Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage';
|
|
34
34
|
import { AIWidgetPlaceHolder, QuickBloxUIKitProps, QuickBloxUIKitDesktopLayoutProps } from './CommonTypes/CommonTypes';
|
|
35
35
|
import useQuickBloxUIKit from './hooks/useQuickBloxUIKit';
|
|
36
36
|
import MessageItem from './Presentation/Views/Dialog/MessageItem/MessageItem';
|
|
@@ -59,4 +59,48 @@ import AIAssist from './Presentation/Views/Dialog/AIComponents/AIAssist/AIAssist
|
|
|
59
59
|
import MessageContextMenu from './Presentation/Views/Dialog/Message/MessageContextMenu/MessageContextMenu';
|
|
60
60
|
import AttachmentBubble from './Presentation/ui-components/Message/Bubble/AttachmentBubble/AttachmentBubble';
|
|
61
61
|
import { HighLightLink, messageHasUrls } from './Presentation/Views/Dialog/Message/HighLightLink/HighLightLink';
|
|
62
|
-
|
|
62
|
+
import AIAssistComponent from './Presentation/Views/Dialog/AIComponents/AIAssistComponent/AIAssistComponent';
|
|
63
|
+
import AITranslateComponent from './Presentation/Views/Dialog/AIComponents/AITranslateComponent/AITranslateComponent';
|
|
64
|
+
import AIWidgetActions from './Presentation/Views/Dialog/AIWidgets/AIWidgetActions/AIWidgetActions';
|
|
65
|
+
import SliderMenu from './Presentation/Views/Dialog/AIWidgets/SliderMenu';
|
|
66
|
+
import ContextMenu from './Presentation/Views/Dialog/ContextMenu/ContextMenu';
|
|
67
|
+
import DialogHeader from './Presentation/Views/Dialog/DialogHeader/DialogHeader';
|
|
68
|
+
import DialogBackIcon from './Presentation/Views/Dialog/DialogHeader/DialogBackIcon/DialogBackIcon';
|
|
69
|
+
import DialogInfoIcon from './Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon';
|
|
70
|
+
import { DropDownMenu } from './Presentation/Views/Dialog/DropDownMenu/DropDownMenu';
|
|
71
|
+
import { ItemDropDownMenu } from './Presentation/Views/Dialog/DropDownMenu/ItemDropDownMenu/ItemDropDownMenu';
|
|
72
|
+
import { ErrorToast } from './Presentation/Views/Dialog/ErrorToast/ErrorToast';
|
|
73
|
+
import InputForForwarding from './Presentation/Views/Dialog/ForwardMessageFlow/InputForForwarding/InputForForwarding';
|
|
74
|
+
import ForwardMessagePreview from './Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessagePreview/ForwardMessagePreview';
|
|
75
|
+
import DialogsWithSearch from './Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogsWithSearch';
|
|
76
|
+
import SearchComponent from './Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/SearchComponent/SearchComponent';
|
|
77
|
+
import DialogListItem from './Presentation/Views/Dialog/ForwardMessageFlow/DialogsWithSearch/DialogListItem/DialogListItem';
|
|
78
|
+
import InputMessage from './Presentation/Views/Dialog/InputMessage/InputMessage';
|
|
79
|
+
import OutgoingRepliedMessage from './Presentation/Views/Dialog/Message/OutgoingRepliedMessage/OutgoingRepliedMessage';
|
|
80
|
+
import { OutgoingMessage } from './Presentation/Views/Dialog/Message/OutgoingMessage/OutgoingMessage';
|
|
81
|
+
import OutgoingForwardedMessage from './Presentation/Views/Dialog/Message/OutgoinForwardedMessage/OutgoinForwardedMessage';
|
|
82
|
+
import MessageAttachment from './Presentation/Views/Dialog/Message/MessageAttachment/MessageAttachment';
|
|
83
|
+
import VideoAttachment from './Presentation/Views/Dialog/Message/MessageAttachment/VideoAttachment/VideoAttachment';
|
|
84
|
+
import ImageAttachment from './Presentation/Views/Dialog/Message/MessageAttachment/ImageAttachment/ImageAttachment';
|
|
85
|
+
import DefaultAttachment from './Presentation/Views/Dialog/Message/MessageAttachment/DefaultAttachment/DefaultAttachment';
|
|
86
|
+
import AudioAttachment from './Presentation/Views/Dialog/Message/MessageAttachment/AudioAttachment/AudioAttachment';
|
|
87
|
+
import IncomingRepliedMessage from './Presentation/Views/Dialog/Message/IncomingRepliedMessage/IncomingRepliedMessage';
|
|
88
|
+
import MessageContentComponent from './Presentation/Views/Dialog/Message/IncomingMessage/MessageContentComponent/MessageContentComponent';
|
|
89
|
+
import IncomingForwardedMessage from './Presentation/Views/Dialog/Message/IncomingForwardedMessage/IncomingForwardedMessage';
|
|
90
|
+
import { SystemDateBanner } from './Presentation/Views/Dialog/SystemDateBanner/SystemDateBanner';
|
|
91
|
+
import { SystemMessageBanner } from './Presentation/Views/Dialog/SystemMessageBanner/SystemMessageBanner';
|
|
92
|
+
import VoiceMessage from './Presentation/Views/Dialog/VoiceMessage/VoiceMessage';
|
|
93
|
+
import UsersList from './Presentation/Views/DialogInfo/UsersList/UsersList';
|
|
94
|
+
import UserSingle from './Presentation/Views/DialogInfo/UsersList/SingleUser/SingleUser';
|
|
95
|
+
import DialogMembersButton from './Presentation/Views/DialogInfo/DialogMemberButton/DialogMembersButton';
|
|
96
|
+
import DialogListHeader from './Presentation/Views/DialogListHeader/DialogListHeader';
|
|
97
|
+
import EditDialog from './Presentation/Views/EditDialog/EditDialog';
|
|
98
|
+
import UserAvatar from './Presentation/Views/EditDialog/UserAvatar/UserAvatar';
|
|
99
|
+
import LeaveDialogFlow from './Presentation/Views/Flow/LeaveDialogFlow/LeaveDialogFlow';
|
|
100
|
+
import CreateDialog from './Presentation/Views/Flow/CreateDialog/CreateDialog';
|
|
101
|
+
import InviteMembers from './Presentation/Views/InviteMembers/InviteMembers';
|
|
102
|
+
import NotFoundContent from './Presentation/Views/InviteMembers/NotFoundContent/NotFoundContent';
|
|
103
|
+
import SingleUserWithCheckBox from './Presentation/Views/InviteMembers/InviteUsersList/SingleUserWithCheckBox/SingleUserWithCheckBox';
|
|
104
|
+
import PreviewDialogContextMenu from './Presentation/Views/PreviewDialog/PreviewDialogContextMenu/PreviewDialogContextMenu';
|
|
105
|
+
import YesNoQuestionComponent from './Presentation/Views/YesNoQuestion/YesNoQuestion';
|
|
106
|
+
export { AttachmentBubble, messageHasUrls, type FunctionTypeMessageEntityToVoid, MessageDTOMapper, getTimeShort24hFormat, TextBubble, Avatar, Badge, Button, CheckBox, DialogBanner, DialogItemPreview, DialogWindow, Dropdown, Header, Loader, MessageInput, MessageSeparator, Placeholder, PreviewFileMessage, SettingsItem, TextField, ToastProvider, UserListItem, MainButton, TypeButton, type LoginData, type AuthorizationData, QuickBloxUIKitProvider, qbDataContext, type QBDataContextType, RemoteDataSource, LocalDataSource, useQBConnection, useQbInitializedDataContext, useQbUIKitDataContext, useEventMessagesRepository, type DialogListViewModel, useDialogListViewModel, SubscribeToDialogEventsUseCase, Pagination, type DialogEventInfo, EventMessageType, NotificationTypes, stringifyError, DesktopLayout, type DialogEntity, BaseViewModel, QuickBloxUIKitDesktopLayout, DefaultTheme, type UiKitTheme, type AIMessageWidget, AISource, type IChatMessage, AIWidgetIcon, PreviewDialogViewModel, type FunctionTypeViewModelToVoid, type AvatarContentIncomingUserProps, type GetUserNameFct, type AIWidgetPlaceHolder, type QuickBloxUIKitProps, type QuickBloxUIKitDesktopLayoutProps, DefaultConfigurations, DialogType, GroupDialogEntity, PublicDialogEntity, type MessageEntity, getDateForDialog, ReplyMessagePreview, SectionList, type SectionItem, GroupChatSvg, InformationSvg, PublicChannelSvg, UserSvg, NewChatSvg, SearchSvg, ChatSvg, useQuickBloxUIKit, AIAssist, AIAssistComponent, AITranslate, AITranslateComponent, AIRephraseWidget, AIWidgetActions, ErrorMessageIcon, SliderMenu, ContextMenu, DialogHeader, DialogBackIcon, DialogInfoIcon, DropDownMenu, ItemDropDownMenu, ErrorToast, ForwardMessageFlow, InputForForwarding, ForwardMessagePreview, DialogsWithSearch, SearchComponent, DialogListItem, InputMessage, Message, OutgoingRepliedMessage, OutgoingMessage, OutgoingForwardedMessage, MessageAttachment, VideoAttachment, ImageAttachment, DefaultAttachment, AudioAttachment, IncomingRepliedMessage, IncomingMessage, MessageContentComponent, AvatarContentIncomingUser, IncomingForwardedMessage, HighLightLink, MessageContextMenu, MessageItem, SystemDateBanner, SystemMessageBanner, VoiceMessage, Dialog, DialogInfo, UsersList, UserSingle, MembersList, DialogMembersButton, DialogList, DialogListHeader, EditDialog, UserAvatar, LeaveDialogFlow, CreateNewDialogFlow, CreateDialog, InviteMembers, NotFoundContent, SingleUserWithCheckBox, PreviewDialog, PreviewDialogContextMenu, YesNoQuestionComponent, };
|