@sendbird/uikit-react 3.16.9 → 3.16.10

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 (861) hide show
  1. package/App.js +88 -88
  2. package/CHANGELOG.md +4 -0
  3. package/Channel/components/ChannelHeader.js +32 -32
  4. package/Channel/components/ChannelUI.js +67 -67
  5. package/Channel/components/FileViewer.js +30 -30
  6. package/Channel/components/FrozenNotification.js +6 -6
  7. package/Channel/components/Message.js +56 -56
  8. package/Channel/components/MessageInput.js +43 -43
  9. package/Channel/components/MessageInputWrapper.js +43 -43
  10. package/Channel/components/MessageList.js +60 -60
  11. package/Channel/components/RemoveMessageModal.js +29 -29
  12. package/Channel/components/SuggestedMentionList.js +29 -29
  13. package/Channel/components/TypingIndicator.js +9 -9
  14. package/Channel/components/UnreadCount.js +8 -8
  15. package/Channel/context.js +23 -23
  16. package/Channel/hooks/useHandleUploadFiles.js +18 -18
  17. package/Channel/hooks/useInitialMessagesFetch.js +8 -8
  18. package/Channel/utils/compareMessagesForGrouping.js +8 -8
  19. package/Channel/utils/getMessagePartsInfo.js +9 -9
  20. package/Channel.js +67 -67
  21. package/ChannelList/components/AddChannel.js +88 -88
  22. package/ChannelList/components/ChannelListHeader.js +13 -13
  23. package/ChannelList/components/ChannelListUI.js +88 -88
  24. package/ChannelList/components/ChannelPreview.js +32 -32
  25. package/ChannelList/components/ChannelPreviewAction.js +17 -17
  26. package/ChannelList/context.js +14 -14
  27. package/ChannelList.js +88 -88
  28. package/ChannelSettings/components/ChannelProfile.js +23 -23
  29. package/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
  30. package/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
  31. package/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  32. package/ChannelSettings/components/ChannelSettingsUI.js +31 -31
  33. package/ChannelSettings/components/EditDetailsModal.js +19 -19
  34. package/ChannelSettings/components/LeaveChannel.js +20 -20
  35. package/ChannelSettings/components/ModerationPanel.js +29 -29
  36. package/ChannelSettings/components/UserListItem.js +19 -19
  37. package/ChannelSettings/components/UserPanel.js +28 -28
  38. package/ChannelSettings/context.js +9 -9
  39. package/ChannelSettings/hooks/useMenuList.js +29 -29
  40. package/ChannelSettings.js +31 -31
  41. package/CreateChannel/components/CreateChannelUI.js +88 -88
  42. package/CreateChannel/components/InviteUsers.js +88 -88
  43. package/CreateChannel/components/SelectChannelType.js +88 -88
  44. package/CreateChannel/context.js +88 -88
  45. package/CreateChannel.js +88 -88
  46. package/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
  47. package/CreateOpenChannel/context.js +4 -4
  48. package/CreateOpenChannel.js +15 -15
  49. package/EditUserProfile/components/EditUserProfileUI.js +15 -15
  50. package/EditUserProfile/context.js +1 -1
  51. package/EditUserProfile.js +15 -15
  52. package/GroupChannel/components/FileViewer.js +28 -28
  53. package/GroupChannel/components/FrozenNotification.js +6 -6
  54. package/GroupChannel/components/GroupChannelHeader.js +29 -29
  55. package/GroupChannel/components/GroupChannelUI.js +63 -63
  56. package/GroupChannel/components/Message.js +54 -54
  57. package/GroupChannel/components/MessageInputWrapper.js +41 -41
  58. package/GroupChannel/components/MessageList.js +56 -56
  59. package/GroupChannel/components/RemoveMessageModal.js +27 -27
  60. package/GroupChannel/components/SuggestedMentionList.js +15 -15
  61. package/GroupChannel/components/TypingIndicator.js +9 -9
  62. package/GroupChannel/components/UnreadCount.js +8 -8
  63. package/GroupChannel/context.js +15 -15
  64. package/GroupChannel.js +63 -63
  65. package/GroupChannelList/components/AddGroupChannel.js +88 -88
  66. package/GroupChannelList/components/GroupChannelListHeader.js +13 -13
  67. package/GroupChannelList/components/GroupChannelListItem.js +32 -32
  68. package/GroupChannelList/components/GroupChannelListUI.js +88 -88
  69. package/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
  70. package/GroupChannelList/context.js +10 -10
  71. package/GroupChannelList.js +88 -88
  72. package/MessageSearch/components/MessageSearchUI.js +20 -20
  73. package/MessageSearch/context.js +6 -6
  74. package/MessageSearch.js +22 -22
  75. package/OpenChannel/components/FrozenChannelNotification.js +5 -5
  76. package/OpenChannel/components/OpenChannelHeader.js +20 -20
  77. package/OpenChannel/components/OpenChannelInput.js +29 -29
  78. package/OpenChannel/components/OpenChannelMessage.js +39 -39
  79. package/OpenChannel/components/OpenChannelMessageList.js +43 -43
  80. package/OpenChannel/components/OpenChannelUI.js +43 -43
  81. package/OpenChannel/context.js +19 -19
  82. package/OpenChannel.js +43 -43
  83. package/OpenChannelList/components/OpenChannelListUI.js +17 -17
  84. package/OpenChannelList/components/OpenChannelPreview.js +6 -6
  85. package/OpenChannelList/context.js +6 -6
  86. package/OpenChannelList.js +17 -17
  87. package/OpenChannelSettings/components/EditDetailsModal.js +18 -18
  88. package/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
  89. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
  90. package/OpenChannelSettings/components/OperatorUI.js +24 -24
  91. package/OpenChannelSettings/components/ParticipantUI.js +22 -22
  92. package/OpenChannelSettings/context.js +6 -6
  93. package/OpenChannelSettings.js +24 -24
  94. package/SendbirdProvider.js +23 -23
  95. package/Thread/components/ParentMessageInfo.js +49 -49
  96. package/Thread/components/ParentMessageInfoItem.js +34 -34
  97. package/Thread/components/ThreadHeader.js +8 -8
  98. package/Thread/components/ThreadList.js +56 -56
  99. package/Thread/components/ThreadListItem.js +56 -56
  100. package/Thread/components/ThreadMessageInput.js +46 -46
  101. package/Thread/components/ThreadUI.js +62 -62
  102. package/Thread/context.js +15 -15
  103. package/Thread.js +62 -62
  104. package/VoicePlayer/context.js +6 -6
  105. package/VoicePlayer/useVoicePlayer.js +14 -14
  106. package/VoiceRecorder/context.js +13 -13
  107. package/VoiceRecorder/useVoiceRecorder.js +12 -12
  108. package/chunks/{bundle-B7LJP6uD.js → bundle-3CHYtOfL.js} +3 -3
  109. package/chunks/{bundle-B7LJP6uD.js.map → bundle-3CHYtOfL.js.map} +1 -1
  110. package/chunks/{bundle-B83hoJ_j.js → bundle-3CVJzoCD.js} +3 -3
  111. package/chunks/{bundle-B83hoJ_j.js.map → bundle-3CVJzoCD.js.map} +1 -1
  112. package/chunks/{bundle-CwFhwvI0.js → bundle-ACCb-8jH.js} +7 -7
  113. package/chunks/{bundle-CwFhwvI0.js.map → bundle-ACCb-8jH.js.map} +1 -1
  114. package/chunks/{bundle-CcE78WZ0.js → bundle-Aco00fYQ.js} +5 -5
  115. package/chunks/{bundle-CcE78WZ0.js.map → bundle-Aco00fYQ.js.map} +1 -1
  116. package/chunks/{bundle-D6fvLhSj.js → bundle-B2xZfK-0.js} +1 -1
  117. package/chunks/bundle-B2xZfK-0.js.map +1 -0
  118. package/chunks/{bundle-DLBFowSs.js → bundle-B3WRbBWS.js} +4 -4
  119. package/chunks/{bundle-DLBFowSs.js.map → bundle-B3WRbBWS.js.map} +1 -1
  120. package/chunks/{bundle-_QhzybuL.js → bundle-B3evQLd6.js} +1 -1
  121. package/chunks/bundle-B3evQLd6.js.map +1 -0
  122. package/chunks/{bundle-ByIYMALs.js → bundle-B5sQzSv9.js} +3 -3
  123. package/chunks/{bundle-ByIYMALs.js.map → bundle-B5sQzSv9.js.map} +1 -1
  124. package/chunks/{bundle-DkDPgJrt.js → bundle-B6R3QLUf.js} +8 -8
  125. package/chunks/bundle-B6R3QLUf.js.map +1 -0
  126. package/chunks/{bundle-CQmP70o-.js → bundle-B8vkzJuS.js} +4 -4
  127. package/chunks/bundle-B8vkzJuS.js.map +1 -0
  128. package/chunks/{bundle-ZNC8CUp_.js → bundle-BAYOQ4lI.js} +1 -1
  129. package/chunks/bundle-BAYOQ4lI.js.map +1 -0
  130. package/chunks/{bundle-jH_7tVuA.js → bundle-BBPPwBP-.js} +5 -5
  131. package/chunks/{bundle-jH_7tVuA.js.map → bundle-BBPPwBP-.js.map} +1 -1
  132. package/chunks/{bundle-B5YnH_bZ.js → bundle-BCC98_OB.js} +1 -1
  133. package/chunks/bundle-BCC98_OB.js.map +1 -0
  134. package/chunks/{bundle-DrsCAuld.js → bundle-BCO1ipEu.js} +7 -7
  135. package/chunks/bundle-BCO1ipEu.js.map +1 -0
  136. package/chunks/{bundle-xdBGfpYx.js → bundle-BDhzQNdy.js} +7 -7
  137. package/chunks/bundle-BDhzQNdy.js.map +1 -0
  138. package/chunks/{bundle-DLOgtfcc.js → bundle-BGUnAtSK.js} +9 -9
  139. package/chunks/{bundle-DLOgtfcc.js.map → bundle-BGUnAtSK.js.map} +1 -1
  140. package/chunks/{bundle-CDxHBrmg.js → bundle-BKsKPtjg.js} +6 -6
  141. package/chunks/{bundle-CDxHBrmg.js.map → bundle-BKsKPtjg.js.map} +1 -1
  142. package/chunks/{bundle-w0Ht9vHs.js → bundle-BOofcNOh.js} +4 -4
  143. package/chunks/bundle-BOofcNOh.js.map +1 -0
  144. package/chunks/{bundle-BZ2wHbrz.js → bundle-BTCLPh_U.js} +1 -1
  145. package/chunks/bundle-BTCLPh_U.js.map +1 -0
  146. package/chunks/{bundle-tjmSjVLm.js → bundle-BZcIM6nq.js} +4 -4
  147. package/chunks/bundle-BZcIM6nq.js.map +1 -0
  148. package/chunks/{bundle-C5qGxiDg.js → bundle-BsU9k0LR.js} +5 -5
  149. package/chunks/{bundle-C5qGxiDg.js.map → bundle-BsU9k0LR.js.map} +1 -1
  150. package/chunks/{bundle-Cs7mmSeL.js → bundle-Bu_CIwDm.js} +5 -5
  151. package/chunks/{bundle-Cs7mmSeL.js.map → bundle-Bu_CIwDm.js.map} +1 -1
  152. package/chunks/{bundle-DnyHxqQ0.js → bundle-Bv2JmaC2.js} +1 -1
  153. package/chunks/bundle-Bv2JmaC2.js.map +1 -0
  154. package/chunks/{bundle-BntU6xha.js → bundle-Bx8Sqjji.js} +1 -1
  155. package/chunks/bundle-Bx8Sqjji.js.map +1 -0
  156. package/chunks/{bundle-CmEWKIf3.js → bundle-C1jXTlgM.js} +3 -3
  157. package/chunks/bundle-C1jXTlgM.js.map +1 -0
  158. package/chunks/{bundle-BmyxRq9a.js → bundle-C4olSBX9.js} +14 -14
  159. package/chunks/{bundle-BmyxRq9a.js.map → bundle-C4olSBX9.js.map} +1 -1
  160. package/chunks/{bundle-CNfgarJU.js → bundle-C6gxsmD2.js} +10 -10
  161. package/chunks/{bundle-CNfgarJU.js.map → bundle-C6gxsmD2.js.map} +1 -1
  162. package/chunks/{bundle-Bpv5h56D.js → bundle-C9Yf8_3z.js} +1 -1
  163. package/chunks/bundle-C9Yf8_3z.js.map +1 -0
  164. package/chunks/{bundle-T8eF3MdZ.js → bundle-CAqNV7Jw.js} +1 -1
  165. package/chunks/bundle-CAqNV7Jw.js.map +1 -0
  166. package/chunks/{bundle-DgySHYkz.js → bundle-CDtkDyUw.js} +1 -1
  167. package/chunks/bundle-CDtkDyUw.js.map +1 -0
  168. package/chunks/{bundle-BX570l_k.js → bundle-CEq1fSuU.js} +3 -3
  169. package/chunks/bundle-CEq1fSuU.js.map +1 -0
  170. package/chunks/{bundle-C5Ih9B7Z.js → bundle-CGpoAabY.js} +1 -1
  171. package/chunks/bundle-CGpoAabY.js.map +1 -0
  172. package/chunks/{bundle-DOwPISeS.js → bundle-CHc1MI8A.js} +1 -1
  173. package/chunks/bundle-CHc1MI8A.js.map +1 -0
  174. package/chunks/{bundle-Cx0ij_p6.js → bundle-CKuLtDzG.js} +2 -2
  175. package/chunks/{bundle-Cx0ij_p6.js.map → bundle-CKuLtDzG.js.map} +1 -1
  176. package/chunks/{bundle-DMq4hDJ1.js → bundle-CRws5m69.js} +6 -6
  177. package/chunks/bundle-CRws5m69.js.map +1 -0
  178. package/chunks/{bundle-Bmdb9pIK.js → bundle-CUmaXfSc.js} +3 -3
  179. package/chunks/{bundle-Bmdb9pIK.js.map → bundle-CUmaXfSc.js.map} +1 -1
  180. package/chunks/{bundle-Wf7fEqRo.js → bundle-CWD0lpsm.js} +2 -2
  181. package/chunks/bundle-CWD0lpsm.js.map +1 -0
  182. package/chunks/{bundle-C3Ez17kh.js → bundle-CXy1tE2N.js} +4 -4
  183. package/chunks/bundle-CXy1tE2N.js.map +1 -0
  184. package/chunks/{bundle-D9ylcucS.js → bundle-CbWfQs4h.js} +1 -1
  185. package/chunks/bundle-CbWfQs4h.js.map +1 -0
  186. package/chunks/{bundle-CdILp5Ht.js → bundle-CdFl8VL-.js} +1 -1
  187. package/chunks/{bundle-CdILp5Ht.js.map → bundle-CdFl8VL-.js.map} +1 -1
  188. package/chunks/{bundle-ByFGGKX5.js → bundle-CkomHGIj.js} +2 -2
  189. package/chunks/bundle-CkomHGIj.js.map +1 -0
  190. package/chunks/{bundle-DFYOnVXR.js → bundle-Cl49DqSv.js} +1 -1
  191. package/chunks/bundle-Cl49DqSv.js.map +1 -0
  192. package/chunks/{bundle-Eoom7SNM.js → bundle-CmS7TEQp.js} +1 -1
  193. package/chunks/{bundle-Eoom7SNM.js.map → bundle-CmS7TEQp.js.map} +1 -1
  194. package/chunks/{bundle-x_BFBJ3V.js → bundle-CtHkArHb.js} +3 -3
  195. package/chunks/bundle-CtHkArHb.js.map +1 -0
  196. package/chunks/{bundle-bk-seQq_.js → bundle-CuuC8Lgb.js} +11 -11
  197. package/chunks/{bundle-bk-seQq_.js.map → bundle-CuuC8Lgb.js.map} +1 -1
  198. package/chunks/{bundle-DZz3KH2o.js → bundle-D-bmcHk9.js} +12 -12
  199. package/chunks/{bundle-DZz3KH2o.js.map → bundle-D-bmcHk9.js.map} +1 -1
  200. package/chunks/{bundle-CUG8aQUl.js → bundle-D13EwQ7_.js} +7 -7
  201. package/chunks/{bundle-CUG8aQUl.js.map → bundle-D13EwQ7_.js.map} +1 -1
  202. package/chunks/{bundle-CjtOeKDH.js → bundle-D6tIALJA.js} +2 -2
  203. package/chunks/bundle-D6tIALJA.js.map +1 -0
  204. package/chunks/{bundle-XT9o5ifH.js → bundle-D8RfKZgw.js} +33 -33
  205. package/chunks/{bundle-XT9o5ifH.js.map → bundle-D8RfKZgw.js.map} +1 -1
  206. package/chunks/{bundle-BIpsQoZM.js → bundle-DG90mvnD.js} +1 -1
  207. package/chunks/bundle-DG90mvnD.js.map +1 -0
  208. package/chunks/{bundle-BugRLq09.js → bundle-DH6qrVST.js} +14 -14
  209. package/chunks/{bundle-BugRLq09.js.map → bundle-DH6qrVST.js.map} +1 -1
  210. package/chunks/{bundle-CoqWx1L6.js → bundle-DHMhzdxb.js} +3 -3
  211. package/chunks/bundle-DHMhzdxb.js.map +1 -0
  212. package/chunks/{bundle-BTRsBhSP.js → bundle-DIah6iEu.js} +1 -1
  213. package/chunks/bundle-DIah6iEu.js.map +1 -0
  214. package/chunks/{bundle-CxvcwY-S.js → bundle-DKux8SCz.js} +2 -2
  215. package/chunks/bundle-DKux8SCz.js.map +1 -0
  216. package/chunks/{bundle-DYBstvIJ.js → bundle-DOmw9Gpn.js} +2 -2
  217. package/chunks/{bundle-DYBstvIJ.js.map → bundle-DOmw9Gpn.js.map} +1 -1
  218. package/chunks/{bundle-KRH4HO2b.js → bundle-DTJNwlmx.js} +1 -1
  219. package/chunks/bundle-DTJNwlmx.js.map +1 -0
  220. package/chunks/{bundle-Dpbh5U_k.js → bundle-DUJfOwP_.js} +15 -15
  221. package/chunks/{bundle-Dpbh5U_k.js.map → bundle-DUJfOwP_.js.map} +1 -1
  222. package/chunks/{bundle-ClP2v0RX.js → bundle-DUX1Cjzd.js} +3 -3
  223. package/chunks/bundle-DUX1Cjzd.js.map +1 -0
  224. package/chunks/{bundle-CkN5BpDO.js → bundle-DYQiIYiA.js} +12 -12
  225. package/chunks/bundle-DYQiIYiA.js.map +1 -0
  226. package/chunks/{bundle-BSKWHbiZ.js → bundle-Dd9BwqXA.js} +10 -10
  227. package/chunks/{bundle-BSKWHbiZ.js.map → bundle-Dd9BwqXA.js.map} +1 -1
  228. package/chunks/{bundle-DjDbKets.js → bundle-DeDylv-S.js} +4 -4
  229. package/chunks/bundle-DeDylv-S.js.map +1 -0
  230. package/chunks/{bundle-BYR5uV_H.js → bundle-Dhfbe9sC.js} +1 -1
  231. package/chunks/{bundle-BYR5uV_H.js.map → bundle-Dhfbe9sC.js.map} +1 -1
  232. package/chunks/{bundle-Bt2DqAYD.js → bundle-DiEyJmQO.js} +12 -12
  233. package/chunks/{bundle-Bt2DqAYD.js.map → bundle-DiEyJmQO.js.map} +1 -1
  234. package/chunks/{bundle-D7cX9Fjm.js → bundle-DlIBbbMW.js} +5 -5
  235. package/chunks/bundle-DlIBbbMW.js.map +1 -0
  236. package/chunks/{bundle-BKZt9o1F.js → bundle-DoyzmJ4N.js} +1 -1
  237. package/chunks/{bundle-BKZt9o1F.js.map → bundle-DoyzmJ4N.js.map} +1 -1
  238. package/chunks/{bundle-bKvynVo7.js → bundle-DqEFK1h_.js} +1 -1
  239. package/chunks/{bundle-bKvynVo7.js.map → bundle-DqEFK1h_.js.map} +1 -1
  240. package/chunks/{bundle-paE3yw-E.js → bundle-DqzK0oqW.js} +1 -1
  241. package/chunks/bundle-DqzK0oqW.js.map +1 -0
  242. package/chunks/{bundle-BoCpB627.js → bundle-Ds9YPch2.js} +1 -1
  243. package/chunks/bundle-Ds9YPch2.js.map +1 -0
  244. package/chunks/{bundle-DkXJrVqz.js → bundle-Dsv3ZewI.js} +1 -1
  245. package/chunks/{bundle-DkXJrVqz.js.map → bundle-Dsv3ZewI.js.map} +1 -1
  246. package/chunks/{bundle-D_w8WEfL.js → bundle-DtNksMAv.js} +2 -2
  247. package/chunks/bundle-DtNksMAv.js.map +1 -0
  248. package/chunks/{bundle-CTtRmLaQ.js → bundle-Dub55x6v.js} +1 -1
  249. package/chunks/bundle-Dub55x6v.js.map +1 -0
  250. package/chunks/{bundle-CQY1Vhgt.js → bundle-DvgpzYAA.js} +1 -1
  251. package/chunks/bundle-DvgpzYAA.js.map +1 -0
  252. package/chunks/{bundle-MU-n4WB7.js → bundle-Dx_38OXn.js} +4 -4
  253. package/chunks/bundle-Dx_38OXn.js.map +1 -0
  254. package/chunks/{bundle-DCmMZLn8.js → bundle-DzLymkLP.js} +4 -4
  255. package/chunks/bundle-DzLymkLP.js.map +1 -0
  256. package/chunks/{bundle-CvXosgMy.js → bundle-DzcjF4A8.js} +6 -6
  257. package/chunks/bundle-DzcjF4A8.js.map +1 -0
  258. package/chunks/{bundle-BZABTuI8.js → bundle-EGZmMlDM.js} +8 -8
  259. package/chunks/bundle-EGZmMlDM.js.map +1 -0
  260. package/chunks/{bundle-Cx8h9ZUu.js → bundle-JgyblkJN.js} +1 -1
  261. package/chunks/bundle-JgyblkJN.js.map +1 -0
  262. package/chunks/{bundle-C7EvDKbp.js → bundle-QM2xJiUK.js} +4 -4
  263. package/chunks/{bundle-C7EvDKbp.js.map → bundle-QM2xJiUK.js.map} +1 -1
  264. package/chunks/{bundle-nHCcLxQh.js → bundle-QXr6AixH.js} +7 -7
  265. package/chunks/bundle-QXr6AixH.js.map +1 -0
  266. package/chunks/{bundle-D4Qx18jn.js → bundle-RS55OcKI.js} +9 -9
  267. package/chunks/bundle-RS55OcKI.js.map +1 -0
  268. package/chunks/{bundle-BID6Oznq.js → bundle-SYD-r_6g.js} +3 -3
  269. package/chunks/{bundle-BID6Oznq.js.map → bundle-SYD-r_6g.js.map} +1 -1
  270. package/chunks/{bundle-BBzNJkTC.js → bundle-T9VvSLxm.js} +1 -1
  271. package/chunks/bundle-T9VvSLxm.js.map +1 -0
  272. package/chunks/{bundle-DcJrfmnR.js → bundle-dMfcSy1Y.js} +1 -1
  273. package/chunks/bundle-dMfcSy1Y.js.map +1 -0
  274. package/chunks/{bundle-DQI9pg8J.js → bundle-fPmYhgod.js} +8 -8
  275. package/chunks/bundle-fPmYhgod.js.map +1 -0
  276. package/chunks/{bundle-DuxNodq3.js → bundle-jrAqoPyl.js} +12 -12
  277. package/chunks/{bundle-DuxNodq3.js.map → bundle-jrAqoPyl.js.map} +1 -1
  278. package/chunks/{bundle-BvGPxdgc.js → bundle-k5pprEL4.js} +1 -1
  279. package/chunks/{bundle-BvGPxdgc.js.map → bundle-k5pprEL4.js.map} +1 -1
  280. package/chunks/{bundle-DFoa4qG2.js → bundle-nKIgcO8K.js} +12 -12
  281. package/chunks/bundle-nKIgcO8K.js.map +1 -0
  282. package/chunks/{bundle-Dxu9l-xP.js → bundle-nXrIKErN.js} +4 -4
  283. package/chunks/{bundle-Dxu9l-xP.js.map → bundle-nXrIKErN.js.map} +1 -1
  284. package/chunks/{bundle-BjQE3gm1.js → bundle-nrt9J4FH.js} +5 -5
  285. package/chunks/{bundle-BjQE3gm1.js.map → bundle-nrt9J4FH.js.map} +1 -1
  286. package/chunks/{bundle-DKW7_WWj.js → bundle-tHlm6elM.js} +8 -8
  287. package/chunks/bundle-tHlm6elM.js.map +1 -0
  288. package/chunks/{bundle-BVGPrS-0.js → bundle-zMH_A6RI.js} +4 -4
  289. package/chunks/{bundle-BVGPrS-0.js.map → bundle-zMH_A6RI.js.map} +1 -1
  290. package/cjs/App.js +88 -88
  291. package/cjs/Channel/components/ChannelHeader.js +32 -32
  292. package/cjs/Channel/components/ChannelUI.js +67 -67
  293. package/cjs/Channel/components/FileViewer.js +30 -30
  294. package/cjs/Channel/components/FrozenNotification.js +6 -6
  295. package/cjs/Channel/components/Message.js +56 -56
  296. package/cjs/Channel/components/MessageInput.js +43 -43
  297. package/cjs/Channel/components/MessageInputWrapper.js +43 -43
  298. package/cjs/Channel/components/MessageList.js +60 -60
  299. package/cjs/Channel/components/RemoveMessageModal.js +29 -29
  300. package/cjs/Channel/components/SuggestedMentionList.js +29 -29
  301. package/cjs/Channel/components/TypingIndicator.js +9 -9
  302. package/cjs/Channel/components/UnreadCount.js +8 -8
  303. package/cjs/Channel/context.js +23 -23
  304. package/cjs/Channel/hooks/useHandleUploadFiles.js +18 -18
  305. package/cjs/Channel/hooks/useInitialMessagesFetch.js +8 -8
  306. package/cjs/Channel/utils/compareMessagesForGrouping.js +8 -8
  307. package/cjs/Channel/utils/getMessagePartsInfo.js +9 -9
  308. package/cjs/Channel.js +67 -67
  309. package/cjs/ChannelList/components/AddChannel.js +88 -88
  310. package/cjs/ChannelList/components/ChannelListHeader.js +13 -13
  311. package/cjs/ChannelList/components/ChannelListUI.js +88 -88
  312. package/cjs/ChannelList/components/ChannelPreview.js +32 -32
  313. package/cjs/ChannelList/components/ChannelPreviewAction.js +17 -17
  314. package/cjs/ChannelList/context.js +14 -14
  315. package/cjs/ChannelList.js +88 -88
  316. package/cjs/ChannelSettings/components/ChannelProfile.js +23 -23
  317. package/cjs/ChannelSettings/components/ChannelSettingMenuList.js +14 -14
  318. package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +11 -11
  319. package/cjs/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  320. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +31 -31
  321. package/cjs/ChannelSettings/components/EditDetailsModal.js +19 -19
  322. package/cjs/ChannelSettings/components/LeaveChannel.js +20 -20
  323. package/cjs/ChannelSettings/components/ModerationPanel.js +29 -29
  324. package/cjs/ChannelSettings/components/UserListItem.js +19 -19
  325. package/cjs/ChannelSettings/components/UserPanel.js +28 -28
  326. package/cjs/ChannelSettings/context.js +9 -9
  327. package/cjs/ChannelSettings/hooks/useMenuList.js +29 -29
  328. package/cjs/ChannelSettings.js +31 -31
  329. package/cjs/CreateChannel/components/CreateChannelUI.js +88 -88
  330. package/cjs/CreateChannel/components/InviteUsers.js +88 -88
  331. package/cjs/CreateChannel/components/SelectChannelType.js +88 -88
  332. package/cjs/CreateChannel/context.js +88 -88
  333. package/cjs/CreateChannel.js +88 -88
  334. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +15 -15
  335. package/cjs/CreateOpenChannel/context.js +4 -4
  336. package/cjs/CreateOpenChannel.js +15 -15
  337. package/cjs/EditUserProfile/components/EditUserProfileUI.js +15 -15
  338. package/cjs/EditUserProfile/context.js +1 -1
  339. package/cjs/EditUserProfile.js +15 -15
  340. package/cjs/GroupChannel/components/FileViewer.js +28 -28
  341. package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
  342. package/cjs/GroupChannel/components/GroupChannelHeader.js +29 -29
  343. package/cjs/GroupChannel/components/GroupChannelUI.js +63 -63
  344. package/cjs/GroupChannel/components/Message.js +54 -54
  345. package/cjs/GroupChannel/components/MessageInputWrapper.js +40 -40
  346. package/cjs/GroupChannel/components/MessageList.js +56 -56
  347. package/cjs/GroupChannel/components/RemoveMessageModal.js +27 -27
  348. package/cjs/GroupChannel/components/SuggestedMentionList.js +15 -15
  349. package/cjs/GroupChannel/components/TypingIndicator.js +9 -9
  350. package/cjs/GroupChannel/components/UnreadCount.js +8 -8
  351. package/cjs/GroupChannel/context.js +15 -15
  352. package/cjs/GroupChannel.js +63 -63
  353. package/cjs/GroupChannelList/components/AddGroupChannel.js +88 -88
  354. package/cjs/GroupChannelList/components/GroupChannelListHeader.js +13 -13
  355. package/cjs/GroupChannelList/components/GroupChannelListItem.js +32 -32
  356. package/cjs/GroupChannelList/components/GroupChannelListUI.js +88 -88
  357. package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +17 -17
  358. package/cjs/GroupChannelList/context.js +10 -10
  359. package/cjs/GroupChannelList.js +88 -88
  360. package/cjs/MessageSearch/components/MessageSearchUI.js +20 -20
  361. package/cjs/MessageSearch/context.js +6 -6
  362. package/cjs/MessageSearch.js +22 -22
  363. package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
  364. package/cjs/OpenChannel/components/OpenChannelHeader.js +20 -20
  365. package/cjs/OpenChannel/components/OpenChannelInput.js +29 -29
  366. package/cjs/OpenChannel/components/OpenChannelMessage.js +39 -39
  367. package/cjs/OpenChannel/components/OpenChannelMessageList.js +43 -43
  368. package/cjs/OpenChannel/components/OpenChannelUI.js +43 -43
  369. package/cjs/OpenChannel/context.js +19 -19
  370. package/cjs/OpenChannel.js +43 -43
  371. package/cjs/OpenChannelList/components/OpenChannelListUI.js +17 -17
  372. package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
  373. package/cjs/OpenChannelList/context.js +6 -6
  374. package/cjs/OpenChannelList.js +17 -17
  375. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +18 -18
  376. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +18 -18
  377. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +24 -24
  378. package/cjs/OpenChannelSettings/components/OperatorUI.js +24 -24
  379. package/cjs/OpenChannelSettings/components/ParticipantUI.js +22 -22
  380. package/cjs/OpenChannelSettings/context.js +6 -6
  381. package/cjs/OpenChannelSettings.js +24 -24
  382. package/cjs/SendbirdProvider.js +23 -23
  383. package/cjs/Thread/components/ParentMessageInfo.js +49 -49
  384. package/cjs/Thread/components/ParentMessageInfoItem.js +34 -34
  385. package/cjs/Thread/components/ThreadHeader.js +8 -8
  386. package/cjs/Thread/components/ThreadList.js +56 -56
  387. package/cjs/Thread/components/ThreadListItem.js +56 -56
  388. package/cjs/Thread/components/ThreadMessageInput.js +46 -46
  389. package/cjs/Thread/components/ThreadUI.js +62 -62
  390. package/cjs/Thread/context.js +15 -15
  391. package/cjs/Thread.js +62 -62
  392. package/cjs/VoicePlayer/context.js +6 -6
  393. package/cjs/VoicePlayer/useVoicePlayer.js +14 -14
  394. package/cjs/VoiceRecorder/context.js +13 -13
  395. package/cjs/VoiceRecorder/useVoiceRecorder.js +12 -12
  396. package/cjs/chunks/{bundle-BZWQ1NTC.js → bundle-0qwHnz49.js} +14 -14
  397. package/cjs/chunks/{bundle-BZWQ1NTC.js.map → bundle-0qwHnz49.js.map} +1 -1
  398. package/cjs/chunks/{bundle-qYRd0njx.js → bundle-2gRetthH.js} +3 -3
  399. package/cjs/chunks/bundle-2gRetthH.js.map +1 -0
  400. package/cjs/chunks/{bundle-CXy_f9TW.js → bundle-3pIN38MR.js} +1 -1
  401. package/cjs/chunks/bundle-3pIN38MR.js.map +1 -0
  402. package/cjs/chunks/{bundle-4KV6_8wa.js → bundle-ADlxsvPE.js} +1 -1
  403. package/cjs/chunks/bundle-ADlxsvPE.js.map +1 -0
  404. package/cjs/chunks/{bundle-BWY5IXv2.js → bundle-B-dq4NhE.js} +1 -1
  405. package/cjs/chunks/bundle-B-dq4NhE.js.map +1 -0
  406. package/cjs/chunks/{bundle-DECaw4lg.js → bundle-B5ykUWcV.js} +1 -1
  407. package/cjs/chunks/bundle-B5ykUWcV.js.map +1 -0
  408. package/cjs/chunks/{bundle-yI1WWKuh.js → bundle-BKHLxS6l.js} +4 -4
  409. package/cjs/chunks/bundle-BKHLxS6l.js.map +1 -0
  410. package/cjs/chunks/{bundle-BXOwJFmM.js → bundle-BL4JFX3Z.js} +8 -8
  411. package/cjs/chunks/bundle-BL4JFX3Z.js.map +1 -0
  412. package/cjs/chunks/{bundle-O_B1b_E5.js → bundle-BOHGouy_.js} +7 -7
  413. package/cjs/chunks/bundle-BOHGouy_.js.map +1 -0
  414. package/cjs/chunks/{bundle-DrnK8T0C.js → bundle-BQozUdAi.js} +12 -12
  415. package/cjs/chunks/{bundle-DrnK8T0C.js.map → bundle-BQozUdAi.js.map} +1 -1
  416. package/cjs/chunks/{bundle-71dqgbWK.js → bundle-BROd4sV1.js} +1 -1
  417. package/cjs/chunks/bundle-BROd4sV1.js.map +1 -0
  418. package/cjs/chunks/{bundle-C-c3245O.js → bundle-BRv5cK_w.js} +1 -1
  419. package/cjs/chunks/bundle-BRv5cK_w.js.map +1 -0
  420. package/cjs/chunks/{bundle-CToE0GyB.js → bundle-BXj7tx0V.js} +12 -12
  421. package/cjs/chunks/{bundle-CToE0GyB.js.map → bundle-BXj7tx0V.js.map} +1 -1
  422. package/cjs/chunks/{bundle-93bWzNKo.js → bundle-BbP1ND3d.js} +7 -7
  423. package/cjs/chunks/{bundle-93bWzNKo.js.map → bundle-BbP1ND3d.js.map} +1 -1
  424. package/cjs/chunks/{bundle-DhWVYFSK.js → bundle-Bc0FSDdg.js} +4 -4
  425. package/cjs/chunks/bundle-Bc0FSDdg.js.map +1 -0
  426. package/cjs/chunks/{bundle-CHXOpzUL.js → bundle-BcNQT2_6.js} +10 -10
  427. package/cjs/chunks/bundle-BcNQT2_6.js.map +1 -0
  428. package/cjs/chunks/{bundle-BWd9-rRw.js → bundle-BewOM8Bd.js} +1 -1
  429. package/cjs/chunks/bundle-BewOM8Bd.js.map +1 -0
  430. package/cjs/chunks/{bundle-CdFtSIKT.js → bundle-BhW0sWmd.js} +12 -12
  431. package/cjs/chunks/bundle-BhW0sWmd.js.map +1 -0
  432. package/cjs/chunks/{bundle-DV03EViB.js → bundle-BihVHC5Q.js} +2 -2
  433. package/cjs/chunks/bundle-BihVHC5Q.js.map +1 -0
  434. package/cjs/chunks/{bundle-BzwktTo_.js → bundle-BikLdyZe.js} +4 -4
  435. package/cjs/chunks/bundle-BikLdyZe.js.map +1 -0
  436. package/cjs/chunks/{bundle-BzxkBOcv.js → bundle-Bj-0Jsyi.js} +1 -1
  437. package/cjs/chunks/bundle-Bj-0Jsyi.js.map +1 -0
  438. package/cjs/chunks/{bundle-5zygIx0U.js → bundle-Bj_ZknNa.js} +7 -7
  439. package/cjs/chunks/bundle-Bj_ZknNa.js.map +1 -0
  440. package/cjs/chunks/{bundle-Btaa15jO.js → bundle-BmFe2W3e.js} +1 -1
  441. package/cjs/chunks/bundle-BmFe2W3e.js.map +1 -0
  442. package/cjs/chunks/{bundle-B8JKZQ6b.js → bundle-BnDEMyZ4.js} +1 -1
  443. package/cjs/chunks/{bundle-B8JKZQ6b.js.map → bundle-BnDEMyZ4.js.map} +1 -1
  444. package/cjs/chunks/{bundle-BVKENLWb.js → bundle-BsisXiqs.js} +12 -12
  445. package/cjs/chunks/{bundle-BVKENLWb.js.map → bundle-BsisXiqs.js.map} +1 -1
  446. package/cjs/chunks/{bundle-edLI5BAx.js → bundle-Bvla2Wqv.js} +4 -4
  447. package/cjs/chunks/bundle-Bvla2Wqv.js.map +1 -0
  448. package/cjs/chunks/{bundle-DmhwxDam.js → bundle-ByGirtv0.js} +3 -3
  449. package/cjs/chunks/bundle-ByGirtv0.js.map +1 -0
  450. package/cjs/chunks/{bundle-l3NOX5JV.js → bundle-ByzBZitI.js} +1 -1
  451. package/cjs/chunks/bundle-ByzBZitI.js.map +1 -0
  452. package/cjs/chunks/{bundle-BISpveo1.js → bundle-C19uVjCa.js} +5 -5
  453. package/cjs/chunks/{bundle-BISpveo1.js.map → bundle-C19uVjCa.js.map} +1 -1
  454. package/cjs/chunks/{bundle-DWfLEP_0.js → bundle-C2HYdhmz.js} +2 -2
  455. package/cjs/chunks/{bundle-DWfLEP_0.js.map → bundle-C2HYdhmz.js.map} +1 -1
  456. package/cjs/chunks/{bundle-D4UzJ-7q.js → bundle-C562G-JW.js} +2 -2
  457. package/cjs/chunks/bundle-C562G-JW.js.map +1 -0
  458. package/cjs/chunks/{bundle-DnDLZR4B.js → bundle-C596sNVY.js} +3 -3
  459. package/cjs/chunks/{bundle-DnDLZR4B.js.map → bundle-C596sNVY.js.map} +1 -1
  460. package/cjs/chunks/{bundle-DOEBAaWF.js → bundle-C6W6XKUm.js} +14 -14
  461. package/cjs/chunks/{bundle-DOEBAaWF.js.map → bundle-C6W6XKUm.js.map} +1 -1
  462. package/cjs/chunks/{bundle-QDr-C4Po.js → bundle-C8f_4-N0.js} +1 -1
  463. package/cjs/chunks/bundle-C8f_4-N0.js.map +1 -0
  464. package/cjs/chunks/{bundle-B1baPRRe.js → bundle-C9sWmnis.js} +4 -4
  465. package/cjs/chunks/bundle-C9sWmnis.js.map +1 -0
  466. package/cjs/chunks/{bundle-XTL3uso6.js → bundle-CCW4ftK3.js} +1 -1
  467. package/cjs/chunks/bundle-CCW4ftK3.js.map +1 -0
  468. package/cjs/chunks/{bundle-9Zp-yHMR.js → bundle-CFF7qA3s.js} +6 -6
  469. package/cjs/chunks/bundle-CFF7qA3s.js.map +1 -0
  470. package/cjs/chunks/{bundle-BlVuZEFn.js → bundle-CILnAeBz.js} +4 -4
  471. package/cjs/chunks/bundle-CILnAeBz.js.map +1 -0
  472. package/cjs/chunks/{bundle-mD8GLt1R.js → bundle-CItVMA2G.js} +5 -5
  473. package/cjs/chunks/bundle-CItVMA2G.js.map +1 -0
  474. package/cjs/chunks/{bundle-CBwYCeZb.js → bundle-CIulWkOG.js} +1 -1
  475. package/cjs/chunks/{bundle-CBwYCeZb.js.map → bundle-CIulWkOG.js.map} +1 -1
  476. package/cjs/chunks/{bundle-8acuAHPD.js → bundle-CJhoVxdz.js} +1 -1
  477. package/cjs/chunks/bundle-CJhoVxdz.js.map +1 -0
  478. package/cjs/chunks/{bundle-CAcwnk2Q.js → bundle-CMD6ZoBq.js} +7 -7
  479. package/cjs/chunks/bundle-CMD6ZoBq.js.map +1 -0
  480. package/cjs/chunks/{bundle-CnSWKGc4.js → bundle-CMlV_h38.js} +5 -5
  481. package/cjs/chunks/bundle-CMlV_h38.js.map +1 -0
  482. package/cjs/chunks/{bundle-QWl8QUDg.js → bundle-CSR_gGWO.js} +12 -12
  483. package/cjs/chunks/{bundle-QWl8QUDg.js.map → bundle-CSR_gGWO.js.map} +1 -1
  484. package/cjs/chunks/{bundle-Ce65LzvC.js → bundle-CXEoZwsy.js} +10 -10
  485. package/cjs/chunks/{bundle-Ce65LzvC.js.map → bundle-CXEoZwsy.js.map} +1 -1
  486. package/cjs/chunks/{bundle-BB7JE5l0.js → bundle-CZ9J_2gz.js} +1 -1
  487. package/cjs/chunks/bundle-CZ9J_2gz.js.map +1 -0
  488. package/cjs/chunks/{bundle-BE91vSly.js → bundle-CZLKAZCV.js} +1 -1
  489. package/cjs/chunks/bundle-CZLKAZCV.js.map +1 -0
  490. package/cjs/chunks/{bundle-x_V9zseQ.js → bundle-CZimBvba.js} +2 -2
  491. package/cjs/chunks/bundle-CZimBvba.js.map +1 -0
  492. package/cjs/chunks/{bundle-CSBpiQKa.js → bundle-C_10r9lQ.js} +1 -1
  493. package/cjs/chunks/bundle-C_10r9lQ.js.map +1 -0
  494. package/cjs/chunks/{bundle-CZjDXe9_.js → bundle-CbBu6KFu.js} +4 -4
  495. package/cjs/chunks/bundle-CbBu6KFu.js.map +1 -0
  496. package/cjs/chunks/{bundle-ConY3ho5.js → bundle-Cc8WRa-f.js} +1 -1
  497. package/cjs/chunks/bundle-Cc8WRa-f.js.map +1 -0
  498. package/cjs/chunks/{bundle-Q5vg6IPH.js → bundle-CdMrvui6.js} +1 -1
  499. package/cjs/chunks/bundle-CdMrvui6.js.map +1 -0
  500. package/cjs/chunks/{bundle-Dy1QxkVu.js → bundle-CfXO3dEz.js} +1 -1
  501. package/cjs/chunks/{bundle-Dy1QxkVu.js.map → bundle-CfXO3dEz.js.map} +1 -1
  502. package/cjs/chunks/{bundle-CUl9TucN.js → bundle-CfoP-Q6S.js} +1 -1
  503. package/cjs/chunks/bundle-CfoP-Q6S.js.map +1 -0
  504. package/cjs/chunks/{bundle-BYpTrdEd.js → bundle-ChahVmSf.js} +5 -5
  505. package/cjs/chunks/{bundle-BYpTrdEd.js.map → bundle-ChahVmSf.js.map} +1 -1
  506. package/cjs/chunks/{bundle-BE0tBkIE.js → bundle-CiHUpz7L.js} +1 -1
  507. package/cjs/chunks/{bundle-BE0tBkIE.js.map → bundle-CiHUpz7L.js.map} +1 -1
  508. package/cjs/chunks/{bundle-DP2LknUT.js → bundle-CmnwqpcH.js} +1 -1
  509. package/cjs/chunks/bundle-CmnwqpcH.js.map +1 -0
  510. package/cjs/chunks/{bundle-qlSPX_jd.js → bundle-Cpu4qnT0.js} +5 -5
  511. package/cjs/chunks/bundle-Cpu4qnT0.js.map +1 -0
  512. package/cjs/chunks/{bundle-BSB0IxBQ.js → bundle-CvAcqCBF.js} +1 -1
  513. package/cjs/chunks/bundle-CvAcqCBF.js.map +1 -0
  514. package/cjs/chunks/{bundle-MlGqIlFr.js → bundle-CyENaxLd.js} +1 -1
  515. package/cjs/chunks/bundle-CyENaxLd.js.map +1 -0
  516. package/cjs/chunks/{bundle-BJWbfoHg.js → bundle-Cz2GZ925.js} +2 -2
  517. package/cjs/chunks/bundle-Cz2GZ925.js.map +1 -0
  518. package/cjs/chunks/{bundle-C1QA55RE.js → bundle-D1t8v8Qh.js} +3 -3
  519. package/cjs/chunks/bundle-D1t8v8Qh.js.map +1 -0
  520. package/cjs/chunks/{bundle-PLOfmvPv.js → bundle-D2LA3NOU.js} +2 -2
  521. package/cjs/chunks/bundle-D2LA3NOU.js.map +1 -0
  522. package/cjs/chunks/{bundle-CYQ8PYWj.js → bundle-DCIXGFFW.js} +3 -3
  523. package/cjs/chunks/bundle-DCIXGFFW.js.map +1 -0
  524. package/cjs/chunks/{bundle-DOuI16f9.js → bundle-DDSgAZ7n.js} +8 -8
  525. package/cjs/chunks/{bundle-DOuI16f9.js.map → bundle-DDSgAZ7n.js.map} +1 -1
  526. package/cjs/chunks/{bundle-VmBxGdtN.js → bundle-DGI3KmLP.js} +9 -9
  527. package/cjs/chunks/{bundle-VmBxGdtN.js.map → bundle-DGI3KmLP.js.map} +1 -1
  528. package/cjs/chunks/{bundle-DEL52Z11.js → bundle-DGxNAz2j.js} +33 -33
  529. package/cjs/chunks/{bundle-DEL52Z11.js.map → bundle-DGxNAz2j.js.map} +1 -1
  530. package/cjs/chunks/{bundle-DzHIrb6T.js → bundle-DONg2mag.js} +3 -3
  531. package/cjs/chunks/{bundle-DzHIrb6T.js.map → bundle-DONg2mag.js.map} +1 -1
  532. package/cjs/chunks/{bundle-BDeo4Lwx.js → bundle-DZW3Wbi6.js} +2 -2
  533. package/cjs/chunks/{bundle-BDeo4Lwx.js.map → bundle-DZW3Wbi6.js.map} +1 -1
  534. package/cjs/chunks/{bundle-DHK1ET58.js → bundle-DaY1BIwC.js} +6 -6
  535. package/cjs/chunks/bundle-DaY1BIwC.js.map +1 -0
  536. package/cjs/chunks/{bundle-9YGI1VxU.js → bundle-Dc_jkavG.js} +4 -4
  537. package/cjs/chunks/bundle-Dc_jkavG.js.map +1 -0
  538. package/cjs/chunks/{bundle-S-xcssWx.js → bundle-DdoxXpVR.js} +1 -1
  539. package/cjs/chunks/bundle-DdoxXpVR.js.map +1 -0
  540. package/cjs/chunks/{bundle-_5GthuIG.js → bundle-DfzBeTAr.js} +8 -8
  541. package/cjs/chunks/bundle-DfzBeTAr.js.map +1 -0
  542. package/cjs/chunks/{bundle-jS-nlWKb.js → bundle-DjuWyqTw.js} +5 -5
  543. package/cjs/chunks/{bundle-jS-nlWKb.js.map → bundle-DjuWyqTw.js.map} +1 -1
  544. package/cjs/chunks/{bundle-DhNJkytP.js → bundle-DlPLN3bg.js} +1 -1
  545. package/cjs/chunks/bundle-DlPLN3bg.js.map +1 -0
  546. package/cjs/chunks/{bundle-fuib3cfF.js → bundle-DlkOn50n.js} +9 -9
  547. package/cjs/chunks/{bundle-fuib3cfF.js.map → bundle-DlkOn50n.js.map} +1 -1
  548. package/cjs/chunks/{bundle-D1gn3U0O.js → bundle-DnOhDHp5.js} +7 -7
  549. package/cjs/chunks/bundle-DnOhDHp5.js.map +1 -0
  550. package/cjs/chunks/{bundle-B1DjOWvS.js → bundle-DnSd191t.js} +11 -11
  551. package/cjs/chunks/{bundle-B1DjOWvS.js.map → bundle-DnSd191t.js.map} +1 -1
  552. package/cjs/chunks/{bundle-DdnCy8Je.js → bundle-DrGYNNB5.js} +6 -6
  553. package/cjs/chunks/{bundle-DdnCy8Je.js.map → bundle-DrGYNNB5.js.map} +1 -1
  554. package/cjs/chunks/{bundle-DsFHmqiX.js → bundle-Duo0iypu.js} +15 -15
  555. package/cjs/chunks/{bundle-DsFHmqiX.js.map → bundle-Duo0iypu.js.map} +1 -1
  556. package/cjs/chunks/{bundle-Bcubj7Gw.js → bundle-Gk_s8UCU.js} +8 -8
  557. package/cjs/chunks/bundle-Gk_s8UCU.js.map +1 -0
  558. package/cjs/chunks/{bundle-DmRLBKRr.js → bundle-KtYdczLz.js} +3 -3
  559. package/cjs/chunks/bundle-KtYdczLz.js.map +1 -0
  560. package/cjs/chunks/{bundle-JJrresQy.js → bundle-O9GJGA-U.js} +4 -4
  561. package/cjs/chunks/bundle-O9GJGA-U.js.map +1 -0
  562. package/cjs/chunks/{bundle-D0jB-ZsW.js → bundle-S6k2tN15.js} +1 -1
  563. package/cjs/chunks/bundle-S6k2tN15.js.map +1 -0
  564. package/cjs/chunks/{bundle-BT-tqAqU.js → bundle-Sfn_RLlP.js} +3 -3
  565. package/cjs/chunks/{bundle-BT-tqAqU.js.map → bundle-Sfn_RLlP.js.map} +1 -1
  566. package/cjs/chunks/{bundle-C8fqEvFP.js → bundle-XIN-6-ar.js} +1 -1
  567. package/cjs/chunks/bundle-XIN-6-ar.js.map +1 -0
  568. package/cjs/chunks/{bundle-Bl0gl4VD.js → bundle-_hlObuTm.js} +4 -4
  569. package/cjs/chunks/bundle-_hlObuTm.js.map +1 -0
  570. package/cjs/chunks/{bundle-uvtr8RQn.js → bundle-ajPzzYnD.js} +3 -3
  571. package/cjs/chunks/bundle-ajPzzYnD.js.map +1 -0
  572. package/cjs/chunks/{bundle-DMeIUsXL.js → bundle-fL2sLECf.js} +1 -1
  573. package/cjs/chunks/bundle-fL2sLECf.js.map +1 -0
  574. package/cjs/chunks/{bundle-CPZpGOT4.js → bundle-tJJa3vGc.js} +4 -4
  575. package/cjs/chunks/{bundle-CPZpGOT4.js.map → bundle-tJJa3vGc.js.map} +1 -1
  576. package/cjs/chunks/{bundle-lMI-nvUj.js → bundle-wbXcvXS5.js} +3 -3
  577. package/cjs/chunks/bundle-wbXcvXS5.js.map +1 -0
  578. package/cjs/hooks/useConnectionState.js +5 -5
  579. package/cjs/hooks/useLocalization.js +4 -4
  580. package/cjs/hooks/useModal.js +13 -13
  581. package/cjs/index.js +89 -89
  582. package/cjs/pubSub/topics.js +1 -1
  583. package/cjs/sendbirdSelectors.js +2 -2
  584. package/cjs/ui/Accordion.js +2 -2
  585. package/cjs/ui/AccordionGroup.js +1 -1
  586. package/cjs/ui/AdminMessage.js +3 -3
  587. package/cjs/ui/Avatar.js +4 -4
  588. package/cjs/ui/Badge.js +5 -5
  589. package/cjs/ui/BottomSheet.js +13 -13
  590. package/cjs/ui/Button.js +3 -3
  591. package/cjs/ui/ChannelAvatar.js +5 -5
  592. package/cjs/ui/ConnectionStatus.js +6 -6
  593. package/cjs/ui/ContextMenu.js +14 -14
  594. package/cjs/ui/DateSeparator.js +4 -4
  595. package/cjs/ui/EmojiReactions.js +23 -23
  596. package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
  597. package/cjs/ui/FileMessageItemBody.js +13 -13
  598. package/cjs/ui/FileViewer.js +19 -19
  599. package/cjs/ui/Header.js +6 -6
  600. package/cjs/ui/Icon.js +2 -2
  601. package/cjs/ui/IconButton.js +1 -1
  602. package/cjs/ui/ImageRenderer.js +2 -2
  603. package/cjs/ui/Input.js +3 -3
  604. package/cjs/ui/Label.js +3 -3
  605. package/cjs/ui/LinkLabel.js +4 -4
  606. package/cjs/ui/Loader.js +2 -2
  607. package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  608. package/cjs/ui/MentionLabel.js +19 -19
  609. package/cjs/ui/MentionUserLabel.js +2 -2
  610. package/cjs/ui/MessageContent.js +42 -42
  611. package/cjs/ui/MessageFeedbackFailedModal.js +13 -13
  612. package/cjs/ui/MessageFeedbackModal.js +13 -13
  613. package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
  614. package/cjs/ui/MessageInput.js +20 -20
  615. package/cjs/ui/MessageItemMenu.js +15 -15
  616. package/cjs/ui/MessageItemReactionMenu.js +16 -16
  617. package/cjs/ui/MessageMenu.js +16 -16
  618. package/cjs/ui/MessageSearchFileItem.js +17 -17
  619. package/cjs/ui/MessageSearchItem.js +12 -12
  620. package/cjs/ui/MessageStatus.js +15 -15
  621. package/cjs/ui/MessageTemplate.js +1 -1
  622. package/cjs/ui/MobileFeedbackMenu.js +13 -13
  623. package/cjs/ui/MobileMenu.js +18 -18
  624. package/cjs/ui/Modal.js +12 -12
  625. package/cjs/ui/MutedAvatarOverlay.js +2 -2
  626. package/cjs/ui/OGMessageItemBody.js +23 -23
  627. package/cjs/ui/OpenChannelAdminMessage.js +3 -3
  628. package/cjs/ui/OpenChannelAvatar.js +8 -8
  629. package/cjs/ui/OpenchannelConversationHeader.js +8 -8
  630. package/cjs/ui/OpenchannelFileMessage.js +24 -24
  631. package/cjs/ui/OpenchannelOGMessage.js +26 -26
  632. package/cjs/ui/OpenchannelThumbnailMessage.js +23 -23
  633. package/cjs/ui/OpenchannelUserMessage.js +24 -24
  634. package/cjs/ui/PlaceHolder.js +6 -6
  635. package/cjs/ui/PlaybackTime.js +3 -3
  636. package/cjs/ui/ProgressBar.js +1 -1
  637. package/cjs/ui/QuoteMessage.js +12 -12
  638. package/cjs/ui/QuoteMessageInput.js +12 -12
  639. package/cjs/ui/ReactionBadge.js +3 -3
  640. package/cjs/ui/ReactionButton.js +4 -4
  641. package/cjs/ui/SortByRow.js +2 -2
  642. package/cjs/ui/TemplateMessageItemBody.js +14 -14
  643. package/cjs/ui/TextButton.js +2 -2
  644. package/cjs/ui/TextMessageItemBody.js +22 -22
  645. package/cjs/ui/ThreadReplies.js +8 -8
  646. package/cjs/ui/ThumbnailMessageItemBody.js +10 -10
  647. package/cjs/ui/Toggle.js +4 -4
  648. package/cjs/ui/Tooltip.js +3 -3
  649. package/cjs/ui/TooltipWrapper.js +1 -1
  650. package/cjs/ui/TypingIndicatorBubble.js +4 -4
  651. package/cjs/ui/UnknownMessageItemBody.js +10 -10
  652. package/cjs/ui/UserListItem.js +19 -19
  653. package/cjs/ui/UserListItemMenu.js +16 -16
  654. package/cjs/ui/UserProfile.js +13 -13
  655. package/cjs/ui/VoiceMessageInput.js +9 -9
  656. package/cjs/ui/VoiceMessageItemBody.js +14 -14
  657. package/cjs/ui/Word.js +19 -19
  658. package/cjs/useSendbirdStateContext.js +4 -4
  659. package/cjs/utils/message/isVoiceMessage.js +6 -6
  660. package/cjs/withSendbird.js +23 -23
  661. package/hooks/useConnectionState.js +5 -5
  662. package/hooks/useLocalization.js +4 -4
  663. package/hooks/useModal.js +14 -14
  664. package/index.js +89 -89
  665. package/package.json +1 -1
  666. package/pubSub/topics.js +1 -1
  667. package/sendbirdSelectors.js +2 -2
  668. package/ui/Accordion.js +2 -2
  669. package/ui/AccordionGroup.js +1 -1
  670. package/ui/AdminMessage.js +3 -3
  671. package/ui/Avatar.js +4 -4
  672. package/ui/Badge.js +5 -5
  673. package/ui/BottomSheet.js +13 -13
  674. package/ui/Button.js +3 -3
  675. package/ui/ChannelAvatar.js +5 -5
  676. package/ui/ConnectionStatus.js +6 -6
  677. package/ui/ContextMenu.js +14 -14
  678. package/ui/DateSeparator.js +4 -4
  679. package/ui/EmojiReactions.js +23 -23
  680. package/ui/FallbackTemplateMessageItemBody.tsx.js +10 -10
  681. package/ui/FileMessageItemBody.js +13 -13
  682. package/ui/FileViewer.js +19 -19
  683. package/ui/Header.js +6 -6
  684. package/ui/Icon.js +2 -2
  685. package/ui/IconButton.js +1 -1
  686. package/ui/ImageRenderer.js +2 -2
  687. package/ui/Input.js +3 -3
  688. package/ui/Label.js +3 -3
  689. package/ui/LinkLabel.js +4 -4
  690. package/ui/Loader.js +2 -2
  691. package/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  692. package/ui/MentionLabel.js +19 -19
  693. package/ui/MentionUserLabel.js +2 -2
  694. package/ui/MessageContent.js +42 -42
  695. package/ui/MessageFeedbackFailedModal.js +13 -13
  696. package/ui/MessageFeedbackModal.js +13 -13
  697. package/ui/MessageInput/hooks/usePaste.js +7 -7
  698. package/ui/MessageInput.js +20 -20
  699. package/ui/MessageItemMenu.js +15 -15
  700. package/ui/MessageItemReactionMenu.js +16 -16
  701. package/ui/MessageMenu.js +16 -16
  702. package/ui/MessageSearchFileItem.js +17 -17
  703. package/ui/MessageSearchItem.js +12 -12
  704. package/ui/MessageStatus.js +15 -15
  705. package/ui/MessageTemplate.js +1 -1
  706. package/ui/MobileFeedbackMenu.js +13 -13
  707. package/ui/MobileMenu.js +18 -18
  708. package/ui/Modal.js +12 -12
  709. package/ui/MutedAvatarOverlay.js +2 -2
  710. package/ui/OGMessageItemBody.js +23 -23
  711. package/ui/OpenChannelAdminMessage.js +3 -3
  712. package/ui/OpenChannelAvatar.js +8 -8
  713. package/ui/OpenchannelConversationHeader.js +8 -8
  714. package/ui/OpenchannelFileMessage.js +24 -24
  715. package/ui/OpenchannelOGMessage.js +26 -26
  716. package/ui/OpenchannelThumbnailMessage.js +23 -23
  717. package/ui/OpenchannelUserMessage.js +24 -24
  718. package/ui/PlaceHolder.js +6 -6
  719. package/ui/PlaybackTime.js +3 -3
  720. package/ui/ProgressBar.js +1 -1
  721. package/ui/QuoteMessage.js +12 -12
  722. package/ui/QuoteMessageInput.js +12 -12
  723. package/ui/ReactionBadge.js +3 -3
  724. package/ui/ReactionButton.js +4 -4
  725. package/ui/SortByRow.js +2 -2
  726. package/ui/TemplateMessageItemBody.js +14 -14
  727. package/ui/TextButton.js +2 -2
  728. package/ui/TextMessageItemBody.js +22 -22
  729. package/ui/ThreadReplies.js +8 -8
  730. package/ui/ThumbnailMessageItemBody.js +10 -10
  731. package/ui/Toggle.js +4 -4
  732. package/ui/Tooltip.js +3 -3
  733. package/ui/TooltipWrapper.js +1 -1
  734. package/ui/TypingIndicatorBubble.js +4 -4
  735. package/ui/UnknownMessageItemBody.js +10 -10
  736. package/ui/UserListItem.js +19 -19
  737. package/ui/UserListItemMenu.js +17 -17
  738. package/ui/UserProfile.js +13 -13
  739. package/ui/VoiceMessageInput.js +9 -9
  740. package/ui/VoiceMessageItemBody.js +14 -14
  741. package/ui/Word.js +19 -19
  742. package/useSendbirdStateContext.js +4 -4
  743. package/utils/message/isVoiceMessage.js +6 -6
  744. package/withSendbird.js +23 -23
  745. package/chunks/bundle-B5YnH_bZ.js.map +0 -1
  746. package/chunks/bundle-BBzNJkTC.js.map +0 -1
  747. package/chunks/bundle-BIpsQoZM.js.map +0 -1
  748. package/chunks/bundle-BTRsBhSP.js.map +0 -1
  749. package/chunks/bundle-BX570l_k.js.map +0 -1
  750. package/chunks/bundle-BZ2wHbrz.js.map +0 -1
  751. package/chunks/bundle-BZABTuI8.js.map +0 -1
  752. package/chunks/bundle-BntU6xha.js.map +0 -1
  753. package/chunks/bundle-BoCpB627.js.map +0 -1
  754. package/chunks/bundle-Bpv5h56D.js.map +0 -1
  755. package/chunks/bundle-ByFGGKX5.js.map +0 -1
  756. package/chunks/bundle-C3Ez17kh.js.map +0 -1
  757. package/chunks/bundle-C5Ih9B7Z.js.map +0 -1
  758. package/chunks/bundle-CQY1Vhgt.js.map +0 -1
  759. package/chunks/bundle-CQmP70o-.js.map +0 -1
  760. package/chunks/bundle-CTtRmLaQ.js.map +0 -1
  761. package/chunks/bundle-CjtOeKDH.js.map +0 -1
  762. package/chunks/bundle-CkN5BpDO.js.map +0 -1
  763. package/chunks/bundle-ClP2v0RX.js.map +0 -1
  764. package/chunks/bundle-CmEWKIf3.js.map +0 -1
  765. package/chunks/bundle-CoqWx1L6.js.map +0 -1
  766. package/chunks/bundle-CvXosgMy.js.map +0 -1
  767. package/chunks/bundle-Cx8h9ZUu.js.map +0 -1
  768. package/chunks/bundle-CxvcwY-S.js.map +0 -1
  769. package/chunks/bundle-D4Qx18jn.js.map +0 -1
  770. package/chunks/bundle-D6fvLhSj.js.map +0 -1
  771. package/chunks/bundle-D7cX9Fjm.js.map +0 -1
  772. package/chunks/bundle-D9ylcucS.js.map +0 -1
  773. package/chunks/bundle-DCmMZLn8.js.map +0 -1
  774. package/chunks/bundle-DFYOnVXR.js.map +0 -1
  775. package/chunks/bundle-DFoa4qG2.js.map +0 -1
  776. package/chunks/bundle-DKW7_WWj.js.map +0 -1
  777. package/chunks/bundle-DMq4hDJ1.js.map +0 -1
  778. package/chunks/bundle-DOwPISeS.js.map +0 -1
  779. package/chunks/bundle-DQI9pg8J.js.map +0 -1
  780. package/chunks/bundle-D_w8WEfL.js.map +0 -1
  781. package/chunks/bundle-DcJrfmnR.js.map +0 -1
  782. package/chunks/bundle-DgySHYkz.js.map +0 -1
  783. package/chunks/bundle-DjDbKets.js.map +0 -1
  784. package/chunks/bundle-DkDPgJrt.js.map +0 -1
  785. package/chunks/bundle-DnyHxqQ0.js.map +0 -1
  786. package/chunks/bundle-DrsCAuld.js.map +0 -1
  787. package/chunks/bundle-KRH4HO2b.js.map +0 -1
  788. package/chunks/bundle-MU-n4WB7.js.map +0 -1
  789. package/chunks/bundle-T8eF3MdZ.js.map +0 -1
  790. package/chunks/bundle-Wf7fEqRo.js.map +0 -1
  791. package/chunks/bundle-ZNC8CUp_.js.map +0 -1
  792. package/chunks/bundle-_QhzybuL.js.map +0 -1
  793. package/chunks/bundle-nHCcLxQh.js.map +0 -1
  794. package/chunks/bundle-paE3yw-E.js.map +0 -1
  795. package/chunks/bundle-tjmSjVLm.js.map +0 -1
  796. package/chunks/bundle-w0Ht9vHs.js.map +0 -1
  797. package/chunks/bundle-x_BFBJ3V.js.map +0 -1
  798. package/chunks/bundle-xdBGfpYx.js.map +0 -1
  799. package/cjs/chunks/bundle-4KV6_8wa.js.map +0 -1
  800. package/cjs/chunks/bundle-5zygIx0U.js.map +0 -1
  801. package/cjs/chunks/bundle-71dqgbWK.js.map +0 -1
  802. package/cjs/chunks/bundle-8acuAHPD.js.map +0 -1
  803. package/cjs/chunks/bundle-9YGI1VxU.js.map +0 -1
  804. package/cjs/chunks/bundle-9Zp-yHMR.js.map +0 -1
  805. package/cjs/chunks/bundle-B1baPRRe.js.map +0 -1
  806. package/cjs/chunks/bundle-BB7JE5l0.js.map +0 -1
  807. package/cjs/chunks/bundle-BE91vSly.js.map +0 -1
  808. package/cjs/chunks/bundle-BJWbfoHg.js.map +0 -1
  809. package/cjs/chunks/bundle-BSB0IxBQ.js.map +0 -1
  810. package/cjs/chunks/bundle-BWY5IXv2.js.map +0 -1
  811. package/cjs/chunks/bundle-BWd9-rRw.js.map +0 -1
  812. package/cjs/chunks/bundle-BXOwJFmM.js.map +0 -1
  813. package/cjs/chunks/bundle-Bcubj7Gw.js.map +0 -1
  814. package/cjs/chunks/bundle-Bl0gl4VD.js.map +0 -1
  815. package/cjs/chunks/bundle-BlVuZEFn.js.map +0 -1
  816. package/cjs/chunks/bundle-Btaa15jO.js.map +0 -1
  817. package/cjs/chunks/bundle-BzwktTo_.js.map +0 -1
  818. package/cjs/chunks/bundle-BzxkBOcv.js.map +0 -1
  819. package/cjs/chunks/bundle-C-c3245O.js.map +0 -1
  820. package/cjs/chunks/bundle-C1QA55RE.js.map +0 -1
  821. package/cjs/chunks/bundle-C8fqEvFP.js.map +0 -1
  822. package/cjs/chunks/bundle-CAcwnk2Q.js.map +0 -1
  823. package/cjs/chunks/bundle-CHXOpzUL.js.map +0 -1
  824. package/cjs/chunks/bundle-CSBpiQKa.js.map +0 -1
  825. package/cjs/chunks/bundle-CUl9TucN.js.map +0 -1
  826. package/cjs/chunks/bundle-CXy_f9TW.js.map +0 -1
  827. package/cjs/chunks/bundle-CYQ8PYWj.js.map +0 -1
  828. package/cjs/chunks/bundle-CZjDXe9_.js.map +0 -1
  829. package/cjs/chunks/bundle-CdFtSIKT.js.map +0 -1
  830. package/cjs/chunks/bundle-CnSWKGc4.js.map +0 -1
  831. package/cjs/chunks/bundle-ConY3ho5.js.map +0 -1
  832. package/cjs/chunks/bundle-D0jB-ZsW.js.map +0 -1
  833. package/cjs/chunks/bundle-D1gn3U0O.js.map +0 -1
  834. package/cjs/chunks/bundle-D4UzJ-7q.js.map +0 -1
  835. package/cjs/chunks/bundle-DECaw4lg.js.map +0 -1
  836. package/cjs/chunks/bundle-DHK1ET58.js.map +0 -1
  837. package/cjs/chunks/bundle-DMeIUsXL.js.map +0 -1
  838. package/cjs/chunks/bundle-DP2LknUT.js.map +0 -1
  839. package/cjs/chunks/bundle-DV03EViB.js.map +0 -1
  840. package/cjs/chunks/bundle-DhNJkytP.js.map +0 -1
  841. package/cjs/chunks/bundle-DhWVYFSK.js.map +0 -1
  842. package/cjs/chunks/bundle-DmRLBKRr.js.map +0 -1
  843. package/cjs/chunks/bundle-DmhwxDam.js.map +0 -1
  844. package/cjs/chunks/bundle-JJrresQy.js.map +0 -1
  845. package/cjs/chunks/bundle-MlGqIlFr.js.map +0 -1
  846. package/cjs/chunks/bundle-O_B1b_E5.js.map +0 -1
  847. package/cjs/chunks/bundle-PLOfmvPv.js.map +0 -1
  848. package/cjs/chunks/bundle-Q5vg6IPH.js.map +0 -1
  849. package/cjs/chunks/bundle-QDr-C4Po.js.map +0 -1
  850. package/cjs/chunks/bundle-S-xcssWx.js.map +0 -1
  851. package/cjs/chunks/bundle-XTL3uso6.js.map +0 -1
  852. package/cjs/chunks/bundle-_5GthuIG.js.map +0 -1
  853. package/cjs/chunks/bundle-edLI5BAx.js.map +0 -1
  854. package/cjs/chunks/bundle-l3NOX5JV.js.map +0 -1
  855. package/cjs/chunks/bundle-lMI-nvUj.js.map +0 -1
  856. package/cjs/chunks/bundle-mD8GLt1R.js.map +0 -1
  857. package/cjs/chunks/bundle-qYRd0njx.js.map +0 -1
  858. package/cjs/chunks/bundle-qlSPX_jd.js.map +0 -1
  859. package/cjs/chunks/bundle-uvtr8RQn.js.map +0 -1
  860. package/cjs/chunks/bundle-x_V9zseQ.js.map +0 -1
  861. package/cjs/chunks/bundle-yI1WWKuh.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CdILp5Ht.js","sources":["../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../node_modules/@sendbird/uikit-message-template/dist/core/transforms/colorTransform.js","../../node_modules/@sendbird/uikit-message-template/dist/core/transforms/numberTransform.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/types/styles.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/index.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/templateItemId.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/test/data.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/parser.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTCarousel/useCarousel.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTCarousel/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.canvas.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.img.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.placeholder.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useHighlightStyle.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/ui/ActionHandler.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/renderer.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[\"Carousel\"] = \"carouselView\";\n})(ComponentType || (ComponentType = {}));\n","import { ComponentType } from '../../types/components.js';\nconst outSingle = (key, obj) => {\n if (typeof obj[key] !== 'string')\n return {};\n return { [key]: argbToRgba(obj[key]) };\n};\nfunction argbToRgba(string) {\n if (!string.startsWith('#')) {\n return string;\n }\n if (string.length === 9) {\n return `#${string.slice(3)}${string[1]}${string[2]}`;\n }\n if (string.length === 5) {\n return `#${string.slice(2)}${string[1]}`;\n }\n return string;\n}\nconst outViewStyle = (viewStyle) => {\n if (!viewStyle)\n return {};\n return {\n viewStyle: Object.assign(Object.assign(Object.assign({}, viewStyle), outSingle('backgroundColor', viewStyle)), outSingle('borderColor', viewStyle)),\n };\n};\nconst outTextStyle = (textStyle) => {\n if (!textStyle)\n return {};\n return {\n textStyle: Object.assign(Object.assign({}, textStyle), outSingle('color', textStyle)),\n };\n};\nconst outImageStyle = (imageStyle) => {\n if (!imageStyle)\n return {};\n return {\n imageStyle: Object.assign(Object.assign({}, imageStyle), outSingle('tintColor', imageStyle)),\n };\n};\nexport const colorTransform = {\n run(prop) {\n if (prop.type === ComponentType.Text || prop.type === ComponentType.TextButton) {\n return Object.assign(Object.assign(Object.assign({}, prop), outViewStyle(prop.viewStyle)), outTextStyle(prop.textStyle));\n }\n if (prop.type === ComponentType.ImageButton || prop.type === ComponentType.Image) {\n return Object.assign(Object.assign(Object.assign({}, prop), outViewStyle(prop.viewStyle)), outImageStyle(prop.imageStyle));\n }\n return Object.assign(Object.assign({}, prop), outViewStyle(prop.viewStyle));\n },\n};\n","import { ComponentType, } from '../../types/components.js';\nconst isNumber = (val) => {\n if (typeof val === 'string') {\n return !Number.isNaN(Number(val));\n }\n return typeof val === 'number' && !Number.isNaN(val);\n};\nconst outSingle = (key, obj) => {\n if (obj[key] === undefined || obj[key] === null)\n return {};\n return isNumber(obj[key]) ? { [key]: Number(obj[key]) } : {};\n};\nconst outSpacing = (key, spacing) => {\n if (!spacing)\n return {};\n return {\n [key]: {\n left: isNumber(spacing.left) ? Number(spacing.left) : spacing.left,\n right: isNumber(spacing.right) ? Number(spacing.right) : spacing.right,\n top: isNumber(spacing.top) ? Number(spacing.top) : spacing.top,\n bottom: isNumber(spacing.bottom) ? Number(spacing.bottom) : spacing.bottom,\n },\n };\n};\nconst outSize = (key, size) => {\n if (!size)\n return {};\n return {\n [key]: {\n type: size.type,\n value: isNumber(size.value) ? Number(size.value) : size.value,\n },\n };\n};\nconst outMetadata = (metaData) => {\n if (!metaData)\n return {};\n return {\n metaData: {\n pixelWidth: isNumber(metaData.pixelWidth) ? Number(metaData.pixelWidth) : metaData.pixelWidth,\n pixelHeight: isNumber(metaData.pixelHeight) ? Number(metaData.pixelHeight) : metaData.pixelHeight,\n },\n };\n};\nconst outViewStyle = (viewStyle) => {\n if (!viewStyle)\n return {};\n return {\n viewStyle: Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, viewStyle), outSingle('borderWidth', viewStyle)), outSingle('radius', viewStyle)), outSpacing('margin', viewStyle.margin)), outSpacing('padding', viewStyle.padding)),\n };\n};\nconst outTextStyle = (textStyle) => {\n if (!textStyle)\n return {};\n return {\n textStyle: Object.assign(Object.assign(Object.assign({}, textStyle), outSingle('size', textStyle)), outSingle('weight', textStyle)),\n };\n};\nconst outCarouselStyle = (carouselstyle) => {\n if (!carouselstyle)\n return {};\n return {\n carouselStyle: Object.assign(Object.assign(Object.assign({}, carouselstyle), outSingle('spacing', carouselstyle)), outSingle('maxChildWidth', carouselstyle)),\n };\n};\nconst outViewProps = (view) => {\n return Object.assign(Object.assign(Object.assign({}, outSize('width', view.width)), outSize('height', view.height)), outViewStyle(view.viewStyle));\n};\nconst outTextProps = (text) => {\n return Object.assign(Object.assign(Object.assign({}, outViewProps(text)), outTextStyle(text.textStyle)), outSingle('maxTextLines', text));\n};\nconst outImageProps = (image) => {\n return Object.assign(Object.assign({}, outViewProps(image)), outMetadata(image.metaData));\n};\nconst outCarouselProps = (carousel) => {\n return Object.assign(Object.assign(Object.assign({}, outViewProps(carousel)), outCarouselStyle(carousel.carouselStyle)), { \n // Convert only top-level items to find has fill width values.\n items: carousel.items.map((item) => (Object.assign(Object.assign({}, item), { body: Object.assign(Object.assign({}, item.body), { items: item.body.items.map((it) => numberTransform.run(it)) }) }))) });\n};\nexport const numberTransform = {\n run(prop) {\n if (prop.type === ComponentType.Text || prop.type === ComponentType.TextButton) {\n return Object.assign(Object.assign({}, prop), outTextProps(prop));\n }\n if (prop.type === ComponentType.ImageButton || prop.type === ComponentType.Image) {\n return Object.assign(Object.assign({}, prop), outImageProps(prop));\n }\n if (prop.type === ComponentType.Carousel) {\n return Object.assign(Object.assign({}, prop), outCarouselProps(prop));\n }\n return Object.assign(Object.assign({}, prop), outViewProps(prop));\n },\n};\n","// -------- Set property mapper\nimport { ComponentType, } from '../types/components';\nimport { colorTransform } from './transforms/colorTransform';\nimport { numberTransform } from './transforms/numberTransform';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n var _a;\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 mapCarouselProps: (params === null || params === void 0 ? void 0 : params.mapCarouselProps) || defaultMapper,\n };\n const transforms = [colorTransform, numberTransform, ...((_a = params === null || params === void 0 ? void 0 : params.transforms) !== null && _a !== void 0 ? _a : [])];\n return {\n setTransforms(newTransforms) {\n transforms.length = 0;\n transforms.push(...newTransforms);\n },\n addTransforms(newTransforms) {\n transforms.push(...newTransforms);\n },\n parse(rawItem, options) {\n const item = transforms.reduce((it, transform) => transform.run(it), rawItem);\n switch (item.type) {\n case ComponentType.Box: {\n return { transformed: item, properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { transformed: item, properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { transformed: item, properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { transformed: item, properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { transformed: item, properties: mapper.mapImageButtonProps(item, options) };\n }\n case ComponentType.Carousel: {\n return { transformed: item, properties: mapper.mapCarouselProps(item, options) };\n }\n default:\n return { transformed: item, 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, _f;\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 carouselView: ((_f = params === null || params === void 0 ? void 0 : params.views) === null || _f === void 0 ? void 0 : _f.carouselView) || 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","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 } from '../types/styles';\nexport const SUPPORTED_TEMPLATE_VERSIONS = [\n 1,\n 2, // Composite templates: Carousel\n];\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};\nexport const isTemplateVersionSupported = (templateVersion) => {\n if (!templateVersion)\n return true;\n return SUPPORTED_TEMPLATE_VERSIONS.includes(Number(templateVersion));\n};\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","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 textButton: {\n maxTextLines: 1,\n },\n carousel: {\n style: {\n spacing: 10,\n maxChildWidth: 240,\n },\n },\n};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { SUPPORTED_TEMPLATE_VERSIONS, isTemplateVersionSupported } from '../utils';\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 = ({ templateItems, templateVersion, parentLayout = defaultProperties.box.layout, depth = 0, }) => {\n if (!isTemplateVersionSupported(templateVersion)) {\n throw new Error(`Cannot parse template item due to unsupported template version: ${templateVersion}, ${SUPPORTED_TEMPLATE_VERSIONS}`);\n }\n return (React.createElement(React.Fragment, null, templateItems.map((rawProperties, index, siblings) => {\n const result = parser.parse(rawProperties, { parentLayout, depth, elemIdx: index, siblings });\n const item = result.transformed;\n const rendererProps = {\n key: index,\n siblings,\n parentLayout,\n parsedProperties: result.properties,\n rawProperties,\n };\n switch (item.type) {\n case ComponentType.Carousel: {\n if (!Array.isArray(item.items) || item.items.length === 0) {\n throw new Error('Cannot parse template item as Carousel if carousel has no items.');\n }\n return (React.createElement(renderer.carouselView, Object.assign({}, item, rendererProps), item.items.map((template, index) => (React.createElement(MessageTemplateBase, { key: index, templateItems: template.body.items || [], depth: depth + 1, templateVersion: template.version })))));\n }\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, rendererProps),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout, depth: depth + 1, templateVersion: templateVersion })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, rendererProps));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, rendererProps));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, rendererProps));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, rendererProps));\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: ({ templateVersion, templateItems, parentLayout = defaultProperties.rootLayout, }) => {\n const items = setTemplateItemId(templateItems);\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, { className: 'sb-message-template__parent' },\n React.createElement(MessageTemplateBase, { isRoot: true, parentLayout: parentLayout, templateItems: items, templateVersion: templateVersion }))));\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 { 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};\nconst carousel_case_1 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '12',\n 'right': '12',\n },\n 'radius': '12',\n 'backgroundColor': '#ffffffff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '470',\n },\n 'items': [\n {\n 'type': 'text',\n 'text': '{content}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '12',\n 'right': '12',\n },\n 'radius': '12',\n 'backgroundColor': '#ffffffff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '470',\n },\n 'items': [\n {\n 'type': 'text',\n 'text': '{content}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\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 },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#fff2f4f6',\n 'radius': '8',\n 'margin': {\n 'top': '12',\n 'bottom': '4',\n 'left': '12',\n 'right': '12',\n },\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{button_text_1}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '12',\n 'right': '12',\n },\n 'radius': '12',\n 'backgroundColor': '#ffffffff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '470',\n },\n 'items': [\n {\n 'type': 'text',\n 'text': '{content}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\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 },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#fff2f4f6',\n 'radius': '8',\n 'margin': {\n 'top': '12',\n 'bottom': '4',\n 'left': '12',\n 'right': '12',\n },\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{button_text_1}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_2_all_flex = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n 'viewStyle': {\n 'backgroundColor': 'transparent',\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'flex',\n 'value': '0',\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_q5tul}',\n 'radius': '20',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n },\n 'imageUrl': 'https://file-us-1.sendbird.com/b9ba681a0bf742dabb2fc251e0b056a9.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '{SBCOLOR_ofmbt}',\n },\n 'metaData': {\n 'pixelWidth': '18',\n 'pixelHeight': '18',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '34',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '34',\n },\n },\n {\n 'type': 'text',\n 'text': '더 보기',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_sc3q4}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '1',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_2_all_fixed = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n 'viewStyle': {\n 'backgroundColor': 'transparent',\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'flex',\n 'value': '0',\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_q5tul}',\n 'radius': '20',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n },\n 'imageUrl': 'https://file-us-1.sendbird.com/b9ba681a0bf742dabb2fc251e0b056a9.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '{SBCOLOR_ofmbt}',\n },\n 'metaData': {\n 'pixelWidth': '18',\n 'pixelHeight': '18',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '34',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '34',\n },\n },\n {\n 'type': 'text',\n 'text': '더 보기',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_sc3q4}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '1',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_2_both_flex_and_fixed = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '340',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n 'viewStyle': {\n 'backgroundColor': 'transparent',\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'flex',\n 'value': '0',\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_q5tul}',\n 'radius': '20',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n },\n 'imageUrl': 'https://file-us-1.sendbird.com/b9ba681a0bf742dabb2fc251e0b056a9.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '{SBCOLOR_ofmbt}',\n },\n 'metaData': {\n 'pixelWidth': '18',\n 'pixelHeight': '18',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '34',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '34',\n },\n },\n {\n 'type': 'text',\n 'text': '더 보기',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_sc3q4}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '1',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_3 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\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': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'borderWidth': '1',\n 'borderColor': '{SBCOLOR_sq5wz}',\n 'backgroundColor': '{SBCOLOR_byw2t}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '254',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'imageUrl': '{guide-image.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '143',\n },\n 'metaData': {\n 'pixelWidth': '{guide-image.width}',\n 'pixelHeight': '{guide-image.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\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': '{SBCOLOR_zhxc4}',\n 'padding': {\n 'top': '0',\n 'bottom': '8',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_imwgs}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_56piy}',\n 'radius': '8',\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_button}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_fz5ow}',\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 },\n ],\n },\n ],\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_jvnor}',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n },\n {\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': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'borderWidth': '1',\n 'borderColor': '{SBCOLOR_sq5wz}',\n 'backgroundColor': '{SBCOLOR_byw2t}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '254',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'imageUrl': '{guide-image.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '143',\n },\n 'metaData': {\n 'pixelWidth': '{guide-image.width}',\n 'pixelHeight': '{guide-image.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\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': '{SBCOLOR_zhxc4}',\n 'padding': {\n 'top': '0',\n 'bottom': '8',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_imwgs}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_56piy}',\n 'radius': '8',\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_button}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_fz5ow}',\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 },\n ],\n },\n ],\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_jvnor}',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n },\n {\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': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'borderWidth': '1',\n 'borderColor': '{SBCOLOR_sq5wz}',\n 'backgroundColor': '{SBCOLOR_byw2t}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '254',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'imageUrl': '{guide-image.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '143',\n },\n 'metaData': {\n 'pixelWidth': '{guide-image.width}',\n 'pixelHeight': '{guide-image.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\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': '{SBCOLOR_zhxc4}',\n 'padding': {\n 'top': '0',\n 'bottom': '8',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_imwgs}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_56piy}',\n 'radius': '8',\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_button}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_fz5ow}',\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 },\n ],\n },\n ],\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_jvnor}',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\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];\nconst column_box_horz_margin_and_fill_parent_children = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': FlexSizeSpecValue.FillParent,\n },\n 'height': {\n 'type': 'flex',\n 'value': FlexSizeSpecValue.WrapContent,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'margin': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\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': FlexSizeSpecValue.FillParent,\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': 'imageButton',\n 'viewStyle': {\n margin: {\n left: 24,\n right: 12,\n },\n },\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'fixed', 'value': 250 },\n 'imageUrl': 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': { 'pixelWidth': '1080', 'pixelHeight': '2640' },\n 'action': { 'data': 'www.naver.com' },\n },\n ],\n },\n ],\n },\n};\nexport const samples_for_margin_issue = [column_box_horz_margin_and_fill_parent_children];\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 // Example reference: https://sendbird.atlassian.net/wiki/spaces/UK/pages/2265484095/UIKit+message+template+syntax+extension+proposal#Carousel-test-syntax\n carousel_case_1,\n carousel_case_2_all_flex,\n carousel_case_2_all_fixed,\n carousel_case_2_both_flex_and_fixed,\n carousel_case_3,\n];\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};\nexport const isGif = (url) => {\n var _a;\n if (typeof url !== 'string')\n return false;\n const extension = (_a = url.split('.').pop()) === null || _a === void 0 ? void 0 : _a.toLowerCase();\n return extension === 'gif';\n};\nexport const isNumber = (val) => {\n if (typeof val === 'string') {\n return !Number.isNaN(Number(val));\n }\n return typeof val === 'number' && !Number.isNaN(val);\n};\nexport const clx = (...names) => {\n return names.filter((it) => !!it).join(' ');\n};\nexport const hasValidURLProtocol = (url = '') => {\n return ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n};\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 **/\nexport const getValidURL = (url = '') => {\n if (hasValidURLProtocol(url))\n return url;\n return `https://${url}`;\n};\n","import { AlignValue, 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'] = radius;\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d, _e, _f, _g, _h;\n const { viewStyle } = props;\n styles['marginBlockStart'] = (_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top;\n styles['marginBlockEnd'] = (_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.bottom;\n styles['marginInlineStart'] = (_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.left;\n styles['marginInlineEnd'] = (_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.right;\n const marginHorizontal = ((_f = (_e = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _e === void 0 ? void 0 : _e.left) !== null && _f !== void 0 ? _f : 0) + ((_h = (_g = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _g === void 0 ? void 0 : _g.right) !== null && _h !== void 0 ? _h : 0);\n if (marginHorizontal > 0 && styles.width === '100%')\n styles.width = `calc(100% - ${marginHorizontal}px)`;\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 styles['backgroundSize'] = '100% 100%';\n styles['backgroundPosition'] = 'center';\n }\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 === 'flex' && width.value == FlexSizeSpecValue.WrapContent) {\n style['width'] = 'fit-content';\n if (parentLayout === Layout.Row) {\n style['flexShrink'] = 0;\n }\n }\n else if (width.type === 'fixed' && width.value >= 0) {\n style['width'] = width.value;\n if (parentLayout === Layout.Row) {\n style['flexShrink'] = 0;\n }\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 === 'flex' && height.value == FlexSizeSpecValue.WrapContent) {\n style['height'] = 'fit-content';\n if (parentLayout === Layout.Column) {\n style['flexShrink'] = 0;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = height.value;\n if (parentLayout === Layout.Column) {\n style['flexShrink'] = 0;\n }\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 switch (align) {\n case AlignValue.Left:\n styles.textAlign = 'start';\n break;\n case AlignValue.Right:\n styles.textAlign = 'end';\n break;\n case AlignValue.Center:\n styles.textAlign = 'center';\n break;\n default:\n styles.textAlign = 'start';\n break;\n }\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 } = textStyle || {};\n if (size)\n styles['fontSize'] = 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.type) === 'flex' && (width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['width'] = 'fit-content';\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","import { Layout, createParser } from '@sendbird/uikit-message-template';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, } from '../styles';\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', wordBreak: 'break-word' });\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, props, 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 mapCarouselProps(props, options) {\n var _a, _b, _c, _d, _e, _f, _g, _h;\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n styles['paddingBlockStart'] = (_b = (_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.padding) === null || _b === void 0 ? void 0 : _b.top;\n styles['paddingBlockEnd'] = (_d = (_c = props.viewStyle) === null || _c === void 0 ? void 0 : _c.padding) === null || _d === void 0 ? void 0 : _d.bottom;\n styles['paddingInlineStart'] = (_f = (_e = props.viewStyle) === null || _e === void 0 ? void 0 : _e.padding) === null || _f === void 0 ? void 0 : _f.left;\n styles['paddingInlineEnd'] = (_h = (_g = props.viewStyle) === null || _g === void 0 ? void 0 : _g.padding) === null || _h === void 0 ? void 0 : _h.right;\n return styles;\n },\n});\n","import React, { useLayoutEffect, useMemo, useRef, useState } from 'react';\nconst SWIPE_THRESHOLD = 24;\nconst CLICK_THRESHOLD = 5;\nexport function useCarousel({ spacing, childrenLength, paddingInlineStart, paddingInlineEnd }) {\n const carouselRef = useRef(null);\n const childrenRefs = useRef(Array.from({ length: childrenLength }, () => React.createRef()));\n const isDragging = useRef(false);\n const isScrolling = useRef(false);\n const animationFrame = useRef(null);\n const drag = useRef({\n sx: null,\n sy: null,\n offset: 0,\n translateX: 0,\n currentIndex: 0,\n didMove: false,\n });\n const [childWidths, setChildWidths] = useState(() => childrenRefs.current.map(() => 0));\n const [isRTL, setIsRTL] = useState(false);\n const directionMultiplier = isRTL ? -1 : 1;\n const itemPositions = useMemo(() => {\n let currentPosition = paddingInlineStart;\n return childWidths.map((width, i) => {\n const spacingOffset = i > 0 ? spacing : 0;\n const start = currentPosition - spacingOffset;\n const end = start - width;\n currentPosition = end;\n return { start, end };\n });\n }, [childWidths, spacing, paddingInlineStart]);\n const totalContentWidth = useMemo(() => {\n const totalItemWidth = childWidths.reduce((acc, width) => acc + width, 0);\n const totalSpacing = spacing * (childrenLength - 1);\n return totalItemWidth + totalSpacing;\n }, [childWidths, spacing, childrenLength]);\n useLayoutEffect(() => {\n if (carouselRef.current) {\n const dir = getComputedStyle(carouselRef.current).direction;\n setIsRTL(dir === 'rtl');\n }\n }, []);\n useLayoutEffect(() => {\n setChildWidths(childrenRefs.current.map((ref) => { var _a, _b; return (_b = (_a = ref.current) === null || _a === void 0 ? void 0 : _a.clientWidth) !== null && _b !== void 0 ? _b : 0; }));\n }, [childrenLength]);\n useLayoutEffect(() => {\n if (itemPositions.length > 0) {\n drag.current.translateX = itemPositions[0].start;\n animate();\n }\n }, [itemPositions]);\n const dragStart = () => {\n if (!carouselRef.current)\n return;\n isDragging.current = true;\n carouselRef.current.style.cursor = 'grabbing';\n carouselRef.current.style.transition = 'none';\n animationFrame.current = requestAnimationFrame(animate);\n };\n const dragStop = () => {\n if (!carouselRef.current)\n return;\n isDragging.current = false;\n carouselRef.current.style.cursor = 'grab';\n carouselRef.current.style.transition = 'transform 0.5s ease';\n if (animationFrame.current) {\n cancelAnimationFrame(animationFrame.current);\n animationFrame.current = null;\n }\n };\n const dragRelease = () => {\n const { offset, currentIndex } = drag.current;\n const thresholdExceeded = Math.abs(offset) >= SWIPE_THRESHOLD;\n const swipeToNext = offset < 0 && currentIndex < childrenLength - 1;\n const swipeToPrev = offset > 0 && currentIndex > 0;\n let newIndex = currentIndex;\n if (thresholdExceeded && swipeToNext) {\n newIndex = currentIndex + 1;\n }\n else if (thresholdExceeded && swipeToPrev) {\n newIndex = currentIndex - 1;\n }\n function clampTranslateX(translateX) {\n var _a, _b;\n const containerWidth = (_b = (_a = carouselRef.current) === null || _a === void 0 ? void 0 : _a.clientWidth) !== null && _b !== void 0 ? _b : 0;\n const start = paddingInlineStart;\n const end = Math.min(0, containerWidth - totalContentWidth) - paddingInlineEnd;\n return Math.min(start, Math.max(translateX, end));\n }\n drag.current.currentIndex = newIndex;\n drag.current.translateX = clampTranslateX(itemPositions[newIndex].start);\n drag.current.offset = 0;\n };\n const scrollStart = () => {\n isScrolling.current = true;\n };\n const scrollStop = () => {\n isScrolling.current = false;\n };\n const animate = () => {\n if (carouselRef.current) {\n const tx = (drag.current.translateX + drag.current.offset) * directionMultiplier;\n carouselRef.current.style.transform = `translateX(${tx}px)`;\n }\n if (animationFrame.current) {\n animationFrame.current = requestAnimationFrame(animate);\n }\n };\n const blockScroll = () => {\n if (carouselRef.current) {\n carouselRef.current.style.touchAction = 'pan-x';\n }\n };\n const unblockScroll = () => {\n if (carouselRef.current) {\n carouselRef.current.style.touchAction = 'pan-y';\n }\n };\n const onMouseDown = (event) => {\n dragStart();\n scrollStop();\n drag.current.sx = event.clientX;\n drag.current.sy = event.clientY;\n drag.current.offset = 0;\n drag.current.didMove = false;\n animationFrame.current = requestAnimationFrame(animate);\n };\n const onMouseMove = (event) => {\n if (!isDragging.current || drag.current.sx === null)\n return;\n drag.current.offset = (event.clientX - drag.current.sx) * directionMultiplier;\n if (Math.abs(drag.current.offset) > CLICK_THRESHOLD) {\n drag.current.didMove = true;\n }\n };\n const onMouseUp = (event) => {\n if (!isDragging.current)\n return;\n scrollStop();\n dragRelease();\n dragStop();\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n const onMouseLeave = (event) => {\n if (!isDragging.current)\n return;\n scrollStop();\n dragRelease();\n dragStop();\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n const onTouchStart = (event) => {\n scrollStop();\n dragStop();\n const touch = event.touches[0];\n drag.current.sx = touch.clientX;\n drag.current.sy = touch.clientY;\n drag.current.offset = 0;\n drag.current.didMove = false;\n animationFrame.current = requestAnimationFrame(animate);\n };\n const onTouchMove = (event) => {\n if (drag.current.sx === null || drag.current.sy === null || isScrolling.current)\n return;\n const { clientX, clientY } = event.touches[0];\n const { sx, sy } = drag.current;\n if (isDragging.current) {\n drag.current.offset = (clientX - sx) * directionMultiplier;\n if (Math.abs(drag.current.offset) > CLICK_THRESHOLD) {\n drag.current.didMove = true;\n }\n return;\n }\n const isVerticalScroll = Math.abs(clientY - sy) > Math.abs(clientX - sx);\n if (isVerticalScroll) {\n scrollStart();\n }\n else {\n drag.current.offset = (clientX - sx) * directionMultiplier;\n blockScroll();\n dragStart();\n }\n };\n const onTouchEnd = (event) => {\n unblockScroll();\n scrollStop();\n dragRelease();\n dragStop();\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n const onClickCapture = (event) => {\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n return {\n carouselRef,\n childrenRefs,\n handlers: {\n onMouseDown,\n onMouseMove,\n onMouseUp,\n onMouseLeave,\n onTouchStart,\n onTouchMove,\n onTouchEnd,\n onClickCapture,\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, defaultProperties } from '@sendbird/uikit-message-template';\nimport { useCarousel } from './useCarousel';\nexport const RMTCarousel = (_a) => {\n var { children, style, spacing = defaultProperties.carousel.style.spacing, maxChildWidth = defaultProperties.carousel.style.maxChildWidth, inlineStyle } = _a, props = __rest(_a, [\"children\", \"style\", \"spacing\", \"maxChildWidth\", \"inlineStyle\"]);\n const _b = style !== null && style !== void 0 ? style : {}, { paddingInlineStart = 0, paddingInlineEnd = 0 } = _b, restStyle = __rest(_b, [\"paddingInlineStart\", \"paddingInlineEnd\"]);\n const { carouselRef, childrenRefs, handlers } = useCarousel({\n spacing,\n childrenLength: children.length,\n paddingInlineStart: Number(paddingInlineStart),\n paddingInlineEnd: Number(paddingInlineEnd),\n });\n return (React.createElement(\"div\", Object.assign({}, handlers, { ref: carouselRef, style: Object.assign(Object.assign(Object.assign({}, restStyle), { gap: spacing, width: '100%', overflow: 'visible' }), inlineStyle) }, props), children.map((item, index) => (React.createElement(RMTCarouselChild, { ref: childrenRefs.current[index], key: index, maxChildWidth: maxChildWidth }, item)))));\n};\nconst RMTCarouselChild = React.forwardRef(function CarouselChild({ maxChildWidth, children }, ref) {\n const maxWidth = shouldSetMaxChildWidth(children.props, maxChildWidth) ? maxChildWidth : 'fit-content';\n return (React.createElement(\"div\", { ref: ref, style: { maxWidth, width: '100%', flexShrink: 0, overflow: 'hidden', userSelect: 'none' } }, children));\n});\n// Note: Set the maxChildWidth because it's impossible to determine the maximum width of items in the Carousel Child template when they have FillParent\nfunction shouldSetMaxChildWidth(props, maxChildWidth) {\n return !!props.templateItems.find((it) => {\n var _a;\n const width = (_a = it.width) !== null && _a !== void 0 ? _a : defaultProperties.view.size.width;\n const hasFillWidth = width.type === 'flex' && width.value === FlexSizeSpecValue.FillParent;\n const overMaxChildWidth = width.type === 'fixed' && width.value >= maxChildWidth;\n return hasFillWidth || overMaxChildWidth;\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, { useEffect, useMemo, useRef, useState } from 'react';\nexport const RMTImageCanvas = (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 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 RMTImageDefault = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, draggable: false, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const RMTImagePlaceholder = (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 { isGif } from '../../util';\nimport { RMTImageCanvas } from './index.canvas';\nimport { RMTImageDefault } from './index.img';\nimport { RMTImagePlaceholder } from './index.placeholder';\nexport const RMTImage = (_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(RMTImagePlaceholder, Object.assign({}, props));\n }\n else if (tintColor && !isGif(props.src)) {\n return React.createElement(RMTImageCanvas, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(RMTImageDefault, 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};\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 = ({ message, handleWebAction, handleCustomAction, handlePredefinedAction, highlight, children, }) => {\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n highlight,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt, highlight === null || highlight === void 0 ? void 0 : highlight.getContainerClassName, highlight === null || highlight === void 0 ? void 0 : highlight.getContainerInlineStyle, highlight === null || highlight === void 0 ? void 0 : highlight.renderText]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => {\n const context = React.useContext(MessageContext);\n if (!context) {\n throw new Error('useMessageContext must be used within a MessageProvider');\n }\n return context;\n};\nexport { MessageProvider, useMessageContext };\n","import { useMessageContext } from '../context/MessageContextProvider';\n/**\n * This hook is used to highlight each item in the message template by extending its style.\n * */\nexport function useHighlightStyle(raw) {\n const { highlight } = useMessageContext();\n return {\n className: (highlight === null || highlight === void 0 ? void 0 : highlight.getContainerClassName) ? highlight.getContainerClassName(raw) : undefined,\n style: (highlight === null || highlight === void 0 ? void 0 : highlight.getContainerInlineStyle) ? highlight.getContainerInlineStyle(raw) : undefined,\n renderText: (highlight === null || highlight === void 0 ? void 0 : highlight.renderText) ? highlight.renderText : (it) => it,\n };\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","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 { ComponentType } from '@sendbird/uikit-message-template';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport { clx, getValidURL } from '../util';\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nexport const ActionHandler = ({ children, props, className, style, inlineStyle }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? 'sb-message-template__border' : '';\n const actionClass = props.action ? 'sb-message-template__action' : '';\n const paddingStyles = {\n paddingBlockStart: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top,\n paddingBlockEnd: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.bottom,\n paddingInlineStart: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.left,\n paddingInlineEnd: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.right,\n };\n const onClick = (e) => {\n var _a, _b, _c, _d, _e, _f, _g;\n if (((_a = props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(getValidURL((_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 else if (((_d = props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n if (handleCustomAction) {\n handleCustomAction(e, props.action, message);\n }\n else {\n (_f = window === null || window === void 0 ? void 0 : window.open(getValidURL((_e = props === null || props === void 0 ? void 0 : props.action) === null || _e === void 0 ? void 0 : _e.data), '_blank', 'noopener noreferrer')) === null || _f === void 0 ? void 0 : _f.focus();\n }\n }\n else if (((_g = props.action) === null || _g === void 0 ? void 0 : _g.type) === 'uikit') {\n handlePredefinedAction === null || handlePredefinedAction === void 0 ? void 0 : handlePredefinedAction(e, props.action, message);\n }\n };\n if (props.type === ComponentType.TextButton) {\n return (React.createElement(\"button\", { className: clx(className, borderClass, actionClass), \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign(Object.assign({}, style), paddingStyles), inlineStyle), 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: clx(className, borderClass, actionClass), \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, wrapperStyles), inlineStyle), onClick: onClick },\n React.createElement(\"div\", { style: Object.assign({ display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit, width: '100%', height: '100%' }, paddingStyles) }, children)));\n};\n","import React from 'react';\nimport { FlexSizeSpecValue, createRenderer, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { RMTCarousel } from '../components/RMTCarousel';\nimport { RMTImage } from '../components/RMTImage';\nimport { useHighlightStyle } from '../hook/useHighlightStyle';\nimport { webkitLineClampStyles } from '../styles';\nimport { clx } from '../util';\nimport { ActionHandler } from './ActionHandler';\nexport const renderer = createRenderer({\n views: {\n box(props) {\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__box', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__text', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props, highlight.renderText)));\n },\n image(props) {\n var _a;\n const highlight = useHighlightStyle(props.rawProperties);\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__image-container', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(RMTImage, { 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 const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__text-button', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(Object.assign({ maxTextLines: defaultProperties.textButton.maxTextLines }, props), highlight.renderText)));\n },\n imageButton(props) {\n var _a;\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__image-container', 'sb-message-template__image-button', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(RMTImage, { 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 carouselView(props) {\n var _a, _b;\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(RMTCarousel, { className: clx('sb-message-template__carousel', highlight.className), inlineStyle: highlight.style, maxChildWidth: (_a = props.carouselStyle) === null || _a === void 0 ? void 0 : _a.maxChildWidth, spacing: (_b = props.carouselStyle) === null || _b === void 0 ? void 0 : _b.spacing, style: props.parsedProperties }, props.children));\n },\n },\n});\nfunction convertNewlinesToBr(text, highlightText) {\n return text.split('\\n').map((line, index) => (React.createElement(React.Fragment, { key: index },\n highlightText(line),\n React.createElement(\"br\", null))));\n}\nfunction renderText(view, highlightText) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const hasMaxLines = typeof maxTextLines === 'number' && maxTextLines > 0;\n const convertedText = convertNewlinesToBr(text, highlightText);\n if (hasMaxLines || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((hasMaxLines || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, hasMaxLines ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText));\n }\n return hasMaxLines ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText;\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 isFixedDimension = 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 isFixedDimension || isFill;\n}\n","import React from 'react';\nimport { createMessageTemplate } from '@sendbird/uikit-message-template';\nimport '../index.css';\nimport { parser } from './parser';\nimport { renderer } from './renderer';\nexport { parser } from './parser';\nexport { renderer } from './renderer';\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children, className }) => {\n return (React.createElement(\"div\", { className: `sb-message-template__parent ${className}`, style: { display: 'flex', flexDirection: 'column', maxWidth: 400, marginBlockEnd: 24 } }, children));\n },\n});\n"],"names":["outSingle","outViewStyle","outTextStyle","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,24,25,26,27,28,29,30,31]}
1
+ {"version":3,"file":"bundle-CdFl8VL-.js","sources":["../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../node_modules/@sendbird/uikit-message-template/dist/core/transforms/colorTransform.js","../../node_modules/@sendbird/uikit-message-template/dist/core/transforms/numberTransform.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/types/styles.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/index.js","../../node_modules/@sendbird/uikit-message-template/dist/utils/templateItemId.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/test/data.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/parser.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTCarousel/useCarousel.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTCarousel/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.canvas.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.img.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.placeholder.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/RMTImage/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useHighlightStyle.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/ui/ActionHandler.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/renderer.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[\"Carousel\"] = \"carouselView\";\n})(ComponentType || (ComponentType = {}));\n","import { ComponentType } from '../../types/components.js';\nconst outSingle = (key, obj) => {\n if (typeof obj[key] !== 'string')\n return {};\n return { [key]: argbToRgba(obj[key]) };\n};\nfunction argbToRgba(string) {\n if (!string.startsWith('#')) {\n return string;\n }\n if (string.length === 9) {\n return `#${string.slice(3)}${string[1]}${string[2]}`;\n }\n if (string.length === 5) {\n return `#${string.slice(2)}${string[1]}`;\n }\n return string;\n}\nconst outViewStyle = (viewStyle) => {\n if (!viewStyle)\n return {};\n return {\n viewStyle: Object.assign(Object.assign(Object.assign({}, viewStyle), outSingle('backgroundColor', viewStyle)), outSingle('borderColor', viewStyle)),\n };\n};\nconst outTextStyle = (textStyle) => {\n if (!textStyle)\n return {};\n return {\n textStyle: Object.assign(Object.assign({}, textStyle), outSingle('color', textStyle)),\n };\n};\nconst outImageStyle = (imageStyle) => {\n if (!imageStyle)\n return {};\n return {\n imageStyle: Object.assign(Object.assign({}, imageStyle), outSingle('tintColor', imageStyle)),\n };\n};\nexport const colorTransform = {\n run(prop) {\n if (prop.type === ComponentType.Text || prop.type === ComponentType.TextButton) {\n return Object.assign(Object.assign(Object.assign({}, prop), outViewStyle(prop.viewStyle)), outTextStyle(prop.textStyle));\n }\n if (prop.type === ComponentType.ImageButton || prop.type === ComponentType.Image) {\n return Object.assign(Object.assign(Object.assign({}, prop), outViewStyle(prop.viewStyle)), outImageStyle(prop.imageStyle));\n }\n return Object.assign(Object.assign({}, prop), outViewStyle(prop.viewStyle));\n },\n};\n","import { ComponentType, } from '../../types/components.js';\nconst isNumber = (val) => {\n if (typeof val === 'string') {\n return !Number.isNaN(Number(val));\n }\n return typeof val === 'number' && !Number.isNaN(val);\n};\nconst outSingle = (key, obj) => {\n if (obj[key] === undefined || obj[key] === null)\n return {};\n return isNumber(obj[key]) ? { [key]: Number(obj[key]) } : {};\n};\nconst outSpacing = (key, spacing) => {\n if (!spacing)\n return {};\n return {\n [key]: {\n left: isNumber(spacing.left) ? Number(spacing.left) : spacing.left,\n right: isNumber(spacing.right) ? Number(spacing.right) : spacing.right,\n top: isNumber(spacing.top) ? Number(spacing.top) : spacing.top,\n bottom: isNumber(spacing.bottom) ? Number(spacing.bottom) : spacing.bottom,\n },\n };\n};\nconst outSize = (key, size) => {\n if (!size)\n return {};\n return {\n [key]: {\n type: size.type,\n value: isNumber(size.value) ? Number(size.value) : size.value,\n },\n };\n};\nconst outMetadata = (metaData) => {\n if (!metaData)\n return {};\n return {\n metaData: {\n pixelWidth: isNumber(metaData.pixelWidth) ? Number(metaData.pixelWidth) : metaData.pixelWidth,\n pixelHeight: isNumber(metaData.pixelHeight) ? Number(metaData.pixelHeight) : metaData.pixelHeight,\n },\n };\n};\nconst outViewStyle = (viewStyle) => {\n if (!viewStyle)\n return {};\n return {\n viewStyle: Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({}, viewStyle), outSingle('borderWidth', viewStyle)), outSingle('radius', viewStyle)), outSpacing('margin', viewStyle.margin)), outSpacing('padding', viewStyle.padding)),\n };\n};\nconst outTextStyle = (textStyle) => {\n if (!textStyle)\n return {};\n return {\n textStyle: Object.assign(Object.assign(Object.assign({}, textStyle), outSingle('size', textStyle)), outSingle('weight', textStyle)),\n };\n};\nconst outCarouselStyle = (carouselstyle) => {\n if (!carouselstyle)\n return {};\n return {\n carouselStyle: Object.assign(Object.assign(Object.assign({}, carouselstyle), outSingle('spacing', carouselstyle)), outSingle('maxChildWidth', carouselstyle)),\n };\n};\nconst outViewProps = (view) => {\n return Object.assign(Object.assign(Object.assign({}, outSize('width', view.width)), outSize('height', view.height)), outViewStyle(view.viewStyle));\n};\nconst outTextProps = (text) => {\n return Object.assign(Object.assign(Object.assign({}, outViewProps(text)), outTextStyle(text.textStyle)), outSingle('maxTextLines', text));\n};\nconst outImageProps = (image) => {\n return Object.assign(Object.assign({}, outViewProps(image)), outMetadata(image.metaData));\n};\nconst outCarouselProps = (carousel) => {\n return Object.assign(Object.assign(Object.assign({}, outViewProps(carousel)), outCarouselStyle(carousel.carouselStyle)), { \n // Convert only top-level items to find has fill width values.\n items: carousel.items.map((item) => (Object.assign(Object.assign({}, item), { body: Object.assign(Object.assign({}, item.body), { items: item.body.items.map((it) => numberTransform.run(it)) }) }))) });\n};\nexport const numberTransform = {\n run(prop) {\n if (prop.type === ComponentType.Text || prop.type === ComponentType.TextButton) {\n return Object.assign(Object.assign({}, prop), outTextProps(prop));\n }\n if (prop.type === ComponentType.ImageButton || prop.type === ComponentType.Image) {\n return Object.assign(Object.assign({}, prop), outImageProps(prop));\n }\n if (prop.type === ComponentType.Carousel) {\n return Object.assign(Object.assign({}, prop), outCarouselProps(prop));\n }\n return Object.assign(Object.assign({}, prop), outViewProps(prop));\n },\n};\n","// -------- Set property mapper\nimport { ComponentType, } from '../types/components';\nimport { colorTransform } from './transforms/colorTransform';\nimport { numberTransform } from './transforms/numberTransform';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n var _a;\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 mapCarouselProps: (params === null || params === void 0 ? void 0 : params.mapCarouselProps) || defaultMapper,\n };\n const transforms = [colorTransform, numberTransform, ...((_a = params === null || params === void 0 ? void 0 : params.transforms) !== null && _a !== void 0 ? _a : [])];\n return {\n setTransforms(newTransforms) {\n transforms.length = 0;\n transforms.push(...newTransforms);\n },\n addTransforms(newTransforms) {\n transforms.push(...newTransforms);\n },\n parse(rawItem, options) {\n const item = transforms.reduce((it, transform) => transform.run(it), rawItem);\n switch (item.type) {\n case ComponentType.Box: {\n return { transformed: item, properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { transformed: item, properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { transformed: item, properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { transformed: item, properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { transformed: item, properties: mapper.mapImageButtonProps(item, options) };\n }\n case ComponentType.Carousel: {\n return { transformed: item, properties: mapper.mapCarouselProps(item, options) };\n }\n default:\n return { transformed: item, 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, _f;\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 carouselView: ((_f = params === null || params === void 0 ? void 0 : params.views) === null || _f === void 0 ? void 0 : _f.carouselView) || 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","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 } from '../types/styles';\nexport const SUPPORTED_TEMPLATE_VERSIONS = [\n 1,\n 2, // Composite templates: Carousel\n];\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};\nexport const isTemplateVersionSupported = (templateVersion) => {\n if (!templateVersion)\n return true;\n return SUPPORTED_TEMPLATE_VERSIONS.includes(Number(templateVersion));\n};\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","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 textButton: {\n maxTextLines: 1,\n },\n carousel: {\n style: {\n spacing: 10,\n maxChildWidth: 240,\n },\n },\n};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { SUPPORTED_TEMPLATE_VERSIONS, isTemplateVersionSupported } from '../utils';\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 = ({ templateItems, templateVersion, parentLayout = defaultProperties.box.layout, depth = 0, }) => {\n if (!isTemplateVersionSupported(templateVersion)) {\n throw new Error(`Cannot parse template item due to unsupported template version: ${templateVersion}, ${SUPPORTED_TEMPLATE_VERSIONS}`);\n }\n return (React.createElement(React.Fragment, null, templateItems.map((rawProperties, index, siblings) => {\n const result = parser.parse(rawProperties, { parentLayout, depth, elemIdx: index, siblings });\n const item = result.transformed;\n const rendererProps = {\n key: index,\n siblings,\n parentLayout,\n parsedProperties: result.properties,\n rawProperties,\n };\n switch (item.type) {\n case ComponentType.Carousel: {\n if (!Array.isArray(item.items) || item.items.length === 0) {\n throw new Error('Cannot parse template item as Carousel if carousel has no items.');\n }\n return (React.createElement(renderer.carouselView, Object.assign({}, item, rendererProps), item.items.map((template, index) => (React.createElement(MessageTemplateBase, { key: index, templateItems: template.body.items || [], depth: depth + 1, templateVersion: template.version })))));\n }\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, rendererProps),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout, depth: depth + 1, templateVersion: templateVersion })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, rendererProps));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, rendererProps));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, rendererProps));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, rendererProps));\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: ({ templateVersion, templateItems, parentLayout = defaultProperties.rootLayout, }) => {\n const items = setTemplateItemId(templateItems);\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, { className: 'sb-message-template__parent' },\n React.createElement(MessageTemplateBase, { isRoot: true, parentLayout: parentLayout, templateItems: items, templateVersion: templateVersion }))));\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 { 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};\nconst carousel_case_1 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '12',\n 'right': '12',\n },\n 'radius': '12',\n 'backgroundColor': '#ffffffff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '470',\n },\n 'items': [\n {\n 'type': 'text',\n 'text': '{content}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '12',\n 'right': '12',\n },\n 'radius': '12',\n 'backgroundColor': '#ffffffff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '470',\n },\n 'items': [\n {\n 'type': 'text',\n 'text': '{content}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\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 },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#fff2f4f6',\n 'radius': '8',\n 'margin': {\n 'top': '12',\n 'bottom': '4',\n 'left': '12',\n 'right': '12',\n },\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{button_text_1}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '12',\n 'right': '12',\n },\n 'radius': '12',\n 'backgroundColor': '#ffffffff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '470',\n },\n 'items': [\n {\n 'type': 'text',\n 'text': '{content}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\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 },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#fff2f4f6',\n 'radius': '8',\n 'margin': {\n 'top': '12',\n 'bottom': '4',\n 'left': '12',\n 'right': '12',\n },\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{button_text_1}',\n 'textStyle': {\n 'size': '14',\n 'color': '#ff374553',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_2_all_flex = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n 'viewStyle': {\n 'backgroundColor': 'transparent',\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'flex',\n 'value': '0',\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_q5tul}',\n 'radius': '20',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n },\n 'imageUrl': 'https://file-us-1.sendbird.com/b9ba681a0bf742dabb2fc251e0b056a9.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '{SBCOLOR_ofmbt}',\n },\n 'metaData': {\n 'pixelWidth': '18',\n 'pixelHeight': '18',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '34',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '34',\n },\n },\n {\n 'type': 'text',\n 'text': '더 보기',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_sc3q4}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '1',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_2_all_fixed = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n 'viewStyle': {\n 'backgroundColor': 'transparent',\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'flex',\n 'value': '0',\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_q5tul}',\n 'radius': '20',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n },\n 'imageUrl': 'https://file-us-1.sendbird.com/b9ba681a0bf742dabb2fc251e0b056a9.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '{SBCOLOR_ofmbt}',\n },\n 'metaData': {\n 'pixelWidth': '18',\n 'pixelHeight': '18',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '34',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '34',\n },\n },\n {\n 'type': 'text',\n 'text': '더 보기',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_sc3q4}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '1',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_2_both_flex_and_fixed = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '283',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'flex',\n 'value': '1',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'backgroundColor': '{SBCOLOR_4pivj}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '340',\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': 'center',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'viewStyle': {\n 'margin': {\n 'top': '20',\n 'bottom': '20',\n 'left': '16',\n 'right': '12',\n },\n },\n 'imageUrl': '{image_url.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '40',\n },\n 'metaData': {\n 'pixelWidth': '{image_url.width}',\n 'pixelHeight': '{image_url.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '16',\n },\n 'backgroundColor': '{SBCOLOR_p7200}',\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': '{SBCOLOR_j80gp}',\n 'radius': '4',\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '4',\n 'right': '4',\n },\n },\n 'text': '예약완료',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_89v35}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '4',\n 'bottom': '4',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{reservation_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_2ahre}',\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 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'text': '{departure_time}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_7fggh}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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 },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '4',\n 'right': '12',\n 'bottom': '12',\n 'left': '12',\n },\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': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': '문의사항 TOP1',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP2',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_4fx1e}',\n 'radius': '8',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '문의사항 TOP3',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_pg796}',\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 },\n ],\n },\n ],\n },\n },\n {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n 'viewStyle': {\n 'backgroundColor': 'transparent',\n 'padding': {\n 'top': '0',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'flex',\n 'value': '0',\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_q5tul}',\n 'radius': '20',\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n 'margin': {\n 'top': '8',\n 'bottom': '8',\n 'left': '8',\n 'right': '8',\n },\n },\n 'imageUrl': 'https://file-us-1.sendbird.com/b9ba681a0bf742dabb2fc251e0b056a9.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '{SBCOLOR_ofmbt}',\n },\n 'metaData': {\n 'pixelWidth': '18',\n 'pixelHeight': '18',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '34',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '34',\n },\n },\n {\n 'type': 'text',\n 'text': '더 보기',\n 'textStyle': {\n 'size': '10',\n 'color': '{SBCOLOR_sc3q4}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '1',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'center',\n },\n },\n ],\n },\n ],\n },\n },\n ],\n },\n ],\n },\n};\nconst carousel_case_3 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'carouselView',\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'carouselStyle': {\n 'spacing': 10,\n },\n 'items': [\n {\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': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'borderWidth': '1',\n 'borderColor': '{SBCOLOR_sq5wz}',\n 'backgroundColor': '{SBCOLOR_byw2t}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '254',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'imageUrl': '{guide-image.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '143',\n },\n 'metaData': {\n 'pixelWidth': '{guide-image.width}',\n 'pixelHeight': '{guide-image.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\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': '{SBCOLOR_zhxc4}',\n 'padding': {\n 'top': '0',\n 'bottom': '8',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_imwgs}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_56piy}',\n 'radius': '8',\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_button}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_fz5ow}',\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 },\n ],\n },\n ],\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_jvnor}',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n },\n {\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': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'borderWidth': '1',\n 'borderColor': '{SBCOLOR_sq5wz}',\n 'backgroundColor': '{SBCOLOR_byw2t}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '254',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'imageUrl': '{guide-image.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '143',\n },\n 'metaData': {\n 'pixelWidth': '{guide-image.width}',\n 'pixelHeight': '{guide-image.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\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': '{SBCOLOR_zhxc4}',\n 'padding': {\n 'top': '0',\n 'bottom': '8',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_imwgs}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_56piy}',\n 'radius': '8',\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_button}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_fz5ow}',\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 },\n ],\n },\n ],\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_jvnor}',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\n ],\n },\n },\n {\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': 'column',\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'radius': '12',\n 'borderWidth': '1',\n 'borderColor': '{SBCOLOR_sq5wz}',\n 'backgroundColor': '{SBCOLOR_byw2t}',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '254',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'image',\n 'imageUrl': '{guide-image.url}',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '143',\n },\n 'metaData': {\n 'pixelWidth': '{guide-image.width}',\n 'pixelHeight': '{guide-image.height}',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\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': '{SBCOLOR_zhxc4}',\n 'padding': {\n 'top': '0',\n 'bottom': '8',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_title}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_imwgs}',\n 'weight': 'normal',\n },\n 'maxTextLines': '1',\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': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_56piy}',\n 'radius': '8',\n 'margin': {\n 'top': '4',\n 'bottom': '0',\n 'left': '0',\n 'right': '0',\n },\n },\n 'text': '{guide_button}',\n 'textStyle': {\n 'size': '14',\n 'color': '{SBCOLOR_fz5ow}',\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 },\n ],\n },\n ],\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_jvnor}',\n },\n 'align': {\n 'horizontal': 'center',\n 'vertical': 'top',\n },\n },\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];\nconst column_box_horz_margin_and_fill_parent_children = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': FlexSizeSpecValue.FillParent,\n },\n 'height': {\n 'type': 'flex',\n 'value': FlexSizeSpecValue.WrapContent,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'margin': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\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': FlexSizeSpecValue.FillParent,\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': 'imageButton',\n 'viewStyle': {\n margin: {\n left: 24,\n right: 12,\n },\n },\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'fixed', 'value': 250 },\n 'imageUrl': 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': { 'pixelWidth': '1080', 'pixelHeight': '2640' },\n 'action': { 'data': 'www.naver.com' },\n },\n ],\n },\n ],\n },\n};\nexport const samples_for_margin_issue = [column_box_horz_margin_and_fill_parent_children];\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 // Example reference: https://sendbird.atlassian.net/wiki/spaces/UK/pages/2265484095/UIKit+message+template+syntax+extension+proposal#Carousel-test-syntax\n carousel_case_1,\n carousel_case_2_all_flex,\n carousel_case_2_all_fixed,\n carousel_case_2_both_flex_and_fixed,\n carousel_case_3,\n];\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};\nexport const isGif = (url) => {\n var _a;\n if (typeof url !== 'string')\n return false;\n const extension = (_a = url.split('.').pop()) === null || _a === void 0 ? void 0 : _a.toLowerCase();\n return extension === 'gif';\n};\nexport const isNumber = (val) => {\n if (typeof val === 'string') {\n return !Number.isNaN(Number(val));\n }\n return typeof val === 'number' && !Number.isNaN(val);\n};\nexport const clx = (...names) => {\n return names.filter((it) => !!it).join(' ');\n};\nexport const hasValidURLProtocol = (url = '') => {\n return ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n};\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 **/\nexport const getValidURL = (url = '') => {\n if (hasValidURLProtocol(url))\n return url;\n return `https://${url}`;\n};\n","import { AlignValue, 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'] = radius;\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d, _e, _f, _g, _h;\n const { viewStyle } = props;\n styles['marginBlockStart'] = (_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top;\n styles['marginBlockEnd'] = (_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.bottom;\n styles['marginInlineStart'] = (_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.left;\n styles['marginInlineEnd'] = (_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.right;\n const marginHorizontal = ((_f = (_e = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _e === void 0 ? void 0 : _e.left) !== null && _f !== void 0 ? _f : 0) + ((_h = (_g = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _g === void 0 ? void 0 : _g.right) !== null && _h !== void 0 ? _h : 0);\n if (marginHorizontal > 0 && styles.width === '100%')\n styles.width = `calc(100% - ${marginHorizontal}px)`;\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 styles['backgroundSize'] = '100% 100%';\n styles['backgroundPosition'] = 'center';\n }\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 === 'flex' && width.value == FlexSizeSpecValue.WrapContent) {\n style['width'] = 'fit-content';\n if (parentLayout === Layout.Row) {\n style['flexShrink'] = 0;\n }\n }\n else if (width.type === 'fixed' && width.value >= 0) {\n style['width'] = width.value;\n if (parentLayout === Layout.Row) {\n style['flexShrink'] = 0;\n }\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 === 'flex' && height.value == FlexSizeSpecValue.WrapContent) {\n style['height'] = 'fit-content';\n if (parentLayout === Layout.Column) {\n style['flexShrink'] = 0;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = height.value;\n if (parentLayout === Layout.Column) {\n style['flexShrink'] = 0;\n }\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 switch (align) {\n case AlignValue.Left:\n styles.textAlign = 'start';\n break;\n case AlignValue.Right:\n styles.textAlign = 'end';\n break;\n case AlignValue.Center:\n styles.textAlign = 'center';\n break;\n default:\n styles.textAlign = 'start';\n break;\n }\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 } = textStyle || {};\n if (size)\n styles['fontSize'] = 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.type) === 'flex' && (width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['width'] = 'fit-content';\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","import { Layout, createParser } from '@sendbird/uikit-message-template';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, } from '../styles';\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', wordBreak: 'break-word' });\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, props, 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 mapCarouselProps(props, options) {\n var _a, _b, _c, _d, _e, _f, _g, _h;\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n styles['paddingBlockStart'] = (_b = (_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.padding) === null || _b === void 0 ? void 0 : _b.top;\n styles['paddingBlockEnd'] = (_d = (_c = props.viewStyle) === null || _c === void 0 ? void 0 : _c.padding) === null || _d === void 0 ? void 0 : _d.bottom;\n styles['paddingInlineStart'] = (_f = (_e = props.viewStyle) === null || _e === void 0 ? void 0 : _e.padding) === null || _f === void 0 ? void 0 : _f.left;\n styles['paddingInlineEnd'] = (_h = (_g = props.viewStyle) === null || _g === void 0 ? void 0 : _g.padding) === null || _h === void 0 ? void 0 : _h.right;\n return styles;\n },\n});\n","import React, { useLayoutEffect, useMemo, useRef, useState } from 'react';\nconst SWIPE_THRESHOLD = 24;\nconst CLICK_THRESHOLD = 5;\nexport function useCarousel({ spacing, childrenLength, paddingInlineStart, paddingInlineEnd }) {\n const carouselRef = useRef(null);\n const childrenRefs = useRef(Array.from({ length: childrenLength }, () => React.createRef()));\n const isDragging = useRef(false);\n const isScrolling = useRef(false);\n const animationFrame = useRef(null);\n const drag = useRef({\n sx: null,\n sy: null,\n offset: 0,\n translateX: 0,\n currentIndex: 0,\n didMove: false,\n });\n const [childWidths, setChildWidths] = useState(() => childrenRefs.current.map(() => 0));\n const [isRTL, setIsRTL] = useState(false);\n const directionMultiplier = isRTL ? -1 : 1;\n const itemPositions = useMemo(() => {\n let currentPosition = paddingInlineStart;\n return childWidths.map((width, i) => {\n const spacingOffset = i > 0 ? spacing : 0;\n const start = currentPosition - spacingOffset;\n const end = start - width;\n currentPosition = end;\n return { start, end };\n });\n }, [childWidths, spacing, paddingInlineStart]);\n const totalContentWidth = useMemo(() => {\n const totalItemWidth = childWidths.reduce((acc, width) => acc + width, 0);\n const totalSpacing = spacing * (childrenLength - 1);\n return totalItemWidth + totalSpacing;\n }, [childWidths, spacing, childrenLength]);\n useLayoutEffect(() => {\n if (carouselRef.current) {\n const dir = getComputedStyle(carouselRef.current).direction;\n setIsRTL(dir === 'rtl');\n }\n }, []);\n useLayoutEffect(() => {\n setChildWidths(childrenRefs.current.map((ref) => { var _a, _b; return (_b = (_a = ref.current) === null || _a === void 0 ? void 0 : _a.clientWidth) !== null && _b !== void 0 ? _b : 0; }));\n }, [childrenLength]);\n useLayoutEffect(() => {\n if (itemPositions.length > 0) {\n drag.current.translateX = itemPositions[0].start;\n animate();\n }\n }, [itemPositions]);\n const dragStart = () => {\n if (!carouselRef.current)\n return;\n isDragging.current = true;\n carouselRef.current.style.cursor = 'grabbing';\n carouselRef.current.style.transition = 'none';\n animationFrame.current = requestAnimationFrame(animate);\n };\n const dragStop = () => {\n if (!carouselRef.current)\n return;\n isDragging.current = false;\n carouselRef.current.style.cursor = 'grab';\n carouselRef.current.style.transition = 'transform 0.5s ease';\n if (animationFrame.current) {\n cancelAnimationFrame(animationFrame.current);\n animationFrame.current = null;\n }\n };\n const dragRelease = () => {\n const { offset, currentIndex } = drag.current;\n const thresholdExceeded = Math.abs(offset) >= SWIPE_THRESHOLD;\n const swipeToNext = offset < 0 && currentIndex < childrenLength - 1;\n const swipeToPrev = offset > 0 && currentIndex > 0;\n let newIndex = currentIndex;\n if (thresholdExceeded && swipeToNext) {\n newIndex = currentIndex + 1;\n }\n else if (thresholdExceeded && swipeToPrev) {\n newIndex = currentIndex - 1;\n }\n function clampTranslateX(translateX) {\n var _a, _b;\n const containerWidth = (_b = (_a = carouselRef.current) === null || _a === void 0 ? void 0 : _a.clientWidth) !== null && _b !== void 0 ? _b : 0;\n const start = paddingInlineStart;\n const end = Math.min(0, containerWidth - totalContentWidth) - paddingInlineEnd;\n return Math.min(start, Math.max(translateX, end));\n }\n drag.current.currentIndex = newIndex;\n drag.current.translateX = clampTranslateX(itemPositions[newIndex].start);\n drag.current.offset = 0;\n };\n const scrollStart = () => {\n isScrolling.current = true;\n };\n const scrollStop = () => {\n isScrolling.current = false;\n };\n const animate = () => {\n if (carouselRef.current) {\n const tx = (drag.current.translateX + drag.current.offset) * directionMultiplier;\n carouselRef.current.style.transform = `translateX(${tx}px)`;\n }\n if (animationFrame.current) {\n animationFrame.current = requestAnimationFrame(animate);\n }\n };\n const blockScroll = () => {\n if (carouselRef.current) {\n carouselRef.current.style.touchAction = 'pan-x';\n }\n };\n const unblockScroll = () => {\n if (carouselRef.current) {\n carouselRef.current.style.touchAction = 'pan-y';\n }\n };\n const onMouseDown = (event) => {\n dragStart();\n scrollStop();\n drag.current.sx = event.clientX;\n drag.current.sy = event.clientY;\n drag.current.offset = 0;\n drag.current.didMove = false;\n animationFrame.current = requestAnimationFrame(animate);\n };\n const onMouseMove = (event) => {\n if (!isDragging.current || drag.current.sx === null)\n return;\n drag.current.offset = (event.clientX - drag.current.sx) * directionMultiplier;\n if (Math.abs(drag.current.offset) > CLICK_THRESHOLD) {\n drag.current.didMove = true;\n }\n };\n const onMouseUp = (event) => {\n if (!isDragging.current)\n return;\n scrollStop();\n dragRelease();\n dragStop();\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n const onMouseLeave = (event) => {\n if (!isDragging.current)\n return;\n scrollStop();\n dragRelease();\n dragStop();\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n const onTouchStart = (event) => {\n scrollStop();\n dragStop();\n const touch = event.touches[0];\n drag.current.sx = touch.clientX;\n drag.current.sy = touch.clientY;\n drag.current.offset = 0;\n drag.current.didMove = false;\n animationFrame.current = requestAnimationFrame(animate);\n };\n const onTouchMove = (event) => {\n if (drag.current.sx === null || drag.current.sy === null || isScrolling.current)\n return;\n const { clientX, clientY } = event.touches[0];\n const { sx, sy } = drag.current;\n if (isDragging.current) {\n drag.current.offset = (clientX - sx) * directionMultiplier;\n if (Math.abs(drag.current.offset) > CLICK_THRESHOLD) {\n drag.current.didMove = true;\n }\n return;\n }\n const isVerticalScroll = Math.abs(clientY - sy) > Math.abs(clientX - sx);\n if (isVerticalScroll) {\n scrollStart();\n }\n else {\n drag.current.offset = (clientX - sx) * directionMultiplier;\n blockScroll();\n dragStart();\n }\n };\n const onTouchEnd = (event) => {\n unblockScroll();\n scrollStop();\n dragRelease();\n dragStop();\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n const onClickCapture = (event) => {\n if (drag.current.didMove) {\n event.preventDefault();\n event.stopPropagation();\n }\n };\n return {\n carouselRef,\n childrenRefs,\n handlers: {\n onMouseDown,\n onMouseMove,\n onMouseUp,\n onMouseLeave,\n onTouchStart,\n onTouchMove,\n onTouchEnd,\n onClickCapture,\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, defaultProperties } from '@sendbird/uikit-message-template';\nimport { useCarousel } from './useCarousel';\nexport const RMTCarousel = (_a) => {\n var { children, style, spacing = defaultProperties.carousel.style.spacing, maxChildWidth = defaultProperties.carousel.style.maxChildWidth, inlineStyle } = _a, props = __rest(_a, [\"children\", \"style\", \"spacing\", \"maxChildWidth\", \"inlineStyle\"]);\n const _b = style !== null && style !== void 0 ? style : {}, { paddingInlineStart = 0, paddingInlineEnd = 0 } = _b, restStyle = __rest(_b, [\"paddingInlineStart\", \"paddingInlineEnd\"]);\n const { carouselRef, childrenRefs, handlers } = useCarousel({\n spacing,\n childrenLength: children.length,\n paddingInlineStart: Number(paddingInlineStart),\n paddingInlineEnd: Number(paddingInlineEnd),\n });\n return (React.createElement(\"div\", Object.assign({}, handlers, { ref: carouselRef, style: Object.assign(Object.assign(Object.assign({}, restStyle), { gap: spacing, width: '100%', overflow: 'visible' }), inlineStyle) }, props), children.map((item, index) => (React.createElement(RMTCarouselChild, { ref: childrenRefs.current[index], key: index, maxChildWidth: maxChildWidth }, item)))));\n};\nconst RMTCarouselChild = React.forwardRef(function CarouselChild({ maxChildWidth, children }, ref) {\n const maxWidth = shouldSetMaxChildWidth(children.props, maxChildWidth) ? maxChildWidth : 'fit-content';\n return (React.createElement(\"div\", { ref: ref, style: { maxWidth, width: '100%', flexShrink: 0, overflow: 'hidden', userSelect: 'none' } }, children));\n});\n// Note: Set the maxChildWidth because it's impossible to determine the maximum width of items in the Carousel Child template when they have FillParent\nfunction shouldSetMaxChildWidth(props, maxChildWidth) {\n return !!props.templateItems.find((it) => {\n var _a;\n const width = (_a = it.width) !== null && _a !== void 0 ? _a : defaultProperties.view.size.width;\n const hasFillWidth = width.type === 'flex' && width.value === FlexSizeSpecValue.FillParent;\n const overMaxChildWidth = width.type === 'fixed' && width.value >= maxChildWidth;\n return hasFillWidth || overMaxChildWidth;\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, { useEffect, useMemo, useRef, useState } from 'react';\nexport const RMTImageCanvas = (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 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 RMTImageDefault = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, draggable: false, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const RMTImagePlaceholder = (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 { isGif } from '../../util';\nimport { RMTImageCanvas } from './index.canvas';\nimport { RMTImageDefault } from './index.img';\nimport { RMTImagePlaceholder } from './index.placeholder';\nexport const RMTImage = (_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(RMTImagePlaceholder, Object.assign({}, props));\n }\n else if (tintColor && !isGif(props.src)) {\n return React.createElement(RMTImageCanvas, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(RMTImageDefault, 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};\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 = ({ message, handleWebAction, handleCustomAction, handlePredefinedAction, highlight, children, }) => {\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n highlight,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt, highlight === null || highlight === void 0 ? void 0 : highlight.getContainerClassName, highlight === null || highlight === void 0 ? void 0 : highlight.getContainerInlineStyle, highlight === null || highlight === void 0 ? void 0 : highlight.renderText]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => {\n const context = React.useContext(MessageContext);\n if (!context) {\n throw new Error('useMessageContext must be used within a MessageProvider');\n }\n return context;\n};\nexport { MessageProvider, useMessageContext };\n","import { useMessageContext } from '../context/MessageContextProvider';\n/**\n * This hook is used to highlight each item in the message template by extending its style.\n * */\nexport function useHighlightStyle(raw) {\n const { highlight } = useMessageContext();\n return {\n className: (highlight === null || highlight === void 0 ? void 0 : highlight.getContainerClassName) ? highlight.getContainerClassName(raw) : undefined,\n style: (highlight === null || highlight === void 0 ? void 0 : highlight.getContainerInlineStyle) ? highlight.getContainerInlineStyle(raw) : undefined,\n renderText: (highlight === null || highlight === void 0 ? void 0 : highlight.renderText) ? highlight.renderText : (it) => it,\n };\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","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 { ComponentType } from '@sendbird/uikit-message-template';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport { clx, getValidURL } from '../util';\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nexport const ActionHandler = ({ children, props, className, style, inlineStyle }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? 'sb-message-template__border' : '';\n const actionClass = props.action ? 'sb-message-template__action' : '';\n const paddingStyles = {\n paddingBlockStart: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top,\n paddingBlockEnd: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.bottom,\n paddingInlineStart: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.left,\n paddingInlineEnd: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.right,\n };\n const onClick = (e) => {\n var _a, _b, _c, _d, _e, _f, _g;\n if (((_a = props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(getValidURL((_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 else if (((_d = props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n if (handleCustomAction) {\n handleCustomAction(e, props.action, message);\n }\n else {\n (_f = window === null || window === void 0 ? void 0 : window.open(getValidURL((_e = props === null || props === void 0 ? void 0 : props.action) === null || _e === void 0 ? void 0 : _e.data), '_blank', 'noopener noreferrer')) === null || _f === void 0 ? void 0 : _f.focus();\n }\n }\n else if (((_g = props.action) === null || _g === void 0 ? void 0 : _g.type) === 'uikit') {\n handlePredefinedAction === null || handlePredefinedAction === void 0 ? void 0 : handlePredefinedAction(e, props.action, message);\n }\n };\n if (props.type === ComponentType.TextButton) {\n return (React.createElement(\"button\", { className: clx(className, borderClass, actionClass), \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign(Object.assign({}, style), paddingStyles), inlineStyle), 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: clx(className, borderClass, actionClass), \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, wrapperStyles), inlineStyle), onClick: onClick },\n React.createElement(\"div\", { style: Object.assign({ display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit, width: '100%', height: '100%' }, paddingStyles) }, children)));\n};\n","import React from 'react';\nimport { FlexSizeSpecValue, createRenderer, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { RMTCarousel } from '../components/RMTCarousel';\nimport { RMTImage } from '../components/RMTImage';\nimport { useHighlightStyle } from '../hook/useHighlightStyle';\nimport { webkitLineClampStyles } from '../styles';\nimport { clx } from '../util';\nimport { ActionHandler } from './ActionHandler';\nexport const renderer = createRenderer({\n views: {\n box(props) {\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__box', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__text', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props, highlight.renderText)));\n },\n image(props) {\n var _a;\n const highlight = useHighlightStyle(props.rawProperties);\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__image-container', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(RMTImage, { 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 const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__text-button', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(Object.assign({ maxTextLines: defaultProperties.textButton.maxTextLines }, props), highlight.renderText)));\n },\n imageButton(props) {\n var _a;\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(ActionHandler, { className: clx('sb-message-template__image-container', 'sb-message-template__image-button', highlight.className), inlineStyle: highlight.style, elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(RMTImage, { 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 carouselView(props) {\n var _a, _b;\n const highlight = useHighlightStyle(props.rawProperties);\n return (React.createElement(RMTCarousel, { className: clx('sb-message-template__carousel', highlight.className), inlineStyle: highlight.style, maxChildWidth: (_a = props.carouselStyle) === null || _a === void 0 ? void 0 : _a.maxChildWidth, spacing: (_b = props.carouselStyle) === null || _b === void 0 ? void 0 : _b.spacing, style: props.parsedProperties }, props.children));\n },\n },\n});\nfunction convertNewlinesToBr(text, highlightText) {\n return text.split('\\n').map((line, index) => (React.createElement(React.Fragment, { key: index },\n highlightText(line),\n React.createElement(\"br\", null))));\n}\nfunction renderText(view, highlightText) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const hasMaxLines = typeof maxTextLines === 'number' && maxTextLines > 0;\n const convertedText = convertNewlinesToBr(text, highlightText);\n if (hasMaxLines || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((hasMaxLines || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, hasMaxLines ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText));\n }\n return hasMaxLines ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText;\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 isFixedDimension = 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 isFixedDimension || isFill;\n}\n","import React from 'react';\nimport { createMessageTemplate } from '@sendbird/uikit-message-template';\nimport '../index.css';\nimport { parser } from './parser';\nimport { renderer } from './renderer';\nexport { parser } from './parser';\nexport { renderer } from './renderer';\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children, className }) => {\n return (React.createElement(\"div\", { className: `sb-message-template__parent ${className}`, style: { display: 'flex', flexDirection: 'column', maxWidth: 400, marginBlockEnd: 24 } }, children));\n },\n});\n"],"names":["outSingle","outViewStyle","outTextStyle","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,24,25,26,27,28,29,30,31]}