@zohoim/chat-components 1.1.2-beta.2 → 1.1.2-beta.4

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.
Files changed (493) hide show
  1. package/README.md +1 -5
  2. package/es/ActionIcon/ActionIcon.js +4 -5
  3. package/es/ActionIconWrapper/css/ActionIconWrapper.module.css +2 -2
  4. package/es/AttachmentBubble/AttachmentBubble.js +8 -9
  5. package/es/AttachmentBubble/css/AttachmentBubble.module.css +1 -2
  6. package/es/AttachmentBubbleInfo/css/AttachmentBubbleInfo.module.css +2 -2
  7. package/es/AttachmentHandler/AttachmentHandler.js +4 -5
  8. package/es/AttachmentHandler/css/AttachmentHandler.module.css +2 -2
  9. package/es/AttachmentPreview/AttachmentPreview.js +7 -7
  10. package/es/AttachmentPreviewBody/AttachmentPreviewBody.js +7 -7
  11. package/es/AttachmentPreviewBody/css/AttachmentPreviewBody.module.css +8 -4
  12. package/es/AttachmentPreviewHeader/AttachmentPreviewHeader.js +7 -7
  13. package/es/AttachmentPreviewHeader/css/AttachmentPreviewHeader.module.css +4 -4
  14. package/es/AudioBubble/AudioBubble.js +8 -9
  15. package/es/Emoji/Emoji.js +0 -0
  16. package/es/Emoji/css/Emoji.module.css +4 -4
  17. package/es/Emoji/css/cssJSLogic.js +0 -0
  18. package/es/Emoji/index.js +0 -0
  19. package/es/Emoji/props/defaultProps.js +0 -0
  20. package/es/Emoji/props/propTypes.js +0 -0
  21. package/es/EmojiPopup/EmojiPopup.js +10 -9
  22. package/es/EmojiPopup/css/EmojiPopup.module.css +2 -2
  23. package/es/Emojis/Emojis.js +10 -9
  24. package/es/Emojis/index.js +0 -0
  25. package/es/Emojis/props/defaultProps.js +0 -0
  26. package/es/Emojis/props/propTypes.js +0 -0
  27. package/es/EmojisEmptyState/EmojisEmptyState.js +0 -0
  28. package/es/EmojisEmptyState/css/EmojisEmptyState.module.css +0 -0
  29. package/es/EmojisEmptyState/index.js +0 -0
  30. package/es/EmojisEmptyState/props/defaultProps.js +0 -0
  31. package/es/EmojisEmptyState/props/propTypes.js +0 -0
  32. package/es/EmojisFooter/EmojisFooter.js +4 -5
  33. package/es/EmojisFooter/css/EmojisFooter.module.css +2 -2
  34. package/es/EmojisFooter/index.js +0 -0
  35. package/es/EmojisFooter/props/defaultProps.js +0 -0
  36. package/es/EmojisFooter/props/propTypes.js +0 -0
  37. package/es/EmojisHeader/EmojisHeader.js +4 -5
  38. package/es/EmojisHeader/css/EmojisHeader.module.css +3 -3
  39. package/es/EmojisHeader/index.js +0 -0
  40. package/es/EmojisHeader/props/defaultProps.js +0 -0
  41. package/es/EmojisHeader/props/propTypes.js +0 -0
  42. package/es/EmojisList/EmojisList.js +6 -6
  43. package/es/EmojisList/css/EmojisList.module.css +3 -3
  44. package/es/EmojisList/css/cssJSLogic.js +0 -0
  45. package/es/EmojisList/index.js +0 -0
  46. package/es/EmojisList/props/defaultProps.js +0 -0
  47. package/es/EmojisList/props/propTypes.js +0 -0
  48. package/es/ImageBubble/css/ImageBubble.module.css +1 -1
  49. package/es/MediaBubbleWrapper/MediaBubbleWrapper.js +4 -6
  50. package/es/Message/Message.js +16 -9
  51. package/es/MessageAction/MessageAction.js +11 -10
  52. package/es/MessageActions/MessageActions.js +13 -11
  53. package/es/MessageActionsWrapper/MessageActionsWrapper.js +4 -5
  54. package/es/MessageBox/css/MessageBox.module.css +5 -5
  55. package/es/MessageBubble/css/MessageBubble.module.css +3 -3
  56. package/es/MoreActionItem/css/MoreActionItem.module.css +2 -2
  57. package/es/ReplyBubble/ReplyBubble.js +11 -10
  58. package/es/Theme/ThemeAssets.js +0 -18
  59. package/es/Theme/ThemeWrapper.js +9 -13
  60. package/es/Theme/TooltipWrapper.js +4 -5
  61. package/es/Theme/themeVariables/commonThemeColorVariable.js +17 -0
  62. package/es/Theme/themeVariables/dark/blueTheme.js +133 -0
  63. package/es/Theme/themeVariables/dark/commonColorVariable.js +35 -0
  64. package/es/Theme/themeVariables/dark/greenTheme.js +132 -0
  65. package/es/Theme/themeVariables/dark/orangeTheme.js +132 -0
  66. package/es/Theme/themeVariables/dark/redTheme.js +132 -0
  67. package/es/Theme/themeVariables/dark/yellowTheme.js +132 -0
  68. package/es/Theme/themeVariables/light/blueTheme.js +135 -0
  69. package/es/Theme/themeVariables/light/commonColorVariable.js +54 -0
  70. package/es/Theme/themeVariables/light/greenTheme.js +131 -0
  71. package/es/Theme/themeVariables/light/orangeTheme.js +131 -0
  72. package/es/Theme/themeVariables/light/redTheme.js +131 -0
  73. package/es/Theme/themeVariables/light/yellowTheme.js +131 -0
  74. package/es/Theme/themeVariables/pureDark/blueTheme.js +132 -0
  75. package/es/Theme/themeVariables/pureDark/commonColorVariable.js +37 -0
  76. package/es/Theme/themeVariables/pureDark/greenTheme.js +132 -0
  77. package/es/Theme/themeVariables/pureDark/orangeTheme.js +132 -0
  78. package/es/Theme/themeVariables/pureDark/redTheme.js +132 -0
  79. package/es/Theme/themeVariables/pureDark/yellowTheme.js +132 -0
  80. package/es/Theme/utils/getThemeConfigurations.js +55 -1
  81. package/es/VideoBubble/VideoBubble.js +8 -9
  82. package/es/icons/iconSrc/attachments/Audio.js +2 -1
  83. package/es/icons/iconSrc/attachments/Code.js +2 -1
  84. package/es/icons/iconSrc/attachments/Image.js +2 -1
  85. package/es/icons/iconSrc/attachments/Pdf.js +2 -1
  86. package/es/icons/iconSrc/attachments/Ppt.js +2 -1
  87. package/es/icons/iconSrc/attachments/Text.js +2 -1
  88. package/es/icons/iconSrc/attachments/Txt.js +2 -1
  89. package/es/icons/iconSrc/attachments/Unknown.js +2 -1
  90. package/es/icons/iconSrc/attachments/Video.js +2 -1
  91. package/es/icons/iconSrc/attachments/Xls.js +2 -1
  92. package/es/icons/iconSrc/attachments/Zip.js +2 -1
  93. package/es/icons/iconSrc/common/AlertTriangle.js +2 -1
  94. package/es/icons/iconSrc/common/Article.js +2 -1
  95. package/es/icons/iconSrc/common/Reply.js +2 -1
  96. package/es/icons/iconSrc/messageStatus/Clock.js +2 -1
  97. package/es/icons/iconSrc/messageStatus/DoubleTick.js +2 -1
  98. package/es/icons/iconSrc/messageStatus/Failed.js +2 -1
  99. package/es/icons/iconSrc/messageStatus/Tick.js +2 -1
  100. package/es/im/IMAttachmentHandler/IMAttachmentHandler.js +4 -5
  101. package/es/im/IMIntegrationIcon/css/IMIntegrationIcon.module.css +6 -6
  102. package/es/im/IMMessage/IMMessage.js +20 -17
  103. package/es/im/IMMessage/css/IMMessage.module.css +3 -3
  104. package/es/im/IMMessageContent/IMMessageContent.js +30 -18
  105. package/es/im/IMMessageMeta/IMMessageMeta.js +4 -5
  106. package/es/im/IMMessageMeta/css/IMMessageMeta.module.css +3 -3
  107. package/es/im/IMMessageMetaInfo/css/IMMessageMetaInfo.module.css +2 -2
  108. package/es/im/IMReplyBubble/IMReplyBubble.js +4 -6
  109. package/es/im/IMTextBubble/IMTextBubble.js +4 -6
  110. package/es/im/ReplyComposer/ReplyComposer.js +16 -12
  111. package/es/im/ReplyEditor/ReplyEditor.js +4 -5
  112. package/es/im/ReplyEditor/css/ReplyEditor.module.css +4 -4
  113. package/es/im/ReplyEditorExtensions/ReplyEditorExtensions.js +12 -11
  114. package/es/im/ReplyEditorSuggestions/ReplyEditorSuggestions.js +9 -8
  115. package/es/im/ReplyEditorSuggestionsPopup/ReplyEditorSuggestionsPopup.js +4 -5
  116. package/es/rte/Editor/css/Editor.module.css +0 -0
  117. package/es/rte/Editor/index.js +0 -0
  118. package/es/rte/Editor/props/defaultProps.js +0 -0
  119. package/es/rte/Editor/props/propTypes.js +0 -0
  120. package/package.json +22 -47
  121. package/assets/Appearance/dark/mode/General_DarkMode.module.css +0 -93
  122. package/assets/Appearance/dark/themes/blue/blue_General_DarkTheme.module.css +0 -40
  123. package/assets/Appearance/dark/themes/green/green_General_DarkTheme.module.css +0 -40
  124. package/assets/Appearance/dark/themes/orange/orange_General_DarkTheme.module.css +0 -40
  125. package/assets/Appearance/dark/themes/red/red_General_DarkTheme.module.css +0 -40
  126. package/assets/Appearance/dark/themes/yellow/yellow_General_DarkTheme.module.css +0 -40
  127. package/assets/Appearance/light/mode/General_LightMode.module.css +0 -93
  128. package/assets/Appearance/light/themes/blue/blue_General_LightTheme.module.css +0 -40
  129. package/assets/Appearance/light/themes/green/green_General_LightTheme.module.css +0 -40
  130. package/assets/Appearance/light/themes/orange/orange_General_LightTheme.module.css +0 -40
  131. package/assets/Appearance/light/themes/red/red_General_LightTheme.module.css +0 -40
  132. package/assets/Appearance/light/themes/yellow/yellow_General_LightTheme.module.css +0 -40
  133. package/assets/Appearance/pureDark/mode/General_PureDarkMode.module.css +0 -93
  134. package/assets/Appearance/pureDark/themes/blue/blue_General_PureDarkTheme.module.css +0 -40
  135. package/assets/Appearance/pureDark/themes/green/green_General_PureDarkTheme.module.css +0 -40
  136. package/assets/Appearance/pureDark/themes/orange/orange_General_PureDarkTheme.module.css +0 -40
  137. package/assets/Appearance/pureDark/themes/red/red_General_PureDarkTheme.module.css +0 -40
  138. package/assets/Appearance/pureDark/themes/yellow/yellow_General_PureDarkTheme.module.css +0 -40
  139. package/lib/ActionIcon/ActionIcon.js +0 -97
  140. package/lib/ActionIcon/css/ActionIcon.module.css +0 -8
  141. package/lib/ActionIcon/index.js +0 -15
  142. package/lib/ActionIcon/props/defaultProps.js +0 -17
  143. package/lib/ActionIcon/props/propTypes.js +0 -30
  144. package/lib/ActionIconWrapper/ActionIconWrapper.js +0 -81
  145. package/lib/ActionIconWrapper/css/ActionIconWrapper.module.css +0 -32
  146. package/lib/ActionIconWrapper/css/cssJSLogic.js +0 -21
  147. package/lib/ActionIconWrapper/index.js +0 -15
  148. package/lib/ActionIconWrapper/props/defaultProps.js +0 -15
  149. package/lib/ActionIconWrapper/props/propTypes.js +0 -24
  150. package/lib/AttachmentBubble/AttachmentBubble.js +0 -93
  151. package/lib/AttachmentBubble/css/AttachmentBubble.module.css +0 -56
  152. package/lib/AttachmentBubble/css/cssJSLogic.js +0 -22
  153. package/lib/AttachmentBubble/index.js +0 -15
  154. package/lib/AttachmentBubble/props/defaultProps.js +0 -17
  155. package/lib/AttachmentBubble/props/propTypes.js +0 -30
  156. package/lib/AttachmentBubbleInfo/AttachmentBubbleInfo.js +0 -63
  157. package/lib/AttachmentBubbleInfo/css/AttachmentBubbleInfo.module.css +0 -39
  158. package/lib/AttachmentBubbleInfo/css/cssJSLogic.js +0 -20
  159. package/lib/AttachmentBubbleInfo/index.js +0 -15
  160. package/lib/AttachmentBubbleInfo/props/defaultProps.js +0 -15
  161. package/lib/AttachmentBubbleInfo/props/propTypes.js +0 -20
  162. package/lib/AttachmentHandler/AttachmentHandler.js +0 -101
  163. package/lib/AttachmentHandler/css/AttachmentHandler.module.css +0 -27
  164. package/lib/AttachmentHandler/index.js +0 -15
  165. package/lib/AttachmentHandler/props/defaultProps.js +0 -19
  166. package/lib/AttachmentHandler/props/propTypes.js +0 -28
  167. package/lib/AttachmentIcon/AttachmentIcon.js +0 -84
  168. package/lib/AttachmentIcon/css/AttachmentIcon.module.css +0 -8
  169. package/lib/AttachmentIcon/css/cssJSLogic.js +0 -20
  170. package/lib/AttachmentIcon/index.js +0 -15
  171. package/lib/AttachmentIcon/props/defaultProps.js +0 -17
  172. package/lib/AttachmentIcon/props/propTypes.js +0 -31
  173. package/lib/AttachmentIcon/utils/getAttachmentIconComponent.js +0 -78
  174. package/lib/AttachmentPreview/AttachmentPreview.js +0 -144
  175. package/lib/AttachmentPreview/css/AttachmentPreview.module.css +0 -39
  176. package/lib/AttachmentPreview/index.js +0 -15
  177. package/lib/AttachmentPreview/props/defaultProps.js +0 -18
  178. package/lib/AttachmentPreview/props/propTypes.js +0 -44
  179. package/lib/AttachmentPreviewBody/AttachmentPreviewBody.js +0 -120
  180. package/lib/AttachmentPreviewBody/css/AttachmentPreviewBody.module.css +0 -71
  181. package/lib/AttachmentPreviewBody/index.js +0 -15
  182. package/lib/AttachmentPreviewBody/props/defaultProps.js +0 -16
  183. package/lib/AttachmentPreviewBody/props/propTypes.js +0 -31
  184. package/lib/AttachmentPreviewHeader/AttachmentPreviewHeader.js +0 -94
  185. package/lib/AttachmentPreviewHeader/css/AttachmentPreviewHeader.module.css +0 -47
  186. package/lib/AttachmentPreviewHeader/index.js +0 -15
  187. package/lib/AttachmentPreviewHeader/props/defaultProps.js +0 -16
  188. package/lib/AttachmentPreviewHeader/props/propTypes.js +0 -27
  189. package/lib/Audio/Audio.js +0 -55
  190. package/lib/Audio/css/Audio.module.css +0 -7
  191. package/lib/Audio/index.js +0 -15
  192. package/lib/Audio/props/defaultProps.js +0 -15
  193. package/lib/Audio/props/propTypes.js +0 -19
  194. package/lib/AudioBubble/AudioBubble.js +0 -68
  195. package/lib/AudioBubble/css/AudioBubble.module.css +0 -4
  196. package/lib/AudioBubble/index.js +0 -15
  197. package/lib/AudioBubble/props/defaultProps.js +0 -16
  198. package/lib/AudioBubble/props/propTypes.js +0 -27
  199. package/lib/Emoji/Emoji.js +0 -87
  200. package/lib/Emoji/css/Emoji.module.css +0 -48
  201. package/lib/Emoji/css/cssJSLogic.js +0 -22
  202. package/lib/Emoji/index.js +0 -15
  203. package/lib/Emoji/props/defaultProps.js +0 -17
  204. package/lib/Emoji/props/propTypes.js +0 -27
  205. package/lib/EmojiPopup/EmojiPopup.js +0 -135
  206. package/lib/EmojiPopup/css/EmojiPopup.module.css +0 -55
  207. package/lib/EmojiPopup/index.js +0 -15
  208. package/lib/EmojiPopup/props/defaultProps.js +0 -20
  209. package/lib/EmojiPopup/props/propTypes.js +0 -33
  210. package/lib/Emojis/Emojis.js +0 -92
  211. package/lib/Emojis/index.js +0 -15
  212. package/lib/Emojis/props/defaultProps.js +0 -19
  213. package/lib/Emojis/props/propTypes.js +0 -31
  214. package/lib/EmojisEmptyState/EmojisEmptyState.js +0 -74
  215. package/lib/EmojisEmptyState/css/EmojisEmptyState.module.css +0 -18
  216. package/lib/EmojisEmptyState/index.js +0 -15
  217. package/lib/EmojisEmptyState/props/defaultProps.js +0 -18
  218. package/lib/EmojisEmptyState/props/propTypes.js +0 -19
  219. package/lib/EmojisFooter/EmojisFooter.js +0 -87
  220. package/lib/EmojisFooter/css/EmojisFooter.module.css +0 -40
  221. package/lib/EmojisFooter/index.js +0 -15
  222. package/lib/EmojisFooter/props/defaultProps.js +0 -16
  223. package/lib/EmojisFooter/props/propTypes.js +0 -23
  224. package/lib/EmojisHeader/EmojisHeader.js +0 -74
  225. package/lib/EmojisHeader/css/EmojisHeader.module.css +0 -36
  226. package/lib/EmojisHeader/index.js +0 -15
  227. package/lib/EmojisHeader/props/defaultProps.js +0 -17
  228. package/lib/EmojisHeader/props/propTypes.js +0 -24
  229. package/lib/EmojisList/EmojisList.js +0 -143
  230. package/lib/EmojisList/css/EmojisList.module.css +0 -50
  231. package/lib/EmojisList/css/cssJSLogic.js +0 -27
  232. package/lib/EmojisList/index.js +0 -15
  233. package/lib/EmojisList/props/defaultProps.js +0 -19
  234. package/lib/EmojisList/props/propTypes.js +0 -31
  235. package/lib/Fonts/puviFont.module.css +0 -62
  236. package/lib/ImageBubble/ImageBubble.js +0 -98
  237. package/lib/ImageBubble/css/ImageBubble.module.css +0 -63
  238. package/lib/ImageBubble/css/cssJSLogic.js +0 -21
  239. package/lib/ImageBubble/index.js +0 -15
  240. package/lib/ImageBubble/props/defaultProps.js +0 -15
  241. package/lib/ImageBubble/props/propTypes.js +0 -24
  242. package/lib/LazyLoadImage/LazyLoadImage.js +0 -54
  243. package/lib/LazyLoadImage/css/LazyLoadImage.module.css +0 -5
  244. package/lib/LazyLoadImage/index.js +0 -15
  245. package/lib/LazyLoadImage/props/defaultProps.js +0 -15
  246. package/lib/LazyLoadImage/props/propTypes.js +0 -19
  247. package/lib/LocationBubble/LocationBubble.js +0 -77
  248. package/lib/LocationBubble/css/LocationBubble.module.css +0 -57
  249. package/lib/LocationBubble/css/cssJSLogic.js +0 -20
  250. package/lib/LocationBubble/images/location.png +0 -0
  251. package/lib/LocationBubble/index.js +0 -15
  252. package/lib/LocationBubble/props/defaultProps.js +0 -15
  253. package/lib/LocationBubble/props/propTypes.js +0 -19
  254. package/lib/MediaBubbleWrapper/MediaBubbleWrapper.js +0 -76
  255. package/lib/MediaBubbleWrapper/css/MediaBubbleWrapper.module.css +0 -7
  256. package/lib/MediaBubbleWrapper/index.js +0 -15
  257. package/lib/MediaBubbleWrapper/props/defaultProps.js +0 -16
  258. package/lib/MediaBubbleWrapper/props/propTypes.js +0 -28
  259. package/lib/Message/Message.js +0 -157
  260. package/lib/Message/index.js +0 -15
  261. package/lib/Message/props/defaultProps.js +0 -22
  262. package/lib/Message/props/propTypes.js +0 -55
  263. package/lib/MessageAction/MessageAction.js +0 -77
  264. package/lib/MessageAction/index.js +0 -15
  265. package/lib/MessageAction/props/defaultProps.js +0 -17
  266. package/lib/MessageAction/props/propTypes.js +0 -34
  267. package/lib/MessageActions/MessageActions.js +0 -135
  268. package/lib/MessageActions/css/MessageActions.module.css +0 -24
  269. package/lib/MessageActions/index.js +0 -15
  270. package/lib/MessageActions/props/defaultProps.js +0 -20
  271. package/lib/MessageActions/props/propTypes.js +0 -38
  272. package/lib/MessageActionsMore/MessageActionsMore.js +0 -128
  273. package/lib/MessageActionsMore/css/MessageActionsMore.module.css +0 -24
  274. package/lib/MessageActionsMore/index.js +0 -15
  275. package/lib/MessageActionsMore/props/defaultProps.js +0 -18
  276. package/lib/MessageActionsMore/props/propTypes.js +0 -29
  277. package/lib/MessageActionsWrapper/MessageActionsWrapper.js +0 -91
  278. package/lib/MessageActionsWrapper/css/MessageActionsWrapper.module.css +0 -7
  279. package/lib/MessageActionsWrapper/index.js +0 -15
  280. package/lib/MessageActionsWrapper/props/defaultProps.js +0 -19
  281. package/lib/MessageActionsWrapper/props/propTypes.js +0 -27
  282. package/lib/MessageAvatar/MessageAvatar.js +0 -64
  283. package/lib/MessageAvatar/css/MessageAvatar.module.css +0 -23
  284. package/lib/MessageAvatar/index.js +0 -15
  285. package/lib/MessageAvatar/props/defaultProps.js +0 -16
  286. package/lib/MessageAvatar/props/propTypes.js +0 -24
  287. package/lib/MessageBox/MessageBox.js +0 -82
  288. package/lib/MessageBox/css/MessageBox.module.css +0 -56
  289. package/lib/MessageBox/css/cssJSLogic.js +0 -22
  290. package/lib/MessageBox/index.js +0 -15
  291. package/lib/MessageBox/props/defaultProps.js +0 -15
  292. package/lib/MessageBox/props/propTypes.js +0 -24
  293. package/lib/MessageBubble/MessageBubble.js +0 -153
  294. package/lib/MessageBubble/css/MessageBubble.module.css +0 -101
  295. package/lib/MessageBubble/css/cssJSLogic.js +0 -38
  296. package/lib/MessageBubble/index.js +0 -15
  297. package/lib/MessageBubble/props/defaultProps.js +0 -22
  298. package/lib/MessageBubble/props/propTypes.js +0 -30
  299. package/lib/MessageStatus/MessageStatus.js +0 -88
  300. package/lib/MessageStatus/css/MessageStatus.module.css +0 -17
  301. package/lib/MessageStatus/css/cssJSLogic.js +0 -33
  302. package/lib/MessageStatus/index.js +0 -15
  303. package/lib/MessageStatus/props/defaultProps.js +0 -15
  304. package/lib/MessageStatus/props/propTypes.js +0 -24
  305. package/lib/MoreActionItem/MoreActionItem.js +0 -94
  306. package/lib/MoreActionItem/css/MoreActionItem.module.css +0 -27
  307. package/lib/MoreActionItem/index.js +0 -15
  308. package/lib/MoreActionItem/props/defaultProps.js +0 -16
  309. package/lib/MoreActionItem/props/propTypes.js +0 -25
  310. package/lib/ReplyBubble/ReplyBubble.js +0 -136
  311. package/lib/ReplyBubble/css/ReplyBubble.module.css +0 -23
  312. package/lib/ReplyBubble/css/cssJSLogic.js +0 -20
  313. package/lib/ReplyBubble/index.js +0 -15
  314. package/lib/ReplyBubble/props/defaultProps.js +0 -17
  315. package/lib/ReplyBubble/props/propTypes.js +0 -39
  316. package/lib/ReplyBubbleContent/ReplyBubbleContent.js +0 -77
  317. package/lib/ReplyBubbleContent/css/ReplyBubbleContent.module.css +0 -75
  318. package/lib/ReplyBubbleContent/css/cssJSLogic.js +0 -20
  319. package/lib/ReplyBubbleContent/index.js +0 -15
  320. package/lib/ReplyBubbleContent/props/defaultProps.js +0 -15
  321. package/lib/ReplyBubbleContent/props/propTypes.js +0 -22
  322. package/lib/ReplyBubbleHeader/ReplyBubbleHeader.js +0 -97
  323. package/lib/ReplyBubbleHeader/css/ReplyBubbleHeader.module.css +0 -44
  324. package/lib/ReplyBubbleHeader/css/cssJSLogic.js +0 -18
  325. package/lib/ReplyBubbleHeader/index.js +0 -15
  326. package/lib/ReplyBubbleHeader/props/defaultProps.js +0 -16
  327. package/lib/ReplyBubbleHeader/props/propTypes.js +0 -24
  328. package/lib/TextBubble/TextBubble.js +0 -69
  329. package/lib/TextBubble/css/TextBubble.module.css +0 -35
  330. package/lib/TextBubble/css/cssJSLogic.js +0 -22
  331. package/lib/TextBubble/index.js +0 -15
  332. package/lib/TextBubble/props/defaultProps.js +0 -15
  333. package/lib/TextBubble/props/propTypes.js +0 -21
  334. package/lib/Theme/ThemeAssets.js +0 -182
  335. package/lib/Theme/ThemeWrapper.js +0 -130
  336. package/lib/Theme/TooltipWrapper.js +0 -97
  337. package/lib/Theme/css/TooltipWrapper.module.css +0 -10
  338. package/lib/Theme/index.js +0 -15
  339. package/lib/Theme/props/defaultProps.js +0 -20
  340. package/lib/Theme/props/propTypes.js +0 -26
  341. package/lib/Theme/utils/combineConfigurations.js +0 -31
  342. package/lib/Theme/utils/flatVariables.js +0 -21
  343. package/lib/Theme/utils/getCustomizedCssVariables.js +0 -29
  344. package/lib/Theme/utils/getThemeConfigurations.js +0 -28
  345. package/lib/Theme/utils/getWrapperDivProps.js +0 -23
  346. package/lib/Video/Video.js +0 -55
  347. package/lib/Video/css/Video.module.css +0 -5
  348. package/lib/Video/index.js +0 -15
  349. package/lib/Video/props/defaultProps.js +0 -15
  350. package/lib/Video/props/propTypes.js +0 -19
  351. package/lib/VideoBubble/VideoBubble.js +0 -77
  352. package/lib/VideoBubble/css/VideoBubble.module.css +0 -12
  353. package/lib/VideoBubble/css/cssJSLogic.js +0 -20
  354. package/lib/VideoBubble/index.js +0 -15
  355. package/lib/VideoBubble/props/defaultProps.js +0 -16
  356. package/lib/VideoBubble/props/propTypes.js +0 -28
  357. package/lib/constants/index.js +0 -18
  358. package/lib/constants/propConstants/editorPropConstants.js +0 -12
  359. package/lib/constants/propConstants/popupPropConstants.js +0 -10
  360. package/lib/css/common.module.css +0 -6
  361. package/lib/icons/create-icon-components.js +0 -199
  362. package/lib/icons/factory/attachments/audio.svg +0 -19
  363. package/lib/icons/factory/attachments/code.svg +0 -21
  364. package/lib/icons/factory/attachments/image.svg +0 -20
  365. package/lib/icons/factory/attachments/pdf.svg +0 -19
  366. package/lib/icons/factory/attachments/ppt.svg +0 -1
  367. package/lib/icons/factory/attachments/text.svg +0 -22
  368. package/lib/icons/factory/attachments/unknown.svg +0 -21
  369. package/lib/icons/factory/attachments/video.svg +0 -19
  370. package/lib/icons/factory/attachments/xls.svg +0 -1
  371. package/lib/icons/factory/attachments/zip.svg +0 -27
  372. package/lib/icons/factory/common/alertTriangle.svg +0 -5
  373. package/lib/icons/factory/common/article.svg +0 -4
  374. package/lib/icons/factory/common/reply.svg +0 -6
  375. package/lib/icons/factory/messageStatus/clock.svg +0 -7
  376. package/lib/icons/factory/messageStatus/doubleTick.svg +0 -1
  377. package/lib/icons/factory/messageStatus/failed.svg +0 -7
  378. package/lib/icons/factory/messageStatus/tick.svg +0 -1
  379. package/lib/icons/icon.template.js +0 -18
  380. package/lib/icons/iconSrc/attachments/Audio.js +0 -41
  381. package/lib/icons/iconSrc/attachments/Code.js +0 -47
  382. package/lib/icons/iconSrc/attachments/Image.js +0 -46
  383. package/lib/icons/iconSrc/attachments/Pdf.js +0 -41
  384. package/lib/icons/iconSrc/attachments/Ppt.js +0 -38
  385. package/lib/icons/iconSrc/attachments/Text.js +0 -50
  386. package/lib/icons/iconSrc/attachments/Txt.js +0 -50
  387. package/lib/icons/iconSrc/attachments/Unknown.js +0 -44
  388. package/lib/icons/iconSrc/attachments/Video.js +0 -41
  389. package/lib/icons/iconSrc/attachments/Xls.js +0 -38
  390. package/lib/icons/iconSrc/attachments/Zip.js +0 -89
  391. package/lib/icons/iconSrc/attachments/index.js +0 -87
  392. package/lib/icons/iconSrc/common/AlertTriangle.js +0 -35
  393. package/lib/icons/iconSrc/common/Article.js +0 -29
  394. package/lib/icons/iconSrc/common/Reply.js +0 -25
  395. package/lib/icons/iconSrc/common/index.js +0 -31
  396. package/lib/icons/iconSrc/messageStatus/Clock.js +0 -26
  397. package/lib/icons/iconSrc/messageStatus/DoubleTick.js +0 -28
  398. package/lib/icons/iconSrc/messageStatus/Failed.js +0 -26
  399. package/lib/icons/iconSrc/messageStatus/Tick.js +0 -25
  400. package/lib/icons/iconSrc/messageStatus/index.js +0 -39
  401. package/lib/im/ArticleBubble/ArticleBubble.js +0 -104
  402. package/lib/im/ArticleBubble/css/ArticleBubble.module.css +0 -75
  403. package/lib/im/ArticleBubble/css/cssJSLogic.js +0 -18
  404. package/lib/im/ArticleBubble/index.js +0 -15
  405. package/lib/im/ArticleBubble/props/defaultProps.js +0 -15
  406. package/lib/im/ArticleBubble/props/propTypes.js +0 -25
  407. package/lib/im/IMAttachmentHandler/IMAttachmentHandler.js +0 -59
  408. package/lib/im/IMAttachmentHandler/index.js +0 -15
  409. package/lib/im/IMAttachmentHandler/props/defaultProps.js +0 -19
  410. package/lib/im/IMAttachmentHandler/props/propTypes.js +0 -38
  411. package/lib/im/IMIntegrationIcon/IMIntegrationIcon.js +0 -82
  412. package/lib/im/IMIntegrationIcon/css/IMIntegrationIcon.module.css +0 -72
  413. package/lib/im/IMIntegrationIcon/css/cssJSLogic.js +0 -48
  414. package/lib/im/IMIntegrationIcon/index.js +0 -15
  415. package/lib/im/IMIntegrationIcon/props/defaultProps.js +0 -21
  416. package/lib/im/IMIntegrationIcon/props/propTypes.js +0 -27
  417. package/lib/im/IMMessage/IMMessage.js +0 -223
  418. package/lib/im/IMMessage/css/IMMessage.module.css +0 -36
  419. package/lib/im/IMMessage/css/cssJSLogic.js +0 -21
  420. package/lib/im/IMMessage/index.js +0 -15
  421. package/lib/im/IMMessage/props/defaultProps.js +0 -25
  422. package/lib/im/IMMessage/props/propTypes.js +0 -118
  423. package/lib/im/IMMessageContent/IMMessageContent.js +0 -149
  424. package/lib/im/IMMessageContent/css/IMMessageContent.module.css +0 -8
  425. package/lib/im/IMMessageContent/index.js +0 -15
  426. package/lib/im/IMMessageContent/props/defaultProps.js +0 -18
  427. package/lib/im/IMMessageContent/props/propTypes.js +0 -65
  428. package/lib/im/IMMessageMeta/IMMessageMeta.js +0 -79
  429. package/lib/im/IMMessageMeta/css/IMMessageMeta.module.css +0 -46
  430. package/lib/im/IMMessageMeta/css/cssJSLogic.js +0 -35
  431. package/lib/im/IMMessageMeta/index.js +0 -15
  432. package/lib/im/IMMessageMeta/props/defaultProps.js +0 -21
  433. package/lib/im/IMMessageMeta/props/propTypes.js +0 -44
  434. package/lib/im/IMMessageMetaInfo/IMMessageMetaInfo.js +0 -42
  435. package/lib/im/IMMessageMetaInfo/css/IMMessageMetaInfo.module.css +0 -14
  436. package/lib/im/IMMessageMetaInfo/index.js +0 -15
  437. package/lib/im/IMMessageMetaInfo/props/defaultProps.js +0 -17
  438. package/lib/im/IMMessageMetaInfo/props/propTypes.js +0 -19
  439. package/lib/im/IMPermaLink/IMPermaLink.js +0 -64
  440. package/lib/im/IMPermaLink/css/IMPermaLink.module.css +0 -14
  441. package/lib/im/IMPermaLink/css/cssJSLogic.js +0 -20
  442. package/lib/im/IMPermaLink/index.js +0 -15
  443. package/lib/im/IMPermaLink/props/defaultProps.js +0 -15
  444. package/lib/im/IMPermaLink/props/propTypes.js +0 -22
  445. package/lib/im/IMReplyBubble/IMReplyBubble.js +0 -59
  446. package/lib/im/IMReplyBubble/index.js +0 -15
  447. package/lib/im/IMReplyBubble/props/defaultProps.js +0 -16
  448. package/lib/im/IMReplyBubble/props/propTypes.js +0 -40
  449. package/lib/im/IMTextBubble/IMTextBubble.js +0 -47
  450. package/lib/im/IMTextBubble/index.js +0 -15
  451. package/lib/im/IMTextBubble/props/defaultProps.js +0 -18
  452. package/lib/im/IMTextBubble/props/propTypes.js +0 -42
  453. package/lib/im/ReplyComposer/ReplyComposer.js +0 -176
  454. package/lib/im/ReplyComposer/css/ReplyComposer.module.css +0 -10
  455. package/lib/im/ReplyComposer/css/cssJSLogic.js +0 -18
  456. package/lib/im/ReplyComposer/index.js +0 -15
  457. package/lib/im/ReplyComposer/props/defaultProps.js +0 -16
  458. package/lib/im/ReplyComposer/props/propTypes.js +0 -72
  459. package/lib/im/ReplyComposerFooter/ReplyComposerFooter.js +0 -64
  460. package/lib/im/ReplyComposerFooter/css/ReplyComposerFooter.module.css +0 -10
  461. package/lib/im/ReplyComposerFooter/index.js +0 -15
  462. package/lib/im/ReplyComposerFooter/props/defaultProps.js +0 -17
  463. package/lib/im/ReplyComposerFooter/props/propTypes.js +0 -28
  464. package/lib/im/ReplyEditor/ReplyEditor.js +0 -124
  465. package/lib/im/ReplyEditor/css/ReplyEditor.module.css +0 -50
  466. package/lib/im/ReplyEditor/css/cssJSLogic.js +0 -17
  467. package/lib/im/ReplyEditor/index.js +0 -15
  468. package/lib/im/ReplyEditor/props/defaultProps.js +0 -17
  469. package/lib/im/ReplyEditor/props/propTypes.js +0 -39
  470. package/lib/im/ReplyEditorExtensions/ReplyEditorExtensions.js +0 -160
  471. package/lib/im/ReplyEditorExtensions/css/ReplyEditorExtensions.module.css +0 -5
  472. package/lib/im/ReplyEditorExtensions/index.js +0 -15
  473. package/lib/im/ReplyEditorExtensions/props/defaultProps.js +0 -15
  474. package/lib/im/ReplyEditorExtensions/props/propTypes.js +0 -27
  475. package/lib/im/ReplyEditorSuggestions/ReplyEditorSuggestions.js +0 -119
  476. package/lib/im/ReplyEditorSuggestions/css/ReplyEditorSuggestions.module.css +0 -8
  477. package/lib/im/ReplyEditorSuggestions/index.js +0 -15
  478. package/lib/im/ReplyEditorSuggestions/props/defaultProps.js +0 -15
  479. package/lib/im/ReplyEditorSuggestions/props/propTypes.js +0 -32
  480. package/lib/im/ReplyEditorSuggestionsPopup/ReplyEditorSuggestionsPopup.js +0 -107
  481. package/lib/im/ReplyEditorSuggestionsPopup/css/ReplyEditorSuggestionsPopup.module.css +0 -7
  482. package/lib/im/ReplyEditorSuggestionsPopup/index.js +0 -15
  483. package/lib/im/ReplyEditorSuggestionsPopup/props/defaultProps.js +0 -19
  484. package/lib/im/ReplyEditorSuggestionsPopup/props/propTypes.js +0 -33
  485. package/lib/im/css/common.module.css +0 -6
  486. package/lib/im/index.js +0 -213
  487. package/lib/index.js +0 -538
  488. package/lib/rte/Editor/Editor.js +0 -97
  489. package/lib/rte/Editor/css/Editor.module.css +0 -17
  490. package/lib/rte/Editor/index.js +0 -15
  491. package/lib/rte/Editor/props/defaultProps.js +0 -30
  492. package/lib/rte/Editor/props/propTypes.js +0 -74
  493. package/lib/rte/index.js +0 -18
@@ -1,40 +0,0 @@
1
- [data-zohoim-mode='pureDark'][data-zohoim-theme='yellow'] {
2
- /* bg colors */
3
- --imlib_chat_components_actionIconWrapper_bg_color: hsla(35, 15.00%, calc(15.69% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
4
- --imlib_chat_components_attachmentBubble_bg_color: hsla(0, 0.00%, calc(12.94% + var(--zdc_lighter)), calc(1 + var(--zdc_alpha_high)));
5
- --imlib_chat_components_articleBubble_bg_color: hsla(0, 0.00%, calc(12.94% + var(--zdc_lighter)), calc(1 + var(--zdc_alpha_high)));
6
- --imlib_chat_components_imageBubble_bg_color: hsla(0, 0.00%, calc(12.94% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
7
- --imlib_chat_components_locationBubble_bg_color: hsla(0, 0.00%, calc(12.94% + var(--zdc_lighter)), calc(1 + var(--zdc_alpha_high)));
8
- --imlib_chat_components_messageBox_incoming_bg_color: hsla(0, 0.00%, calc(18.04% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
9
- --imlib_chat_components_messageBox_outgoing_bg_color: hsla(0, 0.00%, calc(18.04% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
10
- --imlib_chat_components_messageBubble_active_bg_color: hsla(128, 11.11%, calc(14.12% + var(--zdc_default_inverse_lower)), calc(1 + var(--zdc_alpha_low)));
11
- --imlib_chat_components_replyBubbleContent_bg_color: hsla(0, 0.00%, calc(12.94% + var(--zdc_lighter)), calc(1 + var(--zdc_alpha_high)));
12
-
13
- /* border colors */
14
- --imlib_chat_components_common_border: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
15
- --imlib_chat_components_actionIconWrapper_border_color: hsla(38, 30.19%, calc(20.78% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
16
- --imlib_chat_components_attachmentBubble_border_color: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
17
- --imlib_chat_components_articleBubble_border_color: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
18
- --imlib_chat_components_imageBubble_border_color: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
19
- --imlib_chat_components_locationBubble_border_color: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
20
- --imlib_chat_components_replyBubble_border_color: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
21
- --imlib_chat_components_replyBubbleContent_border_color: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
22
- --imlib_chat_components_videoBubble_border_color: hsla(0, 2.33%, calc(8.43% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
23
-
24
- /* icon colors */
25
- --imlib_chat_components_twotone_icon_bg: rgba(255, 255, 255, 0.15);
26
-
27
- /* url / themes / primary colors */
28
- --imlib_chat_components_locationBubble_url_color: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse_low)), calc(1 + var(--zdc_alpha_low)));
29
- --imlib_chat_components_imPermaLink_url_color: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse_low)), calc(1 + var(--zdc_alpha_low)));
30
- --imlib_chat_components_textBubble_see_more_color: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse_low)), calc(1 + var(--zdc_alpha_low)));
31
- --imlib_chat_components_textBubble_url_color: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse_low)), calc(1 + var(--zdc_alpha_low)));
32
- --imlib_chat_components_messageStatus_read_color: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse_low)), calc(1 + var(--zdc_alpha_low)));
33
- --imlib_chat_components_emoji_tab_line_color: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse_low)), calc(1 + var(--zdc_alpha_low)));
34
-
35
- /* failed colors */
36
- --imlib_chat_components_messageStatus_failed_color: hsla(0, 71.91%, calc(53.92% + var(--zdc_lighter)), calc(1 + var(--zdc_alpha_high)));
37
- --imlib_chat_components_locationBubble_url_color_failed: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
38
- --imlib_chat_components_textBubble_see_more_color_failed: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
39
- --imlib_chat_components_textBubble_url_color_failed: hsla(37, 66.94%, calc(52.55% + var(--zdc_default_inverse)), calc(1 + var(--zdc_alpha_high)));
40
- }
@@ -1,97 +0,0 @@
1
- "use strict";
2
-
3
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
4
-
5
- Object.defineProperty(exports, "__esModule", {
6
- value: true
7
- });
8
- exports["default"] = ActionIcon;
9
-
10
- var _react = _interopRequireWildcard(require("react"));
11
-
12
- var _ActionIconWrapper = _interopRequireDefault(require("../ActionIconWrapper/ActionIconWrapper"));
13
-
14
- var _Reload = _interopRequireDefault(require("@zohodesk/icon/es/general/Reload"));
15
-
16
- var _Copy = _interopRequireDefault(require("@zohodesk/icon/es/general/Copy"));
17
-
18
- var _Cloud = _interopRequireDefault(require("@zohodesk/icon/es/general/Cloud"));
19
-
20
- var _Delete = _interopRequireDefault(require("@zohodesk/icon/es/general/Delete"));
21
-
22
- var _EmailForward = _interopRequireDefault(require("@zohodesk/icon/es/channels/EmailForward"));
23
-
24
- var _Reply = _interopRequireDefault(require("../icons/iconSrc/common/Reply"));
25
-
26
- var _useMergeStyle = _interopRequireDefault(require("@zohodesk/hooks/es/utils/useMergeStyle"));
27
-
28
- var _defaultProps = _interopRequireDefault(require("./props/defaultProps"));
29
-
30
- var _propTypes = _interopRequireDefault(require("./props/propTypes"));
31
-
32
- var _emptyConstants = require("@zohoim/chat-components-utils/es/constants/emptyConstants");
33
-
34
- var _messageActionConstants = require("@zohoim/chat-components-utils/es/constants/messageActionConstants");
35
-
36
- var _ActionIconModule = _interopRequireDefault(require("./css/ActionIcon.module.css"));
37
-
38
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
39
-
40
- function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
41
-
42
- function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
43
-
44
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
45
-
46
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
47
-
48
- var REPLY = _messageActionConstants.defaultMessageActions.REPLY,
49
- COPY = _messageActionConstants.defaultMessageActions.COPY,
50
- DOWNLOAD = _messageActionConstants.defaultMessageActions.DOWNLOAD,
51
- RESEND = _messageActionConstants.defaultMessageActions.RESEND,
52
- DELETE = _messageActionConstants.defaultMessageActions.DELETE,
53
- FORWARD = _messageActionConstants.defaultMessageActions.FORWARD;
54
-
55
- function ActionIcon(props) {
56
- var customStyle = props.customStyle,
57
- customProps = props.customProps,
58
- onClick = props.onClick,
59
- onMouseEnter = props.onMouseEnter,
60
- id = props.id,
61
- title = props.title,
62
- isDisabled = props.isDisabled,
63
- needIconOnly = props.needIconOnly,
64
- isActive = props.isActive;
65
- var _customProps$actionIc = customProps.actionIconWrapperProps,
66
- actionIconWrapperProps = _customProps$actionIc === void 0 ? _emptyConstants.dummyObject : _customProps$actionIc;
67
- /* External customization */
68
-
69
- var newStyle = (0, _useMergeStyle["default"])(_ActionIconModule["default"], customStyle);
70
- var iconStyle = (0, _react.useMemo)(function () {
71
- return {
72
- base: newStyle.icon
73
- };
74
- }, [newStyle.icon]);
75
- var renderIcon = (0, _react.useCallback)(function () {
76
- var _iconMapping;
77
-
78
- var iconMapping = (_iconMapping = {}, _defineProperty(_iconMapping, REPLY, _Reply["default"]), _defineProperty(_iconMapping, COPY, _Copy["default"]), _defineProperty(_iconMapping, DOWNLOAD, _Cloud["default"]), _defineProperty(_iconMapping, RESEND, _Reload["default"]), _defineProperty(_iconMapping, DELETE, _Delete["default"]), _defineProperty(_iconMapping, FORWARD, _EmailForward["default"]), _iconMapping);
79
- var IconComponent = iconMapping[id];
80
- return IconComponent ? /*#__PURE__*/_react["default"].createElement(IconComponent, {
81
- customStyle: iconStyle
82
- }) : null;
83
- }, [iconStyle, id]);
84
- return needIconOnly ? renderIcon() : /*#__PURE__*/_react["default"].createElement(_ActionIconWrapper["default"], _extends({
85
- id: id,
86
- isActive: isActive,
87
- isDisabled: isDisabled,
88
- onClick: onClick,
89
- onMouseEnter: onMouseEnter,
90
- renderIcon: renderIcon,
91
- title: title
92
- }, actionIconWrapperProps));
93
- }
94
-
95
- ActionIcon.propTypes = _propTypes["default"];
96
- ActionIcon.defaultProps = _defaultProps["default"];
97
- ActionIcon.displayName = 'ActionIcon';
@@ -1,8 +0,0 @@
1
- .varClass {
2
- --actionIcon_icon_size: 15px;
3
- }
4
-
5
- .icon {
6
- width: var(--zd_size15) ;
7
- height: var(--zd_size15) ;
8
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "ActionIcon", {
7
- enumerable: true,
8
- get: function get() {
9
- return _ActionIcon["default"];
10
- }
11
- });
12
-
13
- var _ActionIcon = _interopRequireDefault(require("./ActionIcon"));
14
-
15
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -1,17 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
-
8
- var _emptyConstants = require("@zohoim/chat-components-utils/es/constants/emptyConstants");
9
-
10
- /** ** Constants *** */
11
- var actionIconDefaultProps = {
12
- customStyle: _emptyConstants.dummyObject,
13
- customProps: _emptyConstants.dummyObject,
14
- needIconOnly: false
15
- };
16
- var _default = actionIconDefaultProps;
17
- exports["default"] = _default;
@@ -1,30 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
-
8
- var _propTypes = _interopRequireDefault(require("prop-types"));
9
-
10
- var _messageActionConstants = require("@zohoim/chat-components-utils/es/constants/messageActionConstants");
11
-
12
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
13
-
14
- /** ** Libraries *** */
15
-
16
- /** ** Constants *** */
17
- var actionIconPropTypes = {
18
- id: _propTypes["default"].oneOf(Object.values(_messageActionConstants.defaultMessageActions)).isRequired,
19
- onClick: _propTypes["default"].func.isRequired,
20
- customProps: _propTypes["default"].shape({
21
- actionIconWrapperProps: _propTypes["default"].object
22
- }),
23
- customStyle: _propTypes["default"].object,
24
- isDisabled: _propTypes["default"].bool,
25
- needIconOnly: _propTypes["default"].bool,
26
- title: _propTypes["default"].string,
27
- isActive: _propTypes["default"].bool
28
- };
29
- var _default = actionIconPropTypes;
30
- exports["default"] = _default;
@@ -1,81 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = ActionIconWrapper;
7
-
8
- var _react = _interopRequireDefault(require("react"));
9
-
10
- var _useMergeStyle = _interopRequireDefault(require("@zohodesk/hooks/es/utils/useMergeStyle"));
11
-
12
- var _useActionIconWrapper2 = _interopRequireDefault(require("@zohoim/chat-components-hooks/es/ActionIconWrapper/useActionIconWrapper"));
13
-
14
- var _defaultProps = _interopRequireDefault(require("./props/defaultProps"));
15
-
16
- var _propTypes = _interopRequireDefault(require("./props/propTypes"));
17
-
18
- var _renderHandler = _interopRequireDefault(require("@zohoim/chat-components-utils/es/common/renderHandler"));
19
-
20
- var _cssJSLogic2 = _interopRequireDefault(require("./css/cssJSLogic"));
21
-
22
- var _ActionIconWrapperModule = _interopRequireDefault(require("./css/ActionIconWrapper.module.css"));
23
-
24
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
25
-
26
- /** ** Libraries *** */
27
-
28
- /** ** Hooks *** */
29
-
30
- /** ** Constants *** */
31
-
32
- /** ** Methods *** */
33
-
34
- /** ** Styles *** */
35
- function ActionIconWrapper(props) {
36
- var renderIcon = props.renderIcon,
37
- customStyle = props.customStyle,
38
- propOnClick = props.onClick,
39
- propOnMouseEnter = props.onMouseEnter,
40
- id = props.id,
41
- title = props.title,
42
- isDisabled = props.isDisabled,
43
- isActive = props.isActive;
44
-
45
- var _useActionIconWrapper = (0, _useActionIconWrapper2["default"])({
46
- onClick: propOnClick,
47
- onMouseEnter: propOnMouseEnter,
48
- id: id,
49
- isDisabled: isDisabled,
50
- isActive: isActive
51
- }),
52
- onClick = _useActionIconWrapper.onClick,
53
- onMouseEnter = _useActionIconWrapper.onMouseEnter;
54
- /* External CSS Customization */
55
-
56
-
57
- var newStyle = (0, _useMergeStyle["default"])(_ActionIconWrapperModule["default"], customStyle);
58
- /* css classnames added based on logic */
59
-
60
- var _cssJSLogic = (0, _cssJSLogic2["default"])({
61
- isDisabled: isDisabled,
62
- isActive: isActive
63
- }, newStyle),
64
- actionIconWrapperClass = _cssJSLogic.actionIconWrapperClass;
65
- /* Render Icon */
66
-
67
-
68
- var icon = (0, _renderHandler["default"])(renderIcon)({
69
- id: id
70
- });
71
- return icon ? /*#__PURE__*/_react["default"].createElement("div", {
72
- className: actionIconWrapperClass,
73
- "data-title": title,
74
- onClick: onClick,
75
- onMouseEnter: onMouseEnter
76
- }, icon) : null;
77
- }
78
-
79
- ActionIconWrapper.propTypes = _propTypes["default"];
80
- ActionIconWrapper.defaultProps = _defaultProps["default"];
81
- ActionIconWrapper.displayName = 'ActionIconWrapper';
@@ -1,32 +0,0 @@
1
- .varClass {
2
- --actionIconWrapper-height: 26px;
3
- --actionIconWrapper-width: 26px;
4
- --actionIconWrapper-border: 1px;
5
- --actionIconWrapper-border_radius: 4px;
6
- }
7
-
8
- .actionIconWrapper {
9
- composes: varClass;
10
- display: inline-flex;
11
- display: -webkit-inline-flex;
12
- display: -ms-inline-flexbox;
13
- color: var(--imlib_chat_components_actionIconWrapper_color);
14
- position: relative;
15
- width: var(--actionIconWrapper-width);
16
- height: var(--actionIconWrapper-height);
17
- align-items: center;
18
- justify-content: center;
19
- cursor: pointer;
20
- border: var(--actionIconWrapper-border) solid transparent;
21
- border-radius: var(--actionIconWrapper-border_radius);
22
- }
23
-
24
- .actionIconWrapper:hover, .actionIconWrapperActive{
25
- background-color: var(--imlib_chat_components_actionIconWrapper_bg_color);
26
- border-color: var(--imlib_chat_components_actionIconWrapper_border_color);
27
- }
28
-
29
- .disabled {
30
- pointer-events: none;
31
- opacity: 0.4;
32
- }
@@ -1,21 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = cssJSLogic;
7
-
8
- var _utils = require("@zohodesk/utils");
9
-
10
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
11
-
12
- function cssJSLogic(props, style) {
13
- var _compileClassNames;
14
-
15
- var isDisabled = props.isDisabled,
16
- isActive = props.isActive;
17
- var actionIconWrapperClass = (0, _utils.compileClassNames)((_compileClassNames = {}, _defineProperty(_compileClassNames, style.actionIconWrapper, true), _defineProperty(_compileClassNames, style.disabled, isDisabled), _defineProperty(_compileClassNames, style.actionIconWrapperActive, isActive), _compileClassNames));
18
- return {
19
- actionIconWrapperClass: actionIconWrapperClass
20
- };
21
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "ActionIconWrapper", {
7
- enumerable: true,
8
- get: function get() {
9
- return _ActionIconWrapper["default"];
10
- }
11
- });
12
-
13
- var _ActionIconWrapper = _interopRequireDefault(require("./ActionIconWrapper"));
14
-
15
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -1,15 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
-
8
- var _emptyConstants = require("@zohoim/chat-components-utils/es/constants/emptyConstants");
9
-
10
- /** ** Constants *** */
11
- var actionIconWrapperDefaultProps = {
12
- customStyle: _emptyConstants.dummyObject
13
- };
14
- var _default = actionIconWrapperDefaultProps;
15
- exports["default"] = _default;
@@ -1,24 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
-
8
- var _propTypes = _interopRequireDefault(require("prop-types"));
9
-
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
-
12
- /** ** Libraries *** */
13
- var actionIconWrapperPropTypes = {
14
- id: _propTypes["default"].string.isRequired,
15
- onClick: _propTypes["default"].func.isRequired,
16
- onMouseEnter: _propTypes["default"].func,
17
- renderIcon: _propTypes["default"].func.isRequired,
18
- customStyle: _propTypes["default"].object,
19
- isDisabled: _propTypes["default"].bool,
20
- title: _propTypes["default"].string,
21
- isActive: _propTypes["default"].bool
22
- };
23
- var _default = actionIconWrapperPropTypes;
24
- exports["default"] = _default;
@@ -1,93 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = AttachmentBubble;
7
-
8
- var _react = _interopRequireDefault(require("react"));
9
-
10
- var _useMergeStyle = _interopRequireDefault(require("@zohodesk/hooks/es/utils/useMergeStyle"));
11
-
12
- var _useAttachmentBubble2 = _interopRequireDefault(require("@zohoim/chat-components-hooks/es/AttachmentBubble/useAttachmentBubble"));
13
-
14
- var _defaultProps = _interopRequireDefault(require("./props/defaultProps"));
15
-
16
- var _propTypes = _interopRequireDefault(require("./props/propTypes"));
17
-
18
- var _AttachmentBubbleModule = _interopRequireDefault(require("./css/AttachmentBubble.module.css"));
19
-
20
- var _AttachmentBubbleInfo = _interopRequireDefault(require("../AttachmentBubbleInfo/AttachmentBubbleInfo"));
21
-
22
- var _AttachmentIcon = _interopRequireDefault(require("../AttachmentIcon/AttachmentIcon"));
23
-
24
- var _Layout = require("@zohodesk/components/es/Layout");
25
-
26
- var _cssJSLogic2 = _interopRequireDefault(require("./css/cssJSLogic"));
27
-
28
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
29
-
30
- function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
31
-
32
- function AttachmentBubble(props) {
33
- var customStyle = props.customStyle,
34
- customProps = props.customProps,
35
- attachmentDetails = props.attachmentDetails,
36
- isFailed = props.isFailed,
37
- isSending = props.isSending,
38
- propOnClick = props.onClick,
39
- attachmentBubbleTitle = props.attachmentBubbleTitle;
40
- var attachmentBubbleInfoProps = customProps.attachmentBubbleInfoProps,
41
- attachmentIconProps = customProps.attachmentIconProps;
42
-
43
- var _useAttachmentBubble = (0, _useAttachmentBubble2["default"])({
44
- attachmentDetails: attachmentDetails,
45
- onClick: propOnClick
46
- }),
47
- fileSize = _useAttachmentBubble.formattedFileSize,
48
- fileName = _useAttachmentBubble.fileName,
49
- fileFormat = _useAttachmentBubble.fileFormat,
50
- isDisabled = _useAttachmentBubble.isDisabled,
51
- isValidAttachment = _useAttachmentBubble.isValidAttachment,
52
- mediaType = _useAttachmentBubble.mediaType,
53
- onClick = _useAttachmentBubble.onClick;
54
- /* External CSS Customization */
55
-
56
-
57
- var newStyle = (0, _useMergeStyle["default"])(_AttachmentBubbleModule["default"], customStyle);
58
- /* css classnames added based on logic */
59
-
60
- var _cssJSLogic = (0, _cssJSLogic2["default"])({
61
- isFailed: isFailed,
62
- isSending: isSending,
63
- isDisabled: isDisabled
64
- }, newStyle),
65
- attachmentBubbleClass = _cssJSLogic.attachmentBubbleClass;
66
-
67
- return /*#__PURE__*/_react["default"].createElement(_Layout.Container, {
68
- alignBox: "row",
69
- className: attachmentBubbleClass,
70
- "data-title": attachmentBubbleTitle,
71
- isCover: false,
72
- onClick: onClick
73
- }, /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
74
- className: newStyle.attachmentBubbleIcon
75
- }, /*#__PURE__*/_react["default"].createElement(_AttachmentIcon["default"], _extends({
76
- fileFormat: fileFormat,
77
- isDisabled: isDisabled,
78
- isValidAttachment: isValidAttachment,
79
- mediaType: mediaType
80
- }, attachmentIconProps))), /*#__PURE__*/_react["default"].createElement(_Layout.Box, {
81
- className: newStyle.attachmentBubbleContent,
82
- flexible: true
83
- }, /*#__PURE__*/_react["default"].createElement(_AttachmentBubbleInfo["default"], _extends({
84
- fileName: fileName,
85
- fileSize: fileSize
86
- }, attachmentBubbleInfoProps, {
87
- isFailed: isFailed
88
- }))));
89
- }
90
-
91
- AttachmentBubble.propTypes = _propTypes["default"];
92
- AttachmentBubble.defaultProps = _defaultProps["default"];
93
- AttachmentBubble.displayName = 'AttachmentBubble';
@@ -1,56 +0,0 @@
1
- .attachmentBubble {
2
- width: 100% ;
3
- background-color: var(--imlib_chat_components_attachmentBubble_bg_color);
4
- border-radius: 3px;
5
- border: 1px solid var(--imlib_chat_components_attachmentBubble_border_color);
6
- }
7
-
8
- .disabledAttachmentBubble {
9
- opacity: 0.5;
10
- cursor: not-allowed;
11
- }
12
-
13
- .failedAttachmentBubble {
14
- background-color: var(
15
- --imlib_chat_components_attachmentBubble_bg_color_failed
16
- );
17
- border-color: var(
18
- --imlib_chat_components_attachmentBubble_border_color_failed
19
- );
20
- }
21
-
22
- .sendingdAttachmentBubble {
23
- opacity: 0.1;
24
- cursor: default;
25
- }
26
-
27
- .attachmentBubbleCursor {
28
- cursor: pointer;
29
- }
30
-
31
- .attachmentBubbleIcon {
32
- width: var(--zd_size60) ;
33
- display: flex;
34
- align-items: center;
35
- justify-content: center;
36
- }
37
-
38
- [dir=ltr] .attachmentBubbleIcon {
39
- border-right: 1px solid
40
- var(--imlib_chat_components_attachmentBubble_border_color);
41
- }
42
-
43
- [dir=rtl] .attachmentBubbleIcon {
44
- border-left: 1px solid
45
- var(--imlib_chat_components_attachmentBubble_border_color);
46
- }
47
-
48
- .failedAttachmentBubble .attachmentBubbleIcon {
49
- border-color: var(
50
- --imlib_chat_components_attachmentBubble_border_color_failed
51
- );
52
- }
53
-
54
- .attachmentBubbleIcon, .attachmentBubbleContent {
55
- padding: var(--zd_size10) ;
56
- }
@@ -1,22 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = cssJSLogic;
7
-
8
- var _utils = require("@zohodesk/utils");
9
-
10
- function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
11
-
12
- function cssJSLogic(props, style) {
13
- var _compileClassNames;
14
-
15
- var isFailed = props.isFailed,
16
- isSending = props.isSending,
17
- isDisabled = props.isDisabled;
18
- var attachmentBubbleClass = (0, _utils.compileClassNames)((_compileClassNames = {}, _defineProperty(_compileClassNames, style.attachmentBubble, true), _defineProperty(_compileClassNames, style.disabledAttachmentBubble, isDisabled), _defineProperty(_compileClassNames, style.failedAttachmentBubble, isFailed), _defineProperty(_compileClassNames, style.attachmentBubbleCursor, !isSending && !isDisabled), _defineProperty(_compileClassNames, style.sendingdAttachmentBubble, isSending), _compileClassNames));
19
- return {
20
- attachmentBubbleClass: attachmentBubbleClass
21
- };
22
- }
@@ -1,15 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- Object.defineProperty(exports, "AttachmentBubble", {
7
- enumerable: true,
8
- get: function get() {
9
- return _AttachmentBubble["default"];
10
- }
11
- });
12
-
13
- var _AttachmentBubble = _interopRequireDefault(require("./AttachmentBubble"));
14
-
15
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
@@ -1,17 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
-
8
- var _emptyConstants = require("@zohoim/chat-components-utils/es/constants/emptyConstants");
9
-
10
- /** ** Constants *** */
11
- var attachmentBubbleDefaultProps = {
12
- attachmentBubbleTitle: '',
13
- customStyle: _emptyConstants.dummyObject,
14
- customProps: _emptyConstants.dummyObject
15
- };
16
- var _default = attachmentBubbleDefaultProps;
17
- exports["default"] = _default;
@@ -1,30 +0,0 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports["default"] = void 0;
7
-
8
- var _propTypes = _interopRequireDefault(require("prop-types"));
9
-
10
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
11
-
12
- /** ** Libraries *** */
13
- var attachmentBubblePropTypes = {
14
- attachmentDetails: _propTypes["default"].shape({
15
- name: _propTypes["default"].string.isRequired,
16
- size: _propTypes["default"].string.isRequired,
17
- type: _propTypes["default"].string.isRequired
18
- }).isRequired,
19
- customProps: _propTypes["default"].shape({
20
- attachmentBubbleInfoProps: _propTypes["default"].object,
21
- attachmentIconProps: _propTypes["default"].object
22
- }),
23
- customStyle: _propTypes["default"].object,
24
- isFailed: _propTypes["default"].bool,
25
- isSending: _propTypes["default"].bool,
26
- onClick: _propTypes["default"].func,
27
- attachmentBubbleTitle: _propTypes["default"].string
28
- };
29
- var _default = attachmentBubblePropTypes;
30
- exports["default"] = _default;