@sendbird/uikit-react 3.13.2 → 3.13.3
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.
- package/App.js +78 -78
- package/CHANGELOG.md +75 -1
- package/Channel/components/ChannelHeader.js +29 -29
- package/Channel/components/ChannelUI.js +64 -64
- package/Channel/components/FileViewer.js +28 -28
- package/Channel/components/FrozenNotification.js +5 -5
- package/Channel/components/Message.js +53 -53
- package/Channel/components/MessageFeedbackModal.js +9 -9
- package/Channel/components/MessageInput.js +41 -41
- package/Channel/components/MessageInputWrapper.js +41 -41
- package/Channel/components/MessageList.js +57 -57
- package/Channel/components/RemoveMessageModal.js +27 -27
- package/Channel/components/SuggestedMentionList.js +27 -27
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +7 -7
- package/Channel/context.js +19 -19
- package/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/Channel/utils/getMessagePartsInfo.js +6 -6
- package/Channel.js +64 -64
- package/ChannelList/components/AddChannel.js +20 -20
- package/ChannelList/components/ChannelListHeader.js +8 -8
- package/ChannelList/components/ChannelListUI.js +34 -34
- package/ChannelList/components/ChannelPreview.js +27 -27
- package/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/ChannelList/context.js +10 -10
- package/ChannelList.js +34 -34
- package/ChannelSettings/components/ChannelProfile.js +14 -14
- package/ChannelSettings/components/ChannelSettingsHeader.js +6 -6
- package/ChannelSettings/components/ChannelSettingsUI.js +23 -23
- package/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/ChannelSettings/components/LeaveChannel.js +11 -11
- package/ChannelSettings/components/ModerationPanel.js +21 -21
- package/ChannelSettings/components/UserListItem.js +13 -13
- package/ChannelSettings/components/UserPanel.js +20 -20
- package/ChannelSettings/context.js +3 -3
- package/ChannelSettings.js +23 -23
- package/CreateChannel/components/CreateChannelUI.js +16 -16
- package/CreateChannel/components/InviteUsers.js +16 -16
- package/CreateChannel/components/SelectChannelType.js +10 -10
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +16 -16
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
- package/CreateOpenChannel/context.js +1 -1
- package/CreateOpenChannel.js +11 -11
- package/EditUserProfile/components/EditUserProfileUI.js +12 -12
- package/EditUserProfile.js +12 -12
- package/GroupChannel/components/FileViewer.js +56 -27
- package/GroupChannel/components/FileViewer.js.map +1 -1
- package/GroupChannel/components/FrozenNotification.js +5 -5
- package/GroupChannel/components/GroupChannelHeader.js +22 -22
- package/GroupChannel/components/GroupChannelUI.js +58 -58
- package/GroupChannel/components/Message.js +52 -52
- package/GroupChannel/components/MessageInputWrapper.js +38 -38
- package/GroupChannel/components/MessageList.js +51 -51
- package/GroupChannel/components/RemoveMessageModal.js +22 -22
- package/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +7 -7
- package/GroupChannel/context.js +13 -13
- package/GroupChannel.js +58 -58
- package/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +33 -33
- package/MessageSearch/components/MessageSearchUI.js +14 -14
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +14 -14
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/OpenChannel/components/OpenChannelInput.js +25 -25
- package/OpenChannel/components/OpenChannelMessage.js +35 -35
- package/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/OpenChannel/components/OpenChannelUI.js +39 -39
- package/OpenChannel/context.js +17 -17
- package/OpenChannel.js +39 -39
- package/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +14 -14
- package/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +19 -19
- package/OpenChannelSettings/components/OperatorUI.js +19 -19
- package/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/OpenChannelSettings/context.js +3 -3
- package/OpenChannelSettings.js +19 -19
- package/SendbirdProvider.js +24 -48
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +75 -46
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +73 -34
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +7 -7
- package/Thread/components/ThreadList.js +46 -46
- package/Thread/components/ThreadListItem.js +109 -52
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +42 -42
- package/Thread/components/ThreadUI.js +56 -56
- package/Thread/context.js +11 -10
- package/Thread/context.js.map +1 -1
- package/Thread.js +56 -56
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +10 -10
- package/VoiceRecorder/context.js +10 -10
- package/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/chunks/{bundle-2UMLs1R6.js → bundle-1ymLj4Og.js} +1 -1
- package/chunks/bundle-1ymLj4Og.js.map +1 -0
- package/chunks/{bundle-DzQcMztv.js → bundle-4a9M9y8N.js} +1 -1
- package/chunks/{bundle-DzQcMztv.js.map → bundle-4a9M9y8N.js.map} +1 -1
- package/chunks/{bundle-B9ZQfJSL.js → bundle-5HwGq_hd.js} +4 -4
- package/chunks/{bundle-B9ZQfJSL.js.map → bundle-5HwGq_hd.js.map} +1 -1
- package/chunks/{bundle-hAKR7PVp.js → bundle-B8HW06Fl.js} +1 -1
- package/chunks/bundle-B8HW06Fl.js.map +1 -0
- package/chunks/{bundle-D57EENOn.js → bundle-BAsn0CBE.js} +1 -1
- package/chunks/bundle-BAsn0CBE.js.map +1 -0
- package/chunks/{bundle-BRhZt2zf.js → bundle-BHOxoDJO.js} +1 -1
- package/chunks/{bundle-BRhZt2zf.js.map → bundle-BHOxoDJO.js.map} +1 -1
- package/chunks/{bundle-BgunHZ2y.js → bundle-BIvhXCoF.js} +1 -1
- package/chunks/bundle-BIvhXCoF.js.map +1 -0
- package/chunks/{bundle-BkTOcqVY.js → bundle-BMvaJoQA.js} +40 -9
- package/{cjs/chunks/bundle-B2QAlKH1.js.map → chunks/bundle-BMvaJoQA.js.map} +1 -1
- package/chunks/{bundle-TYwaKAYl.js → bundle-BOrV2z_R.js} +54 -52
- package/chunks/{bundle-TYwaKAYl.js.map → bundle-BOrV2z_R.js.map} +1 -1
- package/chunks/{bundle-BlSpe5qA.js → bundle-BVGlC_pg.js} +1 -1
- package/chunks/bundle-BVGlC_pg.js.map +1 -0
- package/chunks/{bundle-BV8WCwVA.js → bundle-BX0LQWqY.js} +3 -3
- package/chunks/bundle-BX0LQWqY.js.map +1 -0
- package/chunks/{bundle-DwRQcRou.js → bundle-BXpzbAbi.js} +3 -3
- package/chunks/bundle-BXpzbAbi.js.map +1 -0
- package/chunks/{bundle-5DiiOFi-.js → bundle-BkM4cdOJ.js} +9 -9
- package/chunks/bundle-BkM4cdOJ.js.map +1 -0
- package/chunks/{bundle-ugWtu0YZ.js → bundle-BlHQV-25.js} +1 -1
- package/chunks/bundle-BlHQV-25.js.map +1 -0
- package/chunks/{bundle-C-UZ_gr4.js → bundle-Bm_WZS3a.js} +2 -2
- package/chunks/{bundle-C-UZ_gr4.js.map → bundle-Bm_WZS3a.js.map} +1 -1
- package/chunks/{bundle-RJu3P_iQ.js → bundle-BntzGGYb.js} +1 -1
- package/chunks/bundle-BntzGGYb.js.map +1 -0
- package/chunks/{bundle-BpyUTLY3.js → bundle-BpDuHeEB.js} +4 -4
- package/chunks/bundle-BpDuHeEB.js.map +1 -0
- package/chunks/{bundle-CUBnQyTA.js → bundle-BxBdkxXV.js} +1 -1
- package/chunks/{bundle-CUBnQyTA.js.map → bundle-BxBdkxXV.js.map} +1 -1
- package/chunks/{bundle-QPbZ_XSR.js → bundle-C2vpr4DU.js} +3 -3
- package/chunks/{bundle-QPbZ_XSR.js.map → bundle-C2vpr4DU.js.map} +1 -1
- package/chunks/{bundle-C7SA85dp.js → bundle-C6ZXjQ1L.js} +1 -1
- package/chunks/bundle-C6ZXjQ1L.js.map +1 -0
- package/chunks/{bundle-Cgtk2LV4.js → bundle-C6fuKmVo.js} +4 -4
- package/chunks/bundle-C6fuKmVo.js.map +1 -0
- package/chunks/{bundle-CI0ovNa-.js → bundle-CAki7JUf.js} +1 -1
- package/chunks/bundle-CAki7JUf.js.map +1 -0
- package/chunks/{bundle-DdwjYXOX.js → bundle-CCUBCV04.js} +6 -6
- package/chunks/bundle-CCUBCV04.js.map +1 -0
- package/chunks/{bundle-C6MmX70M.js → bundle-CIO0N9hp.js} +1 -1
- package/chunks/bundle-CIO0N9hp.js.map +1 -0
- package/chunks/{bundle-BKPDTl9U.js → bundle-CIhbNReG.js} +3 -3
- package/chunks/bundle-CIhbNReG.js.map +1 -0
- package/chunks/{bundle-CU8x_Vlw.js → bundle-CJ9_QDKY.js} +1 -1
- package/chunks/bundle-CJ9_QDKY.js.map +1 -0
- package/chunks/{bundle-CHxXgtL2.js → bundle-CLqgMCvn.js} +1 -1
- package/chunks/bundle-CLqgMCvn.js.map +1 -0
- package/chunks/{bundle-C9WS75DY.js → bundle-CMKCY3ba.js} +3 -3
- package/chunks/{bundle-C9WS75DY.js.map → bundle-CMKCY3ba.js.map} +1 -1
- package/chunks/{bundle-D-OF1Dsr.js → bundle-COR7gPrO.js} +3 -3
- package/chunks/{bundle-D-OF1Dsr.js.map → bundle-COR7gPrO.js.map} +1 -1
- package/chunks/{bundle-mkC088ne.js → bundle-CP1hwfFC.js} +1 -1
- package/chunks/bundle-CP1hwfFC.js.map +1 -0
- package/chunks/{bundle-BNL2dgIA.js → bundle-CS4RK0T7.js} +8 -8
- package/chunks/{bundle-BNL2dgIA.js.map → bundle-CS4RK0T7.js.map} +1 -1
- package/chunks/{bundle-BdCGrzcY.js → bundle-CT3xDvIx.js} +1 -1
- package/chunks/bundle-CT3xDvIx.js.map +1 -0
- package/chunks/{bundle-4bxiD94h.js → bundle-CVDtzU3E.js} +1 -1
- package/chunks/{bundle-4bxiD94h.js.map → bundle-CVDtzU3E.js.map} +1 -1
- package/chunks/{bundle-Bm8gzDx1.js → bundle-CVFMpKJZ.js} +4 -4
- package/chunks/{bundle-Bm8gzDx1.js.map → bundle-CVFMpKJZ.js.map} +1 -1
- package/chunks/{bundle-CBIAPOPy.js → bundle-CYtZF1xr.js} +11 -11
- package/chunks/{bundle-CBIAPOPy.js.map → bundle-CYtZF1xr.js.map} +1 -1
- package/chunks/{bundle-2g0N2xdw.js → bundle-CZYvKysu.js} +1 -1
- package/chunks/bundle-CZYvKysu.js.map +1 -0
- package/chunks/{bundle-DPRlCjJt.js → bundle-CfZFWZM3.js} +3 -3
- package/chunks/bundle-CfZFWZM3.js.map +1 -0
- package/chunks/{bundle-Cm3yLDom.js → bundle-CilkBcv-.js} +2 -2
- package/chunks/bundle-CilkBcv-.js.map +1 -0
- package/chunks/{bundle-CtBgDIuq.js → bundle-CjW6ZQ1k.js} +10 -10
- package/chunks/{bundle-CtBgDIuq.js.map → bundle-CjW6ZQ1k.js.map} +1 -1
- package/chunks/{bundle-CXMfzdI7.js → bundle-CkInAxxb.js} +1 -1
- package/chunks/bundle-CkInAxxb.js.map +1 -0
- package/chunks/{bundle-CExm_LIL.js → bundle-CmdUup8N.js} +14 -14
- package/chunks/{bundle-CExm_LIL.js.map → bundle-CmdUup8N.js.map} +1 -1
- package/chunks/{bundle-C6387K33.js → bundle-Cvm8Ag45.js} +1 -1
- package/chunks/bundle-Cvm8Ag45.js.map +1 -0
- package/chunks/{bundle-Hl5CUM1x.js → bundle-D3OeBr-9.js} +1 -1
- package/chunks/bundle-D3OeBr-9.js.map +1 -0
- package/chunks/{bundle-CIHv_OFc.js → bundle-D45e30Hl.js} +4 -4
- package/chunks/bundle-D45e30Hl.js.map +1 -0
- package/chunks/{bundle-B1ObaBN3.js → bundle-D47WMGAq.js} +1 -1
- package/chunks/{bundle-B1ObaBN3.js.map → bundle-D47WMGAq.js.map} +1 -1
- package/chunks/{bundle-CcRuHA7i.js → bundle-D6kFzMhH.js} +5 -5
- package/chunks/{bundle-CcRuHA7i.js.map → bundle-D6kFzMhH.js.map} +1 -1
- package/chunks/{bundle-5rwlX4db.js → bundle-DBzkkIf1.js} +2 -2
- package/chunks/{bundle-5rwlX4db.js.map → bundle-DBzkkIf1.js.map} +1 -1
- package/chunks/{bundle-BZK5eiX2.js → bundle-DEqxoG9B.js} +1 -1
- package/chunks/bundle-DEqxoG9B.js.map +1 -0
- package/chunks/{bundle-D9xWky57.js → bundle-DHp0VTVS.js} +1 -1
- package/chunks/bundle-DHp0VTVS.js.map +1 -0
- package/chunks/{bundle-D1otjGeL.js → bundle-DI3fL4Xw.js} +3 -3
- package/chunks/{bundle-D1otjGeL.js.map → bundle-DI3fL4Xw.js.map} +1 -1
- package/chunks/{bundle-OTdL9cWR.js → bundle-DIEAFe_F.js} +2 -2
- package/chunks/bundle-DIEAFe_F.js.map +1 -0
- package/chunks/{bundle-x0WnpBed.js → bundle-DNq8IoOw.js} +7 -7
- package/chunks/{bundle-x0WnpBed.js.map → bundle-DNq8IoOw.js.map} +1 -1
- package/chunks/{bundle-BUHwsL2D.js → bundle-DPhbbRZE.js} +3 -3
- package/chunks/bundle-DPhbbRZE.js.map +1 -0
- package/chunks/{bundle-BqWBruLa.js → bundle-DQnpJfyk.js} +3 -3
- package/chunks/bundle-DQnpJfyk.js.map +1 -0
- package/chunks/{bundle-Clnr6ml_.js → bundle-DTywBX7q.js} +10 -10
- package/chunks/{bundle-Clnr6ml_.js.map → bundle-DTywBX7q.js.map} +1 -1
- package/chunks/{bundle-cWhfb441.js → bundle-DYJilNov.js} +1 -1
- package/chunks/bundle-DYJilNov.js.map +1 -0
- package/chunks/{bundle-DT8UMQCr.js → bundle-DaQK1Cox.js} +1 -1
- package/chunks/{bundle-DT8UMQCr.js.map → bundle-DaQK1Cox.js.map} +1 -1
- package/chunks/{bundle-_B5yFEP0.js → bundle-DavEbLba.js} +2 -2
- package/chunks/bundle-DavEbLba.js.map +1 -0
- package/chunks/{bundle-5E39Cv3A.js → bundle-Di7baNGv.js} +1 -1
- package/chunks/bundle-Di7baNGv.js.map +1 -0
- package/chunks/{bundle-DIy5BllY.js → bundle-Dj4HLKX0.js} +16 -16
- package/chunks/bundle-Dj4HLKX0.js.map +1 -0
- package/chunks/{bundle-B1v1xIP1.js → bundle-DlHudqve.js} +1 -1
- package/chunks/bundle-DlHudqve.js.map +1 -0
- package/chunks/{bundle-DtcJzbuk.js → bundle-DoJNLxY9.js} +1 -1
- package/chunks/bundle-DoJNLxY9.js.map +1 -0
- package/chunks/{bundle-C6ZHgzD6.js → bundle-DqNfXH8L.js} +2 -2
- package/chunks/bundle-DqNfXH8L.js.map +1 -0
- package/chunks/{bundle-Bb7wwF7C.js → bundle-Ds2X6Fjs.js} +10 -10
- package/chunks/bundle-Ds2X6Fjs.js.map +1 -0
- package/chunks/{bundle-B9Jpp9ee.js → bundle-DuNr1Njk.js} +1 -1
- package/chunks/bundle-DuNr1Njk.js.map +1 -0
- package/chunks/{bundle-D4TIkniH.js → bundle-DxdGwARh.js} +3 -3
- package/chunks/{bundle-D4TIkniH.js.map → bundle-DxdGwARh.js.map} +1 -1
- package/chunks/{bundle-BRedj7J7.js → bundle-Dypl_pLH.js} +2 -2
- package/chunks/{bundle-BRedj7J7.js.map → bundle-Dypl_pLH.js.map} +1 -1
- package/chunks/{bundle-BxmlG4s-.js → bundle-GRqvZZ2N.js} +3 -3
- package/chunks/bundle-GRqvZZ2N.js.map +1 -0
- package/chunks/{bundle-B3KaaIrh.js → bundle-HsrPpAtd.js} +2 -2
- package/chunks/{bundle-B3KaaIrh.js.map → bundle-HsrPpAtd.js.map} +1 -1
- package/chunks/{bundle-kO-Z-dxL.js → bundle-IuZ6uyzU.js} +1 -1
- package/chunks/bundle-IuZ6uyzU.js.map +1 -0
- package/chunks/{bundle-BEzsjrvw.js → bundle-SvqLmXeF.js} +6 -6
- package/chunks/bundle-SvqLmXeF.js.map +1 -0
- package/chunks/{bundle-Pw0Ofufv.js → bundle-VttuSapS.js} +10 -10
- package/chunks/{bundle-Pw0Ofufv.js.map → bundle-VttuSapS.js.map} +1 -1
- package/chunks/{bundle-BYdjor8f.js → bundle-WrvoTlHQ.js} +1 -1
- package/chunks/bundle-WrvoTlHQ.js.map +1 -0
- package/chunks/{bundle-Be2HIA26.js → bundle-aE9efllI.js} +2 -2
- package/chunks/bundle-aE9efllI.js.map +1 -0
- package/chunks/{bundle-DIhQqYC5.js → bundle-aJhoAKLH.js} +6 -6
- package/chunks/bundle-aJhoAKLH.js.map +1 -0
- package/chunks/{bundle-sQj5xACh.js → bundle-fvRtOX6P.js} +5 -5
- package/chunks/bundle-fvRtOX6P.js.map +1 -0
- package/chunks/{bundle-CNInpRIS.js → bundle-j5EP0k3D.js} +3 -3
- package/chunks/bundle-j5EP0k3D.js.map +1 -0
- package/chunks/{bundle-Bceke7Nk.js → bundle-jd7__XU_.js} +7 -7
- package/chunks/bundle-jd7__XU_.js.map +1 -0
- package/chunks/{bundle-Cb6tbPro.js → bundle-oLhQai93.js} +2 -2
- package/chunks/bundle-oLhQai93.js.map +1 -0
- package/chunks/{bundle-BIcgVVCw.js → bundle-rl7Rvf_6.js} +12 -11
- package/chunks/{bundle-BIcgVVCw.js.map → bundle-rl7Rvf_6.js.map} +1 -1
- package/chunks/{bundle-C-35JoOu.js → bundle-ts_i6oEg.js} +1 -1
- package/chunks/bundle-ts_i6oEg.js.map +1 -0
- package/chunks/{bundle-B_ah2kxT.js → bundle-yNfnN0a6.js} +1 -1
- package/chunks/bundle-yNfnN0a6.js.map +1 -0
- package/cjs/App.js +78 -78
- package/cjs/Channel/components/ChannelHeader.js +29 -29
- package/cjs/Channel/components/ChannelUI.js +64 -64
- package/cjs/Channel/components/FileViewer.js +28 -28
- package/cjs/Channel/components/FrozenNotification.js +5 -5
- package/cjs/Channel/components/Message.js +53 -53
- package/cjs/Channel/components/MessageFeedbackModal.js +9 -9
- package/cjs/Channel/components/MessageInput.js +41 -41
- package/cjs/Channel/components/MessageInputWrapper.js +41 -41
- package/cjs/Channel/components/MessageList.js +57 -57
- package/cjs/Channel/components/RemoveMessageModal.js +27 -27
- package/cjs/Channel/components/SuggestedMentionList.js +27 -27
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +7 -7
- package/cjs/Channel/context.js +19 -19
- package/cjs/Channel/hooks/useHandleUploadFiles.js +13 -13
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +5 -5
- package/cjs/Channel/utils/getMessagePartsInfo.js +6 -6
- package/cjs/Channel.js +64 -64
- package/cjs/ChannelList/components/AddChannel.js +20 -20
- package/cjs/ChannelList/components/ChannelListHeader.js +8 -8
- package/cjs/ChannelList/components/ChannelListUI.js +34 -34
- package/cjs/ChannelList/components/ChannelPreview.js +27 -27
- package/cjs/ChannelList/components/ChannelPreviewAction.js +11 -11
- package/cjs/ChannelList/context.js +10 -10
- package/cjs/ChannelList.js +34 -34
- package/cjs/ChannelSettings/components/ChannelProfile.js +14 -14
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +6 -6
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +23 -23
- package/cjs/ChannelSettings/components/EditDetailsModal.js +14 -14
- package/cjs/ChannelSettings/components/LeaveChannel.js +11 -11
- package/cjs/ChannelSettings/components/ModerationPanel.js +21 -21
- package/cjs/ChannelSettings/components/UserListItem.js +13 -13
- package/cjs/ChannelSettings/components/UserPanel.js +20 -20
- package/cjs/ChannelSettings/context.js +3 -3
- package/cjs/ChannelSettings.js +23 -23
- package/cjs/CreateChannel/components/CreateChannelUI.js +16 -16
- package/cjs/CreateChannel/components/InviteUsers.js +16 -16
- package/cjs/CreateChannel/components/SelectChannelType.js +10 -10
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +16 -16
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +11 -11
- package/cjs/CreateOpenChannel/context.js +1 -1
- package/cjs/CreateOpenChannel.js +11 -11
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +12 -12
- package/cjs/EditUserProfile.js +12 -12
- package/cjs/GroupChannel/components/FileViewer.js +56 -27
- package/cjs/GroupChannel/components/FileViewer.js.map +1 -1
- package/cjs/GroupChannel/components/FrozenNotification.js +5 -5
- package/cjs/GroupChannel/components/GroupChannelHeader.js +22 -22
- package/cjs/GroupChannel/components/GroupChannelUI.js +58 -58
- package/cjs/GroupChannel/components/Message.js +52 -52
- package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -37
- package/cjs/GroupChannel/components/MessageList.js +51 -51
- package/cjs/GroupChannel/components/RemoveMessageModal.js +22 -22
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +7 -7
- package/cjs/GroupChannel/context.js +13 -13
- package/cjs/GroupChannel.js +58 -58
- package/cjs/GroupChannelList/components/AddGroupChannel.js +18 -18
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +8 -8
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +24 -24
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +33 -33
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +11 -11
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +33 -33
- package/cjs/MessageSearch/components/MessageSearchUI.js +14 -14
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +14 -14
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +18 -18
- package/cjs/OpenChannel/components/OpenChannelInput.js +25 -25
- package/cjs/OpenChannel/components/OpenChannelMessage.js +35 -35
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +39 -39
- package/cjs/OpenChannel/components/OpenChannelUI.js +39 -39
- package/cjs/OpenChannel/context.js +17 -17
- package/cjs/OpenChannel.js +39 -39
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +14 -14
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +14 -14
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +15 -15
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +19 -19
- package/cjs/OpenChannelSettings/components/OperatorUI.js +19 -19
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +17 -17
- package/cjs/OpenChannelSettings/context.js +3 -3
- package/cjs/OpenChannelSettings.js +19 -19
- package/cjs/SendbirdProvider.js +24 -48
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +75 -46
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +73 -34
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +7 -7
- package/cjs/Thread/components/ThreadList.js +46 -46
- package/cjs/Thread/components/ThreadListItem.js +109 -52
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +42 -42
- package/cjs/Thread/components/ThreadUI.js +56 -56
- package/cjs/Thread/context.js +11 -10
- package/cjs/Thread/context.js.map +1 -1
- package/cjs/Thread.js +56 -56
- package/cjs/VoicePlayer/context.js +3 -3
- package/cjs/VoicePlayer/useVoicePlayer.js +10 -10
- package/cjs/VoiceRecorder/context.js +10 -10
- package/cjs/VoiceRecorder/useVoiceRecorder.js +9 -9
- package/cjs/chunks/{bundle-CD82WkIi.js → bundle-1FXPxsfD.js} +1 -1
- package/cjs/chunks/bundle-1FXPxsfD.js.map +1 -0
- package/cjs/chunks/{bundle-nu9oFcYy.js → bundle-2ATovRxE.js} +4 -4
- package/cjs/chunks/bundle-2ATovRxE.js.map +1 -0
- package/cjs/chunks/{bundle-Cwr1hx-z.js → bundle-8uCH3epo.js} +11 -11
- package/cjs/chunks/{bundle-Cwr1hx-z.js.map → bundle-8uCH3epo.js.map} +1 -1
- package/cjs/chunks/{bundle-BgCtP7V4.js → bundle-B-njjZtk.js} +3 -3
- package/cjs/chunks/bundle-B-njjZtk.js.map +1 -0
- package/cjs/chunks/{bundle-BC16qA15.js → bundle-B3Lu20wG.js} +1 -1
- package/cjs/chunks/bundle-B3Lu20wG.js.map +1 -0
- package/cjs/chunks/{bundle-CWXfgOJy.js → bundle-B6FFmfTl.js} +2 -2
- package/cjs/chunks/bundle-B6FFmfTl.js.map +1 -0
- package/cjs/chunks/{bundle-BbpNwwR8.js → bundle-B7TedQKS.js} +2 -2
- package/cjs/chunks/bundle-B7TedQKS.js.map +1 -0
- package/cjs/chunks/{bundle-DWp3JSCd.js → bundle-BBS4PSSm.js} +1 -1
- package/cjs/chunks/bundle-BBS4PSSm.js.map +1 -0
- package/cjs/chunks/{bundle-WCt_Po-w.js → bundle-BBdLSx_x.js} +3 -3
- package/cjs/chunks/{bundle-WCt_Po-w.js.map → bundle-BBdLSx_x.js.map} +1 -1
- package/cjs/chunks/{bundle-DTcE7Dci.js → bundle-BElidCBa.js} +9 -9
- package/cjs/chunks/bundle-BElidCBa.js.map +1 -0
- package/cjs/chunks/{bundle-D8ubAia5.js → bundle-BJD09510.js} +6 -6
- package/cjs/chunks/bundle-BJD09510.js.map +1 -0
- package/cjs/chunks/{bundle-DF3rT3ak.js → bundle-BJjQQMo0.js} +4 -4
- package/cjs/chunks/bundle-BJjQQMo0.js.map +1 -0
- package/cjs/chunks/{bundle-BkYT_Hch.js → bundle-BNCNRHux.js} +3 -3
- package/cjs/chunks/bundle-BNCNRHux.js.map +1 -0
- package/cjs/chunks/{bundle-D1EDPlQX.js → bundle-BO1-msX2.js} +1 -1
- package/cjs/chunks/bundle-BO1-msX2.js.map +1 -0
- package/cjs/chunks/{bundle-7Mbs7JEn.js → bundle-BSLZ5pEu.js} +3 -3
- package/cjs/chunks/bundle-BSLZ5pEu.js.map +1 -0
- package/cjs/chunks/{bundle-CjWn0S2s.js → bundle-BXEAjuTY.js} +1 -1
- package/cjs/chunks/bundle-BXEAjuTY.js.map +1 -0
- package/cjs/chunks/{bundle-C4s5Xn-0.js → bundle-BXQqL0gU.js} +1 -1
- package/cjs/chunks/bundle-BXQqL0gU.js.map +1 -0
- package/cjs/chunks/{bundle-3-9K7DVM.js → bundle-B_BPxhrG.js} +6 -6
- package/cjs/chunks/bundle-B_BPxhrG.js.map +1 -0
- package/cjs/chunks/{bundle-BQtI4UIy.js → bundle-Bc6y_vRE.js} +1 -1
- package/cjs/chunks/bundle-Bc6y_vRE.js.map +1 -0
- package/cjs/chunks/{bundle-CEMPv2S1.js → bundle-BiEQOJHh.js} +1 -1
- package/cjs/chunks/bundle-BiEQOJHh.js.map +1 -0
- package/cjs/chunks/{bundle-FLujzEX2.js → bundle-BnTCpa1X.js} +12 -11
- package/cjs/chunks/bundle-BnTCpa1X.js.map +1 -0
- package/cjs/chunks/{bundle-DIvM3-on.js → bundle-Bpm6PJIl.js} +7 -7
- package/cjs/chunks/bundle-Bpm6PJIl.js.map +1 -0
- package/cjs/chunks/{bundle-UDIPXpOV.js → bundle-BpwSTA3F.js} +1 -1
- package/cjs/chunks/bundle-BpwSTA3F.js.map +1 -0
- package/cjs/chunks/{bundle-BcZEQhhq.js → bundle-BzBRoraS.js} +1 -1
- package/cjs/chunks/bundle-BzBRoraS.js.map +1 -0
- package/cjs/chunks/{bundle-Ud8W92re.js → bundle-C1j0QNr3.js} +5 -5
- package/cjs/chunks/bundle-C1j0QNr3.js.map +1 -0
- package/cjs/chunks/{bundle-Drfn-tNj.js → bundle-C36gEKFp.js} +2 -2
- package/cjs/chunks/bundle-C36gEKFp.js.map +1 -0
- package/cjs/chunks/{bundle-CaUIrp6R.js → bundle-CAyt7i0X.js} +1 -1
- package/cjs/chunks/bundle-CAyt7i0X.js.map +1 -0
- package/cjs/chunks/{bundle-Cn_c8gj0.js → bundle-CEcY1I0M.js} +8 -8
- package/cjs/chunks/{bundle-Cn_c8gj0.js.map → bundle-CEcY1I0M.js.map} +1 -1
- package/cjs/chunks/{bundle-CyopFRXm.js → bundle-CEiDcA9X.js} +1 -1
- package/cjs/chunks/{bundle-CyopFRXm.js.map → bundle-CEiDcA9X.js.map} +1 -1
- package/cjs/chunks/{bundle-qJ5-0bqN.js → bundle-CKC-b4Bw.js} +3 -3
- package/cjs/chunks/bundle-CKC-b4Bw.js.map +1 -0
- package/cjs/chunks/{bundle-WZOflhxA.js → bundle-CN0vR-TH.js} +2 -2
- package/cjs/chunks/{bundle-WZOflhxA.js.map → bundle-CN0vR-TH.js.map} +1 -1
- package/cjs/chunks/{bundle-CkG1F8lG.js → bundle-CQiNKK2y.js} +2 -2
- package/cjs/chunks/bundle-CQiNKK2y.js.map +1 -0
- package/cjs/chunks/{bundle-Dj0eVVGW.js → bundle-CXDp72cg.js} +10 -10
- package/cjs/chunks/bundle-CXDp72cg.js.map +1 -0
- package/cjs/chunks/{bundle-BYp2_-p_.js → bundle-CXaKbxhR.js} +40 -9
- package/cjs/chunks/bundle-CXaKbxhR.js.map +1 -0
- package/cjs/chunks/{bundle-CJ87J3R1.js → bundle-CbATYgnP.js} +3 -3
- package/cjs/chunks/bundle-CbATYgnP.js.map +1 -0
- package/cjs/chunks/{bundle-RH9DajrH.js → bundle-CfEubbCT.js} +2 -2
- package/cjs/chunks/bundle-CfEubbCT.js.map +1 -0
- package/cjs/chunks/{bundle-CfYRwgks.js → bundle-CfRX00vQ.js} +1 -1
- package/cjs/chunks/bundle-CfRX00vQ.js.map +1 -0
- package/cjs/chunks/{bundle-BTsTFHLV.js → bundle-ChQ3Q-GS.js} +7 -7
- package/cjs/chunks/bundle-ChQ3Q-GS.js.map +1 -0
- package/cjs/chunks/{bundle-UJc1wb2l.js → bundle-CncTMWLv.js} +10 -10
- package/cjs/chunks/{bundle-UJc1wb2l.js.map → bundle-CncTMWLv.js.map} +1 -1
- package/cjs/chunks/{bundle-B2QAlKH1.js → bundle-CoTIkHcU.js} +4 -4
- package/cjs/chunks/bundle-CoTIkHcU.js.map +1 -0
- package/cjs/chunks/{bundle-Bln5Elhn.js → bundle-CqTg15Dn.js} +1 -1
- package/cjs/chunks/bundle-CqTg15Dn.js.map +1 -0
- package/cjs/chunks/{bundle-D_4vATFJ.js → bundle-D1mv8BUm.js} +1 -1
- package/cjs/chunks/bundle-D1mv8BUm.js.map +1 -0
- package/cjs/chunks/{bundle-CwGDa8mu.js → bundle-DIfKPcm_.js} +1 -1
- package/cjs/chunks/bundle-DIfKPcm_.js.map +1 -0
- package/cjs/chunks/{bundle-D9rC4yPj.js → bundle-DKspFBdx.js} +1 -1
- package/cjs/chunks/bundle-DKspFBdx.js.map +1 -0
- package/cjs/chunks/{bundle-D-izgOCe.js → bundle-DOmB6XkC.js} +54 -52
- package/cjs/chunks/bundle-DOmB6XkC.js.map +1 -0
- package/cjs/chunks/{bundle--Ti8q5z8.js → bundle-DRT94QO5.js} +4 -4
- package/cjs/chunks/bundle-DRT94QO5.js.map +1 -0
- package/cjs/chunks/{bundle-BfzgaLQx.js → bundle-D_RomXCz.js} +1 -1
- package/cjs/chunks/bundle-D_RomXCz.js.map +1 -0
- package/cjs/chunks/{bundle-B-wprLUV.js → bundle-D_qbYkHk.js} +1 -1
- package/cjs/chunks/{bundle-B-wprLUV.js.map → bundle-D_qbYkHk.js.map} +1 -1
- package/cjs/chunks/{bundle-DgX9o5Mt.js → bundle-DcVYwXP-.js} +1 -1
- package/cjs/chunks/bundle-DcVYwXP-.js.map +1 -0
- package/cjs/chunks/{bundle-KR9lSala.js → bundle-DdS-jEnE.js} +3 -3
- package/cjs/chunks/bundle-DdS-jEnE.js.map +1 -0
- package/cjs/chunks/{bundle-XCOUGtdD.js → bundle-DeOn9o6F.js} +3 -3
- package/cjs/chunks/bundle-DeOn9o6F.js.map +1 -0
- package/cjs/chunks/{bundle-C11HvpZq.js → bundle-DiER49ZF.js} +1 -1
- package/cjs/chunks/bundle-DiER49ZF.js.map +1 -0
- package/cjs/chunks/{bundle-VqK6Sgiy.js → bundle-DkGYX29W.js} +3 -3
- package/cjs/chunks/bundle-DkGYX29W.js.map +1 -0
- package/cjs/chunks/{bundle-C2yYR5hZ.js → bundle-Dm7xuKwW.js} +10 -10
- package/cjs/chunks/{bundle-C2yYR5hZ.js.map → bundle-Dm7xuKwW.js.map} +1 -1
- package/cjs/chunks/{bundle-BcQPY3B6.js → bundle-DmPl_3ye.js} +2 -2
- package/cjs/chunks/bundle-DmPl_3ye.js.map +1 -0
- package/cjs/chunks/{bundle-DnF-KuhG.js → bundle-DsDhHgmF.js} +2 -2
- package/cjs/chunks/bundle-DsDhHgmF.js.map +1 -0
- package/cjs/chunks/{bundle-DLg-6Upp.js → bundle-DskQULoR.js} +2 -2
- package/cjs/chunks/{bundle-DLg-6Upp.js.map → bundle-DskQULoR.js.map} +1 -1
- package/cjs/chunks/{bundle-gSaGPkzz.js → bundle-DtroGUKx.js} +3 -3
- package/cjs/chunks/{bundle-gSaGPkzz.js.map → bundle-DtroGUKx.js.map} +1 -1
- package/cjs/chunks/{bundle-DG1IpvjA.js → bundle-DuHJq3hs.js} +16 -16
- package/cjs/chunks/bundle-DuHJq3hs.js.map +1 -0
- package/cjs/chunks/{bundle-BEQWEQgH.js → bundle-DvduWWQk.js} +3 -3
- package/cjs/chunks/bundle-DvduWWQk.js.map +1 -0
- package/cjs/chunks/{bundle-Dj2Oa2F6.js → bundle-HOuE7syZ.js} +1 -1
- package/cjs/chunks/{bundle-Dj2Oa2F6.js.map → bundle-HOuE7syZ.js.map} +1 -1
- package/cjs/chunks/{bundle-CxuGQxaT.js → bundle-HXyGAP9T.js} +1 -1
- package/cjs/chunks/bundle-HXyGAP9T.js.map +1 -0
- package/cjs/chunks/{bundle-DA7uhOAM.js → bundle-IVxSH9N4.js} +1 -1
- package/cjs/chunks/bundle-IVxSH9N4.js.map +1 -0
- package/cjs/chunks/{bundle-BruXgSj3.js → bundle-P5AI1HkP.js} +1 -1
- package/cjs/chunks/bundle-P5AI1HkP.js.map +1 -0
- package/cjs/chunks/{bundle-Dp2kRPpd.js → bundle-QSgOdsGM.js} +1 -1
- package/cjs/chunks/bundle-QSgOdsGM.js.map +1 -0
- package/cjs/chunks/{bundle-B_CGu6U0.js → bundle-QsOyTCMH.js} +5 -5
- package/cjs/chunks/{bundle-B_CGu6U0.js.map → bundle-QsOyTCMH.js.map} +1 -1
- package/cjs/chunks/{bundle-BO2p70mH.js → bundle-S09sS9Ub.js} +1 -1
- package/cjs/chunks/bundle-S09sS9Ub.js.map +1 -0
- package/cjs/chunks/{bundle-DLgX_uIA.js → bundle-Tx6vw4BY.js} +3 -3
- package/cjs/chunks/{bundle-DLgX_uIA.js.map → bundle-Tx6vw4BY.js.map} +1 -1
- package/cjs/chunks/{bundle-DqysFYzQ.js → bundle-VIGS3UfE.js} +2 -2
- package/cjs/chunks/bundle-VIGS3UfE.js.map +1 -0
- package/cjs/chunks/{bundle-CHVN5sv2.js → bundle-Vn-fJ6dU.js} +4 -4
- package/cjs/chunks/{bundle-CHVN5sv2.js.map → bundle-Vn-fJ6dU.js.map} +1 -1
- package/cjs/chunks/{bundle-xaau8Z4q.js → bundle-YUHup5bR.js} +1 -1
- package/cjs/chunks/bundle-YUHup5bR.js.map +1 -0
- package/cjs/chunks/{bundle-CHI5iCph.js → bundle-_D9xt-bK.js} +1 -1
- package/cjs/chunks/bundle-_D9xt-bK.js.map +1 -0
- package/cjs/chunks/{bundle-JKeFsVQp.js → bundle-d3t3a2vc.js} +1 -1
- package/cjs/chunks/bundle-d3t3a2vc.js.map +1 -0
- package/cjs/chunks/{bundle-BodKdXyG.js → bundle-knUfDzC9.js} +14 -14
- package/cjs/chunks/{bundle-BodKdXyG.js.map → bundle-knUfDzC9.js.map} +1 -1
- package/cjs/chunks/{bundle-DwpBeRp2.js → bundle-kzleXCM7.js} +6 -6
- package/cjs/chunks/bundle-kzleXCM7.js.map +1 -0
- package/cjs/chunks/{bundle-CEN95Xmn.js → bundle-p3gZAjMS.js} +1 -1
- package/cjs/chunks/bundle-p3gZAjMS.js.map +1 -0
- package/cjs/chunks/{bundle-BxER_OfA.js → bundle-pVDX6G_q.js} +3 -3
- package/cjs/chunks/bundle-pVDX6G_q.js.map +1 -0
- package/cjs/chunks/{bundle-CGBPEEGS.js → bundle-prE7SKQr.js} +1 -1
- package/cjs/chunks/{bundle-CGBPEEGS.js.map → bundle-prE7SKQr.js.map} +1 -1
- package/cjs/chunks/{bundle-Dwy0Hf3u.js → bundle-r8oxykjl.js} +10 -10
- package/cjs/chunks/bundle-r8oxykjl.js.map +1 -0
- package/cjs/chunks/{bundle-DQM5RZ7p.js → bundle-tbYf0yOX.js} +1 -1
- package/cjs/chunks/bundle-tbYf0yOX.js.map +1 -0
- package/cjs/chunks/{bundle-CTjNx2bJ.js → bundle-urLzDFXK.js} +1 -1
- package/cjs/chunks/bundle-urLzDFXK.js.map +1 -0
- package/cjs/chunks/{bundle-udIHWjxi.js → bundle-vxdq428L.js} +1 -1
- package/cjs/chunks/bundle-vxdq428L.js.map +1 -0
- package/cjs/hooks/useModal.js +9 -9
- package/cjs/index.js +82 -82
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +2 -2
- package/cjs/ui/Accordion.js +3 -3
- package/cjs/ui/AccordionGroup.js +2 -2
- package/cjs/ui/AdminMessage.js +3 -3
- package/cjs/ui/Avatar.js +4 -4
- package/cjs/ui/Badge.js +5 -5
- package/cjs/ui/BottomSheet.js +9 -9
- package/cjs/ui/Button.js +3 -3
- package/cjs/ui/ChannelAvatar.js +5 -5
- package/cjs/ui/ConnectionStatus.js +6 -6
- package/cjs/ui/ContextMenu.js +6 -6
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +16 -16
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/cjs/ui/FileMessageItemBody.js +50 -12
- package/cjs/ui/FileMessageItemBody.js.map +1 -1
- package/cjs/ui/FileViewer.js +15 -15
- package/cjs/ui/Icon.js +2 -2
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +2 -2
- package/cjs/ui/Input.js +3 -3
- package/cjs/ui/Label.js +3 -3
- package/cjs/ui/LinkLabel.js +3 -3
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/cjs/ui/MentionLabel.js +13 -13
- package/cjs/ui/MentionUserLabel.js +1 -1
- package/cjs/ui/MessageContent.js +69 -39
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +15 -15
- package/cjs/ui/MessageItemMenu.js +63 -26
- package/cjs/ui/MessageItemMenu.js.map +1 -1
- package/cjs/ui/MessageItemReactionMenu.js +9 -9
- package/cjs/ui/MessageSearchFileItem.js +14 -14
- package/cjs/ui/MessageSearchItem.js +11 -11
- package/cjs/ui/MessageStatus.js +12 -12
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +9 -9
- package/cjs/ui/Modal.js +8 -8
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +18 -17
- package/cjs/ui/OGMessageItemBody.js.map +1 -1
- package/cjs/ui/OpenChannelAdminMessage.js +3 -3
- package/cjs/ui/OpenChannelAvatar.js +8 -8
- package/cjs/ui/OpenchannelConversationHeader.js +8 -8
- package/cjs/ui/OpenchannelFileMessage.js +18 -18
- package/cjs/ui/OpenchannelOGMessage.js +20 -20
- package/cjs/ui/OpenchannelThumbnailMessage.js +17 -17
- package/cjs/ui/OpenchannelUserMessage.js +18 -18
- package/cjs/ui/PlaceHolder.js +6 -6
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/QuoteMessage.js +9 -9
- package/cjs/ui/QuoteMessageInput.js +9 -9
- package/cjs/ui/ReactionBadge.js +3 -3
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +43 -17
- package/cjs/ui/TemplateMessageItemBody.js.map +1 -1
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +16 -16
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +7 -7
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +7 -7
- package/cjs/ui/UserListItem.js +16 -15
- package/cjs/ui/UserListItem.js.map +1 -1
- package/cjs/ui/UserProfile.js +10 -10
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +10 -10
- package/cjs/ui/Word.js +13 -13
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +3 -3
- package/cjs/withSendbird.js +1 -1
- package/dist/index.css +93 -91
- package/dist/index.css.map +1 -1
- package/hooks/useModal.js +10 -10
- package/index.js +82 -82
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/modules/GroupChannel/components/FileViewer/FileViewerView.d.ts +5 -3
- package/types/modules/GroupChannel/components/Message/MessageView.d.ts +6 -0
- package/types/modules/GroupChannel/context/GroupChannelProvider.d.ts +6 -1
- package/types/modules/Thread/components/ParentMessageInfo/ParentMessageInfoItem.d.ts +3 -1
- package/types/modules/Thread/context/ThreadProvider.d.ts +2 -0
- package/types/ui/FileMessageItemBody/index.d.ts +3 -1
- package/types/ui/FileViewer/index.d.ts +2 -1
- package/types/ui/FileViewer/types.d.ts +4 -2
- package/types/ui/MessageContent/MessageBody/index.d.ts +2 -0
- package/types/ui/MessageContent/index.d.ts +2 -0
- package/types/ui/MessageItemMenu/index.d.ts +10 -2
- package/types/ui/MessageTemplate/messageTemplateErrorBoundary.d.ts +19 -0
- package/types/ui/MobileMenu/types.d.ts +2 -1
- package/types/ui/MultipleFilesMessageItemBody/index.d.ts +3 -1
- package/types/ui/UserListItem/index.d.ts +2 -1
- package/ui/Accordion.js +3 -3
- package/ui/AccordionGroup.js +2 -2
- package/ui/AdminMessage.js +3 -3
- package/ui/Avatar.js +4 -4
- package/ui/Badge.js +5 -5
- package/ui/BottomSheet.js +9 -9
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +6 -6
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +16 -16
- package/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/ui/FileMessageItemBody.js +50 -12
- package/ui/FileMessageItemBody.js.map +1 -1
- package/ui/FileViewer.js +15 -15
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +2 -2
- package/ui/Input.js +3 -3
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +3 -3
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/ui/MentionLabel.js +13 -13
- package/ui/MentionUserLabel.js +1 -1
- package/ui/MessageContent.js +69 -39
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +15 -15
- package/ui/MessageItemMenu.js +63 -26
- package/ui/MessageItemMenu.js.map +1 -1
- package/ui/MessageItemReactionMenu.js +9 -9
- package/ui/MessageSearchFileItem.js +14 -14
- package/ui/MessageSearchItem.js +11 -11
- package/ui/MessageStatus.js +12 -12
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +9 -9
- package/ui/Modal.js +8 -8
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +18 -17
- package/ui/OGMessageItemBody.js.map +1 -1
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +18 -18
- package/ui/OpenchannelOGMessage.js +20 -20
- package/ui/OpenchannelThumbnailMessage.js +17 -17
- package/ui/OpenchannelUserMessage.js +18 -18
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/QuoteMessage.js +9 -9
- package/ui/QuoteMessageInput.js +9 -9
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +44 -18
- package/ui/TemplateMessageItemBody.js.map +1 -1
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +16 -16
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +7 -7
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +7 -7
- package/ui/UserListItem.js +16 -15
- package/ui/UserListItem.js.map +1 -1
- package/ui/UserProfile.js +10 -10
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +10 -10
- package/ui/Word.js +13 -13
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +3 -3
- package/withSendbird.js +1 -1
- package/chunks/bundle-2UMLs1R6.js.map +0 -1
- package/chunks/bundle-2g0N2xdw.js.map +0 -1
- package/chunks/bundle-5DiiOFi-.js.map +0 -1
- package/chunks/bundle-5E39Cv3A.js.map +0 -1
- package/chunks/bundle-B1v1xIP1.js.map +0 -1
- package/chunks/bundle-B9Jpp9ee.js.map +0 -1
- package/chunks/bundle-BEzsjrvw.js.map +0 -1
- package/chunks/bundle-BKPDTl9U.js.map +0 -1
- package/chunks/bundle-BUHwsL2D.js.map +0 -1
- package/chunks/bundle-BV8WCwVA.js.map +0 -1
- package/chunks/bundle-BYdjor8f.js.map +0 -1
- package/chunks/bundle-BZK5eiX2.js.map +0 -1
- package/chunks/bundle-B_ah2kxT.js.map +0 -1
- package/chunks/bundle-Bb7wwF7C.js.map +0 -1
- package/chunks/bundle-Bceke7Nk.js.map +0 -1
- package/chunks/bundle-BdCGrzcY.js.map +0 -1
- package/chunks/bundle-Be2HIA26.js.map +0 -1
- package/chunks/bundle-BgunHZ2y.js.map +0 -1
- package/chunks/bundle-BkTOcqVY.js.map +0 -1
- package/chunks/bundle-BlSpe5qA.js.map +0 -1
- package/chunks/bundle-BpyUTLY3.js.map +0 -1
- package/chunks/bundle-BqWBruLa.js.map +0 -1
- package/chunks/bundle-BxmlG4s-.js.map +0 -1
- package/chunks/bundle-C-35JoOu.js.map +0 -1
- package/chunks/bundle-C6387K33.js.map +0 -1
- package/chunks/bundle-C6MmX70M.js.map +0 -1
- package/chunks/bundle-C6ZHgzD6.js.map +0 -1
- package/chunks/bundle-C7SA85dp.js.map +0 -1
- package/chunks/bundle-CHxXgtL2.js.map +0 -1
- package/chunks/bundle-CI0ovNa-.js.map +0 -1
- package/chunks/bundle-CIHv_OFc.js.map +0 -1
- package/chunks/bundle-CNInpRIS.js.map +0 -1
- package/chunks/bundle-CU8x_Vlw.js.map +0 -1
- package/chunks/bundle-CXMfzdI7.js.map +0 -1
- package/chunks/bundle-Cb6tbPro.js.map +0 -1
- package/chunks/bundle-Cgtk2LV4.js.map +0 -1
- package/chunks/bundle-Cm3yLDom.js.map +0 -1
- package/chunks/bundle-D57EENOn.js.map +0 -1
- package/chunks/bundle-D9xWky57.js.map +0 -1
- package/chunks/bundle-DIhQqYC5.js.map +0 -1
- package/chunks/bundle-DIy5BllY.js.map +0 -1
- package/chunks/bundle-DPRlCjJt.js.map +0 -1
- package/chunks/bundle-DdwjYXOX.js.map +0 -1
- package/chunks/bundle-DtcJzbuk.js.map +0 -1
- package/chunks/bundle-DwRQcRou.js.map +0 -1
- package/chunks/bundle-Hl5CUM1x.js.map +0 -1
- package/chunks/bundle-OTdL9cWR.js.map +0 -1
- package/chunks/bundle-RJu3P_iQ.js.map +0 -1
- package/chunks/bundle-_B5yFEP0.js.map +0 -1
- package/chunks/bundle-cWhfb441.js.map +0 -1
- package/chunks/bundle-hAKR7PVp.js.map +0 -1
- package/chunks/bundle-kO-Z-dxL.js.map +0 -1
- package/chunks/bundle-mkC088ne.js.map +0 -1
- package/chunks/bundle-sQj5xACh.js.map +0 -1
- package/chunks/bundle-ugWtu0YZ.js.map +0 -1
- package/cjs/chunks/bundle--Ti8q5z8.js.map +0 -1
- package/cjs/chunks/bundle-3-9K7DVM.js.map +0 -1
- package/cjs/chunks/bundle-7Mbs7JEn.js.map +0 -1
- package/cjs/chunks/bundle-BC16qA15.js.map +0 -1
- package/cjs/chunks/bundle-BEQWEQgH.js.map +0 -1
- package/cjs/chunks/bundle-BO2p70mH.js.map +0 -1
- package/cjs/chunks/bundle-BQtI4UIy.js.map +0 -1
- package/cjs/chunks/bundle-BTsTFHLV.js.map +0 -1
- package/cjs/chunks/bundle-BYp2_-p_.js.map +0 -1
- package/cjs/chunks/bundle-BbpNwwR8.js.map +0 -1
- package/cjs/chunks/bundle-BcQPY3B6.js.map +0 -1
- package/cjs/chunks/bundle-BcZEQhhq.js.map +0 -1
- package/cjs/chunks/bundle-BfzgaLQx.js.map +0 -1
- package/cjs/chunks/bundle-BgCtP7V4.js.map +0 -1
- package/cjs/chunks/bundle-BkYT_Hch.js.map +0 -1
- package/cjs/chunks/bundle-Bln5Elhn.js.map +0 -1
- package/cjs/chunks/bundle-BruXgSj3.js.map +0 -1
- package/cjs/chunks/bundle-BxER_OfA.js.map +0 -1
- package/cjs/chunks/bundle-C11HvpZq.js.map +0 -1
- package/cjs/chunks/bundle-C4s5Xn-0.js.map +0 -1
- package/cjs/chunks/bundle-CD82WkIi.js.map +0 -1
- package/cjs/chunks/bundle-CEMPv2S1.js.map +0 -1
- package/cjs/chunks/bundle-CEN95Xmn.js.map +0 -1
- package/cjs/chunks/bundle-CHI5iCph.js.map +0 -1
- package/cjs/chunks/bundle-CJ87J3R1.js.map +0 -1
- package/cjs/chunks/bundle-CTjNx2bJ.js.map +0 -1
- package/cjs/chunks/bundle-CWXfgOJy.js.map +0 -1
- package/cjs/chunks/bundle-CaUIrp6R.js.map +0 -1
- package/cjs/chunks/bundle-CfYRwgks.js.map +0 -1
- package/cjs/chunks/bundle-CjWn0S2s.js.map +0 -1
- package/cjs/chunks/bundle-CkG1F8lG.js.map +0 -1
- package/cjs/chunks/bundle-CwGDa8mu.js.map +0 -1
- package/cjs/chunks/bundle-CxuGQxaT.js.map +0 -1
- package/cjs/chunks/bundle-D-izgOCe.js.map +0 -1
- package/cjs/chunks/bundle-D1EDPlQX.js.map +0 -1
- package/cjs/chunks/bundle-D8ubAia5.js.map +0 -1
- package/cjs/chunks/bundle-D9rC4yPj.js.map +0 -1
- package/cjs/chunks/bundle-DA7uhOAM.js.map +0 -1
- package/cjs/chunks/bundle-DF3rT3ak.js.map +0 -1
- package/cjs/chunks/bundle-DG1IpvjA.js.map +0 -1
- package/cjs/chunks/bundle-DIvM3-on.js.map +0 -1
- package/cjs/chunks/bundle-DQM5RZ7p.js.map +0 -1
- package/cjs/chunks/bundle-DTcE7Dci.js.map +0 -1
- package/cjs/chunks/bundle-DWp3JSCd.js.map +0 -1
- package/cjs/chunks/bundle-D_4vATFJ.js.map +0 -1
- package/cjs/chunks/bundle-DgX9o5Mt.js.map +0 -1
- package/cjs/chunks/bundle-Dj0eVVGW.js.map +0 -1
- package/cjs/chunks/bundle-DnF-KuhG.js.map +0 -1
- package/cjs/chunks/bundle-Dp2kRPpd.js.map +0 -1
- package/cjs/chunks/bundle-DqysFYzQ.js.map +0 -1
- package/cjs/chunks/bundle-Drfn-tNj.js.map +0 -1
- package/cjs/chunks/bundle-DwpBeRp2.js.map +0 -1
- package/cjs/chunks/bundle-Dwy0Hf3u.js.map +0 -1
- package/cjs/chunks/bundle-FLujzEX2.js.map +0 -1
- package/cjs/chunks/bundle-JKeFsVQp.js.map +0 -1
- package/cjs/chunks/bundle-KR9lSala.js.map +0 -1
- package/cjs/chunks/bundle-RH9DajrH.js.map +0 -1
- package/cjs/chunks/bundle-UDIPXpOV.js.map +0 -1
- package/cjs/chunks/bundle-Ud8W92re.js.map +0 -1
- package/cjs/chunks/bundle-VqK6Sgiy.js.map +0 -1
- package/cjs/chunks/bundle-XCOUGtdD.js.map +0 -1
- package/cjs/chunks/bundle-nu9oFcYy.js.map +0 -1
- package/cjs/chunks/bundle-qJ5-0bqN.js.map +0 -1
- package/cjs/chunks/bundle-udIHWjxi.js.map +0 -1
- package/cjs/chunks/bundle-xaau8Z4q.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-CyopFRXm.js","sources":["../../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/parser.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/renderer.js","../../../node_modules/@sendbird/uikit-message-template/dist/context/SizeProvider.js","../../../node_modules/@sendbird/uikit-message-template/dist/utils/templateItemId.js","../../../node_modules/@sendbird/uikit-message-template/dist/types/styles.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/defaultValues.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/messageTemplate.js","../../../node_modules/@sendbird/uikit-message-template/dist/types/properties.js","../../../node_modules/@sendbird/uikit-message-template/dist/utils/index.js","../../../node_modules/@sendbird/uikit-message-template/dist/test/data.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.canvas.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.img.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.placeholder.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/usePreservedCallback.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRefEffect.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useResizeObserver.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useElementSize.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRecalculationSize.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/index.js"],"sourcesContent":["export var ComponentType;\n(function (ComponentType) {\n ComponentType[\"Box\"] = \"box\";\n ComponentType[\"Text\"] = \"text\";\n ComponentType[\"Image\"] = \"image\";\n ComponentType[\"TextButton\"] = \"textButton\";\n ComponentType[\"ImageButton\"] = \"imageButton\";\n})(ComponentType || (ComponentType = {}));\n","// -------- Set property mapper\nimport { ComponentType } from '../types/components';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n const defaultMapper = (params === null || params === void 0 ? void 0 : params.defaultMapper) || MAPPER;\n const mapper = {\n defaultMapper,\n mapBoxProps: (params === null || params === void 0 ? void 0 : params.mapBoxProps) || defaultMapper,\n mapTextProps: (params === null || params === void 0 ? void 0 : params.mapTextProps) || defaultMapper,\n mapImageProps: (params === null || params === void 0 ? void 0 : params.mapImageProps) || defaultMapper,\n mapTextButtonProps: (params === null || params === void 0 ? void 0 : params.mapTextButtonProps) || defaultMapper,\n mapImageButtonProps: (params === null || params === void 0 ? void 0 : params.mapImageButtonProps) || defaultMapper,\n };\n return {\n parse(item, options) {\n switch (item.type) {\n case ComponentType.Box: {\n return { properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { properties: mapper.mapImageButtonProps(item, options) };\n }\n default:\n return { properties: undefined };\n }\n },\n };\n};\nexport const DEFAULT_PARSER_VALUES = {\n light: { _: undefined },\n dark: { _: undefined },\n};\n","import React from 'react';\nconst FRAGMENT = ({ children }) => React.createElement(React.Fragment, null, children);\nexport function createRenderer(params) {\n var _a, _b, _c, _d, _e;\n return {\n box: ((_a = params === null || params === void 0 ? void 0 : params.views) === null || _a === void 0 ? void 0 : _a.box) || FRAGMENT,\n text: ((_b = params === null || params === void 0 ? void 0 : params.views) === null || _b === void 0 ? void 0 : _b.text) || FRAGMENT,\n image: ((_c = params === null || params === void 0 ? void 0 : params.views) === null || _c === void 0 ? void 0 : _c.image) || FRAGMENT,\n imageButton: ((_d = params === null || params === void 0 ? void 0 : params.views) === null || _d === void 0 ? void 0 : _d.imageButton) || FRAGMENT,\n textButton: ((_e = params === null || params === void 0 ? void 0 : params.views) === null || _e === void 0 ? void 0 : _e.textButton) || FRAGMENT,\n };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { createContext, useCallback, useContext, useState } from 'react';\nconst SizeContext = createContext({\n sizes: {},\n updateSize: () => { },\n});\nconst SizeContextProvider = ({ children }) => {\n const [sizes, setSizes] = useState({});\n const updateSize = useCallback((_a) => {\n var { id } = _a, rest = __rest(_a, [\"id\"]);\n if (id) {\n setSizes((prevSizes) => (Object.assign(Object.assign({}, prevSizes), { [id]: rest })));\n }\n }, []);\n return React.createElement(SizeContext.Provider, { value: { sizes, updateSize } }, children);\n};\nconst useSizeContext = () => useContext(SizeContext);\nexport { SizeContextProvider, useSizeContext };\n","const memoize = (fn) => {\n const cache = new Map();\n const cached = function (val) {\n return cache.has(val) ? cache.get(val) : cache.set(val, fn.call(this, val)) && cache.get(val);\n };\n cached.cache = cache;\n return cached;\n};\n/**\n * Generate each item's id by each item's array depth\n */\nexport const setTemplateItemId = memoize((data) => {\n const addIdRecursively = (item, id) => {\n if ('items' in item && (item === null || item === void 0 ? void 0 : item.items) != null) {\n item.items.forEach((subItem, subIdx) => {\n const subId = `${id}-${subIdx}`;\n subItem.id = subId;\n addIdRecursively(subItem, subId);\n });\n }\n };\n data.forEach((item, idx) => {\n const id = `${idx}`;\n item.id = id;\n addIdRecursively(item, id);\n });\n return data;\n});\n","export var Layout;\n(function (Layout) {\n Layout[\"Row\"] = \"row\";\n Layout[\"Column\"] = \"column\";\n})(Layout || (Layout = {}));\nexport var AlignValue;\n(function (AlignValue) {\n AlignValue[\"Center\"] = \"center\";\n AlignValue[\"Left\"] = \"left\";\n AlignValue[\"Right\"] = \"right\";\n AlignValue[\"Top\"] = \"top\";\n AlignValue[\"Bottom\"] = \"bottom\";\n})(AlignValue || (AlignValue = {}));\n/**\n * @description\n * Caution: Numbers are passed as string types in the message template builder.\n * Use `==` comparison instead of `===` comparison when using a regular enum instead of a string enum.\n */\nexport var FlexSizeSpecValue;\n(function (FlexSizeSpecValue) {\n FlexSizeSpecValue[FlexSizeSpecValue[\"FillParent\"] = 0] = \"FillParent\";\n FlexSizeSpecValue[FlexSizeSpecValue[\"WrapContent\"] = 1] = \"WrapContent\";\n})(FlexSizeSpecValue || (FlexSizeSpecValue = {}));\nexport var FontWeight;\n(function (FontWeight) {\n FontWeight[\"Normal\"] = \"normal\";\n FontWeight[\"Bold\"] = \"bold\";\n})(FontWeight || (FontWeight = {}));\nexport var MediaContentMode;\n(function (MediaContentMode) {\n MediaContentMode[\"AspectFit\"] = \"aspectFit\";\n MediaContentMode[\"AspectFill\"] = \"aspectFill\";\n MediaContentMode[\"ScalesToFill\"] = \"scalesToFill\";\n})(MediaContentMode || (MediaContentMode = {}));\n","import { AlignValue, FlexSizeSpecValue, Layout } from '../types/styles';\nexport const defaultProperties = {\n rootLayout: Layout.Column,\n view: {\n size: {\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n },\n },\n box: {\n layout: Layout.Row,\n align: { vertical: AlignValue.Top, horizontal: AlignValue.Left },\n },\n};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { setTemplateItemId } from '../utils/templateItemId';\nimport { defaultProperties } from './defaultValues';\nimport { createParser } from './parser';\nimport { createRenderer } from './renderer';\nexport const createMessageTemplate = (opts) => {\n const Container = opts.Container || React.Fragment;\n const UnknownMessage = opts.UnknownMessage || (() => null);\n const parser = opts.parser || createParser();\n const renderer = opts.renderer || createRenderer();\n const MessageTemplateBase = (props) => {\n var _a;\n const renderItems = props.templateItems;\n const parentLayout = (_a = props.parentLayout) !== null && _a !== void 0 ? _a : defaultProperties.box.layout;\n return (React.createElement(React.Fragment, null, renderItems.map((item, index, siblings) => {\n const { properties } = parser.parse(item, { parentLayout, elemIdx: index, siblings });\n const props = {\n key: index,\n parentLayout,\n parsedProperties: properties,\n siblings,\n };\n switch (item.type) {\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, props),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, props));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, props));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, props));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, props));\n }\n default: {\n // or throw new Error('Cannot parse template item')\n return React.createElement(UnknownMessage, { item: item });\n }\n }\n })));\n };\n return {\n MessageTemplate: ({ parentLayout = defaultProperties.rootLayout, templateItems }) => {\n const items = setTemplateItemId(templateItems);\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, null,\n React.createElement(MessageTemplateBase, { parentLayout: parentLayout, templateItems: items }))));\n },\n MessageTemplateBase,\n };\n};\n","export var ActionType;\n(function (ActionType) {\n ActionType[\"Web\"] = \"web\";\n ActionType[\"Custom\"] = \"custom\";\n ActionType[\"UIKit\"] = \"uikit\";\n})(ActionType || (ActionType = {}));\n","import { AlignValue } from '../types/styles';\nexport const alignInFlex = (align) => {\n switch (align) {\n case AlignValue.Right:\n case AlignValue.Bottom:\n return 'flex-end';\n case AlignValue.Center:\n return 'center';\n case AlignValue.Left:\n case AlignValue.Top:\n default:\n return 'flex-start';\n }\n};\n","import { ComponentType } from '../types/components';\nimport { ActionType } from '../types/properties';\nimport { AlignValue, FlexSizeSpecValue, FontWeight, Layout, MediaContentMode } from '../types/styles';\nconst sample_1 = {\n version: 1,\n body: {\n items: [\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n height: { type: 'fixed', value: 236 },\n viewStyle: {\n padding: {\n left: 4,\n right: 4,\n top: 4,\n bottom: 4,\n },\n },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 200 },\n items: [\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#fa6464' },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n viewStyle: { backgroundColor: '#ffaf5c' },\n items: [\n {\n type: ComponentType.Text,\n text: 'Message',\n align: { horizontal: AlignValue.Center, vertical: AlignValue.Center },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n ],\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 20 },\n viewStyle: { backgroundColor: '#ffe450' },\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#329a1b' },\n },\n ],\n },\n {\n type: ComponentType.Box,\n viewStyle: { padding: { top: 12, bottom: 12, left: 12, right: 12 } },\n layout: Layout.Column,\n items: [\n {\n type: ComponentType.Box,\n align: { horizontal: AlignValue.Left, vertical: AlignValue.Center },\n layout: Layout.Row,\n viewStyle: {\n borderWidth: 1,\n borderColor: '#72723f',\n },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 150 },\n items: [\n {\n type: ComponentType.Text,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n text: 'Sample1 text',\n maxTextLines: 1,\n align: { vertical: AlignValue.Center, horizontal: AlignValue.Left },\n viewStyle: {\n backgroundColor: '#cc4400',\n },\n textStyle: {\n size: 16,\n color: '#f8f8f8',\n weight: FontWeight.Bold,\n },\n },\n {\n type: ComponentType.ImageButton,\n action: { type: ActionType.UIKit, data: 'uikit://delete' },\n width: { type: 'fixed', value: 20 },\n height: { type: 'fixed', value: 20 },\n imageUrl: 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n imageStyle: { contentMode: MediaContentMode.AspectFit },\n },\n ],\n },\n {\n type: ComponentType.Text,\n viewStyle: { padding: { top: 6, bottom: 12, left: 0, right: 0 } },\n text: 'Esse eu esse duis ipsum et dolor eu ut sit amet consectetur cillum velit officia. Ex adipisicing elit quis ea sit. Occaecat in eu aliqua nulla magna id ut excepteur minim.',\n maxTextLines: 2,\n textStyle: { size: 14, color: '#e10000' },\n width: { type: 'fixed', value: 200 },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.TextButton,\n action: { type: ActionType.Web, data: 'https://www.daum.net' },\n text: 'Button 3',\n textStyle: { size: 14, color: '#742ddd', weight: FontWeight.Bold },\n },\n ],\n },\n ],\n },\n};\nconst sample_2 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Image,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.naver.com/' },\n 'height': { 'type': 'fixed', 'value': 136 },\n 'imageUrl': 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 }, backgroundColor: '#cccccc' },\n 'layout': Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'items': [\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'fixed', value: 150 },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 } },\n 'text': 'Button 2',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 } },\n 'text': 'Button 3',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Sample2 text',\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': { 'type': ActionType.UIKit, 'data': 'uikit://delete' },\n 'width': { 'type': 'fixed', 'value': 20 },\n 'height': { 'type': 'fixed', 'value': 20 },\n 'imageUrl': 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFit },\n },\n ],\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'padding': { 'top': 6, 'bottom': 12, 'left': 0, 'right': 0 } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'size': 14 },\n },\n ],\n },\n ],\n },\n};\nconst sample_3 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'backgroundColor': '#ffffff', 'borderWidth': 1, 'borderColor': '#eeeeee', 'radius': 16 },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'height': { 'type': 'fixed', 'value': 200 },\n 'imageUrl': 'https://img.freepik.com/free-vector/cartoon-happy-hours-background_52683-81243.jpg?w=2000&t=st=1666689198~exp=1666689798~hmac=23109d44ba03deee7aee069cbeebfcb48fa27f85e53c1cafc5d5d7345f1a2041',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 15, 'bottom': 15, 'left': 15, 'right': 15 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': \"Don't miss these deals today\",\n 'maxTextLines': 1,\n 'textStyle': { 'size': 20, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 5, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': 'Pay with Maya and get cashback!',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 14, 'color': '#e10000' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://yt3.ggpht.com/ytc/AMLnZu8Kg89ymE7qt5bsS9vMqi9h2aHiN6m9ID-IgxR6-Q=s900-c-k-c0x00ffffff-no-rj',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Meralco',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://1000logos.net/wp-content/uploads/2021/12/Globe-Telecom-logo.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill, tintColor: '#a49a9a' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Globe',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Cignal.svg/640px-Cignal.svg.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Cignal',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e0e0e0',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Learn more',\n 'textStyle': { 'size': 15, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e10000',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Pay now',\n 'textStyle': { 'size': 15, 'color': '#ffffff', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_4 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://static.sendbird.com/sample/profiles/profile_40_512px.png',\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'imageStyle': {\n 'tintColor': '#44ff1188',\n },\n viewStyle: {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'hi',\n 'maxTextLines': 3,\n 'viewStyle': {\n 'padding': {\n 'top': 0,\n 'bottom': 6,\n 'left': 0,\n 'right': 0,\n },\n },\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'text': 'bye',\n 'maxTextLines': 10,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': {\n 'type': ActionType.UIKit,\n 'data': 'sendbirduikit://delete',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'metaData': {\n 'pixelWidth': 60,\n 'pixelHeight': 60,\n },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/sendbird-message-builder/icon-more.png',\n 'imageStyle': {\n 'tintColor': '#ff8d5a',\n },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-ULE240VNV-83fd5776e78e-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Chongbu',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': ' ',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-U02LA25KY8J-d41a3e8c7554-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Amanda',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': 'This is title message',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_5 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'fixed', 'value': '250' },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/notifications-default-image.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': '8',\n 'padding': {\n 'top': '12',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#ff8888',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'height': { 'type': 'fixed', 'value': '300' },\n 'width': { 'type': 'flex', 'value': '0' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': { 'radius': '100' },\n 'width': { 'type': 'fixed', 'value': 40 },\n 'height': { 'type': 'fixed', 'value': 40 },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': {\n 'pixelWidth': '240',\n 'pixelHeight': '240',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': '12',\n 'top': '0',\n 'right': '0',\n 'bottom': '0',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '{SBCOLOR_nppqb}',\n 'size': '16',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '{SBCOLOR_ls5oj}',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'left': '8',\n 'right': '0',\n 'top': '0',\n 'bottom': '0',\n },\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_6 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n height: { type: 'fixed', value: 600 },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': { 'radius': '8', 'padding': { 'top': '12', 'bottom': '12', 'left': '12', 'right': '12' } },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': { 'color': '#E0000000', 'size': '16', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'viewStyle': {},\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'text',\n 'viewStyle': { 'margin': { 'top': '8', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'color': '#E0000000', 'size': '14', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': { 'margin': { 'top': '12', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'text': 'Button 1',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n 'margin': { 'left': '8', 'right': '0', 'top': '0', 'bottom': '0' },\n },\n 'text': 'Button 2',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n ],\n },\n ],\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'image',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'imageUrl': 'https://file-preprod.sendbird.com/d03c08bb3f9041a88c1207b6bbf15ab8.png',\n 'metaData': { 'pixelWidth': '1062', 'pixelHeight': '1070' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'text': 'Button',\n 'textStyle': { 'color': '#742DDD', 'size': '16', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageUrl': 'https://file-preprod.sendbird.com/38fdf5c1056f42b89a44b38155cc4b49.jpg',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': { 'pixelWidth': '1080', 'pixelHeight': '2640' },\n 'action': { 'data': 'www.naver.com' },\n },\n ],\n 'viewStyle': {},\n },\n ],\n },\n};\nconst sample_for_inset_border = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#0e0101ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f9dadaff',\n 'borderColor': '#fb7373ff',\n 'borderWidth': '5',\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#bbd1f5ff',\n 'borderColor': '#0497f9ff',\n 'borderWidth': '10',\n 'padding': {\n 'top': '16',\n 'bottom': '16',\n 'left': '16',\n 'right': '16',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#298e04ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#a6b7ebff',\n 'borderColor': '#0f0ff9ff',\n 'borderWidth': '5',\n 'radius': '6',\n },\n 'text': 'Button',\n 'textStyle': {\n 'size': '14',\n 'color': '#ffffffff',\n 'weight': 'bold',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n 'borderColor': '#ff00b9ff',\n 'borderWidth': '5',\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-component-default-imgbutton.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'metaData': {\n 'pixelWidth': '72',\n 'pixelHeight': '72',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '36',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n {\n 'type': 'image',\n 'viewStyle': {\n 'backgroundColor': '#828282ff',\n 'borderColor': '#fe0000ff',\n 'borderWidth': '10',\n 'radius': '20',\n },\n 'imageUrl': 'https://file-preprod.sendbird.com/99c1ceafd8304076a7123caeea9aeb9a.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'metaData': {\n 'pixelHeight': '225',\n 'pixelWidth': '225',\n },\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_clipped_text__large_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'text',\n 'height': {\n 'type': 'fixed',\n 'value': 120,\n },\n 'width': {\n 'type': 'fixed',\n 'value': 150,\n },\n 'maxTextLines': 2,\n 'viewStyle': {\n 'padding': {\n 'left': 50,\n 'right': 50,\n 'top': 50,\n 'bottom': 50,\n },\n borderWidth: 1,\n borderColor: '#72723f',\n },\n 'text': 'longtext long long longtext',\n },\n ],\n },\n};\nconst sample_for_priority_by_size_spec = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed(short) / Wrap / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '30' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#050505',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#0c0c0c',\n 'borderWidth': '1',\n },\n },\n ],\n 'viewStyle': { 'borderColor': '#0a0a0a' },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed / Wrap(short) / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '2',\n 'right': '2',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap / Fixed / Fill / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short) / Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill Fill Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed Fixed Fixed Fixed Fixed Fixed Fixed ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(short) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(long) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'margin': {\n 'top': '0',\n 'bottom': '100',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0a1ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '8d7ba180-f065-4037-beb1-dd3797729bf2',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#adffa0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_longer = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_super_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 200,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 170,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_wrap_long_content = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'radius': 1,\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst dashboard_preset_list = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-template-preset-default-image.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'metaData': {\n 'pixelWidth': 686,\n 'pixelHeight': 320,\n },\n 'elementId': '0f3d6ba4-715a-44d2-b776-5bdd1aed8bc5',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': 8,\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '010811be-7c65-4aa8-8f8e-62c8398562b0',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': 8,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '00aca18f-3cdf-404d-9e01-9a99f59fb8ae',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n 'padding': {\n 'top': 4,\n 'right': 0,\n 'bottom': 4,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '35a315e9-1f61-4a72-b7c9-ce34a0543343',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ef3c83b2-9149-46c1-a22d-beb878cf937a',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a92ae89d-0726-46b5-b575-2db578b3d954',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ffb50576-f050-4a36-b64f-64864bb04734',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a9d30083-5b00-4ec6-bf2b-0b03c03b1632',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '61fefa7c-0a03-4c92-9b26-2f7620982e46',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'cb2dfa91-3076-406d-b0e9-3bfab75c91a1',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '88bb07e0-8226-4e03-b2a1-d8796a8d558e',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '169ca327-1784-4ae4-bb1c-52963268a1de',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '732ae02b-adff-46d2-b011-f94a2d93b4ba',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '1761210e-beab-4d19-ad12-3c7776ce066d',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3e69331-e4d1-44f9-bc1a-c0c8589d625e',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '065a4733-477d-4a15-a7d0-4559025db3c3',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '3e20f19a-58c6-40ec-8365-0e6ea12a6acb',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '2e8938ca-5574-4a58-a17c-9bff156a7456',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '9c79282d-928c-418e-8111-78a4e19c1353',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'radius': 6,\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3885375-bc4e-4117-8575-ec241a68091d',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'margin': {\n 'left': 8,\n 'right': 0,\n 'top': 0,\n 'bottom': 0,\n },\n 'radius': 6,\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '6f9acedd-e382-4f53-a350-bca2276e9b6b',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '37bae277-3300-4c2e-a308-c320d73c5725',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '62b096a3-0ee7-4467-a8be-9fa1109b257d',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'e2708cb7-b237-4ffb-86fe-3bb11b8400b8',\n },\n ],\n },\n ],\n },\n};\nconst socar_preset_booking_confirm = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'padding': { 'top': 5, 'bottom': 5, 'left': 0, 'right': 10 },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'items': [\n {\n 'type': 'imageButton',\n 'width': { 'type': 'fixed', 'value': 70 },\n 'height': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'imageUrl': 'https://search.pstatic.net/common?type=f&size=298x140&quality=95&direct=true&ttype=input&src=https%3A%2F%2Fimgauto-phinf.pstatic.net%2F20240116_168%2Fauto_17053701702442qv0L_PNG%2F20240116105600_9xS4XPiV.png',\n 'metaData': { 'pixelWidth': '149', 'pixelHeight': '70' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'text',\n 'text': '예약완료',\n 'width': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'right', 'vertical': 'center' },\n 'viewStyle': {\n 'backgroundColor': '#F0FAFF',\n 'radius': 4,\n 'padding': { 'top': 2, 'bottom': 1, 'left': 4, 'right': 4 },\n },\n 'textStyle': { 'color': '#3BC7FF', 'weight': 'bold', 'size': 12 },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '[슈퍼딜] 2024 포드 머스탱 컨버터블',\n 'textStyle': { 'weight': 'bold' },\n 'viewStyle': {\n 'margin': { 'top': 2 },\n },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '출발: 03.24.(금) 15:00\\n도착: 03.27.(월) 11:00',\n 'textStyle': { 'weight': 'normal' },\n 'maxTextLines': '2',\n },\n ],\n },\n {\n 'type': 'textButton',\n 'text': '선택',\n 'width': { 'type': 'fixed', 'value': 60 },\n 'height': { 'type': 'fixed', 'value': 30 },\n 'viewStyle': {\n 'radius': 17,\n 'padding': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 0 },\n },\n 'textStyle': { 'weight': 'bold' },\n 'maxTextLines': '1',\n },\n ],\n },\n ],\n },\n ],\n },\n};\nexport const samples_for_size_spec = [\n horizontal_wrap_wrap,\n horizontal_wrap_wrap_wrap,\n horizontal_fill_wrap,\n horizontal_fill_fill_wrap,\n horizontal_fill_wrap_fill_wrap,\n horizontal_fill_wrap_fill_wrap_long,\n horizontal_fill_wrap_fill_wrap_longer,\n horizontal_fill_wrap_fill_wrap_super_long,\n horizontal_fill_wrap_wrap_long_content,\n horizontal_fill_wrap_remain_padding,\n horizontal_fill_wrap_no_padding,\n vertical_fill_wrap_wrap_remain_padding,\n vertical_fill_wrap_wrap_no_padding,\n];\nexport const samples = [\n sample_1,\n sample_2,\n sample_3,\n sample_4,\n sample_5,\n sample_6,\n sample_for_inset_border,\n sample_clipped_text__large_padding,\n sample_for_priority_by_size_spec,\n dashboard_preset_list,\n socar_preset_booking_confirm,\n];\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect, useMemo, useRef, useState } from 'react';\nexport const CanvasReactMessageTemplateImage = (props) => {\n const { imageSize, canvasRef, canvasProps } = useCanvasMessageTemplateImage(props);\n return (React.createElement(\"canvas\", Object.assign({}, canvasProps, { ref: canvasRef, width: imageSize === null || imageSize === void 0 ? void 0 : imageSize.width, height: imageSize === null || imageSize === void 0 ? void 0 : imageSize.height, onError: props.onError })));\n};\nconst useCanvasMessageTemplateImage = (_a) => {\n var { metaData, tintColor } = _a, props = __rest(_a, [\"metaData\", \"tintColor\"]);\n const canvasRef = useRef(null);\n const [fallbackImageSize, setFallbackImageSize] = useState();\n const imageSize = useMemo(() => {\n if ((metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight) && (metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth)) {\n return { width: metaData.pixelWidth, height: metaData.pixelHeight };\n }\n return fallbackImageSize;\n }, [fallbackImageSize, metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight, metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth]);\n useEffect(() => {\n if (imageSize == null) {\n console.log('Canvas_ReactMessageTemplateImage: no metaData, render fit to container');\n if (canvasRef.current) {\n canvasRef.current.style.width = '100%';\n canvasRef.current.style.height = '100%';\n const containerSize = canvasRef.current.getBoundingClientRect();\n setFallbackImageSize(containerSize);\n }\n }\n }, [imageSize]);\n useEffect(() => {\n if (props.src) {\n const img = new Image();\n const onImageLoad = () => {\n if (canvasRef.current && tintColor && imageSize) {\n const ctx = canvasRef.current.getContext('2d');\n if (ctx) {\n const { width: imageWidth, height: imageHeight } = imageSize;\n // reset context before draw, consider `.save()` and `.restore()` api\n ctx.clearRect(0, 0, imageWidth, imageHeight);\n ctx.beginPath();\n ctx.globalCompositeOperation = 'source-over';\n ctx.fillStyle = '#000';\n // draw\n ctx.drawImage(img, 0, 0, imageWidth, imageHeight);\n ctx.globalCompositeOperation = 'source-atop';\n ctx.fillStyle = tintColor;\n ctx.fillRect(0, 0, imageWidth, imageHeight);\n }\n }\n };\n const onImageError = (event) => {\n var _a;\n // @ts-ignore\n (_a = props.onError) === null || _a === void 0 ? void 0 : _a.call(props, event);\n };\n img.addEventListener('load', onImageLoad);\n img.addEventListener('error', onImageError);\n img.src = props.src;\n return () => {\n img.removeEventListener('load', onImageLoad);\n img.removeEventListener('error', onImageError);\n };\n }\n return;\n }, [props.src, imageSize, tintColor]);\n return {\n canvasRef,\n canvasProps: props,\n imageSize,\n };\n};\n","import React from 'react';\nexport const ImgReactMessageTemplateImage = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const PlaceholderReactMessageTemplateImage = (props) => {\n return React.createElement(\"div\", { style: Object.assign(Object.assign({}, props.style), { backgroundColor: 'transparent' }) });\n};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useCallback, useEffect, useState } from 'react';\nimport { CanvasReactMessageTemplateImage } from './index.canvas';\nimport { ImgReactMessageTemplateImage } from './index.img';\nimport { PlaceholderReactMessageTemplateImage } from './index.placeholder';\nconst ReactMessageTemplateImage = (_a) => {\n var { tintColor, metaData } = _a, props = __rest(_a, [\"tintColor\", \"metaData\"]);\n const { hasError, onError } = useImageLoadError(props.src);\n if (props.onError)\n console.warn('`onError` is intercepted and not executed in the ReactMessageTemplateImage.');\n if (hasError) {\n return React.createElement(PlaceholderReactMessageTemplateImage, Object.assign({}, props));\n }\n else if (tintColor) {\n return React.createElement(CanvasReactMessageTemplateImage, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(ImgReactMessageTemplateImage, Object.assign({}, props, { onError: onError }));\n }\n};\nconst useImageLoadError = (source) => {\n const [hasError, setHasError] = useState(false);\n useEffect(() => setHasError(false), [source]);\n return {\n hasError,\n onError: useCallback(() => setHasError(true), []),\n };\n};\nexport default ReactMessageTemplateImage;\n","// create a context provider for MessageComponent\n// - this is a wrapper for MessageComponent\nimport React from 'react';\nconst MessageContext = React.createContext(null);\nconst MessageProvider = (props) => {\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction, children } = props;\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => React.useContext(MessageContext);\nexport { MessageProvider, useMessageContext };\n","import { ComponentType, FlexSizeSpecValue } from '@sendbird/uikit-message-template';\nexport function isWrappedText(view) {\n var _a;\n return view.type === ComponentType.Text && ((_a = view.width) === null || _a === void 0 ? void 0 : _a.value) == FlexSizeSpecValue.WrapContent;\n}\n// Compares the size spec to the option and returns whether they are equal or not.\nexport const isSizeCompatibleWithOption = ({ size, option, }) => {\n if (option === 'wrap') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.WrapContent;\n }\n if (option === 'fill') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.FillParent;\n }\n return size.type === 'fixed';\n};\n","import { useCallback, useEffect, useRef } from 'react';\n/**\n * Preserves a reference to the given callback function as an argument while the component is mounted.\n * Wraps the given callback in React's Ref to preserve the reference.\n * @param callback want to be preserved\n */\nexport function usePreservedCallback(callback) {\n const callbackRef = useRef(callback);\n useEffect(() => {\n callbackRef.current = callback;\n }, [callback]);\n return useCallback((...args) => {\n return callbackRef.current(...args);\n }, [callbackRef]);\n}\n","import { useCallback, useRef } from 'react';\nimport { usePreservedCallback } from './usePreservedCallback';\n/**\n * This hook can be used when you want to safely effect the value stored in useRef\n * Got this idea from https://github.com/facebook/react/issues/15176\n * @param callback\n * @param deps\n * @returns effect callback\n */\nexport function useRefEffect(callback, deps) {\n const preservedCallback = usePreservedCallback(callback);\n const disposeRef = useRef(noop);\n const effect = useCallback((element) => {\n disposeRef.current();\n disposeRef.current = noop;\n if (element != null) {\n const cleanup = callback(element);\n if (typeof cleanup === 'function') {\n disposeRef.current = cleanup;\n }\n }\n }, [preservedCallback, ...deps]);\n return effect;\n}\nfunction noop() { }\n","import { usePreservedCallback } from './usePreservedCallback';\nimport { useRefEffect } from './useRefEffect';\n/**\n * Subscribes to ResizeObserver on the component exposing the Ref,\n * to detect changes in the size of DOM elements.\n * The ResizeObserver API is required.\n * If you are targeting browsers that do not support that API, probably need to add appropriate polyfill too.\n * @param onResize\n * @returns ref\n */\nexport function useResizeObserver(onResize) {\n const resizeCallback = usePreservedCallback(onResize);\n const ref = useRefEffect((elem) => {\n const observer = new ResizeObserver((entries) => {\n if (entries[0] != null) {\n resizeCallback(entries[0]);\n }\n });\n observer.observe(elem);\n return () => {\n observer.unobserve(elem);\n };\n }, [resizeCallback]);\n return ref;\n}\n","import { useState } from 'react';\nimport { useResizeObserver } from './useResizeObserver';\n/**\n * @returns an element's width / height observed by IntersectionObserver,\n * and ref to detect its resize event\n */\nexport function useElementSize() {\n const [width, setWidth] = useState(-1);\n const [height, setHeight] = useState(-1);\n const [contentWidth, setContentWidth] = useState(-1);\n const [contentHeight, setContentHeight] = useState(-1);\n const [paddingWidth, setPaddingWidth] = useState(-1);\n const [paddingHeight, setPaddingHeight] = useState(-1);\n const ref = useResizeObserver((entry) => {\n // contentRect: content size only\n const { width: contentWidth, height: contentHeight } = entry.contentRect;\n // target: content + padding + border size\n const target = entry.target;\n const { width, height } = target.getBoundingClientRect();\n setWidth(width);\n setHeight(height);\n setContentWidth(contentWidth);\n setContentHeight(contentHeight);\n setPaddingWidth(width - contentWidth);\n setPaddingHeight(height - contentHeight);\n });\n return { ref, width, height, contentWidth, contentHeight, paddingWidth, paddingHeight };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { useEffect, useMemo } from 'react';\nimport { Layout, defaultProperties, useSizeContext } from '@sendbird/uikit-message-template';\nimport { isSizeCompatibleWithOption } from '../util';\nimport { useElementSize } from './useElementSize';\nfunction isViewCompatibleWithSizeOption({ width = defaultProperties.view.size.width, height = defaultProperties.view.size.height, parentLayout = defaultProperties.box.layout, option, }) {\n if (parentLayout === Layout.Row) {\n return isSizeCompatibleWithOption({\n size: width,\n option,\n });\n }\n return isSizeCompatibleWithOption({\n size: height,\n option,\n });\n}\nexport function useRecalculateWidth(params) {\n const { style, props } = params;\n const _a = useElementSize(), { ref: elemRef } = _a, size = __rest(_a, [\"ref\"]);\n const { updateSize, sizes } = useSizeContext();\n const { id, siblings, parentLayout } = props;\n const { width, height, paddingWidth, paddingHeight, contentWidth, contentHeight } = size;\n useEffect(() => {\n updateSize({\n id: props.id,\n width,\n height,\n paddingWidth,\n paddingHeight,\n contentWidth,\n contentHeight,\n });\n }, [props.id, width, height, paddingWidth, paddingHeight, contentWidth, contentHeight, updateSize]);\n const currentStyle = useMemo(() => {\n const sumViewSize = (acc = 0, view) => {\n var _a, _b, _c, _d;\n if (parentLayout === Layout.Row) {\n return acc + ((_b = (_a = sizes[view.id]) === null || _a === void 0 ? void 0 : _a.contentWidth) !== null && _b !== void 0 ? _b : 0);\n }\n return acc + ((_d = (_c = sizes[view.id]) === null || _c === void 0 ? void 0 : _c.contentHeight) !== null && _d !== void 0 ? _d : 0);\n };\n const hasFillOption = isViewCompatibleWithSizeOption({\n width: props.width,\n height: props.height,\n parentLayout,\n option: 'fill',\n });\n if (hasFillOption) {\n const wrapSiblingsSize = siblings\n .filter(({ width, height }) => !isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n }))\n .reduce(sumViewSize, 0);\n const fillSiblingCount = siblings.filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n })).length;\n const maxSizeOption = (() => {\n if (parentLayout === Layout.Row) {\n return {\n maxWidth: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n }\n return {\n maxHeight: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n })();\n return Object.assign(Object.assign(Object.assign({}, style), maxSizeOption), (width == 0 && { height: 0 }));\n }\n else {\n const currentElemIdx = siblings.findIndex((sibling) => sibling.id === id);\n const forwardSiblingsSize = siblings\n .slice(0, currentElemIdx)\n .filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'wrap',\n }))\n .reduce(sumViewSize, 0);\n return Object.assign(Object.assign(Object.assign({}, style), (width === 0 && { height: 0 })), (parentLayout === Layout.Row\n ? {\n maxWidth: `calc(100% - ${forwardSiblingsSize}px)`,\n }\n : {\n maxHeight: `calc(100% - ${forwardSiblingsSize}px)`,\n }));\n }\n }, [props.width, props.height, parentLayout, sizes, siblings, style, width, id]);\n return { recalculatedStyle: currentStyle, elemRef };\n}\n","import { ComponentType, FlexSizeSpecValue, Layout, MediaContentMode, alignInFlex, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { isWrappedText } from '../util';\nexport function getDefaultStyles(overrides) {\n return Object.assign({ display: 'flex', overflow: 'hidden', boxSizing: 'border-box' }, overrides);\n}\nexport function setViewProps(styles, props, options) {\n setViewSize(styles, props, options);\n setViewStyle(styles, props);\n}\nfunction setBorderStyle(styles, borderWidth, borderColor, radius) {\n if (borderWidth) {\n styles['--border-width'] = `${borderWidth}px`;\n styles['--border-color'] = borderColor || 'transparent';\n }\n if (radius) {\n styles['borderRadius'] = Number(radius);\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d;\n const { viewStyle } = props;\n if ((_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top)\n styles['marginTop'] = Number(viewStyle.margin.top);\n if ((_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.bottom)\n styles['marginBottom'] = Number(viewStyle.margin.bottom);\n if ((_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.left)\n styles['marginLeft'] = Number(viewStyle.margin.left);\n if ((_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.right)\n styles['marginRight'] = Number(viewStyle.margin.right);\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundColor)\n styles['backgroundColor'] = viewStyle.backgroundColor;\n // use JSON.stringify to escape special characters in image URL\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundImageUrl)\n styles['backgroundImage'] = `url(${JSON.stringify(viewStyle.backgroundImageUrl)})`;\n setBorderStyle(styles, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderWidth, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderColor, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.radius);\n}\nfunction getViewSizeStyle(width, height, parentLayout) {\n const style = {};\n if (width.type === 'flex' && width.value == FlexSizeSpecValue.FillParent) {\n style['width'] = '100%';\n if (parentLayout === Layout.Row) {\n style['flex'] = 1;\n }\n }\n else if (width.type === 'fixed' && width.value >= 0) {\n style['width'] = Number(width.value);\n }\n if (height.type === 'flex' && height.value == FlexSizeSpecValue.FillParent) {\n style['height'] = '100%';\n if (parentLayout === Layout.Column) {\n style['flex'] = 1;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = Number(height.value);\n }\n return style;\n}\nexport function setViewSize(styles, props, options) {\n var _a, _b;\n const { width: defaultWidth, height: defaultHeight } = defaultProperties.view.size;\n const { parentLayout } = options;\n const sizeStyle = getViewSizeStyle((_a = props.width) !== null && _a !== void 0 ? _a : defaultWidth, (_b = props.height) !== null && _b !== void 0 ? _b : defaultHeight, parentLayout);\n Object.assign(styles, sizeStyle);\n}\nexport function setAlign(styles, layout = defaultProperties.box.layout, align = defaultProperties.box.align) {\n if (layout === Layout.Row) {\n styles['flexDirection'] = 'row';\n styles['alignItems'] = alignInFlex(align.vertical);\n styles['justifyContent'] = alignInFlex(align.horizontal);\n }\n if (layout === Layout.Column) {\n styles['flexDirection'] = 'column';\n styles['alignItems'] = alignInFlex(align.horizontal);\n styles['justifyContent'] = alignInFlex(align.vertical);\n }\n}\nexport function setTextAlign(styles, align = defaultProperties.box.align.horizontal) {\n styles.textAlign = align;\n}\nexport function setImageStyle(styles, imageStyle) {\n const { contentMode = MediaContentMode.AspectFit } = imageStyle || {};\n if (contentMode) {\n switch (contentMode) {\n case MediaContentMode.AspectFill:\n styles['objectFit'] = 'cover';\n break;\n case MediaContentMode.AspectFit:\n styles['objectFit'] = 'contain';\n break;\n case MediaContentMode.ScalesToFill:\n styles['objectFit'] = 'fill';\n break;\n }\n }\n}\n// uses image meta-data to render images that doesn't break the UI\n// https://sendbird.atlassian.net/wiki/spaces/UK/pages/2008220608/Message+template+-+Image+policy\nexport function setImageAspectRatio(styles, props) {\n var _a, _b, _c, _d;\n const imageMetaData = props === null || props === void 0 ? void 0 : props.metaData;\n if (!(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelHeight) || !(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelWidth)) {\n return;\n }\n if (((_a = props === null || props === void 0 ? void 0 : props.width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed' || ((_b = props === null || props === void 0 ? void 0 : props.height) === null || _b === void 0 ? void 0 : _b.type) === 'fixed') {\n return;\n }\n styles['aspectRatio'] = `${(_c = props === null || props === void 0 ? void 0 : props.metaData) === null || _c === void 0 ? void 0 : _c.pixelWidth} / ${(_d = props === null || props === void 0 ? void 0 : props.metaData) === null || _d === void 0 ? void 0 : _d.pixelHeight}`;\n}\nexport function webkitLineClampStyles(numberOfLines) {\n return {\n WebkitLineClamp: numberOfLines,\n WebkitBoxOrient: 'vertical',\n display: '-webkit-box',\n overflow: 'hidden',\n overflowWrap: 'anywhere',\n flex: 1,\n };\n}\nexport function setTextStyle(styles, props, options) {\n const { textStyle, width } = props;\n // TODO: Change default as design\n const { size, color, weight = 'normal' } = textStyle || {};\n if (size)\n styles['fontSize'] = Number(size);\n if (color)\n styles['color'] = color;\n if (weight)\n styles['fontWeight'] = weight;\n if ((width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['maxWidth'] = '100%';\n }\n if (props.type === ComponentType.Text) {\n const { siblings, elemIdx } = options;\n // To push out any subsequent components from the container,\n // if a prior one is long enough to occupy an entire line\n // @link https://sendbird.atlassian.net/browse/NOTI-709\n if (siblings != null && siblings.length >= 2 && siblings.every(isWrappedText)) {\n styles.flexShrink = siblings.length - 1 === elemIdx ? 1 : 0;\n }\n }\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport { FlexSizeSpecValue, Layout, createMessageTemplate, createParser, createRenderer, } from '@sendbird/uikit-message-template';\nimport ReactMessageTemplateImage from '../components/ReactMessageTemplateImage';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport '../index.css';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, webkitLineClampStyles, } from '../styles';\nconst hasValidUrlProtocol = (url = '') => ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n/**\n * @param url - url to be checked\n * @returns url with http:// protocol if it doesn't have any protocol\n * @example\n * returnUrl('www.sendbird.com') // returns 'http://www.sendbird.com'\n * returnUrl('https://www.sendbird.com') // returns 'https://www.sendbird.com'\n * returnUrl('ftp://www.sendbird.com') // returns 'ftp://www.sendbird.com'\n * returnUrl('sendbird.com') // returns 'https://sendbird.com'\n **/\nconst returnUrl = (url = '') => {\n if (hasValidUrlProtocol(url)) {\n return url;\n }\n return `https://${url}`;\n};\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nconst ActionHandler = ({ className = '', style, children, props }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const onClick = (e) => {\n var _a, _b, _c, _d, _e;\n if (((_a = props === null || props === void 0 ? void 0 : props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction === null || handleWebAction === void 0 ? void 0 : handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(returnUrl((_b = props === null || props === void 0 ? void 0 : props.action) === null || _b === void 0 ? void 0 : _b.data), '_blank', 'noopener noreferrer')) === null || _c === void 0 ? void 0 : _c.focus();\n }\n }\n if (((_d = props === null || props === void 0 ? void 0 : props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n handleCustomAction === null || handleCustomAction === void 0 ? void 0 : handleCustomAction(e, props.action, message);\n }\n if (((_e = props === null || props === void 0 ? void 0 : props.action) === null || _e === void 0 ? void 0 : _e.type) === 'uikit') {\n handlePredefinedAction === null || handlePredefinedAction === void 0 ? void 0 : handlePredefinedAction(e, props.action, message);\n }\n };\n const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? ' sb-message-template__border' : '';\n if (className === 'sb-message-template__text-button') {\n return (React.createElement(\"button\", { className: `${className}${borderClass}`, \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, style), { paddingTop: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top, paddingRight: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.right, paddingBottom: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.bottom, paddingLeft: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.left }), onClick: onClick }, children));\n }\n const { display, flexDirection, justifyContent, alignItems, objectFit } = recalculatedStyle, wrapperStyles = __rest(recalculatedStyle, [\"display\", \"flexDirection\", \"justifyContent\", \"alignItems\", \"objectFit\"]);\n return (React.createElement(\"div\", { ref: elemRef, className: `${className}${borderClass} ${(props === null || props === void 0 ? void 0 : props.action) ? 'sb-message-template__action' : ''}`, \"data-sb-template-id\": props.elementId, style: wrapperStyles, onClick: onClick },\n React.createElement(\"div\", { style: {\n display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit,\n width: '100%',\n height: '100%',\n paddingTop: (_l = (_k = props.viewStyle) === null || _k === void 0 ? void 0 : _k.padding) === null || _l === void 0 ? void 0 : _l.top,\n paddingRight: (_o = (_m = props.viewStyle) === null || _m === void 0 ? void 0 : _m.padding) === null || _o === void 0 ? void 0 : _o.right,\n paddingBottom: (_q = (_p = props.viewStyle) === null || _p === void 0 ? void 0 : _p.padding) === null || _q === void 0 ? void 0 : _q.bottom,\n paddingLeft: (_s = (_r = props.viewStyle) === null || _r === void 0 ? void 0 : _r.padding) === null || _s === void 0 ? void 0 : _s.left,\n } }, children)));\n};\n/**\n * Text that is fixed or fill parent should be wrapped in a div with max-width: 100% and max-height: 100%\n * This is to prevent text from overflowing the padding of the container\n */\nfunction isFixedOrFill(view) {\n var _a, _b, _c, _d;\n const heightType = (_a = view === null || view === void 0 ? void 0 : view.height) === null || _a === void 0 ? void 0 : _a.type;\n const widthType = (_b = view === null || view === void 0 ? void 0 : view.width) === null || _b === void 0 ? void 0 : _b.type;\n const isFixedDiamension = heightType === 'fixed' || widthType === 'fixed';\n const isFill = (heightType === 'flex' && ((_c = view === null || view === void 0 ? void 0 : view.height) === null || _c === void 0 ? void 0 : _c.value) === FlexSizeSpecValue.FillParent) ||\n (widthType === 'flex' && ((_d = view === null || view === void 0 ? void 0 : view.width) === null || _d === void 0 ? void 0 : _d.value) === FlexSizeSpecValue.FillParent);\n return isFixedDiamension || isFill;\n}\nfunction renderText(view) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const isMultiLine = maxTextLines != null && maxTextLines > 0;\n if (isMultiLine || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((isMultiLine || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, text) : text));\n }\n return text;\n}\nexport const renderer = createRenderer({\n views: {\n box(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__box\", elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n image(props) {\n var _a;\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n textButton(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text-button\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n imageButton(props) {\n var _a;\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container sb-message-template__image-button\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image-button\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n },\n});\nexport const parser = createParser({\n mapBoxProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setAlign(styles, props.layout, props.align);\n return styles;\n },\n mapTextProps(props, options) {\n var _a;\n const styles = getDefaultStyles({ whiteSpace: 'pre-line' });\n // Better not set flex 1 to text\n setViewProps(styles, props, options);\n setTextStyle(styles, props, options);\n setAlign(styles, Layout.Row, props.align);\n setTextAlign(styles, (_a = props.align) === null || _a === void 0 ? void 0 : _a.horizontal);\n return styles;\n },\n mapImageProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapTextButtonProps(props, options) {\n const styles = getDefaultStyles({ whiteSpace: 'pre-line', alignItems: 'center', justifyContent: 'center' });\n setViewProps(styles, props, options);\n setTextStyle(styles, Object.assign(Object.assign({}, props), { textStyle: Object.assign({ weight: 500 }, props.textStyle) }), options);\n return styles;\n },\n mapImageButtonProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n});\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children }) => {\n return (React.createElement(\"div\", { className: \"sb-message-template__parent\", style: {\n display: 'flex',\n flexDirection: 'column',\n maxWidth: 400,\n backgroundColor: '#cecece',\n marginBottom: 24,\n borderRadius: '8px',\n } }, children));\n },\n});\n"],"names":["__rest","this","createContext","useState","useCallback","useContext","useRef","useMemo","useEffect"],"mappings":"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","x_google_ignoreList":[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]}
|
|
1
|
+
{"version":3,"file":"bundle-CEiDcA9X.js","sources":["../../../node_modules/@sendbird/uikit-message-template/dist/types/components.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/parser.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/renderer.js","../../../node_modules/@sendbird/uikit-message-template/dist/context/SizeProvider.js","../../../node_modules/@sendbird/uikit-message-template/dist/utils/templateItemId.js","../../../node_modules/@sendbird/uikit-message-template/dist/types/styles.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/defaultValues.js","../../../node_modules/@sendbird/uikit-message-template/dist/core/messageTemplate.js","../../../node_modules/@sendbird/uikit-message-template/dist/types/properties.js","../../../node_modules/@sendbird/uikit-message-template/dist/utils/index.js","../../../node_modules/@sendbird/uikit-message-template/dist/test/data.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.canvas.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.img.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.placeholder.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/components/ReactMessageTemplateImage/index.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/context/MessageContextProvider.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/util/index.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/usePreservedCallback.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRefEffect.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useResizeObserver.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useElementSize.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/hook/useRecalculationSize.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/styles/index.js","../../../node_modules/@sendbird/react-uikit-message-template-view/dist/ui/index.js"],"sourcesContent":["export var ComponentType;\n(function (ComponentType) {\n ComponentType[\"Box\"] = \"box\";\n ComponentType[\"Text\"] = \"text\";\n ComponentType[\"Image\"] = \"image\";\n ComponentType[\"TextButton\"] = \"textButton\";\n ComponentType[\"ImageButton\"] = \"imageButton\";\n})(ComponentType || (ComponentType = {}));\n","// -------- Set property mapper\nimport { ComponentType } from '../types/components';\nconst MAPPER = () => undefined;\nexport const createParser = (params) => {\n const defaultMapper = (params === null || params === void 0 ? void 0 : params.defaultMapper) || MAPPER;\n const mapper = {\n defaultMapper,\n mapBoxProps: (params === null || params === void 0 ? void 0 : params.mapBoxProps) || defaultMapper,\n mapTextProps: (params === null || params === void 0 ? void 0 : params.mapTextProps) || defaultMapper,\n mapImageProps: (params === null || params === void 0 ? void 0 : params.mapImageProps) || defaultMapper,\n mapTextButtonProps: (params === null || params === void 0 ? void 0 : params.mapTextButtonProps) || defaultMapper,\n mapImageButtonProps: (params === null || params === void 0 ? void 0 : params.mapImageButtonProps) || defaultMapper,\n };\n return {\n parse(item, options) {\n switch (item.type) {\n case ComponentType.Box: {\n return { properties: mapper.mapBoxProps(item, options) };\n }\n case ComponentType.Text: {\n return { properties: mapper.mapTextProps(item, options) };\n }\n case ComponentType.Image: {\n return { properties: mapper.mapImageProps(item, options) };\n }\n case ComponentType.TextButton: {\n return { properties: mapper.mapTextButtonProps(item, options) };\n }\n case ComponentType.ImageButton: {\n return { properties: mapper.mapImageButtonProps(item, options) };\n }\n default:\n return { properties: undefined };\n }\n },\n };\n};\nexport const DEFAULT_PARSER_VALUES = {\n light: { _: undefined },\n dark: { _: undefined },\n};\n","import React from 'react';\nconst FRAGMENT = ({ children }) => React.createElement(React.Fragment, null, children);\nexport function createRenderer(params) {\n var _a, _b, _c, _d, _e;\n return {\n box: ((_a = params === null || params === void 0 ? void 0 : params.views) === null || _a === void 0 ? void 0 : _a.box) || FRAGMENT,\n text: ((_b = params === null || params === void 0 ? void 0 : params.views) === null || _b === void 0 ? void 0 : _b.text) || FRAGMENT,\n image: ((_c = params === null || params === void 0 ? void 0 : params.views) === null || _c === void 0 ? void 0 : _c.image) || FRAGMENT,\n imageButton: ((_d = params === null || params === void 0 ? void 0 : params.views) === null || _d === void 0 ? void 0 : _d.imageButton) || FRAGMENT,\n textButton: ((_e = params === null || params === void 0 ? void 0 : params.views) === null || _e === void 0 ? void 0 : _e.textButton) || FRAGMENT,\n };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { createContext, useCallback, useContext, useState } from 'react';\nconst SizeContext = createContext({\n sizes: {},\n updateSize: () => { },\n});\nconst SizeContextProvider = ({ children }) => {\n const [sizes, setSizes] = useState({});\n const updateSize = useCallback((_a) => {\n var { id } = _a, rest = __rest(_a, [\"id\"]);\n if (id) {\n setSizes((prevSizes) => (Object.assign(Object.assign({}, prevSizes), { [id]: rest })));\n }\n }, []);\n return React.createElement(SizeContext.Provider, { value: { sizes, updateSize } }, children);\n};\nconst useSizeContext = () => useContext(SizeContext);\nexport { SizeContextProvider, useSizeContext };\n","const memoize = (fn) => {\n const cache = new Map();\n const cached = function (val) {\n return cache.has(val) ? cache.get(val) : cache.set(val, fn.call(this, val)) && cache.get(val);\n };\n cached.cache = cache;\n return cached;\n};\n/**\n * Generate each item's id by each item's array depth\n */\nexport const setTemplateItemId = memoize((data) => {\n const addIdRecursively = (item, id) => {\n if ('items' in item && (item === null || item === void 0 ? void 0 : item.items) != null) {\n item.items.forEach((subItem, subIdx) => {\n const subId = `${id}-${subIdx}`;\n subItem.id = subId;\n addIdRecursively(subItem, subId);\n });\n }\n };\n data.forEach((item, idx) => {\n const id = `${idx}`;\n item.id = id;\n addIdRecursively(item, id);\n });\n return data;\n});\n","export var Layout;\n(function (Layout) {\n Layout[\"Row\"] = \"row\";\n Layout[\"Column\"] = \"column\";\n})(Layout || (Layout = {}));\nexport var AlignValue;\n(function (AlignValue) {\n AlignValue[\"Center\"] = \"center\";\n AlignValue[\"Left\"] = \"left\";\n AlignValue[\"Right\"] = \"right\";\n AlignValue[\"Top\"] = \"top\";\n AlignValue[\"Bottom\"] = \"bottom\";\n})(AlignValue || (AlignValue = {}));\n/**\n * @description\n * Caution: Numbers are passed as string types in the message template builder.\n * Use `==` comparison instead of `===` comparison when using a regular enum instead of a string enum.\n */\nexport var FlexSizeSpecValue;\n(function (FlexSizeSpecValue) {\n FlexSizeSpecValue[FlexSizeSpecValue[\"FillParent\"] = 0] = \"FillParent\";\n FlexSizeSpecValue[FlexSizeSpecValue[\"WrapContent\"] = 1] = \"WrapContent\";\n})(FlexSizeSpecValue || (FlexSizeSpecValue = {}));\nexport var FontWeight;\n(function (FontWeight) {\n FontWeight[\"Normal\"] = \"normal\";\n FontWeight[\"Bold\"] = \"bold\";\n})(FontWeight || (FontWeight = {}));\nexport var MediaContentMode;\n(function (MediaContentMode) {\n MediaContentMode[\"AspectFit\"] = \"aspectFit\";\n MediaContentMode[\"AspectFill\"] = \"aspectFill\";\n MediaContentMode[\"ScalesToFill\"] = \"scalesToFill\";\n})(MediaContentMode || (MediaContentMode = {}));\n","import { AlignValue, FlexSizeSpecValue, Layout } from '../types/styles';\nexport const defaultProperties = {\n rootLayout: Layout.Column,\n view: {\n size: {\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n },\n },\n box: {\n layout: Layout.Row,\n align: { vertical: AlignValue.Top, horizontal: AlignValue.Left },\n },\n};\n","import React from 'react';\nimport { SizeContextProvider } from '../context/SizeProvider';\nimport { ComponentType } from '../types/components';\nimport { setTemplateItemId } from '../utils/templateItemId';\nimport { defaultProperties } from './defaultValues';\nimport { createParser } from './parser';\nimport { createRenderer } from './renderer';\nexport const createMessageTemplate = (opts) => {\n const Container = opts.Container || React.Fragment;\n const UnknownMessage = opts.UnknownMessage || (() => null);\n const parser = opts.parser || createParser();\n const renderer = opts.renderer || createRenderer();\n const MessageTemplateBase = (props) => {\n var _a;\n const renderItems = props.templateItems;\n const parentLayout = (_a = props.parentLayout) !== null && _a !== void 0 ? _a : defaultProperties.box.layout;\n return (React.createElement(React.Fragment, null, renderItems.map((item, index, siblings) => {\n const { properties } = parser.parse(item, { parentLayout, elemIdx: index, siblings });\n const props = {\n key: index,\n parentLayout,\n parsedProperties: properties,\n siblings,\n };\n switch (item.type) {\n case ComponentType.Box: {\n return (React.createElement(renderer.box, Object.assign({}, item, props),\n React.createElement(MessageTemplateBase, { templateItems: item.items || [], parentLayout: item.layout })));\n }\n case ComponentType.Text: {\n return React.createElement(renderer.text, Object.assign({}, item, props));\n }\n case ComponentType.Image: {\n return React.createElement(renderer.image, Object.assign({}, item, props));\n }\n case ComponentType.TextButton: {\n return React.createElement(renderer.textButton, Object.assign({}, item, props));\n }\n case ComponentType.ImageButton: {\n return React.createElement(renderer.imageButton, Object.assign({}, item, props));\n }\n default: {\n // or throw new Error('Cannot parse template item')\n return React.createElement(UnknownMessage, { item: item });\n }\n }\n })));\n };\n return {\n MessageTemplate: ({ parentLayout = defaultProperties.rootLayout, templateItems }) => {\n const items = setTemplateItemId(templateItems);\n return (React.createElement(SizeContextProvider, null,\n React.createElement(Container, null,\n React.createElement(MessageTemplateBase, { parentLayout: parentLayout, templateItems: items }))));\n },\n MessageTemplateBase,\n };\n};\n","export var ActionType;\n(function (ActionType) {\n ActionType[\"Web\"] = \"web\";\n ActionType[\"Custom\"] = \"custom\";\n ActionType[\"UIKit\"] = \"uikit\";\n})(ActionType || (ActionType = {}));\n","import { AlignValue } from '../types/styles';\nexport const alignInFlex = (align) => {\n switch (align) {\n case AlignValue.Right:\n case AlignValue.Bottom:\n return 'flex-end';\n case AlignValue.Center:\n return 'center';\n case AlignValue.Left:\n case AlignValue.Top:\n default:\n return 'flex-start';\n }\n};\n","import { ComponentType } from '../types/components';\nimport { ActionType } from '../types/properties';\nimport { AlignValue, FlexSizeSpecValue, FontWeight, Layout, MediaContentMode } from '../types/styles';\nconst sample_1 = {\n version: 1,\n body: {\n items: [\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n height: { type: 'fixed', value: 236 },\n viewStyle: {\n padding: {\n left: 4,\n right: 4,\n top: 4,\n bottom: 4,\n },\n },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 200 },\n items: [\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#fa6464' },\n },\n {\n type: ComponentType.Box,\n layout: Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.WrapContent },\n viewStyle: { backgroundColor: '#ffaf5c' },\n items: [\n {\n type: ComponentType.Text,\n text: 'Message',\n align: { horizontal: AlignValue.Center, vertical: AlignValue.Center },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.Image,\n action: { type: ActionType.Web, data: 'https://docs.sendbird.com' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n imageUrl: 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n imageStyle: { contentMode: MediaContentMode.AspectFill },\n },\n ],\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 20 },\n viewStyle: { backgroundColor: '#ffe450' },\n },\n {\n type: ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n viewStyle: { backgroundColor: '#329a1b' },\n },\n ],\n },\n {\n type: ComponentType.Box,\n viewStyle: { padding: { top: 12, bottom: 12, left: 12, right: 12 } },\n layout: Layout.Column,\n items: [\n {\n type: ComponentType.Box,\n align: { horizontal: AlignValue.Left, vertical: AlignValue.Center },\n layout: Layout.Row,\n viewStyle: {\n borderWidth: 1,\n borderColor: '#72723f',\n },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 150 },\n items: [\n {\n type: ComponentType.Text,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n height: { type: 'fixed', value: 50 },\n text: 'Sample1 text',\n maxTextLines: 1,\n align: { vertical: AlignValue.Center, horizontal: AlignValue.Left },\n viewStyle: {\n backgroundColor: '#cc4400',\n },\n textStyle: {\n size: 16,\n color: '#f8f8f8',\n weight: FontWeight.Bold,\n },\n },\n {\n type: ComponentType.ImageButton,\n action: { type: ActionType.UIKit, data: 'uikit://delete' },\n width: { type: 'fixed', value: 20 },\n height: { type: 'fixed', value: 20 },\n imageUrl: 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n imageStyle: { contentMode: MediaContentMode.AspectFit },\n },\n ],\n },\n {\n type: ComponentType.Text,\n viewStyle: { padding: { top: 6, bottom: 12, left: 0, right: 0 } },\n text: 'Esse eu esse duis ipsum et dolor eu ut sit amet consectetur cillum velit officia. Ex adipisicing elit quis ea sit. Occaecat in eu aliqua nulla magna id ut excepteur minim.',\n maxTextLines: 2,\n textStyle: { size: 14, color: '#e10000' },\n width: { type: 'fixed', value: 200 },\n height: { type: 'fixed', value: 50 },\n },\n {\n type: ComponentType.TextButton,\n action: { type: ActionType.Web, data: 'https://www.daum.net' },\n text: 'Button 3',\n textStyle: { size: 14, color: '#742ddd', weight: FontWeight.Bold },\n },\n ],\n },\n ],\n },\n};\nconst sample_2 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Image,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.naver.com/' },\n 'height': { 'type': 'fixed', 'value': 136 },\n 'imageUrl': 'https://cdn.pixabay.com/photo/2022/10/12/10/45/bird-7516219_1280.jpg',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 }, backgroundColor: '#cccccc' },\n 'layout': Layout.Column,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'items': [\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'fixed', value: 150 },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 } },\n 'text': 'Button 2',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 } },\n 'text': 'Button 3',\n 'textStyle': { 'size': 14, 'weight': FontWeight.Bold },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n width: { type: 'flex', value: FlexSizeSpecValue.FillParent },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Sample2 text',\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': { 'type': ActionType.UIKit, 'data': 'uikit://delete' },\n 'width': { 'type': 'fixed', 'value': 20 },\n 'height': { 'type': 'fixed', 'value': 20 },\n 'imageUrl': 'https://file-ap-1.sendbird.com/5b5379aa73fd460da22ffaf9a61d0d7f.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFit },\n },\n ],\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'padding': { 'top': 6, 'bottom': 12, 'left': 0, 'right': 0 } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'size': 14 },\n },\n ],\n },\n ],\n },\n};\nconst sample_3 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'backgroundColor': '#ffffff', 'borderWidth': 1, 'borderColor': '#eeeeee', 'radius': 16 },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'height': { 'type': 'fixed', 'value': 200 },\n 'imageUrl': 'https://img.freepik.com/free-vector/cartoon-happy-hours-background_52683-81243.jpg?w=2000&t=st=1666689198~exp=1666689798~hmac=23109d44ba03deee7aee069cbeebfcb48fa27f85e53c1cafc5d5d7345f1a2041',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': { 'padding': { 'top': 15, 'bottom': 15, 'left': 15, 'right': 15 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': \"Don't miss these deals today\",\n 'maxTextLines': 1,\n 'textStyle': { 'size': 20, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 5, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': 'Pay with Maya and get cashback!',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 14, 'color': '#e10000' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://yt3.ggpht.com/ytc/AMLnZu8Kg89ymE7qt5bsS9vMqi9h2aHiN6m9ID-IgxR6-Q=s900-c-k-c0x00ffffff-no-rj',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Meralco',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://1000logos.net/wp-content/uploads/2021/12/Globe-Telecom-logo.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill, tintColor: '#a49a9a' },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Globe',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'width': { 'type': 'fixed', 'value': 50 },\n 'height': { 'type': 'fixed', 'value': 50 },\n 'viewStyle': {\n 'backgroundColor': '#ffffff',\n 'borderWidth': 1,\n 'borderColor': '#eeeeee',\n 'radius': 25,\n },\n 'imageUrl': 'https://upload.wikimedia.org/wikipedia/commons/thumb/4/41/Cignal.svg/640px-Cignal.svg.png',\n 'imageStyle': { 'contentMode': MediaContentMode.AspectFill },\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 0, 'bottom': 0, 'left': 15, 'right': 0 } },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Cignal',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 16, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': { 'margin': { 'top': 3, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'text': '30% cashback, P300 min spend',\n 'maxTextLines': 1,\n 'textStyle': { 'size': 12, 'color': '#610000', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'align': { 'horizontal': AlignValue.Left, 'vertical': AlignValue.Center },\n 'viewStyle': { 'margin': { 'top': 10, 'bottom': 0, 'left': 0, 'right': 0 } },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e0e0e0',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 4 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Learn more',\n 'textStyle': { 'size': 15, 'color': '#e10000', 'weight': FontWeight.Bold },\n },\n {\n 'type': ComponentType.TextButton,\n 'action': { 'type': ActionType.Web, 'data': 'https://www.daum.net' },\n 'viewStyle': {\n 'backgroundColor': '#e10000',\n 'radius': 16,\n 'margin': { 'top': 0, 'bottom': 0, 'left': 4, 'right': 0 },\n 'padding': { 'top': 12, 'bottom': 12, 'left': 12, 'right': 12 },\n },\n 'text': 'Pay now',\n 'textStyle': { 'size': 15, 'color': '#ffffff', 'weight': FontWeight.Bold },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_4 = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://static.sendbird.com/sample/profiles/profile_40_512px.png',\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'imageStyle': {\n 'tintColor': '#44ff1188',\n },\n viewStyle: {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'padding': {\n 'top': 12,\n 'right': 12,\n 'bottom': 12,\n 'left': 12,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'hi',\n 'maxTextLines': 3,\n 'viewStyle': {\n 'padding': {\n 'top': 0,\n 'bottom': 6,\n 'left': 0,\n 'right': 0,\n },\n },\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'text': 'bye',\n 'maxTextLines': 10,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n {\n 'type': ComponentType.ImageButton,\n 'action': {\n 'type': ActionType.UIKit,\n 'data': 'sendbirduikit://delete',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 20,\n },\n 'metaData': {\n 'pixelWidth': 60,\n 'pixelHeight': 60,\n },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/sendbird-message-builder/icon-more.png',\n 'imageStyle': {\n 'tintColor': '#ff8d5a',\n },\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-ULE240VNV-83fd5776e78e-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Chongbu',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': ' ',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'align': {\n 'horizontal': AlignValue.Left,\n 'vertical': AlignValue.Center,\n },\n 'layout': Layout.Row,\n 'items': [\n {\n 'type': ComponentType.Image,\n 'imageUrl': 'https://ca.slack-edge.com/T0ADCTNEL-U02LA25KY8J-d41a3e8c7554-512',\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'metaData': {\n 'pixelWidth': 512,\n 'pixelHeight': 512,\n },\n 'viewStyle': {\n 'backgroundColor': '#BDBDBD',\n 'radius': 20,\n },\n 'imageStyle': {\n 'contentMode': MediaContentMode.AspectFill,\n },\n },\n {\n 'type': ComponentType.Box,\n 'viewStyle': {\n 'margin': {\n 'top': 0,\n 'bottom': 0,\n 'left': 12,\n 'right': 0,\n },\n },\n 'layout': Layout.Column,\n 'items': [\n {\n 'type': ComponentType.Text,\n 'text': 'Amanda',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 16,\n 'weight': FontWeight.Bold,\n },\n },\n {\n 'type': ComponentType.Text,\n 'viewStyle': {\n 'margin': {\n 'top': 4,\n 'bottom': 0,\n 'left': 0,\n 'right': 0,\n },\n },\n 'text': 'This is title message',\n 'maxTextLines': 1,\n 'textStyle': {\n 'size': 14,\n },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_5 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'fixed', 'value': '250' },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/notifications-default-image.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': '8',\n 'padding': {\n 'top': '12',\n 'bottom': '12',\n 'left': '12',\n 'right': '12',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': '8',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#ff8888',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'height': { 'type': 'fixed', 'value': '300' },\n 'width': { 'type': 'flex', 'value': '0' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': { 'radius': '100' },\n 'width': { 'type': 'fixed', 'value': 40 },\n 'height': { 'type': 'fixed', 'value': 40 },\n 'imageUrl': 'https://dxstmhyqfqr1o.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': {\n 'pixelWidth': '240',\n 'pixelHeight': '240',\n },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': '12',\n 'top': '0',\n 'right': '0',\n 'bottom': '0',\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '{SBCOLOR_nppqb}',\n 'size': '16',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '{SBCOLOR_ls5oj}',\n 'size': '14',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': '12',\n 'right': '0',\n 'bottom': '0',\n 'left': '0',\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '{SBCOLOR_vmp47}',\n 'padding': {\n 'top': '10',\n 'bottom': '10',\n 'left': '20',\n 'right': '20',\n },\n 'margin': {\n 'left': '8',\n 'right': '0',\n 'top': '0',\n 'bottom': '0',\n },\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '{SBCOLOR_0r9vw}',\n 'size': '14',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_6 = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n height: { type: 'fixed', value: 600 },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': { 'radius': '8', 'padding': { 'top': '12', 'bottom': '12', 'left': '12', 'right': '12' } },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': { 'color': '#E0000000', 'size': '16', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'viewStyle': {},\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'text',\n 'viewStyle': { 'margin': { 'top': '8', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': { 'color': '#E0000000', 'size': '14', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': { 'margin': { 'top': '12', 'right': '0', 'bottom': '0', 'left': '0' } },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'text': 'Button 1',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n 'margin': { 'left': '8', 'right': '0', 'top': '0', 'bottom': '0' },\n },\n 'text': 'Button 2',\n 'textStyle': { 'color': '#742DDD', 'size': '14', 'weight': 'bold' },\n 'maxTextLines': '5',\n 'action': { 'data': 'https://www.naver.com' },\n },\n ],\n },\n ],\n 'action': { 'data': 'https://www.naver.com' },\n },\n {\n 'type': 'image',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'imageUrl': 'https://file-preprod.sendbird.com/d03c08bb3f9041a88c1207b6bbf15ab8.png',\n 'metaData': { 'pixelWidth': '1062', 'pixelHeight': '1070' },\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#E0E0E0',\n 'padding': { 'top': '10', 'bottom': '10', 'left': '20', 'right': '20' },\n },\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'text': 'Button',\n 'textStyle': { 'color': '#742DDD', 'size': '16', 'weight': 'normal' },\n 'maxTextLines': '5',\n 'action': { 'data': 'www.naver.com' },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {},\n 'width': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'height': { 'type': 'flex', 'value': FlexSizeSpecValue.FillParent },\n 'imageUrl': 'https://file-preprod.sendbird.com/38fdf5c1056f42b89a44b38155cc4b49.jpg',\n 'imageStyle': { 'contentMode': 'aspectFill' },\n 'metaData': { 'pixelWidth': '1080', 'pixelHeight': '2640' },\n 'action': { 'data': 'www.naver.com' },\n },\n ],\n 'viewStyle': {},\n },\n ],\n },\n};\nconst sample_for_inset_border = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#0e0101ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f9dadaff',\n 'borderColor': '#fb7373ff',\n 'borderWidth': '5',\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#bbd1f5ff',\n 'borderColor': '#0497f9ff',\n 'borderWidth': '10',\n 'padding': {\n 'top': '16',\n 'bottom': '16',\n 'left': '16',\n 'right': '16',\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': '14',\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'borderWidth': '10',\n 'borderColor': '#298e04ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#a6b7ebff',\n 'borderColor': '#0f0ff9ff',\n 'borderWidth': '5',\n 'radius': '6',\n },\n 'text': 'Button',\n 'textStyle': {\n 'size': '14',\n 'color': '#ffffffff',\n 'weight': 'bold',\n },\n 'maxTextLines': '1',\n 'width': {\n 'type': 'flex',\n 'value': '0',\n },\n 'height': {\n 'type': 'flex',\n 'value': '1',\n },\n },\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n 'borderColor': '#ff00b9ff',\n 'borderWidth': '5',\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-component-default-imgbutton.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'metaData': {\n 'pixelWidth': '72',\n 'pixelHeight': '72',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '36',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '36',\n },\n },\n {\n 'type': 'image',\n 'viewStyle': {\n 'backgroundColor': '#828282ff',\n 'borderColor': '#fe0000ff',\n 'borderWidth': '10',\n 'radius': '20',\n },\n 'imageUrl': 'https://file-preprod.sendbird.com/99c1ceafd8304076a7123caeea9aeb9a.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'width': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'height': {\n 'type': 'fixed',\n 'value': '50',\n },\n 'metaData': {\n 'pixelHeight': '225',\n 'pixelWidth': '225',\n },\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst sample_clipped_text__large_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'text',\n 'height': {\n 'type': 'fixed',\n 'value': 120,\n },\n 'width': {\n 'type': 'fixed',\n 'value': 150,\n },\n 'maxTextLines': 2,\n 'viewStyle': {\n 'padding': {\n 'left': 50,\n 'right': 50,\n 'top': 50,\n 'bottom': 50,\n },\n borderWidth: 1,\n borderColor: '#72723f',\n },\n 'text': 'longtext long long longtext',\n },\n ],\n },\n};\nconst sample_for_priority_by_size_spec = {\n 'version': '1',\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed(short) / Wrap / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '30' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#050505',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#0c0c0c',\n 'borderWidth': '1',\n },\n },\n ],\n 'viewStyle': { 'borderColor': '#0a0a0a' },\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fixed / Wrap(short) / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '2',\n 'bottom': '2',\n 'left': '2',\n 'right': '2',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'FixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixedFixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap / Fixed / Fill / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'text': 'WrapWrapWrapWrapWrapWrapWrapWrapWrapWrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short) / Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Wrap',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill Fill Fixed',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'FillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFillFill',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n {\n 'type': 'text',\n 'text': 'Fixed Fixed Fixed Fixed Fixed Fixed Fixed ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'fixed', 'value': '100' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(short) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(short)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'text content text content text content text content text content text content ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'appId-appId',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Wrap(long) / Fill',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'viewStyle': {\n 'margin': {\n 'top': '0',\n 'bottom': '100',\n 'left': '0',\n 'right': '0',\n },\n },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '8',\n 'bottom': '8',\n 'left': '0',\n 'right': '8',\n },\n },\n 'text': 'Fill / Wrap(long)',\n 'textStyle': {\n 'size': '20',\n 'color': '#000000',\n 'weight': 'bold',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '0' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'padding': {\n 'top': '5',\n 'bottom': '5',\n 'left': '5',\n 'right': '5',\n },\n 'borderColor': '#000000',\n 'borderWidth': '1',\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': '14',\n 'color': '#000000',\n 'weight': 'normal',\n },\n 'maxTextLines': '5',\n 'width': { 'type': 'flex', 'value': '1' },\n 'height': { 'type': 'flex', 'value': '1' },\n 'align': { 'horizontal': 'left', 'vertical': 'top' },\n },\n ],\n },\n ],\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_wrap_wrap_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ffa0a0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0ffacff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ddc05097-0130-41b9-b32b-ea4d19fe1b17',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0a1ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 Wrap3 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '8d7ba180-f065-4037-beb1-dd3797729bf2',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#adffa0ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '7ddcc4dc-465d-416f-adfa-fcb22262defe',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_longer = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_fill_wrap_super_long = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#b1f5a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 Fill1 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'eccfb704-69bd-4c41-9730-befcab670e9d',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#daa0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 Wrap2 ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '69a40de4-1aa1-4028-ba85-030517c9faf3',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'viewStyle': {\n 'backgroundColor': '#000000ff',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#f5a3a3ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill Fill ',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'b9f8e599-6529-4736-b264-cb9811f44eeb',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a0c0ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap Wrap',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'c0e15878-4984-408d-abaa-4b495c2e3872',\n },\n ],\n 'elementId': 'ac8227f4-d3c0-4f8c-ac95-d9756d988e10',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_remain_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 200,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst vertical_fill_wrap_wrap_no_padding = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 170,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst horizontal_fill_wrap_wrap_long_content = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'items': [\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#ff9191ff',\n 'radius': 1,\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 0,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'ac074f97-a136-43c0-a7c2-9be937730c39',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#91ffa6ff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': 'fcae6d34-7526-45b4-a4c7-1111814e62e1',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'backgroundColor': '#a891ffff',\n 'padding': {\n 'top': 16,\n 'bottom': 16,\n 'left': 16,\n 'right': 16,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aui',\n 'textStyle': {\n 'size': 14,\n 'color': '#222121e0',\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'width': {\n 'type': 'flex',\n 'value': 1,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'align': {\n 'horizontal': 'left',\n 'vertical': 'top',\n },\n 'elementId': '00162fc8-22dc-46dc-872b-ba9590474f98',\n },\n ],\n 'elementId': '0e42079b-b373-496f-862b-8799ad34c599',\n },\n ],\n },\n ],\n },\n};\nconst dashboard_preset_list = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'elementId': 'root',\n 'type': 'box',\n 'layout': 'column',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'image',\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/img-template-preset-default-image.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n },\n 'metaData': {\n 'pixelWidth': 686,\n 'pixelHeight': 320,\n },\n 'elementId': '0f3d6ba4-715a-44d2-b776-5bdd1aed8bc5',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'radius': 8,\n 'padding': {\n 'top': 12,\n 'bottom': 12,\n 'left': 12,\n 'right': 12,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'Title text',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '010811be-7c65-4aa8-8f8e-62c8398562b0',\n },\n {\n 'type': 'text',\n 'viewStyle': {\n 'margin': {\n 'top': 8,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'text': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '00aca18f-3cdf-404d-9e01-9a99f59fb8ae',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n 'padding': {\n 'top': 4,\n 'right': 0,\n 'bottom': 4,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '35a315e9-1f61-4a72-b7c9-ce34a0543343',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ef3c83b2-9149-46c1-a22d-beb878cf937a',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a92ae89d-0726-46b5-b575-2db578b3d954',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'ffb50576-f050-4a36-b64f-64864bb04734',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'a9d30083-5b00-4ec6-bf2b-0b03c03b1632',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '61fefa7c-0a03-4c92-9b26-2f7620982e46',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'cb2dfa91-3076-406d-b0e9-3bfab75c91a1',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '88bb07e0-8226-4e03-b2a1-d8796a8d558e',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '169ca327-1784-4ae4-bb1c-52963268a1de',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '732ae02b-adff-46d2-b011-f94a2d93b4ba',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 16,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'imageButton',\n 'viewStyle': {\n 'radius': 100,\n 'backgroundColor': '#5a73baff',\n },\n 'width': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'height': {\n 'type': 'fixed',\n 'value': 40,\n },\n 'imageUrl': 'https://ddtyj01cn62am.cloudfront.net/notifications/default-notification-channel-cover.png',\n 'imageStyle': {\n 'contentMode': 'aspectFill',\n 'tintColor': '#ffffffff',\n },\n 'elementId': '1761210e-beab-4d19-ad12-3c7776ce066d',\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'margin': {\n 'left': 12,\n 'top': 0,\n 'right': 0,\n 'bottom': 0,\n },\n },\n 'items': [\n {\n 'type': 'text',\n 'text': 'List title',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 16,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3e69331-e4d1-44f9-bc1a-c0c8589d625e',\n },\n {\n 'type': 'text',\n 'text': 'List body',\n 'textStyle': {\n 'color': '#222121e0',\n 'size': 14,\n 'weight': 'normal',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '065a4733-477d-4a15-a7d0-4559025db3c3',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '3e20f19a-58c6-40ec-8365-0e6ea12a6acb',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '2e8938ca-5574-4a58-a17c-9bff156a7456',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '9c79282d-928c-418e-8111-78a4e19c1353',\n },\n {\n 'type': 'box',\n 'layout': 'row',\n 'viewStyle': {\n 'margin': {\n 'top': 12,\n 'right': 0,\n 'bottom': 0,\n 'left': 0,\n },\n },\n 'items': [\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'radius': 6,\n },\n 'text': 'Button 1',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'f3885375-bc4e-4117-8575-ec241a68091d',\n },\n {\n 'type': 'textButton',\n 'viewStyle': {\n 'backgroundColor': '#5a73baff',\n 'padding': {\n 'top': 10,\n 'bottom': 10,\n 'left': 20,\n 'right': 20,\n },\n 'margin': {\n 'left': 8,\n 'right': 0,\n 'top': 0,\n 'bottom': 0,\n },\n 'radius': 6,\n },\n 'text': 'Button 2',\n 'textStyle': {\n 'color': '#ffffffff',\n 'size': 14,\n 'weight': 'bold',\n },\n 'maxTextLines': 5,\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '6f9acedd-e382-4f53-a350-bca2276e9b6b',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '37bae277-3300-4c2e-a308-c320d73c5725',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': '62b096a3-0ee7-4467-a8be-9fa1109b257d',\n },\n ],\n 'height': {\n 'type': 'flex',\n 'value': 1,\n },\n 'width': {\n 'type': 'flex',\n 'value': 0,\n },\n 'elementId': 'e2708cb7-b237-4ffb-86fe-3bb11b8400b8',\n },\n ],\n },\n ],\n },\n};\nconst socar_preset_booking_confirm = {\n 'version': 1,\n 'body': {\n 'items': [\n {\n 'type': 'box',\n 'layout': 'column',\n 'viewStyle': {\n 'padding': { 'top': 5, 'bottom': 5, 'left': 0, 'right': 10 },\n },\n 'items': [\n {\n 'type': 'box',\n 'layout': 'row',\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'items': [\n {\n 'type': 'imageButton',\n 'width': { 'type': 'fixed', 'value': 70 },\n 'height': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'center', 'vertical': 'center' },\n 'imageUrl': 'https://search.pstatic.net/common?type=f&size=298x140&quality=95&direct=true&ttype=input&src=https%3A%2F%2Fimgauto-phinf.pstatic.net%2F20240116_168%2Fauto_17053701702442qv0L_PNG%2F20240116105600_9xS4XPiV.png',\n 'metaData': { 'pixelWidth': '149', 'pixelHeight': '70' },\n },\n {\n 'type': 'box',\n 'layout': 'column',\n 'items': [\n {\n 'type': 'text',\n 'text': '예약완료',\n 'width': { 'type': 'flex', 'value': 1 },\n 'align': { 'horizontal': 'right', 'vertical': 'center' },\n 'viewStyle': {\n 'backgroundColor': '#F0FAFF',\n 'radius': 4,\n 'padding': { 'top': 2, 'bottom': 1, 'left': 4, 'right': 4 },\n },\n 'textStyle': { 'color': '#3BC7FF', 'weight': 'bold', 'size': 12 },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '[슈퍼딜] 2024 포드 머스탱 컨버터블',\n 'textStyle': { 'weight': 'bold' },\n 'viewStyle': {\n 'margin': { 'top': 2 },\n },\n 'maxTextLines': '1',\n },\n {\n 'type': 'text',\n 'text': '출발: 03.24.(금) 15:00\\n도착: 03.27.(월) 11:00',\n 'textStyle': { 'weight': 'normal' },\n 'maxTextLines': '2',\n },\n ],\n },\n {\n 'type': 'textButton',\n 'text': '선택',\n 'width': { 'type': 'fixed', 'value': 60 },\n 'height': { 'type': 'fixed', 'value': 30 },\n 'viewStyle': {\n 'radius': 17,\n 'padding': { 'top': 0, 'bottom': 0, 'left': 0, 'right': 0 },\n },\n 'textStyle': { 'weight': 'bold' },\n 'maxTextLines': '1',\n },\n ],\n },\n ],\n },\n ],\n },\n};\nexport const samples_for_size_spec = [\n horizontal_wrap_wrap,\n horizontal_wrap_wrap_wrap,\n horizontal_fill_wrap,\n horizontal_fill_fill_wrap,\n horizontal_fill_wrap_fill_wrap,\n horizontal_fill_wrap_fill_wrap_long,\n horizontal_fill_wrap_fill_wrap_longer,\n horizontal_fill_wrap_fill_wrap_super_long,\n horizontal_fill_wrap_wrap_long_content,\n horizontal_fill_wrap_remain_padding,\n horizontal_fill_wrap_no_padding,\n vertical_fill_wrap_wrap_remain_padding,\n vertical_fill_wrap_wrap_no_padding,\n];\nexport const samples = [\n sample_1,\n sample_2,\n sample_3,\n sample_4,\n sample_5,\n sample_6,\n sample_for_inset_border,\n sample_clipped_text__large_padding,\n sample_for_priority_by_size_spec,\n dashboard_preset_list,\n socar_preset_booking_confirm,\n];\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useEffect, useMemo, useRef, useState } from 'react';\nexport const CanvasReactMessageTemplateImage = (props) => {\n const { imageSize, canvasRef, canvasProps } = useCanvasMessageTemplateImage(props);\n return (React.createElement(\"canvas\", Object.assign({}, canvasProps, { ref: canvasRef, width: imageSize === null || imageSize === void 0 ? void 0 : imageSize.width, height: imageSize === null || imageSize === void 0 ? void 0 : imageSize.height, onError: props.onError })));\n};\nconst useCanvasMessageTemplateImage = (_a) => {\n var { metaData, tintColor } = _a, props = __rest(_a, [\"metaData\", \"tintColor\"]);\n const canvasRef = useRef(null);\n const [fallbackImageSize, setFallbackImageSize] = useState();\n const imageSize = useMemo(() => {\n if ((metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight) && (metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth)) {\n return { width: metaData.pixelWidth, height: metaData.pixelHeight };\n }\n return fallbackImageSize;\n }, [fallbackImageSize, metaData === null || metaData === void 0 ? void 0 : metaData.pixelHeight, metaData === null || metaData === void 0 ? void 0 : metaData.pixelWidth]);\n useEffect(() => {\n if (imageSize == null) {\n console.log('Canvas_ReactMessageTemplateImage: no metaData, render fit to container');\n if (canvasRef.current) {\n canvasRef.current.style.width = '100%';\n canvasRef.current.style.height = '100%';\n const containerSize = canvasRef.current.getBoundingClientRect();\n setFallbackImageSize(containerSize);\n }\n }\n }, [imageSize]);\n useEffect(() => {\n if (props.src) {\n const img = new Image();\n const onImageLoad = () => {\n if (canvasRef.current && tintColor && imageSize) {\n const ctx = canvasRef.current.getContext('2d');\n if (ctx) {\n const { width: imageWidth, height: imageHeight } = imageSize;\n // reset context before draw, consider `.save()` and `.restore()` api\n ctx.clearRect(0, 0, imageWidth, imageHeight);\n ctx.beginPath();\n ctx.globalCompositeOperation = 'source-over';\n ctx.fillStyle = '#000';\n // draw\n ctx.drawImage(img, 0, 0, imageWidth, imageHeight);\n ctx.globalCompositeOperation = 'source-atop';\n ctx.fillStyle = tintColor;\n ctx.fillRect(0, 0, imageWidth, imageHeight);\n }\n }\n };\n const onImageError = (event) => {\n var _a;\n // @ts-ignore\n (_a = props.onError) === null || _a === void 0 ? void 0 : _a.call(props, event);\n };\n img.addEventListener('load', onImageLoad);\n img.addEventListener('error', onImageError);\n img.src = props.src;\n return () => {\n img.removeEventListener('load', onImageLoad);\n img.removeEventListener('error', onImageError);\n };\n }\n return;\n }, [props.src, imageSize, tintColor]);\n return {\n canvasRef,\n canvasProps: props,\n imageSize,\n };\n};\n","import React from 'react';\nexport const ImgReactMessageTemplateImage = (props) => {\n return React.createElement(\"img\", Object.assign({}, props, { onError: props.onError, referrerPolicy: \"no-referrer\" }));\n};\n","import React from 'react';\nexport const PlaceholderReactMessageTemplateImage = (props) => {\n return React.createElement(\"div\", { style: Object.assign(Object.assign({}, props.style), { backgroundColor: 'transparent' }) });\n};\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React, { useCallback, useEffect, useState } from 'react';\nimport { CanvasReactMessageTemplateImage } from './index.canvas';\nimport { ImgReactMessageTemplateImage } from './index.img';\nimport { PlaceholderReactMessageTemplateImage } from './index.placeholder';\nconst ReactMessageTemplateImage = (_a) => {\n var { tintColor, metaData } = _a, props = __rest(_a, [\"tintColor\", \"metaData\"]);\n const { hasError, onError } = useImageLoadError(props.src);\n if (props.onError)\n console.warn('`onError` is intercepted and not executed in the ReactMessageTemplateImage.');\n if (hasError) {\n return React.createElement(PlaceholderReactMessageTemplateImage, Object.assign({}, props));\n }\n else if (tintColor) {\n return React.createElement(CanvasReactMessageTemplateImage, Object.assign({}, props, { onError: onError, tintColor: tintColor, metaData: metaData }));\n }\n else {\n return React.createElement(ImgReactMessageTemplateImage, Object.assign({}, props, { onError: onError }));\n }\n};\nconst useImageLoadError = (source) => {\n const [hasError, setHasError] = useState(false);\n useEffect(() => setHasError(false), [source]);\n return {\n hasError,\n onError: useCallback(() => setHasError(true), []),\n };\n};\nexport default ReactMessageTemplateImage;\n","// create a context provider for MessageComponent\n// - this is a wrapper for MessageComponent\nimport React from 'react';\nconst MessageContext = React.createContext(null);\nconst MessageProvider = (props) => {\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction, children } = props;\n const value = React.useMemo(() => ({\n message,\n handleWebAction,\n handleCustomAction,\n handlePredefinedAction,\n }), [message === null || message === void 0 ? void 0 : message.updatedAt]);\n return React.createElement(MessageContext.Provider, { value: value }, children);\n};\nconst useMessageContext = () => React.useContext(MessageContext);\nexport { MessageProvider, useMessageContext };\n","import { ComponentType, FlexSizeSpecValue } from '@sendbird/uikit-message-template';\nexport function isWrappedText(view) {\n var _a;\n return view.type === ComponentType.Text && ((_a = view.width) === null || _a === void 0 ? void 0 : _a.value) == FlexSizeSpecValue.WrapContent;\n}\n// Compares the size spec to the option and returns whether they are equal or not.\nexport const isSizeCompatibleWithOption = ({ size, option, }) => {\n if (option === 'wrap') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.WrapContent;\n }\n if (option === 'fill') {\n return size.type === 'flex' && size.value == FlexSizeSpecValue.FillParent;\n }\n return size.type === 'fixed';\n};\n","import { useCallback, useEffect, useRef } from 'react';\n/**\n * Preserves a reference to the given callback function as an argument while the component is mounted.\n * Wraps the given callback in React's Ref to preserve the reference.\n * @param callback want to be preserved\n */\nexport function usePreservedCallback(callback) {\n const callbackRef = useRef(callback);\n useEffect(() => {\n callbackRef.current = callback;\n }, [callback]);\n return useCallback((...args) => {\n return callbackRef.current(...args);\n }, [callbackRef]);\n}\n","import { useCallback, useRef } from 'react';\nimport { usePreservedCallback } from './usePreservedCallback';\n/**\n * This hook can be used when you want to safely effect the value stored in useRef\n * Got this idea from https://github.com/facebook/react/issues/15176\n * @param callback\n * @param deps\n * @returns effect callback\n */\nexport function useRefEffect(callback, deps) {\n const preservedCallback = usePreservedCallback(callback);\n const disposeRef = useRef(noop);\n const effect = useCallback((element) => {\n disposeRef.current();\n disposeRef.current = noop;\n if (element != null) {\n const cleanup = callback(element);\n if (typeof cleanup === 'function') {\n disposeRef.current = cleanup;\n }\n }\n }, [preservedCallback, ...deps]);\n return effect;\n}\nfunction noop() { }\n","import { usePreservedCallback } from './usePreservedCallback';\nimport { useRefEffect } from './useRefEffect';\n/**\n * Subscribes to ResizeObserver on the component exposing the Ref,\n * to detect changes in the size of DOM elements.\n * The ResizeObserver API is required.\n * If you are targeting browsers that do not support that API, probably need to add appropriate polyfill too.\n * @param onResize\n * @returns ref\n */\nexport function useResizeObserver(onResize) {\n const resizeCallback = usePreservedCallback(onResize);\n const ref = useRefEffect((elem) => {\n const observer = new ResizeObserver((entries) => {\n if (entries[0] != null) {\n resizeCallback(entries[0]);\n }\n });\n observer.observe(elem);\n return () => {\n observer.unobserve(elem);\n };\n }, [resizeCallback]);\n return ref;\n}\n","import { useState } from 'react';\nimport { useResizeObserver } from './useResizeObserver';\n/**\n * @returns an element's width / height observed by IntersectionObserver,\n * and ref to detect its resize event\n */\nexport function useElementSize() {\n const [width, setWidth] = useState(-1);\n const [height, setHeight] = useState(-1);\n const [contentWidth, setContentWidth] = useState(-1);\n const [contentHeight, setContentHeight] = useState(-1);\n const [paddingWidth, setPaddingWidth] = useState(-1);\n const [paddingHeight, setPaddingHeight] = useState(-1);\n const ref = useResizeObserver((entry) => {\n // contentRect: content size only\n const { width: contentWidth, height: contentHeight } = entry.contentRect;\n // target: content + padding + border size\n const target = entry.target;\n const { width, height } = target.getBoundingClientRect();\n setWidth(width);\n setHeight(height);\n setContentWidth(contentWidth);\n setContentHeight(contentHeight);\n setPaddingWidth(width - contentWidth);\n setPaddingHeight(height - contentHeight);\n });\n return { ref, width, height, contentWidth, contentHeight, paddingWidth, paddingHeight };\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { useEffect, useMemo } from 'react';\nimport { Layout, defaultProperties, useSizeContext } from '@sendbird/uikit-message-template';\nimport { isSizeCompatibleWithOption } from '../util';\nimport { useElementSize } from './useElementSize';\nfunction isViewCompatibleWithSizeOption({ width = defaultProperties.view.size.width, height = defaultProperties.view.size.height, parentLayout = defaultProperties.box.layout, option, }) {\n if (parentLayout === Layout.Row) {\n return isSizeCompatibleWithOption({\n size: width,\n option,\n });\n }\n return isSizeCompatibleWithOption({\n size: height,\n option,\n });\n}\nexport function useRecalculateWidth(params) {\n const { style, props } = params;\n const _a = useElementSize(), { ref: elemRef } = _a, size = __rest(_a, [\"ref\"]);\n const { updateSize, sizes } = useSizeContext();\n const { id, siblings, parentLayout } = props;\n const { width, height, paddingWidth, paddingHeight, contentWidth, contentHeight } = size;\n useEffect(() => {\n updateSize({\n id: props.id,\n width,\n height,\n paddingWidth,\n paddingHeight,\n contentWidth,\n contentHeight,\n });\n }, [props.id, width, height, paddingWidth, paddingHeight, contentWidth, contentHeight, updateSize]);\n const currentStyle = useMemo(() => {\n const sumViewSize = (acc = 0, view) => {\n var _a, _b, _c, _d;\n if (parentLayout === Layout.Row) {\n return acc + ((_b = (_a = sizes[view.id]) === null || _a === void 0 ? void 0 : _a.contentWidth) !== null && _b !== void 0 ? _b : 0);\n }\n return acc + ((_d = (_c = sizes[view.id]) === null || _c === void 0 ? void 0 : _c.contentHeight) !== null && _d !== void 0 ? _d : 0);\n };\n const hasFillOption = isViewCompatibleWithSizeOption({\n width: props.width,\n height: props.height,\n parentLayout,\n option: 'fill',\n });\n if (hasFillOption) {\n const wrapSiblingsSize = siblings\n .filter(({ width, height }) => !isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n }))\n .reduce(sumViewSize, 0);\n const fillSiblingCount = siblings.filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'fill',\n })).length;\n const maxSizeOption = (() => {\n if (parentLayout === Layout.Row) {\n return {\n maxWidth: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n }\n return {\n maxHeight: `calc((100% - ${wrapSiblingsSize}px) / ${fillSiblingCount})`,\n };\n })();\n return Object.assign(Object.assign(Object.assign({}, style), maxSizeOption), (width == 0 && { height: 0 }));\n }\n else {\n const currentElemIdx = siblings.findIndex((sibling) => sibling.id === id);\n const forwardSiblingsSize = siblings\n .slice(0, currentElemIdx)\n .filter(({ width, height }) => isViewCompatibleWithSizeOption({\n width: width,\n height: height,\n parentLayout,\n option: 'wrap',\n }))\n .reduce(sumViewSize, 0);\n return Object.assign(Object.assign(Object.assign({}, style), (width === 0 && { height: 0 })), (parentLayout === Layout.Row\n ? {\n maxWidth: `calc(100% - ${forwardSiblingsSize}px)`,\n }\n : {\n maxHeight: `calc(100% - ${forwardSiblingsSize}px)`,\n }));\n }\n }, [props.width, props.height, parentLayout, sizes, siblings, style, width, id]);\n return { recalculatedStyle: currentStyle, elemRef };\n}\n","import { ComponentType, FlexSizeSpecValue, Layout, MediaContentMode, alignInFlex, defaultProperties, } from '@sendbird/uikit-message-template';\nimport { isWrappedText } from '../util';\nexport function getDefaultStyles(overrides) {\n return Object.assign({ display: 'flex', overflow: 'hidden', boxSizing: 'border-box' }, overrides);\n}\nexport function setViewProps(styles, props, options) {\n setViewSize(styles, props, options);\n setViewStyle(styles, props);\n}\nfunction setBorderStyle(styles, borderWidth, borderColor, radius) {\n if (borderWidth) {\n styles['--border-width'] = `${borderWidth}px`;\n styles['--border-color'] = borderColor || 'transparent';\n }\n if (radius) {\n styles['borderRadius'] = Number(radius);\n styles['--border-radius'] = `${radius}px`;\n }\n}\nexport function setViewStyle(styles, props) {\n var _a, _b, _c, _d;\n const { viewStyle } = props;\n if ((_a = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _a === void 0 ? void 0 : _a.top)\n styles['marginTop'] = Number(viewStyle.margin.top);\n if ((_b = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _b === void 0 ? void 0 : _b.bottom)\n styles['marginBottom'] = Number(viewStyle.margin.bottom);\n if ((_c = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _c === void 0 ? void 0 : _c.left)\n styles['marginLeft'] = Number(viewStyle.margin.left);\n if ((_d = viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.margin) === null || _d === void 0 ? void 0 : _d.right)\n styles['marginRight'] = Number(viewStyle.margin.right);\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundColor)\n styles['backgroundColor'] = viewStyle.backgroundColor;\n // use JSON.stringify to escape special characters in image URL\n if (viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.backgroundImageUrl)\n styles['backgroundImage'] = `url(${JSON.stringify(viewStyle.backgroundImageUrl)})`;\n setBorderStyle(styles, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderWidth, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.borderColor, viewStyle === null || viewStyle === void 0 ? void 0 : viewStyle.radius);\n}\nfunction getViewSizeStyle(width, height, parentLayout) {\n const style = {};\n if (width.type === 'flex' && width.value == FlexSizeSpecValue.FillParent) {\n style['width'] = '100%';\n if (parentLayout === Layout.Row) {\n style['flex'] = 1;\n }\n }\n else if (width.type === 'fixed' && width.value >= 0) {\n style['width'] = Number(width.value);\n }\n if (height.type === 'flex' && height.value == FlexSizeSpecValue.FillParent) {\n style['height'] = '100%';\n if (parentLayout === Layout.Column) {\n style['flex'] = 1;\n }\n }\n else if (height.type === 'fixed' && height.value >= 0) {\n style['height'] = Number(height.value);\n }\n return style;\n}\nexport function setViewSize(styles, props, options) {\n var _a, _b;\n const { width: defaultWidth, height: defaultHeight } = defaultProperties.view.size;\n const { parentLayout } = options;\n const sizeStyle = getViewSizeStyle((_a = props.width) !== null && _a !== void 0 ? _a : defaultWidth, (_b = props.height) !== null && _b !== void 0 ? _b : defaultHeight, parentLayout);\n Object.assign(styles, sizeStyle);\n}\nexport function setAlign(styles, layout = defaultProperties.box.layout, align = defaultProperties.box.align) {\n if (layout === Layout.Row) {\n styles['flexDirection'] = 'row';\n styles['alignItems'] = alignInFlex(align.vertical);\n styles['justifyContent'] = alignInFlex(align.horizontal);\n }\n if (layout === Layout.Column) {\n styles['flexDirection'] = 'column';\n styles['alignItems'] = alignInFlex(align.horizontal);\n styles['justifyContent'] = alignInFlex(align.vertical);\n }\n}\nexport function setTextAlign(styles, align = defaultProperties.box.align.horizontal) {\n styles.textAlign = align;\n}\nexport function setImageStyle(styles, imageStyle) {\n const { contentMode = MediaContentMode.AspectFit } = imageStyle || {};\n if (contentMode) {\n switch (contentMode) {\n case MediaContentMode.AspectFill:\n styles['objectFit'] = 'cover';\n break;\n case MediaContentMode.AspectFit:\n styles['objectFit'] = 'contain';\n break;\n case MediaContentMode.ScalesToFill:\n styles['objectFit'] = 'fill';\n break;\n }\n }\n}\n// uses image meta-data to render images that doesn't break the UI\n// https://sendbird.atlassian.net/wiki/spaces/UK/pages/2008220608/Message+template+-+Image+policy\nexport function setImageAspectRatio(styles, props) {\n var _a, _b, _c, _d;\n const imageMetaData = props === null || props === void 0 ? void 0 : props.metaData;\n if (!(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelHeight) || !(imageMetaData === null || imageMetaData === void 0 ? void 0 : imageMetaData.pixelWidth)) {\n return;\n }\n if (((_a = props === null || props === void 0 ? void 0 : props.width) === null || _a === void 0 ? void 0 : _a.type) === 'fixed' || ((_b = props === null || props === void 0 ? void 0 : props.height) === null || _b === void 0 ? void 0 : _b.type) === 'fixed') {\n return;\n }\n styles['aspectRatio'] = `${(_c = props === null || props === void 0 ? void 0 : props.metaData) === null || _c === void 0 ? void 0 : _c.pixelWidth} / ${(_d = props === null || props === void 0 ? void 0 : props.metaData) === null || _d === void 0 ? void 0 : _d.pixelHeight}`;\n}\nexport function webkitLineClampStyles(numberOfLines) {\n return {\n WebkitLineClamp: numberOfLines,\n WebkitBoxOrient: 'vertical',\n display: '-webkit-box',\n overflow: 'hidden',\n overflowWrap: 'anywhere',\n flex: 1,\n };\n}\nexport function setTextStyle(styles, props, options) {\n const { textStyle, width } = props;\n // TODO: Change default as design\n const { size, color, weight = 'normal' } = textStyle || {};\n if (size)\n styles['fontSize'] = Number(size);\n if (color)\n styles['color'] = color;\n if (weight)\n styles['fontWeight'] = weight;\n if ((width === null || width === void 0 ? void 0 : width.value) == FlexSizeSpecValue.WrapContent) {\n styles['maxWidth'] = '100%';\n }\n if (props.type === ComponentType.Text) {\n const { siblings, elemIdx } = options;\n // To push out any subsequent components from the container,\n // if a prior one is long enough to occupy an entire line\n // @link https://sendbird.atlassian.net/browse/NOTI-709\n if (siblings != null && siblings.length >= 2 && siblings.every(isWrappedText)) {\n styles.flexShrink = siblings.length - 1 === elemIdx ? 1 : 0;\n }\n }\n}\n","var __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport React from 'react';\nimport { FlexSizeSpecValue, Layout, createMessageTemplate, createParser, createRenderer, } from '@sendbird/uikit-message-template';\nimport ReactMessageTemplateImage from '../components/ReactMessageTemplateImage';\nimport { useMessageContext } from '../context/MessageContextProvider';\nimport { useRecalculateWidth } from '../hook/useRecalculationSize';\nimport '../index.css';\nimport { getDefaultStyles, setAlign, setImageAspectRatio, setImageStyle, setTextAlign, setTextStyle, setViewProps, webkitLineClampStyles, } from '../styles';\nconst hasValidUrlProtocol = (url = '') => ['http://', 'https://', 'ftp://'].some((protocol) => url.startsWith(protocol));\n/**\n * @param url - url to be checked\n * @returns url with http:// protocol if it doesn't have any protocol\n * @example\n * returnUrl('www.sendbird.com') // returns 'http://www.sendbird.com'\n * returnUrl('https://www.sendbird.com') // returns 'https://www.sendbird.com'\n * returnUrl('ftp://www.sendbird.com') // returns 'ftp://www.sendbird.com'\n * returnUrl('sendbird.com') // returns 'https://sendbird.com'\n **/\nconst returnUrl = (url = '') => {\n if (hasValidUrlProtocol(url)) {\n return url;\n }\n return `https://${url}`;\n};\n// todo: semantic html here is not perfect, need to revisit. Same for Button\nconst ActionHandler = ({ className = '', style, children, props }) => {\n var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s;\n const { recalculatedStyle, elemRef } = useRecalculateWidth({ style, props });\n const { message, handleWebAction, handleCustomAction, handlePredefinedAction } = useMessageContext();\n const onClick = (e) => {\n var _a, _b, _c, _d, _e;\n if (((_a = props === null || props === void 0 ? void 0 : props.action) === null || _a === void 0 ? void 0 : _a.type) === 'web') {\n if (handleWebAction) {\n handleWebAction === null || handleWebAction === void 0 ? void 0 : handleWebAction(e, props.action, message);\n }\n else {\n (_c = window === null || window === void 0 ? void 0 : window.open(returnUrl((_b = props === null || props === void 0 ? void 0 : props.action) === null || _b === void 0 ? void 0 : _b.data), '_blank', 'noopener noreferrer')) === null || _c === void 0 ? void 0 : _c.focus();\n }\n }\n if (((_d = props === null || props === void 0 ? void 0 : props.action) === null || _d === void 0 ? void 0 : _d.type) === 'custom') {\n handleCustomAction === null || handleCustomAction === void 0 ? void 0 : handleCustomAction(e, props.action, message);\n }\n if (((_e = props === null || props === void 0 ? void 0 : props.action) === null || _e === void 0 ? void 0 : _e.type) === 'uikit') {\n handlePredefinedAction === null || handlePredefinedAction === void 0 ? void 0 : handlePredefinedAction(e, props.action, message);\n }\n };\n const borderClass = ((_a = props.viewStyle) === null || _a === void 0 ? void 0 : _a.borderWidth) ? ' sb-message-template__border' : '';\n if (className === 'sb-message-template__text-button') {\n return (React.createElement(\"button\", { className: `${className}${borderClass}`, \"data-sb-template-id\": props.elementId, style: Object.assign(Object.assign({}, style), { paddingTop: (_c = (_b = props.viewStyle) === null || _b === void 0 ? void 0 : _b.padding) === null || _c === void 0 ? void 0 : _c.top, paddingRight: (_e = (_d = props.viewStyle) === null || _d === void 0 ? void 0 : _d.padding) === null || _e === void 0 ? void 0 : _e.right, paddingBottom: (_g = (_f = props.viewStyle) === null || _f === void 0 ? void 0 : _f.padding) === null || _g === void 0 ? void 0 : _g.bottom, paddingLeft: (_j = (_h = props.viewStyle) === null || _h === void 0 ? void 0 : _h.padding) === null || _j === void 0 ? void 0 : _j.left }), onClick: onClick }, children));\n }\n const { display, flexDirection, justifyContent, alignItems, objectFit } = recalculatedStyle, wrapperStyles = __rest(recalculatedStyle, [\"display\", \"flexDirection\", \"justifyContent\", \"alignItems\", \"objectFit\"]);\n return (React.createElement(\"div\", { ref: elemRef, className: `${className}${borderClass} ${(props === null || props === void 0 ? void 0 : props.action) ? 'sb-message-template__action' : ''}`, \"data-sb-template-id\": props.elementId, style: wrapperStyles, onClick: onClick },\n React.createElement(\"div\", { style: {\n display,\n flexDirection,\n justifyContent,\n alignItems,\n objectFit,\n width: '100%',\n height: '100%',\n paddingTop: (_l = (_k = props.viewStyle) === null || _k === void 0 ? void 0 : _k.padding) === null || _l === void 0 ? void 0 : _l.top,\n paddingRight: (_o = (_m = props.viewStyle) === null || _m === void 0 ? void 0 : _m.padding) === null || _o === void 0 ? void 0 : _o.right,\n paddingBottom: (_q = (_p = props.viewStyle) === null || _p === void 0 ? void 0 : _p.padding) === null || _q === void 0 ? void 0 : _q.bottom,\n paddingLeft: (_s = (_r = props.viewStyle) === null || _r === void 0 ? void 0 : _r.padding) === null || _s === void 0 ? void 0 : _s.left,\n } }, children)));\n};\n/**\n * Text that is fixed or fill parent should be wrapped in a div with max-width: 100% and max-height: 100%\n * This is to prevent text from overflowing the padding of the container\n */\nfunction isFixedOrFill(view) {\n var _a, _b, _c, _d;\n const heightType = (_a = view === null || view === void 0 ? void 0 : view.height) === null || _a === void 0 ? void 0 : _a.type;\n const widthType = (_b = view === null || view === void 0 ? void 0 : view.width) === null || _b === void 0 ? void 0 : _b.type;\n const isFixedDiamension = heightType === 'fixed' || widthType === 'fixed';\n const isFill = (heightType === 'flex' && ((_c = view === null || view === void 0 ? void 0 : view.height) === null || _c === void 0 ? void 0 : _c.value) === FlexSizeSpecValue.FillParent) ||\n (widthType === 'flex' && ((_d = view === null || view === void 0 ? void 0 : view.width) === null || _d === void 0 ? void 0 : _d.value) === FlexSizeSpecValue.FillParent);\n return isFixedDiamension || isFill;\n}\nfunction renderText(view) {\n const { text, maxTextLines } = view;\n const isToBeWrapped = isFixedOrFill(view);\n const isMultiLine = maxTextLines != null && maxTextLines > 0;\n if (isMultiLine || isToBeWrapped) {\n const wrapperStyling = Object.assign(Object.assign({}, ((isMultiLine || isToBeWrapped) && { maxWidth: '100%' })), (isToBeWrapped && { maxHeight: '100%', overflow: 'hidden' }));\n return (React.createElement(\"div\", { style: wrapperStyling }, isMultiLine ? React.createElement(\"div\", { style: webkitLineClampStyles(maxTextLines) }, text) : text));\n }\n return text;\n}\nexport const renderer = createRenderer({\n views: {\n box(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__box\", elementId: props.elementId, style: props.parsedProperties, props: props }, props.children));\n },\n text(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n image(props) {\n var _a;\n // todo: add image backup\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n textButton(props) {\n return (React.createElement(ActionHandler, { className: \"sb-message-template__text-button\", elementId: props.elementId, style: props.parsedProperties, props: props }, renderText(props)));\n },\n imageButton(props) {\n var _a;\n return (React.createElement(ActionHandler, { className: \"sb-message-template__image-container sb-message-template__image-button\", elementId: props.elementId, style: props.parsedProperties, props: props },\n React.createElement(ReactMessageTemplateImage, { className: \"sb-message-template__image\", alt: \"image-button\", src: props.imageUrl, style: { width: '100%', height: '100%', aspectRatio: 'inherit', objectFit: 'inherit' }, tintColor: (_a = props.imageStyle) === null || _a === void 0 ? void 0 : _a.tintColor, metaData: props.metaData })));\n },\n },\n});\nexport const parser = createParser({\n mapBoxProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setAlign(styles, props.layout, props.align);\n return styles;\n },\n mapTextProps(props, options) {\n var _a;\n const styles = getDefaultStyles({ whiteSpace: 'pre-line' });\n // Better not set flex 1 to text\n setViewProps(styles, props, options);\n setTextStyle(styles, props, options);\n setAlign(styles, Layout.Row, props.align);\n setTextAlign(styles, (_a = props.align) === null || _a === void 0 ? void 0 : _a.horizontal);\n return styles;\n },\n mapImageProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n mapTextButtonProps(props, options) {\n const styles = getDefaultStyles({ whiteSpace: 'pre-line', alignItems: 'center', justifyContent: 'center' });\n setViewProps(styles, props, options);\n setTextStyle(styles, Object.assign(Object.assign({}, props), { textStyle: Object.assign({ weight: 500 }, props.textStyle) }), options);\n return styles;\n },\n mapImageButtonProps(props, options) {\n const styles = getDefaultStyles();\n setViewProps(styles, props, options);\n setImageStyle(styles, props.imageStyle);\n setImageAspectRatio(styles, props);\n return styles;\n },\n});\nexport const { MessageTemplate } = createMessageTemplate({\n renderer,\n parser,\n Container: ({ children }) => {\n return (React.createElement(\"div\", { className: \"sb-message-template__parent\", style: {\n display: 'flex',\n flexDirection: 'column',\n maxWidth: 400,\n backgroundColor: '#cecece',\n marginBottom: 24,\n borderRadius: '8px',\n } }, children));\n },\n});\n"],"names":["__rest","this","createContext","useState","useCallback","useContext","useRef","useMemo","useEffect"],"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]}
|