@bcc-code/vue-bcc-chat-ui 1.6.3 → 2.0.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/README.md +4 -3
- package/dist/chat/data.d.ts +5 -26
- package/dist/chat/environment.d.ts +3 -15
- package/dist/chat/index.d.ts +19 -51
- package/dist/chat/{mobileView.d.ts → styleFix.d.ts} +0 -9
- package/dist/chat/theme.d.ts +181 -14
- package/dist/chat/types.d.ts +27 -0
- package/dist/chat/uiKit.d.ts +4 -8
- package/dist/index.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/vue-bcc-chat-ui.js +14162 -14309
- package/package.json +2 -4
- package/src/components/BccChatMessageList.vue +48 -169
package/README.md
CHANGED
|
@@ -13,11 +13,12 @@ npm -i @bcc-code/vue-bcc-chat-ui
|
|
|
13
13
|
```
|
|
14
14
|
2. Register component in the Vue App
|
|
15
15
|
```ts
|
|
16
|
-
import
|
|
17
|
-
import "@bcc-code/vue-bcc-chat-ui/dist/styles.css";
|
|
16
|
+
import chat from "@bcc-code/vue-bcc-chat-ui";
|
|
18
17
|
|
|
19
18
|
const app = createApp(App);
|
|
20
19
|
app.use(chat, { environment: "prod", themeMode: "light" });
|
|
20
|
+
|
|
21
|
+
await chat.login("access-token")
|
|
21
22
|
```
|
|
22
23
|
|
|
23
24
|
3. Use component in Vue
|
|
@@ -32,7 +33,7 @@ const chatUid = ref('my-chat-id');
|
|
|
32
33
|
|
|
33
34
|
<template>
|
|
34
35
|
<div>
|
|
35
|
-
<BccChatMessageList :
|
|
36
|
+
<BccChatMessageList :chatUid="chatUid" />
|
|
36
37
|
</div>
|
|
37
38
|
</template>
|
|
38
39
|
|
package/dist/chat/data.d.ts
CHANGED
|
@@ -1,29 +1,8 @@
|
|
|
1
1
|
import { Group } from "@cometchat/chat-sdk-javascript";
|
|
2
2
|
import { Ref } from "vue";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
lastMessage: MessageInfo;
|
|
8
|
-
membersCount: number;
|
|
9
|
-
tags: string[];
|
|
10
|
-
}
|
|
11
|
-
export interface MessageInfo {
|
|
12
|
-
text?: string;
|
|
13
|
-
type: string;
|
|
14
|
-
senderName: string;
|
|
15
|
-
sentAt: Date;
|
|
16
|
-
}
|
|
3
|
+
import { UserChatInfo } from "./types";
|
|
4
|
+
export declare function getGroup(groupUid: string): Promise<Group | null>;
|
|
5
|
+
export declare function clearGroupChatCount(groupUid: string): Promise<void>;
|
|
6
|
+
export declare function getGroupOnlineCount(groupUid: string): Promise<number>;
|
|
17
7
|
export declare const userChats: Ref<UserChatInfo[]>;
|
|
18
|
-
export declare
|
|
19
|
-
export declare const clearGroupChatCount: (groupUid: string) => Promise<void>;
|
|
20
|
-
export declare const getGroupOnlineCount: (groupUid: string) => Promise<number>;
|
|
21
|
-
export declare const getUserChats: () => Promise<Ref<UserChatInfo[]>> | undefined;
|
|
22
|
-
declare const _default: {
|
|
23
|
-
getGroup: (groupUid: string) => Promise<Group | null>;
|
|
24
|
-
userChats: Ref<UserChatInfo[]>;
|
|
25
|
-
getUserChats: () => Promise<Ref<UserChatInfo[]>> | undefined;
|
|
26
|
-
clearGroupChatCount: (groupUid: string) => Promise<void>;
|
|
27
|
-
getGroupOnlineCount: (groupUid: string) => Promise<number>;
|
|
28
|
-
};
|
|
29
|
-
export default _default;
|
|
8
|
+
export declare function getUserChats(): Promise<UserChatInfo[]>;
|
|
@@ -1,15 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
appId: string;
|
|
5
|
-
chatApiEndpoint: string;
|
|
6
|
-
}
|
|
7
|
-
export declare const getCurrentEnvironment: () => ChatEnvironmentConfig;
|
|
8
|
-
export declare const setCurrentEnvironment: (environment: string | null) => ChatEnvironmentConfig;
|
|
9
|
-
export declare const install: (_: any, environment: string) => void;
|
|
10
|
-
declare const _default: {
|
|
11
|
-
install: (_: any, environment: string) => void;
|
|
12
|
-
setCurrentEnvironment: (environment: string | null) => ChatEnvironmentConfig;
|
|
13
|
-
getCurrentEnvironment: () => ChatEnvironmentConfig;
|
|
14
|
-
};
|
|
15
|
-
export default _default;
|
|
1
|
+
import { ChatEnvironmentConfig, Environment } from "./types";
|
|
2
|
+
export declare function getCurrentEnvironment(): ChatEnvironmentConfig;
|
|
3
|
+
export declare function setCurrentEnvironment(env: Environment): void;
|
package/dist/chat/index.d.ts
CHANGED
|
@@ -1,54 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
environment: string;
|
|
4
|
-
themeMode: string;
|
|
5
|
-
accessToken?: Ref<string | null | undefined> | null | undefined | string;
|
|
6
|
-
}
|
|
7
|
-
export * as theme from "./theme";
|
|
8
|
-
export * as uiKit from "./uiKit";
|
|
9
|
-
export * as mobileView from "./mobileView";
|
|
10
|
-
export * as connection from "./connection";
|
|
11
|
-
export * as data from "./data";
|
|
12
|
-
export * as environment from "./environment";
|
|
13
|
-
export * as login from "./login";
|
|
1
|
+
import { ChatInstallOptions } from "./types";
|
|
2
|
+
declare function install(app: any, options: ChatInstallOptions): Promise<void>;
|
|
14
3
|
declare const _default: {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
watchAndApplyStyle: typeof import("./mobileView").watchAndApplyStyle;
|
|
33
|
-
};
|
|
34
|
-
connection: {
|
|
35
|
-
setAccessToken: (token: string) => Promise<void>;
|
|
36
|
-
connect: (connectionName?: string | null | undefined) => Promise<boolean>;
|
|
37
|
-
disconnect: (connectionName?: string | null | undefined) => Promise<void>;
|
|
38
|
-
reconnect: () => Promise<boolean>;
|
|
39
|
-
connected: import("vue").ComputedRef<boolean>;
|
|
40
|
-
};
|
|
41
|
-
data: {
|
|
42
|
-
getGroup: (groupUid: string) => Promise<import("@cometchat/chat-sdk-javascript").Group | null>;
|
|
43
|
-
userChats: Ref<import("./data").UserChatInfo[]>;
|
|
44
|
-
getUserChats: () => Promise<Ref<import("./data").UserChatInfo[]>> | undefined;
|
|
45
|
-
clearGroupChatCount: (groupUid: string) => Promise<void>;
|
|
46
|
-
getGroupOnlineCount: (groupUid: string) => Promise<number>;
|
|
47
|
-
};
|
|
48
|
-
login: {
|
|
49
|
-
loggedIn: Ref<boolean>;
|
|
50
|
-
login: (accessToken?: string | null | undefined) => Promise<boolean | undefined>;
|
|
51
|
-
logout: () => Promise<boolean>;
|
|
52
|
-
};
|
|
4
|
+
loggedIn: import("vue").Ref<boolean>;
|
|
5
|
+
login: (accessToken?: string | null | undefined) => Promise<boolean | undefined>;
|
|
6
|
+
logout: () => Promise<boolean>;
|
|
7
|
+
getCurrentEnvironment(): import("./types").ChatEnvironmentConfig;
|
|
8
|
+
setCurrentEnvironment(env: import("./types").Environment): void;
|
|
9
|
+
setAccessToken: (token: string) => Promise<void>;
|
|
10
|
+
connect: (connectionName?: string | null | undefined) => Promise<boolean>;
|
|
11
|
+
disconnect: (connectionName?: string | null | undefined) => Promise<void>;
|
|
12
|
+
reconnect: () => Promise<boolean>;
|
|
13
|
+
connected: import("vue").ComputedRef<boolean>;
|
|
14
|
+
getGroup(groupUid: string): Promise<import("@cometchat/chat-sdk-javascript").Group | null>;
|
|
15
|
+
clearGroupChatCount(groupUid: string): Promise<void>;
|
|
16
|
+
getGroupOnlineCount(groupUid: string): Promise<number>;
|
|
17
|
+
getUserChats(): Promise<import("./types").UserChatInfo[]>;
|
|
18
|
+
userChats: import("vue").Ref<import("./types").UserChatInfo[]>;
|
|
19
|
+
install: typeof install;
|
|
20
|
+
initialized: import("vue").Ref<boolean>;
|
|
53
21
|
};
|
|
54
22
|
export default _default;
|
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export declare const switchView: () => void;
|
|
2
|
-
export declare const install: (app: any) => Promise<void>;
|
|
3
1
|
/**
|
|
4
2
|
*
|
|
5
3
|
* @param targetSelector
|
|
@@ -14,10 +12,3 @@ export declare function watchAndApplyStyle(targetSelector: string, apply: Array<
|
|
|
14
12
|
style: Record<string, string>;
|
|
15
13
|
shadowDomSelector?: string;
|
|
16
14
|
}>): MutationObserver | undefined;
|
|
17
|
-
declare const _default: {
|
|
18
|
-
install: (app: any) => Promise<void>;
|
|
19
|
-
switchView: () => void;
|
|
20
|
-
isMobileView: any;
|
|
21
|
-
watchAndApplyStyle: typeof watchAndApplyStyle;
|
|
22
|
-
};
|
|
23
|
-
export default _default;
|
package/dist/chat/theme.d.ts
CHANGED
|
@@ -1,14 +1,181 @@
|
|
|
1
|
-
|
|
2
|
-
export declare const
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import { ThemeMode } from './types';
|
|
2
|
+
export declare const theme: import("vue").Ref<{
|
|
3
|
+
palette: {
|
|
4
|
+
mode: string;
|
|
5
|
+
background: {
|
|
6
|
+
light?: string | undefined;
|
|
7
|
+
dark?: string | undefined;
|
|
8
|
+
};
|
|
9
|
+
primary: {
|
|
10
|
+
light?: string | undefined;
|
|
11
|
+
dark?: string | undefined;
|
|
12
|
+
};
|
|
13
|
+
error: {
|
|
14
|
+
light?: string | undefined;
|
|
15
|
+
dark?: string | undefined;
|
|
16
|
+
};
|
|
17
|
+
accent: {
|
|
18
|
+
light?: string | undefined;
|
|
19
|
+
dark?: string | undefined;
|
|
20
|
+
};
|
|
21
|
+
accent50: {
|
|
22
|
+
light?: string | undefined;
|
|
23
|
+
dark?: string | undefined;
|
|
24
|
+
};
|
|
25
|
+
accent100: {
|
|
26
|
+
light?: string | undefined;
|
|
27
|
+
dark?: string | undefined;
|
|
28
|
+
};
|
|
29
|
+
accent200: {
|
|
30
|
+
light?: string | undefined;
|
|
31
|
+
dark?: string | undefined;
|
|
32
|
+
};
|
|
33
|
+
accent300: {
|
|
34
|
+
light?: string | undefined;
|
|
35
|
+
dark?: string | undefined;
|
|
36
|
+
};
|
|
37
|
+
accent400: {
|
|
38
|
+
light?: string | undefined;
|
|
39
|
+
dark?: string | undefined;
|
|
40
|
+
};
|
|
41
|
+
accent500: {
|
|
42
|
+
light?: string | undefined;
|
|
43
|
+
dark?: string | undefined;
|
|
44
|
+
};
|
|
45
|
+
accent600: {
|
|
46
|
+
light?: string | undefined;
|
|
47
|
+
dark?: string | undefined;
|
|
48
|
+
};
|
|
49
|
+
accent700: {
|
|
50
|
+
light?: string | undefined;
|
|
51
|
+
dark?: string | undefined;
|
|
52
|
+
};
|
|
53
|
+
accent800: {
|
|
54
|
+
light?: string | undefined;
|
|
55
|
+
dark?: string | undefined;
|
|
56
|
+
};
|
|
57
|
+
accent900: {
|
|
58
|
+
light?: string | undefined;
|
|
59
|
+
dark?: string | undefined;
|
|
60
|
+
};
|
|
61
|
+
success: {
|
|
62
|
+
light?: string | undefined;
|
|
63
|
+
dark?: string | undefined;
|
|
64
|
+
};
|
|
65
|
+
secondary: {
|
|
66
|
+
light?: string | undefined;
|
|
67
|
+
dark?: string | undefined;
|
|
68
|
+
};
|
|
69
|
+
getAccent: (mode?: string | undefined) => string | undefined;
|
|
70
|
+
getAccent50: (mode?: string | undefined) => string | undefined;
|
|
71
|
+
getAccent100: (mode?: string | undefined) => string | undefined;
|
|
72
|
+
getAccent200: (mode?: string | undefined) => string | undefined;
|
|
73
|
+
getAccent300: (mode?: string | undefined) => string | undefined;
|
|
74
|
+
getAccent400: (mode?: string | undefined) => string | undefined;
|
|
75
|
+
getAccent500: (mode?: string | undefined) => string | undefined;
|
|
76
|
+
getAccent600: (mode?: string | undefined) => string | undefined;
|
|
77
|
+
getAccent700: (mode?: string | undefined) => string | undefined;
|
|
78
|
+
getAccent800: (mode?: string | undefined) => string | undefined;
|
|
79
|
+
getAccent900: (mode?: string | undefined) => string | undefined;
|
|
80
|
+
getSuccess: (mode?: string | undefined) => string | undefined;
|
|
81
|
+
getError: (mode?: string | undefined) => string | undefined;
|
|
82
|
+
getPrimary: (mode?: string | undefined) => string | undefined;
|
|
83
|
+
getSecondary: (mode?: string | undefined) => string | undefined;
|
|
84
|
+
getBackground: (mode?: string | undefined) => string | undefined;
|
|
85
|
+
setMode: (mode: string) => void;
|
|
86
|
+
setBackground: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
87
|
+
setPrimary: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
88
|
+
setSecondary: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
89
|
+
setError: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
90
|
+
setAccent: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
91
|
+
setAccent50: (colorset?: import("@cometchat/uikit-resources").PaletteItem | undefined) => void;
|
|
92
|
+
setAccent100: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
93
|
+
setAccent200: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
94
|
+
setAccent300: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
95
|
+
setAccent400: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
96
|
+
setAccent500: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
97
|
+
setAccent600: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
98
|
+
setAccent700: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
99
|
+
setAccent800: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
100
|
+
setAccent900: (colorset: import("@cometchat/uikit-resources").PaletteItem) => void;
|
|
101
|
+
};
|
|
102
|
+
typography: {
|
|
103
|
+
fontFamily: string;
|
|
104
|
+
fontWeightRegular: string;
|
|
105
|
+
fontWeightMedium: string;
|
|
106
|
+
fontWeightSemibold: string;
|
|
107
|
+
fontWeightBold: string;
|
|
108
|
+
heading: {
|
|
109
|
+
fontFamily: string;
|
|
110
|
+
fontWeight: string;
|
|
111
|
+
fontSize: string;
|
|
112
|
+
};
|
|
113
|
+
name: {
|
|
114
|
+
fontFamily: string;
|
|
115
|
+
fontWeight: string;
|
|
116
|
+
fontSize: string;
|
|
117
|
+
};
|
|
118
|
+
title1: {
|
|
119
|
+
fontFamily: string;
|
|
120
|
+
fontWeight: string;
|
|
121
|
+
fontSize: string;
|
|
122
|
+
};
|
|
123
|
+
title2: {
|
|
124
|
+
fontFamily: string;
|
|
125
|
+
fontWeight: string;
|
|
126
|
+
fontSize: string;
|
|
127
|
+
};
|
|
128
|
+
subtitle1: {
|
|
129
|
+
fontFamily: string;
|
|
130
|
+
fontWeight: string;
|
|
131
|
+
fontSize: string;
|
|
132
|
+
};
|
|
133
|
+
subtitle2: {
|
|
134
|
+
fontFamily: string;
|
|
135
|
+
fontWeight: string;
|
|
136
|
+
fontSize: string;
|
|
137
|
+
};
|
|
138
|
+
text1: {
|
|
139
|
+
fontFamily: string;
|
|
140
|
+
fontWeight: string;
|
|
141
|
+
fontSize: string;
|
|
142
|
+
};
|
|
143
|
+
text2: {
|
|
144
|
+
fontFamily: string;
|
|
145
|
+
fontWeight: string;
|
|
146
|
+
fontSize: string;
|
|
147
|
+
};
|
|
148
|
+
text3: {
|
|
149
|
+
fontFamily: string;
|
|
150
|
+
fontWeight: string;
|
|
151
|
+
fontSize: string;
|
|
152
|
+
};
|
|
153
|
+
caption1: {
|
|
154
|
+
fontFamily: string;
|
|
155
|
+
fontWeight: string;
|
|
156
|
+
fontSize: string;
|
|
157
|
+
};
|
|
158
|
+
caption2: {
|
|
159
|
+
fontFamily: string;
|
|
160
|
+
fontWeight: string;
|
|
161
|
+
fontSize: string;
|
|
162
|
+
};
|
|
163
|
+
setFontFamily: (fontFamily: string) => void;
|
|
164
|
+
setFontWeightRegular: (fontWeightRegular: string) => void;
|
|
165
|
+
setFontWeightMedium: (fontWeightMedium: string) => void;
|
|
166
|
+
setFontWeightSemibold: (fontWeightSemibold: string) => void;
|
|
167
|
+
setFontWeightBold: (fontWeightBold: string) => void;
|
|
168
|
+
setHeading: (headingFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
169
|
+
setName: (nameFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
170
|
+
setTitle1: (titleFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
171
|
+
setTitle2: (titleFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
172
|
+
setSubtitle1: (subtitleFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
173
|
+
setSubtitle2: (subtitleFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
174
|
+
setText1: (textFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
175
|
+
setText2: (textFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
176
|
+
setText3: (textFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
177
|
+
setCaption1: (captionFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
178
|
+
setCaption2: (captionFont: import("@cometchat/uikit-resources").CometChatFont) => void;
|
|
179
|
+
};
|
|
180
|
+
}>;
|
|
181
|
+
export declare const setThemeMode: (mode: ThemeMode) => void;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { Ref } from "vue";
|
|
2
|
+
export interface ChatInstallOptions {
|
|
3
|
+
environment: Environment;
|
|
4
|
+
themeMode: ThemeMode;
|
|
5
|
+
accessToken?: Ref<string | null | undefined> | null | undefined | string;
|
|
6
|
+
}
|
|
7
|
+
export type Environment = 'prod' | 'sandbox';
|
|
8
|
+
export type ChatEnvironmentConfig = {
|
|
9
|
+
region: string;
|
|
10
|
+
appId: string;
|
|
11
|
+
chatApiEndpoint: string;
|
|
12
|
+
};
|
|
13
|
+
export interface UserChatInfo {
|
|
14
|
+
chatUid: string;
|
|
15
|
+
name: string;
|
|
16
|
+
unreadMessageCount: number;
|
|
17
|
+
lastMessage: MessageInfo;
|
|
18
|
+
membersCount: number;
|
|
19
|
+
tags: string[];
|
|
20
|
+
}
|
|
21
|
+
export interface MessageInfo {
|
|
22
|
+
text?: string;
|
|
23
|
+
type: string;
|
|
24
|
+
senderName: string;
|
|
25
|
+
sentAt: Date;
|
|
26
|
+
}
|
|
27
|
+
export type ThemeMode = 'dark' | 'light';
|
package/dist/chat/uiKit.d.ts
CHANGED
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export declare
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
init: () => Promise<void>;
|
|
6
|
-
getUIKitSettings: () => import("@cometchat/chat-uikit-vue").UIKitSettings;
|
|
7
|
-
};
|
|
8
|
-
export default _default;
|
|
1
|
+
import { MessageListConfiguration, MessageComposerConfiguration } from "@cometchat/uikit-shared";
|
|
2
|
+
export declare function setupUiKit(): Promise<void>;
|
|
3
|
+
export declare const messageComposerConfiguration: MessageComposerConfiguration;
|
|
4
|
+
export declare const messageListConfiguration: import("vue").ComputedRef<MessageListConfiguration>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
-
import BccChatMessageList from "./components/BccChatMessageList.vue";
|
|
2
1
|
import chat from "./chat";
|
|
3
|
-
export
|
|
2
|
+
export * from './chat/types';
|
|
3
|
+
export { default as BccChatMessageList } from "./components/BccChatMessageList.vue";
|
|
4
|
+
export default chat;
|
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-b7ea3cf6]{height:100%;width:100%}.cc-callbuttons-buttons[data-v-b7ea3cf6]{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-cfa9634b]{box-sizing:border-box}.cc-list__section[data-v-cfa9634b]{margin-left:8px}.cc-list__list[data-v-cfa9634b]::-webkit-scrollbar{background:transparent;width:8px}.cc-list__list[data-v-cfa9634b]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-users__menus[data-v-0907e532]{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-83aa9620]{display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.cc-conversations__menus[data-v-83aa9620]{position:absolute;right:12px;cursor:pointer}.cc-conversations__default-subtitle-view[data-v-83aa9620]{display:flex;align-items:center;width:90%;flex-direction:column;justify-content:flex-start}.cc-conversations__subtitle[data-v-83aa9620]{display:flex;justify-content:flex-start;width:100%;align-items:center;min-height:22px}.cc-conversations__thread-view[data-v-83aa9620]{height:12px;display:flex;justify-content:flex-start;width:100%;align-items:center}.hidden[data-v-c848126c]{display:none!important}*[data-v-c848126c]{box-sizing:border-box}.cc-messagebubble-wrapper[data-v-c848126c]{position:relative;width:100%}.cc-messagebubble-wrapper__container[data-v-c848126c]{padding-right:8px;border-radius:inherit;display:flex;height:fit-content;width:fit-content;max-width:60%}.cc-messagebubble-wrapper__messagebubble[data-v-c848126c]{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-c848126c]{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-c848126c]:empty:before{display:none}.cc-messagebubble-title[data-v-c848126c]:empty:after{display:block;width:100%;height:20px;padding:0 8px}.cc-messagebubble-wrapper__content[data-v-c848126c]{display:flex;flex-direction:column;border-radius:8px}.cc__messagelist__threadreplies[data-v-c848126c]{min-width:fit-content}.cc-messagebubble-wrapper__messageoptions[data-v-c848126c]{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-d5c858f9]{height:100%;width:100%;overflow-y:auto}.cc-messagelist__wrapper[data-v-d5c858f9]{height:100%;width:100%;padding:8px;overflow-y:hidden}.cc-messagelist__bubblefooter[data-v-d5c858f9]{display:flex;justify-content:center;align-items:center}.cc-messagelist__date__container[data-v-d5c858f9]{text-align:center;margin:8px}.cc-messagelist__date[data-v-d5c858f9]{border-radius:10px}.cc-messagelist__messageindicator[data-v-d5c858f9]{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-d5c858f9]{z-index:10;position:relative;bottom:5%;display:flex;align-items:center;justify-content:center;width:100%}.cc-messagelist__decoratormessage[data-v-d5c858f9]{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-d5c858f9]::-webkit-scrollbar{background:transparent;width:8px}.cc-messagelist[data-v-d5c858f9]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-messagelist__message-information[data-v-d5c858f9]{height:620px;width:360px}.cc-messagecomposer-wrapper__sendbutton[data-v-8d417be8],.cc-messagecomposer-wrapper__livereaction[data-v-8d417be8]{margin:0 5px}.cc-messagecomposer-wrapper[data-v-8d417be8]{height:100%;width:100%;position:relative;text-align:left;padding:16px 14px;box-sizing:border-box}.cc-messagecomposer-wrapper__headerview[data-v-8d417be8]{height:fit-content;position:absolute;width:85%;box-sizing:border-box;left:50%;transform:translate(-50%,-100%);z-index:2}.cc-messagecomposer-mediainput[data-v-8d417be8]{display:none}.cc-messagecomposer-wrapper__auxilary[data-v-8d417be8]{display:flex;gap:8px}.cc-messagecomposer__input[data-v-8d417be8]{height:100%}*[data-v-6394404a]{box-sizing:border-box;margin:0;padding:0}.cc-threadedmessages-wrapper[data-v-6394404a]{display:flex;flex-direction:column;height:90%;overflow-y:hidden;scrollbar-width:none}.cc-threadedmessages-wrapper__header[data-v-6394404a]{width:100%;display:flex;padding:16px;align-items:flex-start}.cc-threadedmessages-wrapper__close[data-v-6394404a]{display:flex;align-items:center}.cc-threadedmessages-wrapper__title[data-v-6394404a]{display:flex;align-items:center;justify-content:center;width:100%}.cc-threadedmessages-wrapper__bubbleview[data-v-6394404a]{width:100%;height:fit-content;padding:8px 16px;box-sizing:border-box;max-height:20em;overflow:scroll}.cc-threadedmessages-wrapper__header[data-v-6394404a]{flex:0 0 auto}.cc-threadedmessages-wrapper__list[data-v-6394404a]{height:fit-content;overflow-y:auto;width:100%}.cc-threadedmessages-wrapper__composer[data-v-6394404a]{position:absolute;flex:0 0 auto;min-height:80px;z-index:1;width:100%;bottom:5px}.cc-threaded_message_main_wrapper[data-v-6394404a]{width:100%;height:calc(100% - 156px);display:flex;flex-direction:column}.cc__threadedmessages__actionview[data-v-6394404a]{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-4a60bf8d]{display:flex;align-items:center;justify-content:space-between;flex-direction:row;box-sizing:border-box}.cc-messageheader__backbutton[data-v-4a60bf8d]{margin-right:8px}.cc-messageheader[data-v-4a60bf8d]{display:flex;align-items:center;justify-content:flex-start;height:fit-content;width:100%}.cc-messageheader__listitem[data-v-4a60bf8d]{height:100%;width:100%;align-items:center;justify-content:flex-start}.cc-messageheader__menu[data-v-4a60bf8d]{width:fit-content;display:flex;align-items:center;justify-content:flex-end;padding:12px}.cc-group-members__back[data-v-659ce801]{position:absolute;left:8px;padding:12px 8px 8px}.cc-group-members__wrapper[data-v-659ce801]{height:100%;padding:8px;width:100%}.cc-group-members__close[data-v-659ce801]{position:absolute;right:8px;padding:12px 8px 8px}.cc-group-members__tail-view[data-v-659ce801]{position:relative;display:flex;gap:8px;justify-content:flex-end;align-items:center}.cc-group-members__menus[data-v-659ce801]{position:absolute;right:12px;cursor:pointer}.cc-transfer-ownership__members[data-v-648ef9e9]{width:100%;height:85%}.cc-transfer-ownership-buttons[data-v-648ef9e9]{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-21e39d45]{box-sizing:border-box;margin:0;padding:0}.cc-details__wrapper[data-v-21e39d45]{padding:8px;border-radius:5px;height:100%;position:relative}.cc-details__profile[data-v-21e39d45]{margin-bottom:50px;height:8%}.cc-details__section-list[data-v-21e39d45]{height:84%;width:100%;overflow-y:auto;overflow-x:hidden}.cc-details__header[data-v-21e39d45]{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.cc-details__close-button[data-v-21e39d45]{position:absolute;right:20px}.cc-details__section[data-v-21e39d45]{margin-bottom:32px}.cc-details__section-separator[data-v-21e39d45]{margin-bottom:16px;padding-left:6px;height:5%}.cc-details__options-wrapper[data-v-21e39d45]{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px}.cc-details__option[data-v-21e39d45]{display:flex;flex-direction:column;justify-content:space-evenly;min-height:50px}.cc-details__option-title[data-v-21e39d45]{padding-bottom:12px;display:flex;align-items:center;justify-content:space-between}.cc-details__view[data-v-21e39d45]{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-21e39d45]::-webkit-scrollbar{background:transparent;width:8px}.cc-details__section-list[data-v-21e39d45]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}*[data-v-c3d78378]{box-sizing:border-box;margin:0;padding:0}.cc-messages-wrapper[data-v-c3d78378]{display:flex;position:relative;height:100%;width:100%}.cc-messages-wrapper__messages[data-v-c3d78378]{display:flex;flex-direction:column;position:relative;width:100%;box-sizing:border-box;justify-content:space-between}.cc-messages-wrapper__threadedmessages[data-v-c3d78378],.cc-messages-wrapper__details[data-v-c3d78378]{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-c3d78378]{height:64px;width:100%}.cc-messages-wrapper__messages-list[data-v-c3d78378]{height:calc(100% - 160px);width:100%;display:flex;flex-direction:column}CometChatThreadedMessages[data-v-c3d78378]{height:100%;display:flex}.cc-messages-wrapper__composer[data-v-c3d78378]{height:96px;width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-groups__menus[data-v-aec6dd7f]{position:absolute;right:12px;cursor:pointer;padding-right:12px}.cc-groups__subtitle-view[data-v-aec6dd7f]{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-6ead7b8f]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-6ead7b8f]{width:280px;height:100%;position:relative;display:flex}.cc-withmessages__main[data-v-6ead7b8f]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-6ead7b8f]{width:100%!important;height:100%;position:absolute}.cc-decorator__message-empty[data-v-6ead7b8f]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__menus[data-v-6ead7b8f]{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)}body{background:#fff;color:#000}@media (prefers-color-scheme: dark){body{background:#000;color:#fff}}.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}@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}}.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__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%;box-sizing:border-box;padding:16px 14px;color:#b0b0b0;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;background:#ffffffbf;border-radius:12px}.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;z-index:-1}.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-a135c3f8],.cc-outgoingcall__wrapper[data-v-f7ff9c81],.cc-call-buttons__wrapper[data-v-b7ea3cf6]{height:100%;width:100%}.cc-callbuttons-buttons[data-v-b7ea3cf6]{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-cfa9634b]{box-sizing:border-box}.cc-list__section[data-v-cfa9634b]{margin-left:8px}.cc-list__list[data-v-cfa9634b]::-webkit-scrollbar{background:transparent;width:8px}.cc-list__list[data-v-cfa9634b]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-users__menus[data-v-0907e532]{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-83aa9620]{display:flex;flex-direction:column;justify-content:flex-start;align-items:center}.cc-conversations__menus[data-v-83aa9620]{position:absolute;right:12px;cursor:pointer}.cc-conversations__default-subtitle-view[data-v-83aa9620]{display:flex;align-items:center;width:90%;flex-direction:column;justify-content:flex-start}.cc-conversations__subtitle[data-v-83aa9620]{display:flex;justify-content:flex-start;width:100%;align-items:center;min-height:22px}.cc-conversations__thread-view[data-v-83aa9620]{height:12px;display:flex;justify-content:flex-start;width:100%;align-items:center}.hidden[data-v-c848126c]{display:none!important}*[data-v-c848126c]{box-sizing:border-box}.cc-messagebubble-wrapper[data-v-c848126c]{position:relative;width:100%}.cc-messagebubble-wrapper__container[data-v-c848126c]{padding-right:8px;border-radius:inherit;display:flex;height:fit-content;width:fit-content;max-width:60%}.cc-messagebubble-wrapper__messagebubble[data-v-c848126c]{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-c848126c]{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-c848126c]:empty:before{display:none}.cc-messagebubble-title[data-v-c848126c]:empty:after{display:block;width:100%;height:20px;padding:0 8px}.cc-messagebubble-wrapper__content[data-v-c848126c]{display:flex;flex-direction:column;border-radius:8px}.cc__messagelist__threadreplies[data-v-c848126c]{min-width:fit-content}.cc-messagebubble-wrapper__messageoptions[data-v-c848126c]{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-d5c858f9]{height:100%;width:100%;overflow-y:auto}.cc-messagelist__wrapper[data-v-d5c858f9]{height:100%;width:100%;padding:8px;overflow-y:hidden}.cc-messagelist__bubblefooter[data-v-d5c858f9]{display:flex;justify-content:center;align-items:center}.cc-messagelist__date__container[data-v-d5c858f9]{text-align:center;margin:8px}.cc-messagelist__date[data-v-d5c858f9]{border-radius:10px}.cc-messagelist__messageindicator[data-v-d5c858f9]{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-d5c858f9]{z-index:10;position:relative;bottom:5%;display:flex;align-items:center;justify-content:center;width:100%}.cc-messagelist__decoratormessage[data-v-d5c858f9]{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-d5c858f9]::-webkit-scrollbar{background:transparent;width:8px}.cc-messagelist[data-v-d5c858f9]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}.cc-messagelist__message-information[data-v-d5c858f9]{height:620px;width:360px}.cc-messagecomposer-wrapper__sendbutton[data-v-8d417be8],.cc-messagecomposer-wrapper__livereaction[data-v-8d417be8]{margin:0 5px}.cc-messagecomposer-wrapper[data-v-8d417be8]{height:100%;width:100%;position:relative;text-align:left;padding:16px 14px;box-sizing:border-box}.cc-messagecomposer-wrapper__headerview[data-v-8d417be8]{height:fit-content;position:absolute;width:85%;box-sizing:border-box;left:50%;transform:translate(-50%,-100%);z-index:2}.cc-messagecomposer-mediainput[data-v-8d417be8]{display:none}.cc-messagecomposer-wrapper__auxilary[data-v-8d417be8]{display:flex;gap:8px}.cc-messagecomposer__input[data-v-8d417be8]{height:100%}*[data-v-6394404a]{box-sizing:border-box;margin:0;padding:0}.cc-threadedmessages-wrapper[data-v-6394404a]{display:flex;flex-direction:column;height:90%;overflow-y:hidden;scrollbar-width:none}.cc-threadedmessages-wrapper__header[data-v-6394404a]{width:100%;display:flex;padding:16px;align-items:flex-start}.cc-threadedmessages-wrapper__close[data-v-6394404a]{display:flex;align-items:center}.cc-threadedmessages-wrapper__title[data-v-6394404a]{display:flex;align-items:center;justify-content:center;width:100%}.cc-threadedmessages-wrapper__bubbleview[data-v-6394404a]{width:100%;height:fit-content;padding:8px 16px;box-sizing:border-box;max-height:20em;overflow:scroll}.cc-threadedmessages-wrapper__header[data-v-6394404a]{flex:0 0 auto}.cc-threadedmessages-wrapper__list[data-v-6394404a]{height:fit-content;overflow-y:auto;width:100%}.cc-threadedmessages-wrapper__composer[data-v-6394404a]{position:absolute;flex:0 0 auto;min-height:80px;z-index:1;width:100%;bottom:5px}.cc-threaded_message_main_wrapper[data-v-6394404a]{width:100%;height:calc(100% - 156px);display:flex;flex-direction:column}.cc__threadedmessages__actionview[data-v-6394404a]{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-4a60bf8d]{display:flex;align-items:center;justify-content:space-between;flex-direction:row;box-sizing:border-box}.cc-messageheader__backbutton[data-v-4a60bf8d]{margin-right:8px}.cc-messageheader[data-v-4a60bf8d]{display:flex;align-items:center;justify-content:flex-start;height:fit-content;width:100%}.cc-messageheader__listitem[data-v-4a60bf8d]{height:100%;width:100%;align-items:center;justify-content:flex-start}.cc-messageheader__menu[data-v-4a60bf8d]{width:fit-content;display:flex;align-items:center;justify-content:flex-end;padding:12px}.cc-group-members__back[data-v-659ce801]{position:absolute;left:8px;padding:12px 8px 8px}.cc-group-members__wrapper[data-v-659ce801]{height:100%;padding:8px;width:100%}.cc-group-members__close[data-v-659ce801]{position:absolute;right:8px;padding:12px 8px 8px}.cc-group-members__tail-view[data-v-659ce801]{position:relative;display:flex;gap:8px;justify-content:flex-end;align-items:center}.cc-group-members__menus[data-v-659ce801]{position:absolute;right:12px;cursor:pointer}.cc-transfer-ownership__members[data-v-648ef9e9]{width:100%;height:85%}.cc-transfer-ownership-buttons[data-v-648ef9e9]{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-21e39d45]{box-sizing:border-box;margin:0;padding:0}.cc-details__wrapper[data-v-21e39d45]{padding:8px;border-radius:5px;height:100%;position:relative}.cc-details__profile[data-v-21e39d45]{margin-bottom:50px;height:8%}.cc-details__section-list[data-v-21e39d45]{height:84%;width:100%;overflow-y:auto;overflow-x:hidden}.cc-details__header[data-v-21e39d45]{display:flex;justify-content:center;align-items:center;margin-bottom:30px}.cc-details__close-button[data-v-21e39d45]{position:absolute;right:20px}.cc-details__section[data-v-21e39d45]{margin-bottom:32px}.cc-details__section-separator[data-v-21e39d45]{margin-bottom:16px;padding-left:6px;height:5%}.cc-details__options-wrapper[data-v-21e39d45]{list-style:none;padding:0;display:flex;flex-direction:column;gap:8px}.cc-details__option[data-v-21e39d45]{display:flex;flex-direction:column;justify-content:space-evenly;min-height:50px}.cc-details__option-title[data-v-21e39d45]{padding-bottom:12px;display:flex;align-items:center;justify-content:space-between}.cc-details__view[data-v-21e39d45]{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-21e39d45]::-webkit-scrollbar{background:transparent;width:8px}.cc-details__section-list[data-v-21e39d45]::-webkit-scrollbar-thumb{background:#e8e5e5;border-radius:8px}*[data-v-c3d78378]{box-sizing:border-box;margin:0;padding:0}.cc-messages-wrapper[data-v-c3d78378]{display:flex;position:relative;height:100%;width:100%}.cc-messages-wrapper__messages[data-v-c3d78378]{display:flex;flex-direction:column;position:relative;width:100%;box-sizing:border-box;justify-content:space-between}.cc-messages-wrapper__threadedmessages[data-v-c3d78378],.cc-messages-wrapper__details[data-v-c3d78378]{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-c3d78378]{height:64px;width:100%}.cc-messages-wrapper__messages-list[data-v-c3d78378]{height:calc(100% - 160px);width:100%;display:flex;flex-direction:column}CometChatThreadedMessages[data-v-c3d78378]{height:100%;display:flex}.cc-messages-wrapper__composer[data-v-c3d78378]{height:96px;width:100%;display:flex;flex-direction:column;justify-content:flex-end}.cc-groups__menus[data-v-aec6dd7f]{position:absolute;right:12px;cursor:pointer;padding-right:12px}.cc-groups__subtitle-view[data-v-aec6dd7f]{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-6ead7b8f]{display:flex;height:100%;width:100%;box-sizing:border-box}.cc-withmessages__sidebar[data-v-6ead7b8f]{width:280px;height:100%;position:relative;display:flex}.cc-withmessages__main[data-v-6ead7b8f]{width:calc(100% - 280px);height:100%;margin-left:2px}.mobile[data-v-6ead7b8f]{width:100%!important;height:100%;position:absolute}.cc-decorator__message-empty[data-v-6ead7b8f]{display:flex;justify-content:center;align-items:center;width:calc(100% - 280px)}.cc-withmessages__menus[data-v-6ead7b8f]{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)}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}@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}}.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__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%;box-sizing:border-box;padding:16px 14px;color:#b0b0b0;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;background:#ffffffbf;border-radius:12px}.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;z-index:-1}.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}
|