@zohoim/chat-components 1.0.6 → 1.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,115 +0,0 @@
1
- /* eslint-disable camelcase */
2
- import { incomingBubbleBgColor, outgoingBubbleBgColor, bubbleActiveBgColor, messageStatusSendColor, messageStatusFailedColor, actionIconWrapperColor, primaryYellow, failedBgWrapper, failedBg, failedBdr, failedLine, failedColor, failedUrlColor } from "./commonColorVariable";
3
- import { imIntegrationIcon, imTtIcon, messagetextColor } from "../commonThemeColorVariable";
4
- export default {
5
- library: 'chat_components',
6
- variables: {
7
- actionIconWrapper: {
8
- color: actionIconWrapperColor,
9
- bg_color: '#2e2922',
10
- border_color: '#453925'
11
- },
12
- attachmentBubble: {
13
- bg_color: '#212121',
14
- bg_color_failed: failedBg,
15
- border_color: '#161515',
16
- border_color_failed: failedBdr
17
- },
18
- attachmentBubbleInfo: {
19
- fileName_color: '#e2e4e6',
20
- fileName_color_failed: failedColor,
21
- fileSize_color: '#999',
22
- fileSize_color_failed: '#788190'
23
- },
24
- articleBubble: {
25
- bg_color: '#212121',
26
- bg_color_failed: failedBg,
27
- border_color: '#161515',
28
- border_color_failed: failedBdr,
29
- title_color: '#e2e4e6',
30
- title_color_failed: failedColor,
31
- summary_color: '#e2e4e6',
32
- summary_color_failed: failedColor
33
- },
34
- imAutoMessageInfo: {
35
- text_color: '#999'
36
- },
37
- imIntegrationIcon,
38
- imTtIcon,
39
- imMessageContent: {
40
- text_color: '#a8b0bd'
41
- },
42
- imMessageMeta: {
43
- time_color: '#999'
44
- },
45
- imPermaLink: {
46
- url_color: '#d79835'
47
- },
48
- imageBubble: {
49
- bg_color: '#212121',
50
- bg_color_failed: failedBg,
51
- alt_text_color: '#e2e4e6',
52
- alt_text_color_failed: failedColor,
53
- border_color: '#161515',
54
- border_color_failed: failedBdr
55
- },
56
- locationBubble: {
57
- bg_color: '#212121',
58
- bg_color_failed: failedBg,
59
- border_color: '#161515',
60
- border_color_failed: failedBdr,
61
- url_color: primaryYellow,
62
- url_color_failed: failedUrlColor
63
- },
64
- messageBox: {
65
- incoming_bg_color: incomingBubbleBgColor,
66
- outgoing_bg_color: outgoingBubbleBgColor,
67
- bg_color: '#f1f7fe',
68
- failed_bg_color: failedBgWrapper,
69
- text_color: messagetextColor
70
- },
71
- messageBubble: {
72
- active_bg_color: bubbleActiveBgColor,
73
- messageBox_footer_text_color: '#5a616f'
74
- },
75
- messageStatus: {
76
- send_color: messageStatusSendColor,
77
- read_color: '#d79835',
78
- failed_color: messageStatusFailedColor
79
- },
80
- replyBubble: {
81
- border_color: '#161515',
82
- border_color_failed: failedBdr
83
- },
84
- replyBubbleContent: {
85
- bg_color: '#212121',
86
- bg_color_failed: failedBg,
87
- border_color: '#161515',
88
- border_color_failed: failedBdr,
89
- line_color: '#cddbf2',
90
- line_color_failed: failedLine,
91
- sender_color: '#e2e4e6',
92
- sender_color_failed: failedColor,
93
- content_color: '#e2e4e6',
94
- content_color_failed: failedColor
95
- },
96
- replyBubbleHeader: {
97
- text_color: '#e2e4e6',
98
- text_color_failed: failedColor,
99
- time_color: '#828994',
100
- time_color_failed: failedColor
101
- },
102
- textBubble: {
103
- text_color: '#e2e4e6',
104
- text_color_failed: failedColor,
105
- see_more_color: primaryYellow,
106
- see_more_color_failed: failedUrlColor,
107
- url_color: primaryYellow,
108
- url_color_failed: failedUrlColor
109
- },
110
- videoBubble: {
111
- border_color: '#161515',
112
- border_color_failed: failedBdr
113
- }
114
- }
115
- };