@tencentcloud/chat-uikit-react 2.3.1 → 3.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.
Files changed (1133) hide show
  1. package/.eslintrc.cjs +49 -0
  2. package/.stylelintrc.cjs +19 -0
  3. package/CHANGELOG.md +15 -1
  4. package/README.md +3 -0
  5. package/ci/install-nvm-node18.sh +117 -0
  6. package/dist/ChatSetting-C7QlwAiq.js +28449 -0
  7. package/dist/assets/fonts/iconfont.ttf +0 -0
  8. package/dist/assets/fonts/iconfont.woff +0 -0
  9. package/dist/assets/fonts/iconfont.woff2 +0 -0
  10. package/dist/components/Chat/Chat.d.ts +11 -0
  11. package/dist/components/Chat/Chat.js +29 -0
  12. package/dist/components/Chat/index.d.ts +1 -0
  13. package/dist/components/Chat/index.js +4 -0
  14. package/dist/components/ChatHeader/ChatHeader.d.ts +22 -0
  15. package/dist/components/ChatHeader/ChatHeader.js +50 -0
  16. package/dist/components/ChatHeader/ChatHeaderActions/ChatHeaderActions.d.ts +11 -0
  17. package/dist/components/ChatHeader/ChatHeaderActions/ChatHeaderActions.js +78 -0
  18. package/dist/components/ChatHeader/ChatHeaderActions/index.d.ts +1 -0
  19. package/dist/components/ChatHeader/ChatHeaderActions/index.js +4 -0
  20. package/dist/components/ChatHeader/ChatHeaderUI/ChatHeaderUI.d.ts +34 -0
  21. package/dist/components/ChatHeader/ChatHeaderUI/ChatHeaderUI.js +86 -0
  22. package/dist/components/ChatHeader/ChatHeaderUI/index.d.ts +2 -0
  23. package/dist/components/ChatHeader/ChatHeaderUI/index.js +4 -0
  24. package/dist/components/ChatHeader/index.d.ts +2 -0
  25. package/dist/components/ChatHeader/index.js +6 -0
  26. package/dist/components/Checkbox/index.d.ts +14 -0
  27. package/dist/components/Checkbox/index.js +34 -0
  28. package/dist/components/Contact/Contact.d.ts +3 -0
  29. package/dist/components/Contact/Contact.js +81 -0
  30. package/dist/components/Contact/ContactInfo/ContactInfo.d.ts +8 -0
  31. package/dist/components/Contact/ContactInfo/ContactInfo.js +27 -0
  32. package/dist/components/Contact/ContactInfo/addFriendInfo.d.ts +8 -0
  33. package/dist/components/Contact/ContactInfo/addFriendInfo.js +61 -0
  34. package/dist/components/Contact/ContactInfo/basicInfo.d.ts +8 -0
  35. package/dist/components/Contact/ContactInfo/basicInfo.js +48 -0
  36. package/dist/components/Contact/ContactInfo/blockInfo.d.ts +8 -0
  37. package/dist/components/Contact/ContactInfo/blockInfo.js +33 -0
  38. package/dist/components/Contact/ContactInfo/friendApplication.d.ts +8 -0
  39. package/dist/components/Contact/ContactInfo/friendApplication.js +47 -0
  40. package/dist/components/Contact/ContactInfo/friendInfo.d.ts +9 -0
  41. package/dist/components/Contact/ContactInfo/friendInfo.js +83 -0
  42. package/dist/components/Contact/ContactInfo/groupInfo.d.ts +9 -0
  43. package/dist/components/Contact/ContactInfo/groupInfo.js +45 -0
  44. package/dist/components/Contact/ContactInfo/hooks/useContactInfo.d.ts +11 -0
  45. package/dist/components/Contact/ContactInfo/hooks/useContactInfo.js +84 -0
  46. package/dist/components/Contact/ContactList/ContactList.d.ts +4 -0
  47. package/dist/components/Contact/ContactList/ContactList.js +152 -0
  48. package/dist/components/Contact/hooks/useTUIContact.d.ts +12 -0
  49. package/dist/components/Contact/hooks/useTUIContact.js +58 -0
  50. package/dist/components/Contact/index.d.ts +3 -0
  51. package/dist/components/Contact/index.js +10 -0
  52. package/dist/components/ContactSearch/ContactSearch.d.ts +3 -0
  53. package/dist/components/ContactSearch/ContactSearch.js +85 -0
  54. package/dist/components/ContactSearch/hooks/useContactSearch.d.ts +6 -0
  55. package/dist/components/ContactSearch/hooks/useContactSearch.js +28 -0
  56. package/dist/components/DivWithEdit/DivWithEdit.d.ts +14 -0
  57. package/dist/components/DivWithEdit/DivWithEdit.js +69 -0
  58. package/dist/components/DivWithEdit/WithSelect.d.ts +7 -0
  59. package/dist/components/DivWithEdit/WithSelect.js +21 -0
  60. package/dist/components/DivWithEdit/WithText.d.ts +9 -0
  61. package/dist/components/DivWithEdit/WithText.js +28 -0
  62. package/dist/components/DivWithEdit/index.d.ts +1 -0
  63. package/dist/components/DivWithEdit/index.js +4 -0
  64. package/dist/components/EmptyStateIndicator/EmptyStateIndicator.d.ts +8 -0
  65. package/dist/components/EmptyStateIndicator/EmptyStateIndicator.js +12 -0
  66. package/dist/components/EmptyStateIndicator/index.d.ts +1 -0
  67. package/dist/components/EmptyStateIndicator/index.js +4 -0
  68. package/dist/components/Icon/Icon.d.ts +11 -0
  69. package/dist/components/Icon/Icon.js +39 -0
  70. package/dist/components/Icon/config.d.ts +9 -0
  71. package/dist/components/Icon/config.js +198 -0
  72. package/dist/components/Icon/index.d.ts +2 -0
  73. package/dist/components/Icon/index.js +7 -0
  74. package/dist/components/Icon/type.d.ts +50 -0
  75. package/dist/components/Icon/type.js +4 -0
  76. package/dist/components/IconFont/Icon.d.ts +21 -0
  77. package/dist/components/IconFont/Icon.js +47 -0
  78. package/dist/components/IconFont/index.d.ts +2 -0
  79. package/dist/components/IconFont/index.js +4 -0
  80. package/dist/components/Input/Input.d.ts +23 -0
  81. package/dist/components/Input/Input.js +86 -0
  82. package/dist/components/Input/index.d.ts +1 -0
  83. package/dist/components/Input/index.js +4 -0
  84. package/dist/components/Modal/Modal.d.ts +7 -0
  85. package/dist/components/Modal/Modal.js +89 -0
  86. package/dist/components/Modal/index.d.ts +1 -0
  87. package/dist/components/Modal/index.js +4 -0
  88. package/dist/components/Model/index.d.ts +7 -0
  89. package/dist/components/Model/index.js +12 -0
  90. package/dist/components/Plugins/hooks/index.d.ts +1 -0
  91. package/dist/components/Plugins/hooks/index.js +4 -0
  92. package/dist/components/Plugins/hooks/usePluginsElement.d.ts +10 -0
  93. package/dist/components/Plugins/hooks/usePluginsElement.js +11 -0
  94. package/dist/components/Plugins/index.d.ts +19 -0
  95. package/dist/components/Plugins/index.js +73 -0
  96. package/dist/components/Popup/index.d.ts +11 -0
  97. package/dist/components/Popup/index.js +56 -0
  98. package/dist/components/PopupNew/Popup.d.ts +13 -0
  99. package/dist/components/PopupNew/Popup.js +30 -0
  100. package/dist/components/PopupNew/index.d.ts +2 -0
  101. package/dist/components/PopupNew/index.js +4 -0
  102. package/dist/components/Profile/DatePicker/DatePicker.d.ts +11 -0
  103. package/dist/components/Profile/DatePicker/DatePicker.js +104 -0
  104. package/dist/components/Profile/DatePicker/index.d.ts +1 -0
  105. package/dist/components/Profile/DatePicker/index.js +4 -0
  106. package/dist/components/Profile/Profile.d.ts +8 -0
  107. package/dist/components/Profile/Profile.js +36 -0
  108. package/dist/components/Profile/ProfileDefault.d.ts +9 -0
  109. package/dist/components/Profile/ProfileDefault.js +246 -0
  110. package/dist/components/Profile/hooks/index.d.ts +1 -0
  111. package/dist/components/Profile/hooks/index.js +4 -0
  112. package/dist/components/Profile/hooks/useMyProfile.d.ts +21 -0
  113. package/dist/components/Profile/hooks/useMyProfile.js +22 -0
  114. package/dist/components/Profile/index.d.ts +2 -0
  115. package/dist/components/Profile/index.js +6 -0
  116. package/dist/components/Profile/myProfile/MyProfile.d.ts +7 -0
  117. package/dist/components/Profile/myProfile/MyProfile.js +20 -0
  118. package/dist/components/Profile/myProfile/index.d.ts +1 -0
  119. package/dist/components/Profile/myProfile/index.js +4 -0
  120. package/dist/components/Switch/Switch.d.ts +9 -0
  121. package/dist/components/Switch/Switch.js +35 -0
  122. package/dist/components/Switch/index.d.ts +1 -0
  123. package/dist/components/Switch/index.js +4 -0
  124. package/dist/components/Switch/utils/newId.d.ts +2 -0
  125. package/dist/components/Switch/utils/newId.js +5 -0
  126. package/dist/components/index.d.ts +12 -0
  127. package/dist/components/index.js +39 -0
  128. package/dist/constant/avatar.d.ts +5 -0
  129. package/dist/constant/avatar.js +8 -0
  130. package/dist/constant/emoji.d.ts +12 -0
  131. package/dist/constant/emoji.js +137 -0
  132. package/dist/constant/index.d.ts +2 -0
  133. package/dist/constant/index.js +13 -0
  134. package/dist/context/ChatContext.d.ts +11 -0
  135. package/dist/context/ChatContext.js +26 -0
  136. package/dist/context/ContactContext.d.ts +15 -0
  137. package/dist/context/ContactContext.js +15 -0
  138. package/dist/context/index.d.ts +2 -0
  139. package/dist/context/index.js +9 -0
  140. package/dist/external_modules/classnames-HRMVOjAa.js +45 -0
  141. package/dist/external_modules/mui-CbGEJVT2.js +2473 -0
  142. package/dist/external_modules/react-vendors-3raCpd-g.js +1238 -0
  143. package/dist/external_modules/zustand-Dvydplxp.js +24 -0
  144. package/dist/hooks/index.d.ts +2 -0
  145. package/dist/hooks/index.js +5 -0
  146. package/dist/index.d.ts +7 -0
  147. package/dist/index.js +2712 -0
  148. package/dist/locales/en-US/ChatSetting.d.ts +95 -0
  149. package/dist/locales/en-US/ChatSetting.js +107 -0
  150. package/dist/locales/en-US/DateRangePicker.d.ts +30 -0
  151. package/dist/locales/en-US/DateRangePicker.js +32 -0
  152. package/dist/locales/en-US/GroupTip.d.ts +19 -0
  153. package/dist/locales/en-US/GroupTip.js +21 -0
  154. package/dist/locales/en-US/Search.d.ts +48 -0
  155. package/dist/locales/en-US/Search.js +50 -0
  156. package/dist/locales/en-US/TUIChat.d.ts +56 -0
  157. package/dist/locales/en-US/TUIChat.js +58 -0
  158. package/dist/locales/en-US/TUIContact.d.ts +27 -0
  159. package/dist/locales/en-US/TUIContact.js +29 -0
  160. package/dist/locales/en-US/TUIConversation.d.ts +44 -0
  161. package/dist/locales/en-US/TUIConversation.js +46 -0
  162. package/dist/locales/en-US/TUIProfile.d.ts +14 -0
  163. package/dist/locales/en-US/TUIProfile.js +16 -0
  164. package/dist/locales/en-US/emoji.d.ts +65 -0
  165. package/dist/locales/en-US/emoji.js +67 -0
  166. package/dist/locales/en-US/index.d.ts +391 -0
  167. package/dist/locales/en-US/index.js +23 -0
  168. package/dist/locales/index.d.ts +1 -0
  169. package/dist/locales/index.js +26 -0
  170. package/dist/locales/ja-JP/ChatSetting.d.ts +96 -0
  171. package/dist/locales/ja-JP/ChatSetting.js +108 -0
  172. package/dist/locales/ja-JP/DateRangePicker.d.ts +30 -0
  173. package/dist/locales/ja-JP/DateRangePicker.js +32 -0
  174. package/dist/locales/ja-JP/GroupTip.d.ts +19 -0
  175. package/dist/locales/ja-JP/GroupTip.js +21 -0
  176. package/dist/locales/ja-JP/Search.d.ts +48 -0
  177. package/dist/locales/ja-JP/Search.js +50 -0
  178. package/dist/locales/ja-JP/TUIChat.d.ts +55 -0
  179. package/dist/locales/ja-JP/TUIChat.js +57 -0
  180. package/dist/locales/ja-JP/TUIContact.d.ts +28 -0
  181. package/dist/locales/ja-JP/TUIContact.js +30 -0
  182. package/dist/locales/ja-JP/TUIConversation.d.ts +43 -0
  183. package/dist/locales/ja-JP/TUIConversation.js +45 -0
  184. package/dist/locales/ja-JP/TUIProfile.d.ts +14 -0
  185. package/dist/locales/ja-JP/TUIProfile.js +16 -0
  186. package/dist/locales/ja-JP/emoji.d.ts +65 -0
  187. package/dist/locales/ja-JP/emoji.js +67 -0
  188. package/dist/locales/ja-JP/index.d.ts +391 -0
  189. package/dist/locales/ja-JP/index.js +23 -0
  190. package/dist/locales/ko-KR/ChatSetting.d.ts +96 -0
  191. package/dist/locales/ko-KR/ChatSetting.js +108 -0
  192. package/dist/locales/ko-KR/DateRangePicker.d.ts +30 -0
  193. package/dist/locales/ko-KR/DateRangePicker.js +32 -0
  194. package/dist/locales/ko-KR/GroupTip.d.ts +19 -0
  195. package/dist/locales/ko-KR/GroupTip.js +21 -0
  196. package/dist/locales/ko-KR/Search.d.ts +48 -0
  197. package/dist/locales/ko-KR/Search.js +50 -0
  198. package/dist/locales/ko-KR/TUIChat.d.ts +55 -0
  199. package/dist/locales/ko-KR/TUIChat.js +57 -0
  200. package/dist/locales/ko-KR/TUIContact.d.ts +28 -0
  201. package/dist/locales/ko-KR/TUIContact.js +30 -0
  202. package/dist/locales/ko-KR/TUIConversation.d.ts +43 -0
  203. package/dist/locales/ko-KR/TUIConversation.js +45 -0
  204. package/dist/locales/ko-KR/TUIProfile.d.ts +14 -0
  205. package/dist/locales/ko-KR/TUIProfile.js +16 -0
  206. package/dist/locales/ko-KR/emoji.d.ts +65 -0
  207. package/dist/locales/ko-KR/emoji.js +67 -0
  208. package/dist/locales/ko-KR/index.d.ts +391 -0
  209. package/dist/locales/ko-KR/index.js +23 -0
  210. package/dist/locales/zh-CN/ChatSetting.d.ts +95 -0
  211. package/dist/locales/zh-CN/ChatSetting.js +107 -0
  212. package/dist/locales/zh-CN/DateRangePicker.d.ts +30 -0
  213. package/dist/locales/zh-CN/DateRangePicker.js +32 -0
  214. package/dist/locales/zh-CN/GroupTip.d.ts +19 -0
  215. package/dist/locales/zh-CN/GroupTip.js +21 -0
  216. package/dist/locales/zh-CN/Search.d.ts +48 -0
  217. package/dist/locales/zh-CN/Search.js +50 -0
  218. package/dist/locales/zh-CN/TUIChat.d.ts +55 -0
  219. package/dist/locales/zh-CN/TUIChat.js +57 -0
  220. package/dist/locales/zh-CN/TUIContact.d.ts +28 -0
  221. package/dist/locales/zh-CN/TUIContact.js +30 -0
  222. package/dist/locales/zh-CN/TUIConversation.d.ts +43 -0
  223. package/dist/locales/zh-CN/TUIConversation.js +45 -0
  224. package/dist/locales/zh-CN/TUIProfile.d.ts +14 -0
  225. package/dist/locales/zh-CN/TUIProfile.js +16 -0
  226. package/dist/locales/zh-CN/emoji.d.ts +65 -0
  227. package/dist/locales/zh-CN/emoji.js +67 -0
  228. package/dist/locales/zh-CN/index.d.ts +390 -0
  229. package/dist/locales/zh-CN/index.js +23 -0
  230. package/dist/locales/zh-TW/ChatSetting.d.ts +96 -0
  231. package/dist/locales/zh-TW/ChatSetting.js +108 -0
  232. package/dist/locales/zh-TW/DateRangePicker.d.ts +30 -0
  233. package/dist/locales/zh-TW/DateRangePicker.js +32 -0
  234. package/dist/locales/zh-TW/GroupTip.d.ts +19 -0
  235. package/dist/locales/zh-TW/GroupTip.js +21 -0
  236. package/dist/locales/zh-TW/Search.d.ts +48 -0
  237. package/dist/locales/zh-TW/Search.js +50 -0
  238. package/dist/locales/zh-TW/TUIChat.d.ts +55 -0
  239. package/dist/locales/zh-TW/TUIChat.js +57 -0
  240. package/dist/locales/zh-TW/TUIContact.d.ts +28 -0
  241. package/dist/locales/zh-TW/TUIContact.js +30 -0
  242. package/dist/locales/zh-TW/TUIConversation.d.ts +43 -0
  243. package/dist/locales/zh-TW/TUIConversation.js +45 -0
  244. package/dist/locales/zh-TW/TUIProfile.d.ts +14 -0
  245. package/dist/locales/zh-TW/TUIProfile.js +16 -0
  246. package/dist/locales/zh-TW/emoji.d.ts +64 -0
  247. package/dist/locales/zh-TW/emoji.js +66 -0
  248. package/dist/locales/zh-TW/index.d.ts +390 -0
  249. package/dist/locales/zh-TW/index.js +23 -0
  250. package/dist/server/mainServer.d.ts +8 -0
  251. package/dist/server/mainServer.js +40 -0
  252. package/dist/states/ChatHeaderState.d.ts +18 -0
  253. package/dist/states/ChatHeaderState.js +47 -0
  254. package/dist/states/UIManagerState.d.ts +89 -0
  255. package/dist/states/UIManagerState.js +76 -0
  256. package/dist/states/index.d.ts +2 -0
  257. package/dist/states/index.js +6 -0
  258. package/dist/styles/Chat.css +1 -0
  259. package/dist/styles/ChatHeaderActions.css +1 -0
  260. package/dist/styles/ChatHeaderUI.css +1 -0
  261. package/dist/styles/ChatSetting.css +1 -0
  262. package/dist/styles/ContactInfo.css +1 -0
  263. package/dist/styles/ContactList.css +1 -0
  264. package/dist/styles/ContactSearch.css +1 -0
  265. package/dist/styles/DatePicker.css +1 -0
  266. package/dist/styles/Icon.css +1 -0
  267. package/dist/styles/Icon2.css +1 -0
  268. package/dist/styles/Input.css +1 -0
  269. package/dist/styles/Modal.css +1 -0
  270. package/dist/styles/MyProfile.css +1 -0
  271. package/dist/styles/Profile.css +1 -0
  272. package/dist/styles/Switch.css +1 -0
  273. package/dist/styles/WithSelect.css +1 -0
  274. package/dist/styles/index.css +1 -0
  275. package/dist/styles/index2.css +1 -0
  276. package/dist/styles/index3.css +1 -0
  277. package/dist/styles/index4.css +1 -0
  278. package/dist/styles/index5.css +1 -0
  279. package/dist/styles/index6.css +1 -0
  280. package/dist/types/message.d.ts +39 -0
  281. package/dist/types/user.d.ts +18 -0
  282. package/dist/types/user.js +0 -0
  283. package/package.json +82 -59
  284. package/src/assets/fonts/iconfont.ttf +0 -0
  285. package/src/assets/fonts/iconfont.woff +0 -0
  286. package/src/assets/fonts/iconfont.woff2 +0 -0
  287. package/src/components/Chat/Chat.mdx +271 -0
  288. package/src/components/Chat/Chat.module.scss +11 -0
  289. package/src/components/Chat/Chat.stories.tsx +215 -0
  290. package/src/components/Chat/Chat.tsx +30 -283
  291. package/src/components/Chat/Chat.zh-CN.mdx +275 -0
  292. package/src/components/Chat/index.ts +0 -4
  293. package/src/components/ChatHeader/ChatHeader.stories.tsx +129 -0
  294. package/src/components/ChatHeader/ChatHeader.tsx +62 -36
  295. package/src/components/ChatHeader/ChatHeader.zh-CN.mdx +159 -0
  296. package/src/components/ChatHeader/ChatHeaderActions/ChatHeaderActions.module.scss +44 -0
  297. package/src/components/ChatHeader/ChatHeaderActions/ChatHeaderActions.tsx +105 -0
  298. package/src/components/ChatHeader/ChatHeaderActions/index.ts +1 -0
  299. package/src/components/ChatHeader/ChatHeaderUI/ChatHeaderUI.module.scss +111 -0
  300. package/src/components/ChatHeader/ChatHeaderUI/ChatHeaderUI.tsx +127 -0
  301. package/src/components/ChatHeader/ChatHeaderUI/index.ts +3 -0
  302. package/src/components/ChatHeader/index.ts +1 -1
  303. package/src/components/Checkbox/index.tsx +1 -1
  304. package/src/components/Checkbox/styles/color.scss +1 -1
  305. package/src/components/Checkbox/styles/index.scss +2 -2
  306. package/src/components/Contact/Contact.tsx +3 -3
  307. package/src/components/Contact/ContactInfo/ContactInfo.tsx +9 -8
  308. package/src/components/Contact/ContactInfo/basicInfo.tsx +7 -7
  309. package/src/components/Contact/ContactInfo/blockInfo.tsx +4 -4
  310. package/src/components/Contact/ContactInfo/friendApplication.tsx +8 -6
  311. package/src/components/Contact/ContactInfo/friendInfo.tsx +10 -15
  312. package/src/components/Contact/ContactInfo/groupInfo.tsx +9 -12
  313. package/src/components/Contact/ContactInfo/hooks/useContactInfo.tsx +12 -13
  314. package/src/components/Contact/ContactInfo/index.scss +1 -1
  315. package/src/components/Contact/ContactList/ContactList.tsx +46 -48
  316. package/src/components/Contact/ContactList/index.scss +1 -5
  317. package/src/components/Contact/hooks/useTUIContact.tsx +6 -7
  318. package/src/components/Contact/index.scss +1 -1
  319. package/src/components/ContactSearch/ContactSearch.tsx +11 -10
  320. package/src/components/ContactSearch/hooks/useContactSearch.tsx +5 -5
  321. package/src/components/ContactSearch/index.scss +1 -1
  322. package/src/components/DivWithEdit/DivWithEdit.tsx +43 -37
  323. package/src/components/DivWithEdit/WithSelect.tsx +9 -4
  324. package/src/components/DivWithEdit/WithText.tsx +4 -1
  325. package/src/components/DivWithEdit/styles/index.scss +15 -7
  326. package/src/components/Icon/Icon.tsx +4 -4
  327. package/src/components/Icon/styles/index.scss +3 -3
  328. package/src/components/IconFont/Icon.module.scss +42 -0
  329. package/src/components/IconFont/Icon.tsx +68 -0
  330. package/src/components/IconFont/index.ts +3 -0
  331. package/src/components/Input/Input.tsx +34 -24
  332. package/src/components/Input/index.scss +64 -0
  333. package/src/components/Modal/Modal.module.scss +55 -0
  334. package/src/components/Modal/Modal.tsx +110 -0
  335. package/src/components/Modal/index.ts +1 -0
  336. package/src/components/Model/styles/index.scss +2 -2
  337. package/src/components/Plugins/hooks/usePluginsElement.tsx +6 -5
  338. package/src/components/Plugins/index.tsx +12 -10
  339. package/src/components/Plugins/styles/color.scss +2 -2
  340. package/src/components/Plugins/styles/index.scss +2 -2
  341. package/src/components/Plugins/styles/layout.scss +2 -1
  342. package/src/components/Popup/styles/index.scss +2 -2
  343. package/src/components/PopupNew/Popup.module.scss +0 -0
  344. package/src/components/PopupNew/Popup.tsx +47 -0
  345. package/src/components/PopupNew/index.ts +3 -0
  346. package/src/components/Profile/DatePicker/DatePicker.scss +175 -0
  347. package/src/components/Profile/DatePicker/DatePicker.tsx +184 -0
  348. package/src/components/Profile/DatePicker/index.ts +1 -0
  349. package/src/components/Profile/Profile.tsx +11 -12
  350. package/src/components/Profile/ProfileDefault.tsx +101 -106
  351. package/src/components/Profile/myProfile/MyProfile.tsx +10 -9
  352. package/src/components/Profile/myProfile/styles/index.scss +7 -1
  353. package/src/components/Profile/styles/color.scss +1 -1
  354. package/src/components/Profile/styles/index.scss +2 -2
  355. package/src/components/Profile/styles/layout.scss +11 -13
  356. package/src/components/Switch/Switch.tsx +8 -7
  357. package/src/components/index.ts +6 -19
  358. package/src/constant/emoji.ts +97 -0
  359. package/src/constant/index.ts +13 -0
  360. package/src/context/ChatContext.tsx +40 -0
  361. package/src/context/index.ts +4 -7
  362. package/src/hooks/index.ts +6 -5
  363. package/src/index.ts +14 -4
  364. package/src/locales/en-US/ChatSetting.ts +116 -0
  365. package/src/locales/en-US/DateRangePicker.ts +32 -0
  366. package/src/locales/en-US/GroupTip.ts +21 -0
  367. package/src/locales/en-US/Search.ts +50 -0
  368. package/src/locales/en-US/TUIChat.ts +30 -1
  369. package/src/locales/en-US/TUIConversation.ts +8 -0
  370. package/src/locales/en-US/TUIProfile.ts +1 -1
  371. package/src/locales/en-US/emoji.ts +1 -1
  372. package/src/locales/en-US/index.ts +10 -2
  373. package/src/locales/index.ts +3 -3
  374. package/src/locales/ja-JP/ChatSetting.ts +117 -0
  375. package/src/locales/ja-JP/DateRangePicker.ts +32 -0
  376. package/src/locales/ja-JP/GroupTip.ts +21 -0
  377. package/src/locales/ja-JP/Search.ts +50 -0
  378. package/src/locales/ja-JP/TUIChat.ts +30 -1
  379. package/src/locales/ja-JP/TUIConversation.ts +8 -0
  380. package/src/locales/ja-JP/index.ts +10 -2
  381. package/src/locales/ko-KR/ChatSetting.ts +117 -0
  382. package/src/locales/ko-KR/DateRangePicker.ts +32 -0
  383. package/src/locales/ko-KR/GroupTip.ts +21 -0
  384. package/src/locales/ko-KR/Search.ts +50 -0
  385. package/src/locales/ko-KR/TUIChat.ts +30 -1
  386. package/src/locales/ko-KR/TUIConversation.ts +8 -0
  387. package/src/locales/ko-KR/index.ts +10 -2
  388. package/src/locales/zh-CN/ChatSetting.ts +116 -0
  389. package/src/locales/zh-CN/DateRangePicker.ts +32 -0
  390. package/src/locales/zh-CN/GroupTip.ts +21 -0
  391. package/src/locales/zh-CN/Search.ts +50 -0
  392. package/src/locales/zh-CN/TUIChat.ts +30 -1
  393. package/src/locales/zh-CN/TUIConversation.ts +8 -0
  394. package/src/locales/zh-CN/index.ts +10 -2
  395. package/src/locales/zh-TW/ChatSetting.ts +117 -0
  396. package/src/locales/zh-TW/DateRangePicker.ts +32 -0
  397. package/src/locales/zh-TW/GroupTip.ts +21 -0
  398. package/src/locales/zh-TW/Search.ts +50 -0
  399. package/src/locales/zh-TW/TUIChat.ts +30 -1
  400. package/src/locales/zh-TW/TUIConversation.ts +8 -0
  401. package/src/locales/zh-TW/index.ts +10 -2
  402. package/src/server/mainServer.ts +45 -0
  403. package/src/states/ChatHeaderState.ts +121 -0
  404. package/src/states/UIManagerState.ts +201 -0
  405. package/src/states/index.ts +3 -0
  406. package/src/states/useChatHeaderStore.mdx +182 -0
  407. package/src/stories/GettingStarted.mdx +89 -0
  408. package/src/styles/fonts/icon-font.scss +3 -3
  409. package/src/styles/index.scss +2 -4
  410. package/src/styles/mixins/_scrollbar.scss +62 -0
  411. package/src/styles/mixins/_text.scss +25 -0
  412. package/src/styles/mixins/index.scss +2 -0
  413. package/src/styles/normalize.scss +45 -1
  414. package/src/types/message.ts +51 -0
  415. package/src/types/user.ts +20 -0
  416. package/src/vite-env.d.ts +1 -0
  417. package/tsconfig.app.json +39 -0
  418. package/tsconfig.json +4 -13
  419. package/tsconfig.node.json +24 -0
  420. package/vite.config.playground.ts +48 -0
  421. package/vite.config.ts +144 -0
  422. package/.eslintrc.js +0 -251
  423. package/dist/cjs/assets/fonts/iconfont.ttf +0 -0
  424. package/dist/cjs/assets/fonts/iconfont.woff +0 -0
  425. package/dist/cjs/assets/fonts/iconfont.woff2 +0 -0
  426. package/dist/cjs/components/Avatar/Avatar.d.ts +0 -22
  427. package/dist/cjs/components/Avatar/Avatar.js +0 -1
  428. package/dist/cjs/components/Avatar/default.d.ts +0 -7
  429. package/dist/cjs/components/Avatar/default.js +0 -1
  430. package/dist/cjs/components/Chat/Chat.d.ts +0 -39
  431. package/dist/cjs/components/Chat/Chat.js +0 -1
  432. package/dist/cjs/components/Chat/ChatState.js +0 -1
  433. package/dist/cjs/components/Chat/hooks/useCreateTUIChatStateContext.js +0 -1
  434. package/dist/cjs/components/Chat/hooks/useHandleMessage.d.ts +0 -7
  435. package/dist/cjs/components/Chat/hooks/useHandleMessage.js +0 -1
  436. package/dist/cjs/components/Chat/hooks/useHandleMessageList.js +0 -1
  437. package/dist/cjs/components/Chat/index.js +0 -1
  438. package/dist/cjs/components/Chat/server.js +0 -1
  439. package/dist/cjs/components/Chat/utils.js +0 -1
  440. package/dist/cjs/components/ChatHeader/ChatHeader.d.ts +0 -16
  441. package/dist/cjs/components/ChatHeader/ChatHeader.js +0 -1
  442. package/dist/cjs/components/ChatHeader/ChatHeaderDefault.d.ts +0 -18
  443. package/dist/cjs/components/ChatHeader/ChatHeaderDefault.js +0 -1
  444. package/dist/cjs/components/ChatSetting/ChatSetting.d.ts +0 -6
  445. package/dist/cjs/components/ChatSetting/ChatSetting.js +0 -1
  446. package/dist/cjs/components/Checkbox/index.d.ts +0 -17
  447. package/dist/cjs/components/Checkbox/index.js +0 -1
  448. package/dist/cjs/components/Contact/Contact.d.ts +0 -6
  449. package/dist/cjs/components/Contact/Contact.js +0 -1
  450. package/dist/cjs/components/Contact/ContactInfo/ContactInfo.d.ts +0 -10
  451. package/dist/cjs/components/Contact/ContactInfo/ContactInfo.js +0 -1
  452. package/dist/cjs/components/Contact/ContactInfo/addFriendInfo.js +0 -1
  453. package/dist/cjs/components/Contact/ContactInfo/basicInfo.js +0 -1
  454. package/dist/cjs/components/Contact/ContactInfo/blockInfo.js +0 -1
  455. package/dist/cjs/components/Contact/ContactInfo/friendApplication.js +0 -1
  456. package/dist/cjs/components/Contact/ContactInfo/friendInfo.js +0 -1
  457. package/dist/cjs/components/Contact/ContactInfo/groupInfo.js +0 -1
  458. package/dist/cjs/components/Contact/ContactInfo/hooks/useContactInfo.js +0 -1
  459. package/dist/cjs/components/Contact/ContactList/ContactList.d.ts +0 -6
  460. package/dist/cjs/components/Contact/ContactList/ContactList.js +0 -1
  461. package/dist/cjs/components/Contact/hooks/useTUIContact.js +0 -1
  462. package/dist/cjs/components/ContactSearch/ContactSearch.js +0 -1
  463. package/dist/cjs/components/ContactSearch/hooks/useContactSearch.js +0 -1
  464. package/dist/cjs/components/ConversationActions/ConversationActions.d.ts +0 -52
  465. package/dist/cjs/components/ConversationActions/ConversationActions.js +0 -1
  466. package/dist/cjs/components/ConversationCreate/ConversationCreate.d.ts +0 -21
  467. package/dist/cjs/components/ConversationCreate/ConversationCreate.js +0 -1
  468. package/dist/cjs/components/ConversationCreate/ConversationCreateButton.d.ts +0 -13
  469. package/dist/cjs/components/ConversationCreate/ConversationCreateButton.js +0 -1
  470. package/dist/cjs/components/ConversationCreate/ConversationCreateGroupDetail.d.ts +0 -16
  471. package/dist/cjs/components/ConversationCreate/ConversationCreateGroupDetail.js +0 -1
  472. package/dist/cjs/components/ConversationCreate/ConversationCreateSelectView.d.ts +0 -15
  473. package/dist/cjs/components/ConversationCreate/ConversationCreateSelectView.js +0 -1
  474. package/dist/cjs/components/ConversationCreate/ConversationCreateUserSelectList.d.ts +0 -18
  475. package/dist/cjs/components/ConversationCreate/ConversationCreateUserSelectList.js +0 -1
  476. package/dist/cjs/components/ConversationCreate/ConversationGroupTypeInfo.d.ts +0 -24
  477. package/dist/cjs/components/ConversationCreate/ConversationGroupTypeInfo.js +0 -1
  478. package/dist/cjs/components/ConversationCreate/hooks/useConversationCreate.d.ts +0 -14
  479. package/dist/cjs/components/ConversationCreate/hooks/useConversationCreate.js +0 -1
  480. package/dist/cjs/components/ConversationCreate/static/word.js +0 -1
  481. package/dist/cjs/components/ConversationList/ConversationList.d.ts +0 -57
  482. package/dist/cjs/components/ConversationList/ConversationList.js +0 -1
  483. package/dist/cjs/components/ConversationList/ConversationListContent/ConversationListContent.d.ts +0 -23
  484. package/dist/cjs/components/ConversationList/ConversationListContent/ConversationListContent.js +0 -1
  485. package/dist/cjs/components/ConversationList/ConversationListHeader/ConversationListHeader.d.ts +0 -15
  486. package/dist/cjs/components/ConversationList/ConversationListHeader/ConversationListHeader.js +0 -1
  487. package/dist/cjs/components/ConversationPreview/ConversationPreview.d.ts +0 -45
  488. package/dist/cjs/components/ConversationPreview/ConversationPreview.js +0 -1
  489. package/dist/cjs/components/ConversationPreview/utils.js +0 -1
  490. package/dist/cjs/components/ConversationSearch/ConversationSearch.d.ts +0 -39
  491. package/dist/cjs/components/ConversationSearch/ConversationSearch.js +0 -1
  492. package/dist/cjs/components/ConversationSearch/ConversationSearchInput/ConversationSearchInput.d.ts +0 -7
  493. package/dist/cjs/components/ConversationSearch/ConversationSearchInput/ConversationSearchInput.js +0 -1
  494. package/dist/cjs/components/ConversationSearch/ConversationSearchResult/ConversationSearchResult.d.ts +0 -29
  495. package/dist/cjs/components/ConversationSearch/ConversationSearchResult/ConversationSearchResult.js +0 -1
  496. package/dist/cjs/components/DivWithEdit/DivWithEdit.d.ts +0 -17
  497. package/dist/cjs/components/DivWithEdit/DivWithEdit.js +0 -1
  498. package/dist/cjs/components/DivWithEdit/WithSelect.js +0 -1
  499. package/dist/cjs/components/DivWithEdit/WithText.js +0 -1
  500. package/dist/cjs/components/EmptyStateIndicator/EmptyStateIndicator.d.ts +0 -11
  501. package/dist/cjs/components/EmptyStateIndicator/EmptyStateIndicator.js +0 -1
  502. package/dist/cjs/components/Icon/Icon.d.ts +0 -15
  503. package/dist/cjs/components/Icon/Icon.js +0 -1
  504. package/dist/cjs/components/Icon/config.js +0 -1
  505. package/dist/cjs/components/Icon/images/add-friend.svg.js +0 -1
  506. package/dist/cjs/components/Icon/images/add.png.js +0 -1
  507. package/dist/cjs/components/Icon/images/arrow-down.png.js +0 -1
  508. package/dist/cjs/components/Icon/images/arrow-right.png.js +0 -1
  509. package/dist/cjs/components/Icon/images/back.png.js +0 -1
  510. package/dist/cjs/components/Icon/images/camera.png.js +0 -1
  511. package/dist/cjs/components/Icon/images/cancel.png.js +0 -1
  512. package/dist/cjs/components/Icon/images/clear.png.js +0 -1
  513. package/dist/cjs/components/Icon/images/close.png.js +0 -1
  514. package/dist/cjs/components/Icon/images/confirm.png.js +0 -1
  515. package/dist/cjs/components/Icon/images/copy.png.js +0 -1
  516. package/dist/cjs/components/Icon/images/cry.png.js +0 -1
  517. package/dist/cjs/components/Icon/images/del.png.js +0 -1
  518. package/dist/cjs/components/Icon/images/edit.png.js +0 -1
  519. package/dist/cjs/components/Icon/images/effort.png.js +0 -1
  520. package/dist/cjs/components/Icon/images/ellipse.png.js +0 -1
  521. package/dist/cjs/components/Icon/images/emoji.png.js +0 -1
  522. package/dist/cjs/components/Icon/images/file.png.js +0 -1
  523. package/dist/cjs/components/Icon/images/files.png.js +0 -1
  524. package/dist/cjs/components/Icon/images/forward.png.js +0 -1
  525. package/dist/cjs/components/Icon/images/image.png.js +0 -1
  526. package/dist/cjs/components/Icon/images/like.png.js +0 -1
  527. package/dist/cjs/components/Icon/images/liked.png.js +0 -1
  528. package/dist/cjs/components/Icon/images/living.png.js +0 -1
  529. package/dist/cjs/components/Icon/images/member.png.js +0 -1
  530. package/dist/cjs/components/Icon/images/more.png.js +0 -1
  531. package/dist/cjs/components/Icon/images/mute.svg.js +0 -1
  532. package/dist/cjs/components/Icon/images/owner.png.js +0 -1
  533. package/dist/cjs/components/Icon/images/progress.png.js +0 -1
  534. package/dist/cjs/components/Icon/images/quote.png.js +0 -1
  535. package/dist/cjs/components/Icon/images/reply.png.js +0 -1
  536. package/dist/cjs/components/Icon/images/revocation.png.js +0 -1
  537. package/dist/cjs/components/Icon/images/right.png.js +0 -1
  538. package/dist/cjs/components/Icon/images/search.png.js +0 -1
  539. package/dist/cjs/components/Icon/images/send.png.js +0 -1
  540. package/dist/cjs/components/Icon/images/star.png.js +0 -1
  541. package/dist/cjs/components/Icon/images/union.png.js +0 -1
  542. package/dist/cjs/components/Icon/images/unlike.png.js +0 -1
  543. package/dist/cjs/components/Icon/images/unliked.png.js +0 -1
  544. package/dist/cjs/components/Icon/images/ununion.png.js +0 -1
  545. package/dist/cjs/components/Icon/images/unvector.png.js +0 -1
  546. package/dist/cjs/components/Icon/images/vector.png.js +0 -1
  547. package/dist/cjs/components/Icon/images/video-call.svg.js +0 -1
  548. package/dist/cjs/components/Icon/images/video.png.js +0 -1
  549. package/dist/cjs/components/Icon/images/voice-call.svg.js +0 -1
  550. package/dist/cjs/components/Icon/images/voice.png.js +0 -1
  551. package/dist/cjs/components/Icon/type.d.ts +0 -52
  552. package/dist/cjs/components/Icon/type.js +0 -1
  553. package/dist/cjs/components/InfiniteScrollPaginator/InfiniteScroll.d.ts +0 -20
  554. package/dist/cjs/components/InfiniteScrollPaginator/InfiniteScroll.js +0 -1
  555. package/dist/cjs/components/Input/Input.d.ts +0 -26
  556. package/dist/cjs/components/Input/Input.js +0 -1
  557. package/dist/cjs/components/MessageElement/Message.d.ts +0 -61
  558. package/dist/cjs/components/MessageElement/Message.js +0 -1
  559. package/dist/cjs/components/MessageElement/MessageAudio.js +0 -1
  560. package/dist/cjs/components/MessageElement/MessageAvatar.js +0 -1
  561. package/dist/cjs/components/MessageElement/MessageBubble.js +0 -1
  562. package/dist/cjs/components/MessageElement/MessageContext.d.ts +0 -9
  563. package/dist/cjs/components/MessageElement/MessageContext.js +0 -1
  564. package/dist/cjs/components/MessageElement/MessageCustom.js +0 -1
  565. package/dist/cjs/components/MessageElement/MessageDefault.js +0 -1
  566. package/dist/cjs/components/MessageElement/MessageFace.js +0 -1
  567. package/dist/cjs/components/MessageElement/MessageFile.js +0 -1
  568. package/dist/cjs/components/MessageElement/MessageImage.js +0 -1
  569. package/dist/cjs/components/MessageElement/MessageLocation.js +0 -1
  570. package/dist/cjs/components/MessageElement/MessageMerger.js +0 -1
  571. package/dist/cjs/components/MessageElement/MessageName.js +0 -1
  572. package/dist/cjs/components/MessageElement/MessagePlugins.d.ts +0 -24
  573. package/dist/cjs/components/MessageElement/MessagePlugins.js +0 -1
  574. package/dist/cjs/components/MessageElement/MessageProgress.js +0 -1
  575. package/dist/cjs/components/MessageElement/MessageRevoke.js +0 -1
  576. package/dist/cjs/components/MessageElement/MessageStatus.js +0 -1
  577. package/dist/cjs/components/MessageElement/MessageSystem.js +0 -1
  578. package/dist/cjs/components/MessageElement/MessageText.js +0 -1
  579. package/dist/cjs/components/MessageElement/MessageTip.js +0 -1
  580. package/dist/cjs/components/MessageElement/MessageVideo.js +0 -1
  581. package/dist/cjs/components/MessageElement/hooks/useMessageContextHandler.js +0 -1
  582. package/dist/cjs/components/MessageElement/hooks/useMessageHandler.js +0 -1
  583. package/dist/cjs/components/MessageElement/hooks/useMessagePluginElement.js +0 -1
  584. package/dist/cjs/components/MessageElement/hooks/useMessageReply.js +0 -1
  585. package/dist/cjs/components/MessageElement/utils/decodeText.js +0 -1
  586. package/dist/cjs/components/MessageElement/utils/emojiMap.js +0 -1
  587. package/dist/cjs/components/MessageElement/utils/index.js +0 -1
  588. package/dist/cjs/components/MessageInput/EmojiPicker.js +0 -1
  589. package/dist/cjs/components/MessageInput/Forward.js +0 -1
  590. package/dist/cjs/components/MessageInput/InputPluginsDefalut.d.ts +0 -5
  591. package/dist/cjs/components/MessageInput/InputPluginsDefalut.js +0 -1
  592. package/dist/cjs/components/MessageInput/InputQuoteDefalut.js +0 -1
  593. package/dist/cjs/components/MessageInput/MessageInput.d.ts +0 -29
  594. package/dist/cjs/components/MessageInput/MessageInput.js +0 -1
  595. package/dist/cjs/components/MessageInput/MessageInputDefault.d.ts +0 -5
  596. package/dist/cjs/components/MessageInput/MessageInputDefault.js +0 -1
  597. package/dist/cjs/components/MessageInput/Transmitter.js +0 -1
  598. package/dist/cjs/components/MessageInput/hooks/useCreateMessageInputContext.js +0 -1
  599. package/dist/cjs/components/MessageInput/hooks/useEmojiPicker.d.ts +0 -6
  600. package/dist/cjs/components/MessageInput/hooks/useEmojiPicker.js +0 -1
  601. package/dist/cjs/components/MessageInput/hooks/useHandleForwardMessage.js +0 -1
  602. package/dist/cjs/components/MessageInput/hooks/useHandleQuoteMessage.js +0 -1
  603. package/dist/cjs/components/MessageInput/hooks/useMessageInputState.d.ts +0 -6
  604. package/dist/cjs/components/MessageInput/hooks/useMessageInputState.js +0 -1
  605. package/dist/cjs/components/MessageInput/hooks/useMessageInputText.js +0 -1
  606. package/dist/cjs/components/MessageInput/hooks/useUploadElement.js +0 -1
  607. package/dist/cjs/components/MessageInput/hooks/useUploadPicker.d.ts +0 -5
  608. package/dist/cjs/components/MessageInput/hooks/useUploadPicker.js +0 -1
  609. package/dist/cjs/components/MessageList/MessageList.d.ts +0 -13
  610. package/dist/cjs/components/MessageList/MessageList.js +0 -1
  611. package/dist/cjs/components/MessageList/hooks/useMessageListElement.js +0 -1
  612. package/dist/cjs/components/Model/index.d.ts +0 -9
  613. package/dist/cjs/components/Model/index.js +0 -1
  614. package/dist/cjs/components/PlaceHolder/index.d.ts +0 -34
  615. package/dist/cjs/components/PlaceHolder/index.js +0 -1
  616. package/dist/cjs/components/Plugins/hooks/usePluginsElement.js +0 -1
  617. package/dist/cjs/components/Plugins/index.d.ts +0 -21
  618. package/dist/cjs/components/Plugins/index.js +0 -1
  619. package/dist/cjs/components/Popup/index.d.ts +0 -13
  620. package/dist/cjs/components/Popup/index.js +0 -1
  621. package/dist/cjs/components/Profile/Profile.d.ts +0 -10
  622. package/dist/cjs/components/Profile/Profile.js +0 -1
  623. package/dist/cjs/components/Profile/ProfileDefault.d.ts +0 -12
  624. package/dist/cjs/components/Profile/ProfileDefault.js +0 -1
  625. package/dist/cjs/components/Profile/hooks/useMyProfile.js +0 -1
  626. package/dist/cjs/components/Profile/myProfile/MyProfile.js +0 -1
  627. package/dist/cjs/components/Switch/Switch.d.ts +0 -12
  628. package/dist/cjs/components/Switch/Switch.js +0 -1
  629. package/dist/cjs/components/Switch/utils/newId.js +0 -1
  630. package/dist/cjs/components/Toast/index.d.ts +0 -11
  631. package/dist/cjs/components/Toast/index.js +0 -1
  632. package/dist/cjs/components/utils.js +0 -1
  633. package/dist/cjs/constants.d.ts +0 -11
  634. package/dist/cjs/constants.js +0 -1
  635. package/dist/cjs/context/ChatActionContext.d.ts +0 -26
  636. package/dist/cjs/context/ChatActionContext.js +0 -1
  637. package/dist/cjs/context/ChatStateContext.d.ts +0 -37
  638. package/dist/cjs/context/ChatStateContext.js +0 -1
  639. package/dist/cjs/context/ComponentContext.d.ts +0 -29
  640. package/dist/cjs/context/ComponentContext.js +0 -1
  641. package/dist/cjs/context/ContactContext.d.ts +0 -18
  642. package/dist/cjs/context/ContactContext.js +0 -1
  643. package/dist/cjs/context/ConversationListContext.d.ts +0 -22
  644. package/dist/cjs/context/ConversationListContext.js +0 -1
  645. package/dist/cjs/context/LanguageContext.js +0 -1
  646. package/dist/cjs/context/MessageContext.d.ts +0 -62
  647. package/dist/cjs/context/MessageContext.js +0 -1
  648. package/dist/cjs/context/MessageInputContext.d.ts +0 -36
  649. package/dist/cjs/context/MessageInputContext.js +0 -1
  650. package/dist/cjs/context/ThemeContext.js +0 -1
  651. package/dist/cjs/context/UIKitContext.d.ts +0 -25
  652. package/dist/cjs/context/UIKitContext.js +0 -1
  653. package/dist/cjs/hooks/index.js +0 -1
  654. package/dist/cjs/hooks/useConversation.d.ts +0 -6
  655. package/dist/cjs/hooks/useConversation.js +0 -1
  656. package/dist/cjs/hooks/useLongPress.d.ts +0 -3
  657. package/dist/cjs/hooks/useLongPress.js +0 -1
  658. package/dist/cjs/hooks/useMouseHover.js +0 -1
  659. package/dist/cjs/hooks/useProfile.d.ts +0 -5
  660. package/dist/cjs/hooks/useProfile.js +0 -1
  661. package/dist/cjs/index.css +0 -2
  662. package/dist/cjs/index.d.css +0 -2887
  663. package/dist/cjs/index.d.ts +0 -57
  664. package/dist/cjs/index.js +0 -1
  665. package/dist/cjs/locales/en-US/TUIChat.js +0 -1
  666. package/dist/cjs/locales/en-US/TUIContact.js +0 -1
  667. package/dist/cjs/locales/en-US/TUIConversation.js +0 -1
  668. package/dist/cjs/locales/en-US/TUIProfile.js +0 -1
  669. package/dist/cjs/locales/en-US/emoji.js +0 -1
  670. package/dist/cjs/locales/en-US/index.js +0 -1
  671. package/dist/cjs/locales/index.js +0 -1
  672. package/dist/cjs/locales/ja-JP/TUIChat.js +0 -1
  673. package/dist/cjs/locales/ja-JP/TUIContact.js +0 -1
  674. package/dist/cjs/locales/ja-JP/TUIConversation.js +0 -1
  675. package/dist/cjs/locales/ja-JP/TUIProfile.js +0 -1
  676. package/dist/cjs/locales/ja-JP/emoji.js +0 -1
  677. package/dist/cjs/locales/ja-JP/index.js +0 -1
  678. package/dist/cjs/locales/ko-KR/TUIChat.js +0 -1
  679. package/dist/cjs/locales/ko-KR/TUIContact.js +0 -1
  680. package/dist/cjs/locales/ko-KR/TUIConversation.js +0 -1
  681. package/dist/cjs/locales/ko-KR/TUIProfile.js +0 -1
  682. package/dist/cjs/locales/ko-KR/emoji.js +0 -1
  683. package/dist/cjs/locales/ko-KR/index.js +0 -1
  684. package/dist/cjs/locales/zh-CN/TUIChat.js +0 -1
  685. package/dist/cjs/locales/zh-CN/TUIContact.js +0 -1
  686. package/dist/cjs/locales/zh-CN/TUIConversation.js +0 -1
  687. package/dist/cjs/locales/zh-CN/TUIProfile.js +0 -1
  688. package/dist/cjs/locales/zh-CN/emoji.js +0 -1
  689. package/dist/cjs/locales/zh-CN/index.js +0 -1
  690. package/dist/cjs/locales/zh-TW/TUIChat.js +0 -1
  691. package/dist/cjs/locales/zh-TW/TUIContact.js +0 -1
  692. package/dist/cjs/locales/zh-TW/TUIConversation.js +0 -1
  693. package/dist/cjs/locales/zh-TW/TUIProfile.js +0 -1
  694. package/dist/cjs/locales/zh-TW/emoji.js +0 -1
  695. package/dist/cjs/locales/zh-TW/index.js +0 -1
  696. package/dist/cjs/node_modules/zustand/esm/react.mjs.js +0 -1
  697. package/dist/cjs/node_modules/zustand/esm/vanilla.mjs.js +0 -1
  698. package/dist/cjs/server.js +0 -1
  699. package/dist/cjs/store/UIManagerStore.js +0 -1
  700. package/dist/cjs/utils/env.d.ts +0 -5
  701. package/dist/cjs/utils/env.js +0 -1
  702. package/dist/esm/assets/fonts/iconfont.ttf +0 -0
  703. package/dist/esm/assets/fonts/iconfont.woff +0 -0
  704. package/dist/esm/assets/fonts/iconfont.woff2 +0 -0
  705. package/dist/esm/components/Avatar/Avatar.d.ts +0 -22
  706. package/dist/esm/components/Avatar/Avatar.js +0 -1
  707. package/dist/esm/components/Avatar/default.d.ts +0 -7
  708. package/dist/esm/components/Avatar/default.js +0 -1
  709. package/dist/esm/components/Chat/Chat.d.ts +0 -39
  710. package/dist/esm/components/Chat/Chat.js +0 -1
  711. package/dist/esm/components/Chat/ChatState.js +0 -1
  712. package/dist/esm/components/Chat/hooks/useCreateTUIChatStateContext.js +0 -1
  713. package/dist/esm/components/Chat/hooks/useHandleMessage.d.ts +0 -7
  714. package/dist/esm/components/Chat/hooks/useHandleMessage.js +0 -1
  715. package/dist/esm/components/Chat/hooks/useHandleMessageList.js +0 -1
  716. package/dist/esm/components/Chat/index.js +0 -1
  717. package/dist/esm/components/Chat/server.js +0 -1
  718. package/dist/esm/components/Chat/utils.js +0 -1
  719. package/dist/esm/components/ChatHeader/ChatHeader.d.ts +0 -16
  720. package/dist/esm/components/ChatHeader/ChatHeader.js +0 -1
  721. package/dist/esm/components/ChatHeader/ChatHeaderDefault.d.ts +0 -18
  722. package/dist/esm/components/ChatHeader/ChatHeaderDefault.js +0 -1
  723. package/dist/esm/components/ChatSetting/ChatSetting.d.ts +0 -6
  724. package/dist/esm/components/ChatSetting/ChatSetting.js +0 -1
  725. package/dist/esm/components/Checkbox/index.d.ts +0 -17
  726. package/dist/esm/components/Checkbox/index.js +0 -1
  727. package/dist/esm/components/Contact/Contact.d.ts +0 -6
  728. package/dist/esm/components/Contact/Contact.js +0 -1
  729. package/dist/esm/components/Contact/ContactInfo/ContactInfo.d.ts +0 -10
  730. package/dist/esm/components/Contact/ContactInfo/ContactInfo.js +0 -1
  731. package/dist/esm/components/Contact/ContactInfo/addFriendInfo.js +0 -1
  732. package/dist/esm/components/Contact/ContactInfo/basicInfo.js +0 -1
  733. package/dist/esm/components/Contact/ContactInfo/blockInfo.js +0 -1
  734. package/dist/esm/components/Contact/ContactInfo/friendApplication.js +0 -1
  735. package/dist/esm/components/Contact/ContactInfo/friendInfo.js +0 -1
  736. package/dist/esm/components/Contact/ContactInfo/groupInfo.js +0 -1
  737. package/dist/esm/components/Contact/ContactInfo/hooks/useContactInfo.js +0 -1
  738. package/dist/esm/components/Contact/ContactList/ContactList.d.ts +0 -6
  739. package/dist/esm/components/Contact/ContactList/ContactList.js +0 -1
  740. package/dist/esm/components/Contact/hooks/useTUIContact.js +0 -1
  741. package/dist/esm/components/ContactSearch/ContactSearch.js +0 -1
  742. package/dist/esm/components/ContactSearch/hooks/useContactSearch.js +0 -1
  743. package/dist/esm/components/ConversationActions/ConversationActions.d.ts +0 -52
  744. package/dist/esm/components/ConversationActions/ConversationActions.js +0 -1
  745. package/dist/esm/components/ConversationCreate/ConversationCreate.d.ts +0 -21
  746. package/dist/esm/components/ConversationCreate/ConversationCreate.js +0 -1
  747. package/dist/esm/components/ConversationCreate/ConversationCreateButton.d.ts +0 -13
  748. package/dist/esm/components/ConversationCreate/ConversationCreateButton.js +0 -1
  749. package/dist/esm/components/ConversationCreate/ConversationCreateGroupDetail.d.ts +0 -16
  750. package/dist/esm/components/ConversationCreate/ConversationCreateGroupDetail.js +0 -1
  751. package/dist/esm/components/ConversationCreate/ConversationCreateSelectView.d.ts +0 -15
  752. package/dist/esm/components/ConversationCreate/ConversationCreateSelectView.js +0 -1
  753. package/dist/esm/components/ConversationCreate/ConversationCreateUserSelectList.d.ts +0 -18
  754. package/dist/esm/components/ConversationCreate/ConversationCreateUserSelectList.js +0 -1
  755. package/dist/esm/components/ConversationCreate/ConversationGroupTypeInfo.d.ts +0 -24
  756. package/dist/esm/components/ConversationCreate/ConversationGroupTypeInfo.js +0 -1
  757. package/dist/esm/components/ConversationCreate/hooks/useConversationCreate.d.ts +0 -14
  758. package/dist/esm/components/ConversationCreate/hooks/useConversationCreate.js +0 -1
  759. package/dist/esm/components/ConversationCreate/static/word.js +0 -1
  760. package/dist/esm/components/ConversationList/ConversationList.d.ts +0 -57
  761. package/dist/esm/components/ConversationList/ConversationList.js +0 -1
  762. package/dist/esm/components/ConversationList/ConversationListContent/ConversationListContent.d.ts +0 -23
  763. package/dist/esm/components/ConversationList/ConversationListContent/ConversationListContent.js +0 -1
  764. package/dist/esm/components/ConversationList/ConversationListHeader/ConversationListHeader.d.ts +0 -15
  765. package/dist/esm/components/ConversationList/ConversationListHeader/ConversationListHeader.js +0 -1
  766. package/dist/esm/components/ConversationPreview/ConversationPreview.d.ts +0 -45
  767. package/dist/esm/components/ConversationPreview/ConversationPreview.js +0 -1
  768. package/dist/esm/components/ConversationPreview/utils.js +0 -1
  769. package/dist/esm/components/ConversationSearch/ConversationSearch.d.ts +0 -39
  770. package/dist/esm/components/ConversationSearch/ConversationSearch.js +0 -1
  771. package/dist/esm/components/ConversationSearch/ConversationSearchInput/ConversationSearchInput.d.ts +0 -7
  772. package/dist/esm/components/ConversationSearch/ConversationSearchInput/ConversationSearchInput.js +0 -1
  773. package/dist/esm/components/ConversationSearch/ConversationSearchResult/ConversationSearchResult.d.ts +0 -29
  774. package/dist/esm/components/ConversationSearch/ConversationSearchResult/ConversationSearchResult.js +0 -1
  775. package/dist/esm/components/DivWithEdit/DivWithEdit.d.ts +0 -17
  776. package/dist/esm/components/DivWithEdit/DivWithEdit.js +0 -1
  777. package/dist/esm/components/DivWithEdit/WithSelect.js +0 -1
  778. package/dist/esm/components/DivWithEdit/WithText.js +0 -1
  779. package/dist/esm/components/EmptyStateIndicator/EmptyStateIndicator.d.ts +0 -11
  780. package/dist/esm/components/EmptyStateIndicator/EmptyStateIndicator.js +0 -1
  781. package/dist/esm/components/Icon/Icon.d.ts +0 -15
  782. package/dist/esm/components/Icon/Icon.js +0 -1
  783. package/dist/esm/components/Icon/config.js +0 -1
  784. package/dist/esm/components/Icon/images/add-friend.svg.js +0 -1
  785. package/dist/esm/components/Icon/images/add.png.js +0 -1
  786. package/dist/esm/components/Icon/images/arrow-down.png.js +0 -1
  787. package/dist/esm/components/Icon/images/arrow-right.png.js +0 -1
  788. package/dist/esm/components/Icon/images/back.png.js +0 -1
  789. package/dist/esm/components/Icon/images/camera.png.js +0 -1
  790. package/dist/esm/components/Icon/images/cancel.png.js +0 -1
  791. package/dist/esm/components/Icon/images/clear.png.js +0 -1
  792. package/dist/esm/components/Icon/images/close.png.js +0 -1
  793. package/dist/esm/components/Icon/images/confirm.png.js +0 -1
  794. package/dist/esm/components/Icon/images/copy.png.js +0 -1
  795. package/dist/esm/components/Icon/images/cry.png.js +0 -1
  796. package/dist/esm/components/Icon/images/del.png.js +0 -1
  797. package/dist/esm/components/Icon/images/edit.png.js +0 -1
  798. package/dist/esm/components/Icon/images/effort.png.js +0 -1
  799. package/dist/esm/components/Icon/images/ellipse.png.js +0 -1
  800. package/dist/esm/components/Icon/images/emoji.png.js +0 -1
  801. package/dist/esm/components/Icon/images/file.png.js +0 -1
  802. package/dist/esm/components/Icon/images/files.png.js +0 -1
  803. package/dist/esm/components/Icon/images/forward.png.js +0 -1
  804. package/dist/esm/components/Icon/images/image.png.js +0 -1
  805. package/dist/esm/components/Icon/images/like.png.js +0 -1
  806. package/dist/esm/components/Icon/images/liked.png.js +0 -1
  807. package/dist/esm/components/Icon/images/living.png.js +0 -1
  808. package/dist/esm/components/Icon/images/member.png.js +0 -1
  809. package/dist/esm/components/Icon/images/more.png.js +0 -1
  810. package/dist/esm/components/Icon/images/mute.svg.js +0 -1
  811. package/dist/esm/components/Icon/images/owner.png.js +0 -1
  812. package/dist/esm/components/Icon/images/progress.png.js +0 -1
  813. package/dist/esm/components/Icon/images/quote.png.js +0 -1
  814. package/dist/esm/components/Icon/images/reply.png.js +0 -1
  815. package/dist/esm/components/Icon/images/revocation.png.js +0 -1
  816. package/dist/esm/components/Icon/images/right.png.js +0 -1
  817. package/dist/esm/components/Icon/images/search.png.js +0 -1
  818. package/dist/esm/components/Icon/images/send.png.js +0 -1
  819. package/dist/esm/components/Icon/images/star.png.js +0 -1
  820. package/dist/esm/components/Icon/images/union.png.js +0 -1
  821. package/dist/esm/components/Icon/images/unlike.png.js +0 -1
  822. package/dist/esm/components/Icon/images/unliked.png.js +0 -1
  823. package/dist/esm/components/Icon/images/ununion.png.js +0 -1
  824. package/dist/esm/components/Icon/images/unvector.png.js +0 -1
  825. package/dist/esm/components/Icon/images/vector.png.js +0 -1
  826. package/dist/esm/components/Icon/images/video-call.svg.js +0 -1
  827. package/dist/esm/components/Icon/images/video.png.js +0 -1
  828. package/dist/esm/components/Icon/images/voice-call.svg.js +0 -1
  829. package/dist/esm/components/Icon/images/voice.png.js +0 -1
  830. package/dist/esm/components/Icon/type.d.ts +0 -52
  831. package/dist/esm/components/Icon/type.js +0 -1
  832. package/dist/esm/components/InfiniteScrollPaginator/InfiniteScroll.d.ts +0 -20
  833. package/dist/esm/components/InfiniteScrollPaginator/InfiniteScroll.js +0 -1
  834. package/dist/esm/components/Input/Input.d.ts +0 -26
  835. package/dist/esm/components/Input/Input.js +0 -1
  836. package/dist/esm/components/MessageElement/Message.d.ts +0 -61
  837. package/dist/esm/components/MessageElement/Message.js +0 -1
  838. package/dist/esm/components/MessageElement/MessageAudio.js +0 -1
  839. package/dist/esm/components/MessageElement/MessageAvatar.js +0 -1
  840. package/dist/esm/components/MessageElement/MessageBubble.js +0 -1
  841. package/dist/esm/components/MessageElement/MessageContext.d.ts +0 -9
  842. package/dist/esm/components/MessageElement/MessageContext.js +0 -1
  843. package/dist/esm/components/MessageElement/MessageCustom.js +0 -1
  844. package/dist/esm/components/MessageElement/MessageDefault.js +0 -1
  845. package/dist/esm/components/MessageElement/MessageFace.js +0 -1
  846. package/dist/esm/components/MessageElement/MessageFile.js +0 -1
  847. package/dist/esm/components/MessageElement/MessageImage.js +0 -1
  848. package/dist/esm/components/MessageElement/MessageLocation.js +0 -1
  849. package/dist/esm/components/MessageElement/MessageMerger.js +0 -1
  850. package/dist/esm/components/MessageElement/MessageName.js +0 -1
  851. package/dist/esm/components/MessageElement/MessagePlugins.d.ts +0 -24
  852. package/dist/esm/components/MessageElement/MessagePlugins.js +0 -1
  853. package/dist/esm/components/MessageElement/MessageProgress.js +0 -1
  854. package/dist/esm/components/MessageElement/MessageRevoke.js +0 -1
  855. package/dist/esm/components/MessageElement/MessageStatus.js +0 -1
  856. package/dist/esm/components/MessageElement/MessageSystem.js +0 -1
  857. package/dist/esm/components/MessageElement/MessageText.js +0 -1
  858. package/dist/esm/components/MessageElement/MessageTip.js +0 -1
  859. package/dist/esm/components/MessageElement/MessageVideo.js +0 -1
  860. package/dist/esm/components/MessageElement/hooks/useMessageContextHandler.js +0 -1
  861. package/dist/esm/components/MessageElement/hooks/useMessageHandler.js +0 -1
  862. package/dist/esm/components/MessageElement/hooks/useMessagePluginElement.js +0 -1
  863. package/dist/esm/components/MessageElement/hooks/useMessageReply.js +0 -1
  864. package/dist/esm/components/MessageElement/utils/decodeText.js +0 -1
  865. package/dist/esm/components/MessageElement/utils/emojiMap.js +0 -1
  866. package/dist/esm/components/MessageElement/utils/index.js +0 -1
  867. package/dist/esm/components/MessageInput/EmojiPicker.js +0 -1
  868. package/dist/esm/components/MessageInput/Forward.js +0 -1
  869. package/dist/esm/components/MessageInput/InputPluginsDefalut.d.ts +0 -5
  870. package/dist/esm/components/MessageInput/InputPluginsDefalut.js +0 -1
  871. package/dist/esm/components/MessageInput/InputQuoteDefalut.js +0 -1
  872. package/dist/esm/components/MessageInput/MessageInput.d.ts +0 -29
  873. package/dist/esm/components/MessageInput/MessageInput.js +0 -1
  874. package/dist/esm/components/MessageInput/MessageInputDefault.d.ts +0 -5
  875. package/dist/esm/components/MessageInput/MessageInputDefault.js +0 -1
  876. package/dist/esm/components/MessageInput/Transmitter.js +0 -1
  877. package/dist/esm/components/MessageInput/hooks/useCreateMessageInputContext.js +0 -1
  878. package/dist/esm/components/MessageInput/hooks/useEmojiPicker.d.ts +0 -6
  879. package/dist/esm/components/MessageInput/hooks/useEmojiPicker.js +0 -1
  880. package/dist/esm/components/MessageInput/hooks/useHandleForwardMessage.js +0 -1
  881. package/dist/esm/components/MessageInput/hooks/useHandleQuoteMessage.js +0 -1
  882. package/dist/esm/components/MessageInput/hooks/useMessageInputState.d.ts +0 -6
  883. package/dist/esm/components/MessageInput/hooks/useMessageInputState.js +0 -1
  884. package/dist/esm/components/MessageInput/hooks/useMessageInputText.js +0 -1
  885. package/dist/esm/components/MessageInput/hooks/useUploadElement.js +0 -1
  886. package/dist/esm/components/MessageInput/hooks/useUploadPicker.d.ts +0 -5
  887. package/dist/esm/components/MessageInput/hooks/useUploadPicker.js +0 -1
  888. package/dist/esm/components/MessageList/MessageList.d.ts +0 -13
  889. package/dist/esm/components/MessageList/MessageList.js +0 -1
  890. package/dist/esm/components/MessageList/hooks/useMessageListElement.js +0 -1
  891. package/dist/esm/components/Model/index.d.ts +0 -9
  892. package/dist/esm/components/Model/index.js +0 -1
  893. package/dist/esm/components/PlaceHolder/index.d.ts +0 -34
  894. package/dist/esm/components/PlaceHolder/index.js +0 -1
  895. package/dist/esm/components/Plugins/hooks/usePluginsElement.js +0 -1
  896. package/dist/esm/components/Plugins/index.d.ts +0 -21
  897. package/dist/esm/components/Plugins/index.js +0 -1
  898. package/dist/esm/components/Popup/index.d.ts +0 -13
  899. package/dist/esm/components/Popup/index.js +0 -1
  900. package/dist/esm/components/Profile/Profile.d.ts +0 -10
  901. package/dist/esm/components/Profile/Profile.js +0 -1
  902. package/dist/esm/components/Profile/ProfileDefault.d.ts +0 -12
  903. package/dist/esm/components/Profile/ProfileDefault.js +0 -1
  904. package/dist/esm/components/Profile/hooks/useMyProfile.js +0 -1
  905. package/dist/esm/components/Profile/myProfile/MyProfile.js +0 -1
  906. package/dist/esm/components/Switch/Switch.d.ts +0 -12
  907. package/dist/esm/components/Switch/Switch.js +0 -1
  908. package/dist/esm/components/Switch/utils/newId.js +0 -1
  909. package/dist/esm/components/Toast/index.d.ts +0 -11
  910. package/dist/esm/components/Toast/index.js +0 -1
  911. package/dist/esm/components/utils.js +0 -1
  912. package/dist/esm/constants.d.ts +0 -11
  913. package/dist/esm/constants.js +0 -1
  914. package/dist/esm/context/ChatActionContext.d.ts +0 -26
  915. package/dist/esm/context/ChatActionContext.js +0 -1
  916. package/dist/esm/context/ChatStateContext.d.ts +0 -37
  917. package/dist/esm/context/ChatStateContext.js +0 -1
  918. package/dist/esm/context/ComponentContext.d.ts +0 -29
  919. package/dist/esm/context/ComponentContext.js +0 -1
  920. package/dist/esm/context/ContactContext.d.ts +0 -18
  921. package/dist/esm/context/ContactContext.js +0 -1
  922. package/dist/esm/context/ConversationListContext.d.ts +0 -22
  923. package/dist/esm/context/ConversationListContext.js +0 -1
  924. package/dist/esm/context/LanguageContext.js +0 -1
  925. package/dist/esm/context/MessageContext.d.ts +0 -62
  926. package/dist/esm/context/MessageContext.js +0 -1
  927. package/dist/esm/context/MessageInputContext.d.ts +0 -36
  928. package/dist/esm/context/MessageInputContext.js +0 -1
  929. package/dist/esm/context/ThemeContext.js +0 -1
  930. package/dist/esm/context/UIKitContext.d.ts +0 -25
  931. package/dist/esm/context/UIKitContext.js +0 -1
  932. package/dist/esm/hooks/index.js +0 -1
  933. package/dist/esm/hooks/useConversation.d.ts +0 -6
  934. package/dist/esm/hooks/useConversation.js +0 -1
  935. package/dist/esm/hooks/useLongPress.d.ts +0 -3
  936. package/dist/esm/hooks/useLongPress.js +0 -1
  937. package/dist/esm/hooks/useMouseHover.js +0 -1
  938. package/dist/esm/hooks/useProfile.d.ts +0 -5
  939. package/dist/esm/hooks/useProfile.js +0 -1
  940. package/dist/esm/index.css +0 -2
  941. package/dist/esm/index.d.css +0 -2887
  942. package/dist/esm/index.d.ts +0 -57
  943. package/dist/esm/index.js +0 -1
  944. package/dist/esm/locales/en-US/TUIChat.js +0 -1
  945. package/dist/esm/locales/en-US/TUIContact.js +0 -1
  946. package/dist/esm/locales/en-US/TUIConversation.js +0 -1
  947. package/dist/esm/locales/en-US/TUIProfile.js +0 -1
  948. package/dist/esm/locales/en-US/emoji.js +0 -1
  949. package/dist/esm/locales/en-US/index.js +0 -1
  950. package/dist/esm/locales/index.js +0 -1
  951. package/dist/esm/locales/ja-JP/TUIChat.js +0 -1
  952. package/dist/esm/locales/ja-JP/TUIContact.js +0 -1
  953. package/dist/esm/locales/ja-JP/TUIConversation.js +0 -1
  954. package/dist/esm/locales/ja-JP/TUIProfile.js +0 -1
  955. package/dist/esm/locales/ja-JP/emoji.js +0 -1
  956. package/dist/esm/locales/ja-JP/index.js +0 -1
  957. package/dist/esm/locales/ko-KR/TUIChat.js +0 -1
  958. package/dist/esm/locales/ko-KR/TUIContact.js +0 -1
  959. package/dist/esm/locales/ko-KR/TUIConversation.js +0 -1
  960. package/dist/esm/locales/ko-KR/TUIProfile.js +0 -1
  961. package/dist/esm/locales/ko-KR/emoji.js +0 -1
  962. package/dist/esm/locales/ko-KR/index.js +0 -1
  963. package/dist/esm/locales/zh-CN/TUIChat.js +0 -1
  964. package/dist/esm/locales/zh-CN/TUIContact.js +0 -1
  965. package/dist/esm/locales/zh-CN/TUIConversation.js +0 -1
  966. package/dist/esm/locales/zh-CN/TUIProfile.js +0 -1
  967. package/dist/esm/locales/zh-CN/emoji.js +0 -1
  968. package/dist/esm/locales/zh-CN/index.js +0 -1
  969. package/dist/esm/locales/zh-TW/TUIChat.js +0 -1
  970. package/dist/esm/locales/zh-TW/TUIContact.js +0 -1
  971. package/dist/esm/locales/zh-TW/TUIConversation.js +0 -1
  972. package/dist/esm/locales/zh-TW/TUIProfile.js +0 -1
  973. package/dist/esm/locales/zh-TW/emoji.js +0 -1
  974. package/dist/esm/locales/zh-TW/index.js +0 -1
  975. package/dist/esm/node_modules/zustand/esm/react.mjs.js +0 -1
  976. package/dist/esm/node_modules/zustand/esm/vanilla.mjs.js +0 -1
  977. package/dist/esm/server.js +0 -1
  978. package/dist/esm/store/UIManagerStore.js +0 -1
  979. package/dist/esm/utils/env.d.ts +0 -5
  980. package/dist/esm/utils/env.js +0 -1
  981. package/index.ts +0 -1
  982. package/src/@types/images.d.ts +0 -7
  983. package/src/components/Avatar/Avatar.tsx +0 -157
  984. package/src/components/Avatar/index.ts +0 -2
  985. package/src/components/Avatar/styles/index.scss +0 -63
  986. package/src/components/Chat/ChatState.tsx +0 -129
  987. package/src/components/Chat/hooks/useCreateTUIChatStateContext.tsx +0 -46
  988. package/src/components/Chat/hooks/useHandleMessage.tsx +0 -65
  989. package/src/components/Chat/hooks/useHandleMessageList.tsx +0 -47
  990. package/src/components/Chat/hooks/useIsMounted.ts +0 -14
  991. package/src/components/Chat/server.ts +0 -44
  992. package/src/components/Chat/styles/index.scss +0 -1
  993. package/src/components/Chat/styles/layout.scss +0 -15
  994. package/src/components/Chat/utils.ts +0 -72
  995. package/src/components/ChatHeader/ChatHeaderDefault.tsx +0 -167
  996. package/src/components/ChatHeader/styles/index.scss +0 -2
  997. package/src/components/ChatHeader/styles/layout.scss +0 -46
  998. package/src/components/ChatSetting/ChatSetting.tsx +0 -117
  999. package/src/components/ChatSetting/index.ts +0 -1
  1000. package/src/components/ChatSetting/styles/index.scss +0 -104
  1001. package/src/components/ConversationActions/ConversationActions.scss +0 -45
  1002. package/src/components/ConversationActions/ConversationActions.tsx +0 -172
  1003. package/src/components/ConversationActions/index.ts +0 -1
  1004. package/src/components/ConversationCreate/ConversationCreate.tsx +0 -136
  1005. package/src/components/ConversationCreate/ConversationCreateButton.tsx +0 -46
  1006. package/src/components/ConversationCreate/ConversationCreateGroupDetail.tsx +0 -179
  1007. package/src/components/ConversationCreate/ConversationCreateSelectView.tsx +0 -46
  1008. package/src/components/ConversationCreate/ConversationCreateUserSelectList.tsx +0 -168
  1009. package/src/components/ConversationCreate/ConversationGroupTypeInfo.tsx +0 -54
  1010. package/src/components/ConversationCreate/hooks/useConversationCreate.tsx +0 -118
  1011. package/src/components/ConversationCreate/index.ts +0 -7
  1012. package/src/components/ConversationCreate/static/word.ts +0 -300
  1013. package/src/components/ConversationCreate/styles/ConversationCreateGroupDetail.scss +0 -68
  1014. package/src/components/ConversationCreate/styles/conversationCreateButton.scss +0 -5
  1015. package/src/components/ConversationCreate/styles/conversationCreateSelectView.scss +0 -38
  1016. package/src/components/ConversationCreate/styles/conversationGroupTypeInfo.scss +0 -64
  1017. package/src/components/ConversationCreate/styles/index.scss +0 -149
  1018. package/src/components/ConversationList/ConversationList.scss +0 -29
  1019. package/src/components/ConversationList/ConversationList.tsx +0 -155
  1020. package/src/components/ConversationList/ConversationListContent/ConversationListContent.scss +0 -16
  1021. package/src/components/ConversationList/ConversationListContent/ConversationListContent.tsx +0 -63
  1022. package/src/components/ConversationList/ConversationListContent/index.ts +0 -1
  1023. package/src/components/ConversationList/ConversationListHeader/ConversationListHeader.scss +0 -28
  1024. package/src/components/ConversationList/ConversationListHeader/ConversationListHeader.tsx +0 -43
  1025. package/src/components/ConversationList/ConversationListHeader/index.ts +0 -1
  1026. package/src/components/ConversationList/index.ts +0 -3
  1027. package/src/components/ConversationPreview/ConversationPreview.scss +0 -137
  1028. package/src/components/ConversationPreview/ConversationPreview.tsx +0 -260
  1029. package/src/components/ConversationPreview/index.ts +0 -1
  1030. package/src/components/ConversationPreview/utils.tsx +0 -145
  1031. package/src/components/ConversationSearch/ConversationSearch.scss +0 -22
  1032. package/src/components/ConversationSearch/ConversationSearch.tsx +0 -125
  1033. package/src/components/ConversationSearch/ConversationSearchInput/ConversationSearchInput.scss +0 -13
  1034. package/src/components/ConversationSearch/ConversationSearchInput/ConversationSearchInput.tsx +0 -42
  1035. package/src/components/ConversationSearch/ConversationSearchInput/index.ts +0 -1
  1036. package/src/components/ConversationSearch/ConversationSearchResult/ConversationSearchResult.scss +0 -15
  1037. package/src/components/ConversationSearch/ConversationSearchResult/ConversationSearchResult.tsx +0 -72
  1038. package/src/components/ConversationSearch/ConversationSearchResult/index.ts +0 -1
  1039. package/src/components/ConversationSearch/index.ts +0 -3
  1040. package/src/components/InfiniteScrollPaginator/InfiniteScroll.tsx +0 -115
  1041. package/src/components/InfiniteScrollPaginator/index.ts +0 -1
  1042. package/src/components/Input/styles/index.scss +0 -62
  1043. package/src/components/MessageElement/Message.tsx +0 -150
  1044. package/src/components/MessageElement/MessageAudio.tsx +0 -89
  1045. package/src/components/MessageElement/MessageAvatar.tsx +0 -38
  1046. package/src/components/MessageElement/MessageBubble.tsx +0 -137
  1047. package/src/components/MessageElement/MessageContext.tsx +0 -84
  1048. package/src/components/MessageElement/MessageCustom.tsx +0 -85
  1049. package/src/components/MessageElement/MessageDefault.tsx +0 -104
  1050. package/src/components/MessageElement/MessageFace.tsx +0 -28
  1051. package/src/components/MessageElement/MessageFile.tsx +0 -41
  1052. package/src/components/MessageElement/MessageImage.tsx +0 -46
  1053. package/src/components/MessageElement/MessageLocation.tsx +0 -29
  1054. package/src/components/MessageElement/MessageMerger.tsx +0 -38
  1055. package/src/components/MessageElement/MessageName.tsx +0 -41
  1056. package/src/components/MessageElement/MessagePlugins.tsx +0 -230
  1057. package/src/components/MessageElement/MessageProgress.tsx +0 -89
  1058. package/src/components/MessageElement/MessageRevoke.tsx +0 -48
  1059. package/src/components/MessageElement/MessageStatus.tsx +0 -40
  1060. package/src/components/MessageElement/MessageSystem.tsx +0 -30
  1061. package/src/components/MessageElement/MessageText.tsx +0 -66
  1062. package/src/components/MessageElement/MessageTip.tsx +0 -28
  1063. package/src/components/MessageElement/MessageVideo.tsx +0 -45
  1064. package/src/components/MessageElement/hooks/index.ts +0 -3
  1065. package/src/components/MessageElement/hooks/useMessageContextHandler.ts +0 -70
  1066. package/src/components/MessageElement/hooks/useMessageHandler.ts +0 -127
  1067. package/src/components/MessageElement/hooks/useMessagePluginElement.tsx +0 -31
  1068. package/src/components/MessageElement/hooks/useMessageReply.ts +0 -69
  1069. package/src/components/MessageElement/index.ts +0 -3
  1070. package/src/components/MessageElement/styles/color.scss +0 -45
  1071. package/src/components/MessageElement/styles/index.scss +0 -2
  1072. package/src/components/MessageElement/styles/layout.scss +0 -609
  1073. package/src/components/MessageElement/utils/decodeText.ts +0 -110
  1074. package/src/components/MessageElement/utils/emojiMap.ts +0 -95
  1075. package/src/components/MessageElement/utils/index.ts +0 -472
  1076. package/src/components/MessageInput/EmojiPicker.tsx +0 -80
  1077. package/src/components/MessageInput/Forward.tsx +0 -187
  1078. package/src/components/MessageInput/InputPluginsDefalut.tsx +0 -114
  1079. package/src/components/MessageInput/InputQuoteDefalut.tsx +0 -44
  1080. package/src/components/MessageInput/MessageInput.tsx +0 -116
  1081. package/src/components/MessageInput/MessageInputDefault.tsx +0 -86
  1082. package/src/components/MessageInput/Transmitter.tsx +0 -15
  1083. package/src/components/MessageInput/hooks/index.ts +0 -6
  1084. package/src/components/MessageInput/hooks/useCreateMessageInputContext.ts +0 -45
  1085. package/src/components/MessageInput/hooks/useEmojiPicker.tsx +0 -40
  1086. package/src/components/MessageInput/hooks/useHandleForwardMessage.tsx +0 -42
  1087. package/src/components/MessageInput/hooks/useHandleQuoteMessage.tsx +0 -64
  1088. package/src/components/MessageInput/hooks/useMessageInputState.tsx +0 -102
  1089. package/src/components/MessageInput/hooks/useMessageInputText.tsx +0 -193
  1090. package/src/components/MessageInput/hooks/usePluginsElement.tsx +0 -24
  1091. package/src/components/MessageInput/hooks/useUploadElement.tsx +0 -35
  1092. package/src/components/MessageInput/hooks/useUploadPicker.tsx +0 -38
  1093. package/src/components/MessageInput/index.ts +0 -3
  1094. package/src/components/MessageInput/styles/color.scss +0 -40
  1095. package/src/components/MessageInput/styles/index.scss +0 -2
  1096. package/src/components/MessageInput/styles/layout.scss +0 -360
  1097. package/src/components/MessageList/MessageList.tsx +0 -133
  1098. package/src/components/MessageList/hooks/useMessageListElement.tsx +0 -50
  1099. package/src/components/MessageList/index.ts +0 -1
  1100. package/src/components/MessageList/styles/index.scss +0 -2
  1101. package/src/components/MessageList/styles/layout.scss +0 -61
  1102. package/src/components/PlaceHolder/index.tsx +0 -79
  1103. package/src/components/PlaceHolder/styles/index.scss +0 -36
  1104. package/src/components/Toast/index.tsx +0 -44
  1105. package/src/components/Toast/styles/color.scss +0 -11
  1106. package/src/components/Toast/styles/index.scss +0 -2
  1107. package/src/components/Toast/styles/layout.scss +0 -11
  1108. package/src/components/utils.ts +0 -96
  1109. package/src/constants.ts +0 -95
  1110. package/src/context/ChatActionContext.tsx +0 -51
  1111. package/src/context/ChatStateContext.tsx +0 -49
  1112. package/src/context/ComponentContext.tsx +0 -48
  1113. package/src/context/ConversationListContext.tsx +0 -113
  1114. package/src/context/LanguageContext.tsx +0 -61
  1115. package/src/context/MessageContext.tsx +0 -55
  1116. package/src/context/MessageInputContext.tsx +0 -54
  1117. package/src/context/ThemeContext.tsx +0 -68
  1118. package/src/context/UIKitContext.tsx +0 -70
  1119. package/src/context/UIManagerContext.tsx +0 -163
  1120. package/src/hooks/useConversation.tsx +0 -30
  1121. package/src/hooks/useLongPress.tsx +0 -117
  1122. package/src/hooks/useMouseHover.tsx +0 -21
  1123. package/src/hooks/useProfile.tsx +0 -8
  1124. package/src/server.ts +0 -43
  1125. package/src/store/UIManagerStore.ts +0 -108
  1126. package/src/store/index.ts +0 -5
  1127. package/src/styles/colors/_color-dark.scss +0 -45
  1128. package/src/styles/colors/_color-light.scss +0 -45
  1129. package/src/styles/colors/_color-theme.scss +0 -65
  1130. package/src/utils/env.ts +0 -10
  1131. /package/{src/components/ChatHeader/styles/color.scss → dist/external_modules/lodash-vwDjcXxQ.js} +0 -0
  1132. /package/{src/components/MessageList/styles/color.scss → dist/types/message.js} +0 -0
  1133. /package/src/{components/Avatar/default.ts → constant/avatar.ts} +0 -0
@@ -1,2887 +0,0 @@
1
- .tui-message-input {
2
- display: flex;
3
- flex-direction: column;
4
- }
5
- .tui-message-input-main {
6
- flex: 1;
7
- display: flex;
8
- align-items: center;
9
- padding: 14px 12px;
10
- gap: 12px;
11
- }
12
- .tui-message-input-main .input-box {
13
- flex: 1;
14
- display: flex;
15
- position: relative;
16
- min-height: 20px;
17
- max-height: 200px;
18
- border-radius: 15px;
19
- overflow: hidden;
20
- padding: 10px;
21
- }
22
- .tui-message-input-main .input-box .input-visibility-content {
23
- min-height: 20px;
24
- word-break: break-all;
25
- visibility: hidden;
26
- max-width: -webkit-fill-available;
27
- font-family: PingFangSC-Medium;
28
- font-style: normal;
29
- font-weight: 500;
30
- font-size: 14px;
31
- line-height: 17px;
32
- padding: 1px 2px;
33
- }
34
- .tui-message-input-main .input-box textarea {
35
- position: absolute;
36
- top: 0;
37
- left: 0;
38
- width: -webkit-fill-available;
39
- height: -webkit-fill-available;
40
- flex: 1;
41
- font-family: PingFangSC-Medium;
42
- font-style: normal;
43
- font-weight: 500;
44
- font-size: 14px;
45
- line-height: 17px;
46
- margin: 9px;
47
- resize: none;
48
- border: none;
49
- background: none;
50
- }
51
- [data-uikit-theme=light] .tui-message-input-main .input-box textarea {
52
- color: var(--uikit-theme-light-text-color-primary);
53
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
54
- }
55
- [data-uikit-theme=dark] .tui-message-input-main .input-box textarea {
56
- color: var(--uikit-theme-dark-text-color-primary);
57
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
58
- }
59
- .tui-message-input-main .input-box textarea:focus, .tui-message-input-main .input-box textarea:active {
60
- border: none;
61
- outline: none;
62
- }
63
- .tui-message-input-main .disabled {
64
- display: none;
65
- }
66
- .tui-message-input-box {
67
- flex: 1;
68
- display: flex;
69
- align-items: center;
70
- }
71
-
72
- ul li {
73
- list-style: none;
74
- }
75
-
76
- .input-plugin-popup {
77
- position: relative;
78
- }
79
- .input-plugin-popup-box {
80
- position: absolute;
81
- z-index: 2;
82
- bottom: 30px;
83
- }
84
-
85
- .input-plugin-item {
86
- font-style: normal;
87
- font-weight: 500;
88
- font-size: 16px;
89
- font-family: PingFangSC-Medium;
90
- line-height: 19px;
91
- display: flex;
92
- }
93
- .input-plugin-item span {
94
- padding: 0 17px;
95
- }
96
-
97
- .emoji-picker .face-list {
98
- height: 120px;
99
- width: 242px;
100
- padding: 10px 5px;
101
- display: flex;
102
- flex-wrap: wrap;
103
- overflow-y: auto;
104
- }
105
- .emoji-picker .face-list-item {
106
- padding: 5px;
107
- cursor: pointer;
108
- user-select: none;
109
- }
110
- .emoji-picker .face-list-item img {
111
- width: 20px;
112
- }
113
- .emoji-picker .face-list-item .face-img {
114
- width: 38px;
115
- }
116
- .emoji-picker .face-tab {
117
- display: flex;
118
- align-items: center;
119
- min-width: 265px;
120
- }
121
- .emoji-picker .face-tab-item {
122
- cursor: pointer;
123
- width: 24px;
124
- padding: 10px;
125
- }
126
- .emoji-picker .face-tab-item img {
127
- width: 100%;
128
- }
129
- .emoji-picker .emoji-plugin-right {
130
- right: 0;
131
- }
132
-
133
- .upload-picker {
134
- position: relative;
135
- padding: 10px 16px;
136
- min-width: 180px;
137
- }
138
- [data-uikit-theme=light] .upload-picker {
139
- color: var(--uikit-theme-light-text-color-primary);
140
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
141
- }
142
- [data-uikit-theme=dark] .upload-picker {
143
- color: var(--uikit-theme-dark-text-color-primary);
144
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
145
- }
146
- [data-uikit-theme=light] .upload-picker:hover {
147
- color: var(--uikit-theme-light-text-color-primary);
148
- background-color: var(--uikit-theme-light-dropdown-color-hover);
149
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
150
- }
151
- [data-uikit-theme=dark] .upload-picker:hover {
152
- color: var(--uikit-theme-dark-text-color-primary);
153
- background-color: var(--uikit-theme-dark-dropdown-color-hover);
154
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
155
- }
156
- .upload-picker input {
157
- position: absolute;
158
- cursor: pointer;
159
- left: 0;
160
- top: 0;
161
- opacity: 0;
162
- width: 100%;
163
- height: 100%;
164
- }
165
-
166
- .input-quote {
167
- padding: 7px 16px;
168
- display: flex;
169
- align-items: center;
170
- }
171
- [data-uikit-theme=light] .input-quote {
172
- background: var(--uikit-theme-light-bg-color-bubble-reciprocal);
173
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
174
- }
175
- [data-uikit-theme=dark] .input-quote {
176
- background: var(--uikit-theme-dark-bg-color-bubble-reciprocal);
177
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
178
- }
179
- .input-quote-content {
180
- flex: 1;
181
- background: #fff;
182
- padding: 2px 14px;
183
- position: relative;
184
- display: flex;
185
- flex-direction: column;
186
- font-weight: 500;
187
- font-size: 14px;
188
- line-height: 17px;
189
- color: #000;
190
- }
191
- .input-quote-content::before {
192
- content: "";
193
- position: absolute;
194
- width: 6px;
195
- height: 100%;
196
- background: #999;
197
- top: 0;
198
- left: 0;
199
- }
200
- .input-quote-content span {
201
- padding-top: 8px;
202
- opacity: 0.6;
203
- }
204
- .input-quote .icon {
205
- margin: 0 5px 0 16px;
206
- }
207
-
208
- .tui-forward {
209
- border-radius: 16px;
210
- display: flex;
211
- flex-direction: column;
212
- overflow: hidden;
213
- width: 300px;
214
- max-height: 90%;
215
- }
216
- [data-uikit-theme=light] .tui-forward {
217
- background-color: var(--uikit-theme-light-bg-color-operate);
218
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
219
- }
220
- [data-uikit-theme=dark] .tui-forward {
221
- background-color: var(--uikit-theme-dark-bg-color-operate);
222
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
223
- }
224
- .tui-forward-header {
225
- display: flex;
226
- align-items: center;
227
- padding: 24px 20px;
228
- }
229
- [data-uikit-theme=light] .tui-forward-header {
230
- color: var(--uikit-theme-light-text-color-primary);
231
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
232
- }
233
- [data-uikit-theme=dark] .tui-forward-header {
234
- color: var(--uikit-theme-dark-text-color-primary);
235
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
236
- }
237
- .tui-forward-title {
238
- padding: 0 16px;
239
- font-style: normal;
240
- font-weight: 700;
241
- font-size: 14px;
242
- }
243
- .tui-forward-main {
244
- padding: 0 20px;
245
- max-height: calc(100vh - 200px);
246
- overflow-y: auto;
247
- }
248
- .tui-forward-main .no-result {
249
- font-size: 14px;
250
- padding: 10px;
251
- text-align: center;
252
- }
253
- [data-uikit-theme=light] .tui-forward-main .no-result {
254
- color: var(--uikit-theme-light-text-color-secondary);
255
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
256
- }
257
- [data-uikit-theme=dark] .tui-forward-main .no-result {
258
- color: var(--uikit-theme-dark-text-color-secondary);
259
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
260
- }
261
- .tui-forward-search {
262
- padding: 10px 15px;
263
- }
264
- .tui-forward-list {
265
- padding: 13px 0;
266
- }
267
- .tui-forward-list-title {
268
- font-style: normal;
269
- font-weight: 600;
270
- font-size: 14px;
271
- line-height: 20px;
272
- }
273
- .tui-forward-list-item {
274
- padding: 6px 0;
275
- font-style: normal;
276
- font-weight: 400;
277
- font-size: 14px;
278
- line-height: 20px;
279
- display: flex;
280
- justify-content: space-between;
281
- align-items: center;
282
- width: 100%;
283
- }
284
- .tui-forward-list-item .info {
285
- display: flex;
286
- align-items: center;
287
- flex-shrink: 0;
288
- }
289
- .tui-forward-list-item .info-nick {
290
- padding: 0 13px;
291
- font-style: normal;
292
- font-weight: 400;
293
- font-size: 14px;
294
- line-height: 20px;
295
- min-width: 180px;
296
- max-width: 300px;
297
- overflow: hidden;
298
- white-space: nowrap;
299
- text-overflow: ellipsis;
300
- width: 80%;
301
- }
302
- .tui-forward-footer {
303
- padding: 13px 10px;
304
- display: flex;
305
- justify-content: space-between;
306
- align-items: center;
307
- }
308
- [data-uikit-theme=light] .tui-forward-footer {
309
- background-color: var(--uikit-theme-light-bg-color-operate);
310
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
311
- }
312
- [data-uikit-theme=dark] .tui-forward-footer {
313
- background-color: var(--uikit-theme-dark-bg-color-operate);
314
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
315
- }
316
- .tui-forward-footer .button {
317
- cursor: pointer;
318
- background: #0365f9;
319
- border-radius: 31px;
320
- padding: 10px 21px;
321
- font-style: normal;
322
- font-weight: 400;
323
- font-size: 14px;
324
- line-height: 20px;
325
- color: #fff;
326
- border: none;
327
- }
328
- .tui-forward-footer-name {
329
- flex: 1;
330
- overflow: hidden;
331
- word-break: break-all;
332
- text-overflow: ellipsis;
333
- display: -webkit-box;
334
- -webkit-line-clamp: 3;
335
- -webkit-box-orient: vertical;
336
- }
337
- [data-uikit-theme=light] .tui-forward-footer-name {
338
- color: var(--uikit-theme-light-text-color-primary);
339
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
340
- }
341
- [data-uikit-theme=dark] .tui-forward-footer-name {
342
- color: var(--uikit-theme-dark-text-color-primary);
343
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
344
- }
345
-
346
- .transmitter {
347
- padding: 0 10px;
348
- }
349
- .transmitter .icon-send {
350
- transform: rotate(90deg);
351
- }
352
-
353
- [data-uikit-theme=light] .tui-message-input {
354
- background-color: var(--uikit-theme-light-bg-color-operate);
355
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
356
- }
357
- [data-uikit-theme=dark] .tui-message-input {
358
- background-color: var(--uikit-theme-dark-bg-color-operate);
359
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
360
- }
361
- [data-uikit-theme=light] .tui-message-input .tui-kit-input-box--focus {
362
- outline: 1px solid var(--uikit-theme-light-text-color-link);
363
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
364
- }
365
- [data-uikit-theme=dark] .tui-message-input .tui-kit-input-box--focus {
366
- outline: 1px solid var(--uikit-theme-dark-text-color-link);
367
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
368
- }
369
- [data-uikit-theme=light] .tui-message-input .input-box {
370
- background-color: var(--uikit-theme-light-bg-color-input);
371
- border: 1px solid var(--uikit-theme-light-stroke-color-primary);
372
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
373
- }
374
- [data-uikit-theme=dark] .tui-message-input .input-box {
375
- background-color: var(--uikit-theme-dark-bg-color-input);
376
- border: 1px solid var(--uikit-theme-dark-stroke-color-primary);
377
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
378
- }
379
-
380
- .input-plugin-popup-box {
381
- border-radius: 16px;
382
- }
383
- [data-uikit-theme=light] .input-plugin-popup-box {
384
- background-color: var(--uikit-theme-light-dropdown-color-default);
385
- box-shadow: 0 0 10px 0 var(--uikit-theme-light-shadow-color);
386
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
387
- }
388
- [data-uikit-theme=dark] .input-plugin-popup-box {
389
- background-color: var(--uikit-theme-dark-dropdown-color-default);
390
- box-shadow: 0 0 10px 0 var(--uikit-theme-dark-shadow-color);
391
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
392
- }
393
-
394
- .input-icon {
395
- width: 20px;
396
- height: 20px;
397
- }
398
- [data-uikit-theme=light] .input-icon {
399
- color: var(--uikit-theme-light-text-color-primary);
400
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
401
- }
402
- [data-uikit-theme=dark] .input-icon {
403
- color: var(--uikit-theme-dark-text-color-primary);
404
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
405
- }
406
- .message-default {
407
- width: 100%;
408
- flex: 1;
409
- display: flex;
410
- align-items: center;
411
- cursor: pointer;
412
- font-size: 14px;
413
- font-family: PingFangSC-Medium;
414
- font-style: normal;
415
- font-weight: 500;
416
- line-height: 17px;
417
- }
418
- .message-default .avatar {
419
- width: 45px;
420
- }
421
- .message-default .avatar img {
422
- width: 45px;
423
- }
424
- .message-default .content {
425
- display: flex;
426
- flex-direction: column;
427
- align-items: flex-start;
428
- }
429
- .message-default .content .name {
430
- display: inline-block;
431
- padding-bottom: 3px;
432
- max-width: 60%;
433
- }
434
- [data-uikit-theme=light] .message-default .content .name {
435
- color: var(--uikit-theme-light-text-color-primary);
436
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
437
- }
438
- [data-uikit-theme=dark] .message-default .content .name {
439
- color: var(--uikit-theme-dark-text-color-primary);
440
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
441
- }
442
-
443
- .in {
444
- flex: 1;
445
- display: flex;
446
- flex-direction: row;
447
- justify-self: flex-start;
448
- gap: 10px;
449
- }
450
- .in .content {
451
- align-items: flex-start;
452
- flex: 1;
453
- }
454
-
455
- .out {
456
- flex: 1;
457
- display: flex;
458
- gap: 10px;
459
- flex-direction: row-reverse;
460
- justify-self: flex-end;
461
- }
462
- .out .content {
463
- align-items: flex-end;
464
- flex: 1;
465
- }
466
-
467
- .tip {
468
- justify-self: center !important;
469
- width: auto;
470
- }
471
-
472
- .bubble {
473
- padding: 8px 16px;
474
- }
475
- .bubble-in {
476
- border-radius: 0 16px 16px;
477
- }
478
- .bubble-in.group {
479
- border-radius: 0 16px 16px;
480
- }
481
- .bubble-out {
482
- border-radius: 16px 16px 0;
483
- }
484
-
485
- .message-status {
486
- display: flex;
487
- align-items: flex-end;
488
- align-self: flex-end;
489
- }
490
- .message-status .time {
491
- width: max-content;
492
- font-weight: 400;
493
- padding: 5px 0 0 10px;
494
- font-size: 12px;
495
- line-height: 14px;
496
- text-align: right;
497
- }
498
- [data-uikit-theme=light] .message-status .time {
499
- color: var(--uikit-theme-light-text-color-anti-secondary);
500
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
501
- }
502
- [data-uikit-theme=dark] .message-status .time {
503
- color: var(--uikit-theme-dark-text-color-anti-secondary);
504
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
505
- }
506
- [data-uikit-theme=light] .bubble-in .message-status .time {
507
- color: var(--uikit-theme-light-text-color-tertiary);
508
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
509
- }
510
- [data-uikit-theme=dark] .bubble-in .message-status .time {
511
- color: var(--uikit-theme-dark-text-color-tertiary);
512
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
513
- }
514
-
515
- .message-image,
516
- .message-video {
517
- position: relative;
518
- }
519
- .message-image .message-status,
520
- .message-video .message-status {
521
- position: absolute;
522
- bottom: 10px;
523
- right: 10px;
524
- }
525
- [data-uikit-theme=light] .message-image .message-status .time,
526
- [data-uikit-theme=light] .message-video .message-status .time {
527
- color: var(--uikit-theme-light-text-color-primary);
528
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
529
- }
530
- [data-uikit-theme=dark] .message-image .message-status .time,
531
- [data-uikit-theme=dark] .message-video .message-status .time {
532
- color: var(--uikit-theme-dark-text-color-primary);
533
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
534
- }
535
-
536
- .message-text {
537
- display: flex;
538
- }
539
- .message-text-content {
540
- display: inline;
541
- word-break: break-word;
542
- font-weight: 500;
543
- font-size: 14px;
544
- }
545
- .message-text-content-p {
546
- white-space: pre-wrap;
547
- display: inline;
548
- vertical-align: middle;
549
- }
550
- .message-text-content .message-status {
551
- display: inline-flex;
552
- float: right;
553
- clear: right;
554
- }
555
-
556
- .message-text,
557
- .message-tip {
558
- font-weight: 500;
559
- font-size: 14px;
560
- }
561
- .message-text .text-img,
562
- .message-tip .text-img {
563
- width: 20px;
564
- height: 20px;
565
- vertical-align: middle;
566
- }
567
-
568
- .message-image {
569
- background: transparent;
570
- }
571
- .message-image img {
572
- max-width: 300px;
573
- }
574
- .message-image .img-h5 {
575
- max-width: 200px;
576
- max-height: 200px;
577
- }
578
- .message-image .big-image {
579
- max-width: 90%;
580
- max-height: 90%;
581
- }
582
-
583
- .message-video {
584
- max-width: 300px;
585
- }
586
- .message-video .snap-video {
587
- position: relative;
588
- height: 100%;
589
- border-radius: 10px;
590
- }
591
- .message-video .snap-video::before {
592
- position: absolute;
593
- z-index: 1;
594
- content: "";
595
- width: 0;
596
- height: 0;
597
- border: 15px solid transparent;
598
- border-left: 20px solid #fff;
599
- top: 0;
600
- left: 0;
601
- bottom: 0;
602
- right: 0;
603
- margin: auto;
604
- }
605
- .message-video video {
606
- width: 100%;
607
- height: 100%;
608
- border-radius: 10px;
609
- }
610
- .message-video .play-video {
611
- max-width: 95%;
612
- max-height: 65%;
613
- }
614
-
615
- .message-video.message-video-h5 {
616
- max-width: 200px;
617
- max-height: 200px;
618
- }
619
-
620
- .message-file {
621
- display: flex;
622
- flex-direction: column;
623
- border: 1px solid #ddd;
624
- }
625
- .message-file-main {
626
- display: flex;
627
- align-items: center;
628
- padding: 12px;
629
- background: #fff;
630
- border-radius: 4px;
631
- }
632
- .message-file-main .icon {
633
- margin-right: 7px;
634
- }
635
- .message-file-footer {
636
- display: flex;
637
- justify-content: space-between;
638
- align-items: flex-end;
639
- }
640
- .message-file-footer .time {
641
- padding-top: 10px;
642
- }
643
- .message-file-size {
644
- padding-top: 10px;
645
- font-weight: 400;
646
- font-size: 12px;
647
- font-family: PingFangSC-Medium;
648
- line-height: 14px;
649
- color: #7a7a7a;
650
- }
651
-
652
- .message-merger {
653
- display: flex;
654
- flex-direction: column;
655
- background: #ecebeb;
656
- }
657
- .message-merger h3 {
658
- padding-bottom: 4px;
659
- border-bottom: 1px solid #a1a1a1;
660
- }
661
- .message-merger-list {
662
- opacity: 0.6;
663
- }
664
- .message-merger-item {
665
- padding-top: 4px;
666
- }
667
-
668
- .meesage-bubble-reply {
669
- padding: 8px 16px;
670
- }
671
- [data-uikit-theme=light] .meesage-bubble-reply {
672
- background-color: var(--uikit-theme-light-bg-color-bubble-own);
673
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
674
- }
675
- [data-uikit-theme=dark] .meesage-bubble-reply {
676
- background-color: var(--uikit-theme-dark-bg-color-bubble-own);
677
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
678
- }
679
- .meesage-bubble-reply-in {
680
- border-radius: 16px 16px 16px 0;
681
- }
682
- .meesage-bubble-reply-out {
683
- border-radius: 16px 16px 0;
684
- }
685
- .meesage-bubble-reply .message-text {
686
- border: none !important;
687
- }
688
- .meesage-bubble-reply .bubble {
689
- padding: 0;
690
- }
691
- .meesage-bubble-reply .bubble-in {
692
- border-radius: 0;
693
- }
694
- .meesage-bubble-reply-main {
695
- position: relative;
696
- padding: 10px 14px;
697
- margin-bottom: 10px;
698
- }
699
- [data-uikit-theme=light] .meesage-bubble-reply-main {
700
- background-color: var(--uikit-theme-light-bg-color-operate);
701
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
702
- }
703
- [data-uikit-theme=dark] .meesage-bubble-reply-main {
704
- background-color: var(--uikit-theme-dark-bg-color-operate);
705
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
706
- }
707
- .meesage-bubble-reply-main::before {
708
- content: "";
709
- position: absolute;
710
- width: 6px;
711
- height: 100%;
712
- top: 0;
713
- left: 0;
714
- }
715
- [data-uikit-theme=light] .meesage-bubble-reply-main::before {
716
- background-color: var(--uikit-basic-color-bg-5);
717
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
718
- }
719
- [data-uikit-theme=dark] .meesage-bubble-reply-main::before {
720
- background-color: var(--uikit-basic-color-bg-5);
721
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
722
- }
723
- .meesage-bubble-reply-main .title {
724
- font-weight: 500;
725
- font-size: 14px;
726
- padding-bottom: 10px;
727
- }
728
- [data-uikit-theme=light] .meesage-bubble-reply-main .title {
729
- color: var(--uikit-theme-light-text-color-primary);
730
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
731
- }
732
- [data-uikit-theme=dark] .meesage-bubble-reply-main .title {
733
- color: var(--uikit-theme-dark-text-color-primary);
734
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
735
- }
736
- .meesage-bubble-reply-main .message-context {
737
- opacity: 0.6;
738
- }
739
-
740
- .meesage-bubble {
741
- display: flex;
742
- align-items: flex-end;
743
- }
744
- .meesage-bubble-status {
745
- margin: 3px;
746
- }
747
- .meesage-bubble-context {
748
- display: flex;
749
- align-items: center;
750
- gap: 10px;
751
- }
752
- .meesage-bubble-context .message-context {
753
- flex: 1;
754
- }
755
-
756
- .icon-fail {
757
- width: 14px;
758
- height: 14px;
759
- border-radius: 14px;
760
- position: relative;
761
- background: #fa5151;
762
- display: inline-flex;
763
- justify-content: center;
764
- align-items: center;
765
- }
766
- .icon-fail::before {
767
- position: absolute;
768
- content: "!";
769
- color: #fff;
770
- font-size: 12px;
771
- font-family: PingFangSC-Medium;
772
- }
773
-
774
- .message-face {
775
- display: flex;
776
- flex-direction: column;
777
- }
778
- .message-face .img {
779
- max-width: 88px;
780
- }
781
-
782
- .loading {
783
- display: inline-block;
784
- position: relative;
785
- }
786
- .loading .img,
787
- .loading video {
788
- min-width: 60px;
789
- min-height: 60px;
790
- max-width: 300px;
791
- border-radius: 10px;
792
- }
793
- .loading .img-h5,
794
- .loading .video-h5 {
795
- min-width: 60px;
796
- min-height: 60px;
797
- max-width: 200px;
798
- max-height: 200px;
799
- border-radius: 10px;
800
- }
801
- .loading::before {
802
- position: absolute;
803
- content: "";
804
- background: rgba(0, 0, 0, 0.5);
805
- border-radius: 10px;
806
- width: 100%;
807
- height: 100%;
808
- top: 0;
809
- left: 0;
810
- }
811
- .loading::after {
812
- position: absolute;
813
- content: "";
814
- border: 5px solid #f3f3f3;
815
- border-top: 5px solid #555;
816
- border-radius: 50%;
817
- width: 30px;
818
- height: 30px;
819
- display: inline-block;
820
- animation: spin 2s linear infinite;
821
- top: 0;
822
- left: 0;
823
- right: 0;
824
- bottom: 0;
825
- margin: auto;
826
- }
827
- @keyframes spin {
828
- 0% {
829
- transform: rotate(0deg);
830
- }
831
- 100% {
832
- transform: rotate(360deg);
833
- }
834
- }
835
-
836
- .message-plugin {
837
- width: 32px;
838
- margin: 0 5px;
839
- }
840
- .message-plugin .icon-more {
841
- transform: scale(1.5);
842
- }
843
- .message-plugin .plugin-popup-box {
844
- bottom: auto;
845
- top: 100%;
846
- overflow: hidden;
847
- }
848
- .message-plugin-box {
849
- padding: 6px 0;
850
- }
851
- .message-plugin-item {
852
- min-width: 144px;
853
- padding: 6px 13px;
854
- display: flex;
855
- justify-content: space-between;
856
- align-items: center;
857
- font-weight: 500;
858
- font-size: 12.8px;
859
- font-family: PingFangSC-Medium;
860
- line-height: 15px;
861
- }
862
- [data-uikit-theme=light] .message-plugin-item {
863
- color: var(--uikit-theme-light-text-color-primary);
864
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
865
- }
866
- [data-uikit-theme=dark] .message-plugin-item {
867
- color: var(--uikit-theme-dark-text-color-primary);
868
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
869
- }
870
- [data-uikit-theme=light] .message-plugin-item:hover {
871
- background: var(--uikit-theme-light-dropdown-color-hover);
872
- color: var(--uikit-theme-light-text-color-primary);
873
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
874
- }
875
- [data-uikit-theme=dark] .message-plugin-item:hover {
876
- background: var(--uikit-theme-dark-dropdown-color-hover);
877
- color: var(--uikit-theme-dark-text-color-primary);
878
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
879
- }
880
- [data-uikit-theme=light] .message-plugin-item .del {
881
- color: var(--uikit-theme-light-text-color-error);
882
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
883
- }
884
- [data-uikit-theme=dark] .message-plugin-item .del {
885
- color: var(--uikit-theme-dark-text-color-error);
886
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
887
- }
888
-
889
- .message-custom {
890
- display: flex;
891
- word-break: break-all;
892
- }
893
- .message-custom a {
894
- color: #679ce1;
895
- text-decoration: none;
896
- font-family: PingFangSC-Regular;
897
- font-style: normal;
898
- font-weight: 500;
899
- font-size: 14px;
900
- line-height: 17px;
901
- }
902
- .message-custom p {
903
- font-family: PingFangSC-Regular;
904
- font-size: 14px;
905
- font-style: normal;
906
- font-weight: 500;
907
- line-height: 17px;
908
- }
909
-
910
- .message-revoke {
911
- color: #999;
912
- }
913
-
914
- .message-audio {
915
- display: flex;
916
- align-items: center;
917
- }
918
- .message-audio .out {
919
- transform: rotate(180deg);
920
- }
921
- .message-audio-none {
922
- display: none;
923
- }
924
- .message-audio-content {
925
- display: flex;
926
- align-items: center;
927
- gap: 10px;
928
- }
929
- .message-audio-out {
930
- flex-direction: row-reverse;
931
- }
932
- .message-audio .playing {
933
- animation: playingAnimation 1s ease-in-out infinite;
934
- }
935
- @keyframes playingAnimation {
936
- 0% {
937
- opacity: 1;
938
- }
939
- 50% {
940
- opacity: 0.3;
941
- }
942
- 100% {
943
- opacity: 1;
944
- }
945
- }
946
-
947
- .high-lighted {
948
- animation: highLightedAnimation 1s ease-in-out forwards;
949
- }
950
-
951
- @keyframes highLightedAnimation {
952
- 0% {
953
- opacity: 1;
954
- color: #ff9c19;
955
- }
956
- 25% {
957
- opacity: 0.3;
958
- }
959
- 50% {
960
- color: #ff9c19;
961
- opacity: 1;
962
- }
963
- 75% {
964
- opacity: 0.3;
965
- }
966
- 100% {
967
- color: #ff9c19;
968
- opacity: 1;
969
- }
970
- }
971
- .progress-box {
972
- width: 100%;
973
- height: 5px;
974
- display: flex;
975
- justify-content: flex-start;
976
- }
977
- .progress-box .progress {
978
- display: inline-block;
979
- width: 0;
980
- background: #147aff;
981
- height: 5px;
982
- border-radius: 2px;
983
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
984
- }
985
-
986
- .website {
987
- color: #147aff !important;
988
- }
989
-
990
- [data-uikit-theme=light] .message-custom {
991
- border: 1px solid var(--uikit-theme-light-stroke-color-primary);
992
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
993
- }
994
- [data-uikit-theme=dark] .message-custom {
995
- border: 1px solid var(--uikit-theme-dark-stroke-color-primary);
996
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
997
- }
998
-
999
- [data-uikit-theme=light] .bubble {
1000
- background-color: var(--uikit-theme-light-bg-color-bubble-reciprocal);
1001
- color: var(--uikit-theme-light-text-color-primary);
1002
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1003
- }
1004
- [data-uikit-theme=dark] .bubble {
1005
- background-color: var(--uikit-theme-dark-bg-color-bubble-reciprocal);
1006
- color: var(--uikit-theme-dark-text-color-primary);
1007
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1008
- }
1009
- [data-uikit-theme=light] .bubble-out {
1010
- border: none;
1011
- background-color: var(--uikit-theme-light-bg-color-bubble-own);
1012
- color: var(--uikit-theme-light-text-color-anti-primary);
1013
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1014
- }
1015
- [data-uikit-theme=dark] .bubble-out {
1016
- border: none;
1017
- background-color: var(--uikit-theme-dark-bg-color-bubble-own);
1018
- color: var(--uikit-theme-dark-text-color-anti-primary);
1019
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1020
- }
1021
-
1022
- .meesage-bubble-reply-out .meesage-bubble-reply-main .message-text {
1023
- background: none;
1024
- }
1025
-
1026
- [data-uikit-theme=light] .message-tip {
1027
- color: var(--uikit-theme-light-text-color-secondary);
1028
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1029
- }
1030
- [data-uikit-theme=dark] .message-tip {
1031
- color: var(--uikit-theme-dark-text-color-secondary);
1032
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1033
- }
1034
-
1035
- .tip .bubble .edit {
1036
- color: #147aff;
1037
- padding: 3px;
1038
- }
1039
- .plugin {
1040
- display: flex;
1041
- align-items: center;
1042
- height: 100%;
1043
- padding: 0 8px;
1044
- gap: 8px;
1045
- }
1046
-
1047
- .plugin-popup {
1048
- height: 100%;
1049
- display: flex;
1050
- align-items: center;
1051
- position: relative;
1052
- }
1053
- .plugin-popup-box {
1054
- position: absolute;
1055
- z-index: 2;
1056
- bottom: 100%;
1057
- }
1058
-
1059
- .plugin-popup-box {
1060
- border-radius: 16px;
1061
- overflow: hidden;
1062
- }
1063
- [data-uikit-theme=light] .plugin-popup-box {
1064
- background-color: var(--uikit-theme-light-dropdown-color-default);
1065
- box-shadow: 0 0 10px 0 var(--uikit-theme-light-shadow-color);
1066
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1067
- }
1068
- [data-uikit-theme=dark] .plugin-popup-box {
1069
- background-color: var(--uikit-theme-dark-dropdown-color-default);
1070
- box-shadow: 0 0 10px 0 var(--uikit-theme-dark-shadow-color);
1071
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1072
- }
1073
- .tui-chat-header {
1074
- padding: 16px 20px;
1075
- display: flex;
1076
- flex-direction: row;
1077
- justify-content: space-between;
1078
- align-items: center;
1079
- }
1080
- [data-uikit-theme=light] .tui-chat-header {
1081
- background-color: var(--uikit-theme-light-bg-color-operate);
1082
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1083
- }
1084
- [data-uikit-theme=dark] .tui-chat-header {
1085
- background-color: var(--uikit-theme-dark-bg-color-operate);
1086
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1087
- }
1088
- .tui-chat-header-left {
1089
- display: flex;
1090
- align-items: center;
1091
- }
1092
- .tui-chat-header .header-content {
1093
- flex: 1;
1094
- padding: 0 8px;
1095
- }
1096
- .tui-chat-header .call-btn-container {
1097
- display: flex;
1098
- margin-right: 10px;
1099
- }
1100
- .tui-chat-header .call-btn-container .call-btn {
1101
- margin-right: 16px;
1102
- }
1103
- .tui-chat-header .title {
1104
- font-style: normal;
1105
- font-weight: 700;
1106
- font-size: 14px;
1107
- }
1108
- [data-uikit-theme=light] .tui-chat-header .title {
1109
- color: var(--uikit-theme-light-text-color-primary);
1110
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1111
- }
1112
- [data-uikit-theme=dark] .tui-chat-header .title {
1113
- color: var(--uikit-theme-dark-text-color-primary);
1114
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1115
- }
1116
- .tui-chat-header .system {
1117
- height: 32px;
1118
- }
1119
- .chat {
1120
- flex: 1;
1121
- width: 100%;
1122
- height: 100%;
1123
- box-sizing: border-box;
1124
- display: flex;
1125
- flex-direction: column;
1126
- position: relative;
1127
- }
1128
- [data-uikit-theme=light] .chat {
1129
- background-color: var(--uikit-theme-light-bg-color-operate);
1130
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1131
- }
1132
- [data-uikit-theme=dark] .chat {
1133
- background-color: var(--uikit-theme-dark-bg-color-operate);
1134
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1135
- }
1136
- ul,
1137
- li,
1138
- div,
1139
- p,
1140
- label,
1141
- span {
1142
- margin: 0;
1143
- padding: 0;
1144
- }
1145
-
1146
- ul li {
1147
- list-style: none;
1148
- }
1149
-
1150
- .message-list {
1151
- flex: 1;
1152
- height: 100%;
1153
- overflow: hidden auto;
1154
- position: relative;
1155
- padding: 0 20px;
1156
- }
1157
- [data-uikit-theme=light] .message-list {
1158
- background-color: var(--uikit-theme-light-bg-color-operate);
1159
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1160
- }
1161
- [data-uikit-theme=dark] .message-list {
1162
- background-color: var(--uikit-theme-dark-bg-color-operate);
1163
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1164
- }
1165
- .message-list.hide {
1166
- opacity: 0;
1167
- }
1168
- .message-list-item {
1169
- display: grid;
1170
- padding: 5px 0;
1171
- }
1172
- .message-list .no-more {
1173
- text-align: center;
1174
- font-family: PingFangSC-Medium;
1175
- font-size: 14px;
1176
- font-style: normal;
1177
- font-weight: 500;
1178
- line-height: 17px;
1179
- }
1180
- [data-uikit-theme=light] .message-list .no-more {
1181
- color: var(--uikit-theme-light-text-color-secondary);
1182
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1183
- }
1184
- [data-uikit-theme=dark] .message-list .no-more {
1185
- color: var(--uikit-theme-dark-text-color-secondary);
1186
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1187
- }
1188
- .message-list-time {
1189
- font-size: 12px;
1190
- font-weight: 400;
1191
- line-height: 14px;
1192
- padding: 10px;
1193
- text-align: center;
1194
- }
1195
- [data-uikit-theme=light] .message-list-time {
1196
- color: var(--uikit-theme-light-text-color-secondary);
1197
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1198
- }
1199
- [data-uikit-theme=dark] .message-list-time {
1200
- color: var(--uikit-theme-dark-text-color-secondary);
1201
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1202
- }
1203
- .uikit-chat-list__header {
1204
- display: flex;
1205
- overflow: hidden;
1206
- flex-direction: row;
1207
- justify-content: flex-end;
1208
- box-sizing: border-box;
1209
- min-width: 0;
1210
- }
1211
- [data-uikit-theme=light] .uikit-chat-list__header {
1212
- background-color: var(--uikit-theme-light-bg-color-operate);
1213
- color: var(--uikit-theme-light-text-color-primary);
1214
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1215
- }
1216
- [data-uikit-theme=dark] .uikit-chat-list__header {
1217
- background-color: var(--uikit-theme-dark-bg-color-operate);
1218
- color: var(--uikit-theme-dark-text-color-primary);
1219
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1220
- }
1221
- .uikit-chat-list__header .uikit-conversation-search + .uikit-conversation-create-container .uikit-conversation-create-button {
1222
- margin-left: 0;
1223
- }
1224
- .uikit-chat-list__header .uikit-chat-list__header__left,
1225
- .uikit-chat-list__header .uikit-chat-list__header__right {
1226
- display: flex;
1227
- flex-direction: row;
1228
- align-items: center;
1229
- justify-content: center;
1230
- box-sizing: border-box;
1231
- }
1232
- .uikit-chat-list__container {
1233
- display: flex;
1234
- flex-direction: column;
1235
- flex: 1;
1236
- overflow: hidden auto;
1237
- box-sizing: border-box;
1238
- min-width: 0;
1239
- text-align: initial;
1240
- }
1241
- [data-uikit-theme=light] .uikit-chat-list__container {
1242
- background-color: var(--uikit-theme-light-bg-color-operate);
1243
- color: var(--uikit-theme-light-text-color-primary);
1244
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1245
- }
1246
- [data-uikit-theme=dark] .uikit-chat-list__container {
1247
- background-color: var(--uikit-theme-dark-bg-color-operate);
1248
- color: var(--uikit-theme-dark-text-color-primary);
1249
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1250
- }
1251
- .tui-kit-input-box {
1252
- display: flex;
1253
- align-items: center;
1254
- border-radius: 10px;
1255
- padding: 0 8px;
1256
- height: 38px;
1257
- box-sizing: border-box;
1258
- }
1259
- [data-uikit-theme=light] .tui-kit-input-box {
1260
- background-color: var(--uikit-theme-light-bg-color-input);
1261
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1262
- }
1263
- [data-uikit-theme=dark] .tui-kit-input-box {
1264
- background-color: var(--uikit-theme-dark-bg-color-input);
1265
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1266
- }
1267
- [data-uikit-theme=light] .tui-kit-input-box.tui-kit-input-box--focus {
1268
- outline: 1px solid var(--uikit-theme-light-text-color-link);
1269
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1270
- }
1271
- [data-uikit-theme=dark] .tui-kit-input-box.tui-kit-input-box--focus {
1272
- outline: 1px solid var(--uikit-theme-dark-text-color-link);
1273
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1274
- }
1275
- .tui-kit-input-box.tui-kit-input-border--bottom {
1276
- outline: none;
1277
- border-radius: 0;
1278
- }
1279
- [data-uikit-theme=light] .tui-kit-input-box.tui-kit-input-border--bottom {
1280
- border-bottom: 1px solid var(--uikit-theme-light-stroke-color-primary);
1281
- background-color: var(--uikit-theme-light-bg-color-operate);
1282
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1283
- }
1284
- [data-uikit-theme=dark] .tui-kit-input-box.tui-kit-input-border--bottom {
1285
- border-bottom: 1px solid var(--uikit-theme-dark-stroke-color-primary);
1286
- background-color: var(--uikit-theme-dark-bg-color-operate);
1287
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1288
- }
1289
- .tui-kit-input-box .tui-kit-input {
1290
- margin-left: 6px;
1291
- margin-right: auto;
1292
- flex: 1;
1293
- display: flex;
1294
- flex-direction: row;
1295
- align-items: center;
1296
- background-color: transparent;
1297
- border-radius: 10px;
1298
- border: none;
1299
- box-sizing: border-box;
1300
- font-size: 14px;
1301
- }
1302
- [data-uikit-theme=light] .tui-kit-input-box .tui-kit-input {
1303
- color: var(--uikit-theme-light-text-color-primary);
1304
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1305
- }
1306
- [data-uikit-theme=dark] .tui-kit-input-box .tui-kit-input {
1307
- color: var(--uikit-theme-dark-text-color-primary);
1308
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1309
- }
1310
- .tui-kit-input-box .tui-kit-input:focus {
1311
- border: none;
1312
- outline: none;
1313
- }
1314
- .tui-kit-input-box .tui-kit-input::placeholder {
1315
- padding: 2px 0;
1316
- }
1317
- [data-uikit-theme=light] .tui-kit-input-box .tui-kit-input::placeholder {
1318
- color: var(--uikit-theme-light-text-color-secondary);
1319
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1320
- }
1321
- [data-uikit-theme=dark] .tui-kit-input-box .tui-kit-input::placeholder {
1322
- color: var(--uikit-theme-dark-text-color-secondary);
1323
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1324
- }
1325
- .uikit-conversation-search-input {
1326
- height: 36px;
1327
- align-self: stretch;
1328
- margin: 10px;
1329
- box-sizing: border-box;
1330
- }
1331
- [data-uikit-theme=light] .uikit-conversation-search-input {
1332
- background-color: var(--uikit-theme-light-bg-color-operate);
1333
- color: var(--uikit-theme-light-text-color-primary);
1334
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1335
- }
1336
- [data-uikit-theme=dark] .uikit-conversation-search-input {
1337
- background-color: var(--uikit-theme-dark-bg-color-operate);
1338
- color: var(--uikit-theme-dark-text-color-primary);
1339
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1340
- }
1341
- .tui-kit-avatar {
1342
- display: flex;
1343
- align-items: center;
1344
- position: relative;
1345
- cursor: pointer;
1346
- flex-shrink: 0;
1347
- }
1348
- .tui-kit-avatar.circle .avatar-image {
1349
- border-radius: 50%;
1350
- }
1351
- .tui-kit-avatar.square .avatar-image {
1352
- border-radius: 4px;
1353
- }
1354
- .tui-kit-avatar img {
1355
- width: 100%;
1356
- height: 100%;
1357
- }
1358
- .tui-kit-avatar:hover .tui-kit-avatar-edit {
1359
- display: flex;
1360
- }
1361
- .tui-kit-avatar-edit {
1362
- position: absolute;
1363
- top: 0;
1364
- left: 0;
1365
- background: rgba(0, 0, 0, 0.33);
1366
- width: 100%;
1367
- height: 100%;
1368
- border-radius: 100%;
1369
- display: none;
1370
- justify-content: center;
1371
- align-items: center;
1372
- }
1373
- .tui-kit-avatar-list {
1374
- position: absolute;
1375
- z-index: 2;
1376
- top: 100%;
1377
- background: #fff;
1378
- border-radius: 5px;
1379
- box-shadow: 0 11px 20px 0 rgb(0, 0, 0.3);
1380
- display: flex;
1381
- flex-wrap: wrap;
1382
- justify-content: center;
1383
- width: 100%;
1384
- min-width: 200px;
1385
- max-width: 400px;
1386
- padding: 10px;
1387
- }
1388
- .tui-kit-avatar-list-item {
1389
- padding: 10px;
1390
- }
1391
- .tui-kit-avatar-list-item img {
1392
- width: 40px;
1393
- }
1394
- .uikit-conversation-actions {
1395
- display: flex;
1396
- justify-content: flex-end;
1397
- flex: 1 1;
1398
- }
1399
- .uikit-conversation-actions .uikit-conversation-actions__container {
1400
- top: 0;
1401
- right: 0;
1402
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
1403
- bottom: initial;
1404
- padding: 14px 0;
1405
- box-sizing: border-box;
1406
- text-align: start;
1407
- white-space: nowrap;
1408
- }
1409
- .uikit-conversation-actions .uikit-conversation-actions__container .uikit-conversation-actions__item {
1410
- font-size: 16px;
1411
- /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
1412
- font-family: PingFangSC-Medium;
1413
- line-height: 19px;
1414
- padding: 6px 16px;
1415
- cursor: pointer;
1416
- font-weight: 500;
1417
- box-sizing: border-box;
1418
- }
1419
- [data-uikit-theme=light] .uikit-conversation-actions .uikit-conversation-actions__container .uikit-conversation-actions__item:hover {
1420
- background-color: var(--uikit-theme-light-dropdown-color-active);
1421
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1422
- }
1423
- [data-uikit-theme=dark] .uikit-conversation-actions .uikit-conversation-actions__container .uikit-conversation-actions__item:hover {
1424
- background-color: var(--uikit-theme-dark-dropdown-color-active);
1425
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1426
- }
1427
- [data-uikit-theme=light] .uikit-conversation-actions .uikit-conversation-actions__container .uikit-conversation-actions__item--delete {
1428
- color: var(--uikit-theme-light-text-color-error);
1429
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1430
- }
1431
- [data-uikit-theme=dark] .uikit-conversation-actions .uikit-conversation-actions__container .uikit-conversation-actions__item--delete {
1432
- color: var(--uikit-theme-dark-text-color-error);
1433
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1434
- }
1435
- .uikit-conversation-actions .uikit-conversation-actions__popup-icon {
1436
- transform: scale(1.5);
1437
- }
1438
- .uikit-conversation-preview {
1439
- display: flex;
1440
- align-items: center;
1441
- border: none;
1442
- height: 64px;
1443
- cursor: pointer;
1444
- line-height: 17px;
1445
- padding: 0 20px;
1446
- flex: 0 0 auto;
1447
- /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
1448
- font-family: PingFangSC-Medium;
1449
- }
1450
- [data-uikit-theme=light] .uikit-conversation-preview {
1451
- background-color: var(--uikit-theme-light-list-color-default);
1452
- color: var(--uikit-theme-light-text-color-primary);
1453
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1454
- }
1455
- [data-uikit-theme=dark] .uikit-conversation-preview {
1456
- background-color: var(--uikit-theme-dark-list-color-default);
1457
- color: var(--uikit-theme-dark-text-color-primary);
1458
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1459
- }
1460
- [data-uikit-theme=light] .uikit-conversation-preview:hover {
1461
- background-color: var(--uikit-theme-light-list-color-hover);
1462
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1463
- }
1464
- [data-uikit-theme=dark] .uikit-conversation-preview:hover {
1465
- background-color: var(--uikit-theme-dark-list-color-hover);
1466
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1467
- }
1468
- .uikit-conversation-preview.uikit-conversation-preview--mobile {
1469
- padding: 0 10px;
1470
- }
1471
- [data-uikit-theme=light] .uikit-conversation-preview.uikit-conversation-preview--pin {
1472
- background-color: var(--uikit-theme-light-list-color-hover);
1473
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1474
- }
1475
- [data-uikit-theme=dark] .uikit-conversation-preview.uikit-conversation-preview--pin {
1476
- background-color: var(--uikit-theme-dark-list-color-hover);
1477
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1478
- }
1479
- [data-uikit-theme=light] .uikit-conversation-preview.uikit-conversation-preview--active {
1480
- background-color: var(--uikit-theme-light-list-color-active);
1481
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1482
- }
1483
- [data-uikit-theme=dark] .uikit-conversation-preview.uikit-conversation-preview--active {
1484
- background-color: var(--uikit-theme-dark-list-color-active);
1485
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1486
- }
1487
- [data-uikit-theme=light] .uikit-conversation-preview.uikit-conversation-preview--active .uikit-conversation-preview__title {
1488
- color: var(--uikit-theme-light-text-color-link);
1489
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1490
- }
1491
- [data-uikit-theme=dark] .uikit-conversation-preview.uikit-conversation-preview--active .uikit-conversation-preview__title {
1492
- color: var(--uikit-theme-dark-text-color-link);
1493
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1494
- }
1495
- .uikit-conversation-preview.uikit-conversation-preview--unread .uikit-conversation-preview__unread {
1496
- color: #fff;
1497
- }
1498
- [data-uikit-theme=light] .uikit-conversation-preview.uikit-conversation-preview--unread .uikit-conversation-preview__unread {
1499
- background-color: var(--uikit-theme-light-text-color-error);
1500
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1501
- }
1502
- [data-uikit-theme=dark] .uikit-conversation-preview.uikit-conversation-preview--unread .uikit-conversation-preview__unread {
1503
- background-color: var(--uikit-theme-dark-text-color-error);
1504
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1505
- }
1506
- .uikit-conversation-preview .uikit-conversation-preview__content {
1507
- flex: 1 1 auto;
1508
- text-align: left;
1509
- margin-left: 10px;
1510
- min-width: 0;
1511
- }
1512
- .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__title {
1513
- font-style: normal;
1514
- font-weight: 700;
1515
- font-size: 14px;
1516
- line-height: 17px;
1517
- padding: 1px 0;
1518
- width: 100%;
1519
- }
1520
- [data-uikit-theme=light] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__title {
1521
- color: var(--uikit-theme-light-text-color-primary);
1522
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1523
- }
1524
- [data-uikit-theme=dark] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__title {
1525
- color: var(--uikit-theme-dark-text-color-primary);
1526
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1527
- }
1528
- [data-uikit-theme=light] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__title .uikit-conversation-preview__title--normal {
1529
- color: var(--uikit-theme-light-text-color-primary);
1530
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1531
- }
1532
- [data-uikit-theme=dark] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__title .uikit-conversation-preview__title--normal {
1533
- color: var(--uikit-theme-dark-text-color-primary);
1534
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1535
- }
1536
- [data-uikit-theme=light] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__title .uikit-conversation-preview__title--highlight {
1537
- color: var(--uikit-theme-light-text-color-link);
1538
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1539
- }
1540
- [data-uikit-theme=dark] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__title .uikit-conversation-preview__title--highlight {
1541
- color: var(--uikit-theme-dark-text-color-link);
1542
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1543
- }
1544
- .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__abstract {
1545
- overflow: hidden;
1546
- text-overflow: ellipsis;
1547
- white-space: nowrap;
1548
- font-style: normal;
1549
- font-weight: 400;
1550
- font-size: 12px;
1551
- line-height: 14px;
1552
- padding: 1px 0;
1553
- }
1554
- [data-uikit-theme=light] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__abstract {
1555
- color: var(--uikit-theme-light-text-color-secondary);
1556
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1557
- }
1558
- [data-uikit-theme=dark] .uikit-conversation-preview .uikit-conversation-preview__content .uikit-conversation-preview__abstract {
1559
- color: var(--uikit-theme-dark-text-color-secondary);
1560
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1561
- }
1562
- .uikit-conversation-preview .uikit-conversation-preview__external {
1563
- text-align: right;
1564
- flex: 0 1 auto;
1565
- display: flex;
1566
- flex-direction: column;
1567
- }
1568
- .uikit-conversation-preview .uikit-conversation-preview__external .uikit-conversation-preview__unread {
1569
- box-sizing: border-box;
1570
- height: 16px;
1571
- border-radius: 16px;
1572
- display: flex;
1573
- justify-content: center;
1574
- align-items: center;
1575
- padding: 2px 5px;
1576
- font-size: 11px;
1577
- font-weight: 700;
1578
- margin: 2px 0 2px auto;
1579
- }
1580
- .uikit-conversation-preview .uikit-conversation-preview__external .uikit-conversation-preview__time {
1581
- font-style: normal;
1582
- font-weight: 400;
1583
- font-size: 12px;
1584
- line-height: 14px;
1585
- padding: 1px 0;
1586
- text-wrap: nowrap;
1587
- }
1588
- [data-uikit-theme=light] .uikit-conversation-preview .uikit-conversation-preview__external .uikit-conversation-preview__time {
1589
- color: var(--uikit-theme-light-text-color-secondary);
1590
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1591
- }
1592
- [data-uikit-theme=dark] .uikit-conversation-preview .uikit-conversation-preview__external .uikit-conversation-preview__time {
1593
- color: var(--uikit-theme-dark-text-color-secondary);
1594
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1595
- }
1596
- .uikit-conversation-search-result {
1597
- display: flex;
1598
- flex-direction: column;
1599
- flex: 1;
1600
- min-width: 0;
1601
- box-sizing: border-box;
1602
- overflow: auto;
1603
- }
1604
- [data-uikit-theme=light] .uikit-conversation-search-result {
1605
- background-color: var(--uikit-theme-light-bg-color-operate);
1606
- color: var(--uikit-theme-light-text-color-primary);
1607
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1608
- }
1609
- [data-uikit-theme=dark] .uikit-conversation-search-result {
1610
- background-color: var(--uikit-theme-dark-bg-color-operate);
1611
- color: var(--uikit-theme-dark-text-color-primary);
1612
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1613
- }
1614
- .uikit-conversation-search {
1615
- display: flex;
1616
- flex: 1;
1617
- flex-direction: column;
1618
- box-sizing: border-box;
1619
- position: relative;
1620
- z-index: 2;
1621
- overflow: hidden;
1622
- }
1623
- [data-uikit-theme=light] .uikit-conversation-search {
1624
- background-color: var(--uikit-theme-light-bg-color-operate);
1625
- color: var(--uikit-theme-light-text-color-primary);
1626
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1627
- }
1628
- [data-uikit-theme=dark] .uikit-conversation-search {
1629
- background-color: var(--uikit-theme-dark-bg-color-operate);
1630
- color: var(--uikit-theme-dark-text-color-primary);
1631
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1632
- }
1633
- .uikit-conversation-search.uikit-conversation-search--active {
1634
- position: absolute;
1635
- width: 100%;
1636
- height: 100%;
1637
- }
1638
- .uikit-conversation-create-container {
1639
- display: flex;
1640
- flex-direction: column;
1641
- justify-content: center;
1642
- }
1643
-
1644
- .tui-conversation-create {
1645
- position: absolute;
1646
- display: flex;
1647
- flex-direction: column;
1648
- overflow: hidden;
1649
- flex: 1 1 auto;
1650
- box-sizing: border-box;
1651
- min-width: 0;
1652
- width: 100%;
1653
- height: 100%;
1654
- z-index: 2;
1655
- }
1656
- [data-uikit-theme=light] .tui-conversation-create {
1657
- background-color: var(--uikit-theme-light-bg-color-operate);
1658
- color: var(--uikit-theme-light-text-color-primary);
1659
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1660
- }
1661
- [data-uikit-theme=dark] .tui-conversation-create {
1662
- background-color: var(--uikit-theme-dark-bg-color-operate);
1663
- color: var(--uikit-theme-dark-text-color-primary);
1664
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1665
- }
1666
-
1667
- .tui-conversation-create-header {
1668
- display: flex;
1669
- flex-direction: row;
1670
- padding: 16px 20px;
1671
- align-items: center;
1672
- text-align: center;
1673
- }
1674
- [data-uikit-theme=light] .tui-conversation-create-header {
1675
- background-color: var(--uikit-theme-light-bg-color-operate);
1676
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1677
- }
1678
- [data-uikit-theme=dark] .tui-conversation-create-header {
1679
- background-color: var(--uikit-theme-dark-bg-color-operate);
1680
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1681
- }
1682
- .tui-conversation-create-header .title {
1683
- margin-left: 10px;
1684
- font-weight: 600;
1685
- font-size: 16px;
1686
- line-height: 32px;
1687
- letter-spacing: -0.41px;
1688
- }
1689
- [data-uikit-theme=light] .tui-conversation-create-header .title {
1690
- color: var(--uikit-theme-light-text-color-primary);
1691
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1692
- }
1693
- [data-uikit-theme=dark] .tui-conversation-create-header .title {
1694
- color: var(--uikit-theme-dark-text-color-primary);
1695
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1696
- }
1697
-
1698
- .tui-conversation-create-icon {
1699
- display: flex;
1700
- align-items: center;
1701
- justify-content: center;
1702
- }
1703
-
1704
- .tui-conversation-create-search-input {
1705
- margin: 10px;
1706
- }
1707
-
1708
- .tui-user {
1709
- padding: 6px;
1710
- display: flex;
1711
- align-items: center;
1712
- text-align: center;
1713
- cursor: pointer;
1714
- }
1715
- [data-uikit-theme=light] .tui-user:hover {
1716
- background-color: var(--uikit-theme-light-list-color-hover);
1717
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1718
- }
1719
- [data-uikit-theme=dark] .tui-user:hover {
1720
- background-color: var(--uikit-theme-dark-list-color-hover);
1721
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1722
- }
1723
- .tui-user .tui-user-name {
1724
- margin-left: 10px;
1725
- font-size: 14px;
1726
- width: 80%;
1727
- text-align: left;
1728
- }
1729
- [data-uikit-theme=light] .tui-user .tui-user-name {
1730
- color: var(--uikit-theme-light-text-color-primary);
1731
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1732
- }
1733
- [data-uikit-theme=dark] .tui-user .tui-user-name {
1734
- color: var(--uikit-theme-dark-text-color-primary);
1735
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1736
- }
1737
- .tui-user .tui-user-name.active {
1738
- font-weight: 600;
1739
- font-size: 14px;
1740
- }
1741
- [data-uikit-theme=light] .tui-user .tui-user-name.active {
1742
- color: var(--uikit-theme-light-text-color-link);
1743
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1744
- }
1745
- [data-uikit-theme=dark] .tui-user .tui-user-name.active {
1746
- color: var(--uikit-theme-dark-text-color-link);
1747
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1748
- }
1749
-
1750
- .tui-user-checkbox-label .tui-user-checkbox {
1751
- margin-left: auto;
1752
- }
1753
- .tui-user-checkbox-label input[type=checkbox] {
1754
- cursor: pointer;
1755
- }
1756
-
1757
- .tui-conversation-create-next-container {
1758
- width: 100%;
1759
- display: flex;
1760
- justify-content: center;
1761
- margin: 20px auto 10px;
1762
- }
1763
- .tui-conversation-create-next-container .tui-conversation-create-next {
1764
- cursor: pointer;
1765
- text-align: center;
1766
- border-radius: 31px;
1767
- font-size: 14px;
1768
- color: #fff;
1769
- padding: 12px 36px;
1770
- }
1771
- [data-uikit-theme=light] .tui-conversation-create-next-container .tui-conversation-create-next {
1772
- background-color: var(--uikit-theme-light-text-color-link);
1773
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1774
- }
1775
- [data-uikit-theme=dark] .tui-conversation-create-next-container .tui-conversation-create-next {
1776
- background-color: var(--uikit-theme-dark-text-color-link);
1777
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1778
- }
1779
-
1780
- .tui-conversation-create-select-list-container {
1781
- overflow-y: auto;
1782
- flex: 1 1 auto;
1783
- padding: 0 10px;
1784
- }
1785
- .tui-conversation-create-select-list-container .tui-conversation-create-select-list {
1786
- position: relative;
1787
- }
1788
- .tui-conversation-create-select-list-container .tui-conversation-create-select-list .tui-group-container {
1789
- width: 100%;
1790
- }
1791
- .tui-conversation-create-select-list-container .tui-conversation-create-select-list .tui-group-box .title {
1792
- font-weight: 600;
1793
- font-size: 14px;
1794
- padding: 10px;
1795
- }
1796
- [data-uikit-theme=light] .tui-conversation-create-select-list-container .tui-conversation-create-select-list .tui-group-box .title {
1797
- color: var(--uikit-theme-light-text-color-primary);
1798
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1799
- }
1800
- [data-uikit-theme=dark] .tui-conversation-create-select-list-container .tui-conversation-create-select-list .tui-group-box .title {
1801
- color: var(--uikit-theme-dark-text-color-primary);
1802
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1803
- }
1804
- .conversation-create-select-view {
1805
- display: flex;
1806
- flex-wrap: wrap;
1807
- justify-content: flex-start;
1808
- margin-bottom: 10px;
1809
- }
1810
- [data-uikit-theme=light] .conversation-create-select-view {
1811
- color: var(--uikit-theme-light-text-color-primary);
1812
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1813
- }
1814
- [data-uikit-theme=dark] .conversation-create-select-view {
1815
- color: var(--uikit-theme-dark-text-color-primary);
1816
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1817
- }
1818
- .conversation-create-select-view .select-view-info {
1819
- align-items: center;
1820
- display: flex;
1821
- flex-direction: column;
1822
- width: calc((100% - 10px) / 5);
1823
- padding: 6px;
1824
- box-sizing: border-box;
1825
- position: relative;
1826
- }
1827
- .conversation-create-select-view .select-view-info .select-view-info-close {
1828
- position: absolute;
1829
- right: 15px;
1830
- top: 6px;
1831
- z-index: 2;
1832
- }
1833
- .conversation-create-select-view .select-view-info .select-view-info-nick {
1834
- font-size: 12px;
1835
- overflow: hidden;
1836
- text-overflow: ellipsis;
1837
- white-space: nowrap;
1838
- width: 100%;
1839
- text-align: center;
1840
- }
1841
- .tui-conversation-create-group-detail {
1842
- display: flex;
1843
- flex-direction: column;
1844
- padding: 0 10px;
1845
- overflow-y: scroll;
1846
- }
1847
- [data-uikit-theme=light] .tui-conversation-create-group-detail {
1848
- color: var(--uikit-theme-light-text-color-primary);
1849
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1850
- }
1851
- [data-uikit-theme=dark] .tui-conversation-create-group-detail {
1852
- color: var(--uikit-theme-dark-text-color-primary);
1853
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1854
- }
1855
- .tui-conversation-create-group-detail .create-group-box {
1856
- padding: 10px 0;
1857
- }
1858
- .tui-conversation-create-group-detail .input-group-text {
1859
- font-size: 14px;
1860
- }
1861
- .tui-conversation-create-group-detail .create-group-name .input-group-name {
1862
- font-weight: 700;
1863
- font-size: 14px;
1864
- }
1865
- .tui-conversation-create-group-detail .input-group-title {
1866
- width: 106px;
1867
- font-size: 14px;
1868
- }
1869
- .tui-conversation-create-group-detail .create-group-illustrate {
1870
- font-size: 12px;
1871
- text-align: justify;
1872
- padding-left: 8px;
1873
- }
1874
- .tui-conversation-create-group-detail .create-group-portrait .create-group-portrait-title {
1875
- font-weight: 600;
1876
- font-size: 14px;
1877
- padding: 20px 0 20px 8px;
1878
- }
1879
- .tui-conversation-create-group-detail .create-group-portrait .create-group-portrait-info-container {
1880
- display: flex;
1881
- flex-wrap: wrap;
1882
- justify-content: flex-start;
1883
- margin-bottom: 10px;
1884
- padding: 0 10px;
1885
- }
1886
- .tui-conversation-create-group-detail .create-group-portrait .create-group-portrait-info-container .create-group-portrait-info {
1887
- align-items: center;
1888
- display: flex;
1889
- flex-direction: column;
1890
- padding: 6px;
1891
- box-sizing: border-box;
1892
- }
1893
- .tui-conversation-create-group-detail .create-group-portrait .create-group-portrait-info-container .create-group-portrait-info-nick {
1894
- font-size: 12px;
1895
- margin-top: 6px;
1896
- }
1897
- .tui-conversation-group-type-info {
1898
- display: flex;
1899
- flex-direction: column;
1900
- padding: 0 10px;
1901
- overflow-y: scroll;
1902
- }
1903
- [data-uikit-theme=light] .tui-conversation-group-type-info {
1904
- color: var(--uikit-theme-light-text-color-primary);
1905
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1906
- }
1907
- [data-uikit-theme=dark] .tui-conversation-group-type-info {
1908
- color: var(--uikit-theme-dark-text-color-primary);
1909
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1910
- }
1911
- .tui-conversation-group-type-info .group-type-info-box {
1912
- display: flex;
1913
- flex-direction: column;
1914
- border-radius: 16px;
1915
- padding: 12px 16px;
1916
- margin-top: 12px;
1917
- cursor: pointer;
1918
- }
1919
- [data-uikit-theme=light] .tui-conversation-group-type-info .group-type-info-box {
1920
- background-color: var(--uikit-theme-light-bg-color-operate);
1921
- border: 1px solid var(--uikit-theme-light-stroke-color-primary);
1922
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1923
- }
1924
- [data-uikit-theme=dark] .tui-conversation-group-type-info .group-type-info-box {
1925
- background-color: var(--uikit-theme-dark-bg-color-operate);
1926
- border: 1px solid var(--uikit-theme-dark-stroke-color-primary);
1927
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1928
- }
1929
- .tui-conversation-group-type-info .group-type-info-box:hover {
1930
- border: 1px solid #147aff;
1931
- }
1932
- .tui-conversation-group-type-info .group-type-info-box.group-type-info-box--active {
1933
- border: 1px solid #147aff;
1934
- }
1935
- .tui-conversation-group-type-info .group-type-info-box .group-type-info-title {
1936
- font-size: 16px;
1937
- display: flex;
1938
- align-items: center;
1939
- }
1940
- .tui-conversation-group-type-info .group-type-info-box .group-type-info-title .box-active-icon {
1941
- margin-right: 8px;
1942
- }
1943
- .tui-conversation-group-type-info .group-type-info-box .group-type-info-description {
1944
- font-size: 12px;
1945
- text-align: justify;
1946
- }
1947
- .tui-conversation-group-type-info .group-type-info-document {
1948
- font-size: 16px;
1949
- text-align: justify;
1950
- text-decoration: none;
1951
- margin: 1rem auto;
1952
- }
1953
- [data-uikit-theme=light] .tui-conversation-group-type-info .group-type-info-document:link, [data-uikit-theme=light] .tui-conversation-group-type-info .group-type-info-document:active, [data-uikit-theme=light] .tui-conversation-group-type-info .group-type-info-document:visited {
1954
- color: var(--uikit-theme-light-text-color-link);
1955
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1956
- }
1957
- [data-uikit-theme=dark] .tui-conversation-group-type-info .group-type-info-document:link, [data-uikit-theme=dark] .tui-conversation-group-type-info .group-type-info-document:active, [data-uikit-theme=dark] .tui-conversation-group-type-info .group-type-info-document:visited {
1958
- color: var(--uikit-theme-dark-text-color-link);
1959
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1960
- }
1961
- .tui-conversation-create-button {
1962
- display: flex;
1963
- align-items: center;
1964
- margin: 10px;
1965
- }
1966
- .uikit-chat-list {
1967
- flex: 1;
1968
- box-sizing: border-box;
1969
- overflow: hidden;
1970
- min-width: 0;
1971
- display: flex;
1972
- flex-direction: column;
1973
- position: relative;
1974
- text-align: initial;
1975
- }
1976
- [data-uikit-theme=light] .uikit-chat-list {
1977
- background-color: var(--uikit-theme-light-bg-color-operate);
1978
- color: var(--uikit-theme-light-text-color-primary);
1979
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1980
- }
1981
- [data-uikit-theme=dark] .uikit-chat-list {
1982
- background-color: var(--uikit-theme-dark-bg-color-operate);
1983
- color: var(--uikit-theme-dark-text-color-primary);
1984
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
1985
- }
1986
- .uikit-chat-list .uikit-chat-list__header--searching {
1987
- position: absolute;
1988
- width: 100%;
1989
- height: 100%;
1990
- }
1991
- .uikit-chat-list .uikit-chat-list__header--creating {
1992
- position: absolute;
1993
- width: 100%;
1994
- height: 100%;
1995
- }
1996
- .tui-profile {
1997
- display: flex;
1998
- flex-direction: column;
1999
- align-items: center;
2000
- height: 100%;
2001
- }
2002
- [data-uikit-theme=light] .tui-profile {
2003
- color: var(--uikit-theme-light-text-color-primary);
2004
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2005
- }
2006
- [data-uikit-theme=dark] .tui-profile {
2007
- color: var(--uikit-theme-dark-text-color-primary);
2008
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2009
- }
2010
- .tui-profile-header {
2011
- box-sizing: border-box;
2012
- width: 100%;
2013
- padding: 15px;
2014
- display: flex;
2015
- align-items: center;
2016
- }
2017
- .tui-profile-header h1 {
2018
- font-size: 16px;
2019
- font-weight: 600;
2020
- padding: 0 11px;
2021
- }
2022
- .tui-profile-main {
2023
- max-width: 100%;
2024
- box-sizing: border-box;
2025
- padding: 10px 10px 0;
2026
- display: flex;
2027
- flex-direction: column;
2028
- align-items: center;
2029
- }
2030
- .tui-profile-avatar {
2031
- margin: 13px 0;
2032
- position: relative;
2033
- }
2034
- .tui-profile .displayFlex {
2035
- display: flex;
2036
- }
2037
- .tui-profile-nick {
2038
- font-weight: 700;
2039
- font-size: 24px;
2040
- line-height: 29px;
2041
- text-align: center;
2042
- }
2043
- .tui-profile-nick .show {
2044
- padding-left: 25px;
2045
- }
2046
- .tui-profile-ID {
2047
- margin: 6px 0;
2048
- display: flex;
2049
- align-items: center;
2050
- font-size: 12px;
2051
- }
2052
- [data-uikit-theme=light] .tui-profile-ID {
2053
- color: var(--uikit-theme-light-text-color-secondary);
2054
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2055
- }
2056
- [data-uikit-theme=dark] .tui-profile-ID {
2057
- color: var(--uikit-theme-dark-text-color-secondary);
2058
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2059
- }
2060
- .tui-profile-ID h5 {
2061
- margin: 0;
2062
- }
2063
- .tui-profile-list {
2064
- box-sizing: border-box;
2065
- width: 100%;
2066
- padding: 0 15px;
2067
- display: flex;
2068
- flex-direction: column;
2069
- user-select: none;
2070
- }
2071
- .tui-profile-list-item {
2072
- padding: 0;
2073
- cursor: pointer;
2074
- }
2075
- .tui-profile-list-item h4 {
2076
- font-size: 16px;
2077
- margin: 10px 0;
2078
- }
2079
- .tui-profile-div-with-edit {
2080
- height: auto !important;
2081
- }
2082
- [data-uikit-theme=light] .tui-profile-div-with-edit {
2083
- border-bottom: 1px solid var(--uikit-theme-light-stroke-color-primary);
2084
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2085
- }
2086
- [data-uikit-theme=dark] .tui-profile-div-with-edit {
2087
- border-bottom: 1px solid var(--uikit-theme-dark-stroke-color-primary);
2088
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2089
- }
2090
- .tui-profile-edit {
2091
- border-bottom: none !important;
2092
- }
2093
-
2094
- .tui-profile-birthday .react-date-picker__wrapper {
2095
- display: none !important;
2096
- }
2097
- .tui-profile-birthday .react-date-picker__calendar {
2098
- position: static !important;
2099
- }
2100
- .tui-profile-birthday .react-date-picker__calendar .react-calendar__navigation {
2101
- height: 20px !important;
2102
- margin-bottom: 0;
2103
- }
2104
- .tui-profile-birthday-calendar {
2105
- border: none !important;
2106
- }
2107
-
2108
- [data-uikit-theme=light] .tui-profile {
2109
- background: var(--uikit-theme-light-bg-color-operate);
2110
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2111
- }
2112
- [data-uikit-theme=dark] .tui-profile {
2113
- background: var(--uikit-theme-dark-bg-color-operate);
2114
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2115
- }
2116
- .tui-manage {
2117
- display: flex;
2118
- flex-direction: column;
2119
- width: 22%;
2120
- max-width: 300px;
2121
- min-width: 200px;
2122
- }
2123
- [data-uikit-theme=light] .tui-manage {
2124
- background-color: var(--uikit-theme-light-bg-color-operate);
2125
- color: var(--uikit-theme-light-text-color-primary);
2126
- border-left: 1px solid var(--uikit-theme-light-stroke-color-primary);
2127
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2128
- }
2129
- [data-uikit-theme=dark] .tui-manage {
2130
- background-color: var(--uikit-theme-dark-bg-color-operate);
2131
- color: var(--uikit-theme-dark-text-color-primary);
2132
- border-left: 1px solid var(--uikit-theme-dark-stroke-color-primary);
2133
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2134
- }
2135
- .tui-manage .red {
2136
- color: #ff584c !important;
2137
- }
2138
- .tui-manage .tui-manage-title {
2139
- display: flex;
2140
- align-items: center;
2141
- padding: 24px 10px;
2142
- }
2143
- .tui-manage .tui-manage-title span {
2144
- margin-right: 10px;
2145
- font-weight: 700;
2146
- font-size: 14px;
2147
- }
2148
- .tui-manage .tui-manage-container .tui-manage-info {
2149
- display: flex;
2150
- flex-direction: column;
2151
- align-items: center;
2152
- }
2153
- .tui-manage .tui-manage-container .tui-manage-info .info-avatar {
2154
- margin-top: 40px;
2155
- margin-bottom: 20px;
2156
- }
2157
- .tui-manage .tui-manage-container .tui-manage-info .info-name {
2158
- text-align: center;
2159
- font-weight: 700;
2160
- font-size: 24px;
2161
- margin-bottom: 10px;
2162
- }
2163
- .tui-manage .tui-manage-container .tui-manage-info .info-id {
2164
- font-size: 16px;
2165
- margin-bottom: 30px;
2166
- text-align: center;
2167
- }
2168
- [data-uikit-theme=light] .tui-manage .tui-manage-container .tui-manage-info .info-id {
2169
- color: var(--uikit-theme-light-text-color-secondary);
2170
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2171
- }
2172
- [data-uikit-theme=dark] .tui-manage .tui-manage-container .tui-manage-info .info-id {
2173
- color: var(--uikit-theme-dark-text-color-secondary);
2174
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2175
- }
2176
- .tui-manage .tui-manage-container .tui-manage-handle .manage-handle-box {
2177
- display: flex;
2178
- align-items: center;
2179
- justify-content: space-between;
2180
- padding: 10px;
2181
- }
2182
- [data-uikit-theme=light] .tui-manage .tui-manage-container .tui-manage-handle .manage-handle-box {
2183
- background: var(--uikit-theme-light-bg-color-operate);
2184
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2185
- }
2186
- [data-uikit-theme=dark] .tui-manage .tui-manage-container .tui-manage-handle .manage-handle-box {
2187
- background: var(--uikit-theme-dark-bg-color-operate);
2188
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2189
- }
2190
- .tui-manage .tui-manage-container .tui-manage-handle .manage-handle-box:nth-child(2) {
2191
- margin-top: 10px;
2192
- cursor: pointer;
2193
- }
2194
- .tui-manage .tui-manage-container .tui-manage-handle .manage-handle-box .manage-handle-title {
2195
- font-size: 16px;
2196
- }
2197
- [data-uikit-theme=light] .tui-manage .tui-manage-container .tui-manage-handle .manage-handle-box .manage-handle-title {
2198
- color: var(--uikit-theme-light-text-color-primary);
2199
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2200
- }
2201
- [data-uikit-theme=dark] .tui-manage .tui-manage-container .tui-manage-handle .manage-handle-box .manage-handle-title {
2202
- color: var(--uikit-theme-dark-text-color-primary);
2203
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2204
- }
2205
-
2206
- .tui-manage.tui-h5-manage {
2207
- border-left: none;
2208
- display: flex;
2209
- flex-direction: column;
2210
- position: absolute;
2211
- top: 0;
2212
- bottom: 0;
2213
- width: 100%;
2214
- max-width: 100%;
2215
- min-width: 100%;
2216
- z-index: 1;
2217
- }
2218
- [data-uikit-theme=light] .tui-manage.tui-h5-manage {
2219
- background: var(--uikit-theme-light-bg-color-operate);
2220
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2221
- }
2222
- [data-uikit-theme=dark] .tui-manage.tui-h5-manage {
2223
- background: var(--uikit-theme-dark-bg-color-operate);
2224
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2225
- }
2226
- .popup {
2227
- opacity: 0;
2228
- }
2229
- .popup-show {
2230
- opacity: 1;
2231
- }
2232
- .checkbox {
2233
- display: inline-flex;
2234
- justify-content: center;
2235
- align-items: center;
2236
- cursor: pointer;
2237
- position: relative;
2238
- }
2239
- .checkbox-default {
2240
- box-sizing: border-box;
2241
- width: 14px;
2242
- height: 14px;
2243
- border-radius: 14px;
2244
- border: 1px solid #DDDDDD;
2245
- }
2246
- .checkbox-input {
2247
- margin: 0;
2248
- padding: 0;
2249
- position: absolute;
2250
- top: 0;
2251
- left: 0;
2252
- z-index: 1;
2253
- width: 100%;
2254
- height: 100%;
2255
- opacity: 0;
2256
- }
2257
-
2258
- [data-uikit-theme=light] .info {
2259
- background-color: var(--uikit-theme-light-bg-color-operate);
2260
- color: var(--uikit-theme-light-text-color-primary);
2261
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2262
- }
2263
- [data-uikit-theme=dark] .info {
2264
- background-color: var(--uikit-theme-dark-bg-color-operate);
2265
- color: var(--uikit-theme-dark-text-color-primary);
2266
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2267
- }
2268
-
2269
- [data-uikit-theme=light] .warn {
2270
- background-color: var(--uikit-theme-light-text-color-warning);
2271
- color: #fff;
2272
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2273
- }
2274
- [data-uikit-theme=dark] .warn {
2275
- background-color: var(--uikit-theme-dark-text-color-warning);
2276
- color: #fff;
2277
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2278
- }
2279
-
2280
- [data-uikit-theme=light] .error {
2281
- background-color: var(--uikit-theme-light-text-color-error);
2282
- color: #fff;
2283
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2284
- }
2285
- [data-uikit-theme=dark] .error {
2286
- background-color: var(--uikit-theme-dark-text-color-error);
2287
- color: #fff;
2288
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2289
- }
2290
- .div-with-edit {
2291
- flex: 1;
2292
- display: flex;
2293
- max-width: 100%;
2294
- box-sizing: border-box;
2295
- height: 30px;
2296
- }
2297
- .div-with-edit-popup {
2298
- flex: 1;
2299
- display: flex;
2300
- max-width: 100%;
2301
- }
2302
- .div-with-edit .show {
2303
- flex: 1;
2304
- display: flex;
2305
- align-items: center;
2306
- justify-content: space-between;
2307
- position: relative;
2308
- word-break: break-all;
2309
- }
2310
- .div-with-edit .show .icon-edit {
2311
- display: none;
2312
- }
2313
- .div-with-edit .show:hover .icon-edit {
2314
- display: flex;
2315
- }
2316
- .div-with-edit .icon {
2317
- margin-left: 10px;
2318
- width: 25px;
2319
- }
2320
- .div-with-edit .edit {
2321
- flex: 1;
2322
- display: flex;
2323
- align-items: center;
2324
- justify-content: space-between;
2325
- position: relative;
2326
- padding: 0 10px;
2327
- }
2328
- [data-uikit-theme=light] .div-with-edit .edit {
2329
- border-bottom: 1px solid var(--uikit-theme-light-stroke-color-primary);
2330
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2331
- }
2332
- [data-uikit-theme=dark] .div-with-edit .edit {
2333
- border-bottom: 1px solid var(--uikit-theme-dark-stroke-color-primary);
2334
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2335
- }
2336
- .div-with-edit .edit input {
2337
- flex: 1;
2338
- font-size: inherit;
2339
- border: none;
2340
- }
2341
- .div-with-edit .edit input:focus {
2342
- border: none;
2343
- outline: none;
2344
- }
2345
- .div-with-edit .edit .select {
2346
- position: absolute;
2347
- min-width: 100%;
2348
- z-index: 2;
2349
- top: 100%;
2350
- border-radius: 5px;
2351
- padding: 10px 0;
2352
- }
2353
- [data-uikit-theme=light] .div-with-edit .edit .select {
2354
- background: var(--uikit-theme-light-dropdown-color-default);
2355
- box-shadow: 0 11px 20px 0 var(--uikit-theme-light-shadow-color);
2356
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2357
- }
2358
- [data-uikit-theme=dark] .div-with-edit .edit .select {
2359
- background: var(--uikit-theme-dark-dropdown-color-default);
2360
- box-shadow: 0 11px 20px 0 var(--uikit-theme-dark-shadow-color);
2361
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2362
- }
2363
- .div-with-edit .edit .select-list-item {
2364
- padding: 7px 10px;
2365
- }
2366
- [data-uikit-theme=light] .div-with-edit .edit .select-list-item:hover {
2367
- background: var(--uikit-theme-light-dropdown-color-hover);
2368
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2369
- }
2370
- [data-uikit-theme=dark] .div-with-edit .edit .select-list-item:hover {
2371
- background: var(--uikit-theme-dark-dropdown-color-hover);
2372
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2373
- }
2374
- .tui-kit-icon {
2375
- display: flex;
2376
- text-align: center;
2377
- align-items: center;
2378
- cursor: pointer;
2379
- position: relative;
2380
- user-select: none;
2381
- }
2382
- .tui-kit-icon .icon-image {
2383
- width: 100%;
2384
- }
2385
- .tui-kit-icon:hover {
2386
- color: royalblue;
2387
- border-color: currentcolor;
2388
- }
2389
- .tui-kit-icon::after {
2390
- content: "";
2391
- position: absolute;
2392
- inset: 0;
2393
- border-radius: inherit;
2394
- opacity: 0;
2395
- box-shadow: 0 0 0 6px royalblue;
2396
- transition: 0.3s;
2397
- }
2398
- .tui-kit-icon:active::after {
2399
- box-shadow: none;
2400
- opacity: 0.4;
2401
- transition: 0s;
2402
- }
2403
-
2404
- .tui-kit-icon-loading {
2405
- cursor: wait;
2406
- border-radius: 100%;
2407
- animation: circle infinite 1s linear;
2408
- }
2409
- [data-uikit-theme=light] .tui-kit-icon-loading {
2410
- border: 3px solid var(--uikit-theme-light-text-color-disable);
2411
- border-top-color: transparent;
2412
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2413
- }
2414
- [data-uikit-theme=dark] .tui-kit-icon-loading {
2415
- border: 3px solid var(--uikit-theme-dark-text-color-disable);
2416
- border-top-color: transparent;
2417
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2418
- }
2419
- [data-uikit-theme=light] .tui-kit-icon-loading:hover {
2420
- border: 3px solid var(--uikit-theme-light-text-color-disable);
2421
- border-top-color: transparent;
2422
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2423
- }
2424
- [data-uikit-theme=dark] .tui-kit-icon-loading:hover {
2425
- border: 3px solid var(--uikit-theme-dark-text-color-disable);
2426
- border-top-color: transparent;
2427
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2428
- }
2429
-
2430
- @keyframes circle {
2431
- 0% {
2432
- transform: rotate(0);
2433
- }
2434
- 100% {
2435
- transform: rotate(360deg);
2436
- }
2437
- }
2438
- .tui-place-holder {
2439
- padding: 0 20px;
2440
- display: flex;
2441
- flex-direction: column;
2442
- justify-content: center;
2443
- align-items: center;
2444
- flex: 1;
2445
- }
2446
- .tui-place-holder .tui-place-holder__icon {
2447
- margin: 10px;
2448
- }
2449
- .tui-place-holder .tui-place-holder__label {
2450
- color: #999;
2451
- font-weight: 400;
2452
- /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
2453
- font-family: PingFangSC-Medium;
2454
- font-size: 16px;
2455
- line-height: 22px;
2456
- }
2457
- .tui-place-holder .tui-place-holder__button {
2458
- margin: 20px;
2459
- background-color: #0365f9;
2460
- border-radius: 31px;
2461
- color: #fff;
2462
- cursor: pointer;
2463
- /* stylelint-disable-next-line font-family-no-missing-generic-family-keyword */
2464
- font-family: PingFangSC-Medium;
2465
- font-size: 14px;
2466
- line-height: 20px;
2467
- padding: 12px 36px;
2468
- text-align: center;
2469
- user-select: none;
2470
- }
2471
- .model {
2472
- background: rgba(0, 0, 0, 0.5);
2473
- position: fixed;
2474
- z-index: 5;
2475
- width: 100vw;
2476
- top: 0;
2477
- left: 0;
2478
- bottom: 0;
2479
- display: flex;
2480
- justify-content: center;
2481
- align-items: center;
2482
- }
2483
- .self-ui-switch {
2484
- display: inline-flex;
2485
- vertical-align: top;
2486
- }
2487
- .self-ui-switch-input {
2488
- height: 0;
2489
- width: 0;
2490
- display: none;
2491
- }
2492
- .self-ui-switch-label {
2493
- position: relative;
2494
- width: 51px;
2495
- height: 31px;
2496
- background-color: rgba(120, 120, 128, 0.16);
2497
- border-radius: 100px;
2498
- cursor: pointer;
2499
- transition: all 0.2s;
2500
- }
2501
- .self-ui-switch-button {
2502
- position: absolute;
2503
- height: calc(100% - 4px);
2504
- width: 50%;
2505
- top: 50%;
2506
- left: 2px;
2507
- border-radius: 46px;
2508
- transform: translateY(-50%);
2509
- background-color: #fff;
2510
- transition: all 0.2s;
2511
- box-shadow: 0 0 2px 0 rgba(10, 10, 10, 0.29);
2512
- }
2513
- .self-ui-switch-label .self-ui-switch-input:checked + .self-ui-switch-button {
2514
- left: calc(100% - 2px);
2515
- transform: translateX(-100%) translateY(-50%);
2516
- }
2517
- .self-ui-switch-label:active .self-ui-switch-button {
2518
- width: 66%;
2519
- }
2520
- .toast {
2521
- position: fixed;
2522
- top: 0;
2523
- z-index: 10;
2524
- margin: 20px;
2525
- padding: 10px;
2526
- box-shadow: 0 11px 20px 0 rgb(0, 0, 0.3);
2527
- max-width: 50%;
2528
- word-break: break-all;
2529
- border-radius: 5px;
2530
- }
2531
-
2532
- .info {
2533
- background: #FFFFFF;
2534
- }
2535
-
2536
- .warn {
2537
- color: #FFFFFF;
2538
- background: #faad14;
2539
- }
2540
-
2541
- .error {
2542
- color: #FFFFFF;
2543
- background: #ff4d4f;
2544
- }
2545
- .tui-contacts-list {
2546
- flex: 1 1 auto;
2547
- min-width: 360px;
2548
- max-width: 360px;
2549
- display: flex;
2550
- flex-direction: column;
2551
- position: relative;
2552
- text-align: initial;
2553
- overflow: hidden scroll;
2554
- }
2555
- [data-uikit-theme=light] .tui-contacts-list {
2556
- color: var(--uikit-theme-light-text-color-primary);
2557
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2558
- }
2559
- [data-uikit-theme=dark] .tui-contacts-list {
2560
- color: var(--uikit-theme-dark-text-color-primary);
2561
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2562
- }
2563
- .tui-contacts-list .tui-contacts-title {
2564
- display: flex;
2565
- justify-content: space-between;
2566
- }
2567
- .tui-contacts-list .tui-contacts-list-title {
2568
- display: flex;
2569
- padding: 10px 20px;
2570
- cursor: pointer;
2571
- }
2572
- .tui-contacts-list .tui-contacts-list-icon {
2573
- display: flex;
2574
- align-items: center;
2575
- justify-content: center;
2576
- margin-right: 20px;
2577
- }
2578
- .tui-contacts-list .tui-contacts-list-icon .contacts-list-icon {
2579
- font-size: 12px;
2580
- }
2581
- [data-uikit-theme=light] .tui-contacts-list .tui-contacts-list-icon .contacts-list-icon {
2582
- color: var(--uikit-theme-light-text-color-primary);
2583
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2584
- }
2585
- [data-uikit-theme=dark] .tui-contacts-list .tui-contacts-list-icon .contacts-list-icon {
2586
- color: var(--uikit-theme-dark-text-color-primary);
2587
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2588
- }
2589
- .tui-contacts-list .tui-contacts-list-item {
2590
- align-items: center;
2591
- cursor: pointer;
2592
- display: flex;
2593
- padding: 10px 20px;
2594
- text-align: center;
2595
- font-size: 14px;
2596
- }
2597
- .tui-contacts-list .tui-contacts-list-item .tui-contacts-list-item-card {
2598
- display: flex;
2599
- padding: 0 10px;
2600
- overflow: hidden;
2601
- align-items: center;
2602
- justify-content: space-between;
2603
- flex: 1;
2604
- }
2605
- .tui-contacts-list .tui-contacts-list-item .tui-contacts-list-item-container {
2606
- margin-left: 10px;
2607
- }
2608
- .tui-contacts-list .tui-contacts-list-item .text-ellipsis, .tui-contacts-list .tui-contacts-list-item .tui-contacts-list-item-name, .tui-contacts-list .tui-contacts-list-item .tui-contacts-list-item-text {
2609
- overflow: hidden;
2610
- text-overflow: ellipsis;
2611
- white-space: nowrap;
2612
- }
2613
- .tui-contacts-list .tui-contacts-list-item .tui-contacts-list-item-text {
2614
- color: #999;
2615
- font-size: 12px;
2616
- text-align: left;
2617
- }
2618
- .tui-contacts-list .tui-contacts-list-item .tui-contacts-list-btn-text {
2619
- color: #999;
2620
- font-size: 12px;
2621
- text-align: left;
2622
- }
2623
- .tui-contacts-list .application-btn {
2624
- width: 30px;
2625
- height: 14px;
2626
- padding: 5px;
2627
- border-radius: 15px;
2628
- font-size: 10px;
2629
- text-align: center;
2630
- line-height: 14px;
2631
- letter-spacing: 0;
2632
- cursor: pointer;
2633
- -webkit-user-select: none;
2634
- user-select: none;
2635
- border: 1px solid #006eff;
2636
- background: #006eff;
2637
- color: #fff;
2638
- }
2639
-
2640
- ::-webkit-scrollbar {
2641
- display: none;
2642
- }
2643
-
2644
- .tui-contacts-list-h5 {
2645
- min-width: 100%;
2646
- width: 100%;
2647
- max-width: 100%;
2648
- }
2649
- .tui-contact-info {
2650
- width: 100%;
2651
- height: 100%;
2652
- display: flex;
2653
- padding: 60px;
2654
- flex-direction: column;
2655
- overflow: hidden;
2656
- }
2657
- [data-uikit-theme=light] .tui-contact-info {
2658
- background-color: var(--uikit-theme-light-bg-color-operate);
2659
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2660
- }
2661
- [data-uikit-theme=dark] .tui-contact-info {
2662
- background-color: var(--uikit-theme-dark-bg-color-operate);
2663
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2664
- }
2665
- .tui-contact-info .tui-contact-info-header {
2666
- padding-bottom: 15px;
2667
- border-bottom: 1px solid #ddd;
2668
- overflow: hidden;
2669
- box-sizing: border-box;
2670
- width: 100%;
2671
- }
2672
- .tui-contact-info .tui-contact-info-header .header-container {
2673
- flex: 1;
2674
- }
2675
- .tui-contact-info .tui-contact-info-header .header-container .header-container-avatar {
2676
- display: flex;
2677
- align-items: center;
2678
- padding: 10px;
2679
- }
2680
- .tui-contact-info .tui-contact-info-header .header-container .header-container-name {
2681
- font-size: 24px;
2682
- padding: 15px;
2683
- }
2684
- [data-uikit-theme=light] .tui-contact-info .tui-contact-info-header .header-container .header-container-name {
2685
- color: var(--uikit-theme-light-text-color-primary);
2686
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2687
- }
2688
- [data-uikit-theme=dark] .tui-contact-info .tui-contact-info-header .header-container .header-container-name {
2689
- color: var(--uikit-theme-dark-text-color-primary);
2690
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2691
- }
2692
- .tui-contact-info .tui-contact-info-header .header-container .header-container-text {
2693
- margin-top: 20px;
2694
- font-size: 16px;
2695
- word-break: break-all;
2696
- }
2697
- [data-uikit-theme=light] .tui-contact-info .tui-contact-info-header .header-container .header-container-text {
2698
- color: var(--uikit-theme-light-text-color-secondary);
2699
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2700
- }
2701
- [data-uikit-theme=dark] .tui-contact-info .tui-contact-info-header .header-container .header-container-text {
2702
- color: var(--uikit-theme-dark-text-color-secondary);
2703
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2704
- }
2705
- .tui-contact-info .tui-contact-info-content {
2706
- padding: 15px 0;
2707
- overflow: hidden;
2708
- }
2709
- [data-uikit-theme=light] .tui-contact-info .tui-contact-info-content {
2710
- color: var(--uikit-theme-light-text-color-secondary);
2711
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2712
- }
2713
- [data-uikit-theme=dark] .tui-contact-info .tui-contact-info-content {
2714
- color: var(--uikit-theme-dark-text-color-secondary);
2715
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2716
- }
2717
- .tui-contact-info .tui-contact-info-content .content-item {
2718
- display: flex;
2719
- flex-direction: row;
2720
- align-items: center;
2721
- padding: 6px 0;
2722
- font-size: 16px;
2723
- min-height: 56px;
2724
- }
2725
- .tui-contact-info .tui-contact-info-content .content-item-wording {
2726
- padding: 6px 0;
2727
- font-size: 16px;
2728
- min-height: 56px;
2729
- }
2730
- .tui-contact-info .tui-contact-info-content .content-item-wording-text {
2731
- margin-top: 5px;
2732
- flex: 1;
2733
- border: 1px solid #e8e8e9;
2734
- border-radius: 4px;
2735
- padding: 4px;
2736
- color: inherit;
2737
- resize: none;
2738
- height: 100px;
2739
- width: 95%;
2740
- }
2741
- .tui-contact-info .tui-contact-info-content .content-item-label {
2742
- margin-right: 5px;
2743
- }
2744
- .tui-contact-info .tui-contact-info-content .content-item-text {
2745
- flex: 1;
2746
- display: flex;
2747
- flex-direction: row;
2748
- overflow: hidden;
2749
- }
2750
- .tui-contact-info .tui-contact-info-content .content-btn-container {
2751
- display: flex;
2752
- padding: 30px;
2753
- justify-content: center;
2754
- }
2755
- .tui-contact-info .tui-contact-info-content .content-btn-container .content-item-btn {
2756
- margin: 15px;
2757
- padding: 8px 20px;
2758
- border-radius: 25px;
2759
- border: none;
2760
- font-size: 14px;
2761
- text-align: center;
2762
- letter-spacing: 0;
2763
- min-width: 100px;
2764
- cursor: pointer;
2765
- -webkit-user-select: none;
2766
- user-select: none;
2767
- }
2768
- [data-uikit-theme=light] .tui-contact-info .tui-contact-info-content .content-btn-container .delete-btn {
2769
- color: var(--uikit-theme-light-text-color-error);
2770
- border: 1px solid var(--uikit-basic-color-border-color-error);
2771
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2772
- }
2773
- [data-uikit-theme=dark] .tui-contact-info .tui-contact-info-content .content-btn-container .delete-btn {
2774
- color: var(--uikit-theme-dark-text-color-error);
2775
- border: 1px solid var(--uikit-basic-color-border-color-error);
2776
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2777
- }
2778
- [data-uikit-theme=light] .tui-contact-info .tui-contact-info-content .content-btn-container .confirm-btn {
2779
- color: #fff;
2780
- background-color: var(--uikit-theme-light-text-color-link);
2781
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2782
- }
2783
- [data-uikit-theme=dark] .tui-contact-info .tui-contact-info-content .content-btn-container .confirm-btn {
2784
- color: #fff;
2785
- background-color: var(--uikit-theme-dark-text-color-link);
2786
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2787
- }
2788
-
2789
- .tui-contact-info-h5 {
2790
- padding: 8px;
2791
- }
2792
- .tui-contacts {
2793
- height: 100%;
2794
- min-width: 360px;
2795
- max-width: 360px;
2796
- display: flex;
2797
- flex-direction: column;
2798
- position: relative;
2799
- text-align: initial;
2800
- overflow: hidden;
2801
- }
2802
- [data-uikit-theme=light] .tui-contacts {
2803
- background-color: var(--uikit-theme-light-bg-color-operate);
2804
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2805
- }
2806
- [data-uikit-theme=dark] .tui-contacts {
2807
- background-color: var(--uikit-theme-dark-bg-color-operate);
2808
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2809
- }
2810
- .tui-contacts .tui-contacts-header {
2811
- position: relative;
2812
- display: flex;
2813
- align-items: center;
2814
- padding: 10px 20px 10px 10px;
2815
- }
2816
- .tui-contacts .tui-contact-input {
2817
- width: 100%;
2818
- }
2819
- .tui-contacts .tui-contacts-add {
2820
- color: #147aff;
2821
- font-size: 20px;
2822
- align-items: center;
2823
- cursor: pointer;
2824
- display: flex;
2825
- text-align: center;
2826
- }
2827
- .tui-contacts .tui-contacts-add .tui-conversation-create-icon {
2828
- display: flex;
2829
- align-items: center;
2830
- justify-content: center;
2831
- }
2832
- .tui-contacts .tui-contacts-add-header {
2833
- align-items: center;
2834
- display: flex;
2835
- flex-direction: row;
2836
- padding: 16px 20px;
2837
- text-align: center;
2838
- margin-bottom: 10px;
2839
- }
2840
- [data-uikit-theme=light] .tui-contacts .tui-contacts-add-header {
2841
- background-color: var(--uikit-theme-light-bg-color-operate);
2842
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2843
- }
2844
- [data-uikit-theme=dark] .tui-contacts .tui-contacts-add-header {
2845
- background-color: var(--uikit-theme-dark-bg-color-operate);
2846
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2847
- }
2848
- .tui-contacts .tui-contacts-add-header .tui-contacts-add-header-title {
2849
- font-size: 20px;
2850
- font-weight: 600;
2851
- margin-left: 10px;
2852
- }
2853
- [data-uikit-theme=light] .tui-contacts .tui-contacts-add-header .tui-contacts-add-header-title {
2854
- color: var(--uikit-theme-light-text-color-primary);
2855
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2856
- }
2857
- [data-uikit-theme=dark] .tui-contacts .tui-contacts-add-header .tui-contacts-add-header-title {
2858
- color: var(--uikit-theme-dark-text-color-primary);
2859
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2860
- }
2861
- .tui-contacts .no-result {
2862
- padding: 0 20px;
2863
- display: flex;
2864
- flex-direction: column;
2865
- align-items: center;
2866
- }
2867
- .tui-contacts .no-result-icon {
2868
- margin: 100px auto 50px;
2869
- }
2870
- .tui-contacts .no-result-message {
2871
- font-size: 16px;
2872
- line-height: 22px;
2873
- }
2874
- [data-uikit-theme=light] .tui-contacts .no-result-message {
2875
- color: var(--uikit-theme-light-text-color-secondary);
2876
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2877
- }
2878
- [data-uikit-theme=dark] .tui-contacts .no-result-message {
2879
- color: var(--uikit-theme-dark-text-color-secondary);
2880
- transition: background-color 0.3s ease-out, border-color 0.3s ease-out;
2881
- }
2882
-
2883
- .tui-contacts-h5 {
2884
- min-width: 100%;
2885
- width: 100%;
2886
- max-width: 100%;
2887
- }