@mobilon-dev/chotto 0.3.33 → 0.3.35
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/chotto.css +1 -1
- package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue.js +2 -2
- package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue2.js +28 -27
- package/dist/components/1_atoms/ContextMenu/ContextMenu.vue.js +36 -22
- package/dist/components/1_icons/SettingsIcon.vue.js +6 -6
- package/dist/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js +164 -156
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js +4 -103
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue2.js +135 -0
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.js +33 -11
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue2.js +4 -0
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js +4 -102
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue2.js +135 -0
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue.js +21 -18
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue2.js +4 -0
- package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue.js +2 -2
- package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue2.js +89 -55
- package/dist/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.js +17 -14
- package/dist/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue2.js +4 -0
- package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js +4 -337
- package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue2.js +360 -0
- package/dist/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue.js +56 -11
- package/dist/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue2.js +4 -0
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue.js +2 -2
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue2.js +164 -100
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +184 -134
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +3 -3
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +1 -1
- package/dist/components/3_compounds/ChatList/ChatList.vue.js +101 -91
- package/dist/components/3_compounds/SideBar/SideBar.vue.js +68 -67
- package/dist/hooks/messages/useChannelAccentColor.js +35 -19
- package/dist/themes/dark.css +1 -1
- package/dist/themes/default.css +1 -1
- package/dist/themes/glass.css +1 -0
- package/dist/themes/green.css +1 -1
- package/dist/themes/mobilon1.css +1 -1
- package/dist/types/apps/data/messages.d.ts +117 -86
- package/dist/types/components/1_atoms/ContextMenu/ContextMenu.vue.d.ts +5 -1
- package/dist/types/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.d.ts +2 -0
- package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +2 -0
- package/dist/types/components/2_blocks/CommunicationPanel/styles/types.d.ts +4 -0
- package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.d.ts +31 -7
- package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/styles/types.d.ts +6 -0
- package/dist/types/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.d.ts +59 -11
- package/dist/types/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatinput_elements/StickerPicker/StickerPicker.vue.d.ts +22 -10
- package/dist/types/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue.d.ts +6 -1
- package/dist/types/components/2_chatlist_elements/ChatItem/ChatItem.vue.d.ts +2 -0
- package/dist/types/components/2_chatlist_elements/ChatItem/styles/types.d.ts +2 -0
- package/dist/types/components/2_elements/ChatInfo/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +18 -0
- package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +24 -0
- package/dist/types/components/2_feed_elements/DateMessage/styles/types.d.ts +6 -0
- package/dist/types/components/2_feed_elements/DateMessageSticky/styles/types.d.ts +4 -0
- package/dist/types/components/2_feed_elements/FeedKeyboard/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/FileMessage/styles/types.d.ts +12 -0
- package/dist/types/components/2_feed_elements/ImageMessage/styles/types.d.ts +126 -0
- package/dist/types/components/2_feed_elements/MessageReactions/styles/types.d.ts +8 -0
- package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +16 -0
- package/dist/types/components/3_compounds/ChatInput/styles/types.d.ts +2 -0
- package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +2 -0
- package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +8 -0
- package/dist/types/components/3_compounds/SideBar/styles/types.d.ts +6 -16
- package/dist/types/components/4_layouts/ChatWrapper/styles/types.d.ts +4 -0
- package/dist/types/components/4_layouts/ExtendedLayout/styles/types.d.ts +8 -0
- package/package.json +2 -1
|
@@ -5,12 +5,14 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
contactAttributes: unknown[];
|
|
6
6
|
recentAttributeChannels: Record<string, any>;
|
|
7
7
|
selectedDialog: Record<string, any>;
|
|
8
|
+
showChannelIcons: boolean;
|
|
8
9
|
$props: {
|
|
9
10
|
readonly channels?: unknown[] | undefined;
|
|
10
11
|
readonly channelTooltips?: Record<string, any> | undefined;
|
|
11
12
|
readonly contactAttributes?: unknown[] | undefined;
|
|
12
13
|
readonly recentAttributeChannels?: Record<string, any> | undefined;
|
|
13
14
|
readonly selectedDialog?: Record<string, any> | undefined;
|
|
15
|
+
readonly showChannelIcons?: boolean | undefined;
|
|
14
16
|
};
|
|
15
17
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
16
18
|
export default _default;
|
package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts
CHANGED
|
@@ -8,12 +8,14 @@ declare const meta: {
|
|
|
8
8
|
contactAttributes: unknown[];
|
|
9
9
|
recentAttributeChannels: Record<string, any>;
|
|
10
10
|
selectedDialog: Record<string, any>;
|
|
11
|
+
showChannelIcons: boolean;
|
|
11
12
|
$props: {
|
|
12
13
|
readonly channels?: unknown[] | undefined;
|
|
13
14
|
readonly channelTooltips?: Record<string, any> | undefined;
|
|
14
15
|
readonly contactAttributes?: unknown[] | undefined;
|
|
15
16
|
readonly recentAttributeChannels?: Record<string, any> | undefined;
|
|
16
17
|
readonly selectedDialog?: Record<string, any> | undefined;
|
|
18
|
+
readonly showChannelIcons?: boolean | undefined;
|
|
17
19
|
};
|
|
18
20
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
21
|
args: {};
|
|
@@ -152,6 +152,8 @@ export interface CommunicationPanelThemeCSSVariables {
|
|
|
152
152
|
'--chotto-communicationpanel-menu-right': string;
|
|
153
153
|
/** Цвет фона меню атрибутов */
|
|
154
154
|
'--chotto-communicationpanel-menu-background': string;
|
|
155
|
+
/** Backdrop filter меню атрибутов */
|
|
156
|
+
'--chotto-communicationpanel-menu-backdrop-filter': string;
|
|
155
157
|
/** Граница меню атрибутов */
|
|
156
158
|
'--chotto-communicationpanel-menu-border': string;
|
|
157
159
|
/** Радиус границы меню атрибутов */
|
|
@@ -288,6 +290,8 @@ export interface CommunicationPanelThemeCSSVariables {
|
|
|
288
290
|
'--chotto-communicationpanel-submenu-left': string;
|
|
289
291
|
/** Цвет фона подменю */
|
|
290
292
|
'--chotto-communicationpanel-submenu-background': string;
|
|
293
|
+
/** Backdrop filter подменю */
|
|
294
|
+
'--chotto-communicationpanel-submenu-backdrop-filter': string;
|
|
291
295
|
/** Граница подменю */
|
|
292
296
|
'--chotto-communicationpanel-submenu-border': string;
|
|
293
297
|
/** Радиус границы подменю */
|
package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.d.ts
CHANGED
|
@@ -1,11 +1,35 @@
|
|
|
1
|
-
|
|
1
|
+
import 'vue3-emoji-picker-ru/css';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
state: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
default: string;
|
|
6
|
+
};
|
|
7
|
+
mode: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
validator: (value: string) => boolean;
|
|
11
|
+
};
|
|
12
|
+
native: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
};
|
|
16
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
17
|
+
state: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
mode: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
default: string;
|
|
24
|
+
validator: (value: string) => boolean;
|
|
25
|
+
};
|
|
26
|
+
native: {
|
|
27
|
+
type: BooleanConstructor;
|
|
28
|
+
default: boolean;
|
|
29
|
+
};
|
|
30
|
+
}>> & Readonly<{}>, {
|
|
2
31
|
mode: string;
|
|
3
32
|
state: string;
|
|
4
33
|
native: boolean;
|
|
5
|
-
|
|
6
|
-
readonly mode?: string | undefined;
|
|
7
|
-
readonly state?: string | undefined;
|
|
8
|
-
readonly native?: boolean | undefined;
|
|
9
|
-
};
|
|
10
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
34
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
35
|
export default _default;
|
package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.d.ts
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
fill?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
fill: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
2
7
|
export default _default;
|
|
@@ -32,4 +32,10 @@ export interface ButtonEmojiPickerThemeCSSVariables {
|
|
|
32
32
|
'--chotto-buttonemojipicker-emoji-bottom': string;
|
|
33
33
|
/** З-индекс эмодзи-пикера */
|
|
34
34
|
'--chotto-buttonemojipicker-emoji-z-index': string;
|
|
35
|
+
/** Цвет фона эмодзи-пикера */
|
|
36
|
+
'--chotto-buttonemojipicker-emoji-picker-bg': string;
|
|
37
|
+
/** Цвет текста эмодзи-пикера */
|
|
38
|
+
'--chotto-buttonemojipicker-emoji-picker-text-color': string;
|
|
39
|
+
/** Эффект размытия фона эмодзи-пикера */
|
|
40
|
+
'--chotto-buttonemojipicker-emoji-picker-backdrop-filter': string;
|
|
35
41
|
}
|
|
@@ -1,17 +1,65 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
+
templates: {
|
|
3
|
+
type: ArrayConstructor;
|
|
4
|
+
required: false;
|
|
5
|
+
default: () => never[];
|
|
6
|
+
};
|
|
7
|
+
groupTemplates: {
|
|
8
|
+
type: ArrayConstructor;
|
|
9
|
+
required: false;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
mode: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
required: false;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
state: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
elevatedWindow: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
required: false;
|
|
24
|
+
};
|
|
25
|
+
chatBackground: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
default: undefined;
|
|
28
|
+
};
|
|
29
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30
|
+
templates: {
|
|
31
|
+
type: ArrayConstructor;
|
|
32
|
+
required: false;
|
|
33
|
+
default: () => never[];
|
|
34
|
+
};
|
|
35
|
+
groupTemplates: {
|
|
36
|
+
type: ArrayConstructor;
|
|
37
|
+
required: false;
|
|
38
|
+
default: () => never[];
|
|
39
|
+
};
|
|
40
|
+
mode: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
required: false;
|
|
43
|
+
default: string;
|
|
44
|
+
};
|
|
45
|
+
state: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
default: string;
|
|
48
|
+
};
|
|
49
|
+
elevatedWindow: {
|
|
50
|
+
type: BooleanConstructor;
|
|
51
|
+
required: false;
|
|
52
|
+
};
|
|
53
|
+
chatBackground: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: undefined;
|
|
56
|
+
};
|
|
57
|
+
}>> & Readonly<{}>, {
|
|
2
58
|
mode: string;
|
|
3
59
|
state: string;
|
|
4
60
|
templates: unknown[];
|
|
5
61
|
groupTemplates: unknown[];
|
|
6
62
|
elevatedWindow: boolean;
|
|
7
|
-
chatBackground
|
|
8
|
-
|
|
9
|
-
readonly mode?: string | undefined;
|
|
10
|
-
readonly state?: string | undefined;
|
|
11
|
-
readonly templates?: unknown[] | undefined;
|
|
12
|
-
readonly groupTemplates?: unknown[] | undefined;
|
|
13
|
-
readonly elevatedWindow?: boolean | undefined;
|
|
14
|
-
readonly chatBackground?: string | undefined;
|
|
15
|
-
};
|
|
16
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
63
|
+
chatBackground: string;
|
|
64
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
17
65
|
export default _default;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
fill?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
fill: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
2
7
|
export default _default;
|
package/dist/types/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.d.ts
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
fill?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
fill: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
2
7
|
export default _default;
|
|
@@ -1,13 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
import '@/components/2_feed_elements/StickerMessage/utils/suppress-lit-warning';
|
|
2
|
+
interface Sticker {
|
|
3
|
+
url: string;
|
|
4
|
+
alt?: string;
|
|
5
|
+
}
|
|
6
|
+
interface StickerTab {
|
|
7
|
+
id?: string;
|
|
8
|
+
label?: string;
|
|
9
|
+
stickers: Sticker[];
|
|
10
|
+
iconUrl?: string | null;
|
|
11
|
+
}
|
|
12
|
+
type StickerData = Sticker[] | Sticker[][] | StickerTab[];
|
|
13
|
+
type __VLS_Props = {
|
|
14
|
+
state?: string;
|
|
15
|
+
mode?: 'click' | 'hover';
|
|
16
|
+
stickers?: StickerData;
|
|
17
|
+
emptyText?: string;
|
|
18
|
+
};
|
|
19
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
20
|
+
mode: "click" | "hover";
|
|
3
21
|
state: string;
|
|
4
|
-
stickers:
|
|
22
|
+
stickers: StickerData;
|
|
5
23
|
emptyText: string;
|
|
6
|
-
|
|
7
|
-
readonly mode?: string | undefined;
|
|
8
|
-
readonly state?: string | undefined;
|
|
9
|
-
readonly stickers?: unknown[] | undefined;
|
|
10
|
-
readonly emptyText?: string | undefined;
|
|
11
|
-
};
|
|
12
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
24
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
25
|
export default _default;
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
fill?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
fill: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
2
7
|
export default _default;
|
|
@@ -2,6 +2,7 @@ import { IAction, IChatItem, IChatDialog } from './types';
|
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
chat: IChatItem;
|
|
4
4
|
showDialogs?: boolean;
|
|
5
|
+
contextMenuTrigger?: 'hover' | 'rightClick';
|
|
5
6
|
};
|
|
6
7
|
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
8
|
select: (args_0: {
|
|
@@ -23,5 +24,6 @@ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
23
24
|
onExpand?: ((args_0: IChatItem) => any) | undefined;
|
|
24
25
|
}>, {
|
|
25
26
|
showDialogs: boolean;
|
|
27
|
+
contextMenuTrigger: "hover" | "rightClick";
|
|
26
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
27
29
|
export default _default;
|
|
@@ -106,6 +106,8 @@ export interface ChatItemThemeCSSVariables {
|
|
|
106
106
|
'--chotto-chatitem-name-font-size': string;
|
|
107
107
|
/** Толщина шрифта имени */
|
|
108
108
|
'--chotto-chatitem-name-font-weight': string;
|
|
109
|
+
/** Цвет текста имени */
|
|
110
|
+
'--chotto-chatitem-name-text-color': string;
|
|
109
111
|
/** Переполнение последнего сообщения */
|
|
110
112
|
'--chotto-chatitem-last-message-overflow': string;
|
|
111
113
|
/** Обрезка текста последнего сообщения */
|
|
@@ -10,6 +10,8 @@ export interface ChatInfoThemeCSSVariables {
|
|
|
10
10
|
'--chotto-chatinfo-container-border-bottom': string;
|
|
11
11
|
/** Цвет фона контейнера информации о чате */
|
|
12
12
|
'--chotto-chatinfo-container-background-color': string;
|
|
13
|
+
/** Эффект размытия фона контейнера информации о чате */
|
|
14
|
+
'--chotto-chatinfo-container-backdrop-filter': string;
|
|
13
15
|
/** Максимальная высота контейнера информации о чате */
|
|
14
16
|
'--chotto-chatinfo-container-max-height': string;
|
|
15
17
|
/** Отображение базовой линии */
|
|
@@ -66,6 +66,8 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
66
66
|
'--chotto-audiomessage-right-arrow-height': string;
|
|
67
67
|
/** Базовая рамка хвостика справа */
|
|
68
68
|
'--chotto-audiomessage-right-arrow-border': string;
|
|
69
|
+
/** Верхняя часть рамки хвостика справа (цвет пузыря) */
|
|
70
|
+
'--chotto-audiomessage-right-arrow-border-top': string;
|
|
69
71
|
/** Слой псевдоэлемента справа */
|
|
70
72
|
'--chotto-audiomessage-right-arrow-z-index': string;
|
|
71
73
|
/** Позиционирование контейнера аудио-плеера */
|
|
@@ -98,6 +100,10 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
98
100
|
'--chotto-audiomessage-play-pause-height': string;
|
|
99
101
|
/** Скругление кнопки play/pause */
|
|
100
102
|
'--chotto-audiomessage-play-pause-border-radius': string;
|
|
103
|
+
/** Эффект размытия фона кнопки play/pause */
|
|
104
|
+
'--chotto-audiomessage-play-pause-backdrop-filter': string;
|
|
105
|
+
/** Тень кнопки play/pause */
|
|
106
|
+
'--chotto-audiomessage-play-pause-box-shadow': string;
|
|
101
107
|
/** Отображение кнопки play/pause */
|
|
102
108
|
'--chotto-audiomessage-play-pause-display': string;
|
|
103
109
|
/** Выравнивание элементов кнопки play/pause */
|
|
@@ -468,8 +474,20 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
468
474
|
'--chotto-audiomessage-content-border-radius': string;
|
|
469
475
|
/** Цвет фона левого пузыря */
|
|
470
476
|
'--chotto-audiomessage-left-background-color': string;
|
|
477
|
+
/** Эффект размытия фона левого пузыря */
|
|
478
|
+
'--chotto-audiomessage-left-backdrop-filter': string;
|
|
479
|
+
/** Граница левого пузыря */
|
|
480
|
+
'--chotto-audiomessage-left-border': string;
|
|
481
|
+
/** Тень левого пузыря */
|
|
482
|
+
'--chotto-audiomessage-left-box-shadow': string;
|
|
471
483
|
/** Цвет фона правого пузыря */
|
|
472
484
|
'--chotto-audiomessage-right-background-color': string;
|
|
485
|
+
/** Эффект размытия фона правого пузыря */
|
|
486
|
+
'--chotto-audiomessage-right-backdrop-filter': string;
|
|
487
|
+
/** Граница правого пузыря */
|
|
488
|
+
'--chotto-audiomessage-right-border': string;
|
|
489
|
+
/** Тень правого пузыря */
|
|
490
|
+
'--chotto-audiomessage-right-box-shadow': string;
|
|
473
491
|
/** Цвет фона иконки типа сообщения (play/pause) */
|
|
474
492
|
'--chotto-audiomessage-type-icon-background-color': string;
|
|
475
493
|
/** Размер иконки типа сообщения (play/pause) */
|
|
@@ -102,6 +102,10 @@ export interface CallMessageThemeCSSVariables {
|
|
|
102
102
|
'--chotto-callmessage-header-container-border-radius': string;
|
|
103
103
|
/** Цвет фона контейнера заголовка */
|
|
104
104
|
'--chotto-callmessage-header-container-background-color': string;
|
|
105
|
+
/** Эффект размытия фона контейнера заголовка */
|
|
106
|
+
'--chotto-callmessage-header-container-backdrop-filter': string;
|
|
107
|
+
/** Тень контейнера заголовка */
|
|
108
|
+
'--chotto-callmessage-header-container-box-shadow': string;
|
|
105
109
|
/** Выравнивание аватара */
|
|
106
110
|
'--chotto-callmessage-avatar-align-self': string;
|
|
107
111
|
/** Вписывание изображения аватара */
|
|
@@ -138,6 +142,10 @@ export interface CallMessageThemeCSSVariables {
|
|
|
138
142
|
'--chotto-callmessage-audio-button-border-radius': string;
|
|
139
143
|
/** Цвет фона кнопки аудио */
|
|
140
144
|
'--chotto-callmessage-audio-button-background-color': string;
|
|
145
|
+
/** Эффект размытия фона кнопки аудио */
|
|
146
|
+
'--chotto-callmessage-audio-button-backdrop-filter': string;
|
|
147
|
+
/** Тень кнопки аудио */
|
|
148
|
+
'--chotto-callmessage-audio-button-box-shadow': string;
|
|
141
149
|
/** Отображение кнопки аудио */
|
|
142
150
|
'--chotto-callmessage-audio-button-display': string;
|
|
143
151
|
/** Выравнивание элементов кнопки аудио */
|
|
@@ -206,6 +214,10 @@ export interface CallMessageThemeCSSVariables {
|
|
|
206
214
|
'--chotto-callmessage-audio-slider-thumb-height': string;
|
|
207
215
|
/** Цвет фона ползунка слайдера аудио */
|
|
208
216
|
'--chotto-callmessage-audio-slider-thumb-background-color': string;
|
|
217
|
+
/** Граница ползунка слайдера аудио */
|
|
218
|
+
'--chotto-callmessage-audio-slider-thumb-border': string;
|
|
219
|
+
/** Тень ползунка слайдера аудио */
|
|
220
|
+
'--chotto-callmessage-audio-slider-thumb-box-shadow': string;
|
|
209
221
|
/** Внешний отступ сверху ползунка слайдера аудио */
|
|
210
222
|
'--chotto-callmessage-audio-slider-thumb-margin-top': string;
|
|
211
223
|
/** Скругление ползунка слайдера аудио */
|
|
@@ -302,6 +314,12 @@ export interface CallMessageThemeCSSVariables {
|
|
|
302
314
|
'--chotto-callmessage-left-subtext-margin': string;
|
|
303
315
|
/** Колонка грида контента слева */
|
|
304
316
|
'--chotto-callmessage-left-content-grid-column': string;
|
|
317
|
+
/** Эффект размытия фона блока слева */
|
|
318
|
+
'--chotto-callmessage-left-backdrop-filter': string;
|
|
319
|
+
/** Граница блока слева */
|
|
320
|
+
'--chotto-callmessage-left-border': string;
|
|
321
|
+
/** Тень блока слева */
|
|
322
|
+
'--chotto-callmessage-left-box-shadow': string;
|
|
305
323
|
/** Отступ сверху кнопки меню слева */
|
|
306
324
|
'--chotto-callmessage-left-menu-button-top': string;
|
|
307
325
|
/** Отступ справа кнопки меню слева */
|
|
@@ -358,6 +376,12 @@ export interface CallMessageThemeCSSVariables {
|
|
|
358
376
|
'--chotto-callmessage-right-content-grid-column': string;
|
|
359
377
|
/** Выравнивание контента справа */
|
|
360
378
|
'--chotto-callmessage-right-content-margin-left': string;
|
|
379
|
+
/** Эффект размытия фона блока справа */
|
|
380
|
+
'--chotto-callmessage-right-backdrop-filter': string;
|
|
381
|
+
/** Граница блока справа */
|
|
382
|
+
'--chotto-callmessage-right-border': string;
|
|
383
|
+
/** Тень блока справа */
|
|
384
|
+
'--chotto-callmessage-right-box-shadow': string;
|
|
361
385
|
/** Отступ сверху кнопки меню справа */
|
|
362
386
|
'--chotto-callmessage-right-menu-button-top': string;
|
|
363
387
|
/** Отступ справа кнопки меню справа */
|
|
@@ -27,6 +27,12 @@ export interface DateMessageThemeCSSVariables {
|
|
|
27
27
|
'--chotto-datemessage-text-border-radius': string;
|
|
28
28
|
/** Цвет фона текста даты */
|
|
29
29
|
'--chotto-datemessage-text-background-color': string;
|
|
30
|
+
/** Эффект размытия фона текста даты */
|
|
31
|
+
'--chotto-datemessage-text-backdrop-filter': string;
|
|
32
|
+
/** Граница текста даты */
|
|
33
|
+
'--chotto-datemessage-text-border': string;
|
|
34
|
+
/** Тень текста даты */
|
|
35
|
+
'--chotto-datemessage-text-box-shadow': string;
|
|
30
36
|
/** Размер шрифта текста даты */
|
|
31
37
|
'--chotto-datemessage-text-font-size': string;
|
|
32
38
|
/** Цвет текста даты */
|
|
@@ -30,6 +30,10 @@ export interface DateMessageStickyThemeCSSVariables {
|
|
|
30
30
|
'--chotto-datemessagesticky-text-font-size': string;
|
|
31
31
|
/** Цвет фона текста закреплённой даты */
|
|
32
32
|
'--chotto-datemessagesticky-text-background-color': string;
|
|
33
|
+
/** Эффект размытия фона текста закреплённой даты */
|
|
34
|
+
'--chotto-datemessagesticky-text-backdrop-filter': string;
|
|
35
|
+
/** Граница текста закреплённой даты */
|
|
36
|
+
'--chotto-datemessagesticky-text-border': string;
|
|
33
37
|
/** Цвет текста закреплённой даты */
|
|
34
38
|
'--chotto-datemessagesticky-text-color': string;
|
|
35
39
|
}
|
|
@@ -52,4 +52,6 @@ export interface FeedKeyboardThemeCSSVariables {
|
|
|
52
52
|
'--chotto-feedkeyboard-button-text-margin': string;
|
|
53
53
|
/** Жирность шрифта текста кнопки клавиатуры ленты */
|
|
54
54
|
'--chotto-feedkeyboard-button-text-font-weight': string;
|
|
55
|
+
/** Цвет шрифта текста кнопки клавиатуры ленты */
|
|
56
|
+
'--chotto-feedkeyboard-button-text-font-color': string;
|
|
55
57
|
}
|
|
@@ -50,8 +50,20 @@ export interface FileMessageThemeCSSVariables {
|
|
|
50
50
|
'--chotto-filemessage-right-triangle-z-index': string;
|
|
51
51
|
/** Цвет фона пузыря слева */
|
|
52
52
|
'--chotto-filemessage-left-bg': string;
|
|
53
|
+
/** Эффект размытия фона пузыря слева */
|
|
54
|
+
'--chotto-filemessage-left-backdrop-filter': string;
|
|
55
|
+
/** Граница пузыря слева */
|
|
56
|
+
'--chotto-filemessage-left-border': string;
|
|
57
|
+
/** Тень пузыря слева */
|
|
58
|
+
'--chotto-filemessage-left-box-shadow': string;
|
|
53
59
|
/** Цвет фона пузыря справа */
|
|
54
60
|
'--chotto-filemessage-right-bg': string;
|
|
61
|
+
/** Эффект размытия фона пузыря справа */
|
|
62
|
+
'--chotto-filemessage-right-backdrop-filter': string;
|
|
63
|
+
/** Граница пузыря справа */
|
|
64
|
+
'--chotto-filemessage-right-border': string;
|
|
65
|
+
/** Тень пузыря справа */
|
|
66
|
+
'--chotto-filemessage-right-box-shadow': string;
|
|
55
67
|
/** Выравнивание аватара относительно себя */
|
|
56
68
|
'--chotto-filemessage-avatar-align-self': string;
|
|
57
69
|
/** Вписывание изображения аватара */
|