@bcc-code/vue-bcc-chat-ui 3.6.1 → 3.7.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/dist/chat/cometChatPatches.d.ts +4 -0
- package/dist/chat/data.d.ts +4 -2
- package/dist/chat/index.d.ts +35 -33
- package/dist/chat/replyExtension.d.ts +27 -0
- package/dist/chat/replyStyle.d.ts +31 -0
- package/dist/chat/theme.d.ts +30 -30
- package/dist/chat/types.d.ts +9 -0
- package/dist/chat/uiKit.d.ts +5 -3
- package/dist/components/BccChatMessageBubble.vue.d.ts +1 -1
- package/dist/components/BccChatMessageList.vue.d.ts +1 -1
- package/dist/components/BccReplyBox.vue.d.ts +37 -0
- package/dist/components/BccReplyPreview.vue.d.ts +31 -0
- package/dist/components/CometChatMessageListOverride.vue.d.ts +1 -89
- package/dist/offline/offlineStoreLocalStorage.d.ts +3 -0
- package/dist/offline/types.d.ts +4 -0
- package/dist/style.css +1 -1
- package/dist/vue-bcc-chat-ui.js +24525 -24083
- package/package.json +22 -12
- package/src/components/BccChatMessageBubble.vue +46 -1
- package/src/components/BccChatMessageList.vue +63 -25
- package/src/components/BccReplyBox.vue +128 -0
- package/src/components/BccReplyPreview.vue +113 -0
- package/src/components/CometChatMessageListOverride.vue +2 -120
package/dist/chat/data.d.ts
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Group, BaseMessage } from '@cometchat/chat-sdk-javascript';
|
|
2
2
|
import { Ref } from 'vue';
|
|
3
|
-
import {
|
|
3
|
+
import { UserChatInfo } from './types';
|
|
4
4
|
|
|
5
5
|
export declare function getGroup(groupUid: string): Promise<Group | null>;
|
|
6
6
|
export declare function clearGroupChatCount(groupUid: string): Promise<void>;
|
|
7
7
|
export declare function getGroupOnlineCount(groupUid: string): Promise<number>;
|
|
8
8
|
export declare const userChats: Ref<UserChatInfo[]>;
|
|
9
9
|
export declare function getUserChats(): Promise<UserChatInfo[]>;
|
|
10
|
+
export declare function getMessageTextPreview(message?: BaseMessage, showEmoji?: boolean, showAttachmentName?: boolean): string;
|
|
11
|
+
export declare function proxyImage(imageUrl: string): string;
|
package/dist/chat/index.d.ts
CHANGED
|
@@ -3,8 +3,8 @@ import { ChatInstallOptions } from './types';
|
|
|
3
3
|
declare function install(app: any, options: ChatInstallOptions): Promise<void>;
|
|
4
4
|
declare const _default: {
|
|
5
5
|
setLanguage: (lang: import('./types').Language) => void;
|
|
6
|
-
onlineMode: import('vue').WritableComputedRef<import(
|
|
7
|
-
onlineStatus: import('vue').ComputedRef<import(
|
|
6
|
+
onlineMode: import('vue').WritableComputedRef<import('../offline/types').OnlineStatus>;
|
|
7
|
+
onlineStatus: import('vue').ComputedRef<import('../offline/types').OnlineStatus>;
|
|
8
8
|
theme: import('vue').Ref<{
|
|
9
9
|
palette: {
|
|
10
10
|
mode: string;
|
|
@@ -104,24 +104,24 @@ declare const _default: {
|
|
|
104
104
|
getBackground: (mode?: string | undefined) => string | undefined;
|
|
105
105
|
getTertiary: (mode?: string | undefined) => string | undefined;
|
|
106
106
|
setMode: (mode: string) => void;
|
|
107
|
-
setBackground: (colorset: import(
|
|
108
|
-
setPrimary: (colorset: import(
|
|
109
|
-
setPrimary150: (colorset: import(
|
|
110
|
-
setPrimary500: (colorset: import(
|
|
111
|
-
setSecondary: (colorset: import(
|
|
112
|
-
setError: (colorset: import(
|
|
113
|
-
setAccent: (colorset: import(
|
|
114
|
-
setAccent50: (colorset?: import(
|
|
115
|
-
setAccent100: (colorset: import(
|
|
116
|
-
setAccent200: (colorset: import(
|
|
117
|
-
setAccent300: (colorset: import(
|
|
118
|
-
setAccent400: (colorset: import(
|
|
119
|
-
setAccent500: (colorset: import(
|
|
120
|
-
setAccent600: (colorset: import(
|
|
121
|
-
setAccent700: (colorset: import(
|
|
122
|
-
setAccent800: (colorset: import(
|
|
123
|
-
setAccent900: (colorset: import(
|
|
124
|
-
setTertiary: (colorset: import(
|
|
107
|
+
setBackground: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
108
|
+
setPrimary: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
109
|
+
setPrimary150: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
110
|
+
setPrimary500: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
111
|
+
setSecondary: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
112
|
+
setError: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
113
|
+
setAccent: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
114
|
+
setAccent50: (colorset?: import('@cometchat/uikit-resources').PaletteItem | undefined) => void;
|
|
115
|
+
setAccent100: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
116
|
+
setAccent200: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
117
|
+
setAccent300: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
118
|
+
setAccent400: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
119
|
+
setAccent500: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
120
|
+
setAccent600: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
121
|
+
setAccent700: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
122
|
+
setAccent800: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
123
|
+
setAccent900: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
124
|
+
setTertiary: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
125
125
|
};
|
|
126
126
|
typography: {
|
|
127
127
|
fontFamily: string;
|
|
@@ -194,18 +194,18 @@ declare const _default: {
|
|
|
194
194
|
setFontWeightMedium: (fontWeightMedium: string) => void;
|
|
195
195
|
setFontWeightSemibold: (fontWeightSemibold: string) => void;
|
|
196
196
|
setFontWeightBold: (fontWeightBold: string) => void;
|
|
197
|
-
setHeading: (headingFont: import(
|
|
198
|
-
setName: (nameFont: import(
|
|
199
|
-
setTitle1: (titleFont: import(
|
|
200
|
-
setTitle2: (titleFont: import(
|
|
201
|
-
setSubtitle1: (subtitleFont: import(
|
|
202
|
-
setSubtitle2: (subtitleFont: import(
|
|
203
|
-
setText1: (textFont: import(
|
|
204
|
-
setText2: (textFont: import(
|
|
205
|
-
setText3: (textFont: import(
|
|
206
|
-
setCaption1: (captionFont: import(
|
|
207
|
-
setCaption2: (captionFont: import(
|
|
208
|
-
setCaption3: (captionFont: import(
|
|
197
|
+
setHeading: (headingFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
198
|
+
setName: (nameFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
199
|
+
setTitle1: (titleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
200
|
+
setTitle2: (titleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
201
|
+
setSubtitle1: (subtitleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
202
|
+
setSubtitle2: (subtitleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
203
|
+
setText1: (textFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
204
|
+
setText2: (textFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
205
|
+
setText3: (textFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
206
|
+
setCaption1: (captionFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
207
|
+
setCaption2: (captionFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
208
|
+
setCaption3: (captionFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
209
209
|
};
|
|
210
210
|
}>;
|
|
211
211
|
setThemeMode: (mode: import('./types').ThemeMode) => void;
|
|
@@ -224,7 +224,9 @@ declare const _default: {
|
|
|
224
224
|
clearGroupChatCount(groupUid: string): Promise<void>;
|
|
225
225
|
getGroupOnlineCount(groupUid: string): Promise<number>;
|
|
226
226
|
getUserChats(): Promise<import('./types').UserChatInfo[]>;
|
|
227
|
-
|
|
227
|
+
getMessageTextPreview(message?: import('@cometchat/chat-sdk-javascript').BaseMessage | undefined, showEmoji?: boolean, showAttachmentName?: boolean): string;
|
|
228
|
+
proxyImage(imageUrl: string): string;
|
|
229
|
+
userChats: import('vue').Ref<import('./types').UserChatInfo[]>;
|
|
228
230
|
install: typeof install;
|
|
229
231
|
initialized: import('vue').Ref<boolean>;
|
|
230
232
|
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { ExtensionsDataSource, OptionsStyle } from '@cometchat/chat-uikit-vue';
|
|
2
|
+
import { ReplyPreviewStyle } from './replyStyle';
|
|
3
|
+
|
|
4
|
+
export declare const bccReplyOptionId = "bccreply";
|
|
5
|
+
declare class InlineReplyExtensionConfiguration {
|
|
6
|
+
private style;
|
|
7
|
+
private optionIconURL;
|
|
8
|
+
private optionStyle;
|
|
9
|
+
constructor(configuration: {
|
|
10
|
+
style?: ReplyPreviewStyle;
|
|
11
|
+
optionIconURL?: string;
|
|
12
|
+
optionStyle?: OptionsStyle;
|
|
13
|
+
});
|
|
14
|
+
getReplyPreviewStyle(): ReplyPreviewStyle | undefined;
|
|
15
|
+
getOptionIconURL(): string | undefined;
|
|
16
|
+
getOptionStyle(): OptionsStyle | undefined;
|
|
17
|
+
}
|
|
18
|
+
export declare class InlineReplyExtension extends ExtensionsDataSource {
|
|
19
|
+
configuration: InlineReplyExtensionConfiguration;
|
|
20
|
+
constructor({ configuration }?: {
|
|
21
|
+
configuration: InlineReplyExtensionConfiguration;
|
|
22
|
+
});
|
|
23
|
+
enable(): void;
|
|
24
|
+
addExtension(): void;
|
|
25
|
+
getExtensionId(): string;
|
|
26
|
+
}
|
|
27
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { CometChatTheme } from '@cometchat/uikit-resources';
|
|
2
|
+
import { BaseStyle } from '@cometchat/uikit-shared';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* ReplyPreviewStyle
|
|
6
|
+
*
|
|
7
|
+
* @property {string} height - The height of the component.
|
|
8
|
+
* @property {string} width - The width of the component.
|
|
9
|
+
* @property {string} border - The border of the component.
|
|
10
|
+
* @property {string} borderRadius - The border radius of the component.
|
|
11
|
+
* @property {string} background - The background color of the component.
|
|
12
|
+
* @property {string} titleFont - The font of the title text.
|
|
13
|
+
* @property {string} titleColor - The color of the title text.
|
|
14
|
+
* @property {string} subtitleFont - The font of the subtitle text.
|
|
15
|
+
* @property {string} subtitleColor - The color of the subtitle text.
|
|
16
|
+
* @property {string} closeButtonIconTint - The color of the close button.
|
|
17
|
+
*/
|
|
18
|
+
export declare class ReplyPreviewStyle extends BaseStyle {
|
|
19
|
+
titleFont: string;
|
|
20
|
+
titleColor?: string;
|
|
21
|
+
subtitleFont: string;
|
|
22
|
+
subtitleColor?: string;
|
|
23
|
+
closeButtonIconTint?: string;
|
|
24
|
+
barLeftPosition: string;
|
|
25
|
+
barWidth: string;
|
|
26
|
+
barBackground?: string;
|
|
27
|
+
barOpacity: string;
|
|
28
|
+
previewWrapperPadding?: string;
|
|
29
|
+
previewWrapperOpacity?: string;
|
|
30
|
+
constructor(props: Partial<ReplyPreviewStyle>, theme: CometChatTheme);
|
|
31
|
+
}
|
package/dist/chat/theme.d.ts
CHANGED
|
@@ -99,24 +99,24 @@ export declare const theme: import('vue').Ref<{
|
|
|
99
99
|
getBackground: (mode?: string | undefined) => string | undefined;
|
|
100
100
|
getTertiary: (mode?: string | undefined) => string | undefined;
|
|
101
101
|
setMode: (mode: string) => void;
|
|
102
|
-
setBackground: (colorset: import(
|
|
103
|
-
setPrimary: (colorset: import(
|
|
104
|
-
setPrimary150: (colorset: import(
|
|
105
|
-
setPrimary500: (colorset: import(
|
|
106
|
-
setSecondary: (colorset: import(
|
|
107
|
-
setError: (colorset: import(
|
|
108
|
-
setAccent: (colorset: import(
|
|
109
|
-
setAccent50: (colorset?: import(
|
|
110
|
-
setAccent100: (colorset: import(
|
|
111
|
-
setAccent200: (colorset: import(
|
|
112
|
-
setAccent300: (colorset: import(
|
|
113
|
-
setAccent400: (colorset: import(
|
|
114
|
-
setAccent500: (colorset: import(
|
|
115
|
-
setAccent600: (colorset: import(
|
|
116
|
-
setAccent700: (colorset: import(
|
|
117
|
-
setAccent800: (colorset: import(
|
|
118
|
-
setAccent900: (colorset: import(
|
|
119
|
-
setTertiary: (colorset: import(
|
|
102
|
+
setBackground: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
103
|
+
setPrimary: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
104
|
+
setPrimary150: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
105
|
+
setPrimary500: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
106
|
+
setSecondary: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
107
|
+
setError: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
108
|
+
setAccent: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
109
|
+
setAccent50: (colorset?: import('@cometchat/uikit-resources').PaletteItem | undefined) => void;
|
|
110
|
+
setAccent100: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
111
|
+
setAccent200: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
112
|
+
setAccent300: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
113
|
+
setAccent400: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
114
|
+
setAccent500: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
115
|
+
setAccent600: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
116
|
+
setAccent700: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
117
|
+
setAccent800: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
118
|
+
setAccent900: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
119
|
+
setTertiary: (colorset: import('@cometchat/uikit-resources').PaletteItem) => void;
|
|
120
120
|
};
|
|
121
121
|
typography: {
|
|
122
122
|
fontFamily: string;
|
|
@@ -189,18 +189,18 @@ export declare const theme: import('vue').Ref<{
|
|
|
189
189
|
setFontWeightMedium: (fontWeightMedium: string) => void;
|
|
190
190
|
setFontWeightSemibold: (fontWeightSemibold: string) => void;
|
|
191
191
|
setFontWeightBold: (fontWeightBold: string) => void;
|
|
192
|
-
setHeading: (headingFont: import(
|
|
193
|
-
setName: (nameFont: import(
|
|
194
|
-
setTitle1: (titleFont: import(
|
|
195
|
-
setTitle2: (titleFont: import(
|
|
196
|
-
setSubtitle1: (subtitleFont: import(
|
|
197
|
-
setSubtitle2: (subtitleFont: import(
|
|
198
|
-
setText1: (textFont: import(
|
|
199
|
-
setText2: (textFont: import(
|
|
200
|
-
setText3: (textFont: import(
|
|
201
|
-
setCaption1: (captionFont: import(
|
|
202
|
-
setCaption2: (captionFont: import(
|
|
203
|
-
setCaption3: (captionFont: import(
|
|
192
|
+
setHeading: (headingFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
193
|
+
setName: (nameFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
194
|
+
setTitle1: (titleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
195
|
+
setTitle2: (titleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
196
|
+
setSubtitle1: (subtitleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
197
|
+
setSubtitle2: (subtitleFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
198
|
+
setText1: (textFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
199
|
+
setText2: (textFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
200
|
+
setText3: (textFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
201
|
+
setCaption1: (captionFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
202
|
+
setCaption2: (captionFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
203
|
+
setCaption3: (captionFont: import('@cometchat/uikit-resources').CometChatFont) => void;
|
|
204
204
|
};
|
|
205
205
|
}>;
|
|
206
206
|
export declare const setThemeMode: (mode: ThemeMode) => void;
|
package/dist/chat/types.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { BaseMessage } from '@cometchat/chat-sdk-javascript';
|
|
1
2
|
import { Ref } from 'vue';
|
|
2
3
|
|
|
3
4
|
export interface ChatInstallOptions {
|
|
@@ -6,6 +7,14 @@ export interface ChatInstallOptions {
|
|
|
6
7
|
themeMode: ThemeMode;
|
|
7
8
|
accessToken?: Ref<string | null | undefined> | null | undefined | string;
|
|
8
9
|
}
|
|
10
|
+
export interface ChatInstance {
|
|
11
|
+
componentId: string;
|
|
12
|
+
replyToMessage: BaseMessage | null;
|
|
13
|
+
}
|
|
14
|
+
export interface View {
|
|
15
|
+
componentName: string;
|
|
16
|
+
props?: Record<string, any>;
|
|
17
|
+
}
|
|
9
18
|
export type Language = 'nb' | 'no' | 'ar' | 'de' | 'en' | 'es' | 'fr' | 'hi' | 'ms' | 'pt' | 'ru' | 'zh' | 'zh-tw' | 'sv' | 'lt';
|
|
10
19
|
export type Environment = 'prod' | 'sandbox';
|
|
11
20
|
export type ChatEnvironmentConfig = {
|
package/dist/chat/uiKit.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
1
2
|
import { MessageListConfiguration, MessageComposerConfiguration, ThreadedMessagesConfiguration } from '@cometchat/uikit-shared';
|
|
3
|
+
import { ChatInstance } from './types';
|
|
2
4
|
|
|
3
5
|
export declare function setupUiKit(): Promise<void>;
|
|
4
|
-
export declare
|
|
5
|
-
export declare
|
|
6
|
-
export declare
|
|
6
|
+
export declare function getMessageComposerConfiguration(): Ref<MessageComposerConfiguration>;
|
|
7
|
+
export declare function getMessageListConfiguration(chatInstance?: Ref<ChatInstance>): import('vue').ComputedRef<MessageListConfiguration>;
|
|
8
|
+
export declare function getThreadedMessagesConfiguration(): ThreadedMessagesConfiguration;
|
|
@@ -4,7 +4,7 @@ declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
4
4
|
text: string;
|
|
5
5
|
metadata: Record<string, any>;
|
|
6
6
|
mentionedUsers: User[];
|
|
7
|
-
}>, {}, unknown, {}, {}, import(
|
|
7
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
8
|
text: string;
|
|
9
9
|
metadata: Record<string, any>;
|
|
10
10
|
mentionedUsers: User[];
|
|
@@ -3,7 +3,7 @@ declare const _default: import('vue').DefineComponent<{
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
required: true;
|
|
5
5
|
};
|
|
6
|
-
}, {}, unknown, {}, {}, import(
|
|
6
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7
7
|
chatUid: {
|
|
8
8
|
type: StringConstructor;
|
|
9
9
|
required: true;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { BaseMessage } from '@cometchat/chat-sdk-javascript';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
replyToMessage: {
|
|
5
|
+
type: typeof BaseMessage;
|
|
6
|
+
};
|
|
7
|
+
titlePrefix: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
};
|
|
10
|
+
closeButtonIconURL: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
14
|
+
previewStyle: {
|
|
15
|
+
type: ObjectConstructor;
|
|
16
|
+
default: {};
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
19
|
+
replyToMessage: {
|
|
20
|
+
type: typeof BaseMessage;
|
|
21
|
+
};
|
|
22
|
+
titlePrefix: {
|
|
23
|
+
type: StringConstructor;
|
|
24
|
+
};
|
|
25
|
+
closeButtonIconURL: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
previewStyle: {
|
|
30
|
+
type: ObjectConstructor;
|
|
31
|
+
default: {};
|
|
32
|
+
};
|
|
33
|
+
}>>, {
|
|
34
|
+
previewStyle: Record<string, any>;
|
|
35
|
+
closeButtonIconURL: string;
|
|
36
|
+
}, {}>;
|
|
37
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { BaseMessage } from '@cometchat/chat-sdk-javascript';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<{
|
|
4
|
+
replyToMessage: {
|
|
5
|
+
type: typeof BaseMessage;
|
|
6
|
+
};
|
|
7
|
+
titlePrefix: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
previewStyle: {
|
|
12
|
+
type: ObjectConstructor;
|
|
13
|
+
default: {};
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
16
|
+
replyToMessage: {
|
|
17
|
+
type: typeof BaseMessage;
|
|
18
|
+
};
|
|
19
|
+
titlePrefix: {
|
|
20
|
+
type: StringConstructor;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
previewStyle: {
|
|
24
|
+
type: ObjectConstructor;
|
|
25
|
+
default: {};
|
|
26
|
+
};
|
|
27
|
+
}>>, {
|
|
28
|
+
titlePrefix: string;
|
|
29
|
+
previewStyle: Record<string, any>;
|
|
30
|
+
}, {}>;
|
|
31
|
+
export default _default;
|
|
@@ -1,90 +1,2 @@
|
|
|
1
|
-
declare const _default: import('vue').DefineComponent<{
|
|
2
|
-
hideError: {};
|
|
3
|
-
scrollToBottomOnNewMessages: {};
|
|
4
|
-
errorStateView: {};
|
|
5
|
-
loadingStateView: {};
|
|
6
|
-
emptyStateView: {};
|
|
7
|
-
state: {};
|
|
8
|
-
thresholdValue: {};
|
|
9
|
-
errorStateText: {};
|
|
10
|
-
emptyStateText: {};
|
|
11
|
-
loadingIconURL: {};
|
|
12
|
-
user: {};
|
|
13
|
-
group: {};
|
|
14
|
-
disableReceipt: {};
|
|
15
|
-
onError: {};
|
|
16
|
-
disableSoundForMessages: {};
|
|
17
|
-
customSoundForMessages: {};
|
|
18
|
-
readIcon: {};
|
|
19
|
-
deliveredIcon: {};
|
|
20
|
-
sentIcon: {};
|
|
21
|
-
waitIcon: {};
|
|
22
|
-
errorIcon: {};
|
|
23
|
-
alignment: {};
|
|
24
|
-
showAvatar: {};
|
|
25
|
-
timestampAlignment: {};
|
|
26
|
-
DateSeparatorPattern: {};
|
|
27
|
-
templates: {};
|
|
28
|
-
messagesRequestBuilder: {};
|
|
29
|
-
newMessageIndicatorText: {};
|
|
30
|
-
onThreadRepliesClick: {};
|
|
31
|
-
headerView: {};
|
|
32
|
-
footerView: {};
|
|
33
|
-
datePattern: {};
|
|
34
|
-
parentMessageId: {};
|
|
35
|
-
avatarStyle: {};
|
|
36
|
-
dateSeparatorStyle: {};
|
|
37
|
-
messageListStyle: {};
|
|
38
|
-
messageInformationConfiguration: {};
|
|
39
|
-
reactionsConfiguration: {};
|
|
40
|
-
disableReactions: {};
|
|
41
|
-
emojiKeyboardStyle: {};
|
|
42
|
-
threadIndicatorIcon: {};
|
|
43
|
-
disableMentions: {};
|
|
44
|
-
textFormatters: {};
|
|
45
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
46
|
-
hideError: {};
|
|
47
|
-
scrollToBottomOnNewMessages: {};
|
|
48
|
-
errorStateView: {};
|
|
49
|
-
loadingStateView: {};
|
|
50
|
-
emptyStateView: {};
|
|
51
|
-
state: {};
|
|
52
|
-
thresholdValue: {};
|
|
53
|
-
errorStateText: {};
|
|
54
|
-
emptyStateText: {};
|
|
55
|
-
loadingIconURL: {};
|
|
56
|
-
user: {};
|
|
57
|
-
group: {};
|
|
58
|
-
disableReceipt: {};
|
|
59
|
-
onError: {};
|
|
60
|
-
disableSoundForMessages: {};
|
|
61
|
-
customSoundForMessages: {};
|
|
62
|
-
readIcon: {};
|
|
63
|
-
deliveredIcon: {};
|
|
64
|
-
sentIcon: {};
|
|
65
|
-
waitIcon: {};
|
|
66
|
-
errorIcon: {};
|
|
67
|
-
alignment: {};
|
|
68
|
-
showAvatar: {};
|
|
69
|
-
timestampAlignment: {};
|
|
70
|
-
DateSeparatorPattern: {};
|
|
71
|
-
templates: {};
|
|
72
|
-
messagesRequestBuilder: {};
|
|
73
|
-
newMessageIndicatorText: {};
|
|
74
|
-
onThreadRepliesClick: {};
|
|
75
|
-
headerView: {};
|
|
76
|
-
footerView: {};
|
|
77
|
-
datePattern: {};
|
|
78
|
-
parentMessageId: {};
|
|
79
|
-
avatarStyle: {};
|
|
80
|
-
dateSeparatorStyle: {};
|
|
81
|
-
messageListStyle: {};
|
|
82
|
-
messageInformationConfiguration: {};
|
|
83
|
-
reactionsConfiguration: {};
|
|
84
|
-
disableReactions: {};
|
|
85
|
-
emojiKeyboardStyle: {};
|
|
86
|
-
threadIndicatorIcon: {};
|
|
87
|
-
disableMentions: {};
|
|
88
|
-
textFormatters: {};
|
|
89
|
-
}>>, {}, {}>;
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
90
2
|
export default _default;
|
|
@@ -6,6 +6,9 @@ export declare class OfflineStoreLocalStorage implements OfflineStore {
|
|
|
6
6
|
constructor(storePrefix?: string);
|
|
7
7
|
getGroupMessages(groupId: string, pagination: MessagePaginationMeta): PaginatedResponse<Message>;
|
|
8
8
|
getThreadMessages(parentId: string, pagination: MessagePaginationMeta): PaginatedResponse<Message>;
|
|
9
|
+
getMessage(messageId: string): {
|
|
10
|
+
data: Message;
|
|
11
|
+
};
|
|
9
12
|
saveMessages(messages: Message[]): void;
|
|
10
13
|
purgeMessages(keepByConversationIds: string[]): void;
|
|
11
14
|
getConversations(pagination: ConversationPaginationMeta): PaginatedResponse<Conversation>;
|
package/dist/offline/types.d.ts
CHANGED
|
@@ -20,6 +20,7 @@ export interface Message {
|
|
|
20
20
|
receiver: string;
|
|
21
21
|
sentAt: number;
|
|
22
22
|
parentId?: string;
|
|
23
|
+
data?: any;
|
|
23
24
|
}
|
|
24
25
|
export interface Conversation {
|
|
25
26
|
conversationId: string;
|
|
@@ -35,6 +36,9 @@ export interface PaginatedResponse<T> {
|
|
|
35
36
|
export interface OfflineStore {
|
|
36
37
|
getGroupMessages(groupId: string, pagination: MessagePaginationMeta): PaginatedResponse<Message>;
|
|
37
38
|
getThreadMessages(parentId: string, pagination: MessagePaginationMeta): PaginatedResponse<Message>;
|
|
39
|
+
getMessage(messageId: string): {
|
|
40
|
+
data: Message;
|
|
41
|
+
};
|
|
38
42
|
saveMessages(messages: Message[]): void;
|
|
39
43
|
purgeMessages(keepByConversationIds: string[]): void;
|
|
40
44
|
getConversations(pagination: ConversationPaginationMeta): PaginatedResponse<Conversation>;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.cc-callscreen__view[data-v-a135c3f8],.cc-outgoingcall__wrapper[data-v-f7ff9c81],.cc-call-buttons__wrapper[data-v-3c946f4b]{height:100%;width:100%}.cc-callbuttons-buttons[data-v-3c946f4b]{display:flex;gap:8px}.cc-incomingcall__wrapper[data-v-efdc2891]{position:absolute;left:8px;top:8px;height:fit-content;width:fit-content;min-height:104px;min-width:230px;z-index:100;display:flex;flex-direction:column;justify-content:flex-start;gap:8px;align-items:flex-start}.cc-incomingcall-buttons[data-v-efdc2891]{display:flex;gap:8px}.cc-incomingcall__tailview[data-v-efdc2891]{position:relative}.cc-incomingcall__subtitleview[data-v-efdc2891]{display:flex;align-items:center;justify-content:flex-start;gap:6px}.cc-incomingcall__listitem[data-v-efdc2891]{width:100%;margin-left:-4px}*[data-v-2abc65da]{box-sizing:border-box}.cc-list__section[data-v-2abc65da]{margin-left:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar{background:transparent;width:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-users[data-v-e629a2c0]{overflow:hidden}.cc-users__menus[data-v-e629a2c0]{position:absolute;top:12px;right:12px;cursor:pointer}.cc-add-members__back-button[data-v-0d5d72e4]{position:absolute;left:8px;padding:12px 8px 8px}.cc-add-members__close-button[data-v-0d5d72e4]{position:absolute;right:8px;padding:12px 8px 8px}.cc-users[data-v-0d5d72e4]{height:90%}.cc-add-members__buttons[data-v-0d5d72e4]{height:10%;width:100%;display:flex;align-items:center;justify-content:center}.cc-add-members__buttons-add[data-v-0d5d72e4]{height:42px;width:100%}.cc-banned-members__back[data-v-830533bf]{position:absolute;left:8px;padding:12px 8px 8px}.cc-banned-members__close-button[data-v-830533bf]{position:absolute;right:8px;padding:12px 8px 8px}.cc-banned-members__tail-view[data-v-830533bf]{position:relative}.cc-banned-members__menus[data-v-830533bf]{position:absolute;right:12px;cursor:pointer}.cc-banned-members__unban[data-v-830533bf]{display:flex;align-items:center;justify-content:flex-end}.tail__view[data-v-a46c892f]{display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.cc-conversations__menus[data-v-a46c892f]{position:absolute;right:12px;cursor:pointer}.cc-conversations__default-subtitle-view[data-v-a46c892f]{display:flex;align-items:center;width:90%;flex-direction:column;justify-content:flex-start}.cc-conversations__subtitle[data-v-a46c892f]{display:flex;justify-content:flex-start;width:100%;align-items:center;min-height:22px}.cc-conversations__thread-view[data-v-a46c892f]{height:12px;display:flex;justify-content:flex-start;width:100%;align-items:center}.cc-conversations__subtitle-text[data-v-a46c892f]{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.cc-conversations__badge[data-v-a46c892f]{display:flex}.hidden[data-v-6971671a]{display:none!important}*[data-v-6971671a]{box-sizing:border-box}.cc-messagebubble-wrapper[data-v-6971671a]{position:relative;width:100%}.cc-messagebubble-wrapper__container[data-v-6971671a]{padding-right:8px;border-radius:inherit;display:flex;height:fit-content;width:fit-content;max-width:60%}.cc-messagebubble-wrapper__messagebubble[data-v-6971671a]{flex:1 1 0;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;min-width:0;padding:8px 2px;border-radius:inherit}.cc-messagebubble-wrapper__avatar[data-v-6971671a]{position:relative;border-radius:inherit;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;padding:8px 4px;margin-top:5px}.cc-messagebubble-title[data-v-6971671a]:empty:before{display:none}.cc-messagebubble-title[data-v-6971671a]:empty:after{display:block;width:100%;height:20px;padding:0 8px}.cc-messagebubble-wrapper__content[data-v-6971671a]{display:flex;flex-direction:column;border-radius:8px}.cc__messagelist__threadreplies[data-v-6971671a]{min-width:fit-content}.cc-messagebubble-wrapper__messageoptions[data-v-6971671a]{position:absolute;top:-4px;display:flex;align-items:center;justify-content:flex-end;z-index:1}.cc-message-information__close-button[data-v-e7349764]{position:absolute;right:15px}.cc-message-information__body[data-v-e7349764]{padding:20px 3%;box-sizing:border-box}.cc-message-information__default-subtitle-view[data-v-e7349764]{display:flex;align-items:self-end;width:90%;flex-direction:column;justify-content:flex-start}.cc-message_information__subtitle[data-v-e7349764]{display:flex;justify-content:space-between;width:100%;align-items:center;height:20px}.cc-conversations__date[data-v-e7349764]{display:flex;justify-content:flex-start;align-items:center;height:20px}.cc_message-information__body_message-bubble[data-v-e7349764]{display:flex}.cc-message_information__receipt-container[data-v-e7349764]{display:flex;align-items:center}.cc_message-information_empty-state-view[data-v-e7349764]{display:flex;align-items:flex-start;justify-content:center;margin-top:20px}.cc-messagelist[data-v-31b352ec]{height:100%;width:100%;overflow-y:auto}.cc-messagelist__wrapper[data-v-31b352ec]{height:100%;width:100%;padding:8px;overflow-y:hidden}.cc-messagelist__bubblefooter[data-v-31b352ec]{display:flex;justify-content:center;align-items:center}.cc-messagelist__date__container[data-v-31b352ec]{text-align:center;margin:8px}.cc-messagelist__date[data-v-31b352ec]{border-radius:10px}.cc-messagelist__messageindicator[data-v-31b352ec]{position:absolute;bottom:20%;left:50%;transform:translate(-50%);height:25px;width:150px;display:flex;justify-content:center;align-items:center;z-index:10}.cc-messagelist__footerview[data-v-31b352ec]{z-index:10;position:relative;bottom:5%;display:flex;align-items:center;justify-content:center;width:100%}.cc-messagelist__decoratormessage[data-v-31b352ec]{margin:0;line-height:30px;word-wrap:break-word;padding:0 8px;width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center;height:100%}.cc-messagelist[data-v-31b352ec]::-webkit-scrollbar{background:transparent;width:8px}.cc-messagelist[data-v-31b352ec]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-messagelist__message-information[data-v-31b352ec]{height:620px;width:360px}.cc-group-members[data-v-ec8effff]{overflow:hidden}.cc-group-members__back[data-v-ec8effff]{position:absolute;left:8px;padding:12px 8px 8px}.cc-group-members__wrapper[data-v-ec8effff]{height:100%;padding:8px;width:100%}.cc-group-members__close[data-v-ec8effff]{position:absolute;right:8px;padding:12px 8px 8px}.cc-group-members__tail-view[data-v-ec8effff]{position:relative;display:flex;gap:8px;justify-content:flex-end;align-items:center}.cc-group-members__menus[data-v-ec8effff]{position:absolute;right:12px;cursor:pointer}.cc-user-member-wrapper_component[data-v-889f1824]{max-height:196px;min-height:28px;overflow:hidden;width:100%;box-sizing:border-box;min-height:45px;margin-top:10px}.cc-messagecomposer-wrapper__sendbutton[data-v-3672c4a1],.cc-messagecomposer-wrapper__livereaction[data-v-3672c4a1]{margin:0 5px}.cc-messagecomposer-wrapper[data-v-3672c4a1]{height:100%;width:100%;position:relative;text-align:left;padding:16px 14px;box-sizing:border-box}.cc-messagecomposer-wrapper__headerview[data-v-3672c4a1]{height:fit-content;width:100%;bottom:120%;position:relative;z-index:2;padding:0 0 1px}.cc-messagecomposer__mentions[data-v-3672c4a1]{height:196px;max-height:196px;min-height:28px;overflow:hidden;position:absolute;width:100%;box-sizing:border-box;left:50%;transform:translate(-50%,-100%);display:flex!important;flex-direction:column!important;justify-content:flex-end!important;z-index:2;padding:3px 16px 1px 14px}.cc-messagecomposer__mentions[data-v-3672c4a1]::-webkit-scrollbar{display:none}.cc-messagecomposer-mediainput[data-v-3672c4a1]{display:none}.cc-messagecomposer-wrapper__auxilary[data-v-3672c4a1]{display:flex;gap:8px}.cc-messagecomposer__mentions-limit-exceeded[data-v-3672c4a1]{margin-top:20px;left:2px;position:relative;padding-left:13px;background-color:#fff}*[data-v-432766b6]{box-sizing:border-box;margin:0;padding:0}.cc-threadedmessages-wrapper[data-v-432766b6]{display:flex;flex-direction:column;height:90%;overflow-y:hidden;scrollbar-width:none}.cc-threadedmessages-wrapper__header[data-v-432766b6]{width:100%;display:flex;padding:16px;align-items:flex-start}.cc-threadedmessages-wrapper__close[data-v-432766b6]{display:flex;align-items:center}.cc-threadedmessages-wrapper__title[data-v-432766b6]{display:flex;align-items:center;justify-content:center;width:100%}.cc-threadedmessages-wrapper__bubbleview[data-v-432766b6]{width:100%;height:fit-content;padding:8px 16px;box-sizing:border-box;max-height:20em;overflow:scroll;min-height:100px}.cc-threadedmessages-wrapper__header[data-v-432766b6]{flex:0 0 auto}.cc-threadedmessages-wrapper__list[data-v-432766b6]{height:100%;overflow-y:auto;width:100%}.cc-threadedmessages-wrapper__composer[data-v-432766b6]{position:absolute;flex:0 0 auto;min-height:80px;z-index:1;width:100%;bottom:5px}.cc-threaded_message_main_wrapper[data-v-432766b6]{width:100%;height:calc(100% - 156px);display:flex;flex-direction:column}.cc__threadedmessages__actionview[data-v-432766b6]{height:36px;padding:8px 16px;box-sizing:border-box;border:1px solid rgba(20,20,20,.08);border-left:none}.cc-messageheader__wrapper[data-v-e3d99b23]{display:flex;align-items:center;justify-content:space-between;flex-direction:row;box-sizing:border-box}.cc-messageheader__backbutton[data-v-e3d99b23]{margin-right:8px}.cc-messageheader[data-v-e3d99b23]{display:flex;align-items:center;justify-content:flex-start;height:fit-content;width:100%}.cc-messageheader__listitem[data-v-e3d99b23]{height:100%;width:100%;align-items:center;justify-content:flex-start}.cc-messageheader__menu[data-v-e3d99b23]{width:fit-content;display:flex;align-items:center;justify-content:flex-end;padding:12px}.cc-transfer-ownership__members[data-v-dc105c9f]{width:100%;height:85%}.cc-transfer-ownership-buttons[data-v-dc105c9f]{width:100%;height:15%;display:flex;flex-direction:column;justify-content:flex-end;align-content:center;gap:10px;padding:12px 16px 28px;box-sizing:border-box}*[data-v-883b1b7e]{box-sizing:border-box;margin:0;padding:0}.cc-details__wrapper[data-v-883b1b7e]{padding:8px;border-radius:5px;height:100%;position:relative}.cc-details__profile[data-v-883b1b7e]{margin-bottom:50px;height:8%}.cc-details__section-list[data-v-883b1b7e]{height:84%;width:100%;overflow-y:auto;overflow-x:hidden}.cc-details__header[data-v-883b1b7e]{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.cc-details__close-button[data-v-883b1b7e]{position:absolute;right:20px}.cc-details__section[data-v-883b1b7e]{margin-bottom:32px}.cc-details__section-separator[data-v-883b1b7e]{margin-bottom:16px;padding-left:6px;height:5%}.cc-details__options-wrapper[data-v-883b1b7e]{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px}.cc-details__option[data-v-883b1b7e]{display:flex;flex-direction:column;justify-content:space-evenly;min-height:50px}.cc-details__option-title[data-v-883b1b7e]{padding-bottom:12px;display:flex;align-items:center;justify-content:space-between}.cc-details__view[data-v-883b1b7e]{position:absolute;top:0;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-details__section-list[data-v-883b1b7e]::-webkit-scrollbar{background:transparent;width:8px}.cc-details__section-list[data-v-883b1b7e]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}*[data-v-5716d3a9]{box-sizing:border-box;margin:0;padding:0}.cc-messages-wrapper[data-v-5716d3a9]{display:flex;position:relative;height:100%;width:100%}.cc-messages-wrapper__messages[data-v-5716d3a9]{display:flex;flex-direction:column;position:relative;width:100%;box-sizing:border-box;justify-content:space-between}.cc-messages-wrapper__threadedmessages[data-v-5716d3a9],.cc-messages-wrapper__details[data-v-5716d3a9]{position:absolute;top:5;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-messages-wrapper__header[data-v-5716d3a9]{width:100%}.cc-messages-wrapper__messages-list[data-v-5716d3a9]{overflow:hidden;height:calc(100% - 160px);width:100%;height:100%}CometChatThreadedMessages[data-v-5716d3a9]{height:100%;display:flex}.cc-messages-wrapper__composer[data-v-5716d3a9]{width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-groups__menus[data-v-d880813b]{position:absolute;right:12px;cursor:pointer;padding-right:12px}.cc-groups__subtitle-view[data-v-d880813b]{padding:0 0 5px}.cc-tabs-wrapper[data-v-6172e2d3]{height:100%;width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-tabs-wrapper_inner-div[data-v-6172e2d3]{height:100%;width:100%}.cc-tabs-wrapper-fixed_inner-div[data-v-6172e2d3]{margin-top:10px;height:80%;overflow:hidden}.cc-tabs-wrapper-fixed[data-v-6172e2d3]{height:100%;width:100%;display:flex;justify-content:center}.cc-tabs-wrapper-fixed-inner[data-v-6172e2d3]{height:100%;width:70%}.cc-tabs-fixed[data-v-6172e2d3]{top:0;left:0;width:100%}.cc-contacts__wrapper[data-v-9e87e8c4]{display:flex;flex-direction:column;height:100%;width:100%;align-items:flex-end;z-index:2}.cc-contacts__header[data-v-9e87e8c4]{display:flex;justify-content:center;align-items:center;height:50px;width:100%;box-sizing:border-box;padding:10px}.cc-contacts__close-button[data-v-9e87e8c4]{position:absolute;right:20px}.cc-withmessages__wrapper[data-v-b124a694]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-b124a694]{width:280px;height:100%;position:relative;display:flex}.cc-withmessages__main[data-v-b124a694]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-b124a694]{width:100%!important;height:100%;position:absolute}.cc-decorator__message-empty[data-v-b124a694]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__menus[data-v-b124a694]{display:flex;justify-content:flex-end;position:absolute;top:1%;right:2%}.cc-withmessages-wrapper[data-v-ba8e0f68]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-ba8e0f68]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-ba8e0f68]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-ba8e0f68]{width:100%!important;height:100%;position:absolute}.cc__decorator__message--empty[data-v-ba8e0f68]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__joingroup[data-v-ba8e0f68]{width:calc(100% - 280px);height:100vh}.cc-decorator-message-empty[data-v-ba8e0f68]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages-wrapper[data-v-d6eab96f]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-d6eab96f]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-d6eab96f]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-d6eab96f]{width:100%!important;height:100%;position:absolute}.cc-decorator-message-empty[data-v-d6eab96f]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.bcc-chat-msg-bubble{padding:8px 12px;width:auto;max-width:500px;line-height:1.2;font:400 14px Archivo,sans-serif,Inter;color:var(--cc__text-color)}.bcc-chat-msg-bubble p{color:var(--cc__text-color);line-height:1.2;word-break:break-word;text-align:left;white-space:normal;margin:8px 0}.bcc-chat-msg-bubble p:first-child{margin-top:0}.bcc-chat-msg-bubble p:last-child{margin-bottom:0}.bcc-chat-msg-bubble h1{font-size:1.6em;font-weight:800}.bcc-chat-msg-bubble h2{font-size:1.4em;font-weight:700}.bcc-chat-msg-bubble h3{font-size:1.2em;font-weight:600}.bcc-chat-msg-bubble h4{font-size:1em;font-weight:500}.bcc-chat-msg-bubble a{color:var(--cc__link-color);text-decoration:underline;font-weight:500}.bcc-chat-msg-bubble ul{padding-left:16px;list-style:disc;margin:8px 0}.bcc-chat-msg-bubble ol{padding-left:16px;list-style:decimal;margin:8px 0}.bcc-chat-msg-bubble--translated{border-top:1px solid;opacity:.8}.bcc-chat-msg-bubble--translated:before{content:"original: ";opacity:.8;margin-bottom:8px;font-size:12px;display:block}body{background:#fff;color:#000}@media (prefers-color-scheme: dark){body{background:#000;color:#fff}}.bcc-chat-message-list-wrapper{position:relative;height:100%}.bcc-chat-message-list{height:100%;--cc__primary: #cfeac8;--cc__background: #f3faf7;--cc__secondary: white;--cc__accent: #004e48;--cc__accent50: rgba(62, 142, 117, .04);--cc__accent100: #ffffff;--cc__accent200: rgba(62, 142, 117, .15);--cc__accent300: rgba(62, 142, 117, .24);--cc__accent400: rgba(62, 142, 117, .33);--cc__accent500: rgba(62, 142, 117, .46);--cc__accent600: #004e48;--cc__accent700: #254a40;--cc__accent800: rgba(62, 142, 117, .82);--cc__accent900: #f3faf7;--cc__text-color: #000;--cc__link-color: #57639e}@media (prefers-color-scheme: dark){.bcc-chat-message-list{--cc__primary: #57639e;--cc__background: hsl(230, 25%, 15%);--cc__secondary: #111827;--cc__accent: #6274ae;--cc__accent50: rgba(98, 116, 174, .24);--cc__accent100: linear-gradient(45deg, #05070b 0%, #0c111c 100%);--cc__accent200: rgba(98, 116, 174, .35);--cc__accent300: rgba(98, 116, 174, .44);--cc__accent400: rgba(98, 116, 174, .53);--cc__accent500: rgba(98, 116, 174, .66);--cc__accent600: #758abc;--cc__accent700: #6274ae;--cc__accent800: rgba(98, 116, 174, .92);--cc__accent900: #f3faf7;--cc__text-color: #fff;--cc__link-color: #cfeac8}}.bcc-chat-message-list .cc-messages-wrapper .cc-messages-wrapper__messages .cc-messages-wrapper__messages-list{height:calc(100% - 96px)}.bcc-chat-message-list .cc-messagebubble-wrapper__container{max-width:80%}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions{border-radius:8px}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions .cc-context-menu__top-menu{border:1px var(--cc__secondary) solid!important}.bcc-chat-message-list .bcc-chat-message-composer-offline{position:relative;top:-96px;height:96px;width:100%;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);color:var(--cc__text-color);font:700 1rem sans-serif}.bcc-chat-message-list .bcc-chat-message-composer-offline span{width:100%;height:100%;display:flex;justify-content:center;align-items:center;border-radius:8px 8px 0 0}.bcc-chat-message-list-offline{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center;font:700 22px sans-serif;color:#bcbcbc}.cc-messagecomposer__emojikeyboard{display:none}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar,.cc__message-list::-webkit-scrollbar{background:transparent;width:8px}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar-thumb,.cc__message-list::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}
|
|
1
|
+
.cc-callscreen__view[data-v-cb028d4a],.cc-outgoingcall__wrapper[data-v-f7ff9c81],.cc-call-buttons__wrapper[data-v-05dde6b2]{height:100%;width:100%}.cc-callbuttons-buttons[data-v-05dde6b2]{display:flex;gap:8px}.cc-incomingcall__wrapper[data-v-efdc2891]{position:absolute;left:8px;top:8px;height:fit-content;width:fit-content;min-height:104px;min-width:230px;z-index:100;display:flex;flex-direction:column;justify-content:flex-start;gap:8px;align-items:flex-start}.cc-incomingcall-buttons[data-v-efdc2891]{display:flex;gap:8px}.cc-incomingcall__tailview[data-v-efdc2891]{position:relative}.cc-incomingcall__subtitleview[data-v-efdc2891]{display:flex;align-items:center;justify-content:flex-start;gap:6px}.cc-incomingcall__listitem[data-v-efdc2891]{width:100%;margin-left:-4px}*[data-v-2abc65da]{box-sizing:border-box}.cc-list__section[data-v-2abc65da]{margin-left:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar{background:transparent;width:8px}.cc-list__list[data-v-2abc65da]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-users[data-v-e629a2c0]{overflow:hidden}.cc-users__menus[data-v-e629a2c0]{position:absolute;top:12px;right:12px;cursor:pointer}.cc-add-members__back-button[data-v-0d5d72e4]{position:absolute;left:8px;padding:12px 8px 8px}.cc-add-members__close-button[data-v-0d5d72e4]{position:absolute;right:8px;padding:12px 8px 8px}.cc-users[data-v-0d5d72e4]{height:90%}.cc-add-members__buttons[data-v-0d5d72e4]{height:10%;width:100%;display:flex;align-items:center;justify-content:center}.cc-add-members__buttons-add[data-v-0d5d72e4]{height:42px;width:100%}.cc-banned-members__back[data-v-830533bf]{position:absolute;left:8px;padding:12px 8px 8px}.cc-banned-members__close-button[data-v-830533bf]{position:absolute;right:8px;padding:12px 8px 8px}.cc-banned-members__tail-view[data-v-830533bf]{position:relative}.cc-banned-members__menus[data-v-830533bf]{position:absolute;right:12px;cursor:pointer}.cc-banned-members__unban[data-v-830533bf]{display:flex;align-items:center;justify-content:flex-end}.tail__view[data-v-c6f0a164]{display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.cc-conversations__menus[data-v-c6f0a164]{position:absolute;right:12px;cursor:pointer}.cc-conversations__default-subtitle-view[data-v-c6f0a164]{display:flex;align-items:center;width:90%;flex-direction:column;justify-content:flex-start}.cc-conversations__subtitle[data-v-c6f0a164]{display:flex;justify-content:flex-start;width:100%;align-items:center;min-height:22px}.cc-conversations__thread-view[data-v-c6f0a164]{height:12px;display:flex;justify-content:flex-start;width:100%;align-items:center}.cc-conversations__subtitle-text[data-v-c6f0a164]{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.cc-conversations__badge[data-v-c6f0a164]{display:flex}.hidden[data-v-6971671a]{display:none!important}*[data-v-6971671a]{box-sizing:border-box}.cc-messagebubble-wrapper[data-v-6971671a]{position:relative;width:100%}.cc-messagebubble-wrapper__container[data-v-6971671a]{padding-right:8px;border-radius:inherit;display:flex;height:fit-content;width:fit-content;max-width:60%}.cc-messagebubble-wrapper__messagebubble[data-v-6971671a]{flex:1 1 0;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;min-width:0;padding:8px 2px;border-radius:inherit}.cc-messagebubble-wrapper__avatar[data-v-6971671a]{position:relative;border-radius:inherit;display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-end;padding:8px 4px;margin-top:5px}.cc-messagebubble-title[data-v-6971671a]:empty:before{display:none}.cc-messagebubble-title[data-v-6971671a]:empty:after{display:block;width:100%;height:20px;padding:0 8px}.cc-messagebubble-wrapper__content[data-v-6971671a]{display:flex;flex-direction:column;border-radius:8px}.cc__messagelist__threadreplies[data-v-6971671a]{min-width:fit-content}.cc-messagebubble-wrapper__messageoptions[data-v-6971671a]{position:absolute;top:-4px;display:flex;align-items:center;justify-content:flex-end;z-index:1}.cc-message-information__close-button[data-v-4a9bf6ef]{position:absolute;right:15px}.cc-message-information__body[data-v-4a9bf6ef]{padding:20px 3%;box-sizing:border-box}.cc-message-information__default-subtitle-view[data-v-4a9bf6ef]{display:flex;align-items:self-end;width:90%;flex-direction:column;justify-content:flex-start}.cc-message_information__subtitle[data-v-4a9bf6ef]{display:flex;justify-content:space-between;width:100%;align-items:center;height:20px}.cc-conversations__date[data-v-4a9bf6ef]{display:flex;justify-content:flex-start;align-items:center;height:20px}.cc_message-information__body_message-bubble[data-v-4a9bf6ef]{display:flex}.cc-message_information__receipt-container[data-v-4a9bf6ef]{display:flex;align-items:center}.cc_message-information_empty-state-view[data-v-4a9bf6ef]{display:flex;align-items:flex-start;justify-content:center;margin-top:20px}.cc-messagelist[data-v-5ca9f5c7]{height:100%;width:100%;overflow-y:auto}.cc-messagelist__wrapper[data-v-5ca9f5c7]{height:100%;width:100%;padding:8px;overflow-y:hidden}.cc-messagelist__bubblefooter[data-v-5ca9f5c7]{display:flex;justify-content:center;align-items:center}.cc-messagelist__date__container[data-v-5ca9f5c7]{text-align:center;margin:8px}.cc-messagelist__date[data-v-5ca9f5c7]{border-radius:10px}.cc-messagelist__messageindicator[data-v-5ca9f5c7]{position:absolute;bottom:20%;left:50%;transform:translate(-50%);height:25px;width:150px;display:flex;justify-content:center;align-items:center;z-index:10}.cc-messagelist__footerview[data-v-5ca9f5c7]{z-index:10;position:relative;bottom:5%;display:flex;align-items:center;justify-content:center;width:100%}.cc-messagelist__decoratormessage[data-v-5ca9f5c7]{margin:0;line-height:30px;word-wrap:break-word;padding:0 8px;width:100%;overflow:hidden;display:flex;align-items:center;justify-content:center;height:100%}.cc-messagelist[data-v-5ca9f5c7]::-webkit-scrollbar{background:transparent;width:8px}.cc-messagelist[data-v-5ca9f5c7]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-messagelist__message-information[data-v-5ca9f5c7]{height:620px;width:360px}.cc-group-members[data-v-ec8effff]{overflow:hidden}.cc-group-members__back[data-v-ec8effff]{position:absolute;left:8px;padding:12px 8px 8px}.cc-group-members__wrapper[data-v-ec8effff]{height:100%;padding:8px;width:100%}.cc-group-members__close[data-v-ec8effff]{position:absolute;right:8px;padding:12px 8px 8px}.cc-group-members__tail-view[data-v-ec8effff]{position:relative;display:flex;gap:8px;justify-content:flex-end;align-items:center}.cc-group-members__menus[data-v-ec8effff]{position:absolute;right:12px;cursor:pointer}.cc-user-member-wrapper_component[data-v-889f1824]{max-height:196px;min-height:28px;overflow:hidden;width:100%;box-sizing:border-box;min-height:45px;margin-top:10px}.cc-messagecomposer-wrapper__sendbutton[data-v-3a4fa027],.cc-messagecomposer-wrapper__livereaction[data-v-3a4fa027]{margin:0 5px}.cc-messagecomposer-wrapper[data-v-3a4fa027]{height:100%;width:100%;position:relative;text-align:left;padding:16px 14px;box-sizing:border-box}.cc-messagecomposer-wrapper__headerview[data-v-3a4fa027]{height:fit-content;width:100%;bottom:120%;position:relative;z-index:2;padding:0 0 1px}.cc-messagecomposer__mentions[data-v-3a4fa027]{height:196px;max-height:196px;min-height:28px;overflow:hidden;position:absolute;width:100%;box-sizing:border-box;left:50%;transform:translate(-50%,-100%);display:flex!important;flex-direction:column!important;justify-content:flex-end!important;z-index:2;padding:3px 16px 1px 14px}.cc-messagecomposer__mentions[data-v-3a4fa027]::-webkit-scrollbar{display:none}.cc-messagecomposer-mediainput[data-v-3a4fa027]{display:none}.cc-messagecomposer-wrapper__auxilary[data-v-3a4fa027]{display:flex;gap:8px}.cc-messagecomposer__mentions-limit-exceeded[data-v-3a4fa027]{margin-top:20px;left:2px;position:relative;padding-left:13px;background-color:#fff}*[data-v-fb54f357]{box-sizing:border-box;margin:0;padding:0}.cc-threadedmessages-wrapper[data-v-fb54f357]{display:flex;flex-direction:column;height:90%;overflow-y:hidden;scrollbar-width:none}.cc-threadedmessages-wrapper__header[data-v-fb54f357]{width:100%;display:flex;padding:16px;align-items:flex-start}.cc-threadedmessages-wrapper__close[data-v-fb54f357]{display:flex;align-items:center}.cc-threadedmessages-wrapper__title[data-v-fb54f357]{display:flex;align-items:center;justify-content:center;width:100%}.cc-threadedmessages-wrapper__bubbleview[data-v-fb54f357]{width:100%;height:fit-content;padding:8px 16px;box-sizing:border-box;max-height:20em;overflow:auto;min-height:100px}.cc-threadedmessages-wrapper__header[data-v-fb54f357]{flex:0 0 auto}.cc-threadedmessages-wrapper__list[data-v-fb54f357]{height:100%;overflow-y:auto;width:100%}.cc-threadedmessages-wrapper__composer[data-v-fb54f357]{position:absolute;flex:0 0 auto;min-height:80px;z-index:1;width:100%;bottom:5px}.cc-threaded_message_main_wrapper[data-v-fb54f357]{width:100%;height:calc(100% - 156px);display:flex;flex-direction:column}.cc__threadedmessages__actionview[data-v-fb54f357]{height:36px;padding:8px 16px;box-sizing:border-box;border:1px solid rgba(20,20,20,.08);border-left:none}.cc-messageheader__wrapper[data-v-0a6a3578]{display:flex;align-items:center;justify-content:space-between;flex-direction:row;box-sizing:border-box}.cc-messageheader__backbutton[data-v-0a6a3578]{margin-right:8px}.cc-messageheader[data-v-0a6a3578]{display:flex;align-items:center;justify-content:flex-start;height:fit-content;width:100%}.cc-messageheader__listitem[data-v-0a6a3578]{height:100%;width:100%;align-items:center;justify-content:flex-start}.cc-messageheader__menu[data-v-0a6a3578]{width:fit-content;display:flex;align-items:center;justify-content:flex-end;padding:12px}.cc-transfer-ownership__members[data-v-dc105c9f]{width:100%;height:85%}.cc-transfer-ownership-buttons[data-v-dc105c9f]{width:100%;height:15%;display:flex;flex-direction:column;justify-content:flex-end;align-content:center;gap:10px;padding:12px 16px 28px;box-sizing:border-box}*[data-v-da3dc518]{box-sizing:border-box;margin:0;padding:0}.cc-details__wrapper[data-v-da3dc518]{padding:8px;border-radius:5px;height:100%;position:relative}.cc-details__profile[data-v-da3dc518]{margin-bottom:50px;height:8%}.cc-details__section-list[data-v-da3dc518]{height:84%;width:100%;overflow-y:auto;overflow-x:hidden}.cc-details__header[data-v-da3dc518]{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.cc-details__close-button[data-v-da3dc518]{position:absolute;right:20px}.cc-details__section[data-v-da3dc518]{margin-bottom:32px}.cc-details__section-separator[data-v-da3dc518]{margin-bottom:16px;padding-left:6px;height:5%}.cc-details__options-wrapper[data-v-da3dc518]{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px}.cc-details__option[data-v-da3dc518]{display:flex;flex-direction:column;justify-content:space-evenly;min-height:50px}.cc-details__option-title[data-v-da3dc518]{padding-bottom:12px;display:flex;align-items:center;justify-content:space-between}.cc-details__view[data-v-da3dc518]{position:absolute;top:0;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-details__section-list[data-v-da3dc518]::-webkit-scrollbar{background:transparent;width:8px}.cc-details__section-list[data-v-da3dc518]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}*[data-v-3579dad5]{box-sizing:border-box;margin:0;padding:0}.cc-messages-wrapper[data-v-3579dad5]{display:flex;position:relative;height:100%;width:100%}.cc-messages-wrapper__messages[data-v-3579dad5]{display:flex;flex-direction:column;position:relative;width:100%;box-sizing:border-box;justify-content:space-between}.cc-messages-wrapper__threadedmessages[data-v-3579dad5],.cc-messages-wrapper__details[data-v-3579dad5]{position:absolute;top:5;left:0;height:100%;width:100%;max-height:100%;overflow-y:auto;overflow-x:hidden;max-width:100%;z-index:1}.cc-messages-wrapper__header[data-v-3579dad5]{width:100%}.cc-messages-wrapper__messages-list[data-v-3579dad5]{display:flex;flex-direction:column;overflow:hidden;height:calc(100% - 160px);width:100%;height:100%}CometChatThreadedMessages[data-v-3579dad5]{height:100%;display:flex}.cc-messages-wrapper__composer[data-v-3579dad5]{width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-groups__menus[data-v-f13b0c74]{position:absolute;right:12px;cursor:pointer;padding-right:12px}.cc-groups__subtitle-view[data-v-f13b0c74]{padding:0 0 5px}.cc-tabs-wrapper[data-v-6172e2d3]{height:100%;width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-tabs-wrapper_inner-div[data-v-6172e2d3]{height:100%;width:100%}.cc-tabs-wrapper-fixed_inner-div[data-v-6172e2d3]{margin-top:10px;height:80%;overflow:hidden}.cc-tabs-wrapper-fixed[data-v-6172e2d3]{height:100%;width:100%;display:flex;justify-content:center}.cc-tabs-wrapper-fixed-inner[data-v-6172e2d3]{height:100%;width:70%}.cc-tabs-fixed[data-v-6172e2d3]{top:0;left:0;width:100%}.cc-contacts__wrapper[data-v-9e87e8c4]{display:flex;flex-direction:column;height:100%;width:100%;align-items:flex-end;z-index:2}.cc-contacts__header[data-v-9e87e8c4]{display:flex;justify-content:center;align-items:center;height:50px;width:100%;box-sizing:border-box;padding:10px}.cc-contacts__close-button[data-v-9e87e8c4]{position:absolute;right:20px}.cc-withmessages__wrapper[data-v-bd446d52]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-bd446d52]{width:280px;height:100%;position:relative;display:flex}.cc-withmessages__main[data-v-bd446d52]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-bd446d52]{width:100%!important;height:100%;position:absolute}.cc-decorator__message-empty[data-v-bd446d52]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__menus[data-v-bd446d52]{display:flex;justify-content:flex-end;position:absolute;top:1%;right:2%}.cc-withmessages-wrapper[data-v-d60abe0e]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-d60abe0e]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-d60abe0e]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-d60abe0e]{width:100%!important;height:100%;position:absolute}.cc__decorator__message--empty[data-v-d60abe0e]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__joingroup[data-v-d60abe0e]{width:calc(100% - 280px);height:100vh}.cc-decorator-message-empty[data-v-d60abe0e]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages-wrapper[data-v-342ed2ff]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-342ed2ff]{width:280px;height:100%;position:relative}.cc-withmessages__main[data-v-342ed2ff]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-342ed2ff]{width:100%!important;height:100%;position:absolute}.cc-decorator-message-empty[data-v-342ed2ff]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.bcc__reply_preview__content_wrapper[data-v-9690de0b]{padding:0 12px;position:relative;display:grid}.bcc__reply_preview__content_bar[data-v-9690de0b]{position:absolute;top:0;bottom:0;border-radius:25px}.bcc__reply_preview__content[data-v-9690de0b]{grid-column:2}.bcc__reply_preview__content>p[data-v-9690de0b]{margin:0;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;word-break:break-all}.bcc__reply_preview__content>.bcc__reply_preview__title[data-v-9690de0b]{margin-bottom:2px}.bcc__reply_preview__thumbnail[data-v-9690de0b]{grid-column:1;width:2rem;height:2rem;align-self:center;border-radius:3px;overflow:hidden;margin-right:5px}.bcc__reply_preview__thumbnail>img[data-v-9690de0b]{width:100%;height:100%}.bcc-chat-msg-bubble{padding:8px 12px;width:auto;max-width:500px;line-height:1.2;font:400 14px Archivo,sans-serif,Inter;color:var(--cc__text-color)}.bcc-chat-msg-bubble p{color:var(--cc__text-color);line-height:1.2;word-break:break-word;text-align:left;white-space:normal;margin:8px 0}.bcc-chat-msg-bubble p:first-child{margin-top:0}.bcc-chat-msg-bubble p:last-child{margin-bottom:0}.bcc-chat-msg-bubble h1{font-size:1.6em;font-weight:800}.bcc-chat-msg-bubble h2{font-size:1.4em;font-weight:700}.bcc-chat-msg-bubble h3{font-size:1.2em;font-weight:600}.bcc-chat-msg-bubble h4{font-size:1em;font-weight:500}.bcc-chat-msg-bubble a{color:var(--cc__link-color);text-decoration:underline;font-weight:500}.bcc-chat-msg-bubble ul{padding-left:16px;list-style:disc;margin:8px 0}.bcc-chat-msg-bubble ol{padding-left:16px;list-style:decimal;margin:8px 0}.bcc-chat-msg-bubble--translated{border-top:1px solid;opacity:.8}.bcc-chat-msg-bubble--translated:before{content:"original: ";opacity:.8;margin-bottom:8px;font-size:12px;display:block}.bcc-chat-msg-bubble--reply{position:relative;z-index:0;margin-top:3px;margin-bottom:-8px;border-radius:6px;overflow:hidden}.bcc-chat-msg-bubble--reply:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;opacity:.5;z-index:-1;background-color:var(--cc__background)}.cc-messagecomposer-wrapper__headerview{position:static!important}[data-v-7dcd4a55]{box-sizing:border-box}.bcc__reply_box[data-v-7dcd4a55]{padding:8px;display:flex;flex-direction:row;justify-content:space-between;margin:0;min-height:30px}.bcc__reply_preview__close[data-v-7dcd4a55]{width:14px;height:14px;display:inline-block}body{background:#fff;color:#000}@media (prefers-color-scheme: dark){body{background:#000;color:#fff}}.bcc-chat-message-list-wrapper{position:relative;height:100%}.bcc-chat-message-list{height:100%;--cc__primary: #cfeac8;--cc__background: #f3faf7;--cc__secondary: white;--cc__accent: #004e48;--cc__accent50: rgba(62, 142, 117, .04);--cc__accent100: #ffffff;--cc__accent200: rgba(62, 142, 117, .15);--cc__accent300: rgba(62, 142, 117, .24);--cc__accent400: rgba(62, 142, 117, .33);--cc__accent500: rgba(62, 142, 117, .46);--cc__accent600: #004e48;--cc__accent700: #254a40;--cc__accent800: rgba(62, 142, 117, .82);--cc__accent900: #f3faf7;--cc__text-color: #000;--cc__link-color: #57639e}@media (prefers-color-scheme: dark){.bcc-chat-message-list{--cc__primary: #57639e;--cc__background: hsl(230, 25%, 15%);--cc__secondary: #111827;--cc__accent: #6274ae;--cc__accent50: rgba(98, 116, 174, .24);--cc__accent100: linear-gradient(45deg, #05070b 0%, #0c111c 100%);--cc__accent200: rgba(98, 116, 174, .35);--cc__accent300: rgba(98, 116, 174, .44);--cc__accent400: rgba(98, 116, 174, .53);--cc__accent500: rgba(98, 116, 174, .66);--cc__accent600: #758abc;--cc__accent700: #6274ae;--cc__accent800: rgba(98, 116, 174, .92);--cc__accent900: #f3faf7;--cc__text-color: #fff;--cc__link-color: #cfeac8}}.bcc-chat-message-list .cc-messages-wrapper .cc-messages-wrapper__messages .cc-messages-wrapper__messages-list{height:calc(100% - 96px)}.bcc-chat-message-list .cc-messages-wrapper .cc-messages-wrapper__messages .cc-messagecomposer-wrapper__headerview{margin-bottom:5px}.bcc-chat-message-list .cc-messagebubble-wrapper__container{max-width:80%}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions{border-radius:8px}.bcc-chat-message-list .cc-messagebubble-wrapper__messageoptions .cc-context-menu__top-menu{border:1px var(--cc__secondary) solid!important}.bcc-chat-message-list .bcc-chat-message-composer-offline{position:relative;top:-96px;height:96px;width:100%;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);color:var(--cc__text-color);font:700 1rem sans-serif}.bcc-chat-message-list .bcc-chat-message-composer-offline span{width:100%;height:100%;display:flex;justify-content:center;align-items:center;border-radius:8px 8px 0 0}.bcc-chat-message-list-offline{position:absolute;top:0;bottom:0;left:0;right:0;display:flex;justify-content:center;align-items:center;font:700 22px sans-serif;color:#bcbcbc}.cc-messagecomposer__emojikeyboard{display:none}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar,.cc__message-list::-webkit-scrollbar{background:transparent;width:8px}.cc-threadedmessages-wrapper__bubbleview::-webkit-scrollbar-thumb,.cc__message-list::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}
|