@sendbird/uikit-react 3.13.1 → 3.13.2

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 (918) hide show
  1. package/App.js +77 -76
  2. package/App.js.map +1 -1
  3. package/CHANGELOG.md +24 -0
  4. package/Channel/components/ChannelHeader.js +29 -29
  5. package/Channel/components/ChannelUI.js +66 -64
  6. package/Channel/components/ChannelUI.js.map +1 -1
  7. package/Channel/components/FileViewer.js +28 -28
  8. package/Channel/components/FrozenNotification.js +5 -5
  9. package/Channel/components/Message.js +55 -53
  10. package/Channel/components/Message.js.map +1 -1
  11. package/Channel/components/MessageFeedbackModal.js +9 -9
  12. package/Channel/components/MessageInput.js +41 -41
  13. package/Channel/components/MessageInputWrapper.js +41 -41
  14. package/Channel/components/MessageList.js +59 -57
  15. package/Channel/components/MessageList.js.map +1 -1
  16. package/Channel/components/RemoveMessageModal.js +27 -27
  17. package/Channel/components/SuggestedMentionList.js +27 -27
  18. package/Channel/components/TypingIndicator.js +6 -6
  19. package/Channel/components/UnreadCount.js +7 -7
  20. package/Channel/context.js +19 -19
  21. package/Channel/hooks/useHandleUploadFiles.js +13 -13
  22. package/Channel/hooks/useInitialMessagesFetch.js +6 -6
  23. package/Channel/utils/compareMessagesForGrouping.js +5 -5
  24. package/Channel/utils/getMessagePartsInfo.js +6 -6
  25. package/Channel.js +66 -64
  26. package/Channel.js.map +1 -1
  27. package/ChannelList/components/AddChannel.js +22 -20
  28. package/ChannelList/components/AddChannel.js.map +1 -1
  29. package/ChannelList/components/ChannelListHeader.js +8 -8
  30. package/ChannelList/components/ChannelListUI.js +36 -34
  31. package/ChannelList/components/ChannelListUI.js.map +1 -1
  32. package/ChannelList/components/ChannelPreview.js +27 -27
  33. package/ChannelList/components/ChannelPreviewAction.js +13 -11
  34. package/ChannelList/components/ChannelPreviewAction.js.map +1 -1
  35. package/ChannelList/context.js +10 -10
  36. package/ChannelList.js +36 -34
  37. package/ChannelList.js.map +1 -1
  38. package/ChannelSettings/components/ChannelProfile.js +14 -14
  39. package/ChannelSettings/components/ChannelSettingsHeader.js +29 -0
  40. package/ChannelSettings/components/ChannelSettingsHeader.js.map +1 -0
  41. package/ChannelSettings/components/ChannelSettingsUI.js +34 -41
  42. package/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
  43. package/ChannelSettings/components/EditDetailsModal.js +14 -14
  44. package/ChannelSettings/components/LeaveChannel.js +11 -11
  45. package/ChannelSettings/components/ModerationPanel.js +86 -68
  46. package/ChannelSettings/components/ModerationPanel.js.map +1 -1
  47. package/ChannelSettings/components/UserListItem.js +15 -13
  48. package/ChannelSettings/components/UserListItem.js.map +1 -1
  49. package/ChannelSettings/components/UserPanel.js +22 -20
  50. package/ChannelSettings/components/UserPanel.js.map +1 -1
  51. package/ChannelSettings/context.js +3 -3
  52. package/ChannelSettings.js +28 -25
  53. package/ChannelSettings.js.map +1 -1
  54. package/CreateChannel/components/CreateChannelUI.js +18 -16
  55. package/CreateChannel/components/CreateChannelUI.js.map +1 -1
  56. package/CreateChannel/components/InviteUsers.js +18 -16
  57. package/CreateChannel/components/InviteUsers.js.map +1 -1
  58. package/CreateChannel/components/SelectChannelType.js +10 -10
  59. package/CreateChannel/context.js +4 -4
  60. package/CreateChannel.js +18 -16
  61. package/CreateChannel.js.map +1 -1
  62. package/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
  63. package/CreateOpenChannel/context.js +1 -1
  64. package/CreateOpenChannel.js +11 -11
  65. package/EditUserProfile/components/EditUserProfileUI.js +12 -12
  66. package/EditUserProfile.js +12 -12
  67. package/GroupChannel/components/FileViewer.js +23 -23
  68. package/GroupChannel/components/FrozenNotification.js +5 -5
  69. package/GroupChannel/components/GroupChannelHeader.js +22 -22
  70. package/GroupChannel/components/GroupChannelUI.js +60 -58
  71. package/GroupChannel/components/GroupChannelUI.js.map +1 -1
  72. package/GroupChannel/components/Message.js +52 -50
  73. package/GroupChannel/components/Message.js.map +1 -1
  74. package/GroupChannel/components/MessageInputWrapper.js +38 -38
  75. package/GroupChannel/components/MessageList.js +53 -51
  76. package/GroupChannel/components/MessageList.js.map +1 -1
  77. package/GroupChannel/components/RemoveMessageModal.js +22 -22
  78. package/GroupChannel/components/SuggestedMentionList.js +12 -12
  79. package/GroupChannel/components/TypingIndicator.js +6 -6
  80. package/GroupChannel/components/UnreadCount.js +7 -7
  81. package/GroupChannel/context.js +11 -11
  82. package/GroupChannel.js +60 -58
  83. package/GroupChannel.js.map +1 -1
  84. package/GroupChannelList/components/AddGroupChannel.js +20 -19
  85. package/GroupChannelList/components/AddGroupChannel.js.map +1 -1
  86. package/GroupChannelList/components/GroupChannelListHeader.js +8 -8
  87. package/GroupChannelList/components/GroupChannelListItem.js +24 -24
  88. package/GroupChannelList/components/GroupChannelListUI.js +34 -33
  89. package/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
  90. package/GroupChannelList/components/GroupChannelPreviewAction.js +13 -11
  91. package/GroupChannelList/components/GroupChannelPreviewAction.js.map +1 -1
  92. package/GroupChannelList/context.js +5 -5
  93. package/GroupChannelList.js +34 -33
  94. package/GroupChannelList.js.map +1 -1
  95. package/MessageSearch/components/MessageSearchUI.js +14 -14
  96. package/MessageSearch/context.js +1 -1
  97. package/MessageSearch.js +14 -14
  98. package/OpenChannel/components/FrozenChannelNotification.js +5 -5
  99. package/OpenChannel/components/OpenChannelHeader.js +18 -18
  100. package/OpenChannel/components/OpenChannelInput.js +25 -25
  101. package/OpenChannel/components/OpenChannelMessage.js +37 -37
  102. package/OpenChannel/components/OpenChannelMessageList.js +39 -39
  103. package/OpenChannel/components/OpenChannelUI.js +39 -39
  104. package/OpenChannel/context.js +17 -17
  105. package/OpenChannel.js +41 -41
  106. package/OpenChannelList/components/OpenChannelListUI.js +14 -14
  107. package/OpenChannelList/components/OpenChannelPreview.js +6 -6
  108. package/OpenChannelList/context.js +3 -3
  109. package/OpenChannelList.js +14 -14
  110. package/OpenChannelSettings/components/EditDetailsModal.js +15 -15
  111. package/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
  112. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +20 -19
  113. package/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
  114. package/OpenChannelSettings/components/OperatorUI.js +24 -31
  115. package/OpenChannelSettings/components/OperatorUI.js.map +1 -1
  116. package/OpenChannelSettings/components/ParticipantUI.js +19 -18
  117. package/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
  118. package/OpenChannelSettings/context.js +3 -3
  119. package/OpenChannelSettings.js +21 -20
  120. package/OpenChannelSettings.js.map +1 -1
  121. package/SendbirdProvider.js +30 -26
  122. package/SendbirdProvider.js.map +1 -1
  123. package/Thread/components/ParentMessageInfo.js +44 -43
  124. package/Thread/components/ParentMessageInfo.js.map +1 -1
  125. package/Thread/components/ParentMessageInfoItem.js +30 -29
  126. package/Thread/components/ParentMessageInfoItem.js.map +1 -1
  127. package/Thread/components/ThreadHeader.js +7 -7
  128. package/Thread/components/ThreadList.js +48 -47
  129. package/Thread/components/ThreadList.js.map +1 -1
  130. package/Thread/components/ThreadListItem.js +47 -46
  131. package/Thread/components/ThreadListItem.js.map +1 -1
  132. package/Thread/components/ThreadMessageInput.js +42 -42
  133. package/Thread/components/ThreadUI.js +57 -56
  134. package/Thread/components/ThreadUI.js.map +1 -1
  135. package/Thread/context.js +9 -9
  136. package/Thread.js +57 -56
  137. package/Thread.js.map +1 -1
  138. package/VoicePlayer/context.js +3 -3
  139. package/VoicePlayer/useVoicePlayer.js +10 -10
  140. package/VoiceRecorder/context.js +10 -10
  141. package/VoiceRecorder/useVoiceRecorder.js +9 -9
  142. package/chunks/{bundle-1gwAtv3_.js → bundle-2UMLs1R6.js} +1 -1
  143. package/chunks/bundle-2UMLs1R6.js.map +1 -0
  144. package/chunks/{bundle-jH1LTiaZ.js → bundle-2g0N2xdw.js} +1 -1
  145. package/chunks/bundle-2g0N2xdw.js.map +1 -0
  146. package/chunks/{bundle-XgKdQ_N6.js → bundle-4bxiD94h.js} +1 -1
  147. package/chunks/{bundle-XgKdQ_N6.js.map → bundle-4bxiD94h.js.map} +1 -1
  148. package/chunks/{bundle-QzQ0Z1lc.js → bundle-5DiiOFi-.js} +5 -5
  149. package/chunks/bundle-5DiiOFi-.js.map +1 -0
  150. package/chunks/{bundle-qGz9DwGC.js → bundle-5E39Cv3A.js} +1 -1
  151. package/chunks/bundle-5E39Cv3A.js.map +1 -0
  152. package/chunks/{bundle-IaU6YF_5.js → bundle-5rwlX4db.js} +2 -2
  153. package/chunks/{bundle-IaU6YF_5.js.map → bundle-5rwlX4db.js.map} +1 -1
  154. package/chunks/{bundle-G8aQ8ldg.js → bundle-B1ObaBN3.js} +1 -1
  155. package/chunks/{bundle-G8aQ8ldg.js.map → bundle-B1ObaBN3.js.map} +1 -1
  156. package/chunks/{bundle-Q0DCPBLF.js → bundle-B1v1xIP1.js} +1 -1
  157. package/chunks/bundle-B1v1xIP1.js.map +1 -0
  158. package/chunks/{bundle-9JcU7WF6.js → bundle-B3KaaIrh.js} +2 -2
  159. package/chunks/{bundle-9JcU7WF6.js.map → bundle-B3KaaIrh.js.map} +1 -1
  160. package/chunks/{bundle-v0F6T-gl.js → bundle-B9Jpp9ee.js} +1 -1
  161. package/chunks/bundle-B9Jpp9ee.js.map +1 -0
  162. package/chunks/{bundle-5j_LCcnI.js → bundle-B9ZQfJSL.js} +4 -4
  163. package/chunks/{bundle-5j_LCcnI.js.map → bundle-B9ZQfJSL.js.map} +1 -1
  164. package/chunks/{bundle-CChs9z4I.js → bundle-BEzsjrvw.js} +6 -6
  165. package/chunks/bundle-BEzsjrvw.js.map +1 -0
  166. package/chunks/{bundle-3uSBAMCx.js → bundle-BIcgVVCw.js} +10 -10
  167. package/chunks/{bundle-3uSBAMCx.js.map → bundle-BIcgVVCw.js.map} +1 -1
  168. package/chunks/{bundle-I3SOpmVR.js → bundle-BKPDTl9U.js} +3 -3
  169. package/chunks/bundle-BKPDTl9U.js.map +1 -0
  170. package/chunks/{bundle-EPOzCaN-.js → bundle-BNL2dgIA.js} +8 -8
  171. package/chunks/{bundle-EPOzCaN-.js.map → bundle-BNL2dgIA.js.map} +1 -1
  172. package/chunks/{bundle-dznvzWdZ.js → bundle-BRedj7J7.js} +2 -2
  173. package/chunks/{bundle-dznvzWdZ.js.map → bundle-BRedj7J7.js.map} +1 -1
  174. package/chunks/{bundle-iNwXYg8t.js → bundle-BRhZt2zf.js} +1 -1
  175. package/chunks/{bundle-iNwXYg8t.js.map → bundle-BRhZt2zf.js.map} +1 -1
  176. package/chunks/{bundle-ueZaur75.js → bundle-BUHwsL2D.js} +3 -3
  177. package/chunks/bundle-BUHwsL2D.js.map +1 -0
  178. package/chunks/{bundle-fGp6w98-.js → bundle-BV8WCwVA.js} +3 -3
  179. package/chunks/bundle-BV8WCwVA.js.map +1 -0
  180. package/chunks/{bundle-lYHZR3jb.js → bundle-BYdjor8f.js} +1 -1
  181. package/chunks/bundle-BYdjor8f.js.map +1 -0
  182. package/chunks/{bundle-kRkORTjK.js → bundle-BZK5eiX2.js} +1 -1
  183. package/chunks/bundle-BZK5eiX2.js.map +1 -0
  184. package/chunks/{bundle-V0xbpJPV.js → bundle-B_ah2kxT.js} +1 -1
  185. package/chunks/bundle-B_ah2kxT.js.map +1 -0
  186. package/chunks/{bundle-t_Zp4HcK.js → bundle-Bb7wwF7C.js} +10 -10
  187. package/chunks/bundle-Bb7wwF7C.js.map +1 -0
  188. package/chunks/{bundle-XBlUtykQ.js → bundle-Bceke7Nk.js} +7 -7
  189. package/chunks/{bundle-XBlUtykQ.js.map → bundle-Bceke7Nk.js.map} +1 -1
  190. package/chunks/{bundle-LN_WdItn.js → bundle-BdCGrzcY.js} +1 -1
  191. package/chunks/bundle-BdCGrzcY.js.map +1 -0
  192. package/chunks/{bundle-xJvVI8rO.js → bundle-Be2HIA26.js} +2 -2
  193. package/chunks/bundle-Be2HIA26.js.map +1 -0
  194. package/chunks/{bundle-Yfu3khe4.js → bundle-BgunHZ2y.js} +1 -1
  195. package/chunks/bundle-BgunHZ2y.js.map +1 -0
  196. package/chunks/{bundle-8bj34OZZ.js → bundle-BkTOcqVY.js} +5 -5
  197. package/chunks/{bundle-8bj34OZZ.js.map → bundle-BkTOcqVY.js.map} +1 -1
  198. package/chunks/{bundle-4OgQJ7X4.js → bundle-BlSpe5qA.js} +1 -1
  199. package/chunks/bundle-BlSpe5qA.js.map +1 -0
  200. package/chunks/{bundle-FlHetJ-i.js → bundle-Bm8gzDx1.js} +4 -4
  201. package/chunks/{bundle-FlHetJ-i.js.map → bundle-Bm8gzDx1.js.map} +1 -1
  202. package/chunks/{bundle-qp8qrwgO.js → bundle-BpyUTLY3.js} +4 -4
  203. package/chunks/bundle-BpyUTLY3.js.map +1 -0
  204. package/chunks/{bundle-ORNtuGAK.js → bundle-BqWBruLa.js} +3 -3
  205. package/chunks/bundle-BqWBruLa.js.map +1 -0
  206. package/chunks/{bundle-vqMWfuob.js → bundle-BxmlG4s-.js} +3 -3
  207. package/chunks/bundle-BxmlG4s-.js.map +1 -0
  208. package/chunks/{bundle-YTNRflOw.js → bundle-C-35JoOu.js} +1 -1
  209. package/chunks/bundle-C-35JoOu.js.map +1 -0
  210. package/chunks/{bundle-YQzd7GID.js → bundle-C-UZ_gr4.js} +2 -2
  211. package/chunks/{bundle-YQzd7GID.js.map → bundle-C-UZ_gr4.js.map} +1 -1
  212. package/chunks/{bundle-ni6pTUHE.js → bundle-C6387K33.js} +1 -1
  213. package/chunks/bundle-C6387K33.js.map +1 -0
  214. package/chunks/{bundle-OaODZhZ_.js → bundle-C6MmX70M.js} +1 -1
  215. package/chunks/bundle-C6MmX70M.js.map +1 -0
  216. package/chunks/{bundle-8FWrrAa9.js → bundle-C6ZHgzD6.js} +2 -2
  217. package/chunks/{bundle-8FWrrAa9.js.map → bundle-C6ZHgzD6.js.map} +1 -1
  218. package/chunks/{bundle--Lhu0g1K.js → bundle-C7SA85dp.js} +1 -1
  219. package/chunks/bundle-C7SA85dp.js.map +1 -0
  220. package/chunks/{bundle-C8lBzFe4.js → bundle-C9WS75DY.js} +3 -3
  221. package/chunks/{bundle-C8lBzFe4.js.map → bundle-C9WS75DY.js.map} +1 -1
  222. package/chunks/{bundle-b0LXFwC-.js → bundle-CBIAPOPy.js} +11 -11
  223. package/chunks/{bundle-b0LXFwC-.js.map → bundle-CBIAPOPy.js.map} +1 -1
  224. package/chunks/{bundle-tpQ4ZoL7.js → bundle-CExm_LIL.js} +14 -14
  225. package/chunks/{bundle-tpQ4ZoL7.js.map → bundle-CExm_LIL.js.map} +1 -1
  226. package/chunks/{bundle-726H1FcN.js → bundle-CHxXgtL2.js} +1 -1
  227. package/chunks/bundle-CHxXgtL2.js.map +1 -0
  228. package/chunks/{bundle-SQ9QacmP.js → bundle-CI0ovNa-.js} +1 -1
  229. package/chunks/bundle-CI0ovNa-.js.map +1 -0
  230. package/chunks/{bundle-9DSYjtTH.js → bundle-CIHv_OFc.js} +4 -4
  231. package/chunks/bundle-CIHv_OFc.js.map +1 -0
  232. package/chunks/{bundle-9eXfVBSj.js → bundle-CNInpRIS.js} +3 -3
  233. package/chunks/bundle-CNInpRIS.js.map +1 -0
  234. package/chunks/{bundle-Bq8FTiM8.js → bundle-CU8x_Vlw.js} +1 -1
  235. package/chunks/bundle-CU8x_Vlw.js.map +1 -0
  236. package/chunks/{bundle-vKBxT9Oa.js → bundle-CUBnQyTA.js} +1 -1
  237. package/chunks/{bundle-vKBxT9Oa.js.map → bundle-CUBnQyTA.js.map} +1 -1
  238. package/chunks/{bundle-a81-P2WI.js → bundle-CXMfzdI7.js} +1 -1
  239. package/chunks/bundle-CXMfzdI7.js.map +1 -0
  240. package/chunks/{bundle-f5U_VL0z.js → bundle-Cb6tbPro.js} +2 -2
  241. package/chunks/bundle-Cb6tbPro.js.map +1 -0
  242. package/chunks/{bundle-Eyf4eJYC.js → bundle-CcRuHA7i.js} +5 -5
  243. package/chunks/{bundle-Eyf4eJYC.js.map → bundle-CcRuHA7i.js.map} +1 -1
  244. package/chunks/{bundle-26v6WTQh.js → bundle-Cgtk2LV4.js} +4 -4
  245. package/chunks/bundle-Cgtk2LV4.js.map +1 -0
  246. package/chunks/{bundle-m49aWDUM.js → bundle-Clnr6ml_.js} +4 -4
  247. package/chunks/{bundle-m49aWDUM.js.map → bundle-Clnr6ml_.js.map} +1 -1
  248. package/chunks/{bundle-A92jjX29.js → bundle-Cm3yLDom.js} +2 -2
  249. package/chunks/bundle-Cm3yLDom.js.map +1 -0
  250. package/chunks/{bundle-sj91Fb-2.js → bundle-CtBgDIuq.js} +29 -59
  251. package/chunks/bundle-CtBgDIuq.js.map +1 -0
  252. package/chunks/{bundle-Q-LEE_gW.js → bundle-D-OF1Dsr.js} +3 -3
  253. package/chunks/{bundle-Q-LEE_gW.js.map → bundle-D-OF1Dsr.js.map} +1 -1
  254. package/chunks/{bundle-aRzA6Ar7.js → bundle-D1otjGeL.js} +5 -4
  255. package/chunks/{bundle-aRzA6Ar7.js.map → bundle-D1otjGeL.js.map} +1 -1
  256. package/chunks/{bundle-ILthLqdx.js → bundle-D4TIkniH.js} +3 -3
  257. package/chunks/{bundle-ILthLqdx.js.map → bundle-D4TIkniH.js.map} +1 -1
  258. package/chunks/{bundle-3te2klPE.js → bundle-D57EENOn.js} +1 -1
  259. package/chunks/bundle-D57EENOn.js.map +1 -0
  260. package/chunks/{bundle-pYQxFvty.js → bundle-D9xWky57.js} +1 -1
  261. package/chunks/bundle-D9xWky57.js.map +1 -0
  262. package/chunks/{bundle-NKz1R5aS.js → bundle-DIhQqYC5.js} +6 -6
  263. package/chunks/bundle-DIhQqYC5.js.map +1 -0
  264. package/chunks/{bundle-ZA3vOSBy.js → bundle-DIy5BllY.js} +10 -10
  265. package/chunks/bundle-DIy5BllY.js.map +1 -0
  266. package/chunks/{bundle-yVnIU7yv.js → bundle-DPRlCjJt.js} +3 -3
  267. package/chunks/bundle-DPRlCjJt.js.map +1 -0
  268. package/chunks/{bundle-DpuIAEpN.js → bundle-DT8UMQCr.js} +1 -1
  269. package/chunks/{bundle-DpuIAEpN.js.map → bundle-DT8UMQCr.js.map} +1 -1
  270. package/chunks/{bundle-ZxknBRho.js → bundle-DdwjYXOX.js} +13 -13
  271. package/chunks/bundle-DdwjYXOX.js.map +1 -0
  272. package/chunks/{bundle-M-mPRQVf.js → bundle-DtcJzbuk.js} +1 -1
  273. package/chunks/bundle-DtcJzbuk.js.map +1 -0
  274. package/chunks/{bundle-o8w1wTMw.js → bundle-DwRQcRou.js} +3 -3
  275. package/chunks/bundle-DwRQcRou.js.map +1 -0
  276. package/chunks/{bundle-ZcW4v7tz.js → bundle-DzQcMztv.js} +1 -1
  277. package/chunks/{bundle-ZcW4v7tz.js.map → bundle-DzQcMztv.js.map} +1 -1
  278. package/chunks/{bundle-9N8rxcU_.js → bundle-Hl5CUM1x.js} +1 -1
  279. package/chunks/bundle-Hl5CUM1x.js.map +1 -0
  280. package/chunks/{bundle-N-PDD2Cl.js → bundle-OTdL9cWR.js} +2 -2
  281. package/chunks/bundle-OTdL9cWR.js.map +1 -0
  282. package/chunks/{bundle-5azogY3V.js → bundle-Pw0Ofufv.js} +10 -10
  283. package/chunks/{bundle-5azogY3V.js.map → bundle-Pw0Ofufv.js.map} +1 -1
  284. package/chunks/{bundle-SWVZVzgr.js → bundle-QPbZ_XSR.js} +3 -3
  285. package/chunks/{bundle-SWVZVzgr.js.map → bundle-QPbZ_XSR.js.map} +1 -1
  286. package/chunks/{bundle--bY8mmDR.js → bundle-RJu3P_iQ.js} +1 -1
  287. package/chunks/bundle-RJu3P_iQ.js.map +1 -0
  288. package/chunks/{bundle-_g4Ln2k-.js → bundle-TYwaKAYl.js} +59 -91
  289. package/chunks/bundle-TYwaKAYl.js.map +1 -0
  290. package/chunks/{bundle-1YZ1lMFm.js → bundle-_B5yFEP0.js} +2 -2
  291. package/chunks/bundle-_B5yFEP0.js.map +1 -0
  292. package/chunks/{bundle-b3nJcKrD.js → bundle-cWhfb441.js} +1 -1
  293. package/chunks/bundle-cWhfb441.js.map +1 -0
  294. package/chunks/{bundle-rYMayCT3.js → bundle-hAKR7PVp.js} +1 -1
  295. package/chunks/bundle-hAKR7PVp.js.map +1 -0
  296. package/chunks/{bundle-Ij2ogskR.js → bundle-kO-Z-dxL.js} +1 -1
  297. package/chunks/bundle-kO-Z-dxL.js.map +1 -0
  298. package/chunks/{bundle-4PIMbALe.js → bundle-mkC088ne.js} +1 -1
  299. package/chunks/bundle-mkC088ne.js.map +1 -0
  300. package/chunks/{bundle-7DsbNj8s.js → bundle-sQj5xACh.js} +5 -5
  301. package/chunks/bundle-sQj5xACh.js.map +1 -0
  302. package/chunks/{bundle-lQUghzL6.js → bundle-ugWtu0YZ.js} +1 -1
  303. package/chunks/bundle-ugWtu0YZ.js.map +1 -0
  304. package/chunks/{bundle-wAW5sK6g.js → bundle-x0WnpBed.js} +7 -7
  305. package/chunks/{bundle-wAW5sK6g.js.map → bundle-x0WnpBed.js.map} +1 -1
  306. package/cjs/App.js +77 -76
  307. package/cjs/App.js.map +1 -1
  308. package/cjs/Channel/components/ChannelHeader.js +29 -29
  309. package/cjs/Channel/components/ChannelUI.js +66 -64
  310. package/cjs/Channel/components/ChannelUI.js.map +1 -1
  311. package/cjs/Channel/components/FileViewer.js +28 -28
  312. package/cjs/Channel/components/FrozenNotification.js +5 -5
  313. package/cjs/Channel/components/Message.js +55 -53
  314. package/cjs/Channel/components/Message.js.map +1 -1
  315. package/cjs/Channel/components/MessageFeedbackModal.js +9 -9
  316. package/cjs/Channel/components/MessageInput.js +41 -41
  317. package/cjs/Channel/components/MessageInputWrapper.js +41 -41
  318. package/cjs/Channel/components/MessageList.js +59 -57
  319. package/cjs/Channel/components/MessageList.js.map +1 -1
  320. package/cjs/Channel/components/RemoveMessageModal.js +27 -27
  321. package/cjs/Channel/components/SuggestedMentionList.js +27 -27
  322. package/cjs/Channel/components/TypingIndicator.js +6 -6
  323. package/cjs/Channel/components/UnreadCount.js +7 -7
  324. package/cjs/Channel/context.js +19 -19
  325. package/cjs/Channel/hooks/useHandleUploadFiles.js +13 -13
  326. package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
  327. package/cjs/Channel/utils/compareMessagesForGrouping.js +5 -5
  328. package/cjs/Channel/utils/getMessagePartsInfo.js +6 -6
  329. package/cjs/Channel.js +66 -64
  330. package/cjs/Channel.js.map +1 -1
  331. package/cjs/ChannelList/components/AddChannel.js +22 -20
  332. package/cjs/ChannelList/components/AddChannel.js.map +1 -1
  333. package/cjs/ChannelList/components/ChannelListHeader.js +8 -8
  334. package/cjs/ChannelList/components/ChannelListUI.js +36 -34
  335. package/cjs/ChannelList/components/ChannelListUI.js.map +1 -1
  336. package/cjs/ChannelList/components/ChannelPreview.js +27 -27
  337. package/cjs/ChannelList/components/ChannelPreviewAction.js +13 -11
  338. package/cjs/ChannelList/components/ChannelPreviewAction.js.map +1 -1
  339. package/cjs/ChannelList/context.js +10 -10
  340. package/cjs/ChannelList.js +36 -34
  341. package/cjs/ChannelList.js.map +1 -1
  342. package/cjs/ChannelSettings/components/ChannelProfile.js +14 -14
  343. package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +31 -0
  344. package/cjs/ChannelSettings/components/ChannelSettingsHeader.js.map +1 -0
  345. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +34 -41
  346. package/cjs/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
  347. package/cjs/ChannelSettings/components/EditDetailsModal.js +14 -14
  348. package/cjs/ChannelSettings/components/LeaveChannel.js +11 -11
  349. package/cjs/ChannelSettings/components/ModerationPanel.js +86 -68
  350. package/cjs/ChannelSettings/components/ModerationPanel.js.map +1 -1
  351. package/cjs/ChannelSettings/components/UserListItem.js +15 -13
  352. package/cjs/ChannelSettings/components/UserListItem.js.map +1 -1
  353. package/cjs/ChannelSettings/components/UserPanel.js +22 -20
  354. package/cjs/ChannelSettings/components/UserPanel.js.map +1 -1
  355. package/cjs/ChannelSettings/context.js +3 -3
  356. package/cjs/ChannelSettings.js +28 -25
  357. package/cjs/ChannelSettings.js.map +1 -1
  358. package/cjs/CreateChannel/components/CreateChannelUI.js +18 -16
  359. package/cjs/CreateChannel/components/CreateChannelUI.js.map +1 -1
  360. package/cjs/CreateChannel/components/InviteUsers.js +18 -16
  361. package/cjs/CreateChannel/components/InviteUsers.js.map +1 -1
  362. package/cjs/CreateChannel/components/SelectChannelType.js +10 -10
  363. package/cjs/CreateChannel/context.js +4 -4
  364. package/cjs/CreateChannel.js +18 -16
  365. package/cjs/CreateChannel.js.map +1 -1
  366. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
  367. package/cjs/CreateOpenChannel/context.js +1 -1
  368. package/cjs/CreateOpenChannel.js +11 -11
  369. package/cjs/EditUserProfile/components/EditUserProfileUI.js +12 -12
  370. package/cjs/EditUserProfile.js +12 -12
  371. package/cjs/GroupChannel/components/FileViewer.js +23 -23
  372. package/cjs/GroupChannel/components/FrozenNotification.js +5 -5
  373. package/cjs/GroupChannel/components/GroupChannelHeader.js +22 -22
  374. package/cjs/GroupChannel/components/GroupChannelUI.js +60 -58
  375. package/cjs/GroupChannel/components/GroupChannelUI.js.map +1 -1
  376. package/cjs/GroupChannel/components/Message.js +52 -50
  377. package/cjs/GroupChannel/components/Message.js.map +1 -1
  378. package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -37
  379. package/cjs/GroupChannel/components/MessageList.js +53 -51
  380. package/cjs/GroupChannel/components/MessageList.js.map +1 -1
  381. package/cjs/GroupChannel/components/RemoveMessageModal.js +22 -22
  382. package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
  383. package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
  384. package/cjs/GroupChannel/components/UnreadCount.js +7 -7
  385. package/cjs/GroupChannel/context.js +11 -11
  386. package/cjs/GroupChannel.js +60 -58
  387. package/cjs/GroupChannel.js.map +1 -1
  388. package/cjs/GroupChannelList/components/AddGroupChannel.js +20 -19
  389. package/cjs/GroupChannelList/components/AddGroupChannel.js.map +1 -1
  390. package/cjs/GroupChannelList/components/GroupChannelListHeader.js +8 -8
  391. package/cjs/GroupChannelList/components/GroupChannelListItem.js +24 -24
  392. package/cjs/GroupChannelList/components/GroupChannelListUI.js +34 -33
  393. package/cjs/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
  394. package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +13 -11
  395. package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js.map +1 -1
  396. package/cjs/GroupChannelList/context.js +5 -5
  397. package/cjs/GroupChannelList.js +34 -33
  398. package/cjs/GroupChannelList.js.map +1 -1
  399. package/cjs/MessageSearch/components/MessageSearchUI.js +14 -14
  400. package/cjs/MessageSearch/context.js +1 -1
  401. package/cjs/MessageSearch.js +14 -14
  402. package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
  403. package/cjs/OpenChannel/components/OpenChannelHeader.js +18 -18
  404. package/cjs/OpenChannel/components/OpenChannelInput.js +25 -25
  405. package/cjs/OpenChannel/components/OpenChannelMessage.js +37 -37
  406. package/cjs/OpenChannel/components/OpenChannelMessageList.js +39 -39
  407. package/cjs/OpenChannel/components/OpenChannelUI.js +39 -39
  408. package/cjs/OpenChannel/context.js +17 -17
  409. package/cjs/OpenChannel.js +41 -41
  410. package/cjs/OpenChannelList/components/OpenChannelListUI.js +14 -14
  411. package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
  412. package/cjs/OpenChannelList/context.js +3 -3
  413. package/cjs/OpenChannelList.js +14 -14
  414. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +15 -15
  415. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
  416. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +20 -19
  417. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
  418. package/cjs/OpenChannelSettings/components/OperatorUI.js +23 -30
  419. package/cjs/OpenChannelSettings/components/OperatorUI.js.map +1 -1
  420. package/cjs/OpenChannelSettings/components/ParticipantUI.js +19 -18
  421. package/cjs/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
  422. package/cjs/OpenChannelSettings/context.js +3 -3
  423. package/cjs/OpenChannelSettings.js +21 -20
  424. package/cjs/OpenChannelSettings.js.map +1 -1
  425. package/cjs/SendbirdProvider.js +30 -26
  426. package/cjs/SendbirdProvider.js.map +1 -1
  427. package/cjs/Thread/components/ParentMessageInfo.js +44 -43
  428. package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
  429. package/cjs/Thread/components/ParentMessageInfoItem.js +30 -29
  430. package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
  431. package/cjs/Thread/components/ThreadHeader.js +7 -7
  432. package/cjs/Thread/components/ThreadList.js +48 -47
  433. package/cjs/Thread/components/ThreadList.js.map +1 -1
  434. package/cjs/Thread/components/ThreadListItem.js +47 -46
  435. package/cjs/Thread/components/ThreadListItem.js.map +1 -1
  436. package/cjs/Thread/components/ThreadMessageInput.js +42 -42
  437. package/cjs/Thread/components/ThreadUI.js +57 -56
  438. package/cjs/Thread/components/ThreadUI.js.map +1 -1
  439. package/cjs/Thread/context.js +9 -9
  440. package/cjs/Thread.js +57 -56
  441. package/cjs/Thread.js.map +1 -1
  442. package/cjs/VoicePlayer/context.js +3 -3
  443. package/cjs/VoicePlayer/useVoicePlayer.js +10 -10
  444. package/cjs/VoiceRecorder/context.js +10 -10
  445. package/cjs/VoiceRecorder/useVoiceRecorder.js +9 -9
  446. package/cjs/chunks/{bundle-iodh4Ass.js → bundle--Ti8q5z8.js} +4 -4
  447. package/cjs/chunks/bundle--Ti8q5z8.js.map +1 -0
  448. package/cjs/chunks/{bundle-bQNGnE7X.js → bundle-3-9K7DVM.js} +6 -6
  449. package/cjs/chunks/bundle-3-9K7DVM.js.map +1 -0
  450. package/cjs/chunks/{bundle-c5UvSMFX.js → bundle-7Mbs7JEn.js} +3 -3
  451. package/cjs/chunks/bundle-7Mbs7JEn.js.map +1 -0
  452. package/cjs/chunks/{bundle-bRa1uu9u.js → bundle-B-wprLUV.js} +1 -1
  453. package/cjs/chunks/{bundle-bRa1uu9u.js.map → bundle-B-wprLUV.js.map} +1 -1
  454. package/cjs/chunks/{bundle-OwbPEgXa.js → bundle-B2QAlKH1.js} +4 -4
  455. package/cjs/chunks/{bundle-OwbPEgXa.js.map → bundle-B2QAlKH1.js.map} +1 -1
  456. package/cjs/chunks/{bundle-0_XeBL9s.js → bundle-BC16qA15.js} +1 -1
  457. package/cjs/chunks/bundle-BC16qA15.js.map +1 -0
  458. package/cjs/chunks/{bundle-2mYNn3cL.js → bundle-BEQWEQgH.js} +3 -3
  459. package/cjs/chunks/bundle-BEQWEQgH.js.map +1 -0
  460. package/cjs/chunks/{bundle-1MVKpHty.js → bundle-BO2p70mH.js} +1 -1
  461. package/cjs/chunks/bundle-BO2p70mH.js.map +1 -0
  462. package/cjs/chunks/{bundle-h5InIJAx.js → bundle-BQtI4UIy.js} +1 -1
  463. package/cjs/chunks/bundle-BQtI4UIy.js.map +1 -0
  464. package/cjs/chunks/{bundle-tzC2Xgxv.js → bundle-BTsTFHLV.js} +7 -7
  465. package/{chunks/bundle-sj91Fb-2.js.map → cjs/chunks/bundle-BTsTFHLV.js.map} +1 -1
  466. package/cjs/chunks/{bundle-ZAoex1pi.js → bundle-BYp2_-p_.js} +5 -5
  467. package/cjs/chunks/bundle-BYp2_-p_.js.map +1 -0
  468. package/cjs/chunks/{bundle-0hOdPCEp.js → bundle-B_CGu6U0.js} +5 -5
  469. package/cjs/chunks/{bundle-0hOdPCEp.js.map → bundle-B_CGu6U0.js.map} +1 -1
  470. package/cjs/chunks/{bundle-PApDK3ev.js → bundle-BbpNwwR8.js} +2 -2
  471. package/cjs/chunks/bundle-BbpNwwR8.js.map +1 -0
  472. package/cjs/chunks/{bundle-T32FV8l1.js → bundle-BcQPY3B6.js} +2 -2
  473. package/cjs/chunks/bundle-BcQPY3B6.js.map +1 -0
  474. package/cjs/chunks/{bundle-ybuXM4li.js → bundle-BcZEQhhq.js} +1 -1
  475. package/cjs/chunks/bundle-BcZEQhhq.js.map +1 -0
  476. package/cjs/chunks/{bundle-mJdmd7Tl.js → bundle-BfzgaLQx.js} +1 -1
  477. package/cjs/chunks/bundle-BfzgaLQx.js.map +1 -0
  478. package/cjs/chunks/{bundle-y7M4yzjp.js → bundle-BgCtP7V4.js} +3 -3
  479. package/cjs/chunks/bundle-BgCtP7V4.js.map +1 -0
  480. package/cjs/chunks/{bundle-lhYJWwkC.js → bundle-BkYT_Hch.js} +3 -3
  481. package/cjs/chunks/bundle-BkYT_Hch.js.map +1 -0
  482. package/cjs/chunks/{bundle-dCMQvAHA.js → bundle-Bln5Elhn.js} +1 -1
  483. package/cjs/chunks/bundle-Bln5Elhn.js.map +1 -0
  484. package/cjs/chunks/{bundle-S1c_Ni06.js → bundle-BodKdXyG.js} +14 -14
  485. package/cjs/chunks/{bundle-S1c_Ni06.js.map → bundle-BodKdXyG.js.map} +1 -1
  486. package/cjs/chunks/{bundle-xSEKQWBT.js → bundle-BruXgSj3.js} +1 -1
  487. package/cjs/chunks/bundle-BruXgSj3.js.map +1 -0
  488. package/cjs/chunks/{bundle-je5ERchd.js → bundle-BxER_OfA.js} +3 -3
  489. package/cjs/chunks/bundle-BxER_OfA.js.map +1 -0
  490. package/cjs/chunks/{bundle-FJ9M-8s9.js → bundle-C11HvpZq.js} +1 -1
  491. package/cjs/chunks/bundle-C11HvpZq.js.map +1 -0
  492. package/cjs/chunks/{bundle-vdxxxpUO.js → bundle-C2yYR5hZ.js} +10 -10
  493. package/cjs/chunks/{bundle-vdxxxpUO.js.map → bundle-C2yYR5hZ.js.map} +1 -1
  494. package/cjs/chunks/{bundle-RRn1KMai.js → bundle-C4s5Xn-0.js} +1 -1
  495. package/cjs/chunks/bundle-C4s5Xn-0.js.map +1 -0
  496. package/cjs/chunks/{bundle-NlYqioOJ.js → bundle-CD82WkIi.js} +1 -1
  497. package/cjs/chunks/bundle-CD82WkIi.js.map +1 -0
  498. package/cjs/chunks/{bundle-XYYAUvuI.js → bundle-CEMPv2S1.js} +1 -1
  499. package/cjs/chunks/bundle-CEMPv2S1.js.map +1 -0
  500. package/cjs/chunks/{bundle-70cVUU6w.js → bundle-CEN95Xmn.js} +1 -1
  501. package/cjs/chunks/bundle-CEN95Xmn.js.map +1 -0
  502. package/cjs/chunks/{bundle-7WTXh7Qd.js → bundle-CGBPEEGS.js} +1 -1
  503. package/cjs/chunks/{bundle-7WTXh7Qd.js.map → bundle-CGBPEEGS.js.map} +1 -1
  504. package/cjs/chunks/{bundle-IgDRR9an.js → bundle-CHI5iCph.js} +1 -1
  505. package/cjs/chunks/bundle-CHI5iCph.js.map +1 -0
  506. package/cjs/chunks/{bundle-jdpEXM9v.js → bundle-CHVN5sv2.js} +4 -4
  507. package/cjs/chunks/{bundle-jdpEXM9v.js.map → bundle-CHVN5sv2.js.map} +1 -1
  508. package/cjs/chunks/{bundle-rp1PaeP0.js → bundle-CJ87J3R1.js} +3 -3
  509. package/cjs/chunks/bundle-CJ87J3R1.js.map +1 -0
  510. package/cjs/chunks/{bundle-DQ9pUAGg.js → bundle-CTjNx2bJ.js} +1 -1
  511. package/cjs/chunks/bundle-CTjNx2bJ.js.map +1 -0
  512. package/cjs/chunks/{bundle-CH14mCu1.js → bundle-CWXfgOJy.js} +2 -2
  513. package/cjs/chunks/bundle-CWXfgOJy.js.map +1 -0
  514. package/cjs/chunks/{bundle-S7xHG-w3.js → bundle-CaUIrp6R.js} +1 -1
  515. package/cjs/chunks/bundle-CaUIrp6R.js.map +1 -0
  516. package/cjs/chunks/{bundle-4TLu25Dk.js → bundle-CfYRwgks.js} +1 -1
  517. package/cjs/chunks/bundle-CfYRwgks.js.map +1 -0
  518. package/cjs/chunks/{bundle-752po9g5.js → bundle-CjWn0S2s.js} +1 -1
  519. package/cjs/chunks/bundle-CjWn0S2s.js.map +1 -0
  520. package/cjs/chunks/{bundle-rEEpe9mU.js → bundle-CkG1F8lG.js} +2 -2
  521. package/cjs/chunks/bundle-CkG1F8lG.js.map +1 -0
  522. package/cjs/chunks/{bundle-0oACog1t.js → bundle-Cn_c8gj0.js} +8 -8
  523. package/cjs/chunks/{bundle-0oACog1t.js.map → bundle-Cn_c8gj0.js.map} +1 -1
  524. package/cjs/chunks/{bundle-opuYK5G6.js → bundle-CwGDa8mu.js} +1 -1
  525. package/cjs/chunks/bundle-CwGDa8mu.js.map +1 -0
  526. package/cjs/chunks/{bundle-rWYgBQd0.js → bundle-Cwr1hx-z.js} +11 -11
  527. package/cjs/chunks/{bundle-rWYgBQd0.js.map → bundle-Cwr1hx-z.js.map} +1 -1
  528. package/cjs/chunks/{bundle-cA3flg73.js → bundle-CxuGQxaT.js} +1 -1
  529. package/cjs/chunks/bundle-CxuGQxaT.js.map +1 -0
  530. package/cjs/chunks/{bundle-e2Z-oeMk.js → bundle-CyopFRXm.js} +1 -1
  531. package/cjs/chunks/{bundle-e2Z-oeMk.js.map → bundle-CyopFRXm.js.map} +1 -1
  532. package/cjs/chunks/{bundle-UEx-yk0R.js → bundle-D-izgOCe.js} +58 -90
  533. package/cjs/chunks/bundle-D-izgOCe.js.map +1 -0
  534. package/cjs/chunks/{bundle-jXFyjqn6.js → bundle-D1EDPlQX.js} +1 -1
  535. package/cjs/chunks/bundle-D1EDPlQX.js.map +1 -0
  536. package/cjs/chunks/{bundle-21xpspuo.js → bundle-D8ubAia5.js} +13 -13
  537. package/cjs/chunks/bundle-D8ubAia5.js.map +1 -0
  538. package/cjs/chunks/{bundle-ZC8MXTCs.js → bundle-D9rC4yPj.js} +1 -1
  539. package/cjs/chunks/bundle-D9rC4yPj.js.map +1 -0
  540. package/cjs/chunks/{bundle-Sp5ymcaB.js → bundle-DA7uhOAM.js} +1 -1
  541. package/cjs/chunks/bundle-DA7uhOAM.js.map +1 -0
  542. package/cjs/chunks/{bundle-CkuwMWuJ.js → bundle-DF3rT3ak.js} +4 -4
  543. package/cjs/chunks/bundle-DF3rT3ak.js.map +1 -0
  544. package/cjs/chunks/{bundle-tNBLsc90.js → bundle-DG1IpvjA.js} +10 -10
  545. package/cjs/chunks/bundle-DG1IpvjA.js.map +1 -0
  546. package/cjs/chunks/{bundle-4Dfxs0kD.js → bundle-DIvM3-on.js} +7 -7
  547. package/cjs/chunks/bundle-DIvM3-on.js.map +1 -0
  548. package/cjs/chunks/{bundle-XXLu4E3k.js → bundle-DLg-6Upp.js} +2 -2
  549. package/cjs/chunks/{bundle-XXLu4E3k.js.map → bundle-DLg-6Upp.js.map} +1 -1
  550. package/cjs/chunks/{bundle-gCywzCVk.js → bundle-DLgX_uIA.js} +5 -4
  551. package/cjs/chunks/{bundle-gCywzCVk.js.map → bundle-DLgX_uIA.js.map} +1 -1
  552. package/cjs/chunks/{bundle-46h-dSCc.js → bundle-DQM5RZ7p.js} +1 -1
  553. package/cjs/chunks/bundle-DQM5RZ7p.js.map +1 -0
  554. package/cjs/chunks/{bundle-Ve-UOjKy.js → bundle-DTcE7Dci.js} +5 -5
  555. package/cjs/chunks/bundle-DTcE7Dci.js.map +1 -0
  556. package/cjs/chunks/{bundle-0OVYmgjV.js → bundle-DWp3JSCd.js} +1 -1
  557. package/cjs/chunks/bundle-DWp3JSCd.js.map +1 -0
  558. package/cjs/chunks/{bundle-FZzNP2xh.js → bundle-D_4vATFJ.js} +1 -1
  559. package/cjs/chunks/bundle-D_4vATFJ.js.map +1 -0
  560. package/cjs/chunks/{bundle-l4hJRoVO.js → bundle-DgX9o5Mt.js} +1 -1
  561. package/cjs/chunks/bundle-DgX9o5Mt.js.map +1 -0
  562. package/cjs/chunks/{bundle-r6yUb5Ka.js → bundle-Dj0eVVGW.js} +10 -10
  563. package/cjs/chunks/bundle-Dj0eVVGW.js.map +1 -0
  564. package/cjs/chunks/{bundle-0tffesFh.js → bundle-Dj2Oa2F6.js} +1 -1
  565. package/cjs/chunks/{bundle-0tffesFh.js.map → bundle-Dj2Oa2F6.js.map} +1 -1
  566. package/cjs/chunks/{bundle-GRnWhj5U.js → bundle-DnF-KuhG.js} +2 -2
  567. package/cjs/chunks/bundle-DnF-KuhG.js.map +1 -0
  568. package/cjs/chunks/{bundle-_MpChSYj.js → bundle-Dp2kRPpd.js} +1 -1
  569. package/cjs/chunks/bundle-Dp2kRPpd.js.map +1 -0
  570. package/cjs/chunks/{bundle-leOuFK1P.js → bundle-DqysFYzQ.js} +2 -2
  571. package/cjs/chunks/bundle-DqysFYzQ.js.map +1 -0
  572. package/cjs/chunks/{bundle-ur6RZdPS.js → bundle-Drfn-tNj.js} +2 -2
  573. package/cjs/chunks/bundle-Drfn-tNj.js.map +1 -0
  574. package/cjs/chunks/{bundle-mcTI4BFk.js → bundle-DwpBeRp2.js} +6 -6
  575. package/cjs/chunks/bundle-DwpBeRp2.js.map +1 -0
  576. package/cjs/chunks/{bundle-BXHHHwCg.js → bundle-Dwy0Hf3u.js} +28 -58
  577. package/cjs/chunks/bundle-Dwy0Hf3u.js.map +1 -0
  578. package/cjs/chunks/{bundle-PP0rRODi.js → bundle-FLujzEX2.js} +10 -10
  579. package/cjs/chunks/bundle-FLujzEX2.js.map +1 -0
  580. package/cjs/chunks/{bundle-nLRPwYL5.js → bundle-JKeFsVQp.js} +1 -1
  581. package/cjs/chunks/bundle-JKeFsVQp.js.map +1 -0
  582. package/cjs/chunks/{bundle-pA5gKXTy.js → bundle-KR9lSala.js} +3 -3
  583. package/cjs/chunks/bundle-KR9lSala.js.map +1 -0
  584. package/cjs/chunks/{bundle-5dL9a_On.js → bundle-RH9DajrH.js} +2 -2
  585. package/cjs/chunks/bundle-RH9DajrH.js.map +1 -0
  586. package/cjs/chunks/{bundle-Af1jmrRE.js → bundle-UDIPXpOV.js} +1 -1
  587. package/cjs/chunks/bundle-UDIPXpOV.js.map +1 -0
  588. package/cjs/chunks/{bundle-AE4PYUbC.js → bundle-UJc1wb2l.js} +4 -4
  589. package/cjs/chunks/{bundle-AE4PYUbC.js.map → bundle-UJc1wb2l.js.map} +1 -1
  590. package/cjs/chunks/{bundle-NXKv5Wxp.js → bundle-Ud8W92re.js} +5 -5
  591. package/cjs/chunks/bundle-Ud8W92re.js.map +1 -0
  592. package/cjs/chunks/{bundle-cdInBvCf.js → bundle-VqK6Sgiy.js} +3 -3
  593. package/cjs/chunks/bundle-VqK6Sgiy.js.map +1 -0
  594. package/cjs/chunks/{bundle-VKfq6Uaj.js → bundle-WCt_Po-w.js} +3 -3
  595. package/cjs/chunks/{bundle-VKfq6Uaj.js.map → bundle-WCt_Po-w.js.map} +1 -1
  596. package/cjs/chunks/{bundle-boCcuPJ4.js → bundle-WZOflhxA.js} +2 -2
  597. package/cjs/chunks/{bundle-boCcuPJ4.js.map → bundle-WZOflhxA.js.map} +1 -1
  598. package/cjs/chunks/{bundle--xYl15TK.js → bundle-XCOUGtdD.js} +3 -3
  599. package/cjs/chunks/bundle-XCOUGtdD.js.map +1 -0
  600. package/cjs/chunks/{bundle-a2N3BU-Q.js → bundle-gSaGPkzz.js} +3 -3
  601. package/cjs/chunks/{bundle-a2N3BU-Q.js.map → bundle-gSaGPkzz.js.map} +1 -1
  602. package/cjs/chunks/{bundle-n5-vItXT.js → bundle-nu9oFcYy.js} +4 -4
  603. package/cjs/chunks/bundle-nu9oFcYy.js.map +1 -0
  604. package/cjs/chunks/{bundle-7ExxSDfG.js → bundle-qJ5-0bqN.js} +3 -3
  605. package/cjs/chunks/bundle-qJ5-0bqN.js.map +1 -0
  606. package/cjs/chunks/{bundle-dW6ZClWz.js → bundle-udIHWjxi.js} +1 -1
  607. package/cjs/chunks/bundle-udIHWjxi.js.map +1 -0
  608. package/cjs/chunks/{bundle-qna2pNgw.js → bundle-xaau8Z4q.js} +1 -1
  609. package/cjs/chunks/bundle-xaau8Z4q.js.map +1 -0
  610. package/cjs/hooks/useModal.js +9 -9
  611. package/cjs/index.js +81 -80
  612. package/cjs/index.js.map +1 -1
  613. package/cjs/pubSub/topics.js +1 -1
  614. package/cjs/sendbirdSelectors.js +2 -2
  615. package/cjs/ui/Accordion.js +3 -3
  616. package/cjs/ui/AccordionGroup.js +2 -2
  617. package/cjs/ui/AdminMessage.js +3 -3
  618. package/cjs/ui/Avatar.js +4 -4
  619. package/cjs/ui/Badge.js +5 -5
  620. package/cjs/ui/BottomSheet.js +9 -9
  621. package/cjs/ui/Button.js +3 -3
  622. package/cjs/ui/ChannelAvatar.js +5 -5
  623. package/cjs/ui/ConnectionStatus.js +6 -6
  624. package/cjs/ui/ContextMenu.js +84 -6
  625. package/cjs/ui/ContextMenu.js.map +1 -1
  626. package/cjs/ui/DateSeparator.js +4 -4
  627. package/cjs/ui/EmojiReactions.js +19 -17
  628. package/cjs/ui/EmojiReactions.js.map +1 -1
  629. package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
  630. package/cjs/ui/FileMessageItemBody.js +8 -8
  631. package/cjs/ui/FileViewer.js +15 -15
  632. package/cjs/ui/Icon.js +2 -2
  633. package/cjs/ui/IconButton.js +1 -1
  634. package/cjs/ui/ImageRenderer.js +2 -2
  635. package/cjs/ui/Input.js +3 -3
  636. package/cjs/ui/Label.js +3 -3
  637. package/cjs/ui/LinkLabel.js +3 -3
  638. package/cjs/ui/Loader.js +2 -2
  639. package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
  640. package/cjs/ui/MentionLabel.js +15 -13
  641. package/cjs/ui/MentionLabel.js.map +1 -1
  642. package/cjs/ui/MentionUserLabel.js +1 -1
  643. package/cjs/ui/MessageContent.js +37 -35
  644. package/cjs/ui/MessageContent.js.map +1 -1
  645. package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
  646. package/cjs/ui/MessageInput.js +15 -15
  647. package/cjs/ui/MessageItemMenu.js +12 -10
  648. package/cjs/ui/MessageItemMenu.js.map +1 -1
  649. package/cjs/ui/MessageItemReactionMenu.js +11 -9
  650. package/cjs/ui/MessageItemReactionMenu.js.map +1 -1
  651. package/cjs/ui/MessageSearchFileItem.js +14 -14
  652. package/cjs/ui/MessageSearchItem.js +11 -11
  653. package/cjs/ui/MessageStatus.js +12 -12
  654. package/cjs/ui/MessageTemplate.js +1 -1
  655. package/cjs/ui/MobileFeedbackMenu.js +9 -9
  656. package/cjs/ui/Modal.js +8 -8
  657. package/cjs/ui/MutedAvatarOverlay.js +2 -2
  658. package/cjs/ui/OGMessageItemBody.js +18 -16
  659. package/cjs/ui/OGMessageItemBody.js.map +1 -1
  660. package/cjs/ui/OpenChannelAdminMessage.js +3 -3
  661. package/cjs/ui/OpenChannelAvatar.js +8 -8
  662. package/cjs/ui/OpenchannelConversationHeader.js +8 -8
  663. package/cjs/ui/OpenchannelFileMessage.js +20 -18
  664. package/cjs/ui/OpenchannelFileMessage.js.map +1 -1
  665. package/cjs/ui/OpenchannelOGMessage.js +22 -20
  666. package/cjs/ui/OpenchannelOGMessage.js.map +1 -1
  667. package/cjs/ui/OpenchannelThumbnailMessage.js +19 -17
  668. package/cjs/ui/OpenchannelThumbnailMessage.js.map +1 -1
  669. package/cjs/ui/OpenchannelUserMessage.js +20 -18
  670. package/cjs/ui/OpenchannelUserMessage.js.map +1 -1
  671. package/cjs/ui/PlaceHolder.js +6 -6
  672. package/cjs/ui/PlaybackTime.js +3 -3
  673. package/cjs/ui/QuoteMessage.js +9 -9
  674. package/cjs/ui/QuoteMessageInput.js +9 -9
  675. package/cjs/ui/ReactionBadge.js +3 -3
  676. package/cjs/ui/ReactionButton.js +4 -4
  677. package/cjs/ui/SortByRow.js +2 -2
  678. package/cjs/ui/TemplateMessageItemBody.js +9 -9
  679. package/cjs/ui/TextButton.js +2 -2
  680. package/cjs/ui/TextMessageItemBody.js +18 -16
  681. package/cjs/ui/TextMessageItemBody.js.map +1 -1
  682. package/cjs/ui/ThreadReplies.js +8 -8
  683. package/cjs/ui/ThumbnailMessageItemBody.js +7 -7
  684. package/cjs/ui/Toggle.js +1 -1
  685. package/cjs/ui/Tooltip.js +3 -3
  686. package/cjs/ui/TooltipWrapper.js +1 -1
  687. package/cjs/ui/TypingIndicatorBubble.js +4 -4
  688. package/cjs/ui/UnknownMessageItemBody.js +7 -7
  689. package/cjs/ui/UserListItem.js +18 -15
  690. package/cjs/ui/UserListItem.js.map +1 -1
  691. package/cjs/ui/UserProfile.js +10 -10
  692. package/cjs/ui/VoiceMessageInput.js +9 -9
  693. package/cjs/ui/VoiceMessageItemBody.js +10 -10
  694. package/cjs/ui/Word.js +15 -13
  695. package/cjs/ui/Word.js.map +1 -1
  696. package/cjs/useSendbirdStateContext.js +1 -1
  697. package/cjs/utils/message/isVoiceMessage.js +3 -3
  698. package/cjs/withSendbird.js +1 -1
  699. package/dist/index.css +0 -5
  700. package/dist/index.css.map +1 -1
  701. package/hooks/useModal.js +10 -10
  702. package/index.js +81 -80
  703. package/index.js.map +1 -1
  704. package/package.json +10 -1
  705. package/pubSub/topics.js +1 -1
  706. package/sendbirdSelectors.js +2 -2
  707. package/types/lib/hooks/useConnect/connect.d.ts +1 -1
  708. package/types/lib/hooks/useConnect/setupConnection.d.ts +3 -2
  709. package/types/lib/hooks/useConnect/types.d.ts +1 -0
  710. package/types/modules/ChannelSettings/components/ChannelSettingsUI/ChannelSettingsHeader.d.ts +5 -0
  711. package/types/modules/ChannelSettings/components/ChannelSettingsUI/index.d.ts +2 -0
  712. package/types/ui/ContextMenu/index.d.ts +3 -1
  713. package/types/ui/ContextMenu/items/MuteMenuItem.d.ts +15 -0
  714. package/types/ui/ContextMenu/items/OperatorMenuItem.d.ts +15 -0
  715. package/types/ui/Modal/index.d.ts +3 -2
  716. package/types/ui/UserListItem/index.d.ts +3 -1
  717. package/ui/Accordion.js +3 -3
  718. package/ui/AccordionGroup.js +2 -2
  719. package/ui/AdminMessage.js +3 -3
  720. package/ui/Avatar.js +4 -4
  721. package/ui/Badge.js +5 -5
  722. package/ui/BottomSheet.js +9 -9
  723. package/ui/Button.js +3 -3
  724. package/ui/ChannelAvatar.js +5 -5
  725. package/ui/ConnectionStatus.js +6 -6
  726. package/ui/ContextMenu.js +84 -8
  727. package/ui/ContextMenu.js.map +1 -1
  728. package/ui/DateSeparator.js +4 -4
  729. package/ui/EmojiReactions.js +19 -17
  730. package/ui/EmojiReactions.js.map +1 -1
  731. package/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
  732. package/ui/FileMessageItemBody.js +8 -8
  733. package/ui/FileViewer.js +15 -15
  734. package/ui/Icon.js +2 -2
  735. package/ui/IconButton.js +1 -1
  736. package/ui/ImageRenderer.js +2 -2
  737. package/ui/Input.js +3 -3
  738. package/ui/Label.js +3 -3
  739. package/ui/LinkLabel.js +3 -3
  740. package/ui/Loader.js +2 -2
  741. package/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
  742. package/ui/MentionLabel.js +15 -13
  743. package/ui/MentionLabel.js.map +1 -1
  744. package/ui/MentionUserLabel.js +1 -1
  745. package/ui/MessageContent.js +37 -35
  746. package/ui/MessageContent.js.map +1 -1
  747. package/ui/MessageInput/hooks/usePaste.js +7 -7
  748. package/ui/MessageInput.js +15 -15
  749. package/ui/MessageItemMenu.js +12 -10
  750. package/ui/MessageItemMenu.js.map +1 -1
  751. package/ui/MessageItemReactionMenu.js +11 -9
  752. package/ui/MessageItemReactionMenu.js.map +1 -1
  753. package/ui/MessageSearchFileItem.js +14 -14
  754. package/ui/MessageSearchItem.js +11 -11
  755. package/ui/MessageStatus.js +12 -12
  756. package/ui/MessageTemplate.js +1 -1
  757. package/ui/MobileFeedbackMenu.js +9 -9
  758. package/ui/Modal.js +8 -8
  759. package/ui/MutedAvatarOverlay.js +2 -2
  760. package/ui/OGMessageItemBody.js +18 -16
  761. package/ui/OGMessageItemBody.js.map +1 -1
  762. package/ui/OpenChannelAdminMessage.js +3 -3
  763. package/ui/OpenChannelAvatar.js +8 -8
  764. package/ui/OpenchannelConversationHeader.js +8 -8
  765. package/ui/OpenchannelFileMessage.js +20 -18
  766. package/ui/OpenchannelFileMessage.js.map +1 -1
  767. package/ui/OpenchannelOGMessage.js +22 -20
  768. package/ui/OpenchannelOGMessage.js.map +1 -1
  769. package/ui/OpenchannelThumbnailMessage.js +19 -17
  770. package/ui/OpenchannelThumbnailMessage.js.map +1 -1
  771. package/ui/OpenchannelUserMessage.js +20 -18
  772. package/ui/OpenchannelUserMessage.js.map +1 -1
  773. package/ui/PlaceHolder.js +6 -6
  774. package/ui/PlaybackTime.js +3 -3
  775. package/ui/QuoteMessage.js +9 -9
  776. package/ui/QuoteMessageInput.js +9 -9
  777. package/ui/ReactionBadge.js +3 -3
  778. package/ui/ReactionButton.js +4 -4
  779. package/ui/SortByRow.js +2 -2
  780. package/ui/TemplateMessageItemBody.js +9 -9
  781. package/ui/TextButton.js +2 -2
  782. package/ui/TextMessageItemBody.js +18 -16
  783. package/ui/TextMessageItemBody.js.map +1 -1
  784. package/ui/ThreadReplies.js +8 -8
  785. package/ui/ThumbnailMessageItemBody.js +7 -7
  786. package/ui/Toggle.js +1 -1
  787. package/ui/Tooltip.js +3 -3
  788. package/ui/TooltipWrapper.js +1 -1
  789. package/ui/TypingIndicatorBubble.js +4 -4
  790. package/ui/UnknownMessageItemBody.js +7 -7
  791. package/ui/UserListItem.js +18 -15
  792. package/ui/UserListItem.js.map +1 -1
  793. package/ui/UserProfile.js +10 -10
  794. package/ui/VoiceMessageInput.js +9 -9
  795. package/ui/VoiceMessageItemBody.js +10 -10
  796. package/ui/Word.js +15 -13
  797. package/ui/Word.js.map +1 -1
  798. package/useSendbirdStateContext.js +1 -1
  799. package/utils/message/isVoiceMessage.js +3 -3
  800. package/withSendbird.js +1 -1
  801. package/chunks/bundle--Lhu0g1K.js.map +0 -1
  802. package/chunks/bundle--bY8mmDR.js.map +0 -1
  803. package/chunks/bundle-1YZ1lMFm.js.map +0 -1
  804. package/chunks/bundle-1gwAtv3_.js.map +0 -1
  805. package/chunks/bundle-26v6WTQh.js.map +0 -1
  806. package/chunks/bundle-3te2klPE.js.map +0 -1
  807. package/chunks/bundle-4OgQJ7X4.js.map +0 -1
  808. package/chunks/bundle-4PIMbALe.js.map +0 -1
  809. package/chunks/bundle-726H1FcN.js.map +0 -1
  810. package/chunks/bundle-7DsbNj8s.js.map +0 -1
  811. package/chunks/bundle-9DSYjtTH.js.map +0 -1
  812. package/chunks/bundle-9N8rxcU_.js.map +0 -1
  813. package/chunks/bundle-9eXfVBSj.js.map +0 -1
  814. package/chunks/bundle-A92jjX29.js.map +0 -1
  815. package/chunks/bundle-Bq8FTiM8.js.map +0 -1
  816. package/chunks/bundle-CChs9z4I.js.map +0 -1
  817. package/chunks/bundle-I3SOpmVR.js.map +0 -1
  818. package/chunks/bundle-Ij2ogskR.js.map +0 -1
  819. package/chunks/bundle-LN_WdItn.js.map +0 -1
  820. package/chunks/bundle-M-mPRQVf.js.map +0 -1
  821. package/chunks/bundle-N-PDD2Cl.js.map +0 -1
  822. package/chunks/bundle-NKz1R5aS.js.map +0 -1
  823. package/chunks/bundle-ORNtuGAK.js.map +0 -1
  824. package/chunks/bundle-OaODZhZ_.js.map +0 -1
  825. package/chunks/bundle-Q0DCPBLF.js.map +0 -1
  826. package/chunks/bundle-QzQ0Z1lc.js.map +0 -1
  827. package/chunks/bundle-SQ9QacmP.js.map +0 -1
  828. package/chunks/bundle-V0xbpJPV.js.map +0 -1
  829. package/chunks/bundle-YTNRflOw.js.map +0 -1
  830. package/chunks/bundle-Yfu3khe4.js.map +0 -1
  831. package/chunks/bundle-ZA3vOSBy.js.map +0 -1
  832. package/chunks/bundle-ZxknBRho.js.map +0 -1
  833. package/chunks/bundle-_g4Ln2k-.js.map +0 -1
  834. package/chunks/bundle-a81-P2WI.js.map +0 -1
  835. package/chunks/bundle-b3nJcKrD.js.map +0 -1
  836. package/chunks/bundle-f5U_VL0z.js.map +0 -1
  837. package/chunks/bundle-fGp6w98-.js.map +0 -1
  838. package/chunks/bundle-jH1LTiaZ.js.map +0 -1
  839. package/chunks/bundle-kRkORTjK.js.map +0 -1
  840. package/chunks/bundle-lQUghzL6.js.map +0 -1
  841. package/chunks/bundle-lYHZR3jb.js.map +0 -1
  842. package/chunks/bundle-ni6pTUHE.js.map +0 -1
  843. package/chunks/bundle-o8w1wTMw.js.map +0 -1
  844. package/chunks/bundle-pYQxFvty.js.map +0 -1
  845. package/chunks/bundle-qGz9DwGC.js.map +0 -1
  846. package/chunks/bundle-qp8qrwgO.js.map +0 -1
  847. package/chunks/bundle-rYMayCT3.js.map +0 -1
  848. package/chunks/bundle-t_Zp4HcK.js.map +0 -1
  849. package/chunks/bundle-ueZaur75.js.map +0 -1
  850. package/chunks/bundle-v0F6T-gl.js.map +0 -1
  851. package/chunks/bundle-vqMWfuob.js.map +0 -1
  852. package/chunks/bundle-xJvVI8rO.js.map +0 -1
  853. package/chunks/bundle-yVnIU7yv.js.map +0 -1
  854. package/cjs/chunks/bundle--xYl15TK.js.map +0 -1
  855. package/cjs/chunks/bundle-0OVYmgjV.js.map +0 -1
  856. package/cjs/chunks/bundle-0_XeBL9s.js.map +0 -1
  857. package/cjs/chunks/bundle-1MVKpHty.js.map +0 -1
  858. package/cjs/chunks/bundle-21xpspuo.js.map +0 -1
  859. package/cjs/chunks/bundle-2mYNn3cL.js.map +0 -1
  860. package/cjs/chunks/bundle-46h-dSCc.js.map +0 -1
  861. package/cjs/chunks/bundle-4Dfxs0kD.js.map +0 -1
  862. package/cjs/chunks/bundle-4TLu25Dk.js.map +0 -1
  863. package/cjs/chunks/bundle-5dL9a_On.js.map +0 -1
  864. package/cjs/chunks/bundle-70cVUU6w.js.map +0 -1
  865. package/cjs/chunks/bundle-752po9g5.js.map +0 -1
  866. package/cjs/chunks/bundle-7ExxSDfG.js.map +0 -1
  867. package/cjs/chunks/bundle-Af1jmrRE.js.map +0 -1
  868. package/cjs/chunks/bundle-BXHHHwCg.js.map +0 -1
  869. package/cjs/chunks/bundle-CH14mCu1.js.map +0 -1
  870. package/cjs/chunks/bundle-CkuwMWuJ.js.map +0 -1
  871. package/cjs/chunks/bundle-DQ9pUAGg.js.map +0 -1
  872. package/cjs/chunks/bundle-FJ9M-8s9.js.map +0 -1
  873. package/cjs/chunks/bundle-FZzNP2xh.js.map +0 -1
  874. package/cjs/chunks/bundle-GRnWhj5U.js.map +0 -1
  875. package/cjs/chunks/bundle-IgDRR9an.js.map +0 -1
  876. package/cjs/chunks/bundle-NXKv5Wxp.js.map +0 -1
  877. package/cjs/chunks/bundle-NlYqioOJ.js.map +0 -1
  878. package/cjs/chunks/bundle-PApDK3ev.js.map +0 -1
  879. package/cjs/chunks/bundle-PP0rRODi.js.map +0 -1
  880. package/cjs/chunks/bundle-RRn1KMai.js.map +0 -1
  881. package/cjs/chunks/bundle-S7xHG-w3.js.map +0 -1
  882. package/cjs/chunks/bundle-Sp5ymcaB.js.map +0 -1
  883. package/cjs/chunks/bundle-T32FV8l1.js.map +0 -1
  884. package/cjs/chunks/bundle-UEx-yk0R.js.map +0 -1
  885. package/cjs/chunks/bundle-Ve-UOjKy.js.map +0 -1
  886. package/cjs/chunks/bundle-XYYAUvuI.js.map +0 -1
  887. package/cjs/chunks/bundle-ZAoex1pi.js.map +0 -1
  888. package/cjs/chunks/bundle-ZC8MXTCs.js.map +0 -1
  889. package/cjs/chunks/bundle-_MpChSYj.js.map +0 -1
  890. package/cjs/chunks/bundle-bQNGnE7X.js.map +0 -1
  891. package/cjs/chunks/bundle-c5UvSMFX.js.map +0 -1
  892. package/cjs/chunks/bundle-cA3flg73.js.map +0 -1
  893. package/cjs/chunks/bundle-cdInBvCf.js.map +0 -1
  894. package/cjs/chunks/bundle-dCMQvAHA.js.map +0 -1
  895. package/cjs/chunks/bundle-dW6ZClWz.js.map +0 -1
  896. package/cjs/chunks/bundle-h5InIJAx.js.map +0 -1
  897. package/cjs/chunks/bundle-iodh4Ass.js.map +0 -1
  898. package/cjs/chunks/bundle-jXFyjqn6.js.map +0 -1
  899. package/cjs/chunks/bundle-je5ERchd.js.map +0 -1
  900. package/cjs/chunks/bundle-l4hJRoVO.js.map +0 -1
  901. package/cjs/chunks/bundle-leOuFK1P.js.map +0 -1
  902. package/cjs/chunks/bundle-lhYJWwkC.js.map +0 -1
  903. package/cjs/chunks/bundle-mJdmd7Tl.js.map +0 -1
  904. package/cjs/chunks/bundle-mcTI4BFk.js.map +0 -1
  905. package/cjs/chunks/bundle-n5-vItXT.js.map +0 -1
  906. package/cjs/chunks/bundle-nLRPwYL5.js.map +0 -1
  907. package/cjs/chunks/bundle-opuYK5G6.js.map +0 -1
  908. package/cjs/chunks/bundle-pA5gKXTy.js.map +0 -1
  909. package/cjs/chunks/bundle-qna2pNgw.js.map +0 -1
  910. package/cjs/chunks/bundle-r6yUb5Ka.js.map +0 -1
  911. package/cjs/chunks/bundle-rEEpe9mU.js.map +0 -1
  912. package/cjs/chunks/bundle-rp1PaeP0.js.map +0 -1
  913. package/cjs/chunks/bundle-tNBLsc90.js.map +0 -1
  914. package/cjs/chunks/bundle-tzC2Xgxv.js.map +0 -1
  915. package/cjs/chunks/bundle-ur6RZdPS.js.map +0 -1
  916. package/cjs/chunks/bundle-xSEKQWBT.js.map +0 -1
  917. package/cjs/chunks/bundle-y7M4yzjp.js.map +0 -1
  918. package/cjs/chunks/bundle-ybuXM4li.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-G8aQ8ldg.js","sources":["../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../node_modules/@sendbird/uikit-message-template/dist/core/parser.js","../../node_modules/@sendbird/uikit-message-template/dist/core/renderer.js","../../node_modules/@sendbird/uikit-message-template/dist/context/SizeProvider.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/templateItemId.js","../../node_modules/@sendbird/uikit-message-template/dist/types/styles.js","../../node_modules/@sendbird/uikit-message-template/dist/core/defaultValues.js","../../node_modules/@sendbird/uikit-message-template/dist/core/messageTemplate.js","../../node_modules/@sendbird/uikit-message-template/dist/types/properties.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/index.js","../../node_modules/@sendbird/uikit-message-template/dist/test/data.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.canvas.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.img.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.placeholder.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/usePreservedCallback.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRefEffect.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useResizeObserver.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useElementSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRecalculationSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/index.js"],"sourcesContent":["export var ComponentType;\n(function (ComponentType) {\n ComponentType[\"Box\"] = \"box\";\n ComponentType[\"Text\"] = \"text\";\n ComponentType[\"Image\"] = \"image\";\n ComponentType[\"TextButton\"] = \"textButton\";\n ComponentType[\"ImageButton\"] = \"imageButton\";\n})(ComponentType || (ComponentType = {}));\n","// -------- Set property mapper\nimport { ComponentType } from '../types/components';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n const defaultMapper = (params === null || params === void 0 ? void 0 : params.defaultMapper) || MAPPER;\n const mapper = {\n defaultMapper,\n mapBoxProps: (params === null || params === void 0 ? void 0 : params.mapBoxProps) || defaultMapper,\n mapTextProps: (params === null || params === void 0 ? void 0 : params.mapTextProps) || defaultMapper,\n mapImageProps: (params === null || params === void 0 ? void 0 : params.mapImageProps) || defaultMapper,\n mapTextButtonProps: (params === null || params === void 0 ? void 0 : params.mapTextButtonProps) || defaultMapper,\n mapImageButtonProps: (params === null || params === void 0 ? void 0 : params.mapImageButtonProps) || defaultMapper,\n };\n return {\n parse(item, options) {\n switch (item.type) {\n case ComponentType.Box: {\n return { properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { properties: mapper.mapImageButtonProps(item, options) };\n }\n default:\n return { properties: undefined };\n }\n },\n };\n};\nexport const DEFAULT_PARSER_VALUES = {\n light: { _: undefined },\n dark: { _: undefined },\n};\n","import React from 'react';\nconst FRAGMENT = ({ children }) => React.createElement(React.Fragment, null, children);\nexport function createRenderer(params) {\n var _a, _b, _c, _d, _e;\n return {\n box: ((_a = params === null || params === void 0 ? void 0 : params.views) === null || _a === void 0 ? void 0 : _a.box) || FRAGMENT,\n text: ((_b = params === null || params === void 0 ? void 0 : params.views) === null || _b === void 0 ? void 0 : _b.text) || FRAGMENT,\n image: ((_c = params === null || params === void 0 ? void 0 : params.views) === null || _c === void 0 ? void 0 : _c.image) || FRAGMENT,\n imageButton: ((_d = params === null || params === void 0 ? void 0 : params.views) === null || _d === void 0 ? void 0 : _d.imageButton) || FRAGMENT,\n textButton: ((_e = params === null || params === void 0 ? void 0 : params.views) === null || _e === void 0 ? void 0 : _e.textButton) || FRAGMENT,\n };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { createContext, useCallback, useContext, useState } from 'react';\nconst SizeContext = createContext({\n sizes: {},\n updateSize: () => { },\n});\nconst SizeContextProvider = ({ children }) => {\n const [sizes, setSizes] = useState({});\n const updateSize = useCallback((_a) => {\n var { id } = _a, rest = __rest(_a, [\"id\"]);\n if (id) {\n setSizes((prevSizes) => (Object.assign(Object.assign({}, prevSizes), { [id]: rest })));\n }\n }, []);\n return React.createElement(SizeContext.Provider, { value: { sizes, updateSize } }, children);\n};\nconst useSizeContext = () => useContext(SizeContext);\nexport { SizeContextProvider, useSizeContext };\n","const memoize = (fn) => {\n const cache = new Map();\n const cached = function (val) {\n return cache.has(val) ? cache.get(val) : cache.set(val, fn.call(this, val)) && cache.get(val);\n };\n cached.cache = cache;\n return cached;\n};\n/**\n * Generate each item's id by each item's array depth\n */\nexport const setTemplateItemId = memoize((data) => {\n const addIdRecursively = (item, id) => {\n if ('items' in item && (item === null || item === void 0 ? void 0 : item.items) != null) {\n item.items.forEach((subItem, subIdx) => {\n const subId = `${id}-${subIdx}`;\n subItem.id = subId;\n addIdRecursively(subItem, subId);\n });\n }\n };\n data.forEach((item, idx) => {\n const id = `${idx}`;\n item.id = id;\n addIdRecursively(item, id);\n });\n return data;\n});\n","export var Layout;\n(function (Layout) {\n Layout[\"Row\"] = \"row\";\n Layout[\"Column\"] = \"column\";\n})(Layout || (Layout = {}));\nexport var AlignValue;\n(function (AlignValue) {\n AlignValue[\"Center\"] = \"center\";\n AlignValue[\"Left\"] = \"left\";\n AlignValue[\"Right\"] = \"right\";\n AlignValue[\"Top\"] = \"top\";\n AlignValue[\"Bottom\"] = \"bottom\";\n})(AlignValue || (AlignValue = {}));\n/**\n * @description\n * Caution: Numbers are passed as string types in the message template builder.\n * Use `==` comparison instead of `===` comparison when using a regular enum instead of a string enum.\n */\nexport var FlexSizeSpecValue;\n(function (FlexSizeSpecValue) {\n FlexSizeSpecValue[FlexSizeSpecValue[\"FillParent\"] = 0] = \"FillParent\";\n FlexSizeSpecValue[FlexSizeSpecValue[\"WrapContent\"] = 1] = \"WrapContent\";\n})(FlexSizeSpecValue || (FlexSizeSpecValue = {}));\nexport var FontWeight;\n(function (FontWeight) {\n FontWeight[\"Normal\"] = \"normal\";\n FontWeight[\"Bold\"] = \"bold\";\n})(FontWeight || (FontWeight = {}));\nexport var MediaContentMode;\n(function (MediaContentMode) {\n MediaContentMode[\"AspectFit\"] = \"aspectFit\";\n MediaContentMode[\"AspectFill\"] = \"aspectFill\";\n MediaContentMode[\"ScalesToFill\"] = \"scalesToFill\";\n})(MediaContentMode || (MediaContentMode = {}));\n","import { AlignValue, FlexSizeSpecValue, Layout } from '../types/styles';\nexport const defaultProperties = {\n rootLayout: Layout.Column,\n view: {\n size: {\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n },\n },\n box: {\n layout: Layout.Row,\n align: { vertical: AlignValue.Top, horizontal: AlignValue.Left },\n },\n};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { setTemplateItemId } from '../utils/templateItemId';\nimport { defaultProperties } from './defaultValues';\nimport { createParser } from './parser';\nimport { createRenderer } from './renderer';\nexport const createMessageTemplate = (opts) => {\n const Container = opts.Container || React.Fragment;\n const UnknownMessage = opts.UnknownMessage || (() => null);\n const parser = opts.parser || createParser();\n const renderer = opts.renderer || createRenderer();\n const MessageTemplateBase = (props) => {\n var _a;\n const renderItems = props.templateItems;\n const parentLayout = (_a = props.parentLayout) !== null && _a !== void 0 ? _a : defaultProperties.box.layout;\n return (React.createElement(React.Fragment, null, renderItems.map((item, index, siblings) => {\n const { properties } = parser.parse(item, { parentLayout, elemIdx: index, siblings });\n const props = {\n key: index,\n parentLayout,\n parsedProperties: properties,\n siblings,\n };\n switch (item.type) {\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, props),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, props));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, props));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, props));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, props));\n }\n default: {\n // or throw new Error('Cannot parse template item')\n return React.createElement(UnknownMessage, { item: item });\n }\n }\n })));\n };\n return {\n MessageTemplate: ({ parentLayout = defaultProperties.rootLayout, templateItems }) => {\n const items = setTemplateItemId(templateItems);\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, null,\n React.createElement(MessageTemplateBase, { parentLayout: parentLayout, templateItems: items }))));\n },\n MessageTemplateBase,\n };\n};\n","export var ActionType;\n(function (ActionType) {\n ActionType[\"Web\"] = \"web\";\n ActionType[\"Custom\"] = \"custom\";\n ActionType[\"UIKit\"] = \"uikit\";\n})(ActionType || (ActionType = {}));\n","import { AlignValue } from '../types/styles';\nexport const alignInFlex = (align) => {\n switch (align) {\n case AlignValue.Right:\n case AlignValue.Bottom:\n return 'flex-end';\n case AlignValue.Center:\n return 'center';\n case AlignValue.Left:\n case AlignValue.Top:\n default:\n return 'flex-start';\n }\n};\n","import { ComponentType } from '../types/components';\nimport { ActionType } from '../types/properties';\nimport { AlignValue, FlexSizeSpecValue, FontWeight, Layout, MediaContentMode } from '../types/styles';\nconst sample_1 = {\n version: 1,\n body: {\n items: [\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n height: { type: 'fixed', value: 236 },\n viewStyle: {\n padding: {\n left: 4,\n right: 4,\n top: 4,\n bottom: 4,\n },\n },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 200 },\n items: [\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#fa6464' },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n viewStyle: { backgroundColor: '#ffaf5c' },\n items: [\n {\n type: ComponentType.Text,\n text: 'Message',\n align: { horizontal: AlignValue.Center, vertical: AlignValue.Center },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n ],\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 20 },\n viewStyle: { backgroundColor: '#ffe450' },\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#329a1b' },\n },\n ],\n },\n {\n type: ComponentType.Box,\n viewStyle: { padding: { top: 12, bottom: 12, left: 12, right: 12 } },\n layout: Layout.Column,\n items: [\n {\n type: ComponentType.Box,\n align: { horizontal: AlignValue.Left, vertical: AlignValue.Center },\n layout: Layout.Row,\n viewStyle: {\n borderWidth: 1,\n borderColor: '#72723f',\n },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 150 },\n items: [\n {\n type: ComponentType.Text,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n text: 'Sample1 text',\n maxTextLines: 1,\n align: { vertical: AlignValue.Center, horizontal: AlignValue.Left },\n viewStyle: {\n backgroundColor: '#cc4400',\n },\n textStyle: {\n size: 16,\n color: '#f8f8f8',\n weight: FontWeight.Bold,\n },\n },\n {\n type: ComponentType.ImageButton,\n action: { type: ActionType.UIKit, data: 'uikit://delete' },\n width: { type: 'fixed', value: 20 },\n height: { type: 'fixed', value: 20 },\n imageUrl: 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n imageStyle: { contentMode: MediaContentMode.AspectFit },\n },\n ],\n },\n {\n type: ComponentType.Text,\n viewStyle: { padding: { top: 6, bottom: 12, left: 0, right: 0 } },\n text: 'Esse eu esse duis ipsum et dolor eu ut sit amet consectetur cillum velit officia. Ex adipisicing elit quis ea sit. Occaecat in eu aliqua nulla magna id ut excepteur minim.',\n maxTextLines: 2,\n textStyle: { size: 14, color: '#e10000' },\n width: { type: 'fixed', value: 200 },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.TextButton,\n action: { type: ActionType.Web, data: 'https://www.daum.net' },\n text: 'Button 3',\n textStyle: { size: 14, color: '#742ddd', weight: FontWeight.Bold },\n },\n ],\n },\n ],\n },\n};\nconst sample_2 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Image,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.naver.com/' },\n 'height': { 'type': 'fixed', 'value': 136 },\n 'imageUrl': 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 }, backgroundColor: '#cccccc' },\n 'layout': Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'items': [\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'fixed', value: 150 },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 } },\n 'text': 'Button 2',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 } },\n 'text': 'Button 3',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Sample2 text',\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': { 'type': ActionType.UIKit, 'data': 'uikit://delete' },\n 'width': { 'type': 'fixed', 'value': 20 },\n 'height': { 'type': 'fixed', 'value': 20 },\n 'imageUrl': 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFit },\n },\n ],\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'padding': { 'top': 6, 'bottom': 12, 'left': 0, 'right': 0 } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'size': 14 },\n },\n ],\n },\n ],\n },\n};\nconst sample_3 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'backgroundColor': '#ffffff', 'borderWidth': 1, 'borderColor': '#eeeeee', 'radius': 16 },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'height': { 'type': 'fixed', 'value': 200 },\n 'imageUrl': 'https://img.freepik.com/free-vector/cartoon-happy-hours-background_52683-81243.jpg?w=2000&t=st=1666689198~exp=1666689798~hmac=23109d44ba03deee7aee069cbeebfcb48fa27f85e53c1cafc5d5d7345f1a2041',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 15, 'bottom': 15, 'left': 15, 'right': 15 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': \"Don't miss these deals today\",\n 'maxTextLines': 1,\n 'textStyle': { 'size': 20, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 5, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': 'Pay with Maya and get cashback!',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 14, 'color': '#e10000' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://yt3.ggpht.com/ytc/AMLnZu8Kg89ymE7qt5bsS9vMqi9h2aHiN6m9ID-IgxR6-Q=s900-c-k-c0x00ffffff-no-rj',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Meralco',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://1000logos.net/wp-content/uploads/2021/12/Globe-Telecom-logo.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill, tintColor: '#a49a9a' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Globe',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Cignal.svg/640px-Cignal.svg.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Cignal',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e0e0e0',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Learn more',\n 'textStyle': { 'size': 15, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e10000',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Pay now',\n 'textStyle': { 'size': 15, 'color': '#ffffff', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_4 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://static.sendbird.com/sample/profiles/profile_40_512px.png',\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'imageStyle': {\n 'tintColor': '#44ff1188',\n },\n viewStyle: {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'hi',\n 'maxTextLines': 3,\n 'viewStyle': {\n 'padding': {\n 'top': 0,\n 'bottom': 6,\n 'left': 0,\n 'right': 0,\n },\n },\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'text': 'bye',\n 'maxTextLines': 10,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': {\n 'type': ActionType.UIKit,\n 'data': 'sendbirduikit://delete',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'metaData': {\n 'pixelWidth': 60,\n 'pixelHeight': 60,\n },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/sendbird-message-builder/icon-more.png',\n 'imageStyle': {\n 'tintColor': '#ff8d5a',\n },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-ULE240VNV-83fd5776e78e-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Chongbu',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': ' ',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-U02LA25KY8J-d41a3e8c7554-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Amanda',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': 'This is title message',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_5 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'fixed', 'value': '250' },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/notifications-default-image.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': '8',\n 'padding': {\n 'top': '12',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#ff8888',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'height': { 'type': 'fixed', 'value': '300' },\n 'width': { 'type': 'flex', 'value': '0' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': { 'radius': '100' },\n 'width': { 'type': 'fixed', 'value': 40 },\n 'height': { 'type': 'fixed', 'value': 40 },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': {\n 'pixelWidth': '240',\n 'pixelHeight': '240',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': '12',\n 'top': '0',\n 'right': '0',\n 'bottom': '0',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '{SBCOLOR_nppqb}',\n 'size': '16',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '{SBCOLOR_ls5oj}',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'left': '8',\n 'right': '0',\n 'top': '0',\n 'bottom': '0',\n },\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_6 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n height: { type: 'fixed', value: 600 },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': { 'radius': '8', 'padding': { 'top': '12', 'bottom': '12', 'left': '12', 'right': '12' } },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': { 'color': '#E0000000', 'size': '16', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'viewStyle': {},\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'text',\n 'viewStyle': { 'margin': { 'top': '8', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'color': '#E0000000', 'size': '14', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': { 'margin': { 'top': '12', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'text': 'Button 1',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n 'margin': { 'left': '8', 'right': '0', 'top': '0', 'bottom': '0' },\n },\n 'text': 'Button 2',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n ],\n },\n ],\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'image',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'imageUrl': 'https://file-preprod.sendbird.com/d03c08bb3f9041a88c1207b6bbf15ab8.png',\n 'metaData': { 'pixelWidth': '1062', 'pixelHeight': '1070' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'text': 'Button',\n 'textStyle': { 'color': '#742DDD', 'size': '16', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageUrl': 'https://file-preprod.sendbird.com/38fdf5c1056f42b89a44b38155cc4b49.jpg',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': { 'pixelWidth': '1080', 'pixelHeight': '2640' },\n 'action': { 'data': 'www.naver.com' },\n },\n ],\n 'viewStyle': {},\n },\n ],\n },\n};\nconst sample_for_inset_border = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#0e0101ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f9dadaff',\n 'borderColor': '#fb7373ff',\n 'borderWidth': '5',\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#bbd1f5ff',\n 'borderColor': '#0497f9ff',\n 'borderWidth': '10',\n 'padding': {\n 'top': '16',\n 'bottom': '16',\n 'left': '16',\n 'right': '16',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#298e04ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#a6b7ebff',\n 'borderColor': '#0f0ff9ff',\n 'borderWidth': '5',\n 'radius': '6',\n },\n 'text': 'Button',\n 'textStyle': {\n 'size': '14',\n 'color': '#ffffffff',\n 'weight': 'bold',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n 'borderColor': '#ff00b9ff',\n 'borderWidth': '5',\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-component-default-imgbutton.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'metaData': {\n 'pixelWidth': '72',\n 'pixelHeight': '72',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '36',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n {\n 'type': 'image',\n 'viewStyle': {\n 'backgroundColor': '#828282ff',\n 'borderColor': '#fe0000ff',\n 'borderWidth': '10',\n 'radius': '20',\n },\n 'imageUrl': 'https://file-preprod.sendbird.com/99c1ceafd8304076a7123caeea9aeb9a.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'metaData': {\n 'pixelHeight': '225',\n 'pixelWidth': '225',\n },\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_clipped_text__large_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'text',\n 'height': {\n 'type': 'fixed',\n 'value': 120,\n },\n 'width': {\n 'type': 'fixed',\n 'value': 150,\n },\n 'maxTextLines': 2,\n 'viewStyle': {\n 'padding': {\n 'left': 50,\n 'right': 50,\n 'top': 50,\n 'bottom': 50,\n },\n borderWidth: 1,\n borderColor: '#72723f',\n },\n 'text': 'longtext long long longtext',\n },\n ],\n },\n};\nconst sample_for_priority_by_size_spec = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed(short) / Wrap / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '30' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#050505',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#0c0c0c',\n 'borderWidth': '1',\n },\n },\n ],\n 'viewStyle': { 'borderColor': '#0a0a0a' },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed / Wrap(short) / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '2',\n 'right': '2',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap / Fixed / Fill / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short) / Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill Fill Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed Fixed Fixed Fixed Fixed Fixed Fixed ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(short) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(long) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'margin': {\n 'top': '0',\n 'bottom': '100',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0a1ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '8d7ba180-f065-4037-beb1-dd3797729bf2',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#adffa0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_longer = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_super_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 200,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 170,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_wrap_long_content = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'radius': 1,\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst dashboard_preset_list = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-template-preset-default-image.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'metaData': {\n 'pixelWidth': 686,\n 'pixelHeight': 320,\n },\n 'elementId': '0f3d6ba4-715a-44d2-b776-5bdd1aed8bc5',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': 8,\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '010811be-7c65-4aa8-8f8e-62c8398562b0',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': 8,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '00aca18f-3cdf-404d-9e01-9a99f59fb8ae',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n 'padding': {\n 'top': 4,\n 'right': 0,\n 'bottom': 4,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '35a315e9-1f61-4a72-b7c9-ce34a0543343',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ef3c83b2-9149-46c1-a22d-beb878cf937a',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a92ae89d-0726-46b5-b575-2db578b3d954',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ffb50576-f050-4a36-b64f-64864bb04734',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a9d30083-5b00-4ec6-bf2b-0b03c03b1632',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '61fefa7c-0a03-4c92-9b26-2f7620982e46',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'cb2dfa91-3076-406d-b0e9-3bfab75c91a1',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '88bb07e0-8226-4e03-b2a1-d8796a8d558e',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '169ca327-1784-4ae4-bb1c-52963268a1de',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '732ae02b-adff-46d2-b011-f94a2d93b4ba',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '1761210e-beab-4d19-ad12-3c7776ce066d',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3e69331-e4d1-44f9-bc1a-c0c8589d625e',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '065a4733-477d-4a15-a7d0-4559025db3c3',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '3e20f19a-58c6-40ec-8365-0e6ea12a6acb',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '2e8938ca-5574-4a58-a17c-9bff156a7456',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '9c79282d-928c-418e-8111-78a4e19c1353',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'radius': 6,\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3885375-bc4e-4117-8575-ec241a68091d',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'margin': {\n 'left': 8,\n 'right': 0,\n 'top': 0,\n 'bottom': 0,\n },\n 'radius': 6,\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '6f9acedd-e382-4f53-a350-bca2276e9b6b',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '37bae277-3300-4c2e-a308-c320d73c5725',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '62b096a3-0ee7-4467-a8be-9fa1109b257d',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'e2708cb7-b237-4ffb-86fe-3bb11b8400b8',\n },\n ],\n },\n ],\n },\n};\nconst socar_preset_booking_confirm = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'padding': { 'top': 5, 'bottom': 5, 'left': 0, 'right': 10 },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'items': [\n {\n 'type': 'imageButton',\n 'width': { 'type': 'fixed', 'value': 70 },\n 'height': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'imageUrl': 'https://search.pstatic.net/common?type=f&size=298x140&quality=95&direct=true&ttype=input&src=https%3A%2F%2Fimgauto-phinf.pstatic.net%2F20240116_168%2Fauto_17053701702442qv0L_PNG%2F20240116105600_9xS4XPiV.png',\n 'metaData': { 'pixelWidth': '149', 'pixelHeight': '70' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'text',\n 'text': '예약완료',\n 'width': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'right', 'vertical': 'center' },\n 'viewStyle': {\n 'backgroundColor': '#F0FAFF',\n 'radius': 4,\n 'padding': { 'top': 2, 'bottom': 1, 'left': 4, 'right': 4 },\n },\n 'textStyle': { 'color': '#3BC7FF', 'weight': 'bold', 'size': 12 },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '[슈퍼딜] 2024 포드 머스탱 컨버터블',\n 'textStyle': { 'weight': 'bold' },\n 'viewStyle': {\n 'margin': { 'top': 2 },\n },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '출발: 03.24.(금) 15:00\\n도착: 03.27.(월) 11:00',\n 'textStyle': { 'weight': 'normal' },\n 'maxTextLines': '2',\n },\n ],\n },\n {\n 'type': 'textButton',\n 'text': '선택',\n 'width': { 'type': 'fixed', 'value': 60 },\n 'height': { 'type': 'fixed', 'value': 30 },\n 'viewStyle': {\n 'radius': 17,\n 'padding': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 0 },\n },\n 'textStyle': { 'weight': 'bold' },\n 'maxTextLines': '1',\n },\n ],\n },\n ],\n },\n ],\n },\n};\nexport const samples_for_size_spec = [\n horizontal_wrap_wrap,\n horizontal_wrap_wrap_wrap,\n horizontal_fill_wrap,\n horizontal_fill_fill_wrap,\n horizontal_fill_wrap_fill_wrap,\n horizontal_fill_wrap_fill_wrap_long,\n horizontal_fill_wrap_fill_wrap_longer,\n horizontal_fill_wrap_fill_wrap_super_long,\n horizontal_fill_wrap_wrap_long_content,\n horizontal_fill_wrap_remain_padding,\n horizontal_fill_wrap_no_padding,\n vertical_fill_wrap_wrap_remain_padding,\n vertical_fill_wrap_wrap_no_padding,\n];\nexport const samples = [\n sample_1,\n sample_2,\n sample_3,\n sample_4,\n sample_5,\n sample_6,\n sample_for_inset_border,\n sample_clipped_text__large_padding,\n sample_for_priority_by_size_spec,\n dashboard_preset_list,\n socar_preset_booking_confirm,\n];\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect, useMemo, useRef, useState } from 'react';\nexport const CanvasReactMessageTemplateImage = (props) => {\n const { imageSize, canvasRef, canvasProps } = useCanvasMessageTemplateImage(props);\n return (React.createElement(\"canvas\", Object.assign({}, canvasProps, { ref: canvasRef, width: imageSize === null || imageSize === void 0 ? void 0 : imageSize.width, height: imageSize === null || imageSize === void 0 ? void 0 : imageSize.height, onError: props.onError })));\n};\nconst useCanvasMessageTemplateImage = (_a) => {\n var { metaData, tintColor } = _a, props = __rest(_a, [\"metaData\", \"tintColor\"]);\n const canvasRef = useRef(null);\n const [fallbackImageSize, setFallbackImageSize] = useState();\n const imageSize = useMemo(() => {\n if ((metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight) && (metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth)) {\n return { width: metaData.pixelWidth, height: metaData.pixelHeight };\n }\n return fallbackImageSize;\n }, [fallbackImageSize, metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight, metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth]);\n useEffect(() => {\n if (imageSize == null) {\n console.log('Canvas_ReactMessageTemplateImage: no metaData, render fit to container');\n if (canvasRef.current) {\n canvasRef.current.style.width = '100%';\n canvasRef.current.style.height = '100%';\n const containerSize = canvasRef.current.getBoundingClientRect();\n setFallbackImageSize(containerSize);\n }\n }\n }, [imageSize]);\n useEffect(() => {\n if (props.src) {\n const img = new Image();\n const onImageLoad = () => {\n if (canvasRef.current && tintColor && imageSize) {\n const ctx = canvasRef.current.getContext('2d');\n if (ctx) {\n const { width: imageWidth, height: imageHeight } = imageSize;\n // reset context before draw, consider `.save()` and `.restore()` api\n ctx.clearRect(0, 0, imageWidth, imageHeight);\n ctx.beginPath();\n ctx.globalCompositeOperation = 'source-over';\n ctx.fillStyle = '#000';\n // draw\n ctx.drawImage(img, 0, 0, imageWidth, imageHeight);\n ctx.globalCompositeOperation = 'source-atop';\n ctx.fillStyle = tintColor;\n ctx.fillRect(0, 0, imageWidth, imageHeight);\n }\n }\n };\n const onImageError = (event) => {\n var _a;\n // @ts-ignore\n (_a = props.onError) === null || _a === void 0 ? void 0 : _a.call(props, event);\n };\n img.addEventListener('load', onImageLoad);\n img.addEventListener('error', onImageError);\n img.src = props.src;\n return () => {\n img.removeEventListener('load', onImageLoad);\n img.removeEventListener('error', onImageError);\n };\n }\n return;\n }, [props.src, imageSize, tintColor]);\n return {\n canvasRef,\n canvasProps: props,\n imageSize,\n };\n};\n","import React from 'react';\nexport const ImgReactMessageTemplateImage = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const PlaceholderReactMessageTemplateImage = (props) => {\n return React.createElement(\"div\", { style: Object.assign(Object.assign({}, props.style), { backgroundColor: 'transparent' }) });\n};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useCallback, useEffect, useState } from 'react';\nimport { CanvasReactMessageTemplateImage } from './index.canvas';\nimport { ImgReactMessageTemplateImage } from './index.img';\nimport { PlaceholderReactMessageTemplateImage } from './index.placeholder';\nconst ReactMessageTemplateImage = (_a) => {\n var { tintColor, metaData } = _a, props = __rest(_a, [\"tintColor\", \"metaData\"]);\n const { hasError, onError } = useImageLoadError(props.src);\n if (props.onError)\n console.warn('`onError` is intercepted and not executed in the ReactMessageTemplateImage.');\n if (hasError) {\n return React.createElement(PlaceholderReactMessageTemplateImage, Object.assign({}, props));\n }\n else if (tintColor) {\n return React.createElement(CanvasReactMessageTemplateImage, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(ImgReactMessageTemplateImage, Object.assign({}, props, { onError: onError }));\n }\n};\nconst useImageLoadError = (source) => {\n const [hasError, setHasError] = useState(false);\n useEffect(() => setHasError(false), [source]);\n return {\n hasError,\n onError: useCallback(() => setHasError(true), []),\n };\n};\nexport default ReactMessageTemplateImage;\n","// create a context provider for MessageComponent\n// - this is a wrapper for MessageComponent\nimport React from 'react';\nconst MessageContext = React.createContext(null);\nconst MessageProvider = (props) => {\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction, children } = props;\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => React.useContext(MessageContext);\nexport { MessageProvider, useMessageContext };\n","import { ComponentType, FlexSizeSpecValue } from '@sendbird/uikit-message-template';\nexport function isWrappedText(view) {\n var _a;\n return view.type === ComponentType.Text && ((_a = view.width) === null || _a === void 0 ? void 0 : _a.value) == FlexSizeSpecValue.WrapContent;\n}\n// Compares the size spec to the option and returns whether they are equal or not.\nexport const isSizeCompatibleWithOption = ({ size, option, }) => {\n if (option === 'wrap') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.WrapContent;\n }\n if (option === 'fill') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.FillParent;\n }\n return size.type === 'fixed';\n};\n","import { useCallback, useEffect, useRef } from 'react';\n/**\n * Preserves a reference to the given callback function as an argument while the component is mounted.\n * Wraps the given callback in React's Ref to preserve the reference.\n * @param callback want to be preserved\n */\nexport function usePreservedCallback(callback) {\n const callbackRef = useRef(callback);\n useEffect(() => {\n callbackRef.current = callback;\n }, [callback]);\n return useCallback((...args) => {\n return callbackRef.current(...args);\n }, [callbackRef]);\n}\n","import { useCallback, useRef } from 'react';\nimport { usePreservedCallback } from './usePreservedCallback';\n/**\n * This hook can be used when you want to safely effect the value stored in useRef\n * Got this idea from https://github.com/facebook/react/issues/15176\n * @param callback\n * @param deps\n * @returns effect callback\n */\nexport function useRefEffect(callback, deps) {\n const preservedCallback = usePreservedCallback(callback);\n const disposeRef = useRef(noop);\n const effect = useCallback((element) => {\n disposeRef.current();\n disposeRef.current = noop;\n if (element != null) {\n const cleanup = callback(element);\n if (typeof cleanup === 'function') {\n disposeRef.current = cleanup;\n }\n }\n }, [preservedCallback, ...deps]);\n return effect;\n}\nfunction noop() { }\n","import { usePreservedCallback } from './usePreservedCallback';\nimport { useRefEffect } from './useRefEffect';\n/**\n * Subscribes to ResizeObserver on the component exposing the Ref,\n * to detect changes in the size of DOM elements.\n * The ResizeObserver API is required.\n * If you are targeting browsers that do not support that API, probably need to add appropriate polyfill too.\n * @param onResize\n * @returns ref\n */\nexport function useResizeObserver(onResize) {\n const resizeCallback = usePreservedCallback(onResize);\n const ref = useRefEffect((elem) => {\n const observer = new ResizeObserver((entries) => {\n if (entries[0] != null) {\n resizeCallback(entries[0]);\n }\n });\n observer.observe(elem);\n return () => {\n observer.unobserve(elem);\n };\n }, [resizeCallback]);\n return ref;\n}\n","import { useState } from 'react';\nimport { useResizeObserver } from './useResizeObserver';\n/**\n * @returns an element's width / height observed by IntersectionObserver,\n * and ref to detect its resize event\n */\nexport function useElementSize() {\n const [width, setWidth] = useState(-1);\n const [height, setHeight] = useState(-1);\n const [contentWidth, setContentWidth] = useState(-1);\n const [contentHeight, setContentHeight] = useState(-1);\n const [paddingWidth, setPaddingWidth] = useState(-1);\n const [paddingHeight, setPaddingHeight] = useState(-1);\n const ref = useResizeObserver((entry) => {\n // contentRect: content size only\n const { width: contentWidth, height: contentHeight } = entry.contentRect;\n // target: content + padding + border size\n const target = entry.target;\n const { width, height } = target.getBoundingClientRect();\n setWidth(width);\n setHeight(height);\n setContentWidth(contentWidth);\n setContentHeight(contentHeight);\n setPaddingWidth(width - contentWidth);\n setPaddingHeight(height - contentHeight);\n });\n return { ref, width, height, contentWidth, contentHeight, paddingWidth, paddingHeight };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { useEffect, useMemo } from 'react';\nimport { Layout, defaultProperties, useSizeContext } from '@sendbird/uikit-message-template';\nimport { isSizeCompatibleWithOption } from '../util';\nimport { useElementSize } from './useElementSize';\nfunction isViewCompatibleWithSizeOption({ width = defaultProperties.view.size.width, height = defaultProperties.view.size.height, parentLayout = defaultProperties.box.layout, option, }) {\n if (parentLayout === Layout.Row) {\n return isSizeCompatibleWithOption({\n size: width,\n option,\n });\n }\n return isSizeCompatibleWithOption({\n size: height,\n option,\n });\n}\nexport function useRecalculateWidth(params) {\n const { style, props } = params;\n const _a = useElementSize(), { ref: elemRef } = _a, size = __rest(_a, [\"ref\"]);\n const { updateSize, sizes } = useSizeContext();\n const { id, siblings, parentLayout } = props;\n const { width, height, paddingWidth, paddingHeight, contentWidth, contentHeight } = size;\n useEffect(() => {\n updateSize({\n id: props.id,\n width,\n height,\n paddingWidth,\n paddingHeight,\n contentWidth,\n contentHeight,\n });\n }, [props.id, width, height, paddingWidth, paddingHeight, contentWidth, contentHeight, updateSize]);\n const currentStyle = useMemo(() => {\n const sumViewSize = (acc = 0, view) => {\n var _a, _b, _c, _d;\n if (parentLayout === Layout.Row) {\n return acc + ((_b = (_a = sizes[view.id]) === null || _a === void 0 ? void 0 : _a.contentWidth) !== null && _b !== void 0 ? _b : 0);\n }\n return acc + ((_d = (_c = sizes[view.id]) === null || _c === void 0 ? void 0 : _c.contentHeight) !== null && _d !== void 0 ? _d : 0);\n };\n const hasFillOption = isViewCompatibleWithSizeOption({\n width: props.width,\n height: props.height,\n parentLayout,\n option: 'fill',\n });\n if (hasFillOption) {\n const wrapSiblingsSize = siblings\n .filter(({ width, height }) => !isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n }))\n .reduce(sumViewSize, 0);\n const fillSiblingCount = siblings.filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n })).length;\n const maxSizeOption = (() => {\n if (parentLayout === Layout.Row) {\n return {\n maxWidth: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n }\n return {\n maxHeight: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n })();\n return Object.assign(Object.assign(Object.assign({}, style), maxSizeOption), (width == 0 && { height: 0 }));\n }\n else {\n const currentElemIdx = siblings.findIndex((sibling) => sibling.id === id);\n const forwardSiblingsSize = siblings\n .slice(0, currentElemIdx)\n .filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'wrap',\n }))\n .reduce(sumViewSize, 0);\n return Object.assign(Object.assign(Object.assign({}, style), (width === 0 && { height: 0 })), (parentLayout === Layout.Row\n ? {\n maxWidth: `calc(100% - ${forwardSiblingsSize}px)`,\n }\n : {\n maxHeight: `calc(100% - ${forwardSiblingsSize}px)`,\n }));\n }\n }, [props.width, props.height, parentLayout, sizes, siblings, style, width, id]);\n return { recalculatedStyle: currentStyle, elemRef };\n}\n","import { ComponentType, FlexSizeSpecValue, Layout, MediaContentMode, alignInFlex, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { isWrappedText } from '../util';\nexport function getDefaultStyles(overrides) {\n return Object.assign({ display: 'flex', overflow: 'hidden', boxSizing: 'border-box' }, overrides);\n}\nexport function setViewProps(styles, props, options) {\n setViewSize(styles, props, options);\n setViewStyle(styles, props);\n}\nfunction setBorderStyle(styles, borderWidth, borderColor, radius) {\n if (borderWidth) {\n styles['--border-width'] = `${borderWidth}px`;\n styles['--border-color'] = borderColor || 'transparent';\n }\n if (radius) {\n styles['borderRadius'] = Number(radius);\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d;\n const { viewStyle } = props;\n if ((_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top)\n styles['marginTop'] = Number(viewStyle.margin.top);\n if ((_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.bottom)\n styles['marginBottom'] = Number(viewStyle.margin.bottom);\n if ((_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.left)\n styles['marginLeft'] = Number(viewStyle.margin.left);\n if ((_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.right)\n styles['marginRight'] = Number(viewStyle.margin.right);\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundColor)\n styles['backgroundColor'] = viewStyle.backgroundColor;\n // use JSON.stringify to escape special characters in image URL\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundImageUrl)\n styles['backgroundImage'] = `url(${JSON.stringify(viewStyle.backgroundImageUrl)})`;\n setBorderStyle(styles, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderWidth, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderColor, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.radius);\n}\nfunction getViewSizeStyle(width, height, parentLayout) {\n const style = {};\n if (width.type === 'flex' && width.value == FlexSizeSpecValue.FillParent) {\n style['width'] = '100%';\n if (parentLayout === Layout.Row) {\n style['flex'] = 1;\n }\n }\n else if (width.type === 'fixed' && width.value >= 0) {\n style['width'] = Number(width.value);\n }\n if (height.type === 'flex' && height.value == FlexSizeSpecValue.FillParent) {\n style['height'] = '100%';\n if (parentLayout === Layout.Column) {\n style['flex'] = 1;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = Number(height.value);\n }\n return style;\n}\nexport function setViewSize(styles, props, options) {\n var _a, _b;\n const { width: defaultWidth, height: defaultHeight } = defaultProperties.view.size;\n const { parentLayout } = options;\n const sizeStyle = getViewSizeStyle((_a = props.width) !== null && _a !== void 0 ? _a : defaultWidth, (_b = props.height) !== null && _b !== void 0 ? _b : defaultHeight, parentLayout);\n Object.assign(styles, sizeStyle);\n}\nexport function setAlign(styles, layout = defaultProperties.box.layout, align = defaultProperties.box.align) {\n if (layout === Layout.Row) {\n styles['flexDirection'] = 'row';\n styles['alignItems'] = alignInFlex(align.vertical);\n styles['justifyContent'] = alignInFlex(align.horizontal);\n }\n if (layout === Layout.Column) {\n styles['flexDirection'] = 'column';\n styles['alignItems'] = alignInFlex(align.horizontal);\n styles['justifyContent'] = alignInFlex(align.vertical);\n }\n}\nexport function setTextAlign(styles, align = defaultProperties.box.align.horizontal) {\n styles.textAlign = align;\n}\nexport function setImageStyle(styles, imageStyle) {\n const { contentMode = MediaContentMode.AspectFit } = imageStyle || {};\n if (contentMode) {\n switch (contentMode) {\n case MediaContentMode.AspectFill:\n styles['objectFit'] = 'cover';\n break;\n case MediaContentMode.AspectFit:\n styles['objectFit'] = 'contain';\n break;\n case MediaContentMode.ScalesToFill:\n styles['objectFit'] = 'fill';\n break;\n }\n }\n}\n// uses image meta-data to render images that doesn't break the UI\n// https://sendbird.atlassian.net/wiki/spaces/UK/pages/2008220608/Message+template+-+Image+policy\nexport function setImageAspectRatio(styles, props) {\n var _a, _b, _c, _d;\n const imageMetaData = props === null || props === void 0 ? void 0 : props.metaData;\n if (!(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelHeight) || !(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelWidth)) {\n return;\n }\n if (((_a = props === null || props === void 0 ? void 0 : props.width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed' || ((_b = props === null || props === void 0 ? void 0 : props.height) === null || _b === void 0 ? void 0 : _b.type) === 'fixed') {\n return;\n }\n styles['aspectRatio'] = `${(_c = props === null || props === void 0 ? void 0 : props.metaData) === null || _c === void 0 ? void 0 : _c.pixelWidth} / ${(_d = props === null || props === void 0 ? void 0 : props.metaData) === null || _d === void 0 ? void 0 : _d.pixelHeight}`;\n}\nexport function webkitLineClampStyles(numberOfLines) {\n return {\n WebkitLineClamp: numberOfLines,\n WebkitBoxOrient: 'vertical',\n display: '-webkit-box',\n overflow: 'hidden',\n overflowWrap: 'anywhere',\n flex: 1,\n };\n}\nexport function setTextStyle(styles, props, options) {\n const { textStyle, width } = props;\n // TODO: Change default as design\n const { size, color, weight = 'normal' } = textStyle || {};\n if (size)\n styles['fontSize'] = Number(size);\n if (color)\n styles['color'] = color;\n if (weight)\n styles['fontWeight'] = weight;\n if ((width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['maxWidth'] = '100%';\n }\n if (props.type === ComponentType.Text) {\n const { siblings, elemIdx } = options;\n // To push out any subsequent components from the container,\n // if a prior one is long enough to occupy an entire line\n // @link https://sendbird.atlassian.net/browse/NOTI-709\n if (siblings != null && siblings.length >= 2 && siblings.every(isWrappedText)) {\n styles.flexShrink = siblings.length - 1 === elemIdx ? 1 : 0;\n }\n }\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport { FlexSizeSpecValue, Layout, createMessageTemplate, createParser, createRenderer, } from '@sendbird/uikit-message-template';\nimport ReactMessageTemplateImage from '../components/ReactMessageTemplateImage';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport '../index.css';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, webkitLineClampStyles, } from '../styles';\nconst hasValidUrlProtocol = (url = '') => ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n/**\n * @param url - url to be checked\n * @returns url with http:// protocol if it doesn't have any protocol\n * @example\n * returnUrl('www.sendbird.com') // returns 'http://www.sendbird.com'\n * returnUrl('https://www.sendbird.com') // returns 'https://www.sendbird.com'\n * returnUrl('ftp://www.sendbird.com') // returns 'ftp://www.sendbird.com'\n * returnUrl('sendbird.com') // returns 'https://sendbird.com'\n **/\nconst returnUrl = (url = '') => {\n if (hasValidUrlProtocol(url)) {\n return url;\n }\n return `https://${url}`;\n};\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nconst ActionHandler = ({ className = '', style, children, props }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const onClick = (e) => {\n var _a, _b, _c, _d, _e;\n if (((_a = props === null || props === void 0 ? void 0 : props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction === null || handleWebAction === void 0 ? void 0 : handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(returnUrl((_b = props === null || props === void 0 ? void 0 : props.action) === null || _b === void 0 ? void 0 : _b.data), '_blank', 'noopener noreferrer')) === null || _c === void 0 ? void 0 : _c.focus();\n }\n }\n if (((_d = props === null || props === void 0 ? void 0 : props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n handleCustomAction === null || handleCustomAction === void 0 ? void 0 : handleCustomAction(e, props.action, message);\n }\n if (((_e = props === null || props === void 0 ? void 0 : props.action) === null || _e === void 0 ? void 0 : _e.type) === 'uikit') {\n handlePredefinedAction === null || handlePredefinedAction === void 0 ? void 0 : handlePredefinedAction(e, props.action, message);\n }\n };\n const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? ' sb-message-template__border' : '';\n if (className === 'sb-message-template__text-button') {\n return (React.createElement(\"button\", { className: `${className}${borderClass}`, \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, style), { paddingTop: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top, paddingRight: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.right, paddingBottom: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.bottom, paddingLeft: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.left }), onClick: onClick }, children));\n }\n const { display, flexDirection, justifyContent, alignItems, objectFit } = recalculatedStyle, wrapperStyles = __rest(recalculatedStyle, [\"display\", \"flexDirection\", \"justifyContent\", \"alignItems\", \"objectFit\"]);\n return (React.createElement(\"div\", { ref: elemRef, className: `${className}${borderClass} ${(props === null || props === void 0 ? void 0 : props.action) ? 'sb-message-template__action' : ''}`, \"data-sb-template-id\": props.elementId, style: wrapperStyles, onClick: onClick },\n React.createElement(\"div\", { style: {\n display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit,\n width: '100%',\n height: '100%',\n paddingTop: (_l = (_k = props.viewStyle) === null || _k === void 0 ? void 0 : _k.padding) === null || _l === void 0 ? void 0 : _l.top,\n paddingRight: (_o = (_m = props.viewStyle) === null || _m === void 0 ? void 0 : _m.padding) === null || _o === void 0 ? void 0 : _o.right,\n paddingBottom: (_q = (_p = props.viewStyle) === null || _p === void 0 ? void 0 : _p.padding) === null || _q === void 0 ? void 0 : _q.bottom,\n paddingLeft: (_s = (_r = props.viewStyle) === null || _r === void 0 ? void 0 : _r.padding) === null || _s === void 0 ? void 0 : _s.left,\n } }, children)));\n};\n/**\n * Text that is fixed or fill parent should be wrapped in a div with max-width: 100% and max-height: 100%\n * This is to prevent text from overflowing the padding of the container\n */\nfunction isFixedOrFill(view) {\n var _a, _b, _c, _d;\n const heightType = (_a = view === null || view === void 0 ? void 0 : view.height) === null || _a === void 0 ? void 0 : _a.type;\n const widthType = (_b = view === null || view === void 0 ? void 0 : view.width) === null || _b === void 0 ? void 0 : _b.type;\n const isFixedDiamension = heightType === 'fixed' || widthType === 'fixed';\n const isFill = (heightType === 'flex' && ((_c = view === null || view === void 0 ? void 0 : view.height) === null || _c === void 0 ? void 0 : _c.value) === FlexSizeSpecValue.FillParent) ||\n (widthType === 'flex' && ((_d = view === null || view === void 0 ? void 0 : view.width) === null || _d === void 0 ? void 0 : _d.value) === FlexSizeSpecValue.FillParent);\n return isFixedDiamension || isFill;\n}\nfunction renderText(view) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const isMultiLine = maxTextLines != null && maxTextLines > 0;\n if (isMultiLine || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((isMultiLine || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, text) : text));\n }\n return text;\n}\nexport const renderer = createRenderer({\n views: {\n box(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__box\", elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n image(props) {\n var _a;\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n textButton(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text-button\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n imageButton(props) {\n var _a;\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container sb-message-template__image-button\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image-button\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n },\n});\nexport const parser = createParser({\n mapBoxProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setAlign(styles, props.layout, props.align);\n return styles;\n },\n mapTextProps(props, options) {\n var _a;\n const styles = getDefaultStyles({ whiteSpace: 'pre-line' });\n // Better not set flex 1 to text\n setViewProps(styles, props, options);\n setTextStyle(styles, props, options);\n setAlign(styles, Layout.Row, props.align);\n setTextAlign(styles, (_a = props.align) === null || _a === void 0 ? void 0 : _a.horizontal);\n return styles;\n },\n mapImageProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapTextButtonProps(props, options) {\n const styles = getDefaultStyles({ whiteSpace: 'pre-line', alignItems: 'center', justifyContent: 'center' });\n setViewProps(styles, props, options);\n setTextStyle(styles, Object.assign(Object.assign({}, props), { textStyle: Object.assign({ weight: 500 }, props.textStyle) }), options);\n return styles;\n },\n mapImageButtonProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n});\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children }) => {\n return (React.createElement(\"div\", { className: \"sb-message-template__parent\", style: {\n display: 'flex',\n flexDirection: 'column',\n maxWidth: 400,\n backgroundColor: '#cecece',\n marginBottom: 24,\n borderRadius: '8px',\n } }, children));\n },\n});\n"],"names":["React","__rest","this"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]}
1
+ {"version":3,"file":"bundle-B1ObaBN3.js","sources":["../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../node_modules/@sendbird/uikit-message-template/dist/core/parser.js","../../node_modules/@sendbird/uikit-message-template/dist/core/renderer.js","../../node_modules/@sendbird/uikit-message-template/dist/context/SizeProvider.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/templateItemId.js","../../node_modules/@sendbird/uikit-message-template/dist/types/styles.js","../../node_modules/@sendbird/uikit-message-template/dist/core/defaultValues.js","../../node_modules/@sendbird/uikit-message-template/dist/core/messageTemplate.js","../../node_modules/@sendbird/uikit-message-template/dist/types/properties.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/index.js","../../node_modules/@sendbird/uikit-message-template/dist/test/data.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.canvas.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.img.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.placeholder.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/usePreservedCallback.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRefEffect.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useResizeObserver.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useElementSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRecalculationSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/index.js"],"sourcesContent":["export var ComponentType;\n(function (ComponentType) {\n ComponentType[\"Box\"] = \"box\";\n ComponentType[\"Text\"] = \"text\";\n ComponentType[\"Image\"] = \"image\";\n ComponentType[\"TextButton\"] = \"textButton\";\n ComponentType[\"ImageButton\"] = \"imageButton\";\n})(ComponentType || (ComponentType = {}));\n","// -------- Set property mapper\nimport { ComponentType } from '../types/components';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n const defaultMapper = (params === null || params === void 0 ? void 0 : params.defaultMapper) || MAPPER;\n const mapper = {\n defaultMapper,\n mapBoxProps: (params === null || params === void 0 ? void 0 : params.mapBoxProps) || defaultMapper,\n mapTextProps: (params === null || params === void 0 ? void 0 : params.mapTextProps) || defaultMapper,\n mapImageProps: (params === null || params === void 0 ? void 0 : params.mapImageProps) || defaultMapper,\n mapTextButtonProps: (params === null || params === void 0 ? void 0 : params.mapTextButtonProps) || defaultMapper,\n mapImageButtonProps: (params === null || params === void 0 ? void 0 : params.mapImageButtonProps) || defaultMapper,\n };\n return {\n parse(item, options) {\n switch (item.type) {\n case ComponentType.Box: {\n return { properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { properties: mapper.mapImageButtonProps(item, options) };\n }\n default:\n return { properties: undefined };\n }\n },\n };\n};\nexport const DEFAULT_PARSER_VALUES = {\n light: { _: undefined },\n dark: { _: undefined },\n};\n","import React from 'react';\nconst FRAGMENT = ({ children }) => React.createElement(React.Fragment, null, children);\nexport function createRenderer(params) {\n var _a, _b, _c, _d, _e;\n return {\n box: ((_a = params === null || params === void 0 ? void 0 : params.views) === null || _a === void 0 ? void 0 : _a.box) || FRAGMENT,\n text: ((_b = params === null || params === void 0 ? void 0 : params.views) === null || _b === void 0 ? void 0 : _b.text) || FRAGMENT,\n image: ((_c = params === null || params === void 0 ? void 0 : params.views) === null || _c === void 0 ? void 0 : _c.image) || FRAGMENT,\n imageButton: ((_d = params === null || params === void 0 ? void 0 : params.views) === null || _d === void 0 ? void 0 : _d.imageButton) || FRAGMENT,\n textButton: ((_e = params === null || params === void 0 ? void 0 : params.views) === null || _e === void 0 ? void 0 : _e.textButton) || FRAGMENT,\n };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { createContext, useCallback, useContext, useState } from 'react';\nconst SizeContext = createContext({\n sizes: {},\n updateSize: () => { },\n});\nconst SizeContextProvider = ({ children }) => {\n const [sizes, setSizes] = useState({});\n const updateSize = useCallback((_a) => {\n var { id } = _a, rest = __rest(_a, [\"id\"]);\n if (id) {\n setSizes((prevSizes) => (Object.assign(Object.assign({}, prevSizes), { [id]: rest })));\n }\n }, []);\n return React.createElement(SizeContext.Provider, { value: { sizes, updateSize } }, children);\n};\nconst useSizeContext = () => useContext(SizeContext);\nexport { SizeContextProvider, useSizeContext };\n","const memoize = (fn) => {\n const cache = new Map();\n const cached = function (val) {\n return cache.has(val) ? cache.get(val) : cache.set(val, fn.call(this, val)) && cache.get(val);\n };\n cached.cache = cache;\n return cached;\n};\n/**\n * Generate each item's id by each item's array depth\n */\nexport const setTemplateItemId = memoize((data) => {\n const addIdRecursively = (item, id) => {\n if ('items' in item && (item === null || item === void 0 ? void 0 : item.items) != null) {\n item.items.forEach((subItem, subIdx) => {\n const subId = `${id}-${subIdx}`;\n subItem.id = subId;\n addIdRecursively(subItem, subId);\n });\n }\n };\n data.forEach((item, idx) => {\n const id = `${idx}`;\n item.id = id;\n addIdRecursively(item, id);\n });\n return data;\n});\n","export var Layout;\n(function (Layout) {\n Layout[\"Row\"] = \"row\";\n Layout[\"Column\"] = \"column\";\n})(Layout || (Layout = {}));\nexport var AlignValue;\n(function (AlignValue) {\n AlignValue[\"Center\"] = \"center\";\n AlignValue[\"Left\"] = \"left\";\n AlignValue[\"Right\"] = \"right\";\n AlignValue[\"Top\"] = \"top\";\n AlignValue[\"Bottom\"] = \"bottom\";\n})(AlignValue || (AlignValue = {}));\n/**\n * @description\n * Caution: Numbers are passed as string types in the message template builder.\n * Use `==` comparison instead of `===` comparison when using a regular enum instead of a string enum.\n */\nexport var FlexSizeSpecValue;\n(function (FlexSizeSpecValue) {\n FlexSizeSpecValue[FlexSizeSpecValue[\"FillParent\"] = 0] = \"FillParent\";\n FlexSizeSpecValue[FlexSizeSpecValue[\"WrapContent\"] = 1] = \"WrapContent\";\n})(FlexSizeSpecValue || (FlexSizeSpecValue = {}));\nexport var FontWeight;\n(function (FontWeight) {\n FontWeight[\"Normal\"] = \"normal\";\n FontWeight[\"Bold\"] = \"bold\";\n})(FontWeight || (FontWeight = {}));\nexport var MediaContentMode;\n(function (MediaContentMode) {\n MediaContentMode[\"AspectFit\"] = \"aspectFit\";\n MediaContentMode[\"AspectFill\"] = \"aspectFill\";\n MediaContentMode[\"ScalesToFill\"] = \"scalesToFill\";\n})(MediaContentMode || (MediaContentMode = {}));\n","import { AlignValue, FlexSizeSpecValue, Layout } from '../types/styles';\nexport const defaultProperties = {\n rootLayout: Layout.Column,\n view: {\n size: {\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n },\n },\n box: {\n layout: Layout.Row,\n align: { vertical: AlignValue.Top, horizontal: AlignValue.Left },\n },\n};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { setTemplateItemId } from '../utils/templateItemId';\nimport { defaultProperties } from './defaultValues';\nimport { createParser } from './parser';\nimport { createRenderer } from './renderer';\nexport const createMessageTemplate = (opts) => {\n const Container = opts.Container || React.Fragment;\n const UnknownMessage = opts.UnknownMessage || (() => null);\n const parser = opts.parser || createParser();\n const renderer = opts.renderer || createRenderer();\n const MessageTemplateBase = (props) => {\n var _a;\n const renderItems = props.templateItems;\n const parentLayout = (_a = props.parentLayout) !== null && _a !== void 0 ? _a : defaultProperties.box.layout;\n return (React.createElement(React.Fragment, null, renderItems.map((item, index, siblings) => {\n const { properties } = parser.parse(item, { parentLayout, elemIdx: index, siblings });\n const props = {\n key: index,\n parentLayout,\n parsedProperties: properties,\n siblings,\n };\n switch (item.type) {\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, props),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, props));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, props));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, props));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, props));\n }\n default: {\n // or throw new Error('Cannot parse template item')\n return React.createElement(UnknownMessage, { item: item });\n }\n }\n })));\n };\n return {\n MessageTemplate: ({ parentLayout = defaultProperties.rootLayout, templateItems }) => {\n const items = setTemplateItemId(templateItems);\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, null,\n React.createElement(MessageTemplateBase, { parentLayout: parentLayout, templateItems: items }))));\n },\n MessageTemplateBase,\n };\n};\n","export var ActionType;\n(function (ActionType) {\n ActionType[\"Web\"] = \"web\";\n ActionType[\"Custom\"] = \"custom\";\n ActionType[\"UIKit\"] = \"uikit\";\n})(ActionType || (ActionType = {}));\n","import { AlignValue } from '../types/styles';\nexport const alignInFlex = (align) => {\n switch (align) {\n case AlignValue.Right:\n case AlignValue.Bottom:\n return 'flex-end';\n case AlignValue.Center:\n return 'center';\n case AlignValue.Left:\n case AlignValue.Top:\n default:\n return 'flex-start';\n }\n};\n","import { ComponentType } from '../types/components';\nimport { ActionType } from '../types/properties';\nimport { AlignValue, FlexSizeSpecValue, FontWeight, Layout, MediaContentMode } from '../types/styles';\nconst sample_1 = {\n version: 1,\n body: {\n items: [\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n height: { type: 'fixed', value: 236 },\n viewStyle: {\n padding: {\n left: 4,\n right: 4,\n top: 4,\n bottom: 4,\n },\n },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 200 },\n items: [\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#fa6464' },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n viewStyle: { backgroundColor: '#ffaf5c' },\n items: [\n {\n type: ComponentType.Text,\n text: 'Message',\n align: { horizontal: AlignValue.Center, vertical: AlignValue.Center },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n ],\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 20 },\n viewStyle: { backgroundColor: '#ffe450' },\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#329a1b' },\n },\n ],\n },\n {\n type: ComponentType.Box,\n viewStyle: { padding: { top: 12, bottom: 12, left: 12, right: 12 } },\n layout: Layout.Column,\n items: [\n {\n type: ComponentType.Box,\n align: { horizontal: AlignValue.Left, vertical: AlignValue.Center },\n layout: Layout.Row,\n viewStyle: {\n borderWidth: 1,\n borderColor: '#72723f',\n },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 150 },\n items: [\n {\n type: ComponentType.Text,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n text: 'Sample1 text',\n maxTextLines: 1,\n align: { vertical: AlignValue.Center, horizontal: AlignValue.Left },\n viewStyle: {\n backgroundColor: '#cc4400',\n },\n textStyle: {\n size: 16,\n color: '#f8f8f8',\n weight: FontWeight.Bold,\n },\n },\n {\n type: ComponentType.ImageButton,\n action: { type: ActionType.UIKit, data: 'uikit://delete' },\n width: { type: 'fixed', value: 20 },\n height: { type: 'fixed', value: 20 },\n imageUrl: 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n imageStyle: { contentMode: MediaContentMode.AspectFit },\n },\n ],\n },\n {\n type: ComponentType.Text,\n viewStyle: { padding: { top: 6, bottom: 12, left: 0, right: 0 } },\n text: 'Esse eu esse duis ipsum et dolor eu ut sit amet consectetur cillum velit officia. Ex adipisicing elit quis ea sit. Occaecat in eu aliqua nulla magna id ut excepteur minim.',\n maxTextLines: 2,\n textStyle: { size: 14, color: '#e10000' },\n width: { type: 'fixed', value: 200 },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.TextButton,\n action: { type: ActionType.Web, data: 'https://www.daum.net' },\n text: 'Button 3',\n textStyle: { size: 14, color: '#742ddd', weight: FontWeight.Bold },\n },\n ],\n },\n ],\n },\n};\nconst sample_2 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Image,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.naver.com/' },\n 'height': { 'type': 'fixed', 'value': 136 },\n 'imageUrl': 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 }, backgroundColor: '#cccccc' },\n 'layout': Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'items': [\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'fixed', value: 150 },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 } },\n 'text': 'Button 2',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 } },\n 'text': 'Button 3',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Sample2 text',\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': { 'type': ActionType.UIKit, 'data': 'uikit://delete' },\n 'width': { 'type': 'fixed', 'value': 20 },\n 'height': { 'type': 'fixed', 'value': 20 },\n 'imageUrl': 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFit },\n },\n ],\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'padding': { 'top': 6, 'bottom': 12, 'left': 0, 'right': 0 } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'size': 14 },\n },\n ],\n },\n ],\n },\n};\nconst sample_3 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'backgroundColor': '#ffffff', 'borderWidth': 1, 'borderColor': '#eeeeee', 'radius': 16 },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'height': { 'type': 'fixed', 'value': 200 },\n 'imageUrl': 'https://img.freepik.com/free-vector/cartoon-happy-hours-background_52683-81243.jpg?w=2000&t=st=1666689198~exp=1666689798~hmac=23109d44ba03deee7aee069cbeebfcb48fa27f85e53c1cafc5d5d7345f1a2041',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 15, 'bottom': 15, 'left': 15, 'right': 15 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': \"Don't miss these deals today\",\n 'maxTextLines': 1,\n 'textStyle': { 'size': 20, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 5, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': 'Pay with Maya and get cashback!',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 14, 'color': '#e10000' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://yt3.ggpht.com/ytc/AMLnZu8Kg89ymE7qt5bsS9vMqi9h2aHiN6m9ID-IgxR6-Q=s900-c-k-c0x00ffffff-no-rj',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Meralco',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://1000logos.net/wp-content/uploads/2021/12/Globe-Telecom-logo.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill, tintColor: '#a49a9a' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Globe',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Cignal.svg/640px-Cignal.svg.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Cignal',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e0e0e0',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Learn more',\n 'textStyle': { 'size': 15, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e10000',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Pay now',\n 'textStyle': { 'size': 15, 'color': '#ffffff', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_4 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://static.sendbird.com/sample/profiles/profile_40_512px.png',\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'imageStyle': {\n 'tintColor': '#44ff1188',\n },\n viewStyle: {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'hi',\n 'maxTextLines': 3,\n 'viewStyle': {\n 'padding': {\n 'top': 0,\n 'bottom': 6,\n 'left': 0,\n 'right': 0,\n },\n },\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'text': 'bye',\n 'maxTextLines': 10,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': {\n 'type': ActionType.UIKit,\n 'data': 'sendbirduikit://delete',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'metaData': {\n 'pixelWidth': 60,\n 'pixelHeight': 60,\n },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/sendbird-message-builder/icon-more.png',\n 'imageStyle': {\n 'tintColor': '#ff8d5a',\n },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-ULE240VNV-83fd5776e78e-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Chongbu',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': ' ',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-U02LA25KY8J-d41a3e8c7554-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Amanda',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': 'This is title message',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_5 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'fixed', 'value': '250' },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/notifications-default-image.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': '8',\n 'padding': {\n 'top': '12',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#ff8888',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'height': { 'type': 'fixed', 'value': '300' },\n 'width': { 'type': 'flex', 'value': '0' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': { 'radius': '100' },\n 'width': { 'type': 'fixed', 'value': 40 },\n 'height': { 'type': 'fixed', 'value': 40 },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': {\n 'pixelWidth': '240',\n 'pixelHeight': '240',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': '12',\n 'top': '0',\n 'right': '0',\n 'bottom': '0',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '{SBCOLOR_nppqb}',\n 'size': '16',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '{SBCOLOR_ls5oj}',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'left': '8',\n 'right': '0',\n 'top': '0',\n 'bottom': '0',\n },\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_6 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n height: { type: 'fixed', value: 600 },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': { 'radius': '8', 'padding': { 'top': '12', 'bottom': '12', 'left': '12', 'right': '12' } },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': { 'color': '#E0000000', 'size': '16', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'viewStyle': {},\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'text',\n 'viewStyle': { 'margin': { 'top': '8', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'color': '#E0000000', 'size': '14', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': { 'margin': { 'top': '12', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'text': 'Button 1',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n 'margin': { 'left': '8', 'right': '0', 'top': '0', 'bottom': '0' },\n },\n 'text': 'Button 2',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n ],\n },\n ],\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'image',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'imageUrl': 'https://file-preprod.sendbird.com/d03c08bb3f9041a88c1207b6bbf15ab8.png',\n 'metaData': { 'pixelWidth': '1062', 'pixelHeight': '1070' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'text': 'Button',\n 'textStyle': { 'color': '#742DDD', 'size': '16', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageUrl': 'https://file-preprod.sendbird.com/38fdf5c1056f42b89a44b38155cc4b49.jpg',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': { 'pixelWidth': '1080', 'pixelHeight': '2640' },\n 'action': { 'data': 'www.naver.com' },\n },\n ],\n 'viewStyle': {},\n },\n ],\n },\n};\nconst sample_for_inset_border = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#0e0101ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f9dadaff',\n 'borderColor': '#fb7373ff',\n 'borderWidth': '5',\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#bbd1f5ff',\n 'borderColor': '#0497f9ff',\n 'borderWidth': '10',\n 'padding': {\n 'top': '16',\n 'bottom': '16',\n 'left': '16',\n 'right': '16',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#298e04ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#a6b7ebff',\n 'borderColor': '#0f0ff9ff',\n 'borderWidth': '5',\n 'radius': '6',\n },\n 'text': 'Button',\n 'textStyle': {\n 'size': '14',\n 'color': '#ffffffff',\n 'weight': 'bold',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n 'borderColor': '#ff00b9ff',\n 'borderWidth': '5',\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-component-default-imgbutton.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'metaData': {\n 'pixelWidth': '72',\n 'pixelHeight': '72',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '36',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n {\n 'type': 'image',\n 'viewStyle': {\n 'backgroundColor': '#828282ff',\n 'borderColor': '#fe0000ff',\n 'borderWidth': '10',\n 'radius': '20',\n },\n 'imageUrl': 'https://file-preprod.sendbird.com/99c1ceafd8304076a7123caeea9aeb9a.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'metaData': {\n 'pixelHeight': '225',\n 'pixelWidth': '225',\n },\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_clipped_text__large_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'text',\n 'height': {\n 'type': 'fixed',\n 'value': 120,\n },\n 'width': {\n 'type': 'fixed',\n 'value': 150,\n },\n 'maxTextLines': 2,\n 'viewStyle': {\n 'padding': {\n 'left': 50,\n 'right': 50,\n 'top': 50,\n 'bottom': 50,\n },\n borderWidth: 1,\n borderColor: '#72723f',\n },\n 'text': 'longtext long long longtext',\n },\n ],\n },\n};\nconst sample_for_priority_by_size_spec = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed(short) / Wrap / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '30' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#050505',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#0c0c0c',\n 'borderWidth': '1',\n },\n },\n ],\n 'viewStyle': { 'borderColor': '#0a0a0a' },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed / Wrap(short) / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '2',\n 'right': '2',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap / Fixed / Fill / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short) / Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill Fill Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed Fixed Fixed Fixed Fixed Fixed Fixed ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(short) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(long) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'margin': {\n 'top': '0',\n 'bottom': '100',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0a1ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '8d7ba180-f065-4037-beb1-dd3797729bf2',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#adffa0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_longer = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_super_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 200,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 170,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_wrap_long_content = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'radius': 1,\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst dashboard_preset_list = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-template-preset-default-image.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'metaData': {\n 'pixelWidth': 686,\n 'pixelHeight': 320,\n },\n 'elementId': '0f3d6ba4-715a-44d2-b776-5bdd1aed8bc5',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': 8,\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '010811be-7c65-4aa8-8f8e-62c8398562b0',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': 8,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '00aca18f-3cdf-404d-9e01-9a99f59fb8ae',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n 'padding': {\n 'top': 4,\n 'right': 0,\n 'bottom': 4,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '35a315e9-1f61-4a72-b7c9-ce34a0543343',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ef3c83b2-9149-46c1-a22d-beb878cf937a',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a92ae89d-0726-46b5-b575-2db578b3d954',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ffb50576-f050-4a36-b64f-64864bb04734',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a9d30083-5b00-4ec6-bf2b-0b03c03b1632',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '61fefa7c-0a03-4c92-9b26-2f7620982e46',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'cb2dfa91-3076-406d-b0e9-3bfab75c91a1',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '88bb07e0-8226-4e03-b2a1-d8796a8d558e',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '169ca327-1784-4ae4-bb1c-52963268a1de',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '732ae02b-adff-46d2-b011-f94a2d93b4ba',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '1761210e-beab-4d19-ad12-3c7776ce066d',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3e69331-e4d1-44f9-bc1a-c0c8589d625e',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '065a4733-477d-4a15-a7d0-4559025db3c3',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '3e20f19a-58c6-40ec-8365-0e6ea12a6acb',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '2e8938ca-5574-4a58-a17c-9bff156a7456',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '9c79282d-928c-418e-8111-78a4e19c1353',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'radius': 6,\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3885375-bc4e-4117-8575-ec241a68091d',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'margin': {\n 'left': 8,\n 'right': 0,\n 'top': 0,\n 'bottom': 0,\n },\n 'radius': 6,\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '6f9acedd-e382-4f53-a350-bca2276e9b6b',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '37bae277-3300-4c2e-a308-c320d73c5725',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '62b096a3-0ee7-4467-a8be-9fa1109b257d',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'e2708cb7-b237-4ffb-86fe-3bb11b8400b8',\n },\n ],\n },\n ],\n },\n};\nconst socar_preset_booking_confirm = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'padding': { 'top': 5, 'bottom': 5, 'left': 0, 'right': 10 },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'items': [\n {\n 'type': 'imageButton',\n 'width': { 'type': 'fixed', 'value': 70 },\n 'height': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'imageUrl': 'https://search.pstatic.net/common?type=f&size=298x140&quality=95&direct=true&ttype=input&src=https%3A%2F%2Fimgauto-phinf.pstatic.net%2F20240116_168%2Fauto_17053701702442qv0L_PNG%2F20240116105600_9xS4XPiV.png',\n 'metaData': { 'pixelWidth': '149', 'pixelHeight': '70' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'text',\n 'text': '예약완료',\n 'width': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'right', 'vertical': 'center' },\n 'viewStyle': {\n 'backgroundColor': '#F0FAFF',\n 'radius': 4,\n 'padding': { 'top': 2, 'bottom': 1, 'left': 4, 'right': 4 },\n },\n 'textStyle': { 'color': '#3BC7FF', 'weight': 'bold', 'size': 12 },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '[슈퍼딜] 2024 포드 머스탱 컨버터블',\n 'textStyle': { 'weight': 'bold' },\n 'viewStyle': {\n 'margin': { 'top': 2 },\n },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '출발: 03.24.(금) 15:00\\n도착: 03.27.(월) 11:00',\n 'textStyle': { 'weight': 'normal' },\n 'maxTextLines': '2',\n },\n ],\n },\n {\n 'type': 'textButton',\n 'text': '선택',\n 'width': { 'type': 'fixed', 'value': 60 },\n 'height': { 'type': 'fixed', 'value': 30 },\n 'viewStyle': {\n 'radius': 17,\n 'padding': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 0 },\n },\n 'textStyle': { 'weight': 'bold' },\n 'maxTextLines': '1',\n },\n ],\n },\n ],\n },\n ],\n },\n};\nexport const samples_for_size_spec = [\n horizontal_wrap_wrap,\n horizontal_wrap_wrap_wrap,\n horizontal_fill_wrap,\n horizontal_fill_fill_wrap,\n horizontal_fill_wrap_fill_wrap,\n horizontal_fill_wrap_fill_wrap_long,\n horizontal_fill_wrap_fill_wrap_longer,\n horizontal_fill_wrap_fill_wrap_super_long,\n horizontal_fill_wrap_wrap_long_content,\n horizontal_fill_wrap_remain_padding,\n horizontal_fill_wrap_no_padding,\n vertical_fill_wrap_wrap_remain_padding,\n vertical_fill_wrap_wrap_no_padding,\n];\nexport const samples = [\n sample_1,\n sample_2,\n sample_3,\n sample_4,\n sample_5,\n sample_6,\n sample_for_inset_border,\n sample_clipped_text__large_padding,\n sample_for_priority_by_size_spec,\n dashboard_preset_list,\n socar_preset_booking_confirm,\n];\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect, useMemo, useRef, useState } from 'react';\nexport const CanvasReactMessageTemplateImage = (props) => {\n const { imageSize, canvasRef, canvasProps } = useCanvasMessageTemplateImage(props);\n return (React.createElement(\"canvas\", Object.assign({}, canvasProps, { ref: canvasRef, width: imageSize === null || imageSize === void 0 ? void 0 : imageSize.width, height: imageSize === null || imageSize === void 0 ? void 0 : imageSize.height, onError: props.onError })));\n};\nconst useCanvasMessageTemplateImage = (_a) => {\n var { metaData, tintColor } = _a, props = __rest(_a, [\"metaData\", \"tintColor\"]);\n const canvasRef = useRef(null);\n const [fallbackImageSize, setFallbackImageSize] = useState();\n const imageSize = useMemo(() => {\n if ((metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight) && (metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth)) {\n return { width: metaData.pixelWidth, height: metaData.pixelHeight };\n }\n return fallbackImageSize;\n }, [fallbackImageSize, metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight, metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth]);\n useEffect(() => {\n if (imageSize == null) {\n console.log('Canvas_ReactMessageTemplateImage: no metaData, render fit to container');\n if (canvasRef.current) {\n canvasRef.current.style.width = '100%';\n canvasRef.current.style.height = '100%';\n const containerSize = canvasRef.current.getBoundingClientRect();\n setFallbackImageSize(containerSize);\n }\n }\n }, [imageSize]);\n useEffect(() => {\n if (props.src) {\n const img = new Image();\n const onImageLoad = () => {\n if (canvasRef.current && tintColor && imageSize) {\n const ctx = canvasRef.current.getContext('2d');\n if (ctx) {\n const { width: imageWidth, height: imageHeight } = imageSize;\n // reset context before draw, consider `.save()` and `.restore()` api\n ctx.clearRect(0, 0, imageWidth, imageHeight);\n ctx.beginPath();\n ctx.globalCompositeOperation = 'source-over';\n ctx.fillStyle = '#000';\n // draw\n ctx.drawImage(img, 0, 0, imageWidth, imageHeight);\n ctx.globalCompositeOperation = 'source-atop';\n ctx.fillStyle = tintColor;\n ctx.fillRect(0, 0, imageWidth, imageHeight);\n }\n }\n };\n const onImageError = (event) => {\n var _a;\n // @ts-ignore\n (_a = props.onError) === null || _a === void 0 ? void 0 : _a.call(props, event);\n };\n img.addEventListener('load', onImageLoad);\n img.addEventListener('error', onImageError);\n img.src = props.src;\n return () => {\n img.removeEventListener('load', onImageLoad);\n img.removeEventListener('error', onImageError);\n };\n }\n return;\n }, [props.src, imageSize, tintColor]);\n return {\n canvasRef,\n canvasProps: props,\n imageSize,\n };\n};\n","import React from 'react';\nexport const ImgReactMessageTemplateImage = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const PlaceholderReactMessageTemplateImage = (props) => {\n return React.createElement(\"div\", { style: Object.assign(Object.assign({}, props.style), { backgroundColor: 'transparent' }) });\n};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useCallback, useEffect, useState } from 'react';\nimport { CanvasReactMessageTemplateImage } from './index.canvas';\nimport { ImgReactMessageTemplateImage } from './index.img';\nimport { PlaceholderReactMessageTemplateImage } from './index.placeholder';\nconst ReactMessageTemplateImage = (_a) => {\n var { tintColor, metaData } = _a, props = __rest(_a, [\"tintColor\", \"metaData\"]);\n const { hasError, onError } = useImageLoadError(props.src);\n if (props.onError)\n console.warn('`onError` is intercepted and not executed in the ReactMessageTemplateImage.');\n if (hasError) {\n return React.createElement(PlaceholderReactMessageTemplateImage, Object.assign({}, props));\n }\n else if (tintColor) {\n return React.createElement(CanvasReactMessageTemplateImage, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(ImgReactMessageTemplateImage, Object.assign({}, props, { onError: onError }));\n }\n};\nconst useImageLoadError = (source) => {\n const [hasError, setHasError] = useState(false);\n useEffect(() => setHasError(false), [source]);\n return {\n hasError,\n onError: useCallback(() => setHasError(true), []),\n };\n};\nexport default ReactMessageTemplateImage;\n","// create a context provider for MessageComponent\n// - this is a wrapper for MessageComponent\nimport React from 'react';\nconst MessageContext = React.createContext(null);\nconst MessageProvider = (props) => {\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction, children } = props;\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => React.useContext(MessageContext);\nexport { MessageProvider, useMessageContext };\n","import { ComponentType, FlexSizeSpecValue } from '@sendbird/uikit-message-template';\nexport function isWrappedText(view) {\n var _a;\n return view.type === ComponentType.Text && ((_a = view.width) === null || _a === void 0 ? void 0 : _a.value) == FlexSizeSpecValue.WrapContent;\n}\n// Compares the size spec to the option and returns whether they are equal or not.\nexport const isSizeCompatibleWithOption = ({ size, option, }) => {\n if (option === 'wrap') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.WrapContent;\n }\n if (option === 'fill') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.FillParent;\n }\n return size.type === 'fixed';\n};\n","import { useCallback, useEffect, useRef } from 'react';\n/**\n * Preserves a reference to the given callback function as an argument while the component is mounted.\n * Wraps the given callback in React's Ref to preserve the reference.\n * @param callback want to be preserved\n */\nexport function usePreservedCallback(callback) {\n const callbackRef = useRef(callback);\n useEffect(() => {\n callbackRef.current = callback;\n }, [callback]);\n return useCallback((...args) => {\n return callbackRef.current(...args);\n }, [callbackRef]);\n}\n","import { useCallback, useRef } from 'react';\nimport { usePreservedCallback } from './usePreservedCallback';\n/**\n * This hook can be used when you want to safely effect the value stored in useRef\n * Got this idea from https://github.com/facebook/react/issues/15176\n * @param callback\n * @param deps\n * @returns effect callback\n */\nexport function useRefEffect(callback, deps) {\n const preservedCallback = usePreservedCallback(callback);\n const disposeRef = useRef(noop);\n const effect = useCallback((element) => {\n disposeRef.current();\n disposeRef.current = noop;\n if (element != null) {\n const cleanup = callback(element);\n if (typeof cleanup === 'function') {\n disposeRef.current = cleanup;\n }\n }\n }, [preservedCallback, ...deps]);\n return effect;\n}\nfunction noop() { }\n","import { usePreservedCallback } from './usePreservedCallback';\nimport { useRefEffect } from './useRefEffect';\n/**\n * Subscribes to ResizeObserver on the component exposing the Ref,\n * to detect changes in the size of DOM elements.\n * The ResizeObserver API is required.\n * If you are targeting browsers that do not support that API, probably need to add appropriate polyfill too.\n * @param onResize\n * @returns ref\n */\nexport function useResizeObserver(onResize) {\n const resizeCallback = usePreservedCallback(onResize);\n const ref = useRefEffect((elem) => {\n const observer = new ResizeObserver((entries) => {\n if (entries[0] != null) {\n resizeCallback(entries[0]);\n }\n });\n observer.observe(elem);\n return () => {\n observer.unobserve(elem);\n };\n }, [resizeCallback]);\n return ref;\n}\n","import { useState } from 'react';\nimport { useResizeObserver } from './useResizeObserver';\n/**\n * @returns an element's width / height observed by IntersectionObserver,\n * and ref to detect its resize event\n */\nexport function useElementSize() {\n const [width, setWidth] = useState(-1);\n const [height, setHeight] = useState(-1);\n const [contentWidth, setContentWidth] = useState(-1);\n const [contentHeight, setContentHeight] = useState(-1);\n const [paddingWidth, setPaddingWidth] = useState(-1);\n const [paddingHeight, setPaddingHeight] = useState(-1);\n const ref = useResizeObserver((entry) => {\n // contentRect: content size only\n const { width: contentWidth, height: contentHeight } = entry.contentRect;\n // target: content + padding + border size\n const target = entry.target;\n const { width, height } = target.getBoundingClientRect();\n setWidth(width);\n setHeight(height);\n setContentWidth(contentWidth);\n setContentHeight(contentHeight);\n setPaddingWidth(width - contentWidth);\n setPaddingHeight(height - contentHeight);\n });\n return { ref, width, height, contentWidth, contentHeight, paddingWidth, paddingHeight };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { useEffect, useMemo } from 'react';\nimport { Layout, defaultProperties, useSizeContext } from '@sendbird/uikit-message-template';\nimport { isSizeCompatibleWithOption } from '../util';\nimport { useElementSize } from './useElementSize';\nfunction isViewCompatibleWithSizeOption({ width = defaultProperties.view.size.width, height = defaultProperties.view.size.height, parentLayout = defaultProperties.box.layout, option, }) {\n if (parentLayout === Layout.Row) {\n return isSizeCompatibleWithOption({\n size: width,\n option,\n });\n }\n return isSizeCompatibleWithOption({\n size: height,\n option,\n });\n}\nexport function useRecalculateWidth(params) {\n const { style, props } = params;\n const _a = useElementSize(), { ref: elemRef } = _a, size = __rest(_a, [\"ref\"]);\n const { updateSize, sizes } = useSizeContext();\n const { id, siblings, parentLayout } = props;\n const { width, height, paddingWidth, paddingHeight, contentWidth, contentHeight } = size;\n useEffect(() => {\n updateSize({\n id: props.id,\n width,\n height,\n paddingWidth,\n paddingHeight,\n contentWidth,\n contentHeight,\n });\n }, [props.id, width, height, paddingWidth, paddingHeight, contentWidth, contentHeight, updateSize]);\n const currentStyle = useMemo(() => {\n const sumViewSize = (acc = 0, view) => {\n var _a, _b, _c, _d;\n if (parentLayout === Layout.Row) {\n return acc + ((_b = (_a = sizes[view.id]) === null || _a === void 0 ? void 0 : _a.contentWidth) !== null && _b !== void 0 ? _b : 0);\n }\n return acc + ((_d = (_c = sizes[view.id]) === null || _c === void 0 ? void 0 : _c.contentHeight) !== null && _d !== void 0 ? _d : 0);\n };\n const hasFillOption = isViewCompatibleWithSizeOption({\n width: props.width,\n height: props.height,\n parentLayout,\n option: 'fill',\n });\n if (hasFillOption) {\n const wrapSiblingsSize = siblings\n .filter(({ width, height }) => !isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n }))\n .reduce(sumViewSize, 0);\n const fillSiblingCount = siblings.filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n })).length;\n const maxSizeOption = (() => {\n if (parentLayout === Layout.Row) {\n return {\n maxWidth: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n }\n return {\n maxHeight: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n })();\n return Object.assign(Object.assign(Object.assign({}, style), maxSizeOption), (width == 0 && { height: 0 }));\n }\n else {\n const currentElemIdx = siblings.findIndex((sibling) => sibling.id === id);\n const forwardSiblingsSize = siblings\n .slice(0, currentElemIdx)\n .filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'wrap',\n }))\n .reduce(sumViewSize, 0);\n return Object.assign(Object.assign(Object.assign({}, style), (width === 0 && { height: 0 })), (parentLayout === Layout.Row\n ? {\n maxWidth: `calc(100% - ${forwardSiblingsSize}px)`,\n }\n : {\n maxHeight: `calc(100% - ${forwardSiblingsSize}px)`,\n }));\n }\n }, [props.width, props.height, parentLayout, sizes, siblings, style, width, id]);\n return { recalculatedStyle: currentStyle, elemRef };\n}\n","import { ComponentType, FlexSizeSpecValue, Layout, MediaContentMode, alignInFlex, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { isWrappedText } from '../util';\nexport function getDefaultStyles(overrides) {\n return Object.assign({ display: 'flex', overflow: 'hidden', boxSizing: 'border-box' }, overrides);\n}\nexport function setViewProps(styles, props, options) {\n setViewSize(styles, props, options);\n setViewStyle(styles, props);\n}\nfunction setBorderStyle(styles, borderWidth, borderColor, radius) {\n if (borderWidth) {\n styles['--border-width'] = `${borderWidth}px`;\n styles['--border-color'] = borderColor || 'transparent';\n }\n if (radius) {\n styles['borderRadius'] = Number(radius);\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d;\n const { viewStyle } = props;\n if ((_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top)\n styles['marginTop'] = Number(viewStyle.margin.top);\n if ((_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.bottom)\n styles['marginBottom'] = Number(viewStyle.margin.bottom);\n if ((_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.left)\n styles['marginLeft'] = Number(viewStyle.margin.left);\n if ((_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.right)\n styles['marginRight'] = Number(viewStyle.margin.right);\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundColor)\n styles['backgroundColor'] = viewStyle.backgroundColor;\n // use JSON.stringify to escape special characters in image URL\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundImageUrl)\n styles['backgroundImage'] = `url(${JSON.stringify(viewStyle.backgroundImageUrl)})`;\n setBorderStyle(styles, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderWidth, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderColor, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.radius);\n}\nfunction getViewSizeStyle(width, height, parentLayout) {\n const style = {};\n if (width.type === 'flex' && width.value == FlexSizeSpecValue.FillParent) {\n style['width'] = '100%';\n if (parentLayout === Layout.Row) {\n style['flex'] = 1;\n }\n }\n else if (width.type === 'fixed' && width.value >= 0) {\n style['width'] = Number(width.value);\n }\n if (height.type === 'flex' && height.value == FlexSizeSpecValue.FillParent) {\n style['height'] = '100%';\n if (parentLayout === Layout.Column) {\n style['flex'] = 1;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = Number(height.value);\n }\n return style;\n}\nexport function setViewSize(styles, props, options) {\n var _a, _b;\n const { width: defaultWidth, height: defaultHeight } = defaultProperties.view.size;\n const { parentLayout } = options;\n const sizeStyle = getViewSizeStyle((_a = props.width) !== null && _a !== void 0 ? _a : defaultWidth, (_b = props.height) !== null && _b !== void 0 ? _b : defaultHeight, parentLayout);\n Object.assign(styles, sizeStyle);\n}\nexport function setAlign(styles, layout = defaultProperties.box.layout, align = defaultProperties.box.align) {\n if (layout === Layout.Row) {\n styles['flexDirection'] = 'row';\n styles['alignItems'] = alignInFlex(align.vertical);\n styles['justifyContent'] = alignInFlex(align.horizontal);\n }\n if (layout === Layout.Column) {\n styles['flexDirection'] = 'column';\n styles['alignItems'] = alignInFlex(align.horizontal);\n styles['justifyContent'] = alignInFlex(align.vertical);\n }\n}\nexport function setTextAlign(styles, align = defaultProperties.box.align.horizontal) {\n styles.textAlign = align;\n}\nexport function setImageStyle(styles, imageStyle) {\n const { contentMode = MediaContentMode.AspectFit } = imageStyle || {};\n if (contentMode) {\n switch (contentMode) {\n case MediaContentMode.AspectFill:\n styles['objectFit'] = 'cover';\n break;\n case MediaContentMode.AspectFit:\n styles['objectFit'] = 'contain';\n break;\n case MediaContentMode.ScalesToFill:\n styles['objectFit'] = 'fill';\n break;\n }\n }\n}\n// uses image meta-data to render images that doesn't break the UI\n// https://sendbird.atlassian.net/wiki/spaces/UK/pages/2008220608/Message+template+-+Image+policy\nexport function setImageAspectRatio(styles, props) {\n var _a, _b, _c, _d;\n const imageMetaData = props === null || props === void 0 ? void 0 : props.metaData;\n if (!(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelHeight) || !(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelWidth)) {\n return;\n }\n if (((_a = props === null || props === void 0 ? void 0 : props.width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed' || ((_b = props === null || props === void 0 ? void 0 : props.height) === null || _b === void 0 ? void 0 : _b.type) === 'fixed') {\n return;\n }\n styles['aspectRatio'] = `${(_c = props === null || props === void 0 ? void 0 : props.metaData) === null || _c === void 0 ? void 0 : _c.pixelWidth} / ${(_d = props === null || props === void 0 ? void 0 : props.metaData) === null || _d === void 0 ? void 0 : _d.pixelHeight}`;\n}\nexport function webkitLineClampStyles(numberOfLines) {\n return {\n WebkitLineClamp: numberOfLines,\n WebkitBoxOrient: 'vertical',\n display: '-webkit-box',\n overflow: 'hidden',\n overflowWrap: 'anywhere',\n flex: 1,\n };\n}\nexport function setTextStyle(styles, props, options) {\n const { textStyle, width } = props;\n // TODO: Change default as design\n const { size, color, weight = 'normal' } = textStyle || {};\n if (size)\n styles['fontSize'] = Number(size);\n if (color)\n styles['color'] = color;\n if (weight)\n styles['fontWeight'] = weight;\n if ((width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['maxWidth'] = '100%';\n }\n if (props.type === ComponentType.Text) {\n const { siblings, elemIdx } = options;\n // To push out any subsequent components from the container,\n // if a prior one is long enough to occupy an entire line\n // @link https://sendbird.atlassian.net/browse/NOTI-709\n if (siblings != null && siblings.length >= 2 && siblings.every(isWrappedText)) {\n styles.flexShrink = siblings.length - 1 === elemIdx ? 1 : 0;\n }\n }\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport { FlexSizeSpecValue, Layout, createMessageTemplate, createParser, createRenderer, } from '@sendbird/uikit-message-template';\nimport ReactMessageTemplateImage from '../components/ReactMessageTemplateImage';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport '../index.css';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, webkitLineClampStyles, } from '../styles';\nconst hasValidUrlProtocol = (url = '') => ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n/**\n * @param url - url to be checked\n * @returns url with http:// protocol if it doesn't have any protocol\n * @example\n * returnUrl('www.sendbird.com') // returns 'http://www.sendbird.com'\n * returnUrl('https://www.sendbird.com') // returns 'https://www.sendbird.com'\n * returnUrl('ftp://www.sendbird.com') // returns 'ftp://www.sendbird.com'\n * returnUrl('sendbird.com') // returns 'https://sendbird.com'\n **/\nconst returnUrl = (url = '') => {\n if (hasValidUrlProtocol(url)) {\n return url;\n }\n return `https://${url}`;\n};\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nconst ActionHandler = ({ className = '', style, children, props }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const onClick = (e) => {\n var _a, _b, _c, _d, _e;\n if (((_a = props === null || props === void 0 ? void 0 : props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction === null || handleWebAction === void 0 ? void 0 : handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(returnUrl((_b = props === null || props === void 0 ? void 0 : props.action) === null || _b === void 0 ? void 0 : _b.data), '_blank', 'noopener noreferrer')) === null || _c === void 0 ? void 0 : _c.focus();\n }\n }\n if (((_d = props === null || props === void 0 ? void 0 : props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n handleCustomAction === null || handleCustomAction === void 0 ? void 0 : handleCustomAction(e, props.action, message);\n }\n if (((_e = props === null || props === void 0 ? void 0 : props.action) === null || _e === void 0 ? void 0 : _e.type) === 'uikit') {\n handlePredefinedAction === null || handlePredefinedAction === void 0 ? void 0 : handlePredefinedAction(e, props.action, message);\n }\n };\n const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? ' sb-message-template__border' : '';\n if (className === 'sb-message-template__text-button') {\n return (React.createElement(\"button\", { className: `${className}${borderClass}`, \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, style), { paddingTop: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top, paddingRight: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.right, paddingBottom: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.bottom, paddingLeft: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.left }), onClick: onClick }, children));\n }\n const { display, flexDirection, justifyContent, alignItems, objectFit } = recalculatedStyle, wrapperStyles = __rest(recalculatedStyle, [\"display\", \"flexDirection\", \"justifyContent\", \"alignItems\", \"objectFit\"]);\n return (React.createElement(\"div\", { ref: elemRef, className: `${className}${borderClass} ${(props === null || props === void 0 ? void 0 : props.action) ? 'sb-message-template__action' : ''}`, \"data-sb-template-id\": props.elementId, style: wrapperStyles, onClick: onClick },\n React.createElement(\"div\", { style: {\n display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit,\n width: '100%',\n height: '100%',\n paddingTop: (_l = (_k = props.viewStyle) === null || _k === void 0 ? void 0 : _k.padding) === null || _l === void 0 ? void 0 : _l.top,\n paddingRight: (_o = (_m = props.viewStyle) === null || _m === void 0 ? void 0 : _m.padding) === null || _o === void 0 ? void 0 : _o.right,\n paddingBottom: (_q = (_p = props.viewStyle) === null || _p === void 0 ? void 0 : _p.padding) === null || _q === void 0 ? void 0 : _q.bottom,\n paddingLeft: (_s = (_r = props.viewStyle) === null || _r === void 0 ? void 0 : _r.padding) === null || _s === void 0 ? void 0 : _s.left,\n } }, children)));\n};\n/**\n * Text that is fixed or fill parent should be wrapped in a div with max-width: 100% and max-height: 100%\n * This is to prevent text from overflowing the padding of the container\n */\nfunction isFixedOrFill(view) {\n var _a, _b, _c, _d;\n const heightType = (_a = view === null || view === void 0 ? void 0 : view.height) === null || _a === void 0 ? void 0 : _a.type;\n const widthType = (_b = view === null || view === void 0 ? void 0 : view.width) === null || _b === void 0 ? void 0 : _b.type;\n const isFixedDiamension = heightType === 'fixed' || widthType === 'fixed';\n const isFill = (heightType === 'flex' && ((_c = view === null || view === void 0 ? void 0 : view.height) === null || _c === void 0 ? void 0 : _c.value) === FlexSizeSpecValue.FillParent) ||\n (widthType === 'flex' && ((_d = view === null || view === void 0 ? void 0 : view.width) === null || _d === void 0 ? void 0 : _d.value) === FlexSizeSpecValue.FillParent);\n return isFixedDiamension || isFill;\n}\nfunction renderText(view) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const isMultiLine = maxTextLines != null && maxTextLines > 0;\n if (isMultiLine || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((isMultiLine || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, text) : text));\n }\n return text;\n}\nexport const renderer = createRenderer({\n views: {\n box(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__box\", elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n image(props) {\n var _a;\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n textButton(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text-button\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n imageButton(props) {\n var _a;\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container sb-message-template__image-button\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image-button\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n },\n});\nexport const parser = createParser({\n mapBoxProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setAlign(styles, props.layout, props.align);\n return styles;\n },\n mapTextProps(props, options) {\n var _a;\n const styles = getDefaultStyles({ whiteSpace: 'pre-line' });\n // Better not set flex 1 to text\n setViewProps(styles, props, options);\n setTextStyle(styles, props, options);\n setAlign(styles, Layout.Row, props.align);\n setTextAlign(styles, (_a = props.align) === null || _a === void 0 ? void 0 : _a.horizontal);\n return styles;\n },\n mapImageProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapTextButtonProps(props, options) {\n const styles = getDefaultStyles({ whiteSpace: 'pre-line', alignItems: 'center', justifyContent: 'center' });\n setViewProps(styles, props, options);\n setTextStyle(styles, Object.assign(Object.assign({}, props), { textStyle: Object.assign({ weight: 500 }, props.textStyle) }), options);\n return styles;\n },\n mapImageButtonProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n});\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children }) => {\n return (React.createElement(\"div\", { className: \"sb-message-template__parent\", style: {\n display: 'flex',\n flexDirection: 'column',\n maxWidth: 400,\n backgroundColor: '#cecece',\n marginBottom: 24,\n borderRadius: '8px',\n } }, children));\n },\n});\n"],"names":["React","__rest","this"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]}