@sendbird/uikit-react 3.15.2-rc-0 → 3.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (835) hide show
  1. package/App.js +80 -80
  2. package/Channel/components/ChannelHeader.js +35 -35
  3. package/Channel/components/ChannelUI.js +66 -66
  4. package/Channel/components/FileViewer.js +32 -32
  5. package/Channel/components/FrozenNotification.js +6 -6
  6. package/Channel/components/Message.js +56 -56
  7. package/Channel/components/MessageInput.js +44 -44
  8. package/Channel/components/MessageInputWrapper.js +44 -44
  9. package/Channel/components/MessageList.js +59 -59
  10. package/Channel/components/RemoveMessageModal.js +31 -31
  11. package/Channel/components/SuggestedMentionList.js +33 -33
  12. package/Channel/components/TypingIndicator.js +6 -6
  13. package/Channel/components/UnreadCount.js +8 -8
  14. package/Channel/context.js +29 -29
  15. package/Channel/hooks/useHandleUploadFiles.js +17 -17
  16. package/Channel/hooks/useInitialMessagesFetch.js +6 -6
  17. package/Channel/utils/compareMessagesForGrouping.js +6 -6
  18. package/Channel/utils/getMessagePartsInfo.js +7 -7
  19. package/Channel.js +66 -66
  20. package/ChannelList/components/AddChannel.js +23 -23
  21. package/ChannelList/components/ChannelListHeader.js +10 -10
  22. package/ChannelList/components/ChannelListUI.js +38 -38
  23. package/ChannelList/components/ChannelPreview.js +31 -31
  24. package/ChannelList/components/ChannelPreviewAction.js +15 -15
  25. package/ChannelList/context.js +19 -19
  26. package/ChannelList.js +38 -38
  27. package/ChannelSettings/components/ChannelProfile.js +21 -21
  28. package/ChannelSettings/components/ChannelSettingMenuList.js +18 -18
  29. package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
  30. package/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  31. package/ChannelSettings/components/ChannelSettingsUI.js +28 -28
  32. package/ChannelSettings/components/EditDetailsModal.js +21 -21
  33. package/ChannelSettings/components/LeaveChannel.js +18 -18
  34. package/ChannelSettings/components/ModerationPanel.js +26 -26
  35. package/ChannelSettings/components/UserListItem.js +19 -19
  36. package/ChannelSettings/components/UserPanel.js +25 -25
  37. package/ChannelSettings/context.js +17 -17
  38. package/ChannelSettings/hooks/useMenuList.js +26 -26
  39. package/ChannelSettings.js +28 -28
  40. package/CreateChannel/components/CreateChannelUI.js +20 -20
  41. package/CreateChannel/components/InviteUsers.js +20 -20
  42. package/CreateChannel/components/SelectChannelType.js +17 -17
  43. package/CreateChannel/context.js +4 -4
  44. package/CreateChannel.js +20 -20
  45. package/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
  46. package/CreateOpenChannel/context.js +1 -1
  47. package/CreateOpenChannel.js +18 -18
  48. package/EditUserProfile/components/EditUserProfileUI.js +19 -19
  49. package/EditUserProfile/context.js +1 -1
  50. package/EditUserProfile.js +19 -19
  51. package/GroupChannel/components/FileViewer.js +27 -27
  52. package/GroupChannel/components/FrozenNotification.js +6 -6
  53. package/GroupChannel/components/GroupChannelHeader.js +30 -30
  54. package/GroupChannel/components/GroupChannelUI.js +59 -59
  55. package/GroupChannel/components/Message.js +51 -51
  56. package/GroupChannel/components/MessageInputWrapper.js +39 -39
  57. package/GroupChannel/components/MessageList.js +52 -52
  58. package/GroupChannel/components/RemoveMessageModal.js +26 -26
  59. package/GroupChannel/components/SuggestedMentionList.js +12 -12
  60. package/GroupChannel/components/TypingIndicator.js +6 -6
  61. package/GroupChannel/components/UnreadCount.js +8 -8
  62. package/GroupChannel/context.js +24 -24
  63. package/GroupChannel.js +59 -59
  64. package/GroupChannelList/components/AddGroupChannel.js +22 -22
  65. package/GroupChannelList/components/GroupChannelListHeader.js +10 -10
  66. package/GroupChannelList/components/GroupChannelListItem.js +29 -29
  67. package/GroupChannelList/components/GroupChannelListUI.js +37 -37
  68. package/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
  69. package/GroupChannelList/context.js +17 -17
  70. package/GroupChannelList.js +37 -37
  71. package/MessageSearch/components/MessageSearchUI.js +15 -15
  72. package/MessageSearch/context.js +1 -1
  73. package/MessageSearch.js +17 -17
  74. package/OpenChannel/components/FrozenChannelNotification.js +5 -5
  75. package/OpenChannel/components/OpenChannelHeader.js +22 -22
  76. package/OpenChannel/components/OpenChannelInput.js +28 -28
  77. package/OpenChannel/components/OpenChannelMessage.js +37 -37
  78. package/OpenChannel/components/OpenChannelMessageList.js +41 -41
  79. package/OpenChannel/components/OpenChannelUI.js +41 -41
  80. package/OpenChannel/context.js +21 -21
  81. package/OpenChannel.js +41 -41
  82. package/OpenChannelList/components/OpenChannelListUI.js +20 -20
  83. package/OpenChannelList/components/OpenChannelPreview.js +6 -6
  84. package/OpenChannelList/context.js +3 -3
  85. package/OpenChannelList.js +20 -20
  86. package/OpenChannelSettings/components/EditDetailsModal.js +21 -21
  87. package/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
  88. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
  89. package/OpenChannelSettings/components/OperatorUI.js +22 -22
  90. package/OpenChannelSettings/components/ParticipantUI.js +20 -20
  91. package/OpenChannelSettings/context.js +16 -16
  92. package/OpenChannelSettings.js +22 -22
  93. package/SendbirdProvider.js +21 -21
  94. package/Thread/components/ParentMessageInfo.js +46 -46
  95. package/Thread/components/ParentMessageInfoItem.js +31 -31
  96. package/Thread/components/ThreadHeader.js +8 -8
  97. package/Thread/components/ThreadList.js +53 -53
  98. package/Thread/components/ThreadListItem.js +53 -53
  99. package/Thread/components/ThreadMessageInput.js +44 -44
  100. package/Thread/components/ThreadUI.js +59 -59
  101. package/Thread/context.js +22 -22
  102. package/Thread.js +59 -59
  103. package/VoicePlayer/context.js +4 -4
  104. package/VoicePlayer/useVoicePlayer.js +15 -15
  105. package/VoiceRecorder/context.js +15 -15
  106. package/VoiceRecorder/useVoiceRecorder.js +15 -15
  107. package/chunks/{bundle-CzsjkT4-.js → bundle--OAHJSmw.js} +6 -6
  108. package/chunks/bundle--OAHJSmw.js.map +1 -0
  109. package/chunks/{bundle-BAdBI7vB.js → bundle-0bmVZy8H.js} +1 -1
  110. package/chunks/bundle-0bmVZy8H.js.map +1 -0
  111. package/chunks/{bundle-B6lOEUaM.js → bundle-B-_V4CnO.js} +1 -1
  112. package/chunks/bundle-B-_V4CnO.js.map +1 -0
  113. package/chunks/{bundle-DcEa5TTA.js → bundle-B-ciFfPI.js} +4 -4
  114. package/chunks/bundle-B-ciFfPI.js.map +1 -0
  115. package/chunks/{bundle-CVv9ze-4.js → bundle-B-lJVVYE.js} +4 -4
  116. package/chunks/bundle-B-lJVVYE.js.map +1 -0
  117. package/chunks/{bundle-CU3lKgrf.js → bundle-B57RsthL.js} +2 -2
  118. package/chunks/bundle-B57RsthL.js.map +1 -0
  119. package/chunks/{bundle-C4LjV_oU.js → bundle-B8ibA1EB.js} +11 -11
  120. package/chunks/{bundle-C4LjV_oU.js.map → bundle-B8ibA1EB.js.map} +1 -1
  121. package/chunks/{bundle-BwLfuA7O.js → bundle-BBIw00T4.js} +4 -4
  122. package/chunks/bundle-BBIw00T4.js.map +1 -0
  123. package/chunks/{bundle-C05Z_PNp.js → bundle-BC4dsJNK.js} +8 -8
  124. package/chunks/{bundle-C05Z_PNp.js.map → bundle-BC4dsJNK.js.map} +1 -1
  125. package/chunks/{bundle-0l9ZFB8K.js → bundle-BFmeecz7.js} +2 -2
  126. package/chunks/bundle-BFmeecz7.js.map +1 -0
  127. package/chunks/{bundle-CkkIYjhq.js → bundle-BINxBmQM.js} +1 -1
  128. package/chunks/bundle-BINxBmQM.js.map +1 -0
  129. package/chunks/{bundle-DFw4Te4r.js → bundle-BJM7vcmn.js} +3 -3
  130. package/chunks/bundle-BJM7vcmn.js.map +1 -0
  131. package/chunks/{bundle-CK9sit6b.js → bundle-BJt-kjPl.js} +1 -1
  132. package/chunks/bundle-BJt-kjPl.js.map +1 -0
  133. package/chunks/{bundle-CmJm3b2L.js → bundle-BLcLypHS.js} +1 -1
  134. package/chunks/bundle-BLcLypHS.js.map +1 -0
  135. package/chunks/{bundle-DOoB_oii.js → bundle-BT6BSnP8.js} +2 -2
  136. package/chunks/bundle-BT6BSnP8.js.map +1 -0
  137. package/chunks/{bundle-B_lKaXUc.js → bundle-BVG_X5N7.js} +3 -3
  138. package/chunks/bundle-BVG_X5N7.js.map +1 -0
  139. package/chunks/{bundle-D2BB93vR.js → bundle-BVio5HTL.js} +3 -3
  140. package/chunks/bundle-BVio5HTL.js.map +1 -0
  141. package/chunks/{bundle-Bzbv33wN.js → bundle-BXqSYBXl.js} +1 -1
  142. package/chunks/bundle-BXqSYBXl.js.map +1 -0
  143. package/chunks/{bundle-DxMy9JXx.js → bundle-BeLNTQQf.js} +11 -11
  144. package/chunks/{bundle-DxMy9JXx.js.map → bundle-BeLNTQQf.js.map} +1 -1
  145. package/chunks/{bundle-Che09kYF.js → bundle-Bgm7XQ4m.js} +1 -1
  146. package/chunks/bundle-Bgm7XQ4m.js.map +1 -0
  147. package/chunks/{bundle-By56Li0n.js → bundle-BhvzZqvF.js} +1 -1
  148. package/chunks/{bundle-By56Li0n.js.map → bundle-BhvzZqvF.js.map} +1 -1
  149. package/chunks/{bundle-B18ovIxc.js → bundle-Bq6bplVi.js} +1 -1
  150. package/chunks/bundle-Bq6bplVi.js.map +1 -0
  151. package/chunks/{bundle-DXuy7M0s.js → bundle-BsH9koRW.js} +11 -11
  152. package/chunks/bundle-BsH9koRW.js.map +1 -0
  153. package/chunks/{bundle-cgyDy9I7.js → bundle-BuDuoVCS.js} +1 -1
  154. package/chunks/bundle-BuDuoVCS.js.map +1 -0
  155. package/chunks/{bundle-B7PhQFVC.js → bundle-BzgPV55S.js} +1 -1
  156. package/chunks/{bundle-B7PhQFVC.js.map → bundle-BzgPV55S.js.map} +1 -1
  157. package/chunks/{bundle-C3N_d0qp.js → bundle-C0s6TpPp.js} +12 -12
  158. package/chunks/{bundle-C3N_d0qp.js.map → bundle-C0s6TpPp.js.map} +1 -1
  159. package/chunks/{bundle-DOLsmPka.js → bundle-C3jPSKaX.js} +3 -3
  160. package/chunks/{bundle-DOLsmPka.js.map → bundle-C3jPSKaX.js.map} +1 -1
  161. package/chunks/{bundle-gkEl5mqk.js → bundle-C4cIX0j0.js} +4 -4
  162. package/chunks/bundle-C4cIX0j0.js.map +1 -0
  163. package/chunks/{bundle-B5QnpbeV.js → bundle-C8PoepBZ.js} +4 -4
  164. package/chunks/{bundle-B5QnpbeV.js.map → bundle-C8PoepBZ.js.map} +1 -1
  165. package/chunks/{bundle-B4GdfcyB.js → bundle-C9XA5zdX.js} +13 -13
  166. package/chunks/{bundle-B4GdfcyB.js.map → bundle-C9XA5zdX.js.map} +1 -1
  167. package/chunks/{bundle-JlDn8SIM.js → bundle-CBQrQD7l.js} +2 -2
  168. package/chunks/bundle-CBQrQD7l.js.map +1 -0
  169. package/chunks/{bundle-uN6qpp1K.js → bundle-CByHUKZD.js} +3 -3
  170. package/chunks/bundle-CByHUKZD.js.map +1 -0
  171. package/chunks/{bundle-BxPMTW7y.js → bundle-CGSb6mf1.js} +6 -6
  172. package/chunks/{bundle-BxPMTW7y.js.map → bundle-CGSb6mf1.js.map} +1 -1
  173. package/chunks/{bundle-BQpuf80G.js → bundle-CGk75aAS.js} +9 -9
  174. package/chunks/{bundle-BQpuf80G.js.map → bundle-CGk75aAS.js.map} +1 -1
  175. package/chunks/{bundle-CPmqmojx.js → bundle-CH4mENgL.js} +1 -1
  176. package/chunks/bundle-CH4mENgL.js.map +1 -0
  177. package/chunks/{bundle-BpPoggd-.js → bundle-CHD7DjQ8.js} +12 -12
  178. package/chunks/{bundle-BpPoggd-.js.map → bundle-CHD7DjQ8.js.map} +1 -1
  179. package/chunks/{bundle-KuF1JMLp.js → bundle-CT8Y7RqT.js} +3 -3
  180. package/chunks/{bundle-KuF1JMLp.js.map → bundle-CT8Y7RqT.js.map} +1 -1
  181. package/chunks/{bundle-DTyl9pcI.js → bundle-Ca21GHcC.js} +1 -1
  182. package/chunks/bundle-Ca21GHcC.js.map +1 -0
  183. package/chunks/{bundle-FiCf-ufT.js → bundle-CjS5cnCB.js} +8 -8
  184. package/chunks/{bundle-FiCf-ufT.js.map → bundle-CjS5cnCB.js.map} +1 -1
  185. package/chunks/{bundle-B6J5rG45.js → bundle-CjnLnZos.js} +1 -1
  186. package/chunks/bundle-CjnLnZos.js.map +1 -0
  187. package/chunks/{bundle-DC2I1Kiq.js → bundle-Cq7F2uBH.js} +9 -9
  188. package/chunks/{bundle-DC2I1Kiq.js.map → bundle-Cq7F2uBH.js.map} +1 -1
  189. package/chunks/{bundle-CWoNvHyT.js → bundle-CthkJchJ.js} +4 -4
  190. package/chunks/{bundle-CWoNvHyT.js.map → bundle-CthkJchJ.js.map} +1 -1
  191. package/chunks/{bundle-CoEmWa8r.js → bundle-CvuU1Yml.js} +3 -3
  192. package/chunks/bundle-CvuU1Yml.js.map +1 -0
  193. package/chunks/{bundle-AGYFJPHr.js → bundle-CxAj5A4v.js} +1 -1
  194. package/chunks/bundle-CxAj5A4v.js.map +1 -0
  195. package/chunks/{bundle-DC0RNCG8.js → bundle-CxoTOeY3.js} +7 -7
  196. package/chunks/{bundle-DC0RNCG8.js.map → bundle-CxoTOeY3.js.map} +1 -1
  197. package/chunks/{bundle-Ddnn734V.js → bundle-D33xn9Kq.js} +2 -2
  198. package/chunks/bundle-D33xn9Kq.js.map +1 -0
  199. package/chunks/{bundle-BZmZsF0C.js → bundle-D5AtjrPR.js} +3 -3
  200. package/{cjs/chunks/bundle-DJXRrb_w.js.map → chunks/bundle-D5AtjrPR.js.map} +1 -1
  201. package/chunks/{bundle-BD9AUi9W.js → bundle-D5Ehtwt-.js} +1 -1
  202. package/chunks/{bundle-BD9AUi9W.js.map → bundle-D5Ehtwt-.js.map} +1 -1
  203. package/chunks/{bundle-BiF1ELIz.js → bundle-D5o6q2i7.js} +1 -1
  204. package/chunks/{bundle-BiF1ELIz.js.map → bundle-D5o6q2i7.js.map} +1 -1
  205. package/chunks/{bundle-DZ8brdAy.js → bundle-D627MO7F.js} +1 -1
  206. package/chunks/bundle-D627MO7F.js.map +1 -0
  207. package/chunks/{bundle-Clto9RoI.js → bundle-D8w9G9HY.js} +6 -6
  208. package/chunks/bundle-D8w9G9HY.js.map +1 -0
  209. package/chunks/{bundle-DPtvteLG.js → bundle-DAt6usgF.js} +1 -1
  210. package/chunks/bundle-DAt6usgF.js.map +1 -0
  211. package/chunks/{bundle-CNhI8WP0.js → bundle-DEQgxw_n.js} +1 -1
  212. package/chunks/bundle-DEQgxw_n.js.map +1 -0
  213. package/chunks/{bundle-DECrgdGi.js → bundle-DJ-rmFYO.js} +6 -6
  214. package/chunks/bundle-DJ-rmFYO.js.map +1 -0
  215. package/chunks/{bundle-CdzQEYjo.js → bundle-DKCuBEcv.js} +4 -4
  216. package/chunks/{bundle-CdzQEYjo.js.map → bundle-DKCuBEcv.js.map} +1 -1
  217. package/chunks/{bundle-CSRNQMk6.js → bundle-DKnREyce.js} +1 -1
  218. package/chunks/bundle-DKnREyce.js.map +1 -0
  219. package/chunks/{bundle-CNVZeqtJ.js → bundle-DL0gPpL7.js} +4 -4
  220. package/chunks/{bundle-CNVZeqtJ.js.map → bundle-DL0gPpL7.js.map} +1 -1
  221. package/chunks/{bundle-CN4dAgNU.js → bundle-DNhaQmzi.js} +5 -5
  222. package/chunks/{bundle-CN4dAgNU.js.map → bundle-DNhaQmzi.js.map} +1 -1
  223. package/chunks/{bundle-D79D2nIN.js → bundle-DObAwfVw.js} +8 -8
  224. package/chunks/bundle-DObAwfVw.js.map +1 -0
  225. package/chunks/{bundle-DNsQB3B6.js → bundle-DWYNnssP.js} +2 -2
  226. package/chunks/{bundle-DNsQB3B6.js.map → bundle-DWYNnssP.js.map} +1 -1
  227. package/chunks/{bundle-ocQNGM-6.js → bundle-DWuwbyRw.js} +2 -2
  228. package/chunks/bundle-DWuwbyRw.js.map +1 -0
  229. package/chunks/{bundle-wi405QB4.js → bundle-DYfNuovz.js} +1 -1
  230. package/chunks/bundle-DYfNuovz.js.map +1 -0
  231. package/chunks/{bundle-C_ZmmNYI.js → bundle-Dbw8v-yP.js} +3 -3
  232. package/chunks/{bundle-C_ZmmNYI.js.map → bundle-Dbw8v-yP.js.map} +1 -1
  233. package/chunks/{bundle-LewW_m_J.js → bundle-DeQBgV9n.js} +1 -1
  234. package/chunks/{bundle-LewW_m_J.js.map → bundle-DeQBgV9n.js.map} +1 -1
  235. package/chunks/{bundle-D9VsAjGT.js → bundle-DhWy0qTl.js} +3 -3
  236. package/chunks/{bundle-D9VsAjGT.js.map → bundle-DhWy0qTl.js.map} +1 -1
  237. package/chunks/{bundle-cC67KTvz.js → bundle-DhxJPBgr.js} +12 -12
  238. package/chunks/{bundle-cC67KTvz.js.map → bundle-DhxJPBgr.js.map} +1 -1
  239. package/chunks/{bundle-C8WsCxs7.js → bundle-DiXvETU2.js} +2 -2
  240. package/chunks/{bundle-C8WsCxs7.js.map → bundle-DiXvETU2.js.map} +1 -1
  241. package/chunks/{bundle-DFgLtIPg.js → bundle-DjBeKiz7.js} +6 -6
  242. package/chunks/{bundle-DFgLtIPg.js.map → bundle-DjBeKiz7.js.map} +1 -1
  243. package/chunks/{bundle-nzR3dcvB.js → bundle-DkKs-tAZ.js} +1 -1
  244. package/chunks/bundle-DkKs-tAZ.js.map +1 -0
  245. package/chunks/{bundle-CWAmXb6m.js → bundle-GO_4Qjcc.js} +1 -1
  246. package/chunks/bundle-GO_4Qjcc.js.map +1 -0
  247. package/chunks/{bundle-BmZ03usG.js → bundle-LwKCE_KA.js} +9 -9
  248. package/chunks/bundle-LwKCE_KA.js.map +1 -0
  249. package/chunks/{bundle-6f4pEQSw.js → bundle-NN5B7g2M.js} +1 -1
  250. package/chunks/bundle-NN5B7g2M.js.map +1 -0
  251. package/chunks/{bundle-BKuxHYxe.js → bundle-Nx2kzt4o.js} +1 -1
  252. package/chunks/bundle-Nx2kzt4o.js.map +1 -0
  253. package/chunks/{bundle-CImThpdu.js → bundle-O2gfNx22.js} +5 -5
  254. package/chunks/{bundle-CImThpdu.js.map → bundle-O2gfNx22.js.map} +1 -1
  255. package/chunks/{bundle-CQNB5LhW.js → bundle-O4j4VX8j.js} +1 -1
  256. package/chunks/{bundle-CQNB5LhW.js.map → bundle-O4j4VX8j.js.map} +1 -1
  257. package/chunks/{bundle-L56YctA8.js → bundle-OTXquXNX.js} +1 -1
  258. package/chunks/bundle-OTXquXNX.js.map +1 -0
  259. package/chunks/{bundle-DeXD4Mn1.js → bundle-PN2KzFKp.js} +1 -1
  260. package/chunks/bundle-PN2KzFKp.js.map +1 -0
  261. package/chunks/{bundle-C1gnz02F.js → bundle-WY0FMtPL.js} +1 -1
  262. package/chunks/bundle-WY0FMtPL.js.map +1 -0
  263. package/chunks/{bundle-IYoeRx8R.js → bundle-YQtQpZrG.js} +2 -2
  264. package/chunks/bundle-YQtQpZrG.js.map +1 -0
  265. package/chunks/{bundle-Bc05fZP-.js → bundle-av08B2ef.js} +6 -6
  266. package/chunks/{bundle-Bc05fZP-.js.map → bundle-av08B2ef.js.map} +1 -1
  267. package/chunks/{bundle-CUV8ZCHY.js → bundle-hGRl-SRR.js} +4 -4
  268. package/chunks/bundle-hGRl-SRR.js.map +1 -0
  269. package/chunks/{bundle-YAfs2dVx.js → bundle-jUzSklzW.js} +2 -2
  270. package/chunks/bundle-jUzSklzW.js.map +1 -0
  271. package/chunks/{bundle-Eg9DqRcj.js → bundle-mwlpUQ_r.js} +1 -1
  272. package/chunks/bundle-mwlpUQ_r.js.map +1 -0
  273. package/chunks/{bundle-C3gD4oxt.js → bundle-q-bj0tm_.js} +1 -1
  274. package/chunks/bundle-q-bj0tm_.js.map +1 -0
  275. package/chunks/{bundle-CnqpMzJG.js → bundle-tYb89gvZ.js} +1 -1
  276. package/chunks/bundle-tYb89gvZ.js.map +1 -0
  277. package/chunks/{bundle-DEBlCWJn.js → bundle-zaOw-g5D.js} +5 -5
  278. package/chunks/bundle-zaOw-g5D.js.map +1 -0
  279. package/cjs/App.js +80 -80
  280. package/cjs/Channel/components/ChannelHeader.js +35 -35
  281. package/cjs/Channel/components/ChannelUI.js +66 -66
  282. package/cjs/Channel/components/FileViewer.js +32 -32
  283. package/cjs/Channel/components/FrozenNotification.js +6 -6
  284. package/cjs/Channel/components/Message.js +56 -56
  285. package/cjs/Channel/components/MessageInput.js +44 -44
  286. package/cjs/Channel/components/MessageInputWrapper.js +44 -44
  287. package/cjs/Channel/components/MessageList.js +59 -59
  288. package/cjs/Channel/components/RemoveMessageModal.js +31 -31
  289. package/cjs/Channel/components/SuggestedMentionList.js +33 -33
  290. package/cjs/Channel/components/TypingIndicator.js +6 -6
  291. package/cjs/Channel/components/UnreadCount.js +8 -8
  292. package/cjs/Channel/context.js +29 -29
  293. package/cjs/Channel/hooks/useHandleUploadFiles.js +17 -17
  294. package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
  295. package/cjs/Channel/utils/compareMessagesForGrouping.js +6 -6
  296. package/cjs/Channel/utils/getMessagePartsInfo.js +7 -7
  297. package/cjs/Channel.js +66 -66
  298. package/cjs/ChannelList/components/AddChannel.js +23 -23
  299. package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
  300. package/cjs/ChannelList/components/ChannelListUI.js +38 -38
  301. package/cjs/ChannelList/components/ChannelPreview.js +31 -31
  302. package/cjs/ChannelList/components/ChannelPreviewAction.js +15 -15
  303. package/cjs/ChannelList/context.js +19 -19
  304. package/cjs/ChannelList.js +38 -38
  305. package/cjs/ChannelSettings/components/ChannelProfile.js +21 -21
  306. package/cjs/ChannelSettings/components/ChannelSettingMenuList.js +18 -18
  307. package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
  308. package/cjs/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
  309. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +28 -28
  310. package/cjs/ChannelSettings/components/EditDetailsModal.js +21 -21
  311. package/cjs/ChannelSettings/components/LeaveChannel.js +18 -18
  312. package/cjs/ChannelSettings/components/ModerationPanel.js +26 -26
  313. package/cjs/ChannelSettings/components/UserListItem.js +19 -19
  314. package/cjs/ChannelSettings/components/UserPanel.js +25 -25
  315. package/cjs/ChannelSettings/context.js +17 -17
  316. package/cjs/ChannelSettings/hooks/useMenuList.js +26 -26
  317. package/cjs/ChannelSettings.js +28 -28
  318. package/cjs/CreateChannel/components/CreateChannelUI.js +20 -20
  319. package/cjs/CreateChannel/components/InviteUsers.js +20 -20
  320. package/cjs/CreateChannel/components/SelectChannelType.js +17 -17
  321. package/cjs/CreateChannel/context.js +4 -4
  322. package/cjs/CreateChannel.js +20 -20
  323. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
  324. package/cjs/CreateOpenChannel/context.js +1 -1
  325. package/cjs/CreateOpenChannel.js +18 -18
  326. package/cjs/EditUserProfile/components/EditUserProfileUI.js +19 -19
  327. package/cjs/EditUserProfile/context.js +1 -1
  328. package/cjs/EditUserProfile.js +19 -19
  329. package/cjs/GroupChannel/components/FileViewer.js +27 -27
  330. package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
  331. package/cjs/GroupChannel/components/GroupChannelHeader.js +30 -30
  332. package/cjs/GroupChannel/components/GroupChannelUI.js +59 -59
  333. package/cjs/GroupChannel/components/Message.js +51 -51
  334. package/cjs/GroupChannel/components/MessageInputWrapper.js +38 -38
  335. package/cjs/GroupChannel/components/MessageList.js +52 -52
  336. package/cjs/GroupChannel/components/RemoveMessageModal.js +26 -26
  337. package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
  338. package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
  339. package/cjs/GroupChannel/components/UnreadCount.js +8 -8
  340. package/cjs/GroupChannel/context.js +24 -24
  341. package/cjs/GroupChannel.js +59 -59
  342. package/cjs/GroupChannelList/components/AddGroupChannel.js +22 -22
  343. package/cjs/GroupChannelList/components/GroupChannelListHeader.js +10 -10
  344. package/cjs/GroupChannelList/components/GroupChannelListItem.js +29 -29
  345. package/cjs/GroupChannelList/components/GroupChannelListUI.js +37 -37
  346. package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
  347. package/cjs/GroupChannelList/context.js +17 -17
  348. package/cjs/GroupChannelList.js +37 -37
  349. package/cjs/MessageSearch/components/MessageSearchUI.js +15 -15
  350. package/cjs/MessageSearch/context.js +1 -1
  351. package/cjs/MessageSearch.js +17 -17
  352. package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
  353. package/cjs/OpenChannel/components/OpenChannelHeader.js +22 -22
  354. package/cjs/OpenChannel/components/OpenChannelInput.js +28 -28
  355. package/cjs/OpenChannel/components/OpenChannelMessage.js +37 -37
  356. package/cjs/OpenChannel/components/OpenChannelMessageList.js +41 -41
  357. package/cjs/OpenChannel/components/OpenChannelUI.js +41 -41
  358. package/cjs/OpenChannel/context.js +21 -21
  359. package/cjs/OpenChannel.js +41 -41
  360. package/cjs/OpenChannelList/components/OpenChannelListUI.js +20 -20
  361. package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
  362. package/cjs/OpenChannelList/context.js +3 -3
  363. package/cjs/OpenChannelList.js +20 -20
  364. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +21 -21
  365. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
  366. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
  367. package/cjs/OpenChannelSettings/components/OperatorUI.js +22 -22
  368. package/cjs/OpenChannelSettings/components/ParticipantUI.js +20 -20
  369. package/cjs/OpenChannelSettings/context.js +16 -16
  370. package/cjs/OpenChannelSettings.js +22 -22
  371. package/cjs/SendbirdProvider.js +21 -21
  372. package/cjs/Thread/components/ParentMessageInfo.js +46 -46
  373. package/cjs/Thread/components/ParentMessageInfoItem.js +31 -31
  374. package/cjs/Thread/components/ThreadHeader.js +8 -8
  375. package/cjs/Thread/components/ThreadList.js +53 -53
  376. package/cjs/Thread/components/ThreadListItem.js +53 -53
  377. package/cjs/Thread/components/ThreadMessageInput.js +44 -44
  378. package/cjs/Thread/components/ThreadUI.js +59 -59
  379. package/cjs/Thread/context.js +22 -22
  380. package/cjs/Thread.js +59 -59
  381. package/cjs/VoicePlayer/context.js +4 -4
  382. package/cjs/VoicePlayer/useVoicePlayer.js +15 -15
  383. package/cjs/VoiceRecorder/context.js +15 -15
  384. package/cjs/VoiceRecorder/useVoiceRecorder.js +15 -15
  385. package/cjs/chunks/{bundle-C6eECgxP.js → bundle-5R8nn2LY.js} +6 -6
  386. package/cjs/chunks/bundle-5R8nn2LY.js.map +1 -0
  387. package/cjs/chunks/{bundle-BTPRYlq2.js → bundle-B-ZESUGr.js} +4 -4
  388. package/cjs/chunks/{bundle-BTPRYlq2.js.map → bundle-B-ZESUGr.js.map} +1 -1
  389. package/cjs/chunks/{bundle-ConBPx3u.js → bundle-B9TDm-0_.js} +6 -6
  390. package/cjs/chunks/bundle-B9TDm-0_.js.map +1 -0
  391. package/cjs/chunks/{bundle-CRE5QG2S.js → bundle-BADweFV0.js} +12 -12
  392. package/cjs/chunks/bundle-BADweFV0.js.map +1 -0
  393. package/cjs/chunks/{bundle-BlYDa09O.js → bundle-BAgIQe0V.js} +2 -2
  394. package/cjs/chunks/bundle-BAgIQe0V.js.map +1 -0
  395. package/cjs/chunks/{bundle-CQIEgMAY.js → bundle-BDk_TyBa.js} +3 -3
  396. package/cjs/chunks/bundle-BDk_TyBa.js.map +1 -0
  397. package/cjs/chunks/{bundle-Bqf1dUew.js → bundle-BFeh78wI.js} +4 -4
  398. package/cjs/chunks/bundle-BFeh78wI.js.map +1 -0
  399. package/cjs/chunks/{bundle-DCv-AF7c.js → bundle-BGUL-09S.js} +8 -8
  400. package/cjs/chunks/bundle-BGUL-09S.js.map +1 -0
  401. package/cjs/chunks/{bundle-DYbhXQ4t.js → bundle-BHlRvt-V.js} +1 -1
  402. package/cjs/chunks/bundle-BHlRvt-V.js.map +1 -0
  403. package/cjs/chunks/{bundle-CLZA_nEX.js → bundle-BJvKLlSd.js} +1 -1
  404. package/cjs/chunks/bundle-BJvKLlSd.js.map +1 -0
  405. package/cjs/chunks/{bundle-pSbb8Spw.js → bundle-BLtpgHET.js} +2 -2
  406. package/cjs/chunks/bundle-BLtpgHET.js.map +1 -0
  407. package/cjs/chunks/{bundle-BQvf6rXb.js → bundle-BRwR88GI.js} +1 -1
  408. package/cjs/chunks/bundle-BRwR88GI.js.map +1 -0
  409. package/cjs/chunks/{bundle-C-oKidJt.js → bundle-BTFQ4Unx.js} +1 -1
  410. package/cjs/chunks/bundle-BTFQ4Unx.js.map +1 -0
  411. package/cjs/chunks/{bundle-BKJLS0wM.js → bundle-BYc-hW6F.js} +2 -2
  412. package/cjs/chunks/bundle-BYc-hW6F.js.map +1 -0
  413. package/cjs/chunks/{bundle-DwERkywr.js → bundle-BenASpOn.js} +3 -3
  414. package/cjs/chunks/bundle-BenASpOn.js.map +1 -0
  415. package/cjs/chunks/{bundle-B7e-ZEwO.js → bundle-BgQBN_FV.js} +5 -5
  416. package/cjs/chunks/bundle-BgQBN_FV.js.map +1 -0
  417. package/cjs/chunks/{bundle-BxV6Gshn.js → bundle-BkYMMl14.js} +4 -4
  418. package/cjs/chunks/{bundle-BxV6Gshn.js.map → bundle-BkYMMl14.js.map} +1 -1
  419. package/cjs/chunks/{bundle-WpAmF6QT.js → bundle-BkcvjHsd.js} +1 -1
  420. package/cjs/chunks/bundle-BkcvjHsd.js.map +1 -0
  421. package/cjs/chunks/{bundle-D3x-DQx-.js → bundle-BnPUuJqS.js} +9 -9
  422. package/cjs/chunks/{bundle-D3x-DQx-.js.map → bundle-BnPUuJqS.js.map} +1 -1
  423. package/cjs/chunks/{bundle-CIfdaeBc.js → bundle-BnaN7K8z.js} +3 -3
  424. package/cjs/chunks/{bundle-CIfdaeBc.js.map → bundle-BnaN7K8z.js.map} +1 -1
  425. package/cjs/chunks/{bundle-BeuzvQVw.js → bundle-BrTxLzwR.js} +3 -3
  426. package/cjs/chunks/bundle-BrTxLzwR.js.map +1 -0
  427. package/cjs/chunks/{bundle-g2MTfZKL.js → bundle-BtSTcIgE.js} +1 -1
  428. package/cjs/chunks/bundle-BtSTcIgE.js.map +1 -0
  429. package/cjs/chunks/{bundle-Cp3WBUcC.js → bundle-BuoD4NeM.js} +1 -1
  430. package/cjs/chunks/bundle-BuoD4NeM.js.map +1 -0
  431. package/cjs/chunks/{bundle-DJXRrb_w.js → bundle-BzS57toy.js} +11 -11
  432. package/{chunks/bundle-BZmZsF0C.js.map → cjs/chunks/bundle-BzS57toy.js.map} +1 -1
  433. package/cjs/chunks/{bundle-DOm13isv.js → bundle-Bzy1AId2.js} +1 -1
  434. package/cjs/chunks/bundle-Bzy1AId2.js.map +1 -0
  435. package/cjs/chunks/{bundle-nHgdBDrg.js → bundle-C-XEPQVX.js} +9 -9
  436. package/cjs/chunks/bundle-C-XEPQVX.js.map +1 -0
  437. package/cjs/chunks/{bundle-yGWtxa1Z.js → bundle-C4mN_oXH.js} +1 -1
  438. package/cjs/chunks/bundle-C4mN_oXH.js.map +1 -0
  439. package/cjs/chunks/{bundle-CLe5AJ6I.js → bundle-C5gW6d6w.js} +1 -1
  440. package/cjs/chunks/bundle-C5gW6d6w.js.map +1 -0
  441. package/cjs/chunks/{bundle-VpvZIHOI.js → bundle-CGoqssQX.js} +4 -4
  442. package/cjs/chunks/{bundle-VpvZIHOI.js.map → bundle-CGoqssQX.js.map} +1 -1
  443. package/cjs/chunks/{bundle-yc4hcjdC.js → bundle-CISTobA8.js} +2 -2
  444. package/cjs/chunks/bundle-CISTobA8.js.map +1 -0
  445. package/cjs/chunks/{bundle-ul2b7eRr.js → bundle-CMCETK2t.js} +2 -2
  446. package/cjs/chunks/bundle-CMCETK2t.js.map +1 -0
  447. package/cjs/chunks/{bundle-K8Nv0tjY.js → bundle-CMMgmGkq.js} +1 -1
  448. package/cjs/chunks/bundle-CMMgmGkq.js.map +1 -0
  449. package/cjs/chunks/{bundle-sQsMtfSU.js → bundle-CRRg97ss.js} +4 -4
  450. package/cjs/chunks/bundle-CRRg97ss.js.map +1 -0
  451. package/cjs/chunks/{bundle-oSMQKWgt.js → bundle-CdSJvS1m.js} +1 -1
  452. package/cjs/chunks/bundle-CdSJvS1m.js.map +1 -0
  453. package/cjs/chunks/{bundle-B-3jB18C.js → bundle-CdnlwJLj.js} +1 -1
  454. package/cjs/chunks/bundle-CdnlwJLj.js.map +1 -0
  455. package/cjs/chunks/{bundle-BN-8Tsdj.js → bundle-CfQVodNR.js} +6 -6
  456. package/cjs/chunks/bundle-CfQVodNR.js.map +1 -0
  457. package/cjs/chunks/{bundle-Ba68NH2A.js → bundle-CiXxYAjT.js} +1 -1
  458. package/cjs/chunks/bundle-CiXxYAjT.js.map +1 -0
  459. package/cjs/chunks/{bundle-BqxX89X2.js → bundle-CkYA8_BB.js} +1 -1
  460. package/cjs/chunks/bundle-CkYA8_BB.js.map +1 -0
  461. package/cjs/chunks/{bundle-BV_ZCK_4.js → bundle-CmK-UBF5.js} +1 -1
  462. package/cjs/chunks/{bundle-BV_ZCK_4.js.map → bundle-CmK-UBF5.js.map} +1 -1
  463. package/cjs/chunks/{bundle-DPuApwI9.js → bundle-CqaSVO0h.js} +8 -8
  464. package/cjs/chunks/bundle-CqaSVO0h.js.map +1 -0
  465. package/cjs/chunks/{bundle-DrEIRdP8.js → bundle-Cx9BEB2F.js} +2 -2
  466. package/cjs/chunks/bundle-Cx9BEB2F.js.map +1 -0
  467. package/cjs/chunks/{bundle-C2BMave2.js → bundle-D05ffQ1z.js} +1 -1
  468. package/cjs/chunks/bundle-D05ffQ1z.js.map +1 -0
  469. package/cjs/chunks/{bundle-DzPH2rZI.js → bundle-D43Hl9ie.js} +4 -4
  470. package/cjs/chunks/{bundle-DzPH2rZI.js.map → bundle-D43Hl9ie.js.map} +1 -1
  471. package/cjs/chunks/{bundle-1KeBTFiE.js → bundle-D43f-iOY.js} +2 -2
  472. package/cjs/chunks/{bundle-1KeBTFiE.js.map → bundle-D43f-iOY.js.map} +1 -1
  473. package/cjs/chunks/{bundle-CT0JwPTP.js → bundle-D6K5DnvE.js} +2 -2
  474. package/cjs/chunks/bundle-D6K5DnvE.js.map +1 -0
  475. package/cjs/chunks/{bundle-z86POst0.js → bundle-D8MMgf-F.js} +1 -1
  476. package/cjs/chunks/bundle-D8MMgf-F.js.map +1 -0
  477. package/cjs/chunks/{bundle-Ce7LFjCB.js → bundle-D9jRtqno.js} +1 -1
  478. package/cjs/chunks/bundle-D9jRtqno.js.map +1 -0
  479. package/cjs/chunks/{bundle-CIBZ1DDx.js → bundle-DA46-aVJ.js} +1 -1
  480. package/cjs/chunks/bundle-DA46-aVJ.js.map +1 -0
  481. package/cjs/chunks/{bundle-crpPbd26.js → bundle-DAOFPhvq.js} +7 -7
  482. package/cjs/chunks/bundle-DAOFPhvq.js.map +1 -0
  483. package/cjs/chunks/{bundle-soswSxsQ.js → bundle-DBrRox21.js} +1 -1
  484. package/cjs/chunks/bundle-DBrRox21.js.map +1 -0
  485. package/cjs/chunks/{bundle-ClJsqSyV.js → bundle-DG4AFkXP.js} +2 -2
  486. package/cjs/chunks/{bundle-BgXyTQdh.js.map → bundle-DG4AFkXP.js.map} +1 -1
  487. package/cjs/chunks/{bundle-Dq7F4JX4.js → bundle-DSES2lYJ.js} +1 -1
  488. package/cjs/chunks/bundle-DSES2lYJ.js.map +1 -0
  489. package/cjs/chunks/{bundle-uV7ymSvD.js → bundle-DThEb9eO.js} +4 -4
  490. package/cjs/chunks/bundle-DThEb9eO.js.map +1 -0
  491. package/cjs/chunks/{bundle-CoYoIq-n.js → bundle-DVZD0f6y.js} +1 -1
  492. package/cjs/chunks/bundle-DVZD0f6y.js.map +1 -0
  493. package/cjs/chunks/{bundle-BjEGiRcU.js → bundle-DYhdJufA.js} +9 -9
  494. package/cjs/chunks/{bundle-BjEGiRcU.js.map → bundle-DYhdJufA.js.map} +1 -1
  495. package/cjs/chunks/{bundle-B2DCN4lV.js → bundle-D_pzwYZI.js} +1 -1
  496. package/cjs/chunks/bundle-D_pzwYZI.js.map +1 -0
  497. package/cjs/chunks/{bundle-s6G1M_9s.js → bundle-Da4L57_Z.js} +4 -4
  498. package/cjs/chunks/bundle-Da4L57_Z.js.map +1 -0
  499. package/cjs/chunks/{bundle-K4aaTsYZ.js → bundle-DcHWd72K.js} +11 -11
  500. package/cjs/chunks/{bundle-K4aaTsYZ.js.map → bundle-DcHWd72K.js.map} +1 -1
  501. package/cjs/chunks/{bundle-DP0OGIP6.js → bundle-Dh1-2GX7.js} +1 -1
  502. package/cjs/chunks/bundle-Dh1-2GX7.js.map +1 -0
  503. package/cjs/chunks/{bundle-Df3LYW73.js → bundle-DiXXTRgn.js} +1 -1
  504. package/cjs/chunks/bundle-DiXXTRgn.js.map +1 -0
  505. package/cjs/chunks/{bundle-CYPoTI33.js → bundle-DnR3rDkZ.js} +5 -5
  506. package/cjs/chunks/{bundle-CYPoTI33.js.map → bundle-DnR3rDkZ.js.map} +1 -1
  507. package/cjs/chunks/{bundle-knkxsIcp.js → bundle-DpsMqua6.js} +3 -3
  508. package/cjs/chunks/bundle-DpsMqua6.js.map +1 -0
  509. package/cjs/chunks/{bundle-Dpzo6XON.js → bundle-Dtvzn5JL.js} +11 -11
  510. package/cjs/chunks/{bundle-Dpzo6XON.js.map → bundle-Dtvzn5JL.js.map} +1 -1
  511. package/cjs/chunks/{bundle-GhArJ5mi.js → bundle-DxPUcjh7.js} +5 -5
  512. package/cjs/chunks/bundle-DxPUcjh7.js.map +1 -0
  513. package/cjs/chunks/{bundle-AfNH-aKh.js → bundle-Dywz0zzW.js} +12 -12
  514. package/cjs/chunks/{bundle-AfNH-aKh.js.map → bundle-Dywz0zzW.js.map} +1 -1
  515. package/cjs/chunks/{bundle-CoXCypy1.js → bundle-Dz4jHVMS.js} +3 -3
  516. package/cjs/chunks/bundle-Dz4jHVMS.js.map +1 -0
  517. package/cjs/chunks/{bundle-CJUB1bWx.js → bundle-FK_JZxjY.js} +6 -6
  518. package/cjs/chunks/{bundle-CJUB1bWx.js.map → bundle-FK_JZxjY.js.map} +1 -1
  519. package/cjs/chunks/{bundle-j4KkAwnq.js → bundle-GJ6bAIMl.js} +1 -1
  520. package/cjs/chunks/bundle-GJ6bAIMl.js.map +1 -0
  521. package/cjs/chunks/{bundle-BgXyTQdh.js → bundle-Hy95AO3c.js} +1 -1
  522. package/cjs/chunks/bundle-Hy95AO3c.js.map +1 -0
  523. package/cjs/chunks/{bundle-BsZveBVq.js → bundle-J9S4f-lR.js} +1 -1
  524. package/cjs/chunks/bundle-J9S4f-lR.js.map +1 -0
  525. package/cjs/chunks/{bundle-Obr6viEG.js → bundle-JBQA65UT.js} +3 -3
  526. package/cjs/chunks/{bundle-Obr6viEG.js.map → bundle-JBQA65UT.js.map} +1 -1
  527. package/cjs/chunks/{bundle-C6BDxU4T.js → bundle-JW4glPWm.js} +8 -8
  528. package/cjs/chunks/{bundle-C6BDxU4T.js.map → bundle-JW4glPWm.js.map} +1 -1
  529. package/cjs/chunks/{bundle-Bn6V7nDx.js → bundle-LbqYTih_.js} +1 -1
  530. package/cjs/chunks/bundle-LbqYTih_.js.map +1 -0
  531. package/cjs/chunks/{bundle-CM92FqNe.js → bundle-SO-a-Z_N.js} +1 -1
  532. package/cjs/chunks/bundle-SO-a-Z_N.js.map +1 -0
  533. package/cjs/chunks/{bundle-xYrxw7g8.js → bundle-SiAsfhqj.js} +1 -1
  534. package/cjs/chunks/{bundle-xYrxw7g8.js.map → bundle-SiAsfhqj.js.map} +1 -1
  535. package/cjs/chunks/{bundle-BHj3e3lE.js → bundle-TUFl_hqe.js} +3 -3
  536. package/cjs/chunks/bundle-TUFl_hqe.js.map +1 -0
  537. package/cjs/chunks/{bundle-C88HaWJC.js → bundle-WbkilsZX.js} +3 -3
  538. package/cjs/chunks/{bundle-C88HaWJC.js.map → bundle-WbkilsZX.js.map} +1 -1
  539. package/cjs/chunks/{bundle-Da8O6cMO.js → bundle-XMCwT8gn.js} +6 -6
  540. package/cjs/chunks/bundle-XMCwT8gn.js.map +1 -0
  541. package/cjs/chunks/{bundle-CLWCs8xR.js → bundle-YHArhioZ.js} +2 -2
  542. package/cjs/chunks/bundle-YHArhioZ.js.map +1 -0
  543. package/cjs/chunks/{bundle-B7b2zxcH.js → bundle-YW_oXmn0.js} +13 -13
  544. package/cjs/chunks/bundle-YW_oXmn0.js.map +1 -0
  545. package/cjs/chunks/{bundle-CLjktKJh.js → bundle-emnT0WA3.js} +1 -1
  546. package/cjs/chunks/bundle-emnT0WA3.js.map +1 -0
  547. package/cjs/chunks/{bundle-BsxZbSFL.js → bundle-jz_czj-D.js} +6 -6
  548. package/cjs/chunks/{bundle-BsxZbSFL.js.map → bundle-jz_czj-D.js.map} +1 -1
  549. package/cjs/chunks/{bundle-CvcBd08t.js → bundle-mba-htN1.js} +1 -1
  550. package/cjs/chunks/{bundle-CvcBd08t.js.map → bundle-mba-htN1.js.map} +1 -1
  551. package/cjs/chunks/{bundle-LFSCSF5v.js → bundle-s0ipGrbv.js} +3 -3
  552. package/cjs/chunks/bundle-s0ipGrbv.js.map +1 -0
  553. package/cjs/chunks/{bundle-jxkMxM8s.js → bundle-tyns7I92.js} +4 -4
  554. package/cjs/chunks/bundle-tyns7I92.js.map +1 -0
  555. package/cjs/chunks/{bundle-Dff1Jvd-.js → bundle-z218-CaG.js} +12 -12
  556. package/cjs/chunks/{bundle-Dff1Jvd-.js.map → bundle-z218-CaG.js.map} +1 -1
  557. package/cjs/hooks/useModal.js +15 -15
  558. package/cjs/index.js +84 -84
  559. package/cjs/pubSub/topics.js +1 -1
  560. package/cjs/sendbirdSelectors.js +2 -2
  561. package/cjs/ui/Accordion.js +2 -2
  562. package/cjs/ui/AccordionGroup.js +1 -1
  563. package/cjs/ui/AdminMessage.js +3 -3
  564. package/cjs/ui/Avatar.js +4 -4
  565. package/cjs/ui/Badge.js +5 -5
  566. package/cjs/ui/BottomSheet.js +15 -15
  567. package/cjs/ui/Button.js +3 -3
  568. package/cjs/ui/ChannelAvatar.js +5 -5
  569. package/cjs/ui/ConnectionStatus.js +6 -6
  570. package/cjs/ui/ContextMenu.js +11 -11
  571. package/cjs/ui/DateSeparator.js +4 -4
  572. package/cjs/ui/EmojiReactions.js +21 -21
  573. package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
  574. package/cjs/ui/FileMessageItemBody.js +9 -9
  575. package/cjs/ui/FileViewer.js +18 -18
  576. package/cjs/ui/Header.js +6 -6
  577. package/cjs/ui/Icon.js +2 -2
  578. package/cjs/ui/IconButton.js +1 -1
  579. package/cjs/ui/ImageRenderer.js +2 -2
  580. package/cjs/ui/Input.js +3 -3
  581. package/cjs/ui/Label.js +3 -3
  582. package/cjs/ui/LinkLabel.js +4 -4
  583. package/cjs/ui/Loader.js +2 -2
  584. package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  585. package/cjs/ui/MentionLabel.js +19 -19
  586. package/cjs/ui/MentionUserLabel.js +2 -2
  587. package/cjs/ui/MessageContent.js +39 -39
  588. package/cjs/ui/MessageFeedbackFailedModal.js +16 -16
  589. package/cjs/ui/MessageFeedbackModal.js +16 -16
  590. package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
  591. package/cjs/ui/MessageInput.js +16 -16
  592. package/cjs/ui/MessageItemMenu.js +12 -12
  593. package/cjs/ui/MessageItemReactionMenu.js +13 -13
  594. package/cjs/ui/MessageMenu.js +12 -12
  595. package/cjs/ui/MessageSearchFileItem.js +15 -15
  596. package/cjs/ui/MessageSearchItem.js +12 -12
  597. package/cjs/ui/MessageStatus.js +13 -13
  598. package/cjs/ui/MessageTemplate.js +1 -1
  599. package/cjs/ui/MobileFeedbackMenu.js +15 -15
  600. package/cjs/ui/MobileMenu.js +16 -16
  601. package/cjs/ui/Modal.js +15 -15
  602. package/cjs/ui/MutedAvatarOverlay.js +2 -2
  603. package/cjs/ui/OGMessageItemBody.js +22 -22
  604. package/cjs/ui/OpenChannelAdminMessage.js +3 -3
  605. package/cjs/ui/OpenChannelAvatar.js +8 -8
  606. package/cjs/ui/OpenchannelConversationHeader.js +8 -8
  607. package/cjs/ui/OpenchannelFileMessage.js +23 -23
  608. package/cjs/ui/OpenchannelOGMessage.js +25 -25
  609. package/cjs/ui/OpenchannelThumbnailMessage.js +22 -22
  610. package/cjs/ui/OpenchannelUserMessage.js +23 -23
  611. package/cjs/ui/PlaceHolder.js +6 -6
  612. package/cjs/ui/PlaybackTime.js +3 -3
  613. package/cjs/ui/ProgressBar.js +1 -1
  614. package/cjs/ui/QuoteMessage.js +10 -10
  615. package/cjs/ui/QuoteMessageInput.js +10 -10
  616. package/cjs/ui/ReactionBadge.js +3 -3
  617. package/cjs/ui/ReactionButton.js +4 -4
  618. package/cjs/ui/SortByRow.js +2 -2
  619. package/cjs/ui/TemplateMessageItemBody.js +10 -10
  620. package/cjs/ui/TextButton.js +2 -2
  621. package/cjs/ui/TextMessageItemBody.js +22 -22
  622. package/cjs/ui/ThreadReplies.js +8 -8
  623. package/cjs/ui/ThumbnailMessageItemBody.js +8 -8
  624. package/cjs/ui/Toggle.js +1 -1
  625. package/cjs/ui/Tooltip.js +3 -3
  626. package/cjs/ui/TooltipWrapper.js +1 -1
  627. package/cjs/ui/TypingIndicatorBubble.js +4 -4
  628. package/cjs/ui/UnknownMessageItemBody.js +8 -8
  629. package/cjs/ui/UserListItem.js +19 -19
  630. package/cjs/ui/UserListItemMenu.js +12 -12
  631. package/cjs/ui/UserProfile.js +19 -19
  632. package/cjs/ui/VoiceMessageInput.js +9 -9
  633. package/cjs/ui/VoiceMessageItemBody.js +15 -15
  634. package/cjs/ui/Word.js +19 -19
  635. package/cjs/useSendbirdStateContext.js +1 -1
  636. package/cjs/utils/message/isVoiceMessage.js +4 -4
  637. package/cjs/withSendbird.js +1 -1
  638. package/hooks/useModal.js +15 -15
  639. package/index.js +84 -84
  640. package/package.json +1 -1
  641. package/pubSub/topics.js +1 -1
  642. package/sendbirdSelectors.js +2 -2
  643. package/ui/Accordion.js +2 -2
  644. package/ui/AccordionGroup.js +1 -1
  645. package/ui/AdminMessage.js +3 -3
  646. package/ui/Avatar.js +4 -4
  647. package/ui/Badge.js +5 -5
  648. package/ui/BottomSheet.js +15 -15
  649. package/ui/Button.js +3 -3
  650. package/ui/ChannelAvatar.js +5 -5
  651. package/ui/ConnectionStatus.js +6 -6
  652. package/ui/ContextMenu.js +11 -11
  653. package/ui/DateSeparator.js +4 -4
  654. package/ui/EmojiReactions.js +21 -21
  655. package/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
  656. package/ui/FileMessageItemBody.js +9 -9
  657. package/ui/FileViewer.js +18 -18
  658. package/ui/Header.js +6 -6
  659. package/ui/Icon.js +2 -2
  660. package/ui/IconButton.js +1 -1
  661. package/ui/ImageRenderer.js +2 -2
  662. package/ui/Input.js +3 -3
  663. package/ui/Label.js +3 -3
  664. package/ui/LinkLabel.js +4 -4
  665. package/ui/Loader.js +2 -2
  666. package/ui/LoadingTemplateMessageItemBody.tsx.js +2 -2
  667. package/ui/MentionLabel.js +19 -19
  668. package/ui/MentionUserLabel.js +2 -2
  669. package/ui/MessageContent.js +39 -39
  670. package/ui/MessageFeedbackFailedModal.js +16 -16
  671. package/ui/MessageFeedbackModal.js +16 -16
  672. package/ui/MessageInput/hooks/usePaste.js +7 -7
  673. package/ui/MessageInput.js +16 -16
  674. package/ui/MessageItemMenu.js +12 -12
  675. package/ui/MessageItemReactionMenu.js +13 -13
  676. package/ui/MessageMenu.js +12 -12
  677. package/ui/MessageSearchFileItem.js +15 -15
  678. package/ui/MessageSearchItem.js +12 -12
  679. package/ui/MessageStatus.js +13 -13
  680. package/ui/MessageTemplate.js +1 -1
  681. package/ui/MobileFeedbackMenu.js +15 -15
  682. package/ui/MobileMenu.js +16 -16
  683. package/ui/Modal.js +15 -15
  684. package/ui/MutedAvatarOverlay.js +2 -2
  685. package/ui/OGMessageItemBody.js +22 -22
  686. package/ui/OpenChannelAdminMessage.js +3 -3
  687. package/ui/OpenChannelAvatar.js +8 -8
  688. package/ui/OpenchannelConversationHeader.js +8 -8
  689. package/ui/OpenchannelFileMessage.js +23 -23
  690. package/ui/OpenchannelOGMessage.js +25 -25
  691. package/ui/OpenchannelThumbnailMessage.js +22 -22
  692. package/ui/OpenchannelUserMessage.js +23 -23
  693. package/ui/PlaceHolder.js +6 -6
  694. package/ui/PlaybackTime.js +3 -3
  695. package/ui/ProgressBar.js +1 -1
  696. package/ui/QuoteMessage.js +10 -10
  697. package/ui/QuoteMessageInput.js +10 -10
  698. package/ui/ReactionBadge.js +3 -3
  699. package/ui/ReactionButton.js +4 -4
  700. package/ui/SortByRow.js +2 -2
  701. package/ui/TemplateMessageItemBody.js +10 -10
  702. package/ui/TextButton.js +2 -2
  703. package/ui/TextMessageItemBody.js +22 -22
  704. package/ui/ThreadReplies.js +8 -8
  705. package/ui/ThumbnailMessageItemBody.js +8 -8
  706. package/ui/Toggle.js +1 -1
  707. package/ui/Tooltip.js +3 -3
  708. package/ui/TooltipWrapper.js +1 -1
  709. package/ui/TypingIndicatorBubble.js +4 -4
  710. package/ui/UnknownMessageItemBody.js +8 -8
  711. package/ui/UserListItem.js +19 -19
  712. package/ui/UserListItemMenu.js +13 -13
  713. package/ui/UserProfile.js +19 -19
  714. package/ui/VoiceMessageInput.js +9 -9
  715. package/ui/VoiceMessageItemBody.js +15 -15
  716. package/ui/Word.js +19 -19
  717. package/useSendbirdStateContext.js +1 -1
  718. package/utils/message/isVoiceMessage.js +4 -4
  719. package/withSendbird.js +1 -1
  720. package/chunks/bundle-0l9ZFB8K.js.map +0 -1
  721. package/chunks/bundle-6f4pEQSw.js.map +0 -1
  722. package/chunks/bundle-AGYFJPHr.js.map +0 -1
  723. package/chunks/bundle-B18ovIxc.js.map +0 -1
  724. package/chunks/bundle-B6J5rG45.js.map +0 -1
  725. package/chunks/bundle-B6lOEUaM.js.map +0 -1
  726. package/chunks/bundle-BAdBI7vB.js.map +0 -1
  727. package/chunks/bundle-BKuxHYxe.js.map +0 -1
  728. package/chunks/bundle-B_lKaXUc.js.map +0 -1
  729. package/chunks/bundle-BmZ03usG.js.map +0 -1
  730. package/chunks/bundle-BwLfuA7O.js.map +0 -1
  731. package/chunks/bundle-Bzbv33wN.js.map +0 -1
  732. package/chunks/bundle-C1gnz02F.js.map +0 -1
  733. package/chunks/bundle-C3gD4oxt.js.map +0 -1
  734. package/chunks/bundle-CK9sit6b.js.map +0 -1
  735. package/chunks/bundle-CNhI8WP0.js.map +0 -1
  736. package/chunks/bundle-CPmqmojx.js.map +0 -1
  737. package/chunks/bundle-CSRNQMk6.js.map +0 -1
  738. package/chunks/bundle-CU3lKgrf.js.map +0 -1
  739. package/chunks/bundle-CUV8ZCHY.js.map +0 -1
  740. package/chunks/bundle-CVv9ze-4.js.map +0 -1
  741. package/chunks/bundle-CWAmXb6m.js.map +0 -1
  742. package/chunks/bundle-Che09kYF.js.map +0 -1
  743. package/chunks/bundle-CkkIYjhq.js.map +0 -1
  744. package/chunks/bundle-Clto9RoI.js.map +0 -1
  745. package/chunks/bundle-CmJm3b2L.js.map +0 -1
  746. package/chunks/bundle-CnqpMzJG.js.map +0 -1
  747. package/chunks/bundle-CoEmWa8r.js.map +0 -1
  748. package/chunks/bundle-CzsjkT4-.js.map +0 -1
  749. package/chunks/bundle-D2BB93vR.js.map +0 -1
  750. package/chunks/bundle-D79D2nIN.js.map +0 -1
  751. package/chunks/bundle-DEBlCWJn.js.map +0 -1
  752. package/chunks/bundle-DECrgdGi.js.map +0 -1
  753. package/chunks/bundle-DFw4Te4r.js.map +0 -1
  754. package/chunks/bundle-DOoB_oii.js.map +0 -1
  755. package/chunks/bundle-DPtvteLG.js.map +0 -1
  756. package/chunks/bundle-DTyl9pcI.js.map +0 -1
  757. package/chunks/bundle-DXuy7M0s.js.map +0 -1
  758. package/chunks/bundle-DZ8brdAy.js.map +0 -1
  759. package/chunks/bundle-DcEa5TTA.js.map +0 -1
  760. package/chunks/bundle-Ddnn734V.js.map +0 -1
  761. package/chunks/bundle-DeXD4Mn1.js.map +0 -1
  762. package/chunks/bundle-Eg9DqRcj.js.map +0 -1
  763. package/chunks/bundle-IYoeRx8R.js.map +0 -1
  764. package/chunks/bundle-JlDn8SIM.js.map +0 -1
  765. package/chunks/bundle-L56YctA8.js.map +0 -1
  766. package/chunks/bundle-YAfs2dVx.js.map +0 -1
  767. package/chunks/bundle-cgyDy9I7.js.map +0 -1
  768. package/chunks/bundle-gkEl5mqk.js.map +0 -1
  769. package/chunks/bundle-nzR3dcvB.js.map +0 -1
  770. package/chunks/bundle-ocQNGM-6.js.map +0 -1
  771. package/chunks/bundle-uN6qpp1K.js.map +0 -1
  772. package/chunks/bundle-wi405QB4.js.map +0 -1
  773. package/cjs/chunks/bundle-B-3jB18C.js.map +0 -1
  774. package/cjs/chunks/bundle-B2DCN4lV.js.map +0 -1
  775. package/cjs/chunks/bundle-B7b2zxcH.js.map +0 -1
  776. package/cjs/chunks/bundle-B7e-ZEwO.js.map +0 -1
  777. package/cjs/chunks/bundle-BHj3e3lE.js.map +0 -1
  778. package/cjs/chunks/bundle-BKJLS0wM.js.map +0 -1
  779. package/cjs/chunks/bundle-BN-8Tsdj.js.map +0 -1
  780. package/cjs/chunks/bundle-BQvf6rXb.js.map +0 -1
  781. package/cjs/chunks/bundle-Ba68NH2A.js.map +0 -1
  782. package/cjs/chunks/bundle-BeuzvQVw.js.map +0 -1
  783. package/cjs/chunks/bundle-BlYDa09O.js.map +0 -1
  784. package/cjs/chunks/bundle-Bn6V7nDx.js.map +0 -1
  785. package/cjs/chunks/bundle-Bqf1dUew.js.map +0 -1
  786. package/cjs/chunks/bundle-BqxX89X2.js.map +0 -1
  787. package/cjs/chunks/bundle-BsZveBVq.js.map +0 -1
  788. package/cjs/chunks/bundle-C-oKidJt.js.map +0 -1
  789. package/cjs/chunks/bundle-C2BMave2.js.map +0 -1
  790. package/cjs/chunks/bundle-C6eECgxP.js.map +0 -1
  791. package/cjs/chunks/bundle-CIBZ1DDx.js.map +0 -1
  792. package/cjs/chunks/bundle-CLWCs8xR.js.map +0 -1
  793. package/cjs/chunks/bundle-CLZA_nEX.js.map +0 -1
  794. package/cjs/chunks/bundle-CLe5AJ6I.js.map +0 -1
  795. package/cjs/chunks/bundle-CLjktKJh.js.map +0 -1
  796. package/cjs/chunks/bundle-CM92FqNe.js.map +0 -1
  797. package/cjs/chunks/bundle-CQIEgMAY.js.map +0 -1
  798. package/cjs/chunks/bundle-CRE5QG2S.js.map +0 -1
  799. package/cjs/chunks/bundle-CT0JwPTP.js.map +0 -1
  800. package/cjs/chunks/bundle-Ce7LFjCB.js.map +0 -1
  801. package/cjs/chunks/bundle-ClJsqSyV.js.map +0 -1
  802. package/cjs/chunks/bundle-CoXCypy1.js.map +0 -1
  803. package/cjs/chunks/bundle-CoYoIq-n.js.map +0 -1
  804. package/cjs/chunks/bundle-ConBPx3u.js.map +0 -1
  805. package/cjs/chunks/bundle-Cp3WBUcC.js.map +0 -1
  806. package/cjs/chunks/bundle-DCv-AF7c.js.map +0 -1
  807. package/cjs/chunks/bundle-DOm13isv.js.map +0 -1
  808. package/cjs/chunks/bundle-DP0OGIP6.js.map +0 -1
  809. package/cjs/chunks/bundle-DPuApwI9.js.map +0 -1
  810. package/cjs/chunks/bundle-DYbhXQ4t.js.map +0 -1
  811. package/cjs/chunks/bundle-Da8O6cMO.js.map +0 -1
  812. package/cjs/chunks/bundle-Df3LYW73.js.map +0 -1
  813. package/cjs/chunks/bundle-Dq7F4JX4.js.map +0 -1
  814. package/cjs/chunks/bundle-DrEIRdP8.js.map +0 -1
  815. package/cjs/chunks/bundle-DwERkywr.js.map +0 -1
  816. package/cjs/chunks/bundle-GhArJ5mi.js.map +0 -1
  817. package/cjs/chunks/bundle-K8Nv0tjY.js.map +0 -1
  818. package/cjs/chunks/bundle-LFSCSF5v.js.map +0 -1
  819. package/cjs/chunks/bundle-WpAmF6QT.js.map +0 -1
  820. package/cjs/chunks/bundle-crpPbd26.js.map +0 -1
  821. package/cjs/chunks/bundle-g2MTfZKL.js.map +0 -1
  822. package/cjs/chunks/bundle-j4KkAwnq.js.map +0 -1
  823. package/cjs/chunks/bundle-jxkMxM8s.js.map +0 -1
  824. package/cjs/chunks/bundle-knkxsIcp.js.map +0 -1
  825. package/cjs/chunks/bundle-nHgdBDrg.js.map +0 -1
  826. package/cjs/chunks/bundle-oSMQKWgt.js.map +0 -1
  827. package/cjs/chunks/bundle-pSbb8Spw.js.map +0 -1
  828. package/cjs/chunks/bundle-s6G1M_9s.js.map +0 -1
  829. package/cjs/chunks/bundle-sQsMtfSU.js.map +0 -1
  830. package/cjs/chunks/bundle-soswSxsQ.js.map +0 -1
  831. package/cjs/chunks/bundle-uV7ymSvD.js.map +0 -1
  832. package/cjs/chunks/bundle-ul2b7eRr.js.map +0 -1
  833. package/cjs/chunks/bundle-yGWtxa1Z.js.map +0 -1
  834. package/cjs/chunks/bundle-yc4hcjdC.js.map +0 -1
  835. package/cjs/chunks/bundle-z86POst0.js.map +0 -1
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-CQNB5LhW.js","sources":["../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../node_modules/@sendbird/uikit-message-template/dist/core/parser.js","../../node_modules/@sendbird/uikit-message-template/dist/core/renderer.js","../../node_modules/@sendbird/uikit-message-template/dist/context/SizeProvider.js","../../node_modules/@sendbird/uikit-message-template/dist/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/components/Carousel/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.canvas.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.img.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.placeholder.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/usePreservedCallback.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRefEffect.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useResizeObserver.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useElementSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRecalculationSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/index.js"],"sourcesContent":["export var ComponentType;\n(function (ComponentType) {\n ComponentType[\"Box\"] = \"box\";\n ComponentType[\"Text\"] = \"text\";\n ComponentType[\"Image\"] = \"image\";\n ComponentType[\"TextButton\"] = \"textButton\";\n ComponentType[\"ImageButton\"] = \"imageButton\";\n})(ComponentType || (ComponentType = {}));\nexport var CompositeComponentType;\n(function (CompositeComponentType) {\n CompositeComponentType[\"Carousel\"] = \"carouselView\";\n})(CompositeComponentType || (CompositeComponentType = {}));\n","// -------- Set property mapper\nimport { ComponentType, CompositeComponentType, } from '../types/components';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n const defaultMapper = (params === null || params === void 0 ? void 0 : params.defaultMapper) || MAPPER;\n const mapper = {\n defaultMapper,\n mapBoxProps: (params === null || params === void 0 ? void 0 : params.mapBoxProps) || defaultMapper,\n mapTextProps: (params === null || params === void 0 ? void 0 : params.mapTextProps) || defaultMapper,\n mapImageProps: (params === null || params === void 0 ? void 0 : params.mapImageProps) || defaultMapper,\n mapTextButtonProps: (params === null || params === void 0 ? void 0 : params.mapTextButtonProps) || defaultMapper,\n mapImageButtonProps: (params === null || params === void 0 ? void 0 : params.mapImageButtonProps) || defaultMapper,\n mapCarouselProps: (params === null || params === void 0 ? void 0 : params.mapCarouselProps) || defaultMapper,\n };\n const transforms = (params === null || params === void 0 ? void 0 : params.transforms) || [];\n return {\n parse(rawItem, options) {\n const item = transforms.reduce((it, transform) => transform(it), rawItem);\n switch (item.type) {\n case ComponentType.Box: {\n return { properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { properties: mapper.mapImageButtonProps(item, options) };\n }\n case CompositeComponentType.Carousel: {\n return { properties: mapper.mapCarouselProps(item, options) };\n }\n default:\n return { properties: undefined };\n }\n },\n };\n};\nexport const DEFAULT_PARSER_VALUES = {\n light: { _: undefined },\n dark: { _: undefined },\n};\n","import React from 'react';\nconst FRAGMENT = ({ children }) => React.createElement(React.Fragment, null, children);\nexport function createRenderer(params) {\n var _a, _b, _c, _d, _e, _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(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};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { CompositeComponentType } 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, parentLayout = defaultProperties.box.layout, isRoot = false, }) => {\n const renderItems = templateItems;\n return (React.createElement(React.Fragment, null, renderItems.map((item, index, siblings) => {\n const { properties } = parser.parse(item, { parentLayout, elemIdx: index, siblings });\n const props = {\n key: index,\n parentLayout,\n parsedProperties: properties,\n siblings,\n };\n switch (item.type) {\n // CompositeComponent should be top level component\n case CompositeComponentType.Carousel: {\n if (!isRoot) {\n throw new Error('Cannot parse template item as Carousel if the template item is not the root.');\n }\n if (!item.items || !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, props), item.items.map((items, index) => (React.createElement(MessageTemplateBase, { key: index, templateItems: items || [], parentLayout: parentLayout })))));\n }\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, props),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, props));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, props));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, props));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, props));\n }\n default: {\n // or throw new Error('Cannot parse template item')\n return React.createElement(UnknownMessage, { item: item });\n }\n }\n })));\n };\n return {\n MessageTemplate: ({ parentLayout = defaultProperties.rootLayout, templateVersion, templateItems, }) => {\n const items = setTemplateItemId(templateItems);\n if (!isTemplateVersionSupported(templateVersion)) {\n /**\n * I choose to throw instead of returning UnknownMessage because UnknownMessage syntax (required prop: item) is not what UIKit wants.\n */\n throw new Error(`Cannot parse template item due to unsupported template version: ${templateVersion}, ${SUPPORTED_TEMPLATE_VERSIONS}`);\n }\n let isCarousel = false;\n if (Array.isArray(items) && items.length > 0) {\n isCarousel = items[0].type === CompositeComponentType.Carousel;\n }\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, { className: isCarousel ? 'sb-message-template__parent_for_carousel' : '' },\n React.createElement(MessageTemplateBase, { parentLayout: parentLayout, templateItems: items, isRoot: true }))));\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 'spacing': 10,\n 'items': [\n [\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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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};\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 React, { useRef, useState } from 'react';\nconst PADDING_WIDTH = 24;\nconst CONTENT_LEFT_WIDTH = 40;\nconst SWIPE_THRESHOLD = 15;\nconst GAP_DEFAULT = 8;\n/**\n * fixed sized template items should use its child width.\n * Whereas flex sized template items should use its parent's width.\n * @param item\n */\nfunction shouldRenderAsFixed(item) {\n var _a;\n return ((_a = item.props.templateItems[0].width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed';\n}\nfunction CarouselItem({ item, defaultWidth, marginRight }) {\n const style = shouldRenderAsFixed(item)\n ? { width: 'fit-content' }\n : { minWidth: defaultWidth, width: '100%' };\n if (marginRight) {\n style['marginRight'] = marginRight;\n }\n return React.createElement(\"div\", { style: style }, item);\n}\nexport const Carousel = React.memo(({ children, gap = GAP_DEFAULT }) => {\n var _a, _b;\n const carouselRef = useRef(null);\n const screenWidth = window.innerWidth;\n const defaultItemWidth = (_b = (_a = carouselRef.current) === null || _a === void 0 ? void 0 : _a.clientWidth) !== null && _b !== void 0 ? _b : 0;\n const itemWidths = children.map((item) => {\n var _a;\n if (shouldRenderAsFixed(item)) {\n return Number((_a = item.props.templateItems[0].width) === null || _a === void 0 ? void 0 : _a.value);\n }\n return defaultItemWidth;\n });\n const itemPositions = getEachItemPositions();\n const [draggingInfo, setDraggingInfo] = useState({\n scrolling: false,\n dragging: false,\n startPos: null,\n offset: 0,\n translateX: 0,\n currentIndex: 0,\n });\n const handleMouseDown = (event) => {\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { scrolling: false, dragging: true, startPos: {\n x: event.clientX,\n y: event.clientY,\n }, offset: 0 })));\n };\n const handleMouseMove = (event) => {\n if (!draggingInfo.dragging || !draggingInfo.startPos)\n return;\n const currentX = event.clientX;\n const newOffset = currentX - draggingInfo.startPos.x;\n setDraggingInfo(Object.assign(Object.assign({}, draggingInfo), { offset: newOffset }));\n };\n const handleMouseUp = () => {\n if (!draggingInfo.dragging)\n return;\n handleDragEnd();\n unblockScroll();\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 handleTouchStart = (event) => {\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { scrolling: false, dragging: false, startPos: {\n x: event.touches[0].clientX,\n y: event.touches[0].clientY,\n }, offset: 0 })));\n };\n const handleTouchMove = (event) => {\n if (!draggingInfo.startPos || draggingInfo.scrolling)\n return;\n const startPos = draggingInfo.startPos;\n const [touchMoveX, touchMoveY] = [event.touches[0].clientX, event.touches[0].clientY];\n const [deltaX, deltaY] = [Math.abs(touchMoveX - startPos.x), Math.abs(touchMoveY - startPos.y)];\n const newOffset = touchMoveX - startPos.x;\n if (draggingInfo.dragging) {\n if (newOffset === draggingInfo.offset)\n return;\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { offset: newOffset })));\n return;\n }\n if (deltaY > deltaX) {\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { scrolling: true })));\n }\n else {\n blockScroll();\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { dragging: true, offset: newOffset })));\n }\n };\n const handleTouchEnd = () => {\n if (!draggingInfo.dragging)\n return;\n handleDragEnd();\n unblockScroll();\n };\n const getNewDraggingInfo = ({ translateX, currentIndex, newTranslateX, nextIndex, }) => {\n return {\n scrolling: false,\n dragging: false,\n startPos: null,\n offset: 0,\n translateX: newTranslateX !== null && newTranslateX !== void 0 ? newTranslateX : translateX,\n currentIndex: nextIndex !== null && nextIndex !== void 0 ? nextIndex : currentIndex,\n };\n };\n const handleDragEnd = () => {\n const { offset, currentIndex } = draggingInfo;\n const absOffset = Math.abs(offset);\n if (absOffset < SWIPE_THRESHOLD) {\n setDraggingInfo((props) => getNewDraggingInfo(props));\n return;\n }\n // If dragged to left, next index should be to the right\n if (offset < 0 && currentIndex < children.length - 1) {\n if (isLastItemFitsScreen(currentIndex)) {\n setDraggingInfo((props) => getNewDraggingInfo(props));\n return;\n }\n const nextIndex = currentIndex + 1;\n /**\n * This is special logic for \"더 보기\" button for Socar use-case.\n * The button will have a small width (less than 50px).\n * We want to include this button in the view and snap to right padding wall IFF !isLastTwoItemsFitScreen.\n */\n if (nextIndex === children.length - 1 || isLastItemFitsScreen(nextIndex)) {\n setDraggingInfo((props) => getNewDraggingInfo(Object.assign(Object.assign({}, props), { newTranslateX: itemPositions[children.length - 1].end - PADDING_WIDTH - CONTENT_LEFT_WIDTH + screenWidth, nextIndex: children.length - 1 })));\n }\n else {\n setDraggingInfo((props) => getNewDraggingInfo(Object.assign(Object.assign({}, props), { newTranslateX: itemPositions[nextIndex].start, nextIndex })));\n }\n // If dragged to right, next index should be to the left\n }\n else if (offset > 0 && currentIndex > 0) {\n let nextIndex = currentIndex - 1;\n while (draggingInfo.translateX >= itemPositions[nextIndex].start) {\n nextIndex--;\n }\n setDraggingInfo((props) => getNewDraggingInfo(Object.assign(Object.assign({}, props), { newTranslateX: itemPositions[nextIndex].start, nextIndex })));\n }\n else {\n setDraggingInfo((props) => getNewDraggingInfo(props));\n }\n };\n function getCurrentTranslateX() {\n return draggingInfo.translateX + draggingInfo.offset;\n }\n function isLastItemFitsScreen(nextIndex) {\n const restItemsWidth = itemWidths.slice(nextIndex).reduce((prev, curr) => prev + gap + curr);\n const restTotalWidth = PADDING_WIDTH + CONTENT_LEFT_WIDTH + restItemsWidth;\n return restTotalWidth <= screenWidth;\n }\n function getEachItemPositions() {\n let accumulator = 0;\n return itemWidths.map((itemWidth, i) => {\n if (i > 0) {\n accumulator -= gap;\n }\n const itemPosition = {\n start: accumulator,\n end: accumulator - itemWidth,\n };\n accumulator -= itemWidth;\n return itemPosition;\n });\n }\n return (React.createElement(\"div\", { ref: carouselRef, onMouseDown: handleMouseDown, onMouseMove: handleMouseMove, onMouseUp: handleMouseUp, onMouseLeave: handleMouseUp, onTouchStart: handleTouchStart, onTouchMove: handleTouchMove, onTouchEnd: handleTouchEnd, className: \"sb-message-template__carousel\", style: {\n cursor: draggingInfo.dragging ? 'grabbing' : 'grab',\n transition: draggingInfo.dragging ? 'none' : 'transform 0.5s ease',\n transform: `translateX(${getCurrentTranslateX()}px)`,\n } }, children.map((item, index) => (React.createElement(CarouselItem, { key: index + '', item: item, defaultWidth: defaultItemWidth + 'px', marginRight: index < children.length - 1 ? gap : undefined })))));\n});\nexport default Carousel;\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};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect, useMemo, useRef, useState } from 'react';\nexport const CanvasReactMessageTemplateImage = (props) => {\n const { imageSize, canvasRef, canvasProps } = useCanvasMessageTemplateImage(props);\n return (React.createElement(\"canvas\", Object.assign({}, canvasProps, { ref: canvasRef, width: imageSize === null || imageSize === void 0 ? void 0 : imageSize.width, height: imageSize === null || imageSize === void 0 ? void 0 : imageSize.height, onError: props.onError })));\n};\nconst useCanvasMessageTemplateImage = (_a) => {\n var { metaData, tintColor } = _a, props = __rest(_a, [\"metaData\", \"tintColor\"]);\n const canvasRef = useRef(null);\n const [fallbackImageSize, setFallbackImageSize] = useState();\n const imageSize = useMemo(() => {\n if ((metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight) && (metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth)) {\n return { width: metaData.pixelWidth, height: metaData.pixelHeight };\n }\n return fallbackImageSize;\n }, [fallbackImageSize, metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight, metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth]);\n useEffect(() => {\n if (imageSize == null) {\n console.log('Canvas_ReactMessageTemplateImage: no metaData, render fit to container');\n if (canvasRef.current) {\n canvasRef.current.style.width = '100%';\n canvasRef.current.style.height = '100%';\n const containerSize = canvasRef.current.getBoundingClientRect();\n setFallbackImageSize(containerSize);\n }\n }\n }, [imageSize]);\n useEffect(() => {\n if (props.src) {\n const img = new Image();\n const onImageLoad = () => {\n if (canvasRef.current && tintColor && imageSize) {\n const ctx = canvasRef.current.getContext('2d');\n if (ctx) {\n const { width: imageWidth, height: imageHeight } = imageSize;\n // reset context before draw, consider `.save()` and `.restore()` api\n ctx.clearRect(0, 0, imageWidth, imageHeight);\n ctx.beginPath();\n ctx.globalCompositeOperation = 'source-over';\n ctx.fillStyle = '#000';\n // draw\n ctx.drawImage(img, 0, 0, imageWidth, imageHeight);\n ctx.globalCompositeOperation = 'source-atop';\n ctx.fillStyle = tintColor;\n ctx.fillRect(0, 0, imageWidth, imageHeight);\n }\n }\n };\n const onImageError = (event) => {\n var _a;\n // @ts-ignore\n (_a = props.onError) === null || _a === void 0 ? void 0 : _a.call(props, event);\n };\n img.addEventListener('load', onImageLoad);\n img.addEventListener('error', onImageError);\n img.src = props.src;\n return () => {\n img.removeEventListener('load', onImageLoad);\n img.removeEventListener('error', onImageError);\n };\n }\n return;\n }, [props.src, imageSize, tintColor]);\n return {\n canvasRef,\n canvasProps: props,\n imageSize,\n };\n};\n","import React from 'react';\nexport const ImgReactMessageTemplateImage = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const PlaceholderReactMessageTemplateImage = (props) => {\n return React.createElement(\"div\", { style: Object.assign(Object.assign({}, props.style), { backgroundColor: 'transparent' }) });\n};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useCallback, useEffect, useState } from 'react';\nimport { isGif } from '../../util';\nimport { CanvasReactMessageTemplateImage } from './index.canvas';\nimport { ImgReactMessageTemplateImage } from './index.img';\nimport { PlaceholderReactMessageTemplateImage } from './index.placeholder';\nconst ReactMessageTemplateImage = (_a) => {\n var { tintColor, metaData } = _a, props = __rest(_a, [\"tintColor\", \"metaData\"]);\n const { hasError, onError } = useImageLoadError(props.src);\n if (props.onError)\n console.warn('`onError` is intercepted and not executed in the ReactMessageTemplateImage.');\n if (hasError) {\n return React.createElement(PlaceholderReactMessageTemplateImage, Object.assign({}, props));\n }\n else if (tintColor && !isGif(props.src)) {\n return React.createElement(CanvasReactMessageTemplateImage, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(ImgReactMessageTemplateImage, Object.assign({}, props, { onError: onError }));\n }\n};\nconst useImageLoadError = (source) => {\n const [hasError, setHasError] = useState(false);\n useEffect(() => setHasError(false), [source]);\n return {\n hasError,\n onError: useCallback(() => setHasError(true), []),\n };\n};\nexport default ReactMessageTemplateImage;\n","// create a context provider for MessageComponent\n// - this is a wrapper for MessageComponent\nimport React from 'react';\nconst MessageContext = React.createContext(null);\nconst MessageProvider = (props) => {\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction, children } = props;\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => React.useContext(MessageContext);\nexport { MessageProvider, useMessageContext };\n","import { useCallback, useEffect, useRef } from 'react';\n/**\n * Preserves a reference to the given callback function as an argument while the component is mounted.\n * Wraps the given callback in React's Ref to preserve the reference.\n * @param callback want to be preserved\n */\nexport function usePreservedCallback(callback) {\n const callbackRef = useRef(callback);\n useEffect(() => {\n callbackRef.current = callback;\n }, [callback]);\n return useCallback((...args) => {\n return callbackRef.current(...args);\n }, [callbackRef]);\n}\n","import { useCallback, useRef } from 'react';\nimport { usePreservedCallback } from './usePreservedCallback';\n/**\n * This hook can be used when you want to safely effect the value stored in useRef\n * Got this idea from https://github.com/facebook/react/issues/15176\n * @param callback\n * @param deps\n * @returns effect callback\n */\nexport function useRefEffect(callback, deps) {\n const preservedCallback = usePreservedCallback(callback);\n const disposeRef = useRef(noop);\n const effect = useCallback((element) => {\n disposeRef.current();\n disposeRef.current = noop;\n if (element != null) {\n const cleanup = callback(element);\n if (typeof cleanup === 'function') {\n disposeRef.current = cleanup;\n }\n }\n }, [preservedCallback, ...deps]);\n return effect;\n}\nfunction noop() { }\n","import { usePreservedCallback } from './usePreservedCallback';\nimport { useRefEffect } from './useRefEffect';\n/**\n * Subscribes to ResizeObserver on the component exposing the Ref,\n * to detect changes in the size of DOM elements.\n * The ResizeObserver API is required.\n * If you are targeting browsers that do not support that API, probably need to add appropriate polyfill too.\n * @param onResize\n * @returns ref\n */\nexport function useResizeObserver(onResize) {\n const resizeCallback = usePreservedCallback(onResize);\n const ref = useRefEffect((elem) => {\n const observer = new ResizeObserver((entries) => {\n if (entries[0] != null) {\n resizeCallback(entries[0]);\n }\n });\n observer.observe(elem);\n return () => {\n observer.unobserve(elem);\n };\n }, [resizeCallback]);\n return ref;\n}\n","import { useState } from 'react';\nimport { useResizeObserver } from './useResizeObserver';\n/**\n * @returns an element's width / height observed by IntersectionObserver,\n * and ref to detect its resize event\n */\nexport function useElementSize() {\n const [width, setWidth] = useState(-1);\n const [height, setHeight] = useState(-1);\n const [contentWidth, setContentWidth] = useState(-1);\n const [contentHeight, setContentHeight] = useState(-1);\n const [paddingWidth, setPaddingWidth] = useState(-1);\n const [paddingHeight, setPaddingHeight] = useState(-1);\n const ref = useResizeObserver((entry) => {\n // contentRect: content size only\n const { width: contentWidth, height: contentHeight } = entry.contentRect;\n // target: content + padding + border size\n const target = entry.target;\n const { width, height } = target.getBoundingClientRect();\n setWidth(width);\n setHeight(height);\n setContentWidth(contentWidth);\n setContentHeight(contentHeight);\n setPaddingWidth(width - contentWidth);\n setPaddingHeight(height - contentHeight);\n });\n return { ref, width, height, contentWidth, contentHeight, paddingWidth, paddingHeight };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { useEffect, useMemo } from 'react';\nimport { Layout, defaultProperties, useSizeContext } from '@sendbird/uikit-message-template';\nimport { isSizeCompatibleWithOption } from '../util';\nimport { useElementSize } from './useElementSize';\nfunction isViewCompatibleWithSizeOption({ width = defaultProperties.view.size.width, height = defaultProperties.view.size.height, parentLayout = defaultProperties.box.layout, option, }) {\n if (parentLayout === Layout.Row) {\n return isSizeCompatibleWithOption({\n size: width,\n option,\n });\n }\n return isSizeCompatibleWithOption({\n size: height,\n option,\n });\n}\nexport function useRecalculateWidth(params) {\n const { style, props } = params;\n const _a = useElementSize(), { ref: elemRef } = _a, size = __rest(_a, [\"ref\"]);\n const { updateSize, sizes } = useSizeContext();\n const { id, siblings, parentLayout } = props;\n const { width, height, paddingWidth, paddingHeight, contentWidth, contentHeight } = size;\n useEffect(() => {\n updateSize({\n id: props.id,\n width,\n height,\n paddingWidth,\n paddingHeight,\n contentWidth,\n contentHeight,\n });\n }, [props.id, width, height, paddingWidth, paddingHeight, contentWidth, contentHeight, updateSize]);\n const currentStyle = useMemo(() => {\n const sumViewSize = (acc = 0, view) => {\n var _a, _b, _c, _d;\n if (parentLayout === Layout.Row) {\n return acc + ((_b = (_a = sizes[view.id]) === null || _a === void 0 ? void 0 : _a.contentWidth) !== null && _b !== void 0 ? _b : 0);\n }\n return acc + ((_d = (_c = sizes[view.id]) === null || _c === void 0 ? void 0 : _c.contentHeight) !== null && _d !== void 0 ? _d : 0);\n };\n const hasFillOption = isViewCompatibleWithSizeOption({\n width: props.width,\n height: props.height,\n parentLayout,\n option: 'fill',\n });\n if (hasFillOption) {\n const wrapSiblingsSize = siblings\n .filter(({ width, height }) => !isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n }))\n .reduce(sumViewSize, 0);\n const fillSiblingCount = siblings.filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n })).length;\n const maxSizeOption = (() => {\n if (parentLayout === Layout.Row) {\n return {\n maxWidth: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n }\n return {\n maxHeight: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n })();\n return Object.assign(Object.assign(Object.assign({}, style), maxSizeOption), (width == 0 && { height: 0 }));\n }\n else {\n const currentElemIdx = siblings.findIndex((sibling) => sibling.id === id);\n const forwardSiblingsSize = siblings\n .slice(0, currentElemIdx)\n .filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'wrap',\n }))\n .reduce(sumViewSize, 0);\n return Object.assign(Object.assign(Object.assign({}, style), (width === 0 && { height: 0 })), (parentLayout === Layout.Row\n ? {\n maxWidth: `calc(100% - ${forwardSiblingsSize}px)`,\n }\n : {\n maxHeight: `calc(100% - ${forwardSiblingsSize}px)`,\n }));\n }\n }, [props.width, props.height, parentLayout, sizes, siblings, style, width, id]);\n return { recalculatedStyle: currentStyle, elemRef };\n}\n","import { ComponentType, FlexSizeSpecValue, Layout, MediaContentMode, alignInFlex, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { isNumber, 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 var _a;\n setViewSize(styles, props, options);\n setViewStyle(styles, props);\n // [Padding] Just parse the values as numbers; the actual value has been set in the ActionHandler.\n if ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.padding) {\n const padding = props.viewStyle.padding;\n if (isNumber(padding.top))\n padding.top = Number(padding.top);\n if (isNumber(padding.bottom))\n padding.bottom = Number(padding.bottom);\n if (isNumber(padding.left))\n padding.left = Number(padding.left);\n if (isNumber(padding.right))\n padding.right = Number(padding.right);\n }\n}\nfunction setBorderStyle(styles, borderWidth, borderColor, radius) {\n if (borderWidth) {\n styles['--border-width'] = `${borderWidth}px`;\n styles['--border-color'] = borderColor || 'transparent';\n }\n if (radius) {\n styles['borderRadius'] = Number(radius);\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;\n const { viewStyle } = props;\n if (isNumber((_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top))\n styles['marginTop'] = Number((_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.top);\n if (isNumber((_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.bottom))\n styles['marginBottom'] = Number((_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.bottom);\n if (isNumber((_e = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _e === void 0 ? void 0 : _e.left))\n styles['marginLeft'] = Number((_f = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _f === void 0 ? void 0 : _f.left);\n if (isNumber((_g = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _g === void 0 ? void 0 : _g.right))\n styles['marginRight'] = Number((_h = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _h === void 0 ? void 0 : _h.right);\n const marginHorizontal = Number((_j = styles.marginLeft) !== null && _j !== void 0 ? _j : '0') + Number((_k = styles.marginRight) !== null && _k !== void 0 ? _k : '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%';\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 === 'fixed' && width.value >= 0) {\n style['width'] = Number(width.value);\n }\n if (height.type === 'flex' && height.value == FlexSizeSpecValue.FillParent) {\n style['height'] = '100%';\n if (parentLayout === Layout.Column) {\n style['flex'] = 1;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = Number(height.value);\n }\n return style;\n}\nexport function setViewSize(styles, props, options) {\n var _a, _b;\n const { width: defaultWidth, height: defaultHeight } = defaultProperties.view.size;\n const { parentLayout } = options;\n const sizeStyle = getViewSizeStyle((_a = props.width) !== null && _a !== void 0 ? _a : defaultWidth, (_b = props.height) !== null && _b !== void 0 ? _b : defaultHeight, parentLayout);\n Object.assign(styles, sizeStyle);\n}\nexport function setAlign(styles, layout = defaultProperties.box.layout, align = defaultProperties.box.align) {\n if (layout === Layout.Row) {\n styles['flexDirection'] = 'row';\n styles['alignItems'] = alignInFlex(align.vertical);\n styles['justifyContent'] = alignInFlex(align.horizontal);\n }\n if (layout === Layout.Column) {\n styles['flexDirection'] = 'column';\n styles['alignItems'] = alignInFlex(align.horizontal);\n styles['justifyContent'] = alignInFlex(align.vertical);\n }\n}\nexport function setTextAlign(styles, align = defaultProperties.box.align.horizontal) {\n styles.textAlign = align;\n}\nexport function setImageStyle(styles, imageStyle) {\n const { contentMode = MediaContentMode.AspectFit } = imageStyle || {};\n if (contentMode) {\n switch (contentMode) {\n case MediaContentMode.AspectFill:\n styles['objectFit'] = 'cover';\n break;\n case MediaContentMode.AspectFit:\n styles['objectFit'] = 'contain';\n break;\n case MediaContentMode.ScalesToFill:\n styles['objectFit'] = 'fill';\n break;\n }\n }\n}\n// uses image meta-data to render images that doesn't break the UI\n// https://sendbird.atlassian.net/wiki/spaces/UK/pages/2008220608/Message+template+-+Image+policy\nexport function setImageAspectRatio(styles, props) {\n var _a, _b, _c, _d;\n const imageMetaData = props === null || props === void 0 ? void 0 : props.metaData;\n if (!(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelHeight) || !(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelWidth)) {\n return;\n }\n if (((_a = props === null || props === void 0 ? void 0 : props.width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed' || ((_b = props === null || props === void 0 ? void 0 : props.height) === null || _b === void 0 ? void 0 : _b.type) === 'fixed') {\n return;\n }\n styles['aspectRatio'] = `${(_c = props === null || props === void 0 ? void 0 : props.metaData) === null || _c === void 0 ? void 0 : _c.pixelWidth} / ${(_d = props === null || props === void 0 ? void 0 : props.metaData) === null || _d === void 0 ? void 0 : _d.pixelHeight}`;\n}\nexport function webkitLineClampStyles(numberOfLines) {\n return {\n WebkitLineClamp: numberOfLines,\n WebkitBoxOrient: 'vertical',\n display: '-webkit-box',\n overflow: 'hidden',\n overflowWrap: 'anywhere',\n flex: 1,\n };\n}\nexport function setTextStyle(styles, props, options) {\n const { textStyle, width } = props;\n // TODO: Change default as design\n const { size, color, weight = 'normal' } = textStyle || {};\n if (size)\n styles['fontSize'] = Number(size);\n if (color)\n styles['color'] = color;\n if (weight)\n styles['fontWeight'] = weight;\n if ((width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['maxWidth'] = '100%';\n }\n if (props.type === ComponentType.Text) {\n const { siblings, elemIdx } = options;\n // To push out any subsequent components from the container,\n // if a prior one is long enough to occupy an entire line\n // @link https://sendbird.atlassian.net/browse/NOTI-709\n if (siblings != null && siblings.length >= 2 && siblings.every(isWrappedText)) {\n styles.flexShrink = siblings.length - 1 === elemIdx ? 1 : 0;\n }\n }\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport { FlexSizeSpecValue, Layout, createMessageTemplate, createParser, createRenderer, } from '@sendbird/uikit-message-template';\nimport { Carousel } from '../components/Carousel';\nimport ReactMessageTemplateImage from '../components/ReactMessageTemplateImage';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport '../index.css';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, webkitLineClampStyles, } from '../styles';\nconst hasValidUrlProtocol = (url = '') => ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n/**\n * @param url - url to be checked\n * @returns url with http:// protocol if it doesn't have any protocol\n * @example\n * returnUrl('www.sendbird.com') // returns 'http://www.sendbird.com'\n * returnUrl('https://www.sendbird.com') // returns 'https://www.sendbird.com'\n * returnUrl('ftp://www.sendbird.com') // returns 'ftp://www.sendbird.com'\n * returnUrl('sendbird.com') // returns 'https://sendbird.com'\n **/\nconst returnUrl = (url = '') => {\n if (hasValidUrlProtocol(url)) {\n return url;\n }\n return `https://${url}`;\n};\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nconst ActionHandler = ({ className = '', style, children, props }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const onClick = (e) => {\n var _a, _b, _c, _d, _e, _f, _g;\n if (((_a = props === null || props === void 0 ? void 0 : props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(returnUrl((_b = props === null || props === void 0 ? void 0 : props.action) === null || _b === void 0 ? void 0 : _b.data), '_blank', 'noopener noreferrer')) === null || _c === void 0 ? void 0 : _c.focus();\n }\n }\n if (((_d = props === null || props === void 0 ? void 0 : props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n if (handleCustomAction) {\n handleCustomAction(e, props.action, message);\n }\n else {\n (_f = window === null || window === void 0 ? void 0 : window.open(returnUrl((_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 if (((_g = props === null || props === void 0 ? void 0 : 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 const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? ' sb-message-template__border' : '';\n if (className === 'sb-message-template__text-button') {\n return (React.createElement(\"button\", { className: `${className}${borderClass}`, \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, style), { paddingTop: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top, paddingRight: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.right, paddingBottom: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.bottom, paddingLeft: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.left }), onClick: onClick }, children));\n }\n const { display, flexDirection, justifyContent, alignItems, objectFit } = recalculatedStyle, wrapperStyles = __rest(recalculatedStyle, [\"display\", \"flexDirection\", \"justifyContent\", \"alignItems\", \"objectFit\"]);\n return (React.createElement(\"div\", { ref: elemRef, className: `${className}${borderClass} ${(props === null || props === void 0 ? void 0 : props.action) ? 'sb-message-template__action' : ''}`, \"data-sb-template-id\": props.elementId, style: wrapperStyles, onClick: onClick },\n React.createElement(\"div\", { style: {\n display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit,\n width: '100%',\n height: '100%',\n paddingTop: (_l = (_k = props.viewStyle) === null || _k === void 0 ? void 0 : _k.padding) === null || _l === void 0 ? void 0 : _l.top,\n paddingRight: (_o = (_m = props.viewStyle) === null || _m === void 0 ? void 0 : _m.padding) === null || _o === void 0 ? void 0 : _o.right,\n paddingBottom: (_q = (_p = props.viewStyle) === null || _p === void 0 ? void 0 : _p.padding) === null || _q === void 0 ? void 0 : _q.bottom,\n paddingLeft: (_s = (_r = props.viewStyle) === null || _r === void 0 ? void 0 : _r.padding) === null || _s === void 0 ? void 0 : _s.left,\n } }, children)));\n};\n/**\n * Text that is fixed or fill parent should be wrapped in a div with max-width: 100% and max-height: 100%\n * This is to prevent text from overflowing the padding of the container\n */\nfunction isFixedOrFill(view) {\n var _a, _b, _c, _d;\n const heightType = (_a = view === null || view === void 0 ? void 0 : view.height) === null || _a === void 0 ? void 0 : _a.type;\n const widthType = (_b = view === null || view === void 0 ? void 0 : view.width) === null || _b === void 0 ? void 0 : _b.type;\n const isFixedDiamension = heightType === 'fixed' || widthType === 'fixed';\n const isFill = (heightType === 'flex' && ((_c = view === null || view === void 0 ? void 0 : view.height) === null || _c === void 0 ? void 0 : _c.value) === FlexSizeSpecValue.FillParent) ||\n (widthType === 'flex' && ((_d = view === null || view === void 0 ? void 0 : view.width) === null || _d === void 0 ? void 0 : _d.value) === FlexSizeSpecValue.FillParent);\n return isFixedDiamension || isFill;\n}\nfunction convertNewlinesToBr(text) {\n return text.split('\\n').map((line, index) => (React.createElement(React.Fragment, { key: index },\n line,\n React.createElement(\"br\", null))));\n}\nfunction renderText(view) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const isMultiLine = maxTextLines != null && maxTextLines > 0;\n const convertedText = convertNewlinesToBr(text);\n if (isMultiLine || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((isMultiLine || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText));\n }\n return isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText;\n}\nexport const renderer = createRenderer({\n views: {\n box(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__box\", elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n image(props) {\n var _a;\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n textButton(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text-button\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(Object.assign({ maxTextLines: 1 }, props))));\n },\n imageButton(props) {\n var _a;\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container sb-message-template__image-button\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image-button\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n carouselView(props) {\n return React.createElement(Carousel, { gap: props.spacing }, props.children);\n },\n },\n});\nexport const parser = createParser({\n mapBoxProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setAlign(styles, props.layout, props.align);\n return styles;\n },\n mapTextProps(props, options) {\n var _a;\n const styles = getDefaultStyles({ whiteSpace: 'pre-line' });\n // Better not set flex 1 to text\n setViewProps(styles, props, options);\n setTextStyle(styles, props, options);\n setAlign(styles, Layout.Row, props.align);\n setTextAlign(styles, (_a = props.align) === null || _a === void 0 ? void 0 : _a.horizontal);\n return styles;\n },\n mapImageProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapTextButtonProps(props, options) {\n const styles = getDefaultStyles({ whiteSpace: 'pre-line', alignItems: 'center', justifyContent: 'center' });\n setViewProps(styles, props, options);\n setTextStyle(styles, Object.assign(Object.assign({}, props), { textStyle: Object.assign({ weight: 500 }, props.textStyle) }), options);\n return styles;\n },\n mapImageButtonProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapCarouselProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n return styles;\n },\n});\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children, className }) => {\n return (React.createElement(\"div\", { className: `sb-message-template__parent ${className}`, style: {\n display: 'flex',\n flexDirection: 'column',\n maxWidth: 400,\n marginBottom: 24,\n } }, children));\n },\n});\n"],"names":["React","__rest","this"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24]}
1
+ {"version":3,"file":"bundle-O4j4VX8j.js","sources":["../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../node_modules/@sendbird/uikit-message-template/dist/core/parser.js","../../node_modules/@sendbird/uikit-message-template/dist/core/renderer.js","../../node_modules/@sendbird/uikit-message-template/dist/context/SizeProvider.js","../../node_modules/@sendbird/uikit-message-template/dist/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/components/Carousel/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.canvas.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.img.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.placeholder.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/usePreservedCallback.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRefEffect.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useResizeObserver.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useElementSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRecalculationSize.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/index.js"],"sourcesContent":["export var ComponentType;\n(function (ComponentType) {\n ComponentType[\"Box\"] = \"box\";\n ComponentType[\"Text\"] = \"text\";\n ComponentType[\"Image\"] = \"image\";\n ComponentType[\"TextButton\"] = \"textButton\";\n ComponentType[\"ImageButton\"] = \"imageButton\";\n})(ComponentType || (ComponentType = {}));\nexport var CompositeComponentType;\n(function (CompositeComponentType) {\n CompositeComponentType[\"Carousel\"] = \"carouselView\";\n})(CompositeComponentType || (CompositeComponentType = {}));\n","// -------- Set property mapper\nimport { ComponentType, CompositeComponentType, } from '../types/components';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n const defaultMapper = (params === null || params === void 0 ? void 0 : params.defaultMapper) || MAPPER;\n const mapper = {\n defaultMapper,\n mapBoxProps: (params === null || params === void 0 ? void 0 : params.mapBoxProps) || defaultMapper,\n mapTextProps: (params === null || params === void 0 ? void 0 : params.mapTextProps) || defaultMapper,\n mapImageProps: (params === null || params === void 0 ? void 0 : params.mapImageProps) || defaultMapper,\n mapTextButtonProps: (params === null || params === void 0 ? void 0 : params.mapTextButtonProps) || defaultMapper,\n mapImageButtonProps: (params === null || params === void 0 ? void 0 : params.mapImageButtonProps) || defaultMapper,\n mapCarouselProps: (params === null || params === void 0 ? void 0 : params.mapCarouselProps) || defaultMapper,\n };\n const transforms = (params === null || params === void 0 ? void 0 : params.transforms) || [];\n return {\n parse(rawItem, options) {\n const item = transforms.reduce((it, transform) => transform(it), rawItem);\n switch (item.type) {\n case ComponentType.Box: {\n return { properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { properties: mapper.mapImageButtonProps(item, options) };\n }\n case CompositeComponentType.Carousel: {\n return { properties: mapper.mapCarouselProps(item, options) };\n }\n default:\n return { properties: undefined };\n }\n },\n };\n};\nexport const DEFAULT_PARSER_VALUES = {\n light: { _: undefined },\n dark: { _: undefined },\n};\n","import React from 'react';\nconst FRAGMENT = ({ children }) => React.createElement(React.Fragment, null, children);\nexport function createRenderer(params) {\n var _a, _b, _c, _d, _e, _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(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};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { CompositeComponentType } 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, parentLayout = defaultProperties.box.layout, isRoot = false, }) => {\n const renderItems = templateItems;\n return (React.createElement(React.Fragment, null, renderItems.map((item, index, siblings) => {\n const { properties } = parser.parse(item, { parentLayout, elemIdx: index, siblings });\n const props = {\n key: index,\n parentLayout,\n parsedProperties: properties,\n siblings,\n };\n switch (item.type) {\n // CompositeComponent should be top level component\n case CompositeComponentType.Carousel: {\n if (!isRoot) {\n throw new Error('Cannot parse template item as Carousel if the template item is not the root.');\n }\n if (!item.items || !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, props), item.items.map((items, index) => (React.createElement(MessageTemplateBase, { key: index, templateItems: items || [], parentLayout: parentLayout })))));\n }\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, props),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, props));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, props));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, props));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, props));\n }\n default: {\n // or throw new Error('Cannot parse template item')\n return React.createElement(UnknownMessage, { item: item });\n }\n }\n })));\n };\n return {\n MessageTemplate: ({ parentLayout = defaultProperties.rootLayout, templateVersion, templateItems, }) => {\n const items = setTemplateItemId(templateItems);\n if (!isTemplateVersionSupported(templateVersion)) {\n /**\n * I choose to throw instead of returning UnknownMessage because UnknownMessage syntax (required prop: item) is not what UIKit wants.\n */\n throw new Error(`Cannot parse template item due to unsupported template version: ${templateVersion}, ${SUPPORTED_TEMPLATE_VERSIONS}`);\n }\n let isCarousel = false;\n if (Array.isArray(items) && items.length > 0) {\n isCarousel = items[0].type === CompositeComponentType.Carousel;\n }\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, { className: isCarousel ? 'sb-message-template__parent_for_carousel' : '' },\n React.createElement(MessageTemplateBase, { parentLayout: parentLayout, templateItems: items, isRoot: true }))));\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 'spacing': 10,\n 'items': [\n [\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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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 '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 '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};\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 'spacing': 10,\n 'items': [\n [\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 '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 '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};\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 React, { useRef, useState } from 'react';\nconst PADDING_WIDTH = 24;\nconst CONTENT_LEFT_WIDTH = 40;\nconst SWIPE_THRESHOLD = 15;\nconst GAP_DEFAULT = 8;\n/**\n * fixed sized template items should use its child width.\n * Whereas flex sized template items should use its parent's width.\n * @param item\n */\nfunction shouldRenderAsFixed(item) {\n var _a;\n return ((_a = item.props.templateItems[0].width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed';\n}\nfunction CarouselItem({ item, defaultWidth, marginRight }) {\n const style = shouldRenderAsFixed(item)\n ? { width: 'fit-content' }\n : { minWidth: defaultWidth, width: '100%' };\n if (marginRight) {\n style['marginRight'] = marginRight;\n }\n return React.createElement(\"div\", { style: style }, item);\n}\nexport const Carousel = React.memo(({ children, gap = GAP_DEFAULT }) => {\n var _a, _b;\n const carouselRef = useRef(null);\n const screenWidth = window.innerWidth;\n const defaultItemWidth = (_b = (_a = carouselRef.current) === null || _a === void 0 ? void 0 : _a.clientWidth) !== null && _b !== void 0 ? _b : 0;\n const itemWidths = children.map((item) => {\n var _a;\n if (shouldRenderAsFixed(item)) {\n return Number((_a = item.props.templateItems[0].width) === null || _a === void 0 ? void 0 : _a.value);\n }\n return defaultItemWidth;\n });\n const itemPositions = getEachItemPositions();\n const [draggingInfo, setDraggingInfo] = useState({\n scrolling: false,\n dragging: false,\n startPos: null,\n offset: 0,\n translateX: 0,\n currentIndex: 0,\n });\n const handleMouseDown = (event) => {\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { scrolling: false, dragging: true, startPos: {\n x: event.clientX,\n y: event.clientY,\n }, offset: 0 })));\n };\n const handleMouseMove = (event) => {\n if (!draggingInfo.dragging || !draggingInfo.startPos)\n return;\n const currentX = event.clientX;\n const newOffset = currentX - draggingInfo.startPos.x;\n setDraggingInfo(Object.assign(Object.assign({}, draggingInfo), { offset: newOffset }));\n };\n const handleMouseUp = () => {\n if (!draggingInfo.dragging)\n return;\n handleDragEnd();\n unblockScroll();\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 handleTouchStart = (event) => {\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { scrolling: false, dragging: false, startPos: {\n x: event.touches[0].clientX,\n y: event.touches[0].clientY,\n }, offset: 0 })));\n };\n const handleTouchMove = (event) => {\n if (!draggingInfo.startPos || draggingInfo.scrolling)\n return;\n const startPos = draggingInfo.startPos;\n const [touchMoveX, touchMoveY] = [event.touches[0].clientX, event.touches[0].clientY];\n const [deltaX, deltaY] = [Math.abs(touchMoveX - startPos.x), Math.abs(touchMoveY - startPos.y)];\n const newOffset = touchMoveX - startPos.x;\n if (draggingInfo.dragging) {\n if (newOffset === draggingInfo.offset)\n return;\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { offset: newOffset })));\n return;\n }\n if (deltaY > deltaX) {\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { scrolling: true })));\n }\n else {\n blockScroll();\n setDraggingInfo((props) => (Object.assign(Object.assign({}, props), { dragging: true, offset: newOffset })));\n }\n };\n const handleTouchEnd = () => {\n if (!draggingInfo.dragging)\n return;\n handleDragEnd();\n unblockScroll();\n };\n const getNewDraggingInfo = ({ translateX, currentIndex, newTranslateX, nextIndex, }) => {\n return {\n scrolling: false,\n dragging: false,\n startPos: null,\n offset: 0,\n translateX: newTranslateX !== null && newTranslateX !== void 0 ? newTranslateX : translateX,\n currentIndex: nextIndex !== null && nextIndex !== void 0 ? nextIndex : currentIndex,\n };\n };\n const handleDragEnd = () => {\n const { offset, currentIndex } = draggingInfo;\n const absOffset = Math.abs(offset);\n if (absOffset < SWIPE_THRESHOLD) {\n setDraggingInfo((props) => getNewDraggingInfo(props));\n return;\n }\n // If dragged to left, next index should be to the right\n if (offset < 0 && currentIndex < children.length - 1) {\n if (isLastItemFitsScreen(currentIndex)) {\n setDraggingInfo((props) => getNewDraggingInfo(props));\n return;\n }\n const nextIndex = currentIndex + 1;\n /**\n * This is special logic for \"더 보기\" button for Socar use-case.\n * The button will have a small width (less than 50px).\n * We want to include this button in the view and snap to right padding wall IFF !isLastTwoItemsFitScreen.\n */\n if (nextIndex === children.length - 1 || isLastItemFitsScreen(nextIndex)) {\n setDraggingInfo((props) => getNewDraggingInfo(Object.assign(Object.assign({}, props), { newTranslateX: itemPositions[children.length - 1].end - PADDING_WIDTH - CONTENT_LEFT_WIDTH + screenWidth, nextIndex: children.length - 1 })));\n }\n else {\n setDraggingInfo((props) => getNewDraggingInfo(Object.assign(Object.assign({}, props), { newTranslateX: itemPositions[nextIndex].start, nextIndex })));\n }\n // If dragged to right, next index should be to the left\n }\n else if (offset > 0 && currentIndex > 0) {\n let nextIndex = currentIndex - 1;\n while (draggingInfo.translateX >= itemPositions[nextIndex].start) {\n nextIndex--;\n }\n setDraggingInfo((props) => getNewDraggingInfo(Object.assign(Object.assign({}, props), { newTranslateX: itemPositions[nextIndex].start, nextIndex })));\n }\n else {\n setDraggingInfo((props) => getNewDraggingInfo(props));\n }\n };\n function getCurrentTranslateX() {\n return draggingInfo.translateX + draggingInfo.offset;\n }\n function isLastItemFitsScreen(nextIndex) {\n const restItemsWidth = itemWidths.slice(nextIndex).reduce((prev, curr) => prev + gap + curr);\n const restTotalWidth = PADDING_WIDTH + CONTENT_LEFT_WIDTH + restItemsWidth;\n return restTotalWidth <= screenWidth;\n }\n function getEachItemPositions() {\n let accumulator = 0;\n return itemWidths.map((itemWidth, i) => {\n if (i > 0) {\n accumulator -= gap;\n }\n const itemPosition = {\n start: accumulator,\n end: accumulator - itemWidth,\n };\n accumulator -= itemWidth;\n return itemPosition;\n });\n }\n return (React.createElement(\"div\", { ref: carouselRef, onMouseDown: handleMouseDown, onMouseMove: handleMouseMove, onMouseUp: handleMouseUp, onMouseLeave: handleMouseUp, onTouchStart: handleTouchStart, onTouchMove: handleTouchMove, onTouchEnd: handleTouchEnd, className: \"sb-message-template__carousel\", style: {\n cursor: draggingInfo.dragging ? 'grabbing' : 'grab',\n transition: draggingInfo.dragging ? 'none' : 'transform 0.5s ease',\n transform: `translateX(${getCurrentTranslateX()}px)`,\n } }, children.map((item, index) => (React.createElement(CarouselItem, { key: index + '', item: item, defaultWidth: defaultItemWidth + 'px', marginRight: index < children.length - 1 ? gap : undefined })))));\n});\nexport default Carousel;\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};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect, useMemo, useRef, useState } from 'react';\nexport const CanvasReactMessageTemplateImage = (props) => {\n const { imageSize, canvasRef, canvasProps } = useCanvasMessageTemplateImage(props);\n return (React.createElement(\"canvas\", Object.assign({}, canvasProps, { ref: canvasRef, width: imageSize === null || imageSize === void 0 ? void 0 : imageSize.width, height: imageSize === null || imageSize === void 0 ? void 0 : imageSize.height, onError: props.onError })));\n};\nconst useCanvasMessageTemplateImage = (_a) => {\n var { metaData, tintColor } = _a, props = __rest(_a, [\"metaData\", \"tintColor\"]);\n const canvasRef = useRef(null);\n const [fallbackImageSize, setFallbackImageSize] = useState();\n const imageSize = useMemo(() => {\n if ((metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight) && (metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth)) {\n return { width: metaData.pixelWidth, height: metaData.pixelHeight };\n }\n return fallbackImageSize;\n }, [fallbackImageSize, metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight, metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth]);\n useEffect(() => {\n if (imageSize == null) {\n console.log('Canvas_ReactMessageTemplateImage: no metaData, render fit to container');\n if (canvasRef.current) {\n canvasRef.current.style.width = '100%';\n canvasRef.current.style.height = '100%';\n const containerSize = canvasRef.current.getBoundingClientRect();\n setFallbackImageSize(containerSize);\n }\n }\n }, [imageSize]);\n useEffect(() => {\n if (props.src) {\n const img = new Image();\n const onImageLoad = () => {\n if (canvasRef.current && tintColor && imageSize) {\n const ctx = canvasRef.current.getContext('2d');\n if (ctx) {\n const { width: imageWidth, height: imageHeight } = imageSize;\n // reset context before draw, consider `.save()` and `.restore()` api\n ctx.clearRect(0, 0, imageWidth, imageHeight);\n ctx.beginPath();\n ctx.globalCompositeOperation = 'source-over';\n ctx.fillStyle = '#000';\n // draw\n ctx.drawImage(img, 0, 0, imageWidth, imageHeight);\n ctx.globalCompositeOperation = 'source-atop';\n ctx.fillStyle = tintColor;\n ctx.fillRect(0, 0, imageWidth, imageHeight);\n }\n }\n };\n const onImageError = (event) => {\n var _a;\n // @ts-ignore\n (_a = props.onError) === null || _a === void 0 ? void 0 : _a.call(props, event);\n };\n img.addEventListener('load', onImageLoad);\n img.addEventListener('error', onImageError);\n img.src = props.src;\n return () => {\n img.removeEventListener('load', onImageLoad);\n img.removeEventListener('error', onImageError);\n };\n }\n return;\n }, [props.src, imageSize, tintColor]);\n return {\n canvasRef,\n canvasProps: props,\n imageSize,\n };\n};\n","import React from 'react';\nexport const ImgReactMessageTemplateImage = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const PlaceholderReactMessageTemplateImage = (props) => {\n return React.createElement(\"div\", { style: Object.assign(Object.assign({}, props.style), { backgroundColor: 'transparent' }) });\n};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useCallback, useEffect, useState } from 'react';\nimport { isGif } from '../../util';\nimport { CanvasReactMessageTemplateImage } from './index.canvas';\nimport { ImgReactMessageTemplateImage } from './index.img';\nimport { PlaceholderReactMessageTemplateImage } from './index.placeholder';\nconst ReactMessageTemplateImage = (_a) => {\n var { tintColor, metaData } = _a, props = __rest(_a, [\"tintColor\", \"metaData\"]);\n const { hasError, onError } = useImageLoadError(props.src);\n if (props.onError)\n console.warn('`onError` is intercepted and not executed in the ReactMessageTemplateImage.');\n if (hasError) {\n return React.createElement(PlaceholderReactMessageTemplateImage, Object.assign({}, props));\n }\n else if (tintColor && !isGif(props.src)) {\n return React.createElement(CanvasReactMessageTemplateImage, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(ImgReactMessageTemplateImage, Object.assign({}, props, { onError: onError }));\n }\n};\nconst useImageLoadError = (source) => {\n const [hasError, setHasError] = useState(false);\n useEffect(() => setHasError(false), [source]);\n return {\n hasError,\n onError: useCallback(() => setHasError(true), []),\n };\n};\nexport default ReactMessageTemplateImage;\n","// create a context provider for MessageComponent\n// - this is a wrapper for MessageComponent\nimport React from 'react';\nconst MessageContext = React.createContext(null);\nconst MessageProvider = (props) => {\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction, children } = props;\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => React.useContext(MessageContext);\nexport { MessageProvider, useMessageContext };\n","import { useCallback, useEffect, useRef } from 'react';\n/**\n * Preserves a reference to the given callback function as an argument while the component is mounted.\n * Wraps the given callback in React's Ref to preserve the reference.\n * @param callback want to be preserved\n */\nexport function usePreservedCallback(callback) {\n const callbackRef = useRef(callback);\n useEffect(() => {\n callbackRef.current = callback;\n }, [callback]);\n return useCallback((...args) => {\n return callbackRef.current(...args);\n }, [callbackRef]);\n}\n","import { useCallback, useRef } from 'react';\nimport { usePreservedCallback } from './usePreservedCallback';\n/**\n * This hook can be used when you want to safely effect the value stored in useRef\n * Got this idea from https://github.com/facebook/react/issues/15176\n * @param callback\n * @param deps\n * @returns effect callback\n */\nexport function useRefEffect(callback, deps) {\n const preservedCallback = usePreservedCallback(callback);\n const disposeRef = useRef(noop);\n const effect = useCallback((element) => {\n disposeRef.current();\n disposeRef.current = noop;\n if (element != null) {\n const cleanup = callback(element);\n if (typeof cleanup === 'function') {\n disposeRef.current = cleanup;\n }\n }\n }, [preservedCallback, ...deps]);\n return effect;\n}\nfunction noop() { }\n","import { usePreservedCallback } from './usePreservedCallback';\nimport { useRefEffect } from './useRefEffect';\n/**\n * Subscribes to ResizeObserver on the component exposing the Ref,\n * to detect changes in the size of DOM elements.\n * The ResizeObserver API is required.\n * If you are targeting browsers that do not support that API, probably need to add appropriate polyfill too.\n * @param onResize\n * @returns ref\n */\nexport function useResizeObserver(onResize) {\n const resizeCallback = usePreservedCallback(onResize);\n const ref = useRefEffect((elem) => {\n const observer = new ResizeObserver((entries) => {\n if (entries[0] != null) {\n resizeCallback(entries[0]);\n }\n });\n observer.observe(elem);\n return () => {\n observer.unobserve(elem);\n };\n }, [resizeCallback]);\n return ref;\n}\n","import { useState } from 'react';\nimport { useResizeObserver } from './useResizeObserver';\n/**\n * @returns an element's width / height observed by IntersectionObserver,\n * and ref to detect its resize event\n */\nexport function useElementSize() {\n const [width, setWidth] = useState(-1);\n const [height, setHeight] = useState(-1);\n const [contentWidth, setContentWidth] = useState(-1);\n const [contentHeight, setContentHeight] = useState(-1);\n const [paddingWidth, setPaddingWidth] = useState(-1);\n const [paddingHeight, setPaddingHeight] = useState(-1);\n const ref = useResizeObserver((entry) => {\n // contentRect: content size only\n const { width: contentWidth, height: contentHeight } = entry.contentRect;\n // target: content + padding + border size\n const target = entry.target;\n const { width, height } = target.getBoundingClientRect();\n setWidth(width);\n setHeight(height);\n setContentWidth(contentWidth);\n setContentHeight(contentHeight);\n setPaddingWidth(width - contentWidth);\n setPaddingHeight(height - contentHeight);\n });\n return { ref, width, height, contentWidth, contentHeight, paddingWidth, paddingHeight };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { useEffect, useMemo } from 'react';\nimport { Layout, defaultProperties, useSizeContext } from '@sendbird/uikit-message-template';\nimport { isSizeCompatibleWithOption } from '../util';\nimport { useElementSize } from './useElementSize';\nfunction isViewCompatibleWithSizeOption({ width = defaultProperties.view.size.width, height = defaultProperties.view.size.height, parentLayout = defaultProperties.box.layout, option, }) {\n if (parentLayout === Layout.Row) {\n return isSizeCompatibleWithOption({\n size: width,\n option,\n });\n }\n return isSizeCompatibleWithOption({\n size: height,\n option,\n });\n}\nexport function useRecalculateWidth(params) {\n const { style, props } = params;\n const _a = useElementSize(), { ref: elemRef } = _a, size = __rest(_a, [\"ref\"]);\n const { updateSize, sizes } = useSizeContext();\n const { id, siblings, parentLayout } = props;\n const { width, height, paddingWidth, paddingHeight, contentWidth, contentHeight } = size;\n useEffect(() => {\n updateSize({\n id: props.id,\n width,\n height,\n paddingWidth,\n paddingHeight,\n contentWidth,\n contentHeight,\n });\n }, [props.id, width, height, paddingWidth, paddingHeight, contentWidth, contentHeight, updateSize]);\n const currentStyle = useMemo(() => {\n const sumViewSize = (acc = 0, view) => {\n var _a, _b, _c, _d;\n if (parentLayout === Layout.Row) {\n return acc + ((_b = (_a = sizes[view.id]) === null || _a === void 0 ? void 0 : _a.contentWidth) !== null && _b !== void 0 ? _b : 0);\n }\n return acc + ((_d = (_c = sizes[view.id]) === null || _c === void 0 ? void 0 : _c.contentHeight) !== null && _d !== void 0 ? _d : 0);\n };\n const hasFillOption = isViewCompatibleWithSizeOption({\n width: props.width,\n height: props.height,\n parentLayout,\n option: 'fill',\n });\n if (hasFillOption) {\n const wrapSiblingsSize = siblings\n .filter(({ width, height }) => !isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n }))\n .reduce(sumViewSize, 0);\n const fillSiblingCount = siblings.filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n })).length;\n const maxSizeOption = (() => {\n if (parentLayout === Layout.Row) {\n return {\n maxWidth: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n }\n return {\n maxHeight: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n })();\n return Object.assign(Object.assign(Object.assign({}, style), maxSizeOption), (width == 0 && { height: 0 }));\n }\n else {\n const currentElemIdx = siblings.findIndex((sibling) => sibling.id === id);\n const forwardSiblingsSize = siblings\n .slice(0, currentElemIdx)\n .filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'wrap',\n }))\n .reduce(sumViewSize, 0);\n return Object.assign(Object.assign(Object.assign({}, style), (width === 0 && { height: 0 })), (parentLayout === Layout.Row\n ? {\n maxWidth: `calc(100% - ${forwardSiblingsSize}px)`,\n }\n : {\n maxHeight: `calc(100% - ${forwardSiblingsSize}px)`,\n }));\n }\n }, [props.width, props.height, parentLayout, sizes, siblings, style, width, id]);\n return { recalculatedStyle: currentStyle, elemRef };\n}\n","import { ComponentType, FlexSizeSpecValue, Layout, MediaContentMode, alignInFlex, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { isNumber, 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 var _a;\n setViewSize(styles, props, options);\n setViewStyle(styles, props);\n // [Padding] Just parse the values as numbers; the actual value has been set in the ActionHandler.\n if ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.padding) {\n const padding = props.viewStyle.padding;\n if (isNumber(padding.top))\n padding.top = Number(padding.top);\n if (isNumber(padding.bottom))\n padding.bottom = Number(padding.bottom);\n if (isNumber(padding.left))\n padding.left = Number(padding.left);\n if (isNumber(padding.right))\n padding.right = Number(padding.right);\n }\n}\nfunction setBorderStyle(styles, borderWidth, borderColor, radius) {\n if (borderWidth) {\n styles['--border-width'] = `${borderWidth}px`;\n styles['--border-color'] = borderColor || 'transparent';\n }\n if (radius) {\n styles['borderRadius'] = Number(radius);\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;\n const { viewStyle } = props;\n if (isNumber((_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top))\n styles['marginTop'] = Number((_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.top);\n if (isNumber((_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.bottom))\n styles['marginBottom'] = Number((_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.bottom);\n if (isNumber((_e = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _e === void 0 ? void 0 : _e.left))\n styles['marginLeft'] = Number((_f = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _f === void 0 ? void 0 : _f.left);\n if (isNumber((_g = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _g === void 0 ? void 0 : _g.right))\n styles['marginRight'] = Number((_h = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _h === void 0 ? void 0 : _h.right);\n const marginHorizontal = Number((_j = styles.marginLeft) !== null && _j !== void 0 ? _j : '0') + Number((_k = styles.marginRight) !== null && _k !== void 0 ? _k : '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%';\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 === 'fixed' && width.value >= 0) {\n style['width'] = Number(width.value);\n }\n if (height.type === 'flex' && height.value == FlexSizeSpecValue.FillParent) {\n style['height'] = '100%';\n if (parentLayout === Layout.Column) {\n style['flex'] = 1;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = Number(height.value);\n }\n return style;\n}\nexport function setViewSize(styles, props, options) {\n var _a, _b;\n const { width: defaultWidth, height: defaultHeight } = defaultProperties.view.size;\n const { parentLayout } = options;\n const sizeStyle = getViewSizeStyle((_a = props.width) !== null && _a !== void 0 ? _a : defaultWidth, (_b = props.height) !== null && _b !== void 0 ? _b : defaultHeight, parentLayout);\n Object.assign(styles, sizeStyle);\n}\nexport function setAlign(styles, layout = defaultProperties.box.layout, align = defaultProperties.box.align) {\n if (layout === Layout.Row) {\n styles['flexDirection'] = 'row';\n styles['alignItems'] = alignInFlex(align.vertical);\n styles['justifyContent'] = alignInFlex(align.horizontal);\n }\n if (layout === Layout.Column) {\n styles['flexDirection'] = 'column';\n styles['alignItems'] = alignInFlex(align.horizontal);\n styles['justifyContent'] = alignInFlex(align.vertical);\n }\n}\nexport function setTextAlign(styles, align = defaultProperties.box.align.horizontal) {\n styles.textAlign = align;\n}\nexport function setImageStyle(styles, imageStyle) {\n const { contentMode = MediaContentMode.AspectFit } = imageStyle || {};\n if (contentMode) {\n switch (contentMode) {\n case MediaContentMode.AspectFill:\n styles['objectFit'] = 'cover';\n break;\n case MediaContentMode.AspectFit:\n styles['objectFit'] = 'contain';\n break;\n case MediaContentMode.ScalesToFill:\n styles['objectFit'] = 'fill';\n break;\n }\n }\n}\n// uses image meta-data to render images that doesn't break the UI\n// https://sendbird.atlassian.net/wiki/spaces/UK/pages/2008220608/Message+template+-+Image+policy\nexport function setImageAspectRatio(styles, props) {\n var _a, _b, _c, _d;\n const imageMetaData = props === null || props === void 0 ? void 0 : props.metaData;\n if (!(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelHeight) || !(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelWidth)) {\n return;\n }\n if (((_a = props === null || props === void 0 ? void 0 : props.width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed' || ((_b = props === null || props === void 0 ? void 0 : props.height) === null || _b === void 0 ? void 0 : _b.type) === 'fixed') {\n return;\n }\n styles['aspectRatio'] = `${(_c = props === null || props === void 0 ? void 0 : props.metaData) === null || _c === void 0 ? void 0 : _c.pixelWidth} / ${(_d = props === null || props === void 0 ? void 0 : props.metaData) === null || _d === void 0 ? void 0 : _d.pixelHeight}`;\n}\nexport function webkitLineClampStyles(numberOfLines) {\n return {\n WebkitLineClamp: numberOfLines,\n WebkitBoxOrient: 'vertical',\n display: '-webkit-box',\n overflow: 'hidden',\n overflowWrap: 'anywhere',\n flex: 1,\n };\n}\nexport function setTextStyle(styles, props, options) {\n const { textStyle, width } = props;\n // TODO: Change default as design\n const { size, color, weight = 'normal' } = textStyle || {};\n if (size)\n styles['fontSize'] = Number(size);\n if (color)\n styles['color'] = color;\n if (weight)\n styles['fontWeight'] = weight;\n if ((width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['maxWidth'] = '100%';\n }\n if (props.type === ComponentType.Text) {\n const { siblings, elemIdx } = options;\n // To push out any subsequent components from the container,\n // if a prior one is long enough to occupy an entire line\n // @link https://sendbird.atlassian.net/browse/NOTI-709\n if (siblings != null && siblings.length >= 2 && siblings.every(isWrappedText)) {\n styles.flexShrink = siblings.length - 1 === elemIdx ? 1 : 0;\n }\n }\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport { FlexSizeSpecValue, Layout, createMessageTemplate, createParser, createRenderer, } from '@sendbird/uikit-message-template';\nimport { Carousel } from '../components/Carousel';\nimport ReactMessageTemplateImage from '../components/ReactMessageTemplateImage';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport '../index.css';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, webkitLineClampStyles, } from '../styles';\nconst hasValidUrlProtocol = (url = '') => ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n/**\n * @param url - url to be checked\n * @returns url with http:// protocol if it doesn't have any protocol\n * @example\n * returnUrl('www.sendbird.com') // returns 'http://www.sendbird.com'\n * returnUrl('https://www.sendbird.com') // returns 'https://www.sendbird.com'\n * returnUrl('ftp://www.sendbird.com') // returns 'ftp://www.sendbird.com'\n * returnUrl('sendbird.com') // returns 'https://sendbird.com'\n **/\nconst returnUrl = (url = '') => {\n if (hasValidUrlProtocol(url)) {\n return url;\n }\n return `https://${url}`;\n};\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nconst ActionHandler = ({ className = '', style, children, props }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const onClick = (e) => {\n var _a, _b, _c, _d, _e, _f, _g;\n if (((_a = props === null || props === void 0 ? void 0 : props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(returnUrl((_b = props === null || props === void 0 ? void 0 : props.action) === null || _b === void 0 ? void 0 : _b.data), '_blank', 'noopener noreferrer')) === null || _c === void 0 ? void 0 : _c.focus();\n }\n }\n if (((_d = props === null || props === void 0 ? void 0 : props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n if (handleCustomAction) {\n handleCustomAction(e, props.action, message);\n }\n else {\n (_f = window === null || window === void 0 ? void 0 : window.open(returnUrl((_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 if (((_g = props === null || props === void 0 ? void 0 : 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 const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? ' sb-message-template__border' : '';\n if (className === 'sb-message-template__text-button') {\n return (React.createElement(\"button\", { className: `${className}${borderClass}`, \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, style), { paddingTop: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top, paddingRight: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.right, paddingBottom: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.bottom, paddingLeft: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.left }), onClick: onClick }, children));\n }\n const { display, flexDirection, justifyContent, alignItems, objectFit } = recalculatedStyle, wrapperStyles = __rest(recalculatedStyle, [\"display\", \"flexDirection\", \"justifyContent\", \"alignItems\", \"objectFit\"]);\n return (React.createElement(\"div\", { ref: elemRef, className: `${className}${borderClass} ${(props === null || props === void 0 ? void 0 : props.action) ? 'sb-message-template__action' : ''}`, \"data-sb-template-id\": props.elementId, style: wrapperStyles, onClick: onClick },\n React.createElement(\"div\", { style: {\n display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit,\n width: '100%',\n height: '100%',\n paddingTop: (_l = (_k = props.viewStyle) === null || _k === void 0 ? void 0 : _k.padding) === null || _l === void 0 ? void 0 : _l.top,\n paddingRight: (_o = (_m = props.viewStyle) === null || _m === void 0 ? void 0 : _m.padding) === null || _o === void 0 ? void 0 : _o.right,\n paddingBottom: (_q = (_p = props.viewStyle) === null || _p === void 0 ? void 0 : _p.padding) === null || _q === void 0 ? void 0 : _q.bottom,\n paddingLeft: (_s = (_r = props.viewStyle) === null || _r === void 0 ? void 0 : _r.padding) === null || _s === void 0 ? void 0 : _s.left,\n } }, children)));\n};\n/**\n * Text that is fixed or fill parent should be wrapped in a div with max-width: 100% and max-height: 100%\n * This is to prevent text from overflowing the padding of the container\n */\nfunction isFixedOrFill(view) {\n var _a, _b, _c, _d;\n const heightType = (_a = view === null || view === void 0 ? void 0 : view.height) === null || _a === void 0 ? void 0 : _a.type;\n const widthType = (_b = view === null || view === void 0 ? void 0 : view.width) === null || _b === void 0 ? void 0 : _b.type;\n const isFixedDiamension = heightType === 'fixed' || widthType === 'fixed';\n const isFill = (heightType === 'flex' && ((_c = view === null || view === void 0 ? void 0 : view.height) === null || _c === void 0 ? void 0 : _c.value) === FlexSizeSpecValue.FillParent) ||\n (widthType === 'flex' && ((_d = view === null || view === void 0 ? void 0 : view.width) === null || _d === void 0 ? void 0 : _d.value) === FlexSizeSpecValue.FillParent);\n return isFixedDiamension || isFill;\n}\nfunction convertNewlinesToBr(text) {\n return text.split('\\n').map((line, index) => (React.createElement(React.Fragment, { key: index },\n line,\n React.createElement(\"br\", null))));\n}\nfunction renderText(view) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const isMultiLine = maxTextLines != null && maxTextLines > 0;\n const convertedText = convertNewlinesToBr(text);\n if (isMultiLine || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((isMultiLine || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText));\n }\n return isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, convertedText) : convertedText;\n}\nexport const renderer = createRenderer({\n views: {\n box(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__box\", elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n image(props) {\n var _a;\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n textButton(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text-button\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(Object.assign({ maxTextLines: 1 }, props))));\n },\n imageButton(props) {\n var _a;\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container sb-message-template__image-button\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image-button\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n carouselView(props) {\n return React.createElement(Carousel, { gap: props.spacing }, props.children);\n },\n },\n});\nexport const parser = createParser({\n mapBoxProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setAlign(styles, props.layout, props.align);\n return styles;\n },\n mapTextProps(props, options) {\n var _a;\n const styles = getDefaultStyles({ whiteSpace: 'pre-line' });\n // Better not set flex 1 to text\n setViewProps(styles, props, options);\n setTextStyle(styles, props, options);\n setAlign(styles, Layout.Row, props.align);\n setTextAlign(styles, (_a = props.align) === null || _a === void 0 ? void 0 : _a.horizontal);\n return styles;\n },\n mapImageProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapTextButtonProps(props, options) {\n const styles = getDefaultStyles({ whiteSpace: 'pre-line', alignItems: 'center', justifyContent: 'center' });\n setViewProps(styles, props, options);\n setTextStyle(styles, Object.assign(Object.assign({}, props), { textStyle: Object.assign({ weight: 500 }, props.textStyle) }), options);\n return styles;\n },\n mapImageButtonProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapCarouselProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n return styles;\n },\n});\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children, className }) => {\n return (React.createElement(\"div\", { className: `sb-message-template__parent ${className}`, style: {\n display: 'flex',\n flexDirection: 'column',\n maxWidth: 400,\n marginBottom: 24,\n } }, children));\n },\n});\n"],"names":["React","__rest","this"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24]}