quickblox-react-ui-kit 0.4.2-beta.1 → 0.4.2-beta.3
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 +16 -0
- package/dist/Presentation/Views/DialogList/DialogList.d.ts +8 -26
- package/dist/Presentation/layouts/Desktop/QuickBloxUIKitDesktopLayout.d.ts +1 -14
- package/dist/Presentation/ui-components/TextField/TextField.d.ts +1 -1
- package/dist/hooks/useQuickBloxUIKit.d.ts +110 -0
- package/dist/index-ui.d.ts +17 -2
- package/dist/index-ui.js +3289 -3248
- package/dist/index-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { QBSystemMessage, QBUser, ChatMessageAttachment, QBChatDialog, QBChatNewMessage, QBConfig, QBCustomField } from 'quickblox';
|
|
2
2
|
import { Tone } from '../Presentation/Views/Dialog/AIWidgets/Tone';
|
|
3
|
+
import { AIMessageWidget } from '../Presentation/Views/Dialog/AIWidgets/AIMessageWidget';
|
|
4
|
+
import UiKitTheme from '../Presentation/themes/UiKitTheme';
|
|
3
5
|
export type ProxyConfig = {
|
|
4
6
|
api: string;
|
|
5
7
|
servername: string;
|
|
@@ -170,4 +172,18 @@ export interface QBUIKitChatNewMessage extends QBChatNewMessage {
|
|
|
170
172
|
};
|
|
171
173
|
markable: 0 | 1;
|
|
172
174
|
}
|
|
175
|
+
export interface AIWidgetPlaceHolder {
|
|
176
|
+
enabled: boolean;
|
|
177
|
+
default: boolean;
|
|
178
|
+
AIWidget?: AIMessageWidget;
|
|
179
|
+
}
|
|
180
|
+
export interface QuickBloxUIKitProps {
|
|
181
|
+
AIRephrase?: AIWidgetPlaceHolder;
|
|
182
|
+
AITranslate?: AIWidgetPlaceHolder;
|
|
183
|
+
AIAssist?: AIWidgetPlaceHolder;
|
|
184
|
+
uikitHeightOffset?: string;
|
|
185
|
+
}
|
|
186
|
+
export interface QuickBloxUIKitDesktopLayoutProps extends QuickBloxUIKitProps {
|
|
187
|
+
theme?: UiKitTheme;
|
|
188
|
+
}
|
|
173
189
|
export {};
|
|
@@ -1,32 +1,14 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { FunctionTypeDialogEntityToVoid, FunctionTypeViewModelToVoid, FunctionTypeVoidToVoid } from '../../../CommonTypes/BaseViewModel';
|
|
3
|
-
import { ThemeNames } from '../PreviewDialog/PreviewDialog';
|
|
4
|
-
import { DialogListViewModel } from './DialogListViewModel';
|
|
5
2
|
import { DialogEntity } from '../../../Domain/entity/DialogEntity';
|
|
6
|
-
import UiKitTheme from '../../themes/UiKitTheme';
|
|
7
3
|
import './DialogList.scss';
|
|
8
|
-
import '
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
useUpHeader?: boolean;
|
|
15
|
-
themeHeader?: UiKitTheme;
|
|
16
|
-
themePreview?: UiKitTheme;
|
|
17
|
-
};
|
|
18
|
-
type DialogsProps = {
|
|
19
|
-
header?: React.ReactNode;
|
|
20
|
-
subHeaderContent?: React.ReactNode;
|
|
21
|
-
upHeaderContent?: React.ReactNode;
|
|
22
|
-
selectedDialog?: DialogEntity;
|
|
23
|
-
onDialogSelected?: FunctionTypeViewModelToVoid<DialogEntity>;
|
|
24
|
-
onLeaveDialog: FunctionTypeDialogEntityToVoid;
|
|
25
|
-
onCreateDialog?: FunctionTypeVoidToVoid;
|
|
26
|
-
dialogListViewModel: DialogListViewModel;
|
|
27
|
-
additionalSettings?: DialogsComponentSettings;
|
|
28
|
-
disableAction?: boolean;
|
|
4
|
+
import BaseViewModel from '../../../CommonTypes/BaseViewModel';
|
|
5
|
+
type DialogListProps = {
|
|
6
|
+
onDialogSelected: (dialog: BaseViewModel<DialogEntity>, index: number) => void;
|
|
7
|
+
renderHeader: React.ReactNode;
|
|
8
|
+
renderFilter?: React.ReactNode;
|
|
9
|
+
renderDialogList: (handleSelectDialog: (dialog: BaseViewModel<DialogEntity>, index: number) => void) => React.ReactNode;
|
|
29
10
|
scrollableHeight?: number;
|
|
11
|
+
canScrolling?: boolean;
|
|
30
12
|
};
|
|
31
|
-
declare const DialogList: React.FC<
|
|
13
|
+
declare const DialogList: React.FC<DialogListProps>;
|
|
32
14
|
export default DialogList;
|
|
@@ -1,19 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import '../../Views/Dialog/Dialog.scss';
|
|
3
3
|
import '../../Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss';
|
|
4
|
-
import
|
|
5
|
-
import { AIMessageWidget } from '../../Views/Dialog/AIWidgets/AIMessageWidget';
|
|
6
|
-
type AIWidgetPlaceHolder = {
|
|
7
|
-
enabled: boolean;
|
|
8
|
-
default: boolean;
|
|
9
|
-
AIWidget?: AIMessageWidget;
|
|
10
|
-
};
|
|
11
|
-
type QuickBloxUIKitDesktopLayoutProps = {
|
|
12
|
-
theme?: UiKitTheme;
|
|
13
|
-
AIRephrase?: AIWidgetPlaceHolder;
|
|
14
|
-
AITranslate?: AIWidgetPlaceHolder;
|
|
15
|
-
AIAssist?: AIWidgetPlaceHolder;
|
|
16
|
-
uikitHeightOffset?: string;
|
|
17
|
-
};
|
|
4
|
+
import { QuickBloxUIKitDesktopLayoutProps } from '../../../CommonTypes/CommonTypes';
|
|
18
5
|
declare const QuickBloxUIKitDesktopLayout: React.FC<QuickBloxUIKitDesktopLayoutProps>;
|
|
19
6
|
export default QuickBloxUIKitDesktopLayout;
|
|
@@ -9,5 +9,5 @@ interface TextFieldProps extends Omit<HTMLInputProps, 'onChange'> {
|
|
|
9
9
|
value: string;
|
|
10
10
|
onChange: (value: string) => void;
|
|
11
11
|
}
|
|
12
|
-
declare const TextField: import("react").ForwardRefExoticComponent<Pick<TextFieldProps, "
|
|
12
|
+
declare const TextField: import("react").ForwardRefExoticComponent<Pick<TextFieldProps, "label" | "onChange" | "key" | "accept" | "alt" | "autoComplete" | "autoFocus" | "capture" | "checked" | "crossOrigin" | "disabled" | "enterKeyHint" | "form" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "height" | "list" | "max" | "maxLength" | "min" | "minLength" | "multiple" | "name" | "pattern" | "placeholder" | "readOnly" | "required" | "size" | "src" | "step" | "type" | "value" | "width" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "slot" | "spellCheck" | "style" | "tabIndex" | "title" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "icon" | "loading"> & import("react").RefAttributes<HTMLInputElement>>;
|
|
13
13
|
export default TextField;
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import '../Presentation/Views/Dialog/Dialog.scss';
|
|
3
|
+
import '../Presentation/Views/Dialog/DialogHeader/DialogInfoIcon/DialogInfoIcon.scss';
|
|
4
|
+
import { Tone } from 'qb-ai-rephrase/src/Tone';
|
|
5
|
+
import useQbInitializedDataContext from '../Presentation/providers/QuickBloxUIKitProvider/useQbInitializedDataContext';
|
|
6
|
+
import { DialogEntity } from '../Domain/entity/DialogEntity';
|
|
7
|
+
import { DialogListViewModel } from '../Presentation/Views/DialogList/DialogListViewModel';
|
|
8
|
+
import { AIMessageWidget } from '../Presentation/Views/Dialog/AIWidgets/AIMessageWidget';
|
|
9
|
+
import { DialogViewModel } from '../Presentation/Views/Dialog/DialogViewModel';
|
|
10
|
+
import { MessageEntity } from '../Domain/entity/MessageEntity';
|
|
11
|
+
import useModal from './useModal';
|
|
12
|
+
import { QuickBloxUIKitProps } from '../CommonTypes/CommonTypes';
|
|
13
|
+
import { UsersListViewModel } from '../Presentation/Views/DialogInfo/UsersList/UsersListViewModel';
|
|
14
|
+
interface QuickBloxUIKitReturn {
|
|
15
|
+
constants: {
|
|
16
|
+
mimeType: string;
|
|
17
|
+
messagePerPage: number;
|
|
18
|
+
maxFileSize?: number;
|
|
19
|
+
maxWidthToResizing: string;
|
|
20
|
+
workHeight: string;
|
|
21
|
+
messagesContainerMobileHeight: string;
|
|
22
|
+
messagesContainerHeight: string;
|
|
23
|
+
clientContainerHeight: string;
|
|
24
|
+
headerHeight: number;
|
|
25
|
+
dialogListScrollableHeight: number;
|
|
26
|
+
};
|
|
27
|
+
data: {
|
|
28
|
+
isOnline: boolean;
|
|
29
|
+
isMobile: boolean;
|
|
30
|
+
width: number;
|
|
31
|
+
height: number;
|
|
32
|
+
breakpoint: number;
|
|
33
|
+
selectedDialog?: DialogEntity;
|
|
34
|
+
dialogAvatarUrl: string;
|
|
35
|
+
showDialogList: boolean;
|
|
36
|
+
showDialogMessages: boolean;
|
|
37
|
+
showDialogInformation: boolean;
|
|
38
|
+
needDialogInformation: boolean;
|
|
39
|
+
isRecording: boolean;
|
|
40
|
+
stream?: MediaStream;
|
|
41
|
+
permission: boolean;
|
|
42
|
+
resultAudioBlob?: Blob;
|
|
43
|
+
audioChunks: Blob[];
|
|
44
|
+
fileToSend?: File | null;
|
|
45
|
+
messageText: string;
|
|
46
|
+
isLeaving: boolean;
|
|
47
|
+
waitAIWidget: boolean;
|
|
48
|
+
maxTokensForAIRephrase: number;
|
|
49
|
+
defaultAIRephraseWidget?: AIMessageWidget;
|
|
50
|
+
defaultAITranslateWidget?: AIMessageWidget;
|
|
51
|
+
defaultAIAssistWidget?: AIMessageWidget;
|
|
52
|
+
rephraseTones: Tone[];
|
|
53
|
+
mimeType: string;
|
|
54
|
+
messagePerPage: number;
|
|
55
|
+
enableForwarding: boolean;
|
|
56
|
+
enableReplying: boolean;
|
|
57
|
+
maxFileSize?: number;
|
|
58
|
+
userName?: string;
|
|
59
|
+
currentUserId?: number;
|
|
60
|
+
sessionToken?: string;
|
|
61
|
+
forwardMessage: MessageEntity | null;
|
|
62
|
+
newModal: ReturnType<typeof useModal>;
|
|
63
|
+
isOpen: boolean;
|
|
64
|
+
warningErrorText: string;
|
|
65
|
+
isAllMembersShow: boolean;
|
|
66
|
+
scrollUpToDown: boolean;
|
|
67
|
+
needRefresh: boolean;
|
|
68
|
+
forwardMessageModal: ReturnType<typeof useModal>;
|
|
69
|
+
showReplyMessage: boolean;
|
|
70
|
+
messagesToReply: MessageEntity[];
|
|
71
|
+
};
|
|
72
|
+
models: {
|
|
73
|
+
dialogsViewModel: DialogListViewModel;
|
|
74
|
+
messagesViewModel: DialogViewModel;
|
|
75
|
+
userViewModel: UsersListViewModel;
|
|
76
|
+
currentContext: ReturnType<typeof useQbInitializedDataContext>;
|
|
77
|
+
};
|
|
78
|
+
handlers: {
|
|
79
|
+
setSelectedDialog: (dialog: DialogEntity | undefined) => void;
|
|
80
|
+
setShowDialogList: (value: boolean) => void;
|
|
81
|
+
setShowDialogMessages: (value: boolean) => void;
|
|
82
|
+
setShowDialogInformation: (value: boolean) => void;
|
|
83
|
+
setNeedDialogInformation: (value: boolean) => void;
|
|
84
|
+
handleLeaveDialog: () => void;
|
|
85
|
+
leaveDialogHandler: (dialog: DialogEntity) => void;
|
|
86
|
+
createDialogHandler: () => void;
|
|
87
|
+
getDialogPhotoFileForPreview: () => Promise<void>;
|
|
88
|
+
getMicrophonePermission: () => Promise<void>;
|
|
89
|
+
startRecording: () => Promise<void>;
|
|
90
|
+
stopRecording: () => void;
|
|
91
|
+
setForwardMessage: (message: MessageEntity | null) => void;
|
|
92
|
+
setWarningErrorText: (text: string) => void;
|
|
93
|
+
setIsAllMembersShow: (value: boolean) => void;
|
|
94
|
+
informationCloseHandler: () => void;
|
|
95
|
+
informationOpenHandler: () => void;
|
|
96
|
+
setIsRecording: (value: boolean) => void;
|
|
97
|
+
fetchMoreData: () => void;
|
|
98
|
+
sendTextMessageActions: (textToSend: string) => void;
|
|
99
|
+
ChangeFileHandler: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
100
|
+
handleOnReply: (message: MessageEntity) => void;
|
|
101
|
+
handleSendData: (dialogsForForward: DialogEntity[], messagesForForward: MessageEntity[], relatedText: string) => void;
|
|
102
|
+
handleHeightChange: (newHeight: number) => void;
|
|
103
|
+
closeReplyMessageFlowHandler: () => void;
|
|
104
|
+
setMessageText: (text: string) => void;
|
|
105
|
+
setWaitAIWidget: (value: boolean) => void;
|
|
106
|
+
handleDialogOnClick: () => void;
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
export default function useQuickBloxUIKit({ AIRephrase, AITranslate, AIAssist, uikitHeightOffset, }: QuickBloxUIKitProps): QuickBloxUIKitReturn;
|
|
110
|
+
export {};
|
package/dist/index-ui.d.ts
CHANGED
|
@@ -31,5 +31,20 @@ import ErrorMessageIcon from './Presentation/Views/Dialog/AIWidgets/ErrorMessage
|
|
|
31
31
|
import PreviewDialogViewModel from './Presentation/Views/PreviewDialog/PreviewDialogViewModel';
|
|
32
32
|
import { AvatarContentIncomingUserProps } from './Presentation/Views/Dialog/Message/IncomingMessage/AvatarContentIncomingUser/AvatarContentIncomingUser';
|
|
33
33
|
import { GetUserNameFct } from './Presentation/Views/Dialog/Message/IncomingMessage/IncomingMessage';
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
import { AIWidgetPlaceHolder, QuickBloxUIKitProps, QuickBloxUIKitDesktopLayoutProps } from './CommonTypes/CommonTypes';
|
|
35
|
+
import { Avatar, Badge, Button, CheckBox, DialogBanner, DialogItemPreview, DialogWindow, TextField, ToastProvider, UserListItem, Dropdown, Header, Loader, Message, MessageInput, MessageSeparator, Placeholder, PreviewFileMessage, SettingsItem } from './Presentation/ui-components';
|
|
36
|
+
import { DefaultConfigurations } from './Data/DefaultConfigurations';
|
|
37
|
+
import { DialogType } from './Domain/entity/DialogTypes';
|
|
38
|
+
import { GroupDialogEntity } from './Domain/entity/GroupDialogEntity';
|
|
39
|
+
import { PublicDialogEntity } from './Domain/entity/PublicDialogEntity';
|
|
40
|
+
import { MessageEntity } from './Domain/entity/MessageEntity';
|
|
41
|
+
import { getDateForDialog } from './utils/DateTimeFormatter';
|
|
42
|
+
import ReplyMessagePreview from './Presentation/ui-components/MessageInput/ReplyMessagePreview/ReplyMessagePreview';
|
|
43
|
+
import ForwardMessageFlow from './Presentation/Views/Dialog/ForwardMessageFlow/ForwardMessageFlow';
|
|
44
|
+
import SectionList from './Presentation/components/containers/SectionList';
|
|
45
|
+
import { SectionItem } from './Presentation/components/containers/SectionList/useComponent';
|
|
46
|
+
import MembersList from './Presentation/Views/DialogInfo/MembersList/MembersList';
|
|
47
|
+
import PreviewDialog from './Presentation/Views/PreviewDialog/PreviewDialog';
|
|
48
|
+
import CreateNewDialogFlow from './Presentation/Views/Flow/CreateDialogFlow/CreateNewDialogFlow';
|
|
49
|
+
import { GroupChatSvg, InformationSvg, PublicChannelSvg, UserSvg, NewChatSvg, SearchSvg, ChatSvg } from './Presentation/icons';
|
|
50
|
+
export { Avatar, Badge, Button, CheckBox, DialogBanner, DialogItemPreview, DialogWindow, Dropdown, Header, Loader, Message, 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, DialogList, Dialog, DialogInfo, type DialogEntity, BaseViewModel, QuickBloxUIKitDesktopLayout, DefaultTheme, type UiKitTheme, type AIMessageWidget, AISource, type IChatMessage, AIWidgetIcon, ErrorMessageIcon, PreviewDialogViewModel, type FunctionTypeViewModelToVoid, type AvatarContentIncomingUserProps, type GetUserNameFct, type AIWidgetPlaceHolder, type QuickBloxUIKitProps, type QuickBloxUIKitDesktopLayoutProps, DefaultConfigurations, DialogType, GroupDialogEntity, PublicDialogEntity, type MessageEntity, getDateForDialog, ReplyMessagePreview, ForwardMessageFlow, SectionList, type SectionItem, MembersList, PreviewDialog, CreateNewDialogFlow, GroupChatSvg, InformationSvg, PublicChannelSvg, UserSvg, NewChatSvg, SearchSvg, ChatSvg, };
|